@charset "UTF-8";

/********* mv *********/
.mv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1.1fr 0.3fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    position: relative;
    top: -100px;
    z-index: 1;
}

.mv_img_main {
    grid-area: 1 / 1 / 4 / 2;
    max-width: 100%;
    margin-left: 50px;

    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.mv_copy {
    grid-area: 1 / 2 / 2 / 3;
    align-self: end;
    color: var(--blue-main);
    font-size: 50px;
    letter-spacing: 0.07em;
    line-height: 1.6;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    margin-left: 15%;
    margin-bottom: 27px;

    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
}

.mv_subcopy {
    grid-area: 2 / 2 / 3 / 3;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-family: var(--font-mincho);
    font-weight: 400;
    margin-left: 15%;

    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.mv_img_sub {
    grid-area: 3 / 2 / 4 / 3;
    margin-left: 50px;

    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

/* アニメーション用のクラス */
.start-animation .mv_img_main,
.start-animation .mv_copy,
.start-animation .mv_subcopy,
.start-animation .mv_img_sub {
    animation-play-state: running;
}

/* 初期状態の設定 */
.mv_img_main,
.mv_copy,
.mv_subcopy,
.mv_img_sub {
    animation-play-state: paused;
    /* 初期はアニメーションを停止 */
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
        /* 初期位置 */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* 最終位置 */
    }
}


/********* About *********/
.about {
    /* margin-top: 90px; */
    position: relative;
    overflow-x: clip;
}

/* セクションタイトル */
.section_title_about {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    color: var(--blue-main);
    font-family: var(--font-eng);
    line-height: normal;
}

.section_title_about span {
    font-size: 16px;
    color: var(--yellow);
    font-family: var(--font-mincho);
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* 文章 */
.about_copy {
    font-size: 40px;
    color: var(--blue-main);
    font-family: var(--font-mincho);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 36px;
    position: relative;
}

.about_text {
    margin-top: 36px;
}

.about_text p {
    margin-bottom: 10px;
    width: 51%;
}

/* あしらいの花 */
.about_copy::after {
    content: '';
    position: absolute;
    top: -200px;
    right: 0;
    width: 323px;
    height: 380px;
    background-image: url('../image/flower_deco.svg');
    background-size: cover;
    /* 画像のサイズ調整 */
    background-repeat: no-repeat;
    /* 画像の繰り返しを防ぐ */
}

/* 写真・totonouの特徴 */
.about_features {
    position: relative;
    margin-top: 104px;

}

.about_img_solo {
    position: absolute;
    top: -255px;
    left: 56%;
    width: 100%;
}

.about_img_solo img {
    max-width: none;
}

.about_img_talk {
    position: absolute;
    top: 8%;
    left: -10%;
    right: 50%;
}

.about_img_room {
    position: absolute;
    top: 45%;
    right: -23%;
    left: 67%;
}

.about_features_container {
    padding: 49% 10% 7% 8%;
    background-color: var(--blue-bg);
    max-width: 820px;
}

.about_features_container h3 {
    font-family: var(--font-mincho);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--blue-main);
    margin-bottom: 15px;
}

.about_features_text {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.about_features_text span {
    font-family: var(--font-eng);
    font-size: 35px;
    color: var(--blue-main);
    margin-right: 2%;
    line-height: 1.6;
}

.about_button {
    margin-top: 25px;
    width: 263px;
}



/********* Cases-お悩み別事例 *********/
.cases {
    margin-top: 140px;
}

.section_title_cases {
    font-family: var(--font-mincho);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.8;
    text-align: center;
    color: var(--blue-main);
}

.cases_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.cases_box {
    max-width: 355px;
    position: relative;
    background-size: cover;
    /* background-size: contain; */
    /* 画像のサイズ調整 */
    background-repeat: no-repeat;
    background-size: cover;
    /* 背景画像が要素全体をカバー */
    background-position: center;
    /* 画像の中央を優先して表示 */
    padding: 7% 4% 9% 5%;
    border-radius: 10px;
}

/* 画像に色を重ねる */
.cases_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(33, 38, 49, 0.4);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cases_box:hover::before {
    background-color: rgba(33, 38, 49, 0.6);
    /* 透明度60% */
}

/* 各事例の画像 */
.katakori {
    background-image: url(../image/case_katakori.jpg);
}

.yotsu {
    background-image: url(../image/case_yotsu.jpg);
}

.zutsu {
    background-image: url(../image/case_zutsu.jpg);
}

.case_name {
    writing-mode: vertical-rl;
    /* 右から左への縦書き */
    text-orientation: upright;
    /* 文字を回転させず、縦に配置 */
    letter-spacing: 0.3em;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    position: relative;
    height: 71px;
}

.case_problems {
    margin-top: 39%;
    margin-bottom: 20px;
    position: relative;
}

.case_each_problem {
    display: flex;
    align-items: flex-start;
    max-width: 256px;
}

.case_each_problem img {
    margin-top: 5px;
    min-width: 25px;
}

.case_each_problem p {
    color: #fff;
    line-height: 2;
    margin-left: 3px;
    font-weight: 400;
}

.case_button {
    display: block;
    color: #fff;
    font-family: var(--font-mincho);
    font-weight: 500;
    letter-spacing: 0.05em;

    /* 下線 */
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;

    position: absolute;
    bottom: 25px;
    right: 30px;
}



/********* Menu-料金・メニュー *********/
.menu {
    margin-top: 110px;
    overflow-x: hidden;
}

/* おすすめメニュー */
.menu_osusume {
    max-width: 1104px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--blue-main);
    padding: 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
    height: 543px;
    margin-top: 50px;
    position: relative;
}

.menu_osusume::before {
    content: '';
    position: absolute;
    background-image: url(../image/icon/crown.svg);
    width: 100px;
    height: 100px;
    top: -70px;
    left: -57px;
    background-size: contain;
    background-repeat: no-repeat;
}

.menu_osusume::after {
    content: 'オススメ！';
    position: absolute;
    font-family: var(--font-mincho);
    color: var(--yellow);
    top: -42px;
    left: 42px;
}

.menu_osusume_img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.menu_osusume_content {
    width: 50%;
}

.menu_title {
    font-family: var(--font-mincho);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--blue-main);
}

.discount_menu {
    display: flex;
    align-items: center;
    gap: 4%;
    margin-top: 3%;
}

.discount_label {
    font-family: var(--font-mincho);
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 18px);
    color: #fff;
    background-color: var(--blue-main);
    padding: 5px 10px;
    min-width: 94px;
    text-align: center;
}

.menu_price {
    font-weight: 500;
    font-size: 19px;
    line-height: normal;
    margin-top: 3%;
}

.discount_menu>.menu_price {
    margin-top: 0;
}

/* .normal_menu_price {
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 400;
    margin-top: 2%;
} */

.menu_text {
    max-width: 480px;
    margin-top: 3%;
}

.menu_symptoms {
    margin-top: 20px;
}

.menu_symptoms p {
    font-family: var(--font-mincho);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 14px;
}

.menu_symptoms ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.menu_symptoms ul li {
    background-color: #FBF8AC;
    padding: 10px;
    line-height: 1.7;
    /* margin-top: 14px; */
}

.menu_button_area {
    margin-top: 25px;
}

.menu_button {
    max-width: 188px;
    gap: 10px;
    padding: 12px 20px;
}


/* その他のメニュー（スライド） */

.menu_sub {
    max-width: 1104px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    position: relative;
}

.menu_sub_content {
    padding: 5%;
    border: 2px solid var(--blue-main);
    margin: auto;
}

.menu_sub_title {
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    color: var(--blue-main);
    width: 60px;
    height: 60px;
    border: 1px solid var(--blue-main);
}

.swiper-button-next {
    right: -80px;
}

.swiper-button-prev {
    left: -80px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
    /* 矢印アイコンの大きさ */
}

/* ページネーション */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -45px);
    top: var(--swiper-pagination-top, auto);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--blue-main);
    opacity: 0.4;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--blue-main);
}

.menu>.button_area {
    margin-top: 70px;
}



/********* Voices-お客様の声 *********/
.voices {
    margin-top: 135px;
    padding-bottom: 65px;
    background-image: linear-gradient(to bottom right, #edf3f9, #b6cee9);
    /* グラデーションを左上から右下に */
    background-size: cover;
    background-repeat: no-repeat;
}

.voices_title {
    position: relative;
    top: -35px;
}

/* 口コミ */
.voices_container {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.voices_box {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 840px;
    background-color: #fff;
    border-radius: 10px;
    padding: 3% 4% 3% 1%;
}

.voices_box.first {
    align-self: flex-start;
}

.voices_box.second {
    align-self: flex-end;
}

.voices_box.third {
    align-self: center;
}

.voices_box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 70px;
    width: 38px;
    height: 45px;
    background-image: url('../image/icon/circle.svg');
    background-size: cover;
    background-size: contain;
    /* 画像のサイズ調整 */
    background-repeat: no-repeat;
    /* 画像の繰り返しを防ぐ */
}

.voices_box.second::after {
    transform: scaleX(-1);
    /* 左右反転 */
    left: auto;
    /* leftをautoにして */
    right: 70px;
    /* 右側に配置 */
}

.voice_person {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice_person img {
    margin-bottom: -20px;
}

.voice_content {
    width: 80%;
}

.voice_content h3 {
    font-family: var(--font-mincho);
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.05em;
    color: var(--blue-main);
}

.voice_content p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}

.voices>.button_area {
    margin-top: 60px;
}


/********* アクセス *********/
.access {
    margin-top: 110px;
}

.access_container {
    display: flex;
    align-items: stretch;
    margin-top: 105px;
}

.access_box {
    width: 50%;
    background-color: var(--blue-bg);
    padding: 3% 3% 3% 4%;
    position: relative;
    top: -50px;
}

.access_logo {
    margin-bottom: 10px;
}

.access_box p {
    line-height: 2;
    margin-top: 6px;
}

.access_box_tel {
    font-family: var(--font-eng);
    color: var(--blue-main);
    font-size: 18px;
    letter-spacing: normal;
    line-height: normal;

    display: flex;
    align-items: center;

    margin-top: 13px;
}

.access_table {
    margin-top: 17px;
}

.access_map {
    width: 50%;
}

.access_map iframe {
    width: 100%;
    height: 100%;
}


/********* Recruit-採用 *********/
.recruit {
    display: flex;
    background-color: #89ADD3;
    position: relative;
    margin-top: 115px;
}

.recruit_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5% 5% 5% 15%;
    position: relative;
    z-index: 1;
}

.recruit_title {
    align-items: flex-start;
}

.recruit_content p {
    color: #fff;
    margin-top: 16px;
    max-width: 365px;
}

.recruit_content>.button {
    margin-top: 30px;
    min-width: 263px;
}

.recruit::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 0;
    width: 400px;
    height: 440px;
    transform: translateY(-50%);
    background-image: url('../image/flower_deco_recruit.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.recruit_img {
    width: 50%;
    object-fit: cover;
}




/********* BP1 *********/

@media (max-width: 1100px) {

    /********* mv *********/
    .mv {
        top: -80px;
    }

    .mv_copy {
        font-size: 32px;
        margin-bottom: 15px;
        margin-left: 11%;
    }

    .mv_subcopy {
        font-size: 14px;
        margin-left: 12%;
        margin-bottom: 17px;
    }

    /********* About-totonouについて *********/
    .about_copy {
        font-size: 28px;
    }

    .about_features_container {
        padding: 50% 34% 7% 8%;
    }

    .about_img_solo img {
        width: 55%;
    }

    .about_features_text {
        font-size: 16px;
    }

    /********* Voices-お客様の声 *********/
    .voices_box::after {
        display: none;
    }
}




/********* SP版 *********/
@media (max-width: 768px) {

    /********* mv *********/
    .mv {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 0.5fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .mv_img_main {
        grid-area: 1 / 1 / 3 / 2;
        margin-left: 0;
    }

    .mv_img_main img {
        object-fit: cover;
        height: 668px;
    }

    .mv_copy {
        grid-area: 1 / 1 / 2 / 2;
        font-size: 30px;
        margin-left: 7%;
    }

    .mv_subcopy {
        grid-area: 2 / 1 / 3 / 2;
        margin-left: 8%;
        margin-top: 3%;
    }

    .mv_img_sub {
        grid-area: 3 / 1 / 4 / 2;
        margin-right: 10%;
        margin-top: 2%;
        margin-left: 0;
    }



    /********* About-totonouについて *********/
    .about {
        margin-top: 20px;
    }

    .section_title_about {
        font-size: 20px;
    }

    .section_title_about span {
        font-size: 14px;
    }

    .about_copy {
        font-size: 24px;
        margin-top: 20px;
    }

    .about_copy::after {
        width: 16vh;
        height: 18vh;
        top: -135px;
    }

    .about_text {
        width: 90%;
        margin-top: 20px;
        font-size: 15px;
    }

    .about_text p {
        margin-bottom: 3px;
        width: 100%;
    }

    .about_features {
        display: flex;
        flex-direction: column;
        background-color: var(--blue-bg);
        margin-top: 80px;
        padding: 10px 40px 70px;
        width: 100%;
    }

    .about_img_solo {
        position: relative;
        top: -40px;
        left: 30%;
        max-width: 450px;
    }

    .about_img_solo img {
        width: 80%;
    }

    .about_img_talk {
        position: relative;
        max-width: 380px;
    }

    .about_img_room {
        top: 31%;
        width: 50%;
    }

    .about_features_container {
        margin-top: 40px;
        padding: 0;
    }

    .about_features_container h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .about_features_text {
        font-size: 15px;
        align-items: baseline;
    }

    .about_features_text span {
        font-size: 24px;
        position: relative;
        top: 4px;
        width: 20px;
        margin-right: 13px;
    }

    .about_features_text:first-of-type span {
        margin-right: 10px;
    }



    /********* Cases-お悩み別事例 *********/
    .cases {
        margin-top: 100px;
    }

    .section_title_cases {
        font-size: 24px;
    }

    .cases_container {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .cases_box {
        height: 420px;
        padding: 50px 35px;
        width: 90%;
    }

    .case_name {
        font-size: 15px;
    }

    .case_problems {
        margin-top: 35%;
    }



    /********* Menu-料金・メニュー *********/
    .menu_osusume {
        flex-direction: column;
        height: auto;
        padding: 6% 5% 9%;
        width: 95%;
    }

    .menu_osusume::before {
        width: 70px;
        height: 70px;
        top: -53px;
        left: -18px;
    }

    .menu_osusume::after {
        top: -30px;
        left: 48px;
    }

    .menu_osusume_img {
        width: 100%;
        height: 40%;
        max-height: 350px;
    }

    .menu_osusume_content {
        margin-top: 25px;
        width: 95%;
    }

    .menu_title {
        font-size: 21px;
    }

    .menu_price {
        font-size: 18px;
    }

    .discount_label {
        padding: 6px;
        min-width: 74px;
    }

    .menu_text {
        margin-top: 4%;
    }

    .menu_symptoms p {
        font-size: 16px;
        margin-bottom: 8px;
    }

    /* サブメニュー */
    .menu_sub {
        width: 80%;
    }

    .menu_sub_content {
        padding: 9% 7% 11%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        border: none;
    }

    .swiper-button-next {
        right: -50px;
    }

    .swiper-button-prev {
        left: -50px;
    }



    /********* Voices-お客様の声 *********/
    .voices_title {
        top: -30px;
    }

    .voices_container {
        margin-top: 20px;
    }

    .voices_box {
        flex-direction: column;
        padding: 40px 35px;
    }

    .voice_person {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 5px;
        width: 100%;
    }

    .voice_person img {
        margin: -30px;
    }

    .voice_content {
        width: 100%;
        margin-top: 20px;
    }

    .voice_content p {
        font-size: 15px;
        line-height: 2;
    }

    .voice_content h3 {
        font-size: 21px;
    }



    /********* Access-アクセス *********/
    .access {
        margin-top: 80px;
    }

    .access_container {
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 40px;
        width: 100%;
    }

    .access_box {
        width: 100%;
        top: 0;
        padding: 35px 30px 55px;
    }

    .access_box img {
        margin-bottom: 0;
    }

    .access_content {
        width: 100%;
    }

    .access_logo {
        width: 55%;
        max-width: 160px;
    }

    .access_map {
        width: 100%;
        height: 380px;
    }


    /********* Recruit-採用 *********/
    .recruit {
        flex-direction: column-reverse;
        align-items: stretch;
        margin-top: 0;
    }

    .recruit_content,
    .recruit_img {
        width: 100%;
        height: auto;
    }

    .recruit_content {
        padding: 55px 12% 60px;
    }

    .recruit::before {
        top: 75%;
        width: 300px;
        height: 300px;
    }

    .recruit_img {
        min-height: 340px;
    }


}

@media (max-width: 530px) {

    .about_img_room {
        display: none;
    }

}