@charset "UTF-8";

/*  
Theme Name: 　elm_threadlift
*/



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Zen Maru Gothic", "Noto Sans JP";
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    font-weight: 500;
    color: #5b5b5b;
    line-height: 1.8;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
}


li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.pt_18 {
    font-size: 1.8rem;
}

.pt_20 {
    font-size: 2.0rem;
}

.pt_24 {
    font-size: 2.4rem;
}

span.spl {
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:active {
    color: inherit;
}

@media (min-width:500px) {
    body {
        background: url("assets/img/all_bg.webp") center center / cover no-repeat fixed;
    }
}

@media (max-width:500px) {
    .pt_24 {
        font-size: 2.0rem;
    }

    body {
        font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    }
}


@media (max-width:375px) {
    .pt_24 {
        font-size: 1.8rem;
    }

}

/*****************************

PC MENU

*****************************/

.pc_menu_left .sec_title {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 0.1rem;
}


@media (min-width:1024px) {
    .pc_menu_left {
        position: fixed;
        width: calc((100vw - 500px) / 2);
        z-index: 1000;
        height: 100vh;
        margin-top: -70px;
    }

    #pc_menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .pc_menu_left ul {
        list-style: none;
        padding: 0;
        font-size: 2rem;
    }

    .pc_menu_left .pm_ol_item {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .pm_ol_link {
        color: #5b5b5b;
        text-decoration: none;
        transition: color 0.3s;
    }

    .pm_ol_link.current {
        color: #0a8491;
        font-weight: bold;
    }

    .pm_ol_item a:hover,
    .mini_item a:hover {
        opacity: 0.6;
    }

    .pm_ol_item.main_item {
        margin-bottom: 0px;
    }

    .pc_menu_left .mini_item {
        font-size: 80%;
        margin-bottom: 0px;
    }

    .pc_menu_left .mini_item.last {
        margin-bottom: 15px;
    }

    .pm_ol_item {
        position: relative;
    }

    .pm_ol_item::before {
        content: "";
        background: url(assets/img/rhombus_g.svg) no-repeat center / cover;
        width: 15px;
        height: 15px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -5px;
    }

    .pc_cv {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .pc_menu_right {
        position: fixed;
        width: calc((100vw - 500px) / 2);
        z-index: 1000;
        right: 0;
        height: 100vh;
    }

    .pc_cv .cv_btn img {
        max-width: 400px;
    }

    .pc_cv_qr h2 {
        font-size: 1.6rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 5px;
        position: relative;
    }

    .pc_cv_qr h2::before {
        position: absolute;
        bottom: 0;
        left: 3rem;
        display: inline-block;
        content: "";
        background: #0A8491;
        width: 2px;
        height: 30px;
        margin: 0 1em;
        margin-top: -.2em;
        vertical-align: middle;
        transform: rotate(-35deg);
    }

    .pc_cv_qr h2::after {
        position: absolute;
        bottom: 0;
        right: 3rem;
        display: inline-block;
        content: "";
        background: #0A8491;
        width: 2px;
        height: 30px;
        margin: 0 1em;
        margin-top: -.2em;
        vertical-align: middle;
        transform: rotate(35deg);
    }


    .pc_cv_qr {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(240, 248, 255, 0.9);
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.03),
            inset 0 1px 2px rgba(255, 255, 255, 0.9),
            inset 0 -1px 2px rgba(240, 240, 255, 0.3);
        width: 75%;
        margin: 0 auto;
        padding: 40px 20px;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .pc_cv_qr_img {
        text-align: center;
    }

    .pc_cv_qr_img img {
        max-width: 150px;
    }

    .cv_sticky_btn img {
        width: 120px;
    }
}

@media (max-width:1350px) {
    .pc_cv .cv_btn img {
        max-width: 320px;
    }

    .pc_cv_qr h2::before {
        left: 1rem;
    }

    .pc_cv_qr h2::after {
        right: 1rem;
    }

}

@media (max-width:1200px) {

    .pc_menu_left ul {
        font-size: 1.6rem;
    }

    .pc_menu_left,
    .pc_menu_right {
        display: none;
    }
}




/*****************************

header

*****************************/


.header {
    width: 100%;
    max-width: 500px;
    height: 70px;
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: radial-gradient(at 50% 50%, #0E8D9C 0, #036978 100%);
    z-index: 1000;
}

.header_top {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.header_logo {
    flex: 1;
    max-width: 200px;
}

.header_logo a img {
  display:block;
}

.header_cv img {
    max-width: 150px;
    margin-left: 40px;
}


/* hamburger menu */

.ham_ol {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.ham_ol_line {
    position: absolute;
    left: 11px;
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    transition: all .6s;
}

.ham_ol_line:nth-of-type(1) {
    top: 14px;
}

.ham_ol_line:nth-of-type(2) {
    top: 23px;
}

.ham_ol_line:nth-of-type(3) {
    top: 32px;
}

.ham_ol.active .ham_ol_line {
    background-color: #fff;
}

.ham_ol.active .ham_ol_line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.ham_ol.active .ham_ol_line:nth-of-type(2) {
    opacity: 0;
}

.ham_ol.active .ham_ol_line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav_ol {
    position: fixed;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #eaf9fd;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}

.nav_ol.active {
    visibility: visible;
    opacity: 1;
}

.nav_ol_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.nav_ol_content .sec_title {
    display: block;
    text-align: center;
}

.nav_ol_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav_ol_list .mini_item .pm_ol_link {
    color: #5b5b5b;
    padding-left: 20px;
}

.nav_ol.active .nav_ol_item {
    opacity: 1;
    transform: translateY(0);
}


.nav_ol_link {
    display: inline-block;
    color: #5b5b5b;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color .3s;
}

.mini_item a{
    font-size: 1.4rem;
}


.nav_ol_link:hover {
    color: #0A8491;
}

.mini_item.last {
    margin-bottom: 20px;
}

.nav_ol_item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.nav_ol_item::before {
    content: "";
    background: url(assets/img/rhombus_g.svg) no-repeat center / cover;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -5px;
}

.nav_ol_item.main_item {
    margin-bottom: 0px;
}

@media (max-width:500px) {

    .nav_ol_content {
        width: 80%;
    }
}


@media (max-width:375px) {

    .nav_ol_link {
        font-size: 1.6rem;
        padding: 0px;
        margin-bottom: 7px;
    }
	
	.nav_ol_item {
		    margin-bottom: 0;
}

.mini_item.last {
    margin-bottom: 7px;
	}
	
	.nav_ol_content .sec_title {
	margin-bottom:20px;
	}

}



/*****************************

common

*****************************/



.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.section {
    width: 100%;
}

.section .sec_fv img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}

.sec_fv {
    margin-top: 70px;
}

.section img {
    max-width: 100%;
    margin: auto;
    display: block;
}

.sec_pd {
    padding: 70px 30px;
}

.sec_title {
    position: relative;
    font-size: 3.5rem;
    color: #0A8491;
    display: inline-block;
    padding: 0 30px;
    margin-bottom: 30px;
}

.sec_title::before {
    bottom: 7px;
    background: repeating-linear-gradient(-45deg, transparent 0 2px, #0A8491 2px 4px);
    content: '';
    left: 0;
    height: 7px;
    position: absolute;
    width: 100%;
    opacity: 0.5;
}

.sec_title_wrap {
    text-align: center;
}



@media (min-width:500px) {

    .container {
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    }
}


@media (max-width:500px) {
    .sec_title {
        font-size: 2.8rem;
    }

    .sec_pd {
        padding: 60px 20px;
    }
}


/*****************************

動画

*****************************/

.sec_movie {
    background: url(assets/img/bg_01.jpg) no-repeat center / cover;
}

.movie_area_wrap {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0px auto;
    overflow: hidden;
}

.movie_inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.movie_mask {
    position: absolute;
    top: 13%;
    left: 5%;
    width: 90%;
    height: 70%;
    overflow: hidden;
    z-index: 2;
    top: 19%;
    height: 80%;
}

.movie_mask .movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie_frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(assets/img/movie_frame.webp) no-repeat center / contain;
    z-index: 3;
    pointer-events: none;


}

.sec_top_txt {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
}


@media (min-width:500px) {

    .movie_area_wrap {
        width: 400px;
        height: 800px;
    }

    .movie_mask {
        top: 11%;
        height: 78%;
    }
}


@media (max-width:500px) {

    .movie_mask {
        top: 11%;
        height: 80%;
    }

    .sec_top_txt {
        max-width: 250px;
    }
}



/*cv button*/

.cv_btn {
    margin-top: 30px;
}

.cv_btn a {
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.cv_btn a:hover {
  transform: translateY(-5px) !important;
}

@media (min-width:500px) {

    .cv_btn {
        max-width: 430px;
        margin: 0 auto;
        margin-top: 15px;
    }
}

/*****************************

お悩み１

*****************************/

.sec_worry {
    background: url(assets/img/wr_bg.webp) no-repeat center / cover;
}

.sec_worry .sec_top_txt {
    max-width: 350px;
}

.worry_item {
    margin-bottom: 10px;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    color: #fff;
    width: 290px;
}

.worry_item:last-child {
    margin-bottom: 0px;
}


.worry_item .pt_24 {
    font-weight: 600;
    text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.8);
    margin-right: 0.25rem;
}


.worry_item_wrap {
    text-align: center;
}

.sec_worry .young {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.sec_worry .middle {
    display: flex;
    justify-content: flex-start;
}

.worry_item.fr {
    background: url(assets/img/worry_item_bg.png) no-repeat center / 100% 100%;
}

.worry_item.bk {
    background: url(assets/img/worry_item_bg02.png) no-repeat center / 100% 100%;
}

@media (max-width:500px) {
    .worry_item {
        width: 250px;
    }

    .sec_worry .sec_top_txt {
        max-width: 300px;
    }
}

@media (max-width:414px) {

    .worry_item {
        width: 220px;
    }
}


/*****************************

お悩み２

*****************************/


.sec_worry02 {
    background: url(assets/img/wr02_bg.webp) no-repeat center / cover;
    padding-bottom: 240px;
}

.sec_worry02 .sec_top_txt {
    margin-top: 20px;
    margin-bottom: 10px;
    max-width: 380px;
}

.worry02_box {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    z-index: 0;
}

.worry02_box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(10, 90, 94, 0.5);
    border-radius: 6px;
    z-index: -1;
}

.worry02_item {
    position: relative;
    border-bottom: 2px dashed #e0e0e0;
    margin-bottom: 10px;
    list-style-position: inside;
    padding: 0 30px 10px;
}

.worry02_item::before {
    content: "";
    background: url(assets/img/checkmark.png) no-repeat center / contain;
    position: absolute;
    top: 5px;
    left: 0;
    width: 25px;
    height: 25px;
}

.worry02_item_box {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
}

.sec_worry02 {
    position: relative;
}

.sec_worry02::after {
    content: "";
    background: url(assets/img/worry02_il.png) no-repeat center / contain;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
}

@media (max-width:500px) {
    .worry02_item_box {
        padding-bottom: 40px;
    }

    .worry02_item {
        font-size: 1.8rem;
    }

    .sec_worry02 .sec_top_txt {
        max-width: 330px;
        margin-bottom: 10px;
    }
}

@media (max-width:375px) {
    .worry02_item_box {
        padding-bottom: 30px;
    }

    .sec_worry02::after {
        height: 300px;
    }

    .sec_worry02 .sec_top_txt {
        margin-top: 15px;
    }

    .sec_worry02 .sec_top_txt {
        max-width: 300px;
    }
}


/*****************************

解決

*****************************/

.sec_solution {
    position: relative;
    background: url(assets/img/sl_bg.webp) no-repeat center / cover;
    margin-bottom: 20px;
}

.sec_solution::before {
    content: "";
    background: url(assets/img/sl_triangle2.png) no-repeat center / contain;
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    max-width: 500px;
    height: 240px;
}

.sec_solution .sec_top_txt {
    max-width: 380px;
    margin-top: 120px;
    margin-bottom: 0;
}

.sl_model {
    max-width: 340px;
    margin: 0 auto;
}

.sl_circle_wrap {
    width: 100%;
    display: flex;
    margin-top: -85px;
}

.sl_circle.tp {
    margin-top: -30px;
}


@media (max-width:500px) {
    .sec_solution .sec_top_txt {
        max-width: 300px;
    }

    .sl_model {
        max-width: 280px;
    }

    .sec_solution {
        margin-bottom: 0px;
    }
}

@media (max-width:375px) {
    .sec_solution::before {
        top: -65px;
    }

    .sec_solution .sec_top_txt {
        margin-top: 80px;
    }
}


/*****************************

選ばれる理由

*****************************/

.sec_reason {
    position: relative;
    background: url(assets/img/reason_bg.webp) no-repeat top / cover;
}

.sec_reason::after {
    content: "";
    background: url(assets/img/reason_bg_top.png) no-repeat center / contain;
    position: absolute;
    top: -75px;
    left: 0;
    width: 100%;
    max-width: 500px;
    height: 80px;
}

.sec_reason .sec_top_txt {
    margin-top: -60px;
    max-width: 380px;
}

.reason_h {
    display: inline-block;
    background-color: transparent;
    font-weight: bold;
    font-size: 2.2rem;
    color: #569eb2;
}

.reason_h p {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 10px 20px;
    line-height: 1.6;
    display: inline-block;
}

.reason_desc {
    color: #fff;
    line-height: 1.8;
    font-family: "Noto Sans JP";
	font-weight:400;
}

.reason_title img {
    width: 150px;
    margin: 0 0 10px;
}

.reason_title {
    display: block;
    margin-top: -10px;
}


.reason_item {
    margin-bottom: 30px;
}

.reason_img {
    max-width: 400px;
    margin: 0 auto;
}

.reason_bottom {
    margin-top: -10px;

}


@media (max-width:500px) {

    .sec_reason::after {
        top: -50px;
    }

    .sec_reason .sec_top_txt {
        margin: -30px auto 0px;
        max-width: 320px;
    }

    .reason_title img {
        width: 120px;
    }

    .reason_h {
        font-size: 1.8rem;
    }

    .reason_img {
        max-width: 300px;
    }

}


/*****************************

CV

*****************************/

.sec_cv {
    background: url(assets/img/cv_bg.webp) no-repeat top / cover;
}

.sec_cv .sec_top_txt {
    max-width: 420px;
    margin-bottom: 0px;
}

@media (max-width:500px) {

    .sec_cv .sec_top_txt {
        max-width: 360px;
        margin-bottom: 0px;
    }

    .sec_cv .cv_btn {
        margin-top: 10px;

    }
}

@media (max-width:375px) {

    .sec_cv .sec_top_txt {
        max-width: 320px;
        margin-bottom: 0px;
    }
}

/*****************************

お悩み別　種類

*****************************/


.sec_choice {
    background: url(assets/img/choice_txt_bg.png) no-repeat top / cover;
}

/* 3点リーダー */
.three-dot-leader {
    cursor: pointer;
    border: none;
    background: none;
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.three-dot-leader .dot,
.three-dot-leader .dot::before,
.three-dot-leader .dot::after {
    display: block;
    position: absolute;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background-color: #0a8491;
}

.three-dot-leader .dot {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.three-dot-leader .dot::before,
.three-dot-leader .dot::after {
    content: '';
}

.three-dot-leader .dot::before {
    top: -10px;
}

.three-dot-leader .dot::after {
    top: 10px;
}

.choice_part.cheek {
    width: 50px;
    margin: 0;
}

.choice_part.chin {
    width: 120px;
    margin: 0;
}

.choice_part.eyes {
    width: 80px;
    margin: 0;
}

.choice_part.spg {
    width: 250px;
    margin: 0 5px 0 0;
}


.choice_pu_txt {
    color: #0a8491;
    font-weight: 600;
}


.choice_pu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice_item {
    color: #0a8491;
}

.choice_item .pt_24 {
    font-weight: 600;
}

.choice_item li {
    background-color: #fff;
    text-align: center;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 2rem;
}

.choice_model {
    max-width: 300px;
    margin: 15px auto;
}

.section.sec_choice_inner {
    padding-top: 60px;
}

.sec_choice_inner.cheek {
    background-color: #daefeb;
    position: relative;
}


.sec_choice_inner.cheek::after {
    content: "";
    background: url(assets/img/sltxt_cheek.webp) no-repeat center / contain;
    position: absolute;
    top: 19%;
    right: 0;
    aspect-ratio: 243 / 553;
    width: 22%;
    mix-blend-mode: soft-light;
}



.sec_choice_inner.cheek::before {
    content: "";
    background: url(assets/img/case01_top.png) no-repeat center / contain;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 130px;
    height: 100px;
}

.swiper-area {
    position: relative;
    overflow: visible;
}

#el_swipe {
    overflow: hidden;
    border-radius: 8px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
width: 40px;
height: 60px;
    border-radius: 5px;
    z-index: 10;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px !important;
    color: white;
}


.swiper-button-prev {
    left: -30px !important;
}

.swiper-button-next {
    right: -30px !important;
}


.lift_kind_case {
    margin-bottom: 25px;
}

.swiper-pagination-bullet-active {
    background: #0a8491 !important;
}

.case_caption {
    font-size: 1rem;
    color: #333;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-family: "Noto Sans JP";
    line-height: 1.6;
	font-weight:400;
}

.lift_kind_item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.lift_kind_title {
    background: linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: 2.4rem;
    text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.lift_kind_item_top p {
    text-align: center;
    color: #0a8491;
    margin: 20px 0;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.5;
}

.lift_kind_item_inner {
    padding: 0 20px 60px;
}

.hex_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 15px;
}

.hex_title::before,
.hex_title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #0097a7;
}

.hex_title span {
    position: relative;
    display: inline-block;
    padding: 5px 50px;
    color: #fff;
    font-size: 1.8rem;
    background: linear-gradient(to right, #0097a7, #006064);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.lift_kind_item_desc_01 ul {
    margin-bottom: 10px;
}

.lift_kind_item_desc_01 li {
    position: relative;
    padding: 0 10px 10px 30px;
    font-family: "Noto Sans JP";
	font-weight:400;
}

.lift_kind_item_desc_01 li::before {
    content: "";
    background: url(assets/img/checkmark.png) no-repeat center / contain;
    position: absolute;
    top: 5px;
    left: 0;
    width: 20px;
    height: 20px;
}

.lift_kind_item_desc_02 {
    font-family: "Noto Sans JP";
	font-weight:400;
}


.lift_kind_item_desc_02,
.lift_kind_item_desc_02>dt,
.lift_kind_item_desc_02>dd {
    box-sizing: border-box;
}

.lift_kind_item_desc_02>dt,
.lift_kind_item_desc_02>dd {
    padding: 10px;
    margin: 0px;
}


.lift_kind_item_desc_02>dd {
    background-color: #fff;
}



@media (max-width:500px) {

    .choice_part.spg {
        width: 200px;
        margin: 0;
    }

    .hex_title span {
        font-size: 1.6rem;
        padding: 3px 50px;
    }

    .choice_model {
        max-width: 250px;
    }

    .lift_kind_item_desc_01 ul {
        margin-bottom: 15px;
    }

    .case_caption {
        font-size: 0.8rem;
    }

    .section.sec_choice_inner.sec_pd {
        padding-top: 40px;
    }

    .choice_item li {
        padding: 10px;
    }

    .choice_part.cheek {
        width: 50px;
    }

    .choice_part.chin {
        width: 100px;
    }

    .choice_part.eyes {
        width: 70px;
    }

    .choice_part.spg {
        width: 180px;
        margin-right: 5px;
    }
	
	.swiper-button-next {
    right: -20px !important;
	}
	
	.swiper-button-prev {
    left: -20px !important;
	}
	
	.swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 50px;
    }
}


@media (max-width:375px) {

    .choice_model {
        max-width: 240px;
    }

    .choice_part.cheek {
        width: 40px;
        margin: 0;
    }

    .choice_part.chin {
        width: 90px;
        margin: 0;
    }

    .choice_part.eyes {
        width: 60px;
        margin: 0;
    }

    .choice_part.spg {
        width: 160px;
        margin: 0 5px 0 0;
    }


}



.list_table,
.list_table>dt,
.list_table>dd {
    box-sizing: border-box;
}

.list_table>dt,
.list_table>dd {
    padding: 10px;
    margin: 0px;
}


.list_table>dd {
    background-color: #fff;
    border-right: 1px solid #ddd;
}

.list_table {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.list_table>dt,
.list_table>dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.list_table>dt {
    width: 30%;
    background-color: #edf7f7;
    color: #0a8491;
}

.list_table>dd {
    width: 70%;
}



.lift_kind_item_desc_02 h4 {
    background-color: #fff;
    color: #0a8491;
    text-align: center;
    font-size: 1.8rem;
}

/*あご下*/

.sec_choice_inner.chin {
    background-color: #edd6de;
    position: relative;
}


.sec_choice_inner.chin::before {
    content: "";
    background: url(assets/img/case02_top.png) no-repeat center / contain;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 130px;
    height: 100px;
}

.sec_choice_inner.chin::after {
    content: "";
    background: url(assets/img/sltxt_chin.webp) no-repeat center / contain;
    position: absolute;
    top: 29%;
    right: 0;
    aspect-ratio: 243 / 431;
    width: 22%;
    mix-blend-mode: soft-light;
}



/*鼻糸*/

.sec_choice_inner.nose {
    background-color: #f9f5e1;
    position: relative;
}

.nose .choice_model {
    max-width: 280px;
}

.sec_choice_inner.nose::before {
    content: "";
    background: url(assets/img/case03_top.png) no-repeat center / contain;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 130px;
    height: 100px;
}

.sec_choice_inner.nose::after {
    content: "";
    background: url(assets/img/sltxt_nose.webp) no-repeat center / contain;
    position: absolute;
    top: 28%;
    right: 0;
    aspect-ratio: 243 / 493;
    width: 22%;
    mix-blend-mode: overlay;
}


.lift_kind_title span {
    display: block;
    font-size: 1.6rem;
}

/*アイスレッド*/

.sec_choice_inner.eye {
    background-color: #cecedd;
    position: relative;
}

.sec_choice_inner.eye::before {
    content: "";
    background: url(assets/img/case04_top.png) no-repeat center / contain;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 130px;
    height: 100px;
}

.sec_choice_inner.eye::after {
    content: "";
    background: url(assets/img/sltxt_eyes.webp) no-repeat center / contain;
    position: absolute;
    top: 28%;
    right: 0;
    aspect-ratio: 243 / 403;
    width: 22%;
    mix-blend-mode: soft-light;
}



/*ショッピングリフト*/

.sec_choice_inner.spg {
    background-color: #add0da;
    position: relative;
}

.sec_choice_inner.spg::before {
    content: "";
    background: url(assets/img/case05_top.png) no-repeat center / contain;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 130px;
    height: 100px;
}

.sec_choice_inner.spg::after {
    content: "";
    background: url(assets/img/sltxt_face.webp) no-repeat center / contain;
    position: absolute;
    top: 26%;
    right: 0;
    aspect-ratio: 115 / 424;
    width: 16%;
    mix-blend-mode: soft-light;
}



@media (max-width:500px) {

    .lift_kind_title {
        font-size: 2rem;
    }

    .lift_kind_item_top p {
        font-size: 1.6rem;
    }

    .list_table {
        font-size: 1.3rem;
    }
	.nose .choice_model {
    max-width: 230px;
}
	
}


/*****************************

症例

*****************************/

.sec_case {
    background-color: #DAEEEF;
}

.sec_case .tags,
.sec_clinic .tags {
    margin: 10px auto;
}


.case_ky,
.clinic_ky {
    display: flex;
    flex-wrap: wrap;
}

.case_ky_title {
    font-size: 1.8rem;
    color: #0A8491;
    margin: 0 auto;
    font-weight: 600;
}


.sec_case .tags button,
.sec_clinic .tags button {
    color: #0A8491;
    background-color: #fff;
    padding: 5px 10px;
    border: solid 1px #0A8491;
    border-radius: 5px;
    font-family: "Zen Maru Gothic";
    font-weight: 500;
    font-size: 1.6rem;
    margin: 0 3px 5px 0;
}

.sec_case .tags button.active,
.sec_clinic .tags button.active {
    background-color: #0A8491;
    color: #fff;
}


.sec_case .tags button:hover,
.sec_clinic .tags button:hover {
    background-color: #0A8491;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.case-detail_dr_inner {
    display: flex;
    align-items: center;
    background-color: #F4F4EF;
}

.case-detail_btm h4 {
    font-size: 2.4rem;
}

.case-detail_btm .onayami {
    display: inline-block;
    background-color: #D86694;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.4rem;
    margin-right: 10px;
    font-weight: 600;
}

.onayami_title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.case-detail_btm .list_table {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: "Noto Sans JP";
	font-weight:400;
    line-height: 1.6;
}


.case-detail_dr {
    background-color: #F4F4EF;
    padding: 10px;
    border-radius: 10px;
}


.dr_desc .dr_charge {
    display: inline-block;
    background-color: #A39D76;
    color: #fff;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 1.3rem;
    margin-right: 10px;
    margin-bottom: 5px;
}

.dr_cl {
    display: inline-block;
}

.dr_desc p {
    font-size: 1.4rem;
    font-family: "Noto Sans JP";
	font-weight:400;
}

.dr_img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
}

.case-detail_btm {
    background-color: #fff;
    padding: 20px 20px 30px 20px;
    border-radius: 0 0 10px 10px;
}

.swiper-slide.case-detail img {
    border-radius: 10px 10px 0 0;
}

.sec_case_swiper.c_kogao .swiper-pagination,
.sec_case_swiper.c_chin .swiper-pagination,
.sec_case_swiper.c_tarumi .swiper-pagination,
.sec_case_swiper.c_houreisen .swiper-pagination,
.sec_case_swiper.c_hari .swiper-pagination,
.sec_case_swiper.c_fline .swiper-pagination,
.sec_case_swiper.c_eye .swiper-pagination,
.sec_case_swiper.c_nose .swiper-pagination,
.sec_case_swiper.c_hiroshima .swiper-pagination,
.sec_case_swiper.c_okayama .swiper-pagination,
.sec_case_swiper.c_fukuoka .swiper-pagination,
.sec_case_swiper.c_kyoto .swiper-pagination,
.sec_case_swiper.c_osaka .swiper-pagination,
.sec_case_swiper.c_kobe .swiper-pagination,
.sec_case_swiper.c_kumamoto .swiper-pagination,
.sec_case_swiper.c_omotesando .swiper-pagination,
.sec_case_swiper.c_azabu .swiper-pagination {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}



.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.3) !important;
  height: 4px !important;
  border-radius: 2px;
}

.swiper-pagination-progressbar-fill {
  background: #0e8d9c !important; /* お好みの色に */
  border-radius: 2px;
}


@media (max-width:500px) {

    .sec_case .tags button {
        font-size: 1.4rem;
    }

    .case_ky_tytle {
        font-size: 1.6rem;
    }

    .case-detail_btm h4 {
        font-size: 1.8rem;
    }

    .case-detail_btm .list_table,
    .dr_desc p {
        font-size: 1.3rem;
    }

    .case-detail_btm {
        background-color: #fff;
        padding: 15px 20px 20px 20px;
    }

    .list_table>dt,
    .list_table>dd {
        padding: 8px;
    }
}


/*****************************

料金表

*****************************/

.sec_price {
    background-color: #b6dde0;
}

.sec_price .ac {
    margin-inline: auto;
    position: relative;
    width: 100%;
}

.ac_title {
    background: linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: 2.4rem;
    /* text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.8); */
    cursor: pointer;
}

.ac_content {
    display: none;
    padding: 20px 20px 0 20px;
}

.ac_content p {
    font-size: 13px;
    line-height: 1.5;
}

.ac_title {
    position: relative;
    background-image: linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
    background-size: cover;
    background-blend-mode: multiply;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: 2.4rem;
    text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.8);
}

.ac_title.cheek {
    background-image: url("assets/img/price_cheek.png"),
        linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
}

.ac_title.nose {
    background-image: url("assets/img/price_nose.png"),
        linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
}

.ac_title.chin {
    background-image: url("assets/img/price_chin.png"),
        linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
}

.ac_title.eye {
    background-image: url("assets/img/price_eye.png"),
        linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
}

.ac_title.face {
    background-image: url("assets/img/price_face.png"),
        linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
}

.ac_title.open::after {
    top: 45%;
    transform: rotate(-45deg);
}

.list_table.price {
    border: none;
}

.ac_content .list_table>dt,
.ac_content .list_table>dd {
    border: none;
}


.ac_content .list_table>dt {
  width:40%;
}
.ac_content .list_table>dd {
  width:60%;
}

.ac_content .list_table>dt,
.ac_content .list_table>dd {
    background-color: transparent;
    font-size: 2.4rem;
    font-family: "jost";
	font-weight:400;
    padding: 0;
    text-align: center;
	border-bottom: 1px solid #ddd;
	padding: 10px;
	display:inline-block;
}

span.jp_mini {
    font-size: 1.6rem;
}

.ac_content .list_table>dt {
    color: #5b5b5b;
	background-color:#f4f4f4;

}


.list_table.price{
 border: 1px solid #ddd;
     border-bottom: none;
}

.ac_content_name {
  margin-bottom:10px;
}

.ac_content_name h5 {
  position: relative;
  padding-left: 12px;
      font-size: 2.2rem;
    color: #0A8491;
    line-height: 1.4;
}

.ac_content_name h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 4px;
  height: 1.2em;
  background-color: #0b8491;
}


.ac_item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
}

.ac_content_box {
    padding-bottom: 30px;
    box-shadow: 1px 0.5px 5px 0.5px rgba(0, 99, 107, 0.2);
    border-radius: 0 0 10px 10px;
}

.ac_content_name span,
.price_spl {
    font-size: 1.4rem;
    color: #f44580;
    line-height: 1.4;
	margin-top:3px;
    display: block;
	font-family: "Noto Sans JP";
}

.ac_title,
.ac_title02 {
    position: relative;
    cursor: pointer;
    padding-right: 30px;
}

.ac_title .ac_arrow,
.ac_title02 .ac_arrow {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.ac_title.open .ac_arrow,
.ac_title02.open .ac_arrow {
    transform: translateY(-50%) rotate(-135deg);
}

.tax {
 font-size:1.2rem;
 margin-left:3px;
}



@media (max-width:500px) {

    .ac_content_name h5 {
        font-size: 1.8rem;
    }

    .ac_content .list_table>dt,
    .ac_content .list_table>dd {
        font-size: 1.6rem;
    }

    .ac_content_name span,
    .price_spl {
        font-size: 1.2rem;
    }

    .ac_title {
        font-size: 1.8rem;
    }

    .ac_content_name h5 {
        font-size: 1.6rem;
    }
	
span.jp_mini {
    font-size: 1.4rem;
}
}


/*****************************

施術の流れ

*****************************/

.sec_flow {
    background: url(assets/img/flow_bg.webp) no-repeat center / cover;
}

.sec_flow_swiper {
    margin-bottom: 40px;
}

.flow_img img {
    border-radius: 10px 10px 0 0;
}

.flow_desc_top {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed rgb(170, 170, 170);
    margin-bottom: 15px;
    padding-bottom: 3px;
}

.flow_num {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.flow_desc_top h5 {
    font-size: 2.2rem;
    color: #0A8491;
    line-height: 1.4;
}

.flow_desc {
    background-color: #fff;
    padding: 10px 30px 30px 30px;
    border-radius: 0 0 10px 10px;
    min-height: 270px;
}

.flow_desc_btm {
    font-family: "Noto Sans JP";
	font-weight:400;
}

.flow_movie {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.flow_movie iframe {
    width: 100%;
    height: 100%;
}

.flow_movie_txt {
    color: #0A8491;
    font-size: 2.2rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
}

.mds_dl {
    position: relative;
}

.mds_dl::before,
.mds_dl::after {
    position: absolute;
    top: 20px;
    left: 65px;
    display: inline-block;
    content: "";
    background: #0A8491;
    width: 2px;
    height: 50px;
    margin: 0 1em;
    margin-top: -.2em;
    vertical-align: middle;
    transform: rotate(-35deg);
}


.mds_dl::after {
    transform: rotate(35deg);
    right: 65px;
    left: auto;
}

.sec_flow_swiper .swiper-pagination {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}


@media (max-width:500px) {


    .flow_num {
        width: 70px;
        height: 70px;
    }

    .flow_desc_top h5 {
        font-size: 1.8rem;
    }

    .flow_desc {
        min-height: 250px;
    }

    .flow_movie_txt {
        font-size: 1.8rem;
    }

    .mds_dl::before,
    .mds_dl::after {
        height: 40px;
        top: 15px;
    }

    .mds_dl::before {
        left: 50px;
    }

    .mds_dl::after {
        right: 50px;
    }


}


@media (max-width:375px) {

    .mds_dl::before {
        left: 2rem;
    }

    .mds_dl::after {
        right: 2rem;
    }

    .flow_desc {
        padding: 15px 20px 20px 20px;
    }

}



/*****************************

よくあるご質問

*****************************/

.sec_faq {
    background: url(assets/img/faq_bg.webp) no-repeat center / cover;
}

.ac_title02 {
    background: linear-gradient(180deg, rgb(14, 141, 156), rgb(3, 105, 120));
    font-size: 1.8rem;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 15px 35px 15px 20px;
    line-height: 1.4;
}

.ac_item02 {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
}

.ac_content_box02 {
    padding: 20px;
}

.ac_title02 {
    display: flex;
    align-items: flex-start;
}

.txt_q {
    font-family: "Jost";
    margin-right: 10px;
    font-size: 2rem;
}

.txt_a {
    font-family: "Jost";
    color: #0A8491;
    margin-right: 10px;
    font-size: 2rem;
    margin-top: -0.2rem;
}

.ac_content_box02 {
    display: flex;
    align-items: flex-start;
    box-shadow: 1px 0.5px 5px 0.5px rgba(0, 99, 107, 0.2);
    border-radius: 0 0 10px 10px;
}

.a_desc {
    font-family: "Noto Sans JP";
	font-weight:400;
}


@media (max-width:500px) {

    .ac_title02 {
        font-size: 1.6rem;
        line-height: 1.4;
        align-items: center;
    }
}



/*****************************

クリニック紹介

*****************************/

.sec_clinic {
    background: url(assets/img/clinic_bg.webp) no-repeat top / cover;
}

.sec_clinic .sec_title {
    margin-top: -10px;
    margin-bottom: 15px;
}

.sec_clinic .sec_title_wrap span img {
    max-width: 160px;
}

.clinic_ky {
    text-align: center;
}

.clinic_items {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
}

.h_bl {
    font-size: 2rem;
    color: #0A8491;
    display: inline-block;
    line-height: 0.8;
    font-weight: bold;
    padding: 10px 10px 10px 15px;
    margin-bottom: 15px;
    border-left: 5px solid #0A8491;
}

.clinic_items .list_table {
    margin-top: 20px;
	font-family: "Noto Sans JP";
font-weight: 400;
}

.clinic_items .list_table dd {
    line-height: 1.4;
}


.clinic_items .cv_btn {
    margin-top: 15px;
    margin-bottom: 45px;
}

.clinic_dr h5 {
    font-size: 2rem;
    color: #0A8491;
    text-align: center;
    position: relative;
    padding-bottom: 4px;
    width: 50%;
    margin: 0 auto 15px;
}


.clinic_dr h5::after {
    bottom: 7px;
    background: repeating-linear-gradient(-45deg, transparent 0 2px, #0A8491 2px 4px);
    content: '';
    left: 0;
    height: 7px;
    position: absolute;
    width: 100%;
    opacity: 0.5;
}


.clinic_dr_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.dr_item {
    width: calc(50% - 5px);
    margin-bottom: 25px;
}

.dr_item:nth-child(even) {
    margin-left: 10px;
}

.dr_item a:hover {
  transform: translateY(-2px);
  transition: .3s;
}

.sec_clinic .tags {
    margin-bottom: 20px;

}

#case_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#case_modal .modal-content {
    overflow: visible;
    position: relative;
}

#case_modal .swiper-button-next {
    right: 0px !important;
}

#case_modal .swiper-button-prev {
    left: 0px !important;
}

#case_modal .modal-content {
    position: relative;
    background-color: #fff;
    max-width: 500px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}

#case_modal .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1100;
    user-select: none;
}

.dr_nm {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.dr_pt {
    color: #0A8491;
    font-size: 1.4rem;
}

.dr_kn {
    color: #0A8491;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.dr_txt {
    text-align: center;
    line-height: 1.6;
    margin-top: 12px;
}

.dr_txt a {
    width: 80%;
    background: radial-gradient(at 50% 50%, #0E8D9C 0, #036978 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    display: block;
    margin: 10px auto 0;
    border-radius: 50vh;
}

.dr_txt.btn_arrow a::after {
    right: 15px;
    width: 5px;
    height: 5px;
}

.gmap {
    color:#0A8491;
}

.gmap:hover {
    opacity:0.6;
    transition: 0.3s;
}



@media (max-width:500px) {

    .sec_clinic .sec_title_wrap span img {
        max-width: 140px;
    }

    .sec_case .tags button,
    .sec_clinic .tags button {
        font-size: 1.4rem;
    }

    .clinic_items {
        padding: 25px 20px;
    }

    .dr_nm {
        font-size: 2rem;
    }

    .dr_txt a {
        width: 90%;
        padding: 10px;
    }

    .dr_pt {
        font-size: 1.2rem;
    }

    .h_bl {
        font-size: 1.8rem;
    }
}

@media (max-width:375px) {

    .dr_nm {
        font-size: 1.6rem;
    }
}


/*****************************

footer

*****************************/

footer {
    background: radial-gradient(at 50% 50%, #0E8D9C 0, #036978 100%);
    padding: 30px;
}

footer p,
footer h2 {
    text-align: center;
}

footer a,
.footer_copyright {
    color: #fff;
    text-align: center;
    display: block;
}

.footer_copyright {
    font-size: 1.2rem;
    margin-top: 20px;
}

.footer_txt img {
    max-width: 180px;
}

.footer_logo img {
    max-width: 200px;
}


.cv_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.cv_modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.cv_modal.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1200;
}

/* モーダル内側の指定 */
.modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
    margin: 0 auto;
}


/* モーダルを閉じるボタンの指定 */
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: radial-gradient(at 50% 50%, #0E8D9C 0, #036978 100%);
    border-radius: 50%;
    cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
    background: #fff;
    text-align: left;
    line-height: 1.8;
    padding: 40px 20px;

}


.cv_modal_item_wrap {
    display: flex;
    flex-wrap: wrap;
}


.cv_modal_item {
    width: calc(50% - 5px);
}

.cv_modal_item a {
    transition-duration: 0.2s;
    text-decoration: none;
    outline: none;
    color: #fff;
    background: #0a8491;
    width: 100%;
    padding: 20px 10px;
    display: block;
    text-align: center;
    font-size: 1.25em;
    margin-bottom: 10px;
}

.cv_modal_item a:hover {
    opacity: 0.8;
}


.cv_modal_item:nth-child(odd) {
    margin-right: 10px;
}

.cv_modal_title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 2rem;
    color: #0a8491;
}


@media (max-width:500px) {
    .cv_modal {
        min-height: 100vh;
        height: auto;
    }

    .cv_modal_title,
    .cv_modal_item {
        font-size: 1.6rem;
    }

    .footer_txt img {
        max-width: 160px;
    }

    .footer_logo img {
        max-width: 200px;
    }

}

@media (max-width:375px) {

    .cv_modal_title,
    .cv_modal_item {
        font-size: 1.4rem;
    }

}


/*****************************

お問い合わせフォーム

*****************************/


.container.contact {
    background-color: #fff;
}

.container.contact article {
    padding: 70px 30px;
}

/* お知らせバー */
.noteBar {
    background: linear-gradient(135deg, #ee92b6, #d85286);
    color: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.noteBar::before {
    content: 'お知らせ';
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.8);
    padding-bottom: 5px;
}

.noteBar p {
    font-size: 1.4rem;
    padding: 12px;
    border-radius: 8px;
    font-family: "Noto sans JP";
	font-weight:400;
}

.container.contact article h1 {
    text-align: center;
    font-size: 2.4rem;
    margin: 40px 0 30px;
    font-weight: 600;
    position: relative;
}

.container.contact article h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0a8491;
    margin: 15px auto;
    border-radius: 2px;
}

.page_subt {
    text-align: center;
    margin-bottom: 20px;
}


.form_supple {
    background: linear-gradient(135deg, #e3f2fd, #f1f8e9);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.form_supple p {
    margin: 0;
    font-size: 15px;
}

.form_supple span {
    display: block;
    margin-bottom: 8px;
}

.form_supple span:last-child {
    margin-bottom: 0;
}

.contact_desc ul {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
}

.contact_desc ul li {
    font-family: "Noto Sans JP";
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
    font-size: 1.4rem;
    padding-left: 20px;
	font-weight:400;
}

.contact_desc ul li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: #0a8491;
    font-weight: bold;
    font-size: 1.6rem;
}

.contact_desc ul li:last-child {
    margin-bottom: 0;
}

.wpcf7 input::placeholder {
    color: #c7c7c7;
}

.error {
    color: #c92d2d;
    font-weight: 600;
}

.page_sec_tbtn {
    max-width: 250px;
    margin: 0 auto;  
}

.page_sec_tbtn a {
    background: radial-gradient(at 50% 50%, #0E8D9C 0, #036978 100%);
    padding: 20px;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 50vh;
    color: #fff;
}
.btn_arrow a {
    position: relative;
}

.btn_arrow a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.form_square {
    color:#0a7e8d;
    margin-right: 5px;
}


@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width:500px) {

    .container.contact article h1 {
        font-size: 2rem;
    }
}



/*****************************

contact form7

*****************************/

.container.cf7 {
    padding: 70px 30px;
}

.instructions ul {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
}

.instructions ul li {
    font-family: "Noto Sans JP";
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
    font-size: 1.4rem;
    padding-left: 20px;
	font-weight:400;
}

.instructions ul li:before {
    content: '※';
    position: absolute;
    left: 0;
    color: #0a8491;
    font-weight: bold;
    font-size: 1.6rem;
}

.phone-number {
    color: #c92d2d;
}

.container.cf7 h1 {
    text-align: center;
    font-size: 2.4rem;
    margin: 40px 0 30px;
    font-weight: 600;
    position: relative;
}

.container.cf7 h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0a8491;
    margin: 15px auto;
    border-radius: 2px;
}

.wpcf7-form {
    margin: 0;
}

.form-group {
    margin-bottom: 40px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.6rem;
}

.required {
    background: #c92d2d;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: -5px;
    margin-bottom: 5px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    display: block;
}

.wpcf7-form-control:focus {
    border-color: #0a8491;
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.wpcf7-list-item {
    display: block;
    margin-left: 0px;
    margin-bottom:5px;
}

.wpcf7-list-item:hover {
    background: #e9ecef;
}

.wpcf7-list-item input[type="checkbox"],
.wpcf7-list-item input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.wpcf7-list-item-label {
    cursor: pointer;
    flex: 1;
}

.datetime-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-range p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-range select {
    flex: 1;
}

.time-separator {
    color: #666;
    font-weight: bold;
}

.age-input p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.age-input .wpcf7-form-control {
    flex: 1;
    max-width: 100px;

}

.age-unit {
    color: #666;
    font-size: 14px;
}

.wpcf7-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.wpcf7-submit {
    background: radial-gradient(at 50% 50%, #0E8D9C 0%, #036978 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.wpcf7-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-45deg);
    transition: left 0.7s ease;
}

.wpcf7-submit:hover::after {
    left: calc(100% + 75px);
}

.wpcf7-submit:hover {
    transform: translateY(-3px) !important;
    background: radial-gradient(at 50% 50%, #1fa3b5 0%, #047a89 100%) !important;
}

.wpcf7-submit:active {
    transform: translateY(-1px) !important;
}


/* バリデーションエラー */
.wpcf7-not-valid {
    border-color: #c92d2d !important;
    background: #fdf2f2 !important;
}

.wpcf7-validation-errors {
    background: #fdf2f2;
    border: 1px solid #c92d2d;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #c92d2d;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #155724;
}



@media (max-width:500px) {
    .wpcf7-form-control {
        font-size: 1.4rem;
    }

    .form-group {
        margin-bottom: 30px;
    }

    .noteBar {
        padding: 10px 20px;
    }

    .noteBar p {
        font-size: 1.3rem;
        padding: 12px 0;
    }

    .instructions ul {
        padding: 20px;
    }

    .instructions ul li {
        font-size: 1.3rem;
    }
}

.form_supple {
    display: none;
}

.noteBar {
    display: none;
}


/*****************************

プライバシーポリシー

*****************************/

.sc0 {
    margin-bottom: 20px;
}

.t3 {
    color: #0a8491;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

hr.spacer.sz20 {
    margin: 20px 0;
}

ul.c_ul1.p.mb20.f_s14 {
    margin: 5px 0;
}

.c_desc,
.cont {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
	font-weight:400;
}


@media (max-width:500px) {
    .t3 {
        color: #0a8491;
        font-size: 1.8rem;
    }

}

.year-input p {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.year-input select {
    border-radius: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.year-input select:focus {
    outline: none;
}

.year-input select:hover {
    border-color: #9ca3af;
}

/* 年・月・日の幅調整 */
.year-input select[name="seireki"] {
    flex: 2;
    min-width: 90px;

}

.year-input select[name="tsuki"] {
    flex: 1;

}

.year-input select[name="nichi"] {
    flex: 1;
}

/* プレースホルダーテキストのスタイル */
.year-input select option:first-child {
    color: #9ca3af;
    font-style: italic;
}

/* 未選択時（プレースホルダー表示時）のスタイル */
.year-input select:invalid {
    color: #9ca3af;
    font-style: italic;
}


/*404*/



@media (max-width:500px) {
.p_404 {
    font-size:1.6rem;
}

}