@charset "utf-8";


html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #333333;
    width: 100%;
    box-sizing: border-box;
}

/* "Afacad", sans-serif; */
/* "Kaisei Tokumin", serif; */

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #333333;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

.pc-lg {
    display: none;
}

.hover_down:focus-visible {
    translate: 0 2px;
    filter:brightness(1.1);
}

@media (any-hover: hover) {
    .hover_down {
        transition: translate 0.1s ease-in, filter 0.1s ease-in;
    }

    .hover_down:hover {
        translate: 0 2px;
        filter:brightness(1.1);
    }
}


/* -----------レイアウト-----------*/
.body {
    background-color: #F7F5F1;
    z-index: 1;
}

.body::before {
    content: "";
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url(../img/pc-bg.webp);
    background-size:cover;
    z-index: -1;
}

.main_wrapper {
    max-width: 390px;
    width: 100%;
    background-color: #F7F5F1;
    position: relative;
    margin-inline: auto;
    overflow-x: hidden;
}

/* -----------header-----------*/
.header {
    padding: 8px 16px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    box-sizing: border-box;
}

.header_logo {
    max-width: 66px;
    object-fit: contain;
    display: block;
}

.header_button {
    max-width: 240px;
}

/* ---------- cta ---------- */
.cta_button {
    position: fixed;
    bottom: 5.5rem;
    left: 50%;
    translate: -50% 0;
    z-index: 100;
}


.cta_button_link {
    display: inline-block;
    max-width: 27.5rem;
    width: 100%;
}

.cta_button__in_content {
    margin-top: 3rem;
    position: static;
    left: auto;
    translate:unset;
    text-align: center;
}

.cta_button__flow {
    margin-top: 2rem;
}

.cta_text {
    /* font-size: min(4.1vw, 1.6rem); */
    padding: 1.5rem 3rem;
    background-image:  
        linear-gradient(to bottom,
        #FDDADA 0%,
        #DFB3AF 7%,
        #BC867E 20%,
        #CA7C71 46%,
        #EDBD70 100%);
    border-radius: 100vmax;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-shadow: 1px 2px 0 color-mix(in srgb, #85635E 70%, transparent);
    transition: box-shadow 0.1s ease-in;
    min-width: 260px;
    box-sizing: border-box;
}

.hover_down:hover .cta_text{
    box-shadow: none;
}

.cta_button svg {
    position: absolute;
    top: 50%;
    right: 1.6rem;
    translate: 0 -50%;

}
.cta_text_sm {
    font-size: min(3.3vw ,1.2rem);
}

/* -----------main-----------*/
/* ----- kv ----- */
.kv {
    width: 100%;
    height: 100vh;
    max-height: 640px;
    background-image: url(../img/kv_background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 5rem;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.kv_copy {
    width: 70vw;
    max-width: 27.7rem;
    margin-left: min(7.1vw, 3rem);
}

.kv_text {
    position: absolute;
    width: 10.2vw;
    min-width: 4rem;
    max-width: 4rem;
    top: -1rem;
    right: 1.6rem;
}

.kv_compare {
    margin-top: 2.8rem;
    width: 80%;
    max-width: 300px;
    aspect-ratio: 301 / 249;
    margin-left: 0;
    border: 2px solid #B88982;
    box-sizing: border-box;
}

.kv_compare_inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.kv_compare_inner .before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.kv_compare_inner .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.kv_compare_inner img.after {
    clip-path: inset(0 0 0 50%);
}

.slider-group {
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 50%;
    display: flex;
    align-items: center;
    transform: translate(-50%, 0);
    cursor: ew-resize;
    z-index: 10;
}

.slider {
    width: 1px;
    height: 100%;
    background-color: #B88982;
}

.arrow {
    width: 14px;
    height: 26px;
    background: none;
    position: absolute;
    bottom: 1rem;
}

.arrow.left {
    right: 0;
}

.arrow.left::before,
.arrow.right::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

/* 左矢印 */
.arrow.left::before {
border-width: 12px 12px 12px 0;
border-color: transparent #B88982 transparent transparent;
}

/* 右矢印 */
.arrow.right::before {
border-width: 12px 0 12px 12px;
border-color: transparent transparent transparent #B88982;
}

.arrow.left {
margin-right: 4px;
}

.arrow.right {
margin-left: 5px;
}

.kv_doctor {
    height: 9.6rem;
    background-color: #B88982;
    position: relative;
    padding: 0 min(9.2vw, 3.6rem);
    position: absolute;
    width: 100%;
    bottom: 0;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    border-top: 2px solid #FFFFFF;
  
}

.kv_doctor_clinic_name {
        color: #FFFFFF;
    max-width: 17.6rem;
    border-bottom: 0.5px solid #FFFFFF;
}

.kv_doctor_name {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1;
}

.kv_doctor_name_lg {
    font-size: 2rem;
    margin-left: 3px;
}

.kv_doctor_name_en {
    display: block;
    color: #9D5248;
    font-size: 1.2rem;
    margin-left: 4.3rem;
    line-height: 1;
    margin-top: 0.4rem;
}

.kv_doctor_image {
    position: absolute;
    width: 49.2vw;
    min-width: 19.2rem;
    max-width: 19.2rem;
    right: -3.3rem;
    bottom: -3rem;
}


/* ----- worries ----- */
.worries {
    position: relative;
    z-index: 1;
    padding: 2.2rem 0 2.2rem min(7.7vw, 3.6rem);
}

.worries::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 53px;
    background-color: #363636;
    bottom: -4.5rem;
    left: 50%;
}

.worries_head {
    font-weight: 600;
    font-size: min(5.12vw, 2rem);
}

.worries_list {
    margin-top: 1.8rem;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem 3rem;
    z-index: 2;
}

.worries_item {
    display: flex;
        gap: 5px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.worries_item:not(:first-child) {
    margin-top: 1rem;
}

.worries_item::before {
    content: url(/img/worries_check.svg);
}

.worries_arrow {
    width: 50px;
    margin-top: -0.4rem;
    margin-left: 36%;
}

.worries_desc {
    line-height: 1;
    padding: 1rem 2rem;
    background: rgba(54, 54, 54, 0.7);
    border-radius: 2px;
    color: #FFFFFF;
    text-align: center;
        width: fit-content;
    font-size: min(4.1vw, 1.6rem);
}

.worries_conclusion {
    margin-top: 2rem;
    font-size: min(5.12vw, 2rem);
    color: #FFFFFF;
    text-align: center;
}

.worries_conclusion_underbar {
    position: relative;
}

.worries_conclusion_underbar:after {
    content: "";
    position: absolute;
    bottom: -1vw;
    left: 0;
    width: min(20vw, 8rem);
    height: 1vw;
    background-image: url(../img/worries_wavy-line.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.worries_background {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    z-index: -1;
}

/* ----- vertical-lift ----- */
.vertical_lift {
    margin-top: -3rem;
    padding: 8.4rem 2rem 5rem;
    background-image: url(/img/vertical-lift_background.webp);
    background-size: cover;
}

.vertical_lift_head {
    text-align: center;
}

.vertical_lift_heed_upper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vertical_lift_heed_upper::before,.vertical_lift_heed_upper::after {
    content: "";
    display: inline-block;
    height: 20px;
    width: 1px;
    background-color: #363636;
}

.vertical_lift_heed_upper::before {
    rotate: -30deg;
}

.vertical_lift_heed_upper:after {
    rotate: 30deg;
}

.vertical_lift_heed_lower {
    font-size: 2.6rem;
    color: #9D5248;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
}

.vertical_lift_heed_lower:after {
    content:"";
    position: absolute;
    left: 0;
    bottom: -6px;
    display: inline-block;
    width: 23.2rem;
    height: 1.3rem;
    background-image: url(../img/vertical-lift_title_underbar.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.vertical_lift_card {
    margin-top: 2.8rem;
    padding-top: 3.8rem;
    background-color: #FFFFFF;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.05);
}

.vertical_lift_desc {
    font-size: 1.5rem;
    padding-inline: 3rem;
}

.vertical_lift_desc_emphasis {
    color: #9D5248;
}

.vertical_lift_card_image img {
    object-fit: cover;
    display: block;
}



/* ----- case ----- */
.case {
    padding: 5rem 2rem;
    position: relative;
}

.case_copy {
    font-size: 1.8rem;
    text-align: center;
    font-weight: normal;
}

.case_emphasis {
    color: #9D5248;
}

.case_title {
    margin-top: 6.2rem;
    font-size: 2.4rem;
    color: #9D5248;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.case_title::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    translate: 0 -50%;
    left: -16px;
    width: 151px;
    height: 107px;
    background-image: url(../img/case_title.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.case_desc {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-top: 3rem;
    text-align: center;
    font-weight: normal;
}

.case_swiper {
    position: relative;
    padding-bottom: 30px;
}

.case_list {
    margin-top: 3rem;

}

.case_item {
    border-radius: 10px;
    background-color: #FFFFFF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 4px 4px 2px rgba(0 , 0, 0, 0.05);
}

.case_head {
    padding: 1rem 0;
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
    background-color: #B88982;
    color: #FFFFFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.case_item_contents {
    padding: 2rem 3.5rem;
}

.case_image img {
    border-radius: 1rem;
}

.case_list_desc {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #9D5248;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.case_list_desc_detail {
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.swiper-pagination {
    position: absolute;
    bottom: 0px !important;
    text-align: center;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 7px !important;
    border-radius: 100vmax;
}

.swiper-pagination-bullet-active {
    background: #B88982;
}

.case_movie {
    margin-top: 3rem;
    width: 100%;
}

.case_movie video {
    width: 100%;
}

/* ----- feature ----- */
.feature {
    background-image: linear-gradient(to right, #EBCEC0 16%, #F3EAD9 100%);
    padding: 8.7rem 0 7rem;
    display: none;
}

.feature_title {
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature_title::before {
    content:"";
    position: absolute;
    left: 3.5rem;
    top: -5rem;
    display: inline-block;
    width: 22rem;
    height: 10.5rem;
    background-image: url(../img/feature_title_en.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.feature_title img {
    width: 55.1vw;
    max-width: 21.5rem;
}

.feature_list {
    margin-top: 7.2rem;
}

.feature_item {
    width: 89.7vw;
    max-width: 35rem;
    min-width: 35rem;
    position: relative;
    padding: 8.4rem 2rem 4.5rem;
    background-color: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.05);
}

.feature_item:not(:first-child) {
    margin-top: 6rem;
}

.feature_item:nth-child(2n-1) {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-left: 0;
    margin-right: auto;
}

.feature_item:nth-child(2n) {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-right: 0;
    margin-left: auto;
}

.feature_item_number {
    width: 8.8rem;
    position: absolute;
}

.feature_item:nth-child(2n-1) .feature_item_number {
    top: 0;
    right: 0.6rem;
    translate: 0 -50%;
}

.feature_item:nth-child(2n) .feature_item_number {
    top: 0;
    left: 0.6rem;
    translate: 0 -50%;
}

.feature_item_title {
    margin-top: 3rem;
    text-align: center;
    line-height: 1;
    width: 100%;
}

.feature_item_title01_lg {
    display: inline-block;
    width: 100%;
    padding: 1rem 0;
    background-color: #B88982;
    color: #FFFFFF;
    font-weight: 500;
    font-size: min(5.7vw,2.4rem);
    text-align: center;
    letter-spacing: 0.1em;
}

.feature_item_title01_lower {
    display: block;
    margin-top: 10px;
    font-size: 1.8rem;
}

.feature_item_title02_underline {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #9D5248;
}

.feature_item_title02_wrapper {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.feature_item_title02_lg {
    display: inline-block;
    padding: 1rem;
    background-color: #B88982;
    color: #FFFFFF;
    font-weight: 500;
    font-size: min(5.7vw,2.4rem);
    text-align: center;
    letter-spacing: 0.1em;
}

.feature_item_title03_underline {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #9D5248;
}

.feature_item_title03_lg {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #B88982;
    color: #FFFFFF;
    font-weight: 500;
    font-size: min(5.7vw,2.4rem);
    text-align: center;
    letter-spacing: 0.1em;
}

.feature_item_title04 {
    display: inline-block;
    padding: 1rem;
    background-color: #B88982;
    color: #FFFFFF;
    font-weight: 500;
    font-size: min(5.7vw,2.4rem);
    text-align: center;
    letter-spacing: 0.1em;
}

.feature_item_title04:not(:first-child) {
    margin-top: 3px;
}

.feature_item_cross {
    display: inline-block;
    font-size: 1.8rem;
    margin-top: 3px;
}

.feature_item_title05_underline {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #9D5248;
}

.feature_item_title05 {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #B88982;
    color: #FFFFFF;
    font-weight: 500;
    font-size: min(5.7vw,2.4rem);
    text-align: center;
    letter-spacing: 0.1em;
}

/* ----- doctor ----- */
.doctor {
    background-color: #FFFFFF;
    padding-bottom: 5rem;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
    position: relative;
    z-index: 1;
}
.doctor_upper {
    position: relative;
    z-index: 1;
}

.doctor_head {
    height: 9.6rem;
    display: grid;
    place-content: center;
    padding-inline: 1.6rem;
    text-align: center;
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.doctor_upper svg {
    position: absolute;
    top: -5px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
    width: 100%;
}

.doctor_title {
    margin-top: 7.5rem;
    text-align: center;
    color: #9D5248;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.doctor_title::before {
    content:"";
    position: absolute;
    left: 1rem;
    top: -5rem;
    display: inline-block;
    width: 22rem;
    height: 10.5rem;
    background-image: url(../img/doctor_title.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.doctor_image {
    margin-top: 4rem;
    padding: 0 4.5rem;
    margin-inline: auto;
}

.doctor_image img {
    border-radius: 1rem;
}

.doctor_name {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 4.5rem;
    font-size: 2rem;
    line-height: 1;
}

.doctor_name_en {
    font-size: 1.3rem;
    line-height: 1;
    color: #9D5248;
}

.doctor_message {
    margin-top: 1rem;
    padding: 0 4.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

/* ----- menu ----- */
.menu {
    margin-top: -5rem;
    padding: 15rem 3rem 5rem;
    background-image: url(../img/menu_background.webp);
    background-size: cover;
    z-index: 1;
}

.menu_title {
    text-align: center;
    color: #9D5248;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.menu_title::before {
    content:"";
    position: absolute;
    left: -1.5rem;
    top: -5rem;
    display: inline-block;
    width: 22rem;
    height: 10.5rem;
    background-image: url(../img/menu_title.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.menu_item_image {
    margin-top: 5rem;
}

.menu_item_image img {
    border-radius: 1rem;
}

.menu_item_name {
    color: #9D5248;
    font-size: 2rem;
    font-weight: 500;
}

.menu_item_name_sm {
    font-size: 1.6rem;
}

.menu_item_desc {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: normal;
}

.menu_item_desc_emphasis {
    color: #9D5248;
} 

.menu_item_price_head {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #9D5248;
    line-height: 1;
}

.menu_item_price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1rem 0;
    margin-top: 5px;
    height: 44px;
    background-color: #B88982;
    color: #FFFFFF;
    width: 19.5rem;
    font-family: "Kaisei Tokumin", serif;
    font-size: 2.4rem;
    box-sizing: border-box;
    line-height: 1;
}

.menu_item_en_mark {
    font-size: 1.6rem;
    margin-right: 2px;
}

.menu_item_carve_mark {
    display: inline-block;
    font-size: 3rem;
    margin-left: 3px;
    margin-bottom: -4px;
}

/* ----- flow ----- */
.flow {
    padding: 9rem 4.5rem 6.8rem;
    background-color: #FFFFFF;

}

.flow_title {
    text-align: center;
    color: #9D5248;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.flow_title::before {
    content:"";
    position: absolute;
    left: 0.2rem;
    top: -4.2rem;
    display: inline-block;
    width: 22rem;
    height: 10.5rem;
    background-image: url(../img/flow_title.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.flow_list {
    margin-top: 4rem;
}

.flow_item:not(:first-child) {
    margin-top: 5rem;
}

.flow_image {
    width: 20rem;
    margin-inline: auto;
}

.flow_head {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #9D5248;
}

.flow_head_en {
    font-family:"Afacad", sans-serif;
    font-size: 2.3rem;
}

.flow_head_bar {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #9D5248;
}

.flow_head_ja {
    font-size: 2rem;
}

.flow_desc {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.flow_desc_address {
    font-size: 1.4rem;
    margin-top: 1rem;
    color: #9D5248;
    line-height: 1.1;
    letter-spacing: 0.1em;
}

/* ----- conclusion ----- */
.conclusion {
    padding: 5rem 2rem 7rem;
}

.conclusion_inner {
    background-image: url(../img/conclusion_background.webp);
    background-size: cover;
    padding: 3rem 2.5rem;
    border-radius: 1rem;
}

.conclusion_title {
    text-align: center;
}

.conclusion_title_upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.conclusion_title_upper_text {
    font-size: 1.8rem;
    line-height: 1;
}

.conclusion_title_upper_text_sm {
    font-size: 1.4rem;
}

.conclusion_title_lower {
    display: inline-block;
    font-size: 2.8rem;
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.conclusion_list {
    margin-top: 2rem;
}

.conclusion_item {
    padding: 1.2rem 1.6rem;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    letter-spacing: 0.08em;
}

.conclusion_item::before {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1rem;
    background-image: url(../img/conclusion_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.conclusion_item:not(:first-child) {
    margin-top: 1rem;
}

/* ----- faq ----- */
.faq {
    padding: 5rem 2.2rem 2rem;
}

.faq_title {
    text-align: center;
    color: #9D5248;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.faq_title::before {
    content:"";
    position: absolute;
    left: 3.5rem;
    top: -5.5rem;
    display: inline-block;
    width: 25.5rem;
    height: 12rem;
    background-image: url(../img/faq_title.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.faq_list {
    margin-top: 4rem;
}


.faq_menu:not(:first-child) {
    margin-top: 2rem;
}

.faq_summary {
    /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
    display: block;
    cursor: pointer;
    position: relative;
    transition: filter 0.1s ease-in;
}

.faq_summary::-webkit-details-marker {
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    display: none;
}


.faq_summary:focus-visible {
    filter: brightness(1.1);
}

@media (any-hover: hover) {
    .faq_summary:hover {
        filter: brightness(1.1);
    }    
}

.faq_content {
    position: relative;
}

.faq_content__q {
    background-color: #FFFFFF;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
}

.faq_details.is-opened .faq_content__q {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq_content__a {
    background-color: #FFFFFF;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
}

.faq_txts {
    display: flex;
    align-items: center;
    line-height: 1.3;
    gap: 5px;
    padding: 2rem 3rem;
}

.faq_txt__q {
    padding-right: 5rem;
}

.faq_txts__a {
    align-items: flex-start;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.faq_icon {
    font-family: "Afacad", sans-serif;;
    font-size: 2rem;
    color: #9D5248;
}

.faq_mark {
    position: absolute;
    right: 2rem;
    top: 50%;
    translate: 0 calc(-50% - 2px);
    transition: rotate 0.2s ease-in, translate 0.2s ease-in;
}

.faq_details.is-opened .faq_mark {
    rotate: 180deg;
    translate: 0 calc(-50% + 2px);
}

/* ----- sns ----- */
.sns {
    padding: 5rem 3rem 4.4rem;
}


.sns_title {
    line-height: 1.3;
    letter-spacing: 0.2em;
    color: #9D5248;
    margin-bottom: 1rem;
}

.sns_list {
    margin-top: 2rem;
}

.sns_item:not(:first-child) {
    margin-top: 1rem;
}

.sns_link {
    height: 6.2rem;
    box-sizing: border-box;
    padding: 1rem 0 1rem 2.6rem;
    display: flex;
    background-color: #FFFFFF;
    color: #9D5248;
    align-items: center;
    gap: 2.2rem;
    line-height: 1.3;
    border: 1px solid #9D5248;
    border-radius: 5px;
}


.sns_icon {
    width: 4rem;
    display: grid;
    place-content: center;
}

/* ----- cta ----- */
.cta {
    padding: 3rem 6rem;
    background-color: #E5D4D2;
}

.cta_title {
    line-height: 1;
    text-align: center;
}

.cta_button-list {
    margin-top: 2rem;
}

.cta_button-item {
    text-align: center;
    box-sizing: border-box;

}

.cta_button-item:not(:first-child) {
    margin-top: 1rem;
}

.cta_button_link_tel {
    background-color: #FFFFFF;
}

.cta_button_link_line {
    background-color: #9D5248;
}

.cta_button_link_web {
    background-color: #B88982;
}

.cta_button_item_upper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.cta_button_item_link {
    height: 5rem;
    display: inline-block;
    width: 100%;
    display: grid;
    place-content: center;
    border-radius: 100vmax;
    box-shadow: 2px 3px 0 rgba(118, 118, 118, 0.2);
}

.cta_button_item_link img {
    width: 1.7rem;
}

.cta_button-text_tel {
    font-size: 1.8rem;
}

.cta_button_item_lower {
    display: block;
    text-align: center;
    margin-top: -4px;
    font-size: 1.2rem;
}

.cta_button_link_line img {
    width: 2.6rem;
}

.cta_button-text_line {
    font-size: 1.4rem;
    color: #FFFFFF;
}

.cta_button_link_web img {
    width: 2.4rem;
}

.cta_button-text_web {
    font-size: 1.6rem;
    color: #FFFFFF;
}

/* -----------footer-----------*/

.footer {
    padding: 5rem 1.6rem 15rem;
    background-color: #FFFFFF;
}

.footer_logo {
    width: 12rem;
    margin-inline: auto;
}

.footer_copyright {
    margin-top: 5.6rem;
    font-size: 1rem;
    text-align: center;
}


/* -----------iphon5/se-----------*/

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

/* -----------iphon6~-----------*/

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

/* -----------ipad-----------*/

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

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /* -----------共通-----------*/

    /* -----------SP header-----------*/


    /* -----------footer-----------*/


    /* -----------top-----------*/

}

/* -----------PC-----------*/

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


    body {
        font-size: 1.6rem;
        display: flex;
        gap: 4rem;
        padding: 0 3.2rem;
        min-height: 100vh;
    }

    .pc-left {
        width: calc(100% - 39rem - 4rem);
        padding: 8rem 0;
        height: calc(100vh - 16rem);
        position: sticky;
        top: 0;
        left: 0;
        align-self: flex-start;
    }

    .pc-left_inner {
        background-image: url(/img/pc-left.webp);
        background-size: contain;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 100%;
    }

    .main_wrapper {
        position: static;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/

    /* -----------PC header-----------*/


    /* -----------footer-----------*/


    /* ----------- main -----------*/
    .cta_button {
        left: auto;
        right: calc(3.2rem +  5.7rem);
        translate: 0 0;
    }
}


@media screen and (min-width:1600px) {
    .header {
        display: none;
    }

    .pc-lg {
        display: block;
    }

    .pc-left {
        width: calc(100% - 39rem - 8rem - 30rem);
        align-self: flex-start;
    }


    .pc-right {
        width: 30rem;
        padding: 8rem 0;
        height: calc(100vh - 16rem);
        position: sticky;
        top: 0;
        left: 0;
        overflow-y: auto;
    }


    .pc-right::-webkit-scrollbar{
        display: none;
    }

    .pc-right_inner {
        width: 100%;
        height: 100%;
    }

    .pc-right_head {
        font-family: "Afacad", sans-serif;
        font-size:4rem;
        text-align: center;
        color: #9D5248;
    }

    .pc-right_nav {
        margin-top: 3rem;
    }

    .pc-right_nav-item {
        border-bottom: 1px solid #B88982;
    }



    .pc-right_nav-item_link {
        padding: 1.6rem;
        display: inline-block;
        width: 100%;
        color: #9D5248;
    }

    @media (any-hover: hover) {
        .pc-right_nav-item_link:hover {
            color: #B88982;

        }
    }

    .pc-right_tel {
        margin-top: 2rem;
    }



    /* -----------共通-----------*/

    /* -----------PC header-----------*/


    /* -----------footer-----------*/


    /* -----------main-----------*/
    .cta_button {
        right: calc(37.2rem +  5.7rem);
    }

}

/* -----------動画スタイリング-----------*/
#myVideo,
#caseVideo {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#myVideo:hover,
#caseVideo:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#myVideo::-webkit-media-controls,
#caseVideo::-webkit-media-controls {
    background-color: transparent;
    border-radius: 0 0 8px 8px;
}

#myVideo::-webkit-media-controls-panel,
#caseVideo::-webkit-media-controls-panel {
    background-color: transparent;
}

#myVideo::-webkit-media-controls-play-button,
#caseVideo::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#myVideo::-webkit-media-controls-volume-slider,
#caseVideo::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}
