@charset "UTF-8";
/**************************************************************************/
/*  テンプレートパーツ                                                     */
/**************************************************************************/
/**********************************************

/**********************************************
 * 汎用的な角丸処理
 **********************************************/
 .rounded_box{
    height: 30px;
    width: 10%;
}
.rounded_box .rounded{
    width: 100%;
    height: 100%;
}
 /* 白背景の場合↓ */
.bg-white .rounded_box{
    height: 30px;
}

/* 画像背景の場合 */
.img_rounded{
    height: 30px;
    width: 100%;
}
.img_rounded.bg-white{
    background-color: #fff;
}


.bg-img .bg-white.rounded_box.top .rounded{
    background-image: url(/img/white_left_img.svg);
    background-repeat: no-repeat;
}

.bg-img .bg-white.rounded_box.bottom .rounded{
    background-image: url(/img/bottom_img_left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 72%;
}

.top_img.bg_brown{
    background-image: url(/img/top_brown.svg);
    background-position: left;
}

.page_content_rounded{
    position: relative;
    top: -74px;
    width: 100%;
    background-color: #fff;
}
.page_content_rounded.bottom_rounded{
    top: auto;
    bottom: -82px;
}

/* ページ一番下の角丸 */
@media screen and (min-width: 768px) {
.page_content_rounded.bottom_rounded{
    display: none!important;
}
.bg-white.bottom .rounded_box.bottom{
    display: none!important;
}
section.page_content{
    position: relative;
}
section.page_content::before{
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: -62px;
    right: 0;
    height: 62px;
    width: 62px;
}
section.page_content::after{
    content: "";
    background-color: #f5f5f5;
    position: absolute;
    bottom: -62px;
    right: 0;
    height: 62px;
    width: 62px;
    border-radius: 0px 50px 0px 0px;
}

}

@media screen and (min-width: 768px) {
    .rounded_box {
        height: 62px;
    }
    .bg-white .rounded_box{
        height: 62px;
    }
    .img_rounded {
        height: 62px;
    }
    .bg-white.bottom {
        border-radius: 50px 0px 0px 50px!important;
    }
    .bg-white.bottom .rounded_box.bottom{
        position: relative;
        width: calc(100% - 10%);
        margin-left: auto;
        background: #F5F1EF;
        bottom: -80px;
        border-radius: 0px 50px 0px 0px;
    }
    .bg-white.bottom .rounded_box.bottom .rounded{
        width: 10%;
        position: absolute;
        right: 0;
        z-index: -1;
        background-color: #fff;
    }
    .bg-white.bottom .rounded_box.bottom.end{
        position: absolute;
        bottom: -62px;
        right: 0;
    }
}
/**********************************************
 * 数字と吹き出しのリスト
 **********************************************/
.coment_grid_area{
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4%;
    row-gap: 23px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 54px;
}
.coment_grid_area .coment_grid_box{
    width: 40%;
    background-color: #f5f5f5;
    border-radius: 26px 26px 26px 0px;
    padding: 22px 13px;
    position: relative;
    margin-top: -18px;
    height: fit-content;
}
.coment_grid_area .coment_grid_box:nth-child(2n){
    /* margin-top: 61px; */
    margin-top: 5px;
    margin-bottom: 38px;
}
.coment_grid_area .coment_grid_number{
    font-size: 40px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #00000000;
    -webkit-text-stroke: 1px #F46D45;
    position: absolute;
    top: -29px;
    left: 20px;
}
.coment_grid_area .grid_box_text{
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .coment_grid_area{
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 4%;
        row-gap: 44px;
        margin-top: 85px;
    }
    .coment_grid_area .coment_grid_box{
        width: 80%;
        padding: 33px 18px;
        border-radius: 36px 36px 36px 0px;
        margin-bottom: 0;
    }
    .coment_grid_area .coment_grid_box:nth-child(2n),
    .coment_grid_area .coment_grid_box:nth-child(2n+1){
        margin-top: -14px;
        margin-bottom: 0;
    }
    .coment_grid_area .coment_grid_box:nth-child(3n-1){
        margin-top: 27px;
    }
    .coment_grid_area .coment_grid_number{
        font-size: 58px;
        top: -42px;
    }
    .coment_grid_area .grid_box_text {
        font-size: 14px;
        line-height: 2;
    }
}
/**********************************************
 * あなたはどっち？
 **********************************************/
.anata_box{
    background-image: url(/img/hakenanata_link01.png);
    width: 95%;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto min(50%,141px);
    margin: 0 auto;
    margin-top: 44px;
    padding-top: 27px;
    margin-bottom: 28px;
}
.anata_box.orange{
    background-image: url(/img/hakenanata_link02.png);
    padding-bottom: 42px;
}
.anata_box .color_box{
    background-color: #F8AD36;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: center;
    border-radius: 20px 20px 20px 0px;
    /* width: 147px; */
    width: 45%;
    padding: 30px 21px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.anata_box.orange .color_box{
    background-color: #F76E44;
}
.anata_box .point_box{
    margin-top: -31px;
    position: relative;
}
.anata_box .point_box::before{
    content: "";
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background-color: #F76E44;
    position: absolute;
    right: 18px;
    top: calc(50% - -5px);
}
.anata_box .point_box::after{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #F76E44;
    border-right: 2px solid #F76E44;
    transform: rotate(45deg);
    position: absolute;
    right: 18px;
    top: calc(50% - -2px);
}
.anata_box .point_box .point {
    border-radius: 33px 20px 20px 20px;
    text-align: left;
    padding: 27px 10% 16px 5%;
}
.anata_box .point_box .point .point_title {
    margin-bottom: 15px;
}
.anata_box .point_box .point li {
    padding-left: 10%;
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .anata_box{
        background-size: auto 154px;
        width: 90%;
    }
    .anata_box .color_box {
        margin-left: 0;
        margin-top: 82px;
        width: 148px;
    }
    .anata_box .point_box {
        width: 75%;
        margin-top: -208px;
        margin-left: 170px;
    }
    .anata_box .point_box .point {
        border-radius: 33px 20px 20px 20px;
        text-align: left;
        padding: 25px 10% 16px 8%;
    }
    .anata_box .point_box .point .point_title {
        margin-bottom: 19px;
    }
    .anata_box .point_box .point li {
        padding-left: 8%;
        margin-bottom: 12px;
    }
    .anata_box .point_box::after {
        width: 10px;
        height: 10px;
        right: 23px;
        top: calc(50% - 2px);
    }
    .anata_box .point_box::before {
        width: 19px;
        right: 21px;
        top: calc(50% - -3px);
    }
}

/**********************************************
 * 装飾
 **********************************************/
span.underine_brown{
    background:linear-gradient(transparent 50%,#f5e4c9 50%);
    padding-bottom: 3px;
}
/* 薄い赤のアンダーライン */
span.under_red{
    background:linear-gradient(transparent 50%,#f9dcd8 50%);
    padding-bottom: 0px;
}
/* 明るいbrown */
span.white_brown{
    background: linear-gradient(transparent 0.6em, #ffffff7f 0, #ffffff7f 1.3em, transparent 0);
    border-bottom: 5px solid #ffffff7f;
}

/* 下にドットが付く */
span.dot_line{
    background: radial-gradient(circle farthest-side, #000, #000 51%, transparent 18%, transparent);
    background-size: 6px 3px;
    background-position: left bottom;
    background-repeat: repeat-x;
    padding-bottom: 11px;
    padding-left: 1px;
}

/**********************************************
 * 強制レイアウト指定
 **********************************************/
.w100per{
    width: 100% !important;
}
.w80per{
    width: 80% !important;
}
.w50per{
    width: 50% !important;
}

.align_c{
    text-align: center !important;
}
.align_l{
    text-align: left !important;
}
.align_r{
    text-align: right !important;
}
.wd80per{   width: 80% !important;}
.mt0{    margin-top: 0px !important;}
.mt10{    margin-top: 10px !important;}
.mt20{    margin-top: 20px !important;}
.mt30{    margin-top: 30px !important;}
.mt40{    margin-top: 40px !important;}
.mb0{    margin-bottom: 0px !important;}
.mb30{    margin-bottom: 30px !important;}
.mb20{    margin-bottom: 20px !important;}
.mb40{    margin-bottom: 40px !important;}
.mb80{    margin-bottom: 80px !important;}
.ml20{    margin-left: 20px !important;}
.mr0{    margin-right: 0px !important;}
.mr10{    margin-right: 10px !important;}
.mr20{    margin-right: 20px !important;}
.p10{    padding: 10px !important;}
.pt0{    padding-top: 0px !important;}
.pt10{    padding-top: 10px !important;}
.pt20{    padding-top: 20px !important;}
.pb20{    padding-bottom: 20px !important;}
.pb40{    padding-bottom: 40px !important;}
.pl20{    padding-left: 20px !important;}
.fontb{    font-weight: bold !important;}
.color_red{color:#F00 !important;}
.color_blue{color:#33F !important;}
.p-relative{position: relative;}
.p0{ padding: 0!important;}

.flex_content_box{
    display: flex;
    justify-content: space-between;
}

img.banner{
    height: 200px;
    object-fit: cover;
}
.banner_box a{
    display: inline-block;
    width: 100%;
    text-align: center;
}
img.banner_img{
    max-width: 492px;
    margin-left: auto;
    margin-right: auto;
}

.system_coment::after{
    display:block;
    content:'';
    clear:both;
}
.text_innner_img{
    float: right;
    margin-top: 2px;
    margin-right: -6px;
}

section.no-rounded{
    border-radius: 0px!important;
}


@media screen and (min-width: 768px) {
    img.banner{
        height: 387px;
        object-fit: cover;
    }
    /* バナーの画像にじみ対処 */
    .banner_box a{
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    img.banner_img{
        max-width: 492px;
        margin-left: auto;
        margin-right: auto;
    }
    .text_innner_img{
        float: right;
        margin-top: 5px;
        margin-right: -10px;
    }
}
/**********************************************
 * \小見出し/
**********************************************/
.subheading_box{
    width: fit-content;
    margin: 0 auto;
    max-width: fit-content;
}
.subheading{
    color: #F76E44;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.07rem;
    line-height: 3;
    position: relative;
    z-index: 1;
    padding: 0 24px 0 22px;
}

.subheading.small{
    font-size: 14px;
    margin-top: -1em;
}

/* \/が無い */
.subheading.no-content::before,
.subheading.no-content::after{
    height: 0;
    width: 0;
}
.subheading::before{
    content: "";
    position: absolute;
    height: 1em;
    width: 1px;
    left: 0;
    top: 19px;
    background-color: #F76E44;
    transform: rotate(148deg);
}
.subheading::after{
    content: "";
    position: absolute;
    height: 1em;
    width: 1px;
    right: 0;
    top: 19px;
    background-color: #F76E44;
    transform: rotate(212deg);
}

/* 二行の場合 */
.subheading_box.tow_lines .subheading{
    line-height: 1.8;
}
.subheading_box.tow_lines .subheading::before{
    height: 3.5em;
    top: 3px;
    transform: rotate(150deg);
}
.subheading_box.tow_lines .subheading::after{
    height: 3.5em;
    top: 3px;
    transform: rotate(210deg);
}

/* 小見出しにアンダーラインがある場合↓ */
.subheading .line{
    display: inline-block;
    width: 102%;
    background: linear-gradient(transparent 1.7em, #f8ae3633 0, #f8ae3633 2.3em, transparent 0);
}
.subheading_box.tow_lines .subheading .line{
    width: fit-content;
    background: linear-gradient(transparent 1em, #f8ae3633 0, #f8ae3633 1.7em, transparent 0);
}
@media screen and (min-width: 768px) {
    .subheading::before,
    .subheading::after{
        top: 24px;
    }
}
/**********************************************
 * テキストリンク
**********************************************/
a.a_text_link{
    color:#4255BF;
}
a.a_text_link.under_line{
    text-decoration: underline;
}
a.a_text_link:hover{
    text-decoration: underline;
}
a.hover_underline:hover{
    text-decoration: underline;
}
.befor_link_img{
    position: relative;
    padding-left: 24px;
}
.befor_link_img::before{
    content: "";
    background-image: url(/img/link_img.svg);
    height: 18px;
    width: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;

}
/**********************************************
 * 枠付き注釈テキスト
**********************************************/
.frame_textbox{
    border:2px solid #FAE7CC;
    padding:20px;
    line-height: 28px;
}
/**********************************************
 * 文字にドット
**********************************************/
.dot{
    position: relative;
}
/* 上につく */
.top_dot::before{
    content: "";
    position: absolute;
    top: -0.3em;
    left: 0.4em;
    background-color: #F76E44;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}



/**********************************************
 * ドット付きリスト
**********************************************/
.dot_list{
    padding-left: 10px;
}
.dot_list .item{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}
.dot_list .item::before{
    position: absolute;
    left: -10px;
    top: 0.5em;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #F76E44;
}

/**********************************************
 * box
 **********************************************/

.box_dotted_line.bg_white{
    background-color: #fff;
}
.box_dotted_line .box_title{
    font-size: clamp(10%, 2vw, 16px);
    font-weight: 600;
}
 /* シャドウ */
.white_box_area.shadow{
    box-shadow: 0px 2px 10px 7px rgba(199, 187, 187, 0.09);
    padding: 25px 12% 16px;
}

/* アウトラインがあるbox */
.outline_box.bg_white{
    background-color: #fff;
}
.outline_box .title{
    font-size: 19px;
}
.outline_box .sub_title{
    font-size: 17px;
}

@media screen and (min-width: 768px) {
    .brown_box {
        padding: 60px 5% 18px;
    }
    .box_dotted_line{
        padding: 35px 4% 40px;
    }
    .shadow_box{
        padding: 51px 2.5% 55px;
    }
    .shadow_box .text{
        letter-spacing: 0.05em;
    }
    .white_box_area.shadow {
        box-shadow: 0px 2px 10px 7px rgba(199, 187, 187, 0.09);
        padding: 84px 16% 65px 18%;
    }
}

/**********************************************
 * コメントボックス
**********************************************/

.coment_box.bg_white{
    background-color: #fff;
}

.coment_box .icon_text{
    font-size: 58px;
    color: #00000000;
    -webkit-text-stroke: 1px #F46D45;
    position: absolute;
    top: -44px;
}
.coment_box .icon_text.bold{
    color: #F46D45;
    -webkit-text-stroke: none;
    font-weight: 400;
}

.coment_box .box_text{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 2;
}
.coment_box .box_text.fs-l{
    font-size: 16px;
}

.coment_box.with_arrow_box::after{
    content: "";
    background-image: url(/img/arrow_box_img.svg);
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

@media screen and (min-width: 768px) {
    .coment_box .icon_text {
        top: -40px;
    }
    .coment_box.with_arrow_box::after{
        width: 34px;
        height: 35px;
    }
    .coment_box .box_text.fs-l {
        font-size: 20px;
    }
}
/**********************************************
 * boxの中に→がある
 **********************************************/
.with_arrow{
    position: relative;
}
.with_arrow::after{
    content: "";
    background-image: url(/img/arrow_box.svg);
    background-size: contain;
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 9px;
    right: 6px;
}
.with_arrow.orange::after{
    content: "";
    background-image: url(/img/arrow_box_orange.svg);
}
.with_arrow.arrow_brown::after{
    background-image: url(/img/arrow_box_brown.svg);
}
@media screen and (min-width: 768px) {
    .with_arrow::after{
        right: 17px;
    }
}
/**********************************************
 * point_box
 **********************************************/

.point_box .point,
.point_box .point_top{
    background-color: #fff;
}
.point_box .point_top .innner{
    background-color: #f5f5f5;
    height: 6vh;
    width: 100%;
    border-bottom-left-radius: 27px;
    margin-top: -1px;
}
.point_box .point .point_title{
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 0.07rem;
    font-weight: 600;
    margin-left: 3px;
    padding-left: 3px;
    color: #F76E44;
    background: linear-gradient(transparent 0.6em, #f8ae3633 0, #f8ae3633 1.3em, transparent 0);
    margin-bottom: 2.3vh;
}
.point_box .point li{
    padding-left: 9%;
    font-size: 14px;
    letter-spacing: 0.05rem;
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 1.6;
    position: relative;
}
.point_box .point li::before{
    content: url(/img/system/point_icon02.svg);
    position: absolute;
    left: 4px;
    top: 2px;
}
/* 数字のボックス */
.point_box .point li.number_box::before{
    content: "";
    background-image: none;
}
.point_box .point li.number_box{
    position: relative;
    padding-left: 12%;
    margin-bottom: 3px;
}
/* 一のボックス */
.point_box .point li.one_box::before{
    content: "";
    background-image: none;
}
.point_box .point li.one_box{
    position: relative;
    padding-left: 12%;
    margin-bottom: 3px;
}
.point_box .point li.one_box .one{
    position: absolute;
    display: inline-block;
    
    width: 1.2em;
    height: 1.2em;
    line-height: 1.2em;
    top: 3px;
    left: 8px;
}


/* ボックスの中に→ */
.point_box .point.arrow{
    position: relative;
}
.point_box .point.arrow::after{
    content: "";
    background-image: url(/img/arrow_box.svg);
    background-size: contain;
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.point_box .point.arrow.brown::after{
    background-image: url(/img/arrow_brown.svg);
    bottom: 16px;
    right: 13px;
}

@media screen and (min-width: 768px) {
    .point_box .point .point_title{
        font-size: clamp(10%,5vw,19px);
        margin-left: -2px;
        width: fit-content;
    }
    .point_box .point {
        padding: 25px 5% 33px;
    }
    .point_box .point li {
        font-size: clamp(10%,5vw,16px);
        line-height: 2;
        padding-left: 8.5%;
        margin-bottom: 12px;
    }
    .point_box .point li::before {
        content: "";
        background-image: url(/img/system/point_icon02.svg);
        width: 24px;
        height: 24px;
        background-size: cover;
        left: -3px;
        top: 6px;
    }
    .point_box .point li.one_box{
        padding-left: 7%;
    }
}
/**********************************************
 * 続きを読む
 **********************************************/

.readmore_icon {
    position: absolute;
    bottom:-23px;
    right:calc(50% - 5em);
    width: 30px;
    height: 30px;
    background: #FFF;
    border-radius: 50%;
    display:inline-block;
}
.readmore_icon::before,
.readmore_icon::after {
    position: absolute;
    top: 14px;
    left: 50%;
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    border-top: 2px solid #f76e44;
    transform: translateX(-50%);
}
.readmore_icon::after {
    top: 8px;
    left: 3px;
    transform: rotate(90deg);
}
.bg-white .readmore_icon::before, 
.bg-white .readmore_icon::after,
.white_box_area .readmore_icon::before, 
.white_box_area .readmore_icon::after {
    border-top: 2px solid #fff;
}

@media screen and (min-width: 768px) {
    .readmore_icon {
        right: 35%;
    }
}
/**********************************************
 *　スクロール
 **********************************************/
.scroll_box{
    /* height: 580px; */
    height: 50vh;
    position: relative;
    overflow: auto;
    padding: 0px 17px 38px 25px;
  }
.scroll_box .text{
    margin: 0;
    width: 96%;
}
  .scroll_box .ps__thumb-y {
    background-color: #F76E44;
    border-radius: 8px;
    width: 14px;
    right: 1px;
    -webkit-transition: none;
}
.scroll_box .ps__rail-y.ps--clicking .ps__thumb-y,
.scroll_box .ps__rail-y:focus>.ps__thumb-y,
.scroll_box .ps__rail-y:hover>.ps__thumb-y {
    background-color: #F76E44;
    width: 14px;
}
.scroll_box .ps--active-y > .ps__rail-y {
    background-color: #F76E44;
}

div.bg-white div.ps--active-y>.ps__rail-y {
    background-color: #EFECE9!important;
}

.scroll .ps--scrolling-y>.ps__rail-y{
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .scroll_box{
        width: 78%;
        margin-left: auto;
        margin-right: auto;
    }
}

/**********************************************
 * pointの画像がつくタイトル
**********************************************/
.point_decoration{
    position: relative;
}
.point_decoration::before{
    position: absolute;
    background: none;
    top: -85%;
    left: -5px;
    z-index: 1;
}
.point_decoration.one::before{
    content: url(/img/point_1.svg);
    position: absolute;
    background: none;
    top: -85%;
    left: -5px;
    z-index: 1;
}
.point_decoration.tow::before{
    content: url(/img/point_2.svg);
    background: none;
    top: -168%;
    left: -5px;
    z-index: 1;
}
.point_decoration.three::before{
    content: url(/img/point_3.svg);
    background: none;
    top: -168%;
    left: -5px;
    z-index: 1;
}
.point_decoration.four::before{
    content: url(/img/point_4.svg);
    background: none;
    top: -44px;
    left: -5px;
    z-index: 1;
}
.point_decoration.five::before{
    content: url(/img/point_5.svg);
    background: none;
    top: -3em;
    left: -5px;
    z-index: 1;
}
.point_decoration.six::before{
    content: url(/img/point_6.svg);
    background: none;
    top: -3em;
    left: -5px;
    z-index: 1;
}
.point_decoration.seven::before{
    content: url(/img/point_7.svg);
    background: none;
    top: -3em;
    left: -5px;
    z-index: 1;
}
@media screen and (min-width: 768px) {
    .point_decoration::before{
        top: -2.8em!important;
        left: 0px!important;
    }
}

/**********************************************
 * バッヂ
**********************************************/
.badge{
    font-size: 16px;
    color: #fff;
    padding: 7px 10px;
    background-color: #F76E44;
    border-radius: 50px;
}
.badge.badge_brown{
    background-color: #E5DFDC;
    color: #4E4949;
    font-weight: 800;
    font-size: 12px;
    float: left;
}
@media screen and (min-width: 768px) {
    .badge{
        font-size: 12px;
        font-weight: 500;
        color: #fff;
        padding: 7px 10px;
        background-color: #F76E44;
        border-radius: 50px;
    }
}
/**********************************************
 * h2タグ
**********************************************/
.h2.tow_lines{
    line-height: 1.6!important;
}

/**********************************************
 * h4タグ
**********************************************/
.h4 {
    margin: 45px 0 19px 0;
    padding:7px 0;
    position: relative;
    line-height: 1.6em;
    font-size: 14px;
    color: #F76E44;
    display: inline-block;
    background-image: linear-gradient(to right, #F76E44, #F76E44 3px, transparent 3px);
    background-size: 6px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}
.h4.tow_lines {
    line-height: 2.6;
    margin: 10px 0 22px 3px;
    padding-bottom: 0px;
    position: relative;
    background: none;
}
.h4.tow_lines .tow_lines_under {
    padding-bottom: 10px;
    border-bottom: 1px dashed #F76E44;
}

@media screen and (min-width: 768px) {
    .h4 {
        margin: 45px 0 25px 0;
        font-size: 16px;
    }
}

/**********************************************
 * h2タグ
**********************************************/
/* contentsのタイトル */
.content_title{
    width: 86%;
    margin: 0 auto;
}
.content_title .title_img{
    background-image: url(/img/SP_story_title_icon.svg);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    height: 25px;
}
.content_title .title_img.tow_lines{
    margin-bottom: -4px;
}
.content_title .h2{
    font-size: clamp(10%,20px,1.5rem);
    line-height: 1;
    padding-left: 14px;
    letter-spacing: 0.07rem;
}
.content_title .h2.hyphen{
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 700;
    position: relative;
}
.content_title .h2.hyphen::before{
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 10px;
    height: 2px;
    background-color: #000;
}

@media screen and (min-width: 768px) {
    .content_title {
        width: 73%;
    }
    .content_title .title_img {
        height: 48px;
    }
    .content_title .h2 {
        font-size: clamp(10%,3vw,33px);
        margin-top: 8px;
        padding-left: 31px;
        font-weight: 700;
    }
}
/**********************************************
 * pタグ
**********************************************/
.text{
    width: 86%;
    margin: 0 auto;
    font-size: clamp(10%,14px,1.5rem);
    letter-spacing: 0.05rem;
    line-height: 2;
}
.text.center{
    text-align: center;
}
@media screen and (min-width: 768px) {
    .text{
        letter-spacing: 0.041em;
    }
}

/**********************************************
 * modal
**********************************************/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,30%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 100;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal-container:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal-container.active{
    opacity: 1;
    visibility: visible;
  }
  /*モーダル枠の指定*/
  .modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 800px;
    width: 96%;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -37px;
    right: 5px;
    width: 20px;
    height: 24px;
    font-size: 44px;
    font-weight: 100;
    color: #fff;
    cursor: pointer;
  }
/*モーダル内のコンテンツの指定*/
.modal-content{
    background: #fff;
    margin-bottom: -14px;
    height: 76vh;
    padding: 10px;
    padding-bottom: 0;
    overflow: hidden;
    border-radius: 20px;
}
.modal-content img{
    width: 60%;
    margin: 0 auto ;
}
.modal_title{
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}
.modal_text{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
}
.modal_text .title{
    font-weight: 600;
}
  /* ここまでmodal↑ */
  /* modalの中のスクロール↓ */
  .modal_scroll{
    height: 69vh;
    position: relative;
    overflow: auto;
    padding: 14px 40px 30px 9px;
  }
.modal_scroll .ps__thumb-y {
    background-color: #F76E44;
    border-radius: 8px;
    width: 14px;
    right: 1px;
    -webkit-transition: none;
}
.modal_scroll .ps__rail-y.ps--clicking .ps__thumb-y,
.modal_scroll .ps__rail-y:focus>.ps__thumb-y,
.modal_scroll .ps__rail-y:hover>.ps__thumb-y {
    background-color: #F76E44;
    width: 14px;
}
.modal_scroll .ps--active-y > .ps__rail-y {
    background-color: #F76E44;
}
.modal_scroll .ps--active-x>.ps__rail-x, .ps--active-y>.ps__rail-y {
    background-color: #EFECE9!important;
    width: 16px;
    opacity: 1!important;

}
.modal_scroll .ps--scrolling-y>.ps__rail-y{
    opacity: 1;
}
@media screen and (min-width: 736px) {
  /* modal */
    .modal-body{
        width: clamp(700px, 95%, 1000px);
        max-width: 1000px;
        min-width: 700px !important;
        padding: 0;
        position:fixed;
        left: 50%;
        top: 55%;
        transform: translateX(-50%) translateY(-50%);
        margin-bottom: 10%;
    }

    .modal-close{
        top: -48px;
        right: -2px;
        width: 25px;
        height: 28px;
        font-size: 80px;
    }
    .modal-content{
        height: 61vh;
        margin-bottom: 10vh;
    }
    .modal_scroll{
        height: 100%;
        max-height: 50vh;
        padding: 20px 40px 30px 60px;
    }
}


/*選択されているタブのコンテンツのみを表示*/
#online:checked ~ #online_content,
#entry:checked ~ #entry_content{
display: block;
}


/* おすすめ体験談 */
.list_voice_slider{
    width: 86%;
    /* max-width: 86%; */
}
.section_box .list_voice_slider{
    width: 100%;
}

.slider_voice{
    min-width: none;
} 

.slider_voice img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider_voice .slick-slide{
    margin-right: 4vw!important;
    margin-left: 2vw!important;
}
ul.slider > li:not(:first-child) ,
div.slider_voice > li:not(:first-child) {
    display: none;
}

@media screen and (min-width: 768px) {
    /* おすすめ体験談 */
    .list_voice_slider{
        width: 73%;
        min-width:73%;
    }
    .section_box .list_voice_slider{
        width: 100%;
        min-width:100%;
    }
    
}
/**********************************************
 * 角丸処理
 **********************************************/
.top_img{
    background-image: url(/img/top_img.svg);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 29px;
    bottom: -28px;
}
/**********************************************
 * ボタン
 **********************************************/
/* 各ページのボタン  defaultは暗い茶色*/

.btn_content{
    width: 86%;
    margin: 0 auto;
}
.btn{
    display: inline-block;
    width: 100%;
    padding: 15px 0%;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: clamp(10%,14px,1.5rem);
    letter-spacing: 0.06rem;
    font-weight: 500;
    background-color: #4E4949;
    border: none;
    cursor: pointer;
}
.btn::before{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 21px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #F76E44;
    border-right: 2px solid #F76E44;
    transform: rotate(45deg);
    border-radius: 10%;
}
.btn::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 10px;
    height: 2px;
    background: #F76E44;
    border-radius: 5px;
}



/* 矢印が左にある */
.btn.left::before{
    left: -90px;
    transform: rotate(225deg);
}
.btn.left::after{
    left: -85px;
}

/* ボタンの文が二行の場合↓ */
.btn.tow_lines{
    padding: 7px 0;
}

/* ホバー時色反転 */
.btn.inversion.orange:hover{
    background-color: #fff;
    color: #F76E44;
    font-weight: 600;
    transition: 0.5s;
    outline: 1px solid #F76E44;
}
.btn.inversion.orange:hover::before{
    border-top: 3px solid #F76E44;
    border-right: 3px solid #F76E44;
}
.btn.inversion.orange:hover::after{
    background: #F76E44;
}
/* 黄色いボタン↓ */
.btn.yellow{
    background-color: #F8AD36;
    border: none;
}
/* whiteボタンの場合↓ */
.btn.white{
    background-color: #EEECE9;
    color: #2F2F2F;
    font-weight: 600;
}
.btn.white::before{
    border-top: 2px solid #B5ADAD;
    border-right: 2px solid #B5ADAD;
    right: auto;
    left: 37px;
    transform: rotate(-135deg);
}
.btn.white::after{
    right: auto;
    left: 37px;
    background: #B5ADAD;
}
/* 疑似要素無し↓ */
.btn.no-content::after,
.btn.no-content::before{
    display: none;
}

/* 画像付きのボタン */
.top_img_btn{
    position: relative;
}
.top_img_btn::before{
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    background-image: url(/img/strong/btn_coment.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 40px;
    width: 100%;
    top: -26px;
    left: 20px;
}

/* bookmarkボタン★ */
.btn_content.ster{
    position: relative;
}
.btn_content.ster .btn{
    display: block;
    content: url(/img/white_star_outline.svg);
    position: absolute;
    width: 100%;
    height: 30%;
}
.btn_content.ster .btn.bookmark{
    content: url(/img/white_star.svg);
}

.btn.yellow.down::before{
    transform: rotate(135deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.btn.yellow.down::after{
    display: none;
}




@media screen and (min-width: 768px) {
    .btn_content{
        width: 41%;
    }
    .btn {
        padding: 26px 0px;
        font-size: 16px;
        min-width: 300px;
    }
    .btn.tow_lines{
        padding: 12px 0;
    }
    .btn::before {
        right: 35px;
        width: 10px;
        height: 10px;
        border-top: 3px solid #F76E44;
        border-right: 3px solid #F76E44;
    }
    .btn::after {
        right: 36px;
        width: 16px;
        height: 3px;
    }
    .btn.white::before{
        border-top: 3px solid #B5ADAD;
        border-right: 3px solid #B5ADAD;
    }
    /* 矢印が左にある */
    .btn.left::before{
        left: -52%;
    }
    .btn.left::after{
        left: -52%;
    }
    .top_img_btn::before{
    height: 46px;
    width: 100%;
    top: -26px;
    left: 42px;
    }
}
/**********************************************
 * 画像が使われてるボタン
 **********************************************/
.orange_img_area{
    background-image: url(/img/orange_area.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 80%;
    padding: 7% 10% 8%;
}



/**********************************************
 * リストタグ
 **********************************************/
ul.list{
    margin: 0 auto;
}
ul.list li{
    padding-left: 14px;
    position: relative;
    margin-bottom: 10px;
}
ul.list li::before{
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    left: 0;
    top: 8px;
}
ul.list .list_p{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.icon_list .item{
    position: relative;
    width: 90%;
    padding-left: 10%;
}
.icon_list .item::before{
    content: "";
    background-repeat: no-repeat;
    height: 16px;
    width: 5%;
    position: absolute;
    top: 0.5em;
    left: 0%;
}

/**********************************************
 * おすすめの体験談
**********************************************/
.ecperiences_grid .img_box img{
    object-fit: cover;
    filter: brightness(0.7);
    height: 100%;
}
.ecperiences_grid .img_box .voice140_img{
    object-fit: cover;
    object-position: 12% 50%;
    filter: brightness(0.7);
    height: 100%;
}
.ecperiences_grid .img_box .voice142_img{
    object-fit: cover;
    object-position: 88% 50%;
    filter: brightness(0.7);
    height: 100%;
}
.ecperiences_grid .img_box .voice126_img{
    object-fit: cover;
    object-position: 13% 50%;
    filter: brightness(0.7);
    height: 100%;
}
.interview_content .img_box {
    max-width: 354px;
    height: 210px;
}
.interview_slider img{
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}
/**********************************************
 * iconとテキストのgrid
**********************************************/

.grid_area{
    width: 100%;
    margin: 0 auto;
    z-index: 0;
    position: relative;
}
.grid_area .container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 13px;
    row-gap: 13px;
}

.grid_area .menu_box{
    width: 73%;
    padding: 28px 22px 32px;
    background-color: #f5f5f5;
    border-radius: 20px 20px 20px 20px;
}
.grid_area .icon_box{
    width: 100%;
    height: 28px;
    position: relative;
    margin-bottom: 22px;
}
.grid_area .icon_box::before{
    content: url(/img/strong/icon_1.svg);
    position: absolute;
    width: 0;
    height: 0;
    left: calc(100%/2 - 13px);
}
.grid_area .menu_box_text{
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .grid_area .menu_box {
        width: 87%;
    }
    .grid_area .container {
        column-gap: 39px;
        row-gap: 24px;    
    }
}


/**********************************************
 * header色変え
 **********************************************/
 /* TOP以外のページでheaderの色が変わるため以下に記載 */
body{
    background-color: #f5f5f5;
}
header{
    color: #2F2F2F;
}
.white_icon,.orange_icon{
    display: none;
}
a{
    color: #2F2F2F;
}
.header_menu .openbtn span{
    background: #2F2F2F;
}
.hamburger_menu, .hamburger_menu a{
    color: #fff;
}
.header_top_menu li::before {
    background-color: #4E4949;
    opacity: 0.5;
}
@media screen and (min-width: 768px) {
    .orange_icon{
        display: inline-block;
        margin-bottom: -2px;
    }
    .white_icon{
        display: none;
    }
}
/**********************************************
 * page共通箇所
 **********************************************/
/*--------------------------------
	page_title
--------------------------------*/
.page_title{
    padding: 8vh 0px 0px;
}
.mainv .h1{
    font-size: 18px;
    margin-bottom: 20px;
}
.mainv {
    margin: 0 auto;
    text-align: center;
}
.mainv_text{
    text-align: left;
    padding: 10px 10px;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .mainv .h1{
        margin-bottom: 20px;
        font-size: clamp(10%,2.4vw,35px);
        line-height: 1.3;
    }
    .mainv_text{
        text-align: center;
    }
}
/*--------------------------------
	page_content
--------------------------------*/
.page_content{
    background-color: #fff;
    padding-top: 1.5vh;
    padding-bottom: 2.5vh;
}
.page_content .content_title h2{
    line-height: 1.6;
    margin-top: -5px;
    padding-left: 10px;
}
.page_content .content_title{
    margin-bottom: 1vh;
}
.page_content .arrow_box .arrow_back{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #F8AD36;
    border-radius: 8px 8px 8px 0px;
    margin-left: 5px;
    position: relative;
}
.page_content .arrow_back::before{ /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px; 
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg); 
    border-radius: 10%;
    z-index: 1;
}

.page_content .arrow_back::after{ /* 棒の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px; 
    width: 6px;
    height: 1px;
    background: #fff;
    border-radius: 5px;
}
@media screen and (min-width: 768px) {
    /*--------------------------------
	page_content
    --------------------------------*/
    .page_content .content_title{
        margin-top: 5vh;
        margin-bottom: 2.5vh;
    }
    .page_content .content_title h2 {
        letter-spacing: 0.1rem;
        margin-top: -2px;
        padding-left: 30px;
        font-size: 32px;
    }
    .page_content .top_img{
        height: 50px;
        bottom: -49px;
    }
}

@media screen and (min-width: 768px) {
    /* メイン */
    main{
        width: 100%;
        justify-content: space-between;
    }

}
@media screen and (min-width: 768px) {

    /*--------------------------------
	breadcrumb
    --------------------------------*/
    .breadcrumb {
        padding-left: 0;
        margin-bottom: 8.3vh;
    }
    .breadcrumb .home {
        height: 17px;
        width: 17px;
        background-size: cover;
    }
    .breadcrumb li {
        font-size: 12px;
        padding-left: 32px;
    }
    .breadcrumb li::before {
        top: 7px;
        left: 12px;
        height: 7px;
        width: 7px;
    }
}