@charset "utf-8";



/*===========================================================*/
/* loading effect */
/*===========================================================*/

#splash{
    background: #fff;
    position: fixed;
    top:0;
    bottom:0;
    right: 0;
    left: 0;
    z-index: 1004;
 }
 
 #splash.splash_end{
    animation: haze_clears forwards .7s ease;
 }
 @keyframes haze_clears{
     0%{
     }
     100%{
         opacity: 0;
         visibility: hidden;
     }
   }


/*===========================================================*/
/* cta */
/*===========================================================*/

#cta {
    position: fixed;
	bottom: 0;
	left: 0;
    z-index: 10;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 -1px 9px rgb(0 0 0 / 3.5%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    letter-spacing: 0.08em;
    line-height: 1.4;
    visibility: hidden;
    transition: opacity .2s, transform .4s;
    opacity: 0;
    transform: translateY(100%);
}
#cta.appeared {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

#cta .info_area{
    display: flex;
    gap: 25px;
    align-items: center;
}

.tel_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tel_wrapper .sub{
    font-size: 1.1rem;
}

#cta .info_area .tel{
    font-size: 2.6rem;
    position: relative;
    line-height: 1.2;
}
#cta .info_area .tel::before{
    content: url(../img/icon_tel_black.svg);
    display: inline-block;
    height: 26px;
    width: 26px;
    font-size: 0;
    line-height: 1;
    vertical-align: middle;
    margin-right: 8px;
}
#cta .info_box{
    display: flex;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}
#cta .info_box dt{
    width: 5em;
}
#cta .btn_area {
    display: flex;
}
#cta .btn_area  a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 80px;
    color: #fff;
    font-weight: 700;
    position: relative;
    gap: 4px;
    transition: filter .4s;
}
#cta .btn_area  a::before{
    content: "";
    display: block;
    font-size: 0;
    width: 22px;
}
#cta .btn_area  a:hover{
    filter: brightness(1.1);
}


#cta .btn_area  .tel::before{
    content: url(../img/icon_btn_tel.svg);
}
/* #cta .btn_area  .line::before{
    content: url(../img/icon_btn_line.svg);
} */
#cta .btn_area  .online::before{
    content: url(../img/icon_btn_online.svg);
}

/* #cta .btn_area .line{
    width: calc((100% - 80px)/2);
    background-color: var(--line_bg);
} */

#cta .btn_area .online{
    /* width: calc((100% - 80px)/2); */
    width: 340px;
    max-width: calc(50vw - 80px);
    background-color: var(--blue_bg);
}

#cta .btn_area .page_top{
    width: 80px;
    height: 80px;
    background-color: var(--black);
}
#cta .btn_area .page_top img{
    width: 34px;
}

#cta .btn_area .tel{
    display: none;
}



@media (max-width: 920px){
    #cta {
        padding-left: 0;
        flex-direction: column;
        height: auto;
    }
    #cta .info_area{
        display: none;
    }
    #cta .btn_area {
        width: 100%;
        display: flex;
    }
    #cta .btn_area .page_top{
        display: none;
    }

    #cta .btn_area .tel,
    /* #cta .btn_area .line, */
    #cta .btn_area .online{
        /* width: calc(100%/3); */
        width: calc(100%/2);
        height: 60px;
        border-left: 1px solid #fff;
        max-width: unset;
    }

    #cta .btn_area .tel{
        display: flex;
        background-color: var(--pink_bg);
        border-left: none;
    }
}
@media (max-width: 520px){
    #cta .btn_area  a::before{
        width: 16px;
    }
    #cta .btn_area .tel,
    /* #cta .btn_area .line, */
    #cta .btn_area .online{
        height: 54px;
        font-size: 1.2rem;
    }
}


/*===========================================================*/
/* header */
/*===========================================================*/

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 68px;
    padding-left: 30px;
    background-color: #fff;
}
#header.colored {
    box-shadow: 0 1px 9px rgb(0 0 0 / 3.5%);
}
#header.open {
    box-shadow: unset!important;
}

#header .logo img{
    transition: opacity .4s;
    display: block;
    width: auto;
    height: 40px;
    font-size: 0;
}

#header .nav_modal{
    display: none;
}

#header .burger {
    display: block;
    position: relative;
    width: 68px;
    height: 68px;
    background: var(--black);
    cursor: pointer;
    transition: background-color .6s ease;
    border: none;
}

#header .burger span{
    position: absolute;
    height: 1px;
    width: 38px;
    left: 15px;
    display: block;
    margin: auto;
    background: #fff;
    -webkit-transition: .6s ease;
    transition: .6s ease;
}
#header .burger span:nth-of-type(1){
    top: 20px;
}
#header .burger span:nth-of-type(2){
    top: 50%;
}
#header .burger span:nth-of-type(3){
    bottom: 20px;
}
#header.open .burger span:nth-of-type(1){
    top: 50%;
    transform: rotate(45deg);
}
#header.open .burger span:nth-of-type(2){
    background-color: transparent;
}
#header.open .burger span:nth-of-type(3){
    bottom: 50%;
    transform: rotate(-45deg);
}


@media screen and (max-width: 920px) {

    #header{
        padding-left: 25px;
    }

}
@media screen and (max-width: 767px) {
    #header{
        height: 58px;
        padding-left: 15px;
    }

    #header .burger {
        width: 58px;
        height: 58px;
    }
    
    #header .burger span{
        width: 30px;
        left: 14px;
    }
    #header .burger span:nth-of-type(1){
        top: 17px;
    }
    #header .burger span:nth-of-type(3){
        bottom: 17px;
    }
}

@media screen and (max-width: 520px) {

}



/*===========================================================*/
/* nav_modal */
/*===========================================================*/

#nav_modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 15;
    background: #fff;
    display: block;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
    padding: calc(68px + 60px) 15% 60px;
}
#nav_modal .modal_list {
    width: 100%;
}

#nav_modal.open {
    opacity: 1;
    visibility: visible;
}

#nav_modal .modal_list a{
    position: relative;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed var(--pink_bg);
    padding: 15px;
    display: block;
    line-height: 1.5;
    transition: .3s;
}
#nav_modal .modal_list a:hover{
    color: var(--pink_txt);
}


#nav_modal .modal_list .bottom_link{
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#nav_modal .modal_list .bottom_link a{
    color: #fff;
    font-size: 1.5rem;
    width: calc((100% - 40px)/3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 56px;
    border-radius: 8px;
    padding: 0 5px;
    white-space: nowrap;
    min-width:240px;
    max-width: 280px;
    transition: .4s;
    border-bottom: unset;
}
#nav_modal .modal_list .bottom_link a::before{
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background-size: contain;
}
#nav_modal .modal_list .bottom_link a:hover{
    filter: brightness(1.1);
}
#nav_modal .modal_list .btn_tel{
    background-color: var(--pink_bg);
    display: none!important;
}
#nav_modal .modal_list .btn_online{
    background-color: var(--blue_bg);
}
#nav_modal .modal_list .btn_line{
    background-color: var(--line_bg);
}
#nav_modal .modal_list .btn_tel::before{
    background-image: url(../img/icon_btn_tel.svg);
}
#nav_modal .modal_list .btn_online::before{
    background-image: url(../img/icon_btn_online.svg);
}
#nav_modal .modal_list .btn_line::before{
    background-image: url(../img/icon_btn_line.svg);
}




@media screen and (max-width: 1100px) {
    #nav_modal .modal_list .bottom_link{
        flex-direction: column;
    }
    #nav_modal .modal_list .bottom_link a {
        width: 60%;
        max-width: unset;
    }
}

@media screen and (max-width: 767px) and (any-hover: none) {
    #nav_modal .modal_list .btn_tel{
        display: flex!important;
    }
  }

@media screen and (max-width: 767px) {

    #nav_modal {
        padding: calc(58px + 60px) 15% 60px;
    }

    #nav_modal .modal_list .bottom_link {
        gap: 15px;
        margin-top: 40px;
    }
    #nav_modal .modal_list .bottom_link a {
        font-size: 1.4rem;
        width: 80%;
    }
    #nav_modal .modal_list .bottom_link a::before {
        width: 22px;
        height: 22px;
    }
}


@media screen and (max-width: 520px) {
    #nav_modal .modal_list .bottom_link a {
        width: 100%;
    }
}




/*===========================================================*/
/* mv */
/*===========================================================*/

    #mv{
        margin-top: 68px;
        position: relative;
        background: url(../img/bg_kv.jpg);
        background-size: cover;
        background-position: center right;
    }
    #mv .wrapper{
        width: 100%;
        max-width: 1100px;
        margin: auto;
    }


    @media screen and (max-width: 767px) {
        #mv{
            margin-top: 58px;
        }

    }



/*===========================================================*/
/* compliance */
/*===========================================================*/
#compliance{
    text-align: center;
    padding: 15px 0;
    background-color: var(--gold_light);
    color: var(--gold_txt);
}


@media screen and (max-width: 520px) {
    #compliance{
        font-size: 1.2rem;
        padding: 10px 0;
    }
}

/*===========================================================*/
/* agenda */
/*===========================================================*/
#agenda{
    background-color: var(--pink_bg);
    color: #fff;
    height: 70px;
}
#agenda .list{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.4rem;
}
#agenda li{
    width: 160px;
    text-align: center;
    line-height: 1.4;
    font-weight: 700;
    border-right: 1px solid #fff;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#agenda li:first-child{
    border-left: 1px solid #fff;
}
#agenda a{
    height: 70px;
    width: 100%;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    background-color: var(--pink_bg);
}
#agenda a:hover{
    filter: brightness(1.15);
}

@media screen and (max-width: 767px) {
    #agenda{
        height: auto;
    }
    #agenda .list{
        flex-wrap: wrap;
    }
    #agenda li{
        width: calc(100% / 3);
        height: auto;
    }
    #agenda a{
        padding: 10px 5px;
        height: 60px;
    }
    #agenda li:first-child{
        border-left: none;
    }
    #agenda li:nth-child(3),
    #agenda li:nth-child(6){ 
        border-right: none;
    }
    #agenda li:nth-child(4),
    #agenda li:nth-child(5),
    #agenda li:nth-child(6){ 
        border-top: 1px solid #fff;
    }
}
@media screen and (max-width: 520px) {
    #agenda .list{
        font-size: 1.2rem;
    }
    #agenda a{
        padding: 10px 5px;
        height: 54px;
    }
}


/*===========================================================*/
/* about */
/*===========================================================*/

#about .description{
    margin-bottom: 30px;
}
#about .img_liftup{
    display: block;
    margin: auto;
    width: 794px;
}



/*===========================================================*/
/* recommend */
/*===========================================================*/

#recommend {
    padding-bottom: 0;
    background: var(--blue_gray);
}

#recommend .c_inner{
    display: flex;
    align-items: flex-end;
}
#recommend .img_recommend{
    width: 420px;
    object-fit: contain;
}

#recommend .list{
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}
#recommend li{
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--blue_bg);
    color: #fff;
    color: var(--pink_txt);
    background: #fff;
    border: 2px solid var(--pink_txt);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-align: center;
    font-size: 1.5rem;
}


#recommend .caution{
    background-color: var(--gold_light);
    color: var(--gold_txt);
    font-size: 1.4rem;
    padding: 25px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#recommend .caution .head{
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 980px) {
    #recommend .list{
        padding-bottom: 60px;
    }

    #recommend .img_recommend{
        width: 360px;
    }
}

@media screen and (max-width: 920px) {
    #recommend .c_inner{
        flex-direction: column;
    }
    #recommend .list{
        padding-bottom: 25px;
        justify-content: center;
    }
    #recommend .img_recommend{
        margin: auto;
        width: 280px;
    }

}

@media screen and (max-width: 767px) {
    #recommend .list{
        gap: 20px;
        padding-bottom: 20px;
    }
    #recommend li{
        width: 180px;
        height: 180px;
    }
    #recommend .caution{
        text-align: left;
        padding: 25px 30px;
        font-size: 1.3rem;
    }
    #recommend .caution .head{
        text-align: center;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 520px) {
    #recommend .list{
        gap: 15px;
        padding-bottom: 15px;
    }
    #recommend li{
        width: 150px;
        height: 150px;
        font-size: 1.2rem;
    }
    #recommend .caution{
        padding: 20px 15px;
    }
}



/*===========================================================*/
/* reason */
/*===========================================================*/

#reason .img_graph{
    width: 340px;
    margin: 80px auto;
}
#reason .img_graph .note{
    text-align: right;
    font-size: 1.4rem;
    margin-top: 10px;
}

#reason .description{
    text-align: center;
    font-size: 2.6rem;
}

#reason .txt_large{
    font-size: 3.8rem;
}

#reason .img_arrow{
    width: 240px;
    margin: 0 auto 80px;
}


#reason .point_list .item{
    position: relative;
    border: 2px solid var(--pink_bg);
    padding: 0 18px 36px;
}

#reason .point_list .item + .item{
    margin-top: 50px;
}
#reason .point_list .content{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#reason .point_list .txt_area{
    width: 50%;
    flex-shrink: 0;
}


#reason .point_list .head{
    display: flex;
    align-items: center;
    background: var(--pink_bg);
    width: calc(100% + 18px + 18px);
    margin-left: -18px;
    margin-bottom: 24px;
    min-height: 50px;
}
#reason .point_list .num{
    display: block;
    width: 80px;
    position: absolute;
    left: 10px;
}
#reason .point_list h3{
    padding-left: 110px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

#reason .point_list .txt_area p{
    font-size: 1.6rem;
}
#reason .point_list .txt_area .note{
    font-size: 1.2rem;
    margin-top: 10px;
}
@media screen and (max-width: 920px) {
    #reason .point_list .item{
        padding: 0 18px 18px;
    }
    #reason .point_list .head{
        min-height: 44px;
    }
    #reason .point_list .num{
        width: 70px;
    }
    #reason .point_list h3{
        font-size: 2.4rem;
    }


    #reason .point_list .content{
        gap: 20px;
    }
    #reason .description{
        font-size: 2.2rem;
    }
    #reason .txt_large{
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 767px) {

    #reason .img_graph{
        width: 260px;
        margin: 60px auto;
    }
    #reason .img_arrow{
        width: 160px;
        margin: 0 auto 60px;
    }

    #reason .point_list .item + .item{
        margin-top: 40px;
    }

    #reason .point_list .content{
        flex-direction: column;
    }

    #reason .point_list .head{
        padding: 5px;
    }
    #reason .point_list .num{
        position: static;
        padding-left: 13px;
    }

    #reason .point_list .txt_area,
    #reason .point_list .img_area{
        width: 100%;
    }
    #reason .point_list h3{
        padding-left: 10px;
        font-size: 2.2rem;
    }
    #reason .point_list .txt_area h4{
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    #reason .point_list .txt_area p{
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 520px) {
    #reason .point_list .item + .item{
        margin-top: 30px;
    }
    #reason .img_graph{
        margin: 40px auto;
    }
    #reason .img_arrow{
        margin: 0 auto 40px;
    }

    #reason .description{
        font-size: 1.6rem;
    }
    #reason .txt_large{
        font-size: 2.4rem;
    }
    #reason .point_list h3{
        font-size: 1.8rem;
    }
    #reason .point_list .num{
        width: 64px;
    }

}



/*===========================================================*/
/* dia-ga */
/*===========================================================*/


#dia-ga img{
    display: block;
    margin: auto;
    width: 520px;
    margin-bottom: 30px;
}


#dia-ga .point_area{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
}
#dia-ga .box{
    width: 420px;
    border-radius: 8px;
    background-color: #fff;
    padding: 35px;
    text-align: center;
}
#dia-ga .point_txt{
    color: var(--pink_txt);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 0 1em;
    position: relative;
    line-height: 1;
}

#dia-ga .point_txt::before,
#dia-ga .point_txt::after{
    position: absolute;
    content: "";
    background-color: var(--pink_txt);
    width: 2px;
    height: 80%;
    bottom: 0;
}

#dia-ga .point_txt::before{
    left: 0;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

#dia-ga .point_txt::after{
    right: 0;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

#dia-ga .head{
    color: var(--pink_blue);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--pink_txt);
    line-height: 1.4;
}
#dia-ga .body{
    font-size: 1.6rem;
    text-align: left;
}



@media screen and (max-width: 920px) {
    #dia-ga .point_area{
        gap: 20px;
    }
    #dia-ga .head{
        font-size: 2.2rem;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }
}


@media screen and (max-width: 767px) {
    #dia-ga .point_area{
        flex-direction: column;
        margin-top: 60px;
    }
    #dia-ga .box{
        width: 100%;
        padding: 35px;
    }
    #dia-ga .body{
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 520px) {
    #dia-ga .point_area{
        margin-top: 40px;
    }

}



/*===========================================================*/
/* premium */
/*===========================================================*/
#premium{
    background: url(../img/bg_premium.jpg);
    background-size: cover;
}
#premium .description{
    margin-bottom: 30px;
    text-shadow: rgb(255, 255, 255) 0px 0px 10px;
}
#premium .bnr{
    background-color: #fff;
}
#premium .bnr + .bnr{
    margin-top: 20px;
}
#premium .bnr a{
    transition: opacity .4s,filter .4s;
}
#premium .bnr a:hover{
    opacity: .8;
    filter: brightness(1.05);
}

@media screen and (max-width: 767px) {
    #premium .bnr.sp_only{
        position: relative;
        display: flex;
        justify-content: center;
    }

    #premium .bnr .btn_conv{
        position: absolute;
        background-color: var(--black);
        color: #fff;
        border-radius: 8px;
        bottom: 8vw;
        font-size: 1.8rem;
        min-width: 200px;
        padding: 0 1em;
        line-height: 46px;
    }
    #premium .bnr:nth-of-type(2) .btn_conv{
        background-color: var(--gold_bg);
    }
    #premium .bnr:nth-of-type(4) .btn_conv{
        background-color: var(--pink_bg);
    }
    #premium .bnr:nth-of-type(6)  .btn_conv{
        background-color: var(--blue_bg);
    }

    #premium .bnr .btn_conv .txt_wrapper{
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
        align-items: center;
    }
    #premium .bnr .btn_conv .txt_wrapper::after{
        content: "";
        background: url(../img/arrow_right.svg);
        width: 8px;
        height: 12px;
        background-size: cover;
        margin-left: 10px;
    }
}
@media screen and (max-width: 520px) {
    #premium .bnr .btn_conv{
        bottom: 6vw;
        font-size: 1.6rem;
    }
}


/*===========================================================*/
/* case */
/*===========================================================*/

#case .photo_area img + img{
    margin-top: 30px;
}



/*===========================================================*/
/* price */
/*===========================================================*/

#price .scroll_wrapper{
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

#price .price_table{
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
    border-top: var(--gray_txt) solid 1px;
    border-left: var(--gray_txt) solid 1px;
    border-collapse: collapse;
    border-spacing: 0;
}
#price .price_table small{
    font-size: 1.2rem;
}
#price thead th{
    background: var(--pink_bg);
    color: #fff;
    padding: 10px 24px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
    white-space: nowrap;
}
#price thead th:last-child{
    border-right: var(--gray_txt) solid 1px;
}

#price tbody tr:nth-of-type(odd) {
    background: var(--pink_light);
}

#price tbody td {
    border-bottom: var(--gray_txt) solid 1px;
    border-right: var(--gray_txt) solid 1px;
    vertical-align: middle;
    padding: 10px 24px;
    line-height: 1.5;
}
#price tbody td:first-child {
    text-align: left;
    font-weight: 700;
}

#price .note_list{
    font-size: 1.2rem;
}
#price .txt_pink{
    font-size: 1.6rem;
}



@media screen and (max-width: 920px) {
    #price .price_table{
        min-width: 920px;
    }
}


@media screen and (max-width: 767px) {

    #price .price_table{
        min-width: 760px;
        font-size: 1.2rem;
    }
    #price thead th{
        padding: 10px 12px;
    }
    #price tbody td {
        padding: 10px 12px;
    }
    #price .txt_pink{
        font-size: 1.4rem;
    }

}


/*===========================================================*/
/* flow */
/*===========================================================*/

#flow .list{
    line-height: 1.4;
}

#flow .item{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 30px;
    gap: 30px;
    position: relative;
    border-left: 5px solid var(--pink_bg);
}
#flow .item + .item{
    margin-top: calc((20px * 2) + 24px);
}
#flow .item:not(:last-child):after{
    content: '▼';
    display: block;
    line-height: 1;
    position: absolute;
    color: var(--pink_txt);
    font-size: 24px;
    bottom: calc(-24px - 20px);
    left: 50%;    
    transform: translateX(-50%) scale(2, 1);
}

#flow .icon_area{
    width: 60px;
    flex-shrink: 0;
}

#flow .sp_wrapper{
    width: calc(100% - 90px);
    gap: 30px;
    display: flex;
    flex-direction: row-reverse;
}

#flow .img_area{
    width: 260px;
    flex-shrink: 0;
}
#flow .img_area img{
    border: 1px solid var(--gray_light);
}


#flow .txt_area{
    width: calc(100% - 290px);
    font-size: 1.6rem;
}

#flow h3{
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pink_txt);
}

@media screen and (max-width: 920px) {

    #flow .img_area{
        width: 240px;
    }
    #flow .item{
        gap: 20px;
    }
    #flow .txt_area{
        width: calc(100% - 260px);
    }
    #flow h3{
        font-size: 2.2rem;
    }
    #flow .sp_wrapper{
        width: calc(100% - 80px);
        gap: 20px;
    }
}


@media screen and (max-width: 767px) {
    #flow .item{
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    #flow .icon_area{
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    #flow .icon_area img{
        width: 50px;
    }
    #flow h3{
        margin-bottom: 0;
    }
    #flow .sp_wrapper{
        width: 100%;
        gap: 10px;
    }
    #flow .txt_area{
        width: calc(100% - 130px);
        font-size: 1.4rem;
    }
    #flow .img_area{
        width: 120px;
    }
    #flow .img_area img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}

@media screen and (max-width: 520px) {
    #flow .item + .item{
        margin-top: calc((20px * 2) + 18px);
    }
    #flow .item:not(:last-child):after{
        font-size: 18px;
        bottom: calc(-18px - 20px);
    }
}



/*===========================================================*/
/* thermal */
/*===========================================================*/


#thermal img{
    display: block;
    margin: auto;
    width: 520px;
    margin-bottom: 30px;
}


#thermal .point_area{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
}
#thermal .box{
    width: 420px;
    border-radius: 8px;
    background-color: #fff;
    padding: 35px;
    text-align: center;
}
#thermal .point_txt{
    color: var(--pink_txt);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 0 1em;
    position: relative;
    line-height: 1;
}

#thermal .point_txt::before,
#thermal .point_txt::after{
    position: absolute;
    content: "";
    background-color: var(--pink_txt);
    width: 2px;
    height: 80%;
    bottom: 0;
}

#thermal .point_txt::before{
    left: 0;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

#thermal .point_txt::after{
    right: 0;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

#thermal .head{
    color: var(--pink_blue);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--pink_txt);
    line-height: 1.4;
}
#thermal .body{
    font-size: 1.6rem;
    text-align: left;
}


@media screen and (max-width: 920px) {
    #thermal .point_area{
        gap: 20px;
    }
    #thermal .head{
        font-size: 2.2rem;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }
}


@media screen and (max-width: 767px) {
    #thermal .point_area{
        flex-direction: column;
        margin-top: 60px;
    }
    #thermal .box{
        width: 100%;
        padding: 35px;
    }
    #thermal .body{
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 520px) {
    #thermal .point_area{
        margin-top: 40px;
    }

}



/*===========================================================*/
/* comment */
/*===========================================================*/

#comment {
    background: url(../img/bg_comment.jpg) no-repeat center/cover;
    padding-bottom: 80px;
    text-shadow: #fff 0 0 10px;
}

#comment .content{
    display: flex;
    gap: 40px;
    align-items: flex-end;
    justify-content: space-between;
}
#comment .content .img_area{
    width: 280px;
    flex-shrink: 0;
    margin-bottom: -80px;
}
#comment .content .img_area img{
}
#comment .content .txt_area{
    width: calc(100% - 310px);
    font-size: 1.6rem;
}
#comment .content .profile_pc{
    margin-top: 30px;
    line-height: 1.5;
}
#comment .content .profile_sp{
    display: none;
    line-height: 1.5;
}
#comment .content .name{
    font-size: 2.4rem;
}

@media screen and (max-width: 980px) {
    #comment {
        padding-bottom: 60px;
    }
    #comment .content .img_area{
        margin-bottom: -60px;
        width: 340px;
    }
}
@media screen and (max-width: 920px) {
    #comment .content{
        flex-direction: column-reverse;
        gap: 30px;
    }
    #comment .content .txt_area{
        width: 100%;
    }
    #comment .content .img_area{
        margin-bottom: -60px;
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    #comment .content .img_area img{
        width: 50%;
        height: 64vw;
        object-fit: cover;
        object-position: top;
    }
    #comment .content .profile_pc{
        display: none;
    }
    #comment .content .profile_sp{
        display: block;
        margin-top: 80px;
    }

}
@media screen and (max-width: 767px) {
    #comment {
        padding-bottom: 35px;
    }
    #comment .content .post{
        font-size: 1.6rem;
    }
    #comment .content .img_area{
        margin-bottom: -35px;
    }

    #comment .content .profile_sp{
        margin-top: 60px;
    }
    #comment .content .post{
        font-size: 1.4rem;
    }
    #comment .content .name{
        font-size: 2.2rem;
    }
    #comment .content .txt_area{
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 520px) {

    #comment .content .img_area img{
        width: 50%;
    }
    #comment .content .post{
        font-size: 1.2rem;
    }
    #comment .content .name{
        font-size: 1.6rem;
    }
    #comment .content .profile_sp{
        margin-top: 50px;
    }
    
}



/*===========================================================*/
/* access */
/*===========================================================*/

#access {
    padding-bottom: 80px;
}


#access .access_wrapper{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
#access .left_area{
    width: calc(50% - 30px);
    display: flex;
    gap: 30px;
    flex-direction: column;
}
#access .right_area{
    width: 50%;
}
#access .movie_wrapper{
    width: 100%;
}
#access iframe{
    width: 100%;
}
#access .txt_box{
    font-size: 1.6rem;
}
#access .name{
    margin-bottom: 12px;
    font-size: 2.2rem;
    font-weight: 700;
}
#access .tel{
    font-size: 2.8rem;
    color: var(--pink_txt);
    font-weight: 700;
    margin-top: 8px;
}
#access .tel a{
    transition: .4s;
}
#access .tel a:hover{
    filter: brightness(1.15);
}
#access .tel small{
    font-size: 1.6rem;
    margin-right: 5px;
}
#access .schedule{
    letter-spacing: 0.08em;
}
#access .sd_table{
    margin-bottom: 10px;
    border-spacing: 0;
    border-collapse: collapse;
    white-space: nowrap;
}
#access .sd_table th ,
#access .sd_table td {
    font-weight: 700;
    border-bottom: 1px solid var(--gray_txt);
    vertical-align: middle;
}
#access .sd_table tr:first-of-type :is(th, td) {
    font-size: 1.6rem;
}
#access .sd_table th {
    font-size: 1.6rem;
    padding: 1em .4em;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}
#access .sd_table td {
    font-size: 1.6rem;
    width: 10%;
    text-align: center;
}

#access .schedule_note li {
    font-size: 1.2rem;
}


#access .link_list{
    margin-top: 80px;
    display: flex;
    gap: 30px;
}
#access .link_list li{
    width: calc((100% - 60px)/3);
}
#access .link_list h3{
    font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", YuGothic, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
    line-height: 1.5;
}
#access .link_list a{
    transition: .4s;
}
#access .link_list a:hover{
    filter: brightness(1.15);
}



@media screen and (max-width: 920px) {

    #access .access_wrapper{
        flex-direction: column;
        gap: 30px;
    }
    #access .left_area{
        width: 100%;
        flex-direction: row;
    }
    #access .right_area{
        width: 100%;
    }
    #access .schedule{
        width: 50%;
    }
    #access .txt_box{
        width: calc(50% - 30px);
    }
    #access iframe{
        height: 375px;
    }

    #access .link_list{
        gap: 20px;
    }
    #access .link_list li{
        width: calc((100% - 40px)/3);
    }
    #access .link_list h3{
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
}

@media screen and (max-width: 767px) {
    #access {
        padding-bottom: 60px;
    }
    #access .left_area{
        flex-direction: column;
    }
    #access .schedule{
        width: 100%;
    }
    #access .txt_box{
        width: 100%;
        font-size: 1.4rem;
    }
    #access .sd_table{
        width: 100%;
    }
    #access .name{
        margin-bottom: 8px;
        font-size: 1.8rem;
    }
    #access .tel{
        font-size: 2.4rem;
        margin-top: 4px;
    }
    #access .tel small{
        font-size: 1.4rem;
    }

    #access .link_list{
        margin-top: 60px;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    #access .link_list li{
        width: 100%;
    }
    #access .link_list h3{
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 520px) {
    #access {
        padding-bottom: 40px;
    }
    #access .sd_table,
    #access .sd_table th {
        white-space: inherit;
    }
    #access .sd_table tr:first-of-type :is(th, td) {
        font-size: 1.4rem;
    }
    #access .sd_table th {
        font-size: 1.4rem;
    }
    #access .sd_table td {
        font-size: 1.4rem;
    }
    #access .schedule_note li {
        font-size: 1.4rem;
    }
    #access .link_list{
        margin-top: 40px;
        gap: 20px;
    }
}



/*===========================================================*/
/* footer */
/*===========================================================*/

    footer{
        background-color: var(--black);
        font-size: 1.1rem;
        line-height: 1.4;
        color: #fff;
        padding-bottom: 80px;
    }
    footer .c_inner{
        padding: 12px 0;
        text-align: center;
    }

    @media screen and (max-width: 920px){
        footer{
            padding-bottom: 60px;
        }
    }

    @media screen and (max-width: 520px){
        footer{
            padding-bottom: 54px;
        }
    }
