@charset "utf-8";

/* ==================================================================

    collapse.css

=================================================================== */

/* ==================================================================
■index
=================================================================== */


/* --------------------------------
■背景
-------------------------------- */
.contents main > section {
    position: relative;
    z-index: 0;
}
section::before {
    position: absolute;
    content: "";
    top: -89px;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
section.bg_lightblue::before {
    top: -1px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
section:nth-of-type(1)::before {
    top: -89px;
    background: rgb(242,247,248);
    background: linear-gradient(180deg, rgba(242,247,248,0) 0%, rgba(242,247,248,1) 100%);
}

/* --------------------------------
■pattern
-------------------------------- */
section .pattern {
    position: relative;
    z-index: 0;
}
section .pattern::before,
section .pattern::after {
    position: absolute;
    content: "";
    top: 110px;
    left: -330px;
    display: block;
    width: 416px;
    height: 359px;
    background: url(../../images/collapse/pattern1.png) no-repeat center / contain;
    z-index: -1;
}
section .pattern::after {
    top: -180px;
    left: auto;
    right: -280px;
    transform: none;
    -webkit-transform: none;
    width: 551px;
    height: 460px;
    background: url(../../images/collapse/pattern2.png) no-repeat center / contain;
}
#intro .pattern::before,
#leadPrice .container.pattern::before{
    top: 0;
}
#intro .pattern::after,
#leadPrice .container.pattern::after{
    top: -270px;
}
#point .pattern::before,
#price .container.pattern::before {
    content: none;
}
#point .pattern::after,
#price .container.pattern::after {
    top: -340px;
    right: -340px;
    width: 434px;
    height: 385px;
    background: url(../../images/collapse/pattern3.png ) no-repeat center / contain;
}

section .blue_box.pattern::before {
    top: -34px;
    left: -97px;
    width: 166px;
    height: 196px;
    background: url(../../images/collapse/pattern4.svg ) no-repeat center / contain;
    z-index: -1;
}
section .blue_box.pattern::after {
    top: auto;
    bottom: -43px;
    right: -108px;
    width: 178px;
    height: 167px;
    background: url(../../images/collapse/pattern5.svg ) no-repeat center / contain;
    z-index: 1;
}

.pattern.anime_scale::before,
.pattern.anime_scale::after {
    animation: anime_scale 1s cubic-bezier(.445,.05,.55,.95);
}
@keyframes anime_scale {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
    50% {
        opacity: 1
    }
}


/* --------------------------------
■.cvArea
-------------------------------- */
.float_cvArea{
    position: fixed;
    bottom:0;
    left: 0;
    width: 100%;
    color: #fff;
    background: #293B80;
    z-index: 20;
}
.float_cvArea .cvList{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:45px;
}
.float_cvArea .cvList > *{
    width: 48%;
    max-width: 50%;
    padding: 24px 0;
}

.float_cvArea .cvList .buttonStyle{
    max-width: 90%;
    display: block;
    margin-inline:auto;
}

.float_cvArea .cvList p {
    margin: 0;
    text-align: center;
}
.float_cvArea .tel a {
    color: #fff;
    font-size: 3.3rem;
    margin-inline:auto;
    margin-bottom: 0;
    line-height: 1.2;
}
.float_cvArea .tel small{
    display: none;
}
.float_cvArea .tel a span.d{
    font-size: 2.3rem;
}
.float_cvArea .time{
    line-height: 1.2;
    font-size: 1.5rem;
}

/* TOPへ戻る
-------------------------------- */
footer p.pagetop {
    bottom: 110px;
}


/* SP用
-------------------------------------------- */
@media only screen and (max-width : 767px) {
    .float_cvArea{
        background: revert;
    }
    .float_cvArea .cvList{
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap:0;
    }
    .float_cvArea .cvList > *{
        width: 50%;
        max-width: 50%;
        padding: 0px 0;
    }
    .float_cvArea .cvList > li p{
        height: 100%;
    }

    .float_cvArea .cvList .buttonStyle{
        max-width: 100%;
        display: block;
        border-radius: 0;
    }
    .float_cvArea .cvList .buttonStyle a{
        border-radius: 0;
        font-size: 1.6rem;
        padding: 11px;
        height: 100%;
        box-sizing: border-box;
        background-image: linear-gradient(360deg, rgba(0, 177, 74, 1), rgba(0, 207, 85, 1));
    }
    
    .float_cvArea .cvList .buttonStyle a span{
        line-height: 1.2;
    }

    .float_cvArea .tel a {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.6rem;
        margin-inline:auto;
        margin-bottom: 0;
        line-height: 1.2;
        padding: 11px;
        background: #EECC2A;
        background-image: linear-gradient(360deg, rgba(214, 179, 11, 1), rgba(238, 204, 42, 1));
        height: 100%;
        box-sizing: border-box;
    }
    
    .float_cvArea .tel a span {
        background: url(../../images/common/icon/icon_tel.svg) no-repeat left center / auto;
        padding-left: 47px;
        line-height: 1.2;
        display: inline-block;
    }
    
    .float_cvArea .tel small{
        display: block;
    }
    .float_cvArea .tel a span.d{
        display: none;
        font-size: 1.4rem;
    }
    .float_cvArea .time{
        display: none;
    }

    /* TOPへ戻る
    -------------------------------- */
    footer p.pagetop {
        bottom: 80px;
    }

}


/* --------------------------------
■共通
-------------------------------- */
section p.text,
section dd.text {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 0;
}
section p.text._s {
    font-size: 1.5rem;
}
section p.text._l {
    font-size: 1.7rem;
}

section img {
    max-width: 100%;
    height: auto;
}

section dl.flex_box {
    flex-wrap: nowrap;
    gap: 4%;
}
section dl.flex_box > dt.ttl_area {
    width: 21%;
}
section dl.flex_box > dd.txt_area {
    width: 75%;
}

/* --------------------------------
■accent_box
-------------------------------- */
.accent_box {
    width: 100%;
    height: 70vh;
    background: url("../../images/collapse/accent/backgorund.jpg") no-repeat center / cover;
    padding-top: 26px;
    min-height: 590px;
    transition: .5s;
}
.accent_box .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    height: 100%;
}
.accent_box p {
    text-align: center;
    margin-bottom: 0;
}
.accent_box .mv_txt {
    width: 52%;
    color: #222755;
    z-index: 1;
}
.accent_box .mv_txt .leadText{
    margin-top: 40px;
}

.accent_box .mv_txt img {
    height: auto;
}

.accent_box .mv_txt h2.heading {
    position: absolute;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
}
.accent_box .contact_area .comment {
    flex-wrap: nowrap;
}
.accent_box .contact_area .comment img:first-child {
    max-width: 397px;
}
.accent_box .mv_img {
    display: flex;
    width: 48%;
    position: relative;
}
.accent_box .mv_img::before {
    content: "";
    position: absolute;
    top: 60px;
    right: 0;
    background: url("../../images/collapse/accent/decoration.png") 0 0 no-repeat;
    width: 749px;
    height: 471px;
    pointer-events: none;
}

/* タブレット用
-------------------------------------------- */
@media (max-width: 1080px) and (min-width: 768px) {
    
    /* --------------------------------
    ■accent_box
    -------------------------------- */
    .accent_box {
        min-height: revert;
        height: auto;
        padding-top: 26px;
    }
    .accent_box .mv_txt .leadText img{
        width: 16vw;
    }
    .accent_box .mv_txt .heading img{
        width: 52vw;
        max-width: revert;
    }
    .accent_box .mv_img {
        flex-direction: column-reverse;
    }

}

/* SP用
-------------------------------------------- */
@media only screen and (max-width : 767px) {
    
    /* --------------------------------
    ■accent_box
    -------------------------------- */
    .accent_box {
        min-height: revert;
        height: auto;
        padding-top: 17px;
    }
    .accent_box .container {
    }
    .accent_box .mv_txt {
        width: 22%;
        flex-shrink: 0;
        padding-top: 0px;
    }

    .accent_box .mv_txt .leadText{
    }
    .accent_box .mv_txt .leadText img{
        max-width: revert;
        width: 24vw;
        margin-left: 5vw;
    }
    
    .accent_box .mv_txt .heading img{
        width: 87vw;
        max-width: revert;
    }
    .accent_box .mv_img {
        width: 88%;
        flex-shrink: 0;
    }
    .accent_box .mv_img::before {
        content: "";
        position: absolute;
        top: 20px;
        right: 0;
        background-size: 100% auto;
        width: 100vw;
        pointer-events: none;
    }

}



/* --------------------------------
■contact_area
-------------------------------- */
.contents .contact_area p {
    color: #293B80;
    text-align: center;
    margin-bottom: 0;
}
.contents .contact_area p.comment {
    margin-bottom: 0;
}
.contents .contact_area .buttonStyle {
    max-width: 518px;
    margin-top: 24px;
    margin-bottom: 12px;
}
.contents .contact_area .buttonStyle a {
    border-radius: 53px;
    padding: 27px 40px;
}
.contents .contact_area .buttonStyle a span {
    padding-left: 78px;
    background-size: 51px auto;
    line-height: 1.5;
}
.contents .contact_area .buttonStyle a em {
    font-size: 2.4rem;
}
.contents .contact_area .buttonStyle a small {
    display: block;
}
.contents .contact_area p.tel a {
    color: #293B80;
    font-size: 2.4rem;
    margin-bottom: 0;
}
.contents .contact_area p.tel a span {
    font-size: 1.7rem;
}
.contents .contact_area p.time {
    font-size: 1.2rem;
}

/* --------------------------------
■leadAppeal
-------------------------------- */

#leadAppeal{
    padding-top: 0;
}

#leadAppeal .open{
    text-align: center;
}
#leadAppeal .pickup{
    margin-top: -40px;
    text-align: center;
}

#leadAppeal .link{
    margin-top: 20px;
    text-align: center;
}


/* SP用
-------------------------------------------- */
@media only screen and (max-width : 767px) {
    
    #leadAppeal{
        padding-bottom: 10px;
    }
    
    #leadAppeal .pickup{
        margin-top: -6vw;
    }

    #leadAppeal .link{
        margin-top: 12px;
    }
    
}

/* --------------------------------
■intro
-------------------------------- */
#intro {
    padding-top: 30px;
}

#intro .container .inner {
    position: relative;
    z-index: 2;
}
#intro p.introtext {
    margin-bottom: 0;
}
#intro .box_shadow {
    padding: 50px 20% 50px 73px;
    background: #fff url(../../images/collapse/box_bg.png) no-repeat right center / contain;
}
#intro ul.listcheck li {
    text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
}
.ttl_marker {
    position: relative;
    z-index: 2;
}
.ttl_marker::before {
    position: absolute;
    content: "";
    top: -75%;
    left: -10%;
    display: block;
    width: 296px;
    height: 240px;
    background: url(../../images/collapse/ttl_img.png) no-repeat center / contain;
    z-index: -1;
}

/* --------------------------------
■point
-------------------------------- */
#point .flex_wrap + .flex_wrap {
    margin-top: 60px;
}
#point .flex_wrap .flex_box {
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 74px
}
#point .flex_wrap .flex_box .txt_area {
    flex: 1 1 493px;
    padding: 56px 0 47px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}
#point .flex_wrap .flex_box .txt_area::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: -64%;
    width: 100vw;
    height: 100%;
    background: #F6F8FF;
    z-index: -2;
}
#point .flex_wrap .flex_box .title {
    position: absolute;
    top: -100px;
    width: 100%;
}
#point .flex_wrap .flex_box .title::after {
    position: absolute;
    content: "";
    top: -1.5em;
    right: 1.5em;
    display: inline-block;
    width: 147px;
    height: 105px;
    background: url(../../images/collapse/point01.svg) no-repeat center / contain;
    z-index: -1;
}
#point .flex_wrap#point2 .flex_box .title::after {
    width: 170px;
    height: 88px;
    background: url(../../images/collapse/point02.svg) no-repeat center / contain;
}
#point .flex_wrap#point3 .flex_box .title::after {
    width: 155px;
    height: 84px;
    background: url(../../images/collapse/point03.svg) no-repeat center / contain;
}
#point .flex_wrap#point4 .flex_box .title::after {
    width: 151px;
    height: 101px;
    background: url(../../images/collapse/point04.svg) no-repeat center / contain;
}
#point .flex_wrap#point5 .flex_box .title::after {
    width: 188px;
    height: 88px;
    background: url(../../images/collapse/point05.svg) no-repeat center / contain;
}
#point .flex_wrap#point6 .flex_box .title::after {
    width: 165px;
    height: 97px;
    background: url(../../images/collapse/point06.svg) no-repeat center / contain;
}
#point .flex_wrap#point7 .flex_box .title::after {
    width: 168px;
    height: 104px;
    background: url(../../images/collapse/point07.svg) no-repeat center / contain;
}
#point .flex_wrap .flex_box figure {
    flex: 1 1 514px;
    margin-bottom: 61px;
    z-index: 1;
}
#point .flex_wrap .flex_box figure img {
    width: 100%;
    object-fit: cover;
}

#point .flex_wrap .flex_box.reverse {
    flex-direction: row-reverse;
}
#point .flex_wrap .flex_box.reverse .txt_area::after {
    right: auto;
    left: -64%
}

/* --------------------------------
■counseling
-------------------------------- */
.counseling {
    background: url(../../images/collapse/counseling_bg.jpg) no-repeat top center / cover;
}
.counseling .ttl_marker {
    font-size: 3.2rem;
}
.counseling .ttl_marker::before {
    top: 0;
}
.counseling .flex_box {
    margin-top: 30px;
}
.counseling .txt_area {
    width: calc( 100% - 518px);
}
.counseling .contact_area {
    width: 518px;
    position: relative;
}
.counseling .contact_area p.comment {
    position: absolute;
    top: -160px;
    right: -15%;
    z-index: -1;
}
.counseling ul.listcheck li {
    font-size: 1.7rem;
}
.counseling ul.listcheck li::before {
    width: 28px;
    height: 26px;
}

/* --------------------------------
■treatment
-------------------------------- */
#treatment .treatment_list {
    gap: 24px;
    margin-top: 56px;
}
#treatment .treatment_list li {
    width: calc((100% - 24px * 2) / 3);
    position: relative;
}
#treatment .treatment_list li dl dd .title {
    font-size: 2rem;
    margin-top: 24px;
    margin-bottom: 14px;
    position: relative;
}
#treatment .treatment_list li dl dd .title::after {
    position: absolute;
    content: "";
    top: -3em;
    right: 0.5em;
    display: inline-block;
    width: 94px;
    height: 66px;
    background: url(../../images/collapse/treatment01.svg) no-repeat center / contain;
}
#treatment .treatment_list #treatment2 dl dd .title::after {
    width: 108px;
    height: 56px;
    background: url(../../images/collapse/treatment02.svg) no-repeat center / contain;
}
#treatment .treatment_list #treatment3 dl dd .title::after {
    width: 98px;
    height: 53px;
    background: url(../../images/collapse/treatment03.svg) no-repeat center / contain;
}

/* --------------------------------
■comparison
-------------------------------- */
#comparison .comparison_list {
    gap: 32px;
    margin-top: 90px;
}
#comparison .comparison_list li {
    width: calc((100% - 32px) / 2);
    position: relative;
    text-align: center;
}
#comparison .comparison_list li .title {
    font-size: 2.4rem;
    font-weight: 600;
    white-space: nowrap;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#comparison .comparison_list li dl {
    flex-wrap: nowrap;
    background: #F8F6F8;
    border: 10px solid #F0F0F0;
    padding: 38px;
}
#comparison .comparison_list li#comparison2 dl {
    color: #293B80;
    background:#E3F5FF url(../../images/collapse/comparison_bg.jpg) no-repeat center / cover;
    border: 10px solid #E3F5FF;
}
#comparison .ttl_marker {
    font-size: 3.2rem;
    margin-top: 48px;
    margin-bottom: 0;
}
#comparison .ttl_marker::before {
    content: none;
}

/* --------------------------------
■feature
-------------------------------- */
#feature .feature_list {
    gap: 50px 0;
}
#feature .feature_list .txt_area {
    width: 54%;
}
#feature .feature_list .title.lv4 small {
    display: block;
    width: fit-content;
    color: var(--text-color-white , #fff);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    background: rgb(41, 59, 128);
    background: linear-gradient(90deg, rgba(41, 59, 128, 1) 0%, rgba(21, 30, 64, 1) 100%);
    margin-bottom: 8px;
}
#feature .feature_list ul.asterisk li {
    line-height: 1.8;
    margin-top: 8px;
    margin-bottom: 0;
}
#feature .feature_list figure {
    width: 40%;
}

/* --------------------------------
■price
-------------------------------- */
.priceBox .price_table{
    overflow-x: auto;
    margin: 12px 0 160px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}
.priceBox .price_table table{
    width: 100%;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    
}

.priceBox .price_table table th,
.priceBox .price_table table td{
    text-align: center;
    padding: 29px 1em;
    white-space: nowrap;
    box-sizing: border-box;
}
.priceBox .price_table table th{
    color: var(--text-color-white , #fff);
    background: rgb(41, 59, 128);
    background: linear-gradient(90deg, rgba(41, 59, 128, 1) 0%, rgba(21, 30, 64, 1) 100%);
    width: 45%;
    border-bottom: 1px solid #E9E9E9;
}
.priceBox .price_table table tbody td{
    color: #B0885D;
    background: #fff;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #E9E9E9;
}
.priceBox .price_table table tbody td span{
    display: block;
    width: fit-content;
}
.priceBox .price_table table tbody td span.taxin{
    margin-top: 8px;
    font-size: 1.6rem;
    color: #7A7777
}
.priceBox .price_table table tbody td:first-child{
    color: #35353C;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    border-left: none;
}

section .blue_box {
    background-color: #F2F7F8;
    padding: 54px;
    z-index: initial;
}
section .blue_box .title.lv4 span {
    color: #293B80;
    border-bottom: 1px dashed #293B80;
}
section .blue_box p.introtext {
    font-size: 1.7rem;
    font-weight: 500;
}
section .blue_box p.introtext em {
    color: #B0885D;
    font-size: 1.9rem;
}
section .blue_box p.title.lv6 {
    line-height: 1.8;
    margin-bottom: 0;
}

#price .sub_area {
    background: #F6F8FF;
    padding: 100px 40px 60px;
    margin-top: 57px;
    position: relative;
}
#price .sub_area + .sub_area {
    margin-top: 90px;
}
#price .sub_area .inner > .title.lv4 {
    position: absolute;
    top: -57px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 2.8rem;
    color: var(--text-color-white , #fff);
    background: rgb(41,59,128);
    background: linear-gradient(90deg, rgba(41,59,128,0) 0%, rgba(36,52,113,1) 20%, rgba(21,30,64,1) 50%, rgba(36,51,111,1) 80%, rgba(41,59,128,0) 100%);
    width: 100%;
    max-width: 808px;
    margin: auto;
    text-align: center;
    padding: 27px;
}
#price .sub_area .white_box {
    width: 100%;
    padding: 37px 40px;
    margin: auto;
    position: relative;
    background-color: var(--bg-color-white, #fff);
    counter-increment: num;
}

#price .plan_area .white_box .title.lv5 {
    background: none;
    padding-left: 0;
}
#price .plan_area .white_box .price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0;
}
#price .plan_area .white_box .price em {
    font-size: 150%;
}
#price .plan_area .white_box .price small {
    font-size: 75%;
}
#price .plan_area .white_box .asterisk li {
    font-size: 1.3rem;
}
#price .plan_area .white_box .price.calc {
    color: #B0885D;
    font-size: 3.7rem;
}
#price .plan_area .white_box .price.calc > span {
    display: inline-block;
    width: fit-content;
    color: var(--text-color-white, #fff);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    background: #B0885D;
    margin-right: 12px;
    vertical-align: 8px;
}
#price .plan_area .white_box .price.calc em {
    font-size: 173%;
}
#price .plan_area .white_box .price.calc small {
    font-size: 62%;
}
#price .plan_area .white_box + .asterisk,
#price .guarantee_area .guarantee_table table + .asterisk {
    margin-top: 30px;
}
#price .plan_area .white_box + .asterisk li,
#price .guarantee_area .guarantee_table table + .asterisk li {
    font-size: 1.5rem;
}

#price .guarantee_area {
    position: relative;
    padding-top: 90px;
    background: #F6F8FF url("../../images/collapse/refund.svg") 4% 0 no-repeat;
    background-size: 14% 14%;
    
}
#price .guarantee_inner > .title.lv5 {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 30px;
}
#price .guarantee_inner > .title.lv5::before,
#price .guarantee_inner > .title.lv5::after {
    content: "";
    height: 2px;
    width: 42px;
    background-color: #293B80;
}
#price .guarantee_inner > .title.lv5::before {
    margin-right: 1em;
}
#price .guarantee_inner > .title.lv5::after {
    margin-left: 1em;
}
#price .guarantee_area .title.lv6 {
    margin-bottom: 16px;
}
#price .guarantee_area .introtext {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.8;
}
#price .guarantee_area .introtext em {
    font-size: 1.9rem;
}
#price .guarantee_area .white_box .flex_box {
    gap: 50px;
}
#price .guarantee_area .white_box .title.lv5 {
    font-size: 2rem;
    padding-left: 40px;
    background: url(../../images/common/icon/icon_i.svg) no-repeat left center / 29px auto;
}
#price .guarantee_area .white_box:first-of-type .title.lv5 {
    margin-bottom: 0;
}

#price .guarantee_area .guarantee_table {
    margin-top: 40px;
    margin-bottom: 40px;
}
#price .guarantee_area .guarantee_table table th ,
#price .guarantee_area .guarantee_table table td {
    font-size: 1.6rem;
    font-weight: 700;
    border-right: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;
    padding: 22px 30px;
    box-sizing: border-box;
}
#price .guarantee_area .guarantee_table table td:last-of-type {
    border-right: none;
}
#price .guarantee_area .guarantee_table table th {
    width: 12em;
    color: var(--text-color-white , #fff);
    background: #757591;
    text-align: center;
}
#price .guarantee_area .guarantee_table table td {
    color: #35353C;
    background-color: var(--bg-color-white , #fff);
}
#price .guarantee_area .guarantee_table table td em {
    color: #B0885D;
}

#price .guarantee_area .white_box ul.listdot {
    margin-top: 10px;
    margin-bottom: 10px;
}
#price .guarantee_area .white_box p.text + ul.asterisk {
    margin-top: 8px;
}

/* compensation_area
-------------------- */
#price .compensation_area .check_list{
    align-items: stretch;
}

#price .compensation_area .check_list li{
    width: 31.5%;
    padding: 52px 12px;
    text-align: center;
    background: #fff url("../../images/common/icon/icon_check.svg") 23px 50% no-repeat;
    color: #293B80;
    font-size: 1.9rem;
    border: 1px solid #707070;
}

#price .compensation_area .check_list + *{
    margin-top: 40px;
}

#price .compensation_area .asterisk{
    margin-top: 37px;
}

#price .compensation_area .attention{
    margin-top: 37px;
    text-align: left;
}
#price .compensation_area .attention dt{
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}
#price .compensation_area .attention dd .listdot li{
    font-size: 1.4rem;
}

@media (max-width: 1200px) and (min-width: 768px) {

    #price .compensation_area .check_list li{
        padding: 52px 12px 52px 62px;
        text-align: left;
        font-size: 1.8rem;
    }   
   
}
/* SP用
-------------------------------------------- */
@media only screen and (max-width : 767px) {
    #price .compensation_area .check_list{
        gap: 4vw;
    }

    
    #price .compensation_area .check_list li{
        width: revert;
        padding: 4vw 4vw;
        font-size: 1.6rem;
    }
 
    #price .compensation_area .check_list + *{
        margin-top: 6vw;
    }

    #price .compensation_area .asterisk{
        margin-top: 6vw;
    }   
}


#price .cp_area {
    margin-top: 100px;
}
#price .cp_list {
    max-width: 872px;
    margin: 40px auto;
    gap: 20px;
    counter-reset: num;
}
#price .cp_list > li {
    width: 100%;
    position: relative;
    background-color: var(--bg-color-white , #fff);
    padding: 37px 40px;
    counter-increment: num;
}
#price .cp_list > li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 63px solid #293B80;
    border-right:63px solid transparent;
    z-index: 2;
}
#price .cp_list > li::after {
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    transform: rotate(-45deg);
    color: var(--text-color-white , #fff);
    content: counter(num, decimal);
    font-size: 1.8rem;
    line-height: 1;
    z-index: 3;
}
#price .cp_list li dl {
    flex-wrap: nowrap;
    gap: 30px;
}
#price .cp_list li dl dt {
    width: 144px;
    flex-shrink: 0;
}
#price .cp_list li dl dd p.ttl_marker {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
#price .cp_list li dl dd p.ttl_marker::before {
    content: none;
}
#price .cp_list li dl dd p.ttl_marker::before {
    content: none;
}
#price .cp_list li dl dd p.text._l + .asterisk {
    margin-top: 8px;
}

#price .cp_list li ul.listcheck {
    padding: 24px 0;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    margin-top: 37px;
    margin-bottom: 24px;
}
#price .cp_list li ul.listcheck li:before {
    width: 24px;
    height: 21px;
    top: 4px;
}
#price .cp_list li ul.listcheck li {
    color: #B0885D;
    font-size: 1.8rem;
    padding-left: 2em;
    margin-bottom: 4px;
}
#price .cp_list li ul.listcheck li span {
    border-bottom: none;
}

/* --------------------------------
■counseling2
-------------------------------- */
#counseling2 .box_shadow {
    max-width: 739px;
    margin: 26px auto;
    background-color: var(--bg-color-white , #fff);
    padding: 37px 40px;
}
#counseling2 .box_shadow::before,
#counseling2 .box_shadow::after {
    position: absolute;
    content: none;
}
#counseling2 .contact_area {
    margin: 26px auto;
}
#counseling2 .contact_area p.comment {
    top: 0;
    right: -55%;
}

/* --------------------------------
■doctor
-------------------------------- */
#doctor {
    padding-bottom: 0;
}
#doctor::before,
#doctor::after {
    content: none;
}
.polygon {
    color: var(--text-color-white , #fff);
    padding: 100px 4%;
    position: relative;
    z-index: 0;
}
.polygon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    background: rgb(41,59,128);
    background: linear-gradient(90deg, rgba(41,59,128,1) 0%, rgba(21,30,64,1) 100%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 50px), calc(100% - 50px) 100%, 50px 100%, 0% calc(100% - 50px), 0% 50px);
    z-index: -1;
}

#doctor .doctor_about {
    margin-bottom: 57px;
}
#doctor .doctor_about figure {
    width: 54%;
}
#doctor .doctor_about .txt_area {
    width: 39%;
}
#doctor .doctor_about .title.lv3 {
    margin-bottom: 50px;
}
#doctor .doctor_about .title.lv4 {
    margin-bottom: 50px;
}
#doctor .doctor_about .title.lv4 small {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
}
#doctor .doctor_about .title.lv4 span {
    font-size: 1.4rem;
    padding-left: 13px;
}

#doctor .doctor_history {
    margin-bottom: 40px;
}
#doctor .doctor_history .left_area {
    width: 42%;
}
#doctor .doctor_history .right_area {
    width: 54%;
}
#doctor .doctor_history .txt_area + .txt_area {
    padding-top: 30px;
}
#doctor .doctor_history .txt_area .title.lv5 {
    color: var(--text-color-white , #fff);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    text-align: center;
    padding-left: 0;
    background: none;
}
#doctor .doctor_history .txt_area .title.lv5:after {
    content:"";
    flex-grow: 1;
    border-bottom: 1px dashed #fff;
    margin-left: 12px;
    padding-right: 15px;
}
#doctor .doctor_history .txt_area ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
}
#doctor .doctor_msg {
    border-top: 1px dashed #fff;
}
#doctor .doctor_msg .title.lv5 {
    color: var(--text-color-white , #fff);
    font-size: 2.4rem;
    margin-top: 40px;
    padding-left: 0;
    background: none;
}

/* --------------------------------
■clinic
-------------------------------- */
#clinic::before {
    content: none;
}
#clinic .txt_area {
    color: #293B80;
    width: 47%;
    font-size: 1.5rem;
}
#clinic .logo {
    margin-bottom: 30px;
}
#clinic .address {
    line-height: 1.8;
    margin-bottom: 20px;
}
#clinic .listdot {
    text-align: left;
    margin-bottom: 30px;
}
#clinic .tel {
    margin-bottom: 0;
}
#clinic .tel a {
    color: #293B80;
    font-size: 3.1rem;
    border-bottom: 2px dotted #293B80;
    line-height: 2;
}
#clinic .tel a small {
    font-size: 2.4rem;
}
#clinic .fax {
    font-size: 2.0rem;
}
#clinic figure {
    width: 49%;
    max-width: 598px;
}

#clinic .philos_area {
    margin-top: 100px;
}
#clinic .philos_area .title.lv4 {
    position: relative;
}
#clinic .philos_area .title.lv4::after {
    position: absolute;
    content: "";
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: inline-block;
    width: 410px;
    height: 130px;
    background: url(../../images/collapse/philos_ttl.svg) no-repeat center / contain;
    z-index: 2;
}
#clinic .philos_area .introtext {
    color: #293B80;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    margin-bottom: 0;
}
#clinic .philos_area .introtext em {
    font-size: 1.6rem;
    text-decoration: none;
}


/* --------------------------------
■faq
-------------------------------- */
#faq dl.faq_list dt,
#faq dl.faq_list dd {
    color: #293B80;
    letter-spacing: 0.1em;
    padding: 32px 32px 32px 93px;
    position: relative;
}
#faq dl.faq_list dt {
    font-size: 2rem;
    background-color: var(--bg-color-white , #fff);
}
#faq dl.faq_list dd {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
}
#faq dl.faq_list dt::before,
#faq dl.faq_list dd::before {
    position: absolute;
    content: "Q";
    left: 30px;
    top: 24px;
    width: 42px;
    height: 42px;
    display: inline-block;
    color: var(--text-color-white , #fff);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 42px;
    text-align: center;
    padding: 0;
    background: #293B80;
    border: 1px solid #293B80;
    border-radius: 50%;
}
#faq dl.faq_list dd::before {
    content: "A";
    top: 38px;
    color: #293B80;
    background-color: var(--bg-color-white , #fff);
}


@media (max-width: 1300px) and (min-width: 768px) {

    /* --------------------------------
    ■pattern
    -------------------------------- */
    section .pattern::before,
    section .pattern::after {
        zoom: 0.8;
    }

    /* --------------------------------
    ■accent_box
    -------------------------------- */
    .contents .accent_box.wide .container {
        padding-right: 0;
    }

    /* --------------------------------
    ■intro
    -------------------------------- */
    .ttl_marker::before {
        zoom: 0.8;
        left: -4%;
    }

    /* --------------------------------
    ■point
    -------------------------------- */
    #point .flex_wrap + .flex_wrap {
        margin-top: 80px;
    }
    #point .flex_wrap .inner {
        margin-right: 4%;
        margin-left: 4%;
    }
    #point .flex_wrap .flex_box {
        gap: 4%;
    }
    #point .flex_wrap .flex_box .title::after {
        top: -25%;
        zoom: 0.7;
    }

    /* --------------------------------
    ■counseling
    -------------------------------- */
    .counseling .ttl_marker::before {
        zoom: 0.8;
        left: -4%;
    }
    .counseling .contact_area p.comment {
        right: -8%;
        zoom: 0.8;
    }

    /* --------------------------------
    ■comparison
    -------------------------------- */

    /* --------------------------------
    ■feature
    -------------------------------- */
    #feature .feature_list .txt_area {
        width: 56%;
    }
    #feature li.flex_box {
        align-items: flex-start;
    }

    /* --------------------------------
    ■price
    -------------------------------- */
    .priceBox .price_table table {
        font-size: 2rem;
    }
    #price .guarantee_area .white_box .flex_box {
        gap: 12px;
    }
    #price .cp_list li dl dd p.ttl_marker {
        font-size: 2.2rem!important;
    }
}


/* タブレット用
-------------------------------------------- */
@media (max-width: 1080px) and (min-width: 768px) {
    
    /* --------------------------------
    ■pattern
    -------------------------------- */
    section .pattern::before,
    section .pattern::after {
        zoom: 0.6;
    }

    /* --------------------------------
    ■共通
    -------------------------------- */
    br.pcOnly,
    .pcOnly {
        display: none;
    }

    section p.text,
    section dd.text {
        font-size: 1.5rem;
    }
    section p.text._l {
        font-size: 1.6rem;
    }

    section dl.flex_box {
        flex-wrap: wrap;
    }
    section dl.flex_box > dt.ttl_area {
        width: 100%;
    }
    section dl.flex_box > dd.txt_area {
        width: 100%;
    }

    /* --------------------------------
    ■contact_area
    -------------------------------- */
    .contents .contact_area .buttonStyle a {
        padding: 23px 16px;
    }
    .contents .contact_area .buttonStyle a span {
        background-size: 34px auto;
        padding-left: 48px;
    }
    .contents .contact_area .buttonStyle a em {
        font-size: 2rem;
    }

    /* --------------------------------
    ■intro
    -------------------------------- */
    #intro .box_shadow {
        padding: 40px 4%;
        background: var(--bg-color-white , #fff);
    }
    .ttl_marker::before {
        display: none;
    }

    /* --------------------------------
    ■point
    -------------------------------- */
    #point .flex_wrap .flex_box .txt_area,
    #point .flex_wrap .flex_box.reverse .txt_area {
        padding: 32px 0;
    }

    /* --------------------------------
    ■counseling
    -------------------------------- */
    .counseling .flex_box {
        flex-direction: column;
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
        gap: 20px;
    }
    .counseling .txt_area {
        width: 100%;
    }
    .counseling .contact_area {
        width: 100%;
    }

    /* --------------------------------
    ■comparison
    -------------------------------- */
    #comparison .comparison_list li .title {
        font-size: 2rem;
    }

    /* --------------------------------
    ■price
    -------------------------------- */
    .priceBox .price_table table,
    .priceBox .price_table table tbody td,
    .priceBox .price_table table tbody td:first-child {
        font-size: 1.6rem;
        letter-spacing: 0;
    }
    .priceBox .price_table table tbody td:not(first-child) {
        font-size: 2rem;
    }
    .priceBox .price_table table th,
    .priceBox .price_table table td {
        font-size: 1.8rem;
        letter-spacing: 0;
        padding: 29px 10px;
    }

    #price .plan_area .white_box .price.calc {
        font-size: 3rem;
    }
    #price .guarantee_area .white_box .flex_box {
        flex-direction: column;
        gap: 12px;
    }
    #price .sub_area .inner > .title.lv4 {
        font-size: 2.4rem;
        width: 90%;
    }

    /* --------------------------------
    ■doctor
    -------------------------------- */
    #doctor .doctor_msg .title.lv5 {
        font-size: 2rem;
    }

    /* --------------------------------
    ■clinic
    -------------------------------- */
    #clinic .gmap,
    #clinic .fax {
        display: inline-block;
    }

}


/* SP用
-------------------------------------------- */
@media only screen and (max-width : 767px) {

    /* --------------------------------
    ■共通
    -------------------------------- */
    br.pcOnly,
    .pcOnly {
        display: none;
    }

    /* --------------------------------
    ■背景
    -------------------------------- */
    section::before {
        top: -39px;
        height: 40px;
    }
    section:nth-of-type(1)::before {
        top: -39px;
    }

    /* --------------------------------
    ■pattern
    -------------------------------- */
    section .pattern::before,
    section .pattern::after {
        top: 200px;
        left: -280px;
        zoom: 0.4;
    }
    section .pattern::after {
        top: -180px;
        left: auto;
        right: -360px;
    }
    #intro .pattern::before {
        top: 250px;
    }
    #intro .pattern::after {
        top: -330px;
    }
    #point .pattern::after,
    #price .container.pattern::after {
        top: -400px;
        right: -200px;
    }
    section .blue_box.pattern::before {
        top: -70px;
        left: -45px;
    }
    section .blue_box.pattern::after {
        right: -35px;
    }

    /* --------------------------------
    ■共通
    -------------------------------- */
    section p.text,
    section dd.text {
        font-size: 1.5rem!important;
        letter-spacing: 0;
    }
    section p.introtext em {
        font-size: 1.6rem;
    }


    /* --------------------------------
    ■contact_area
    -------------------------------- */
    .contents .contact_area .buttonStyle {
        margin-top: 12px;
    }
    .contents .contact_area .buttonStyle a {
        padding: 14px;
    }
    .contents .contact_area .buttonStyle a span {
        background-size: 26px auto;
        padding-left: 32px;
    }
    .contents .contact_area .buttonStyle a em {
        font-size: 1.6rem;
    }

    /* --------------------------------
    ■intro
    -------------------------------- */
    #intro .box_shadow {
        padding: 30px 4%;
        background: var(--bg-color-white , #fff);
    }
    #intro ul.listcheck li {
        text-shadow: none;
    }
    .ttl_marker::before {
        content: none;
    }

    /* --------------------------------
    ■point
    -------------------------------- */
    #point {
        padding: 40px 4%;
        margin-top: 0;
    }
    #point .title.lv3 {
        margin-bottom: 0;
    }
    #point .flex_wrap + .flex_wrap {
        margin-top: 40px;
    }
    #point .flex_wrap .flex_box {
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column-reverse;
        gap: 16px;
        margin-top: 30px;
    }
    #point .flex_wrap .flex_box.reverse {
        flex-direction: column-reverse;
    }
    #point .flex_wrap .flex_box .txt_area,
    #point .flex_wrap .flex_box.reverse .txt_area {
        width: 100%;
        flex: auto;
        padding: 0;
    }
    #point .flex_wrap .flex_box .txt_area::after,
    #point .flex_wrap .flex_box.reverse .txt_area::after {
        content: none;
    }
    #point .flex_wrap .flex_box .title {
        position: static;
        margin-bottom: 16px;
    }
    #point .flex_wrap .flex_box .title::after {
        top: 0;
        right: 0;
        zoom: 0.5;
    }
    #point .flex_wrap .flex_box figure {
        flex: auto;
        margin-bottom: 0;
    }
    #point .flex_wrap:last-child .flex_box figure {
        margin-bottom: 0;
    }

    /* --------------------------------
    ■counseling
    -------------------------------- */
    .counseling .flex_box {
        margin-top: 30px;
    }
    .counseling .contact_area {
        width: auto;
    }
    .counseling ul.listcheck li {
        font-size: 1.6rem;
    }

    /* --------------------------------
    ■treatment
    -------------------------------- */
    #treatment .treatment_list {
        gap: 40px;
        margin-top: 32px;
    }
    #treatment .treatment_list li dl dd .title {
        margin-top: 16px;
    }
    #treatment .treatment_list li dl dd .title::after {
        zoom: 0.8;
    }

    /* --------------------------------
    ■comparison
    -------------------------------- */
    #comparison .comparison_list {
        gap: 60px;
        margin-top: 64px;
    }
    #comparison .comparison_list li .title {
        font-size: 1.8rem;
    }
    #comparison .comparison_list li dl {
        border: 5px solid #F0F0F0;
        padding: 30px 4%;
    }
    #comparison .comparison_list li#comparison2 dl {
        border: 5px solid #E3F5FF;
    }
    #comparison .comparison_list li dl dd.text {
        font-size: 1.5rem;
    }
    #comparison .ttl_marker {
        margin-top: 30px;
    }

    /* --------------------------------
    ■feature
    -------------------------------- */
    #feature .feature_list {
        gap: 40px 0;
    }
    #feature .feature_list li.flex_box {
        gap: 20px;
    }
    #feature .feature_list .title.lv4 small {
        font-size: 1.3rem;
        padding: 4px 11px;
    }

    /* --------------------------------
    ■price
    -------------------------------- */
    .priceBox .price_table {
        margin-bottom: 30px;
        overflow-x: scroll;
    }
    .priceBox .price_table table,
    .priceBox .price_table table tbody td,
    .priceBox .price_table table tbody td:first-child  {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    .priceBox .price_table table th,
    .priceBox .price_table table td {
        padding: 20px 10px;
    }
    .priceBox .price_table table tbody td:not(first-child) {
        font-size: 1.8rem;
    }

    section .blue_box {
        padding: 30px 4%;
    }
    section .blue_box p.title.lv6 {
        line-height: 1.5;
    }

    #price .sub_area {
        padding: 60px 4% 30px;
    }
    #price .sub_area + .sub_area {
        margin-top: 60px;
    }
    #price .sub_area .inner > .title.lv4 {
        top: -26px;
        font-size: 1.8rem;
        padding: 12px;
        background: linear-gradient(90deg, rgba(41, 59, 128, 0) 0%, rgba(36, 52, 113, 1) 10%, rgba(21, 30, 64, 1) 50%, rgba(36, 51, 111, 1) 90%, rgba(41, 59, 128, 0) 100%);
    }
    #price .sub_area .white_box {
        padding: 30px 4%;
    }
    #price .plan_area .white_box .title.lv5 {
        font-size: 1.6rem;
        letter-spacing: 0;
        margin-bottom: 0px;
    }
    #price .plan_area .white_box .price {
        font-size: 2rem;
    }
    #price .plan_area .white_box .price em {
        letter-spacing: 0.06em;
    }
    #price .plan_area .white_box .price.calc {
        font-size: 1.8rem;
    }
    #price .plan_area .white_box .price.calc > span {
        display: block;
        font-size: 1.3rem;
        padding: 4px 11px;
        margin: 20px auto 0;
    }
    #price .plan_area .white_box .price.calc small {
        font-size: 75%;
    }    
    #price .plan_area .white_box + .asterisk,
    #price .guarantee_area .guarantee_table table + .asterisk {
        margin-top: 20px;
    }
    #price .plan_area .white_box + .asterisk li,
    #price .guarantee_area .guarantee_table table + .asterisk li {
        font-size: 1.3rem;
    }
    #price .guarantee_area .white_box .flex_box {
        gap: 12px;
    }
    #price .guarantee_area .guarantee_table .title.lv4 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    #price .guarantee_area .guarantee_table table th,
    #price .guarantee_area .guarantee_table table td {
        font-size: 1.5rem;
        font-weight: 500;
        display: block;
        width: 100%;
        padding: 14px 4%;
        border: none;
    }
    #price .guarantee_area .guarantee_table table td ul.listdot li {
        font-size: 1.5rem;
    }

    #price .cp_area {
        margin-top: 60px;
    }
    #price .title.lv4 {
        font-size: 2.2rem;
    }
    #price .cp_list {
        margin-bottom: 30px;
    }
    #price .cp_list > li {
        padding: 30px 4%
    }
    #price .cp_list li dl {
        gap: 12px;
    }
    #price .cp_list li dl dt img {
        width: 100%;
    }
    #price .cp_list li dl dd p.ttl_marker {
        font-size: 1.9rem!important;
        margin-bottom: 12px;
    }
    #price .cp_list li ul.listcheck li {
        font-size: 1.6rem;
        padding-left: 1.5em;
    }
    #price .cp_list li ul.listcheck li:before {
        zoom: 0.8;
    }

    /* --------------------------------
    ■counseling2
    -------------------------------- */
    #counseling2 .box_shadow {
        padding: 30px 4%;
        margin: 30px auto;
    }
    #counseling2 .contact_area {
        margin: 0 auto;
    }

    /* --------------------------------
    ■doctor
    -------------------------------- */
    #doctor .container {
        margin-left: 0;
        margin-right: 0;
    }
    .polygon {
        padding: 60px 4%;
    }
    .polygon::before {
        clip-path: polygon(24px 0%, calc(100% - 24px) 0%, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0% calc(100% - 24px), 0% 24px);
    }
    #doctor .doctor_about {
        gap: 24px;
        margin-bottom: 20px;
    }
    #doctor .doctor_about .title.lv3 {
        margin-bottom: 36px;
    }
    #doctor .doctor_about .title.lv4 {
        margin-bottom: 24px;
    }
    #doctor .doctor_about .title.lv4 small {
        font-size: 1.3rem;
        letter-spacing: 0;
    }

    #doctor .doctor_history {
        padding: 0;
        gap: 24px;
    }
    #doctor .doctor_history .txt_area .title.lv5 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    #doctor .doctor_history .txt_area ul {
        font-size: 1.4rem;
    }
    #doctor .doctor_msg {
        padding-top: 20px;
    }
    #doctor .doctor_msg .title.lv5 {
        font-size: 2rem;
        margin-top: 30px;
    }

    /* --------------------------------
    ■clinic
    -------------------------------- */
    #clinic .txt_area {
        margin-bottom: 24px;
    }
    #clinic .txt_area > * {
        text-align: center!important;
    }
    #clinic .logo {
        zoom: 0.8;
    }
    #clinic .fax {
        font-size: 2.0rem;
        display: inline-block;
    }
    #clinic .listdot {
        margin-bottom: 20px;
    }
    #clinic .philos_area .title.lv4::after {
        zoom: 0.8;
    }
    #clinic .philos_area .introtext,
    #clinic .philos_area .introtext em {
        font-size: 1.5rem!important;
        letter-spacing: 0;
    }

    /* --------------------------------
    ■faq
    -------------------------------- */
    #faq dl.faq_list dt,
    #faq dl.faq_list dd {
        font-size: 1.6rem;
        letter-spacing: 0;
        padding: 20px 4% 20px calc( 8% + 32px);
    }
    #faq dl.faq_list dd {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    #faq dl.faq_list dt::before,
    #faq dl.faq_list dd::before {
        left: 4%;
        top: 20px;
        width: 32px;
        height: 32px;
        font-size: 1.6rem;
        line-height: 32px;
    }
}