@charset "UTF-8";
/* CSS Document */

/*----------------------------------------------
       リセット
----------------------------------------------*/
html, body{ width:100%; font-size: 62.5%; background-color:#fff; color:#000;}
body, header, main, footer, section, div, p, a, img, h1, h2, h3, h4, ul ,li, dl, dt, dd, figure, input, textarea{ margin:0; padding:0; box-sizing: border-box; }
ul ,li{ list-style-type:none; }
img{ border:none; width:100%; line-height: 0; }

h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
a:link, a:visited, a.hover, a:active{ text-decoration:none; }

input[type=submit]{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* type=number の矢印削除 */
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none; 
  margin: 0; 
}
input[type="number"] { 
  -moz-appearance:textfield; 
} 

/*スマホの文字大きさ制御*/
p{ max-height: 100%; }



/*-----------------------
       全体共通
-----------------------*/
#loading {
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
}

body{
    font-family: 'HiraKakuProN-W3', 'HiraKakuPro-W3','Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

main{
    font-size: 2.4rem;
}

img{
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.inr{
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1180px;/*横1120px*/
}

.sp_only{
    display: none;
}

.flex{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


/*----------- レスポンシブ -----------*/
@media ( max-width: 740px ){
    .inr {
        padding: 0 4%;
    }
    main{
        font-size: 1.8rem;
    }

    .sp_only{
        display: block;
    }
}


/*-----------------------
    ボタン（ベース）
-----------------------*/

.flex .btn_wrap{
    padding: 10px;
    margin: 0 auto;
}

.btn_wrap{
    margin: 60px auto 0;
    width: 100%;
    max-width: 500px;
    min-width: 460px;
}

.btn_wrap button{
    /* スタイルリセット */
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.btn_wrap .btn{
    background: #FF5301;
    background: linear-gradient( to top right, #FF5301, #FF7A01 50%, #FF5301);
    border: 2px solid #fff;
    border-radius: 100px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .15);
    color: #fff;
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    padding: 40px 60px;
    position: relative;
    text-align: center;
    transition: 0.2s;
    width: 100%;
    height: auto;
}

.btn_wrap .btn_small{
    background: #FF5301;
    background: linear-gradient( to top right, #FF5301, #FF7A01 50%, #FF5301);
    border: 2px solid #fff;
    border-radius: 100px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .15);
    color: #fff;
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 20px 30px;
    position: relative;
    text-align: center;
    transition: 0.2s;
    width: 100%;
    height: auto;
}

.prn_inr .btn_wrap{
    min-width: auto;
}

.btn_wrap .btn span {
    position: absolute;
    bottom: calc( 50% - 5px);
    right: 30px;
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
}
.btn_wrap .btn span::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: -2px;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
    transform: rotate(40deg);
}

.btn_wrap .btn.clear{
    /*background: #3C8DAD;*/
    /*background: linear-gradient( to top right, #3C8DAD, #679baf 50%, #3C8DAD);*/
    background: linear-gradient( to top right, #8dc237, #b7d06b 50%, #8dc237);
}

/*----------- ホバー -----------*/
.hover .btn{
    opacity: .7;
}


/*----------- レスポンシブ -----------*/
@media ( max-width: 740px ){
    .btn_wrap{
        margin-top: 40px;
        min-width: 0;
    }
    .btn_wrap .btn{
        font-size: 1.7rem;
        padding: 30px 36px;
        line-height: 2.0rem;
    }
    .btn_wrap .btn span {
        bottom: calc( 50% - 3px);
        right: 10px;
        display: block;
        width: 26px;
        height: 2px;
        border-radius: 5px;
        background-color: #fff;
    }
    .btn_wrap .btn span::after {
        content: "";
        position: absolute;
        bottom: 5px;
        right: -2px;
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 5px;
        background-color: #fff;
        transform: rotate(40deg);
    }
}

.bnr_wrap{
    margin: 60px auto 0;
    width: 100%;
    max-width: 800px;
}


/*-----------------------
       ヘッダー
-----------------------*/
header .header_inr{
    padding: 16px 20px 10px;
}
header .logo{
    max-width: 240px;
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 740px ){
    header .header_inr{
        padding: 16px 10px 10px;
    }
    header .logo{
        max-width: 180px;
    }
}


/*-----------------------
　　入力頁：タイトル部分
-----------------------*/
.ttl .ttl_page{
    background: #FFF2D2;
    border-top: 4px solid #FF7A01;
    color: #FF7A01;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 60px 20px;
    position: relative;
    text-align: center;
    width: 100%;
}

.ttl .ttl_page::before{
    /* 電卓アイコン */
    content:"";
    display: inline-block;
    width: 40px;
    height: 50px;
    background-image: url(../img/icon_calc.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    margin-bottom: 5px; /*高さ調整用*/
}

.ttl .ttl_page::after{
    /* 矢印 */
    content:"";
    position: absolute;
    bottom: -30px;
    left: calc( 50% - 50px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 50px 0 50px;
    border-color: #FFF2D2 transparent transparent transparent;
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 740px ){    
    .ttl .ttl_page{
        display: block;
        font-size: 2.5rem;
        letter-spacing: 0;
        padding: 50px 5px;
    }
    .ttl .ttl_page::before{
        display: block;
        margin: 0 auto 10px;
        width: 32px;
        height: 40px;
    }
}



/*-----------------------
　　入力頁：導入文
-----------------------*/
.intro .intro_txt{
    font-weight: 600;
    line-height: 1.8;
    padding: 60px 0 0 0;
    text-align: center;
}
.intro .intro_txt > span{
    background: linear-gradient(transparent 60%, #FFF982 60%);
    font-size: 2.8rem;
}

/*-------注意文言--------*/
.caution_txt{
    border: 1px solid;
    padding: 15px;
    margin-bottom: 60px;
    margin-top: 30px;
    font-size: 1.4rem;
    line-height:1.5;
}
.caution_ttl{
    text-align: center;
    font-size: 1.8rem;
    padding: 10px 0;
}
.caution_txt a{
    color: #FF7A01;
    text-decoration: underline; 
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 740px ){
    .intro .intro_txt > span{
        font-size: 2.0rem;
    }
}



/*-----------------------
　　入力頁：フォーム
-----------------------*/

form > .input_clmn{
    background: #F2F2F2;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 30px 60px 20px;
}

form > .input_clmn > dl{
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
    position: relative;
}
form > .input_clmn > dl::after{
    content: '';
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 180px;
    border-bottom: 2px solid #FF7A01;
}

form > .input_clmn > dl > dt{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    font-weight: 600;
    width: 180px;
}
form > .input_clmn > dl > dt > span{
    background: #FF7A01;
    border-radius: 20px;
    color: #fff;
    font-size: 1.6rem;
    margin-left: 10px;
    padding: 3px 10px;
}

form > .input_clmn > dl > dd{
    font-weight: 600;
    padding-bottom: 8px;
    text-align: justify;
    width: calc( 100% - 180px);
}

form > .input_clmn .input_wrap{
    margin-left: 180px;
}


/*----------- 入力欄（初期化） -----------*/

/* select の矢印削除 */
form select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
form select::-ms-expand {
	display: none;
}


/*----------- 入力欄 -----------*/
form input[type="text"],
form input[type="number"],
form input[type="password"],
form select{
    background: #fff;
    border: 1px solid #999999;
    border-radius: 8px;
    color: #333;
    font-size: 2.0rem;
    padding: 10px 20px;
    width: 100%;
    height: auto;
}

form select{
    padding-right: 50px;
}

form .input_inr{
    line-height: 1.0;
    max-width: 600px;
}

form .select_wrap{    
    position: relative;
}

form .select_wrap::before,
form .select_wrap::after{
  content: '';
  position: absolute;
  top: 37%;
  right: 24px;
  width: 10px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
}

form .select_wrap::after {
  right: 18px;
  transform: rotate(-45deg);
}
form .select_choose{
    color: #464646;
    font-size: 1.5rem;
    margin: 5px 0 10px;
}
form .select_choose:last-child{
    margin-bottom: 0;
}
form .select_choose .choose_txt{
    margin-top: 5px;
    margin-left: 5px;
    padding-left: 15px;
	position: relative;
}

form .select_choose .choose_txt::before {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
}

form .select_choose .choose_txt::before {
	border-left: solid 1px #464646;
	border-bottom: solid 1px #464646;
	top: 0;
	left: 0;
}

/*----------- 郵便番号 -----------*/

form .zip_wrap{
    display: flex;
    align-items: center;
    font-size: 3.2rem;
}
form .zip_wrap::before{
    content: '〒';
    margin-right: 10px;
}
form .zip_wrap .hyphen {
    display: flex;
    align-items: center;
    margin: 0 16px;
    width: 26px;
}

form .zip_wrap .hyphen:before{
    content: '';
    height: 2px;
    flex-grow: 1;
    background-color: #000;
}

form .zip_wrap input{
    max-width: 120px;
}
form .zip_wrap input:last-child{
    max-width: 160px;
}


/*----------- 日付と使用量 -----------*/
form .day_wrap{
    display: flex;
}
form .day_wrap .select_wrap:first-child{
    margin-right: 10px;
}

form .use_wrap{
    display: flex;
    align-items:center;
    font-size: 3.2rem;
}
form .use_wrap input{
    margin-right: 10px;
    max-width: 300px;
}

/*----------- エラー -----------*/
form > .input_clmn.has-error{
    background: #ffe7e7;    
}

form > .input_clmn.has-error > dl{    
    border-color: #fff6f6;
}

form .error_txt{
    color: #de0000;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 3px;
}


/*----------- レスポンシブ -----------*/
@media ( max-width: 1180px ){
    form > .input_clmn {
        padding-right: 30px;
        padding-left: 30px;
    }
    form > .input_clmn > dl::after{
        width: 160px;
    }
    form > .input_clmn > dl > dt{
        width: 160px;
    }
    form > .input_clmn > dl > dd{
        width: calc( 100% - 160px);
    }

    form > .input_clmn .input_wrap{
        margin-left: 160px;
    }
}

@media ( max-width: 740px ){
    form > .input_clmn {
        padding-right: 20px;
        padding-left: 20px;
    }

    form > .input_clmn > dl{
        display: block;
    }
    form > .input_clmn > dl::after {
        width: 120px;
    }
    form > .input_clmn > dl > dt{
        justify-content: flex-start;
        margin-bottom: 5px;
        width: 100%;
    }
    form > .input_clmn > dl > dd{
        width: 100%;
    }

    form > .input_clmn .input_wrap{
        margin-left: 0;
    }
    /*----------- 入力欄 -----------*/
    form input{
        font-size: 2.0rem;
        padding: 10px 10px;
    }
    form select {
        font-size: 1.5rem;
        padding: 10px 30px 10px 10px;
    }
    form .select_wrap::before{
      right: 14px;
    }
    form .select_wrap::after{
      right: 8px;
    }
    
    form .zip_wrap,
    form .use_wrap {
        font-size: 2.4rem;
    }
    form .zip_wrap::before {
        margin-right: 5px;
    }
    form .zip_wrap .hyphen {
        margin: 0 8px;
    }
}


/*----------------------------------------------
　　結果頁：結果部分
----------------------------------------------*/
.result .subttl .subttl_page{
    background: #ff7a01;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
    padding: 20px 10px;
    text-align: center;
}

.result .result_ttl{
    background: #fff2d2;
    font-size: 4.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 80px 10px;
    position: relative;
    text-align: center;
}
.result .result_ttl::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: calc( 50% - 50px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 50px 0 50px;
    border-color: #FFF2D2 transparent transparent transparent;
}

.result .result_ttl h2{
    display: inline-block;
    margin-right: 5px;
    color: #ff7a01;
    font-weight: bold;
}
.result .result_ttl h2 img{
    max-width: 300px;
    height: auto;
    margin-bottom: -2px;
}

.result .result_ttl h2.not_cheap{
    background: transparent;
    border: none;
    display: block;
    line-height: 1.3;
}

.result .result_ttl .small{
    font-size: 3.2rem;
}

.result .result_ttl h1{
    color: #ff6a01;
    display: inline-block;
    font-size: 7.0rem;
    font-weight: 900;
    line-height: 1.0;
    margin: 5px 10px 20px 10px;
    word-break: break-all;
}
.result .result_ttl h1 > .line{
    background: linear-gradient(transparent 80%, #ffee51 80%);
}

.result .result_ttl h1{
    color: #ff6a01;
    display: inline-block;
    font-size: 7.0rem;
    font-weight: 900;
    line-height: 1.4;
    margin: 5px 10px 20px 10px;
    word-break: break-all;
}
.result .result_ttl h1 > .line{
    background: linear-gradient(transparent 80%, #ffee51 80%);
}

.result .result_ttl p{
    color: #ff6a01;
    display: inline-block;
    font-size: 7.0rem;
    font-weight: 900;
    line-height: 1.0;
    margin: 5px 10px 20px 10px;
    word-break: break-all;
}
.result .result_ttl p > .line{
    background: linear-gradient(transparent 80%, #ffee51 80%);
}

.result .result_ttl p{
    color: #ff6a01;
    display: inline-block;
    font-size: 7.0rem;
    font-weight: 900;
    line-height: 1.0;
    margin: 5px 10px 20px 10px;
    word-break: break-all;
}
.result .result_ttl p > .line{
    background: linear-gradient(transparent 80%, #ffee51 80%);
}
.result .result_ttl .no_break{
    word-break: keep-all;
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 999px ){
    .result .result_ttl {
        font-size: 4.2rem;
    }
    .result .result_ttl h1 {
        font-size: 6.0rem;
    }
}

@media ( max-width: 740px ){
    .result .subttl .subttl_page {
        font-size: 2.0rem;
    }
    .result .result_ttl{
        font-size: 2.8rem;
        line-height: 1.5;
        padding: 40px 10px;
    }
    .result .result_ttl h2{
        margin-right: 5px;
        margin-bottom: 10px;
    }
    .result .result_ttl .small{
        font-size: 2.4rem;
    }
    .result .result_ttl h1{
        font-size: 3.5rem;
        line-height: inherit;
        margin: 5px 5px 20px 5px;
    }
}


/*-----------------------
　　結果頁：プラン
-----------------------*/
.result .plan_wrap{
    padding-top: 40px;
}

.result .plan_wrap .plan{
    display: flex;
}
.result .plan_wrap .plan > dt{
    background: #e6e6e6;
    border: 2px solid #b3b3b3;
    border-right: none;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    
    font-size: 2.2rem;
    font-weight: 600;
    padding: 40px;
    text-align: justify;
    width: 50%;
}
.result .plan_wrap .plan > dd{
    border: 2px solid #b3b3b3;
    border-left: none;
    border-radius: 0 12px 12px 0;
    color: #666666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    
    font-weight: 600;
    padding: 40px;
    width: 50%;
    word-break: break-all;
}

.result .plan_wrap .plan > dt > .prn_inr > p:not(:first-child){
    margin-top: 10px;    
}

.result .plan_wrap .plan > dd > .prn_inr{
    width: 100%;
}
.result .plan_wrap .plan > dd > .prn_inr > h2{
    font-size: 6.4rem;
    font-weight: 900;
    line-height: 1.4;
    margin-top: 10px;
}
.result .plan_wrap .plan > dd > .prn_inr > h2 span{
    font-size: 4.2rem;
}


.result .plan_wrap .plan.in_house_plan > dt{
    background: #ffd59f;
    border-color: #ff7a01;
    font-size: 2.8rem;
}
.result .plan_wrap .plan.in_house_plan > dd{
    border-color: #ff7a01;
}

.result .plan_wrap .plan.in_house_plan > dd > .prn_inr > h2{
    color: #ff7a01;
}

.result .plan_wrap .plan_arrow{    
    display: block;
    margin: 20px auto 40px;
    width: 60px;
    height: 60px;
    border-top: solid 2px #4d4d4d;
    border-right: solid 2px #4d4d4d;
    transform: rotate(135deg);
    position: relative;
}

.result .plan_wrap .plan_arrow::before{
    content: '';
    position: absolute;
    top: -5px;
    left: -20px;
    display: block;
    margin: 20px auto;
    width: 60px;
    height: 60px;
    border-top: solid 2px #4d4d4d;
    border-right: solid 2px #4d4d4d;
}

.result .plan_wrap .caution{
    color: #1a1a1a;
    font-size: 1.4rem;
    margin: 30px 0;
}
.result .plan_wrap .caution > li{    
    padding-left:1em;
    text-indent:-1em;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
}

.result .plan_wrap .btn_entry .btn{
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result .plan_wrap .btn_entry .btn::before{    
    content:"";
    display: inline-block;
    width: 42px;
    height: 42px;
    background-image: url(../img/icon_entry.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
}

.result .other_rec_plan{
    margin-top: 40px;
    font-weight: 600;
}
.result .other_rec_plan > h3{
    margin-bottom: 10px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
}

.result .other_rec_plan dl{
    display: flex;
    flex-wrap: wrap;
    background: #f2f2f2;;
    border: 2px solid #b3b3b3;
    border-radius: 12px;
    overflow: hidden;
}

.result .other_rec_plan dt, .result .other_rec_plan dd{
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}

.result .other_rec_plan dt:not(:first-of-type), .result .other_rec_plan dd:not(:first-of-type){
    border-top: 2px solid #b3b3b3;
}

.result .other_rec_plan dt{
    display: flex;
    align-items: center;
}

.result .other_rec_plan dd{
    background: #fff;
    color: #666666;
}

.result .other_rec_plan dd .btn_wrap{
    min-width: auto;
}

.result .other_rec_plan dd .price_rec_plan{
    margin-top: 10px;
    color: #ff7a01;
    font-size: 6.4rem;
    font-weight: 900;
    line-height: 1.4;
}

.result .other_rec_plan dd .price_rec_plan span{
    font-size: 0.6em;
}

.vbox-child.vbox-inline{
    max-width: 600px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.vbox-inline h3{
    margin: 10px 0;
    color: #ff7a01;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
}

.vbox-close{
    padding: 15px;
    background: #ff7a01;
}

.price_by_month{
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.4rem;
    box-sizing: border-box;
}

.price_by_month dt, .price_by_month dd{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.price_by_month dt:not(:first-of-type){
    border-top: 1px solid #ff7a01;
}

.price_by_month dd:not(:first-of-type):not(:nth-of-type(2)){
    border-top: 1px solid #b3b3b3;
}

.price_by_month dt{
    width: 32%;
}

.price_by_month dd{
    width: 34%;
}

.price_by_month dd span{
    font-size: 2.4rem;
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 999px ){
    .result .plan_wrap .plan > dt {
        padding: 30px;
    }
    .result .plan_wrap .plan > dd {
        padding: 30px;
    }
    .result .plan_wrap .plan > dd > .prn_inr > h2 {
        font-size: 5.4rem;
    }
    .result .plan_wrap .plan > dd > .prn_inr > h2 span {
        font-size: 3.6rem;
    }
}

@media ( max-width: 740px ){
    .result .plan_wrap .plan{
        display: block;
        margin: 0 auto;
        max-width: 600px;
    }
    .result .plan_wrap .plan > dt{
        border: 2px solid #b3b3b3;
        border-bottom: none;
        border-radius: 12px 12px 0 0;
        display: block;
        font-size: 2.0rem;
        padding: 20px;
        width: 100%;
    }
    .result .plan_wrap .plan > dd{
        border: 2px solid #b3b3b3;
        border-top: none;
        border-radius: 0 0 12px 12px;
        display: block;
        padding: 20px;
        width: 100%;
    }
    .result .plan_wrap .plan > dd > .prn_inr > h2 {
        font-size: 4.6rem;
        width: 100%;
        text-align: right;
    }
    .result .plan_wrap .plan > dd > .prn_inr > h2 span {
        font-size: 2.8rem;
    }
    .result .plan_wrap .plan.in_house_plan > dt {
        font-size: 2.4rem;
    }

    .result .plan_wrap .plan_arrow{
        width: 40px;
        height: 40px;
    }
    .result .plan_wrap .plan_arrow::before{
        top: -12px;
        left: -12px;
        width: 40px;
        height: 40px;
    }
    .result .plan_wrap .caution{
        margin: 30px 10px;
    }
    .result .plan_wrap .btn_entry .btn{
        font-size: 2.0rem;
    }
    .result .plan_wrap .btn_entry .btn::before{
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }

    .result .other_rec_plan dt, .result .other_rec_plan dd{
        width: 100%;
        padding: 20px;
    }

    .result .other_rec_plan dd:not(:first-of-type){
        border: 0;
    }

    .result .other_rec_plan dd .price_rec_plan{
        font-size: 4.6rem;
        text-align: right;
    }
}


/*-----------------------
　　結果頁：料金詳細
-----------------------*/
.price_detail > h1{
    background: #8dc237;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
    margin-top: 100px;
    margin-bottom: 30px;
    padding: 30px 10px;
    text-align: center;
}

.price_detail .price_detail_head{
    max-width: 1180px;
    margin: 0 auto 20px;
    padding: 0 40px;
    font-weight: bold;
    text-align: center;
}


.price_detail .month_detail{
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1180px;
}
.price_detail .month_detail > li{
    background: #f2f2f2;
    border-radius: 12px;
    font-size: 2.0rem;
    padding: 10px 40px;
    margin-bottom: 10px;
}

.price_detail .month_detail .detail_wrap{
    display: flex;
    align-items: baseline;
    margin: 0 auto;
    max-width: 740px;
}

.price_detail .month_detail .detail_wrap > .month{
    text-align: right;
    width: 130px;
}
.price_detail .month_detail .detail_wrap > .capacity{
    padding: 0 20px;
    width: 255px;
}
.price_detail .month_detail .detail_wrap > .capacity input{
    background: #fff982;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    font-size: 4.2rem;
    padding: 5px;
    text-align: right;
    width: 160px;
}
.price_detail .month_detail .detail_wrap > .price{
    text-align: right;
    font-size: 4.2rem;
    width: calc( 100% - 400px);
    word-break: break-all;
}
.price_detail .month_detail .detail_wrap > .price > span{
    font-size: 2.0rem;
}

.price_detail .month_detail .detail_wrap > .price .now{
    font-size: 2.4rem;
}

.price_detail .month_detail .detail_wrap > .price .now > span{
    font-size: 1.6rem;
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 999px ){
    .price_detail .price_detail_head{
        padding: 0 20px;
    }
    .price_detail .month_detail{
        padding: 0 30px;
    }
    .price_detail .month_detail > li{
        padding: 10px 20px;
    }
}
@media ( max-width: 740px ){
    .price_detail > h1{
        font-size: 2.0rem;
    }

    .price_detail .month_detail{
        padding: 0;
    }
    .price_detail .month_detail > li{
        border-radius: 0;
        font-size: 1.5rem;
        padding: 10px 5px;
    }
    .price_detail .month_detail .detail_wrap{
        line-height: 1.0;
        max-width: 460px;
    }

    .price_detail .month_detail .detail_wrap > .month{
        width: 86px;
    }
    .price_detail .month_detail .detail_wrap > .capacity{
        text-align: right;
        padding: 0 5px;
        width: 24%;
    }
    .price_detail .month_detail .detail_wrap > .capacity input{
        font-size: 2.4rem;
        margin-bottom: 3px;
        width: 100%;
        max-width: 80px;
    }
    .price_detail .month_detail .detail_wrap > .price{
        font-size: 2.2rem;
        margin-top: 10px;
        padding: 0;
        text-align: right;
        width: calc( 76% - 86px);
    }
    .price_detail .month_detail .detail_wrap > .price > span{
        font-size: 1.4rem;
    }

    .price_detail .month_detail .detail_wrap > .price .now{
        font-size: 1.8rem;
    }

    .price_detail .month_detail .detail_wrap > .price .now > span{
        font-size: 1.2rem;
    }
}


/*-----------------------
       フッター
-----------------------*/
footer{
    margin-top: 100px;
}

footer .copyright{
    font-size: 1.8rem;
    padding: 10px 20px;
    text-align: center;
}

.servicelogo{
    text-align: center;
    margin-top: 60px;
}

.servicelogo img{
    width: 160px;
}

/*----------- レスポンシブ -----------*/
@media ( max-width: 740px ){    
    footer .copyright{
        font-size: 1.2rem;
    }
}
