/* Hide scroll bar */
html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}
/* Anti FOUC */
.remodal,[data-remodal-id] {
    display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay,.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* モーダル本体 */
.remodal {
  text-align: left;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff;
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,.3);
    box-shadow: 0px 5px 30px 1px rgba(0,0,0,.2), 0px 0px 3px 0px rgba(0,0,0,.15);
}
.remodal-is-initialized {
    /* Disable Anti-FOUC */
 display: inline-block;
}
.remodal [class*="btnarea"] {
  margin: 40px 0 10px;
}

/* モーダルタイトル */
.modal_ttl {
  color: #224477;
  font: 600 17px/1.3em 'noto sans japanese';
  border-bottom: 1px solid #f5f5f5;
  padding: 20px;
  padding-right: 30px; /* 右にボタンがあるため */
}
/* モーダルコンテンツ */
.modal_cnt {
  padding: 20px;
}

/* ページごとのCSS */
.list_modal_flex > li {
  padding: 8px 0;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;  
}
.list_modal_flex .ttl {
  font: 600 12px/1.3em 'noto sans japanese';
  -webkit-flex: 0 0 100px; flex: 0 0 100px;
}
.list_modal_flex .cnt {
  font: 400 13px/1.3em 'noto sans japanese';
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
}
.list_modal_flex .cnt.eng,
.list_modal_flex .cnt.eng select {
  font-family: 'gotham';
}

.price_graph {
  width: 100%;
  height: 5px;
  margin: 40px 0 0;
  background: rgb(34,68,119);
  background: -moz-linear-gradient(left, rgba(34,68,119,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(left, rgba(34,68,119,1) 0%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to right, rgba(34,68,119,1) 0%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#224477', endColorstr='#ffffff',GradientType=1 );
  position: relative;
}
.price_graph_arrow {
  color: #247;
  font: 600 12px/1em 'gotham';
  padding: 0 0 20px;
  text-align: center;
  position: absolute;
  top: 0;
  -webkit-transform: translate3d(50%,-90%,0);
  transform: translate3d(50%,-90%,0);
}
.price_graph_arrow .arrow {
  position: relative;
  display: block;
}
.price_graph_arrow .arrow:before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #247 transparent transparent transparent;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate3d(-50%,100%,0);
  transform: translate3d(-50%,100%,0);
}

/* モーダル add_type */
.add_type.remodal ul.list_plangroup {
    margin: 20px 0;
}
.add_type.remodal ul.list_plangroup li span{
    cursor: pointer;
}
.add_type.remodal ul.list_plangroup li span.this_move{
	background: #234476;
    color: white;
}






























