/* ------------------------------------------------------
    fv
------------------------------------------------------ */

/* FV全体: flex横並び */
.fv {
    background: var(--color-white-100);
    height: 100vh;
    overflow: hidden;
    position: relative;
    /* margin-top: 130px;
    margin-bottom: 90px; */
}

/* 左側コンテンツ */
.fv__content {
    display: flex;
    justify-content: space-between;
    gap: clamp(32px, 6vw, 98px);
    z-index: 0;
}

.fv__content-left-top {
    display: flex;
    justify-content: flex-start;
    margin-top: 15vw;
    margin-left: clamp(80px, 14vw, 210px);
}

/* 縦書きタイトル */
.fv__title-slides {
    display: grid;
    position: relative;
}

.fv__title {
    color: #aa915f;
    font-size: 36px;
    font-weight: 500;
    grid-area: 1 / 1;
    letter-spacing: 0.2em;
    position: relative;
    writing-mode: vertical-rl;
}

.fv__title span {
    display: block;
    line-height: 1.1;
}

/* PC版のみ: タイトルとカード間のスペース */
.fv__spacer {
    height: 240px;
}

@media screen and (width <= 1024px) {
    .fv__spacer {
        display: none;
    }
}

/* 下部エリア（カード + 受付時間） */
.fv__content-left-bottom {
    align-items: flex-end;
    bottom: clamp(120px, 15.3vw, 220px);
    display: flex;
    gap: clamp(16px, 2vw, 32px);
    left: 0;
    position: fixed;
    z-index: 400;
}

.fv__storeTel a::before {
    display: inline-block;
    height: 20px;
    width: 20px;
}

.fv__storeTel img {
    display: inline-block;
    height: 20px;
    width: 12px;
}

/* クリニックカード群 */
.fv__stores {
    bottom: 5%;
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 12px;
    z-index: 1000;
}

.fv__storeCard {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fv__storeCard.is-show {
    opacity: 1;
    transform: translateX(0);
}

.is-scrolling .fv__storeCard {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
}

.fv__storeCard {
    align-items: center;
    background: var(--color-white);
    border-radius: 0 10px 10px 0;
    display: flex;
    min-width: 280px;
    overflow: hidden;
}

.fv__storeBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 24px;
}

.fv__storeName {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.05%;
}

.fv__storeBadge {
    border-radius: 999px;
    width: 208px;
    line-height: 150%;
    font-weight: 400;
    text-align: center;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.fv__storeCard:nth-child(1) .fv__storeBadge {
    background: var(--color-blue-700);
}

.fv__storeCard:nth-child(2) .fv__storeBadge {
    background: var(--color-blue-300);
}

.fv__storeTel a {
    align-items: flex-end;
    color: var(--color-black);
    display: flex;
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
    margin-top: 6px;
    text-decoration: none;
}

.fv__storeThumb {
    border-radius: 0 8px 8px 0;
    height: 90px;
    object-fit: cover;
    width: 120px;
}

/* 右側エリア */
.fv__right {
    height: calc(100vh - 130px);
    flex: 1;
    min-width: 0;
    padding-top: 130px;
    position: relative;
}

/* 受付時間エリア */
.fv__hours {
    right: 0;
    bottom: 0;
    position: absolute;
    width: auto;
}

/* 円形写真スライドラッパー（flex item） */
.fv__circle-slides {
    align-self: flex-start;
    border-radius: 999px 0 0 999px;
    display: grid;
    flex-shrink: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.fv__circle {
    background: center / cover no-repeat;
    grid-area: 1 / 1;
    height: 100%;
    width: 100%;
}

.fv__circle.fv__slide--1 {
    background-image: url('../images/top/fv_0.webp');
}

.fv__circle.fv__slide--2 {
    background-image: url('../images/top/fv_1.webp');
}

.fv__circle.fv__slide--3 {
    background-image: url('../images/top/fv_2.webp');
}

.fv__circle.fv__slide--4 {
    background-image: url('../images/top/fv_3.webp');
}

/* スライドフェードアニメーション（20s / 4枚 × 5s） */
@keyframes fv-fade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fv__slide {
    animation: fv-fade 20s ease-in-out infinite;
    opacity: 0;
}

.fv__slide--1 {
    animation-delay: 0s;
}

.fv__slide--2 {
    animation-delay: 5s;
}

.fv__slide--3 {
    animation-delay: 10s;
}

.fv__slide--4 {
    animation-delay: 15s;
}


/* ドロワー開放中はCTAバーを背面に */
body:has(.header__drawer.is-open) .fv__ctaBar {
    z-index: 0;
}

/* ドロワー開放中はカモメ非表示 */
.header__drawer.is-open ~ * .fv__seagull,
body:has(.header__drawer.is-open) .fv__seagull {
    opacity: 0;
    pointer-events: none;
}

/* SP専用要素: PC非表示 */
.fv__ctaBar {
    display: none;
}

/* カモメ装飾 */
.fv__seagull {
    pointer-events: none;
    position: absolute;
    writing-mode: horizontal-tb;
    z-index: 2;
}

.fv__seagull--1 {
    left: 100px;
    top: -78px;
    width: 100px;
}

.fv__seagull--2 {
    left: 180px;
    top: -12%;
    transform: scaleX(-1) rotate(15deg);
    width: 68px;
}

.fv__seagull--3 {
    top: 280px;
    left: -80px;
    width: 80px;
}

@media screen and (width <= 1024px) {
    /* FV全体: 縦積みレイアウト */
    .fv {
        flex-direction: column;
        min-height: auto;
        padding-top: 48px;
        margin-bottom: 0;
		height: auto;
    }

    /* コンテンツラッパー: 縦並び */
    .fv__content {
        flex-direction: column;
        gap: 0;
        padding: 0;
        z-index: auto;
    }

    .fv__right {
        padding-top: 40px;
    }

    /* 左コンテンツ（タイトルエリア）: 1番目に表示 */
    .fv__content-left {
        order: 0;
    }

    /* タイトルエリア: 横書きに変更 */
    .fv__content-left-top {
        margin-top: 72px;
        margin-left: 72px;
    }

    .fv__title {
        font-size: 24px;
        font-weight: 500;
        writing-mode: horizontal-tb; /* PC: vertical-rl → SP: 横書き */
        line-height: 140%;
    }

    .fv__title span {
        display: block;
        line-height: 1.8;
    }

    /* カモメ: SP用ポジション調整 */
    .fv__seagull--1 {
        left: auto;
        right: 12px;
        top: -18px;
        width: 60px;
    }

    .fv__seagull--2 {
        left: auto;
        right: -20px;
        top: 4px;
        width: 44px;
    }

    .fv__seagull--3 {
        left: auto;
        right: 216px;
        top: 180px;
        width: 48px;
    }

    /* 右側（ヒーロー画像）: 2番目に表示 */
    .fv__right {
        order: 1;
        position: static;
        width: 100%;
    }

    .fv__circle-slides {
        border-radius: 999px 0 0 999px;
        height: 70vw;
        margin-top: 8px;
        margin-left: 40px;
        width: 100%;
    }

    /* 受付時間: SP FV内では非表示 */
    .fv__hours {
        display: none;
    }

    /* 下部カード: SP FV内では非表示 */
    .fv__content-left-bottom {
        display: none;
    }
}



/* ------------------------------------------------------
    menu
------------------------------------------------------ */
.menu {
    background: var(--color-orange-100);
    border-radius: 120px 120px 0 0;
    padding: 100px 0;
    position: relative;
}

.menu__title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 5%;
    margin-top: 56px;
    text-align: center;
}

.menu__title span {
    background: linear-gradient(transparent 70%, var(--color-yellow) 30%);
    display: inline-block;
    font-size: 42px;
    font-weight: 500;
}

.menu__titleSecond {
    margin-top: 96px;
}

.menu__column {
    display: grid;
    margin-top: 40px;
    gap: 20px 30px;
    grid-template-columns: 1fr 1fr;
}

.menu__item {
    align-items: center;
    background: var(--color-white);
    border-radius: 16px;
    display: grid;
    font-size: 20px;
    font-weight: 500;
    height: 70px;
    grid-template-columns: 125px auto;
}

.menu__item dt {
    position: relative;
    text-align: center;
}

.menu__item dt::after {
    background: var(--color-black);
    bottom: 0;
    content: '';
    height: 40px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}

.menu__itemInner {
    align-items: center;
    column-gap: 40px;
    display: flex;
    padding: 0 20px;
}

.menu__item dd {
    font-size: 16px;
    padding-left: 24px;
    position: relative;
}

.menu__item dd::before {
    background: url('../images/top/icon_check.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 16px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 16px;
}

.menu__item dd::after {
    background: url('../images/top/icon_arrow_black.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 15px;
    position: absolute;
    right: -24px;
    top: 2px;
    width: 15px;
}

.menu__word {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 24px;
    text-align: center;
}

.menu__list {
    display: grid;
    gap: 72px 48px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
}

.menu__listItem {
    position: relative;
}

.menu__listImg img {
    border-radius: 16px;
}

.menu__listButton {
    bottom: -35px;
    display: flex;
    left: 0;
    margin: auto;
    justify-content: center;
    position: absolute;
    right: 0;
}

.menu__listButton .buttonBlog {
    box-shadow: 3px 6px 10px 0 rgb(0, 0, 0, 0.1);
    border: none;
}

.menu__more {
    column-gap: 72px;
    display: flex;
    margin-top: 160px;
    justify-content: center;
}

@media screen and (width <= 767px) {
    .menu {
        border-radius: 30px 30px 0 0;
        padding: 40px 0 80px;
    }
    
    .menu__title {
        font-size: 20px;
        line-height: 1.5;
        margin-top: 40px;
        text-align: center;
    }
    
    .menu__title span {
        font-size: 30px;
    }
    
    .menu__titleSecond {
        margin-top: 40px;
    }
    
    .menu__column {
        display: grid;
        margin-top: 40px;
        gap: 20px 30px;
        grid-template-columns: 100%;
    }
    
    .menu__item {
        align-items: center;
        border-radius: 10px;
        font-size: 18px;
        height: auto;
        grid-template-columns: 100%;
        padding: 24px 0;
        row-gap: 32px;
    }
    
    .menu__item dt::after {
        bottom: -48px;
        height: 1px;
        left: 0;
        width: 90%;
    }
    
    .menu__itemInner {
        justify-items: center;
        column-gap: 20px;
        padding: 0 16px;
    }
    
    .menu__item dd {
        font-size: 16px;
        padding-left: 16px;
    }
    
    .menu__item dd::before {
        height: 12px;
        top: 4px;
        width: 12px;
    }
    
    .menu__item dd::after {
        display: none;
    }
    
    .menu__word {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }

    .menu__word br {
        display: none;
    }
    
    .menu__list {
        display: grid;
        gap: 72px 48px;
        grid-template-columns: 100%;
        margin-top: 40px;
    }
    
    .menu__listItem {
        position: relative;
    }
    
    .menu__listImg img {
        border-radius: 16px;
    }
    
    .menu__listButton {
        bottom: -35px;
        display: flex;
        left: 0;
        margin: auto;
        justify-content: center;
        position: absolute;
        right: 0;
    }
    
    .menu__more {
        align-items: center;
        margin-top: 80px;
        flex-direction: column;
        row-gap: 40px;
    }
}

/* ------------------------------------------------------
    feature 
------------------------------------------------------ */
.feature {
    background: var(--color-orange-100);
    position: relative;
    padding: 12% 0 200px;
}

.feature::before {
    background: url('../images/top/feature_wave_top.svg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 200;
}

.feature::after {
    background: url('../images/top/feature_wave_bottom.svg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    content: '';
    height: 65%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 200;
}

.waveWhite::before {
    background: url('../images/top/feature_wave_white.svg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    top: -1%;
    z-index: 100;
}

.feature .container {
    position: relative;
    z-index: 300;
}

.feature .heading {
    padding-bottom: 0;
}

.feature .heading::before {
    background: url('../images/top/features_logo.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: -130px;
    width: 325px;
}

.feature .heading::after {
    bottom: -40px;
}

.feature .heading__lead {
    font-size: 32px;
}

.feature__column {
    align-items: center;
    column-gap: 64px;
    display: grid;
    grid-template-columns: auto 610px;
}

.feature__conceptInner {
    padding-left: 32px;
    position: relative;
}

.feature__conceptInner::before {
    background: var(--color-blue-500);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 10px;
}

.feature__conceptWord {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.feature__conceptWord span {
    font-size: 36px;
}

.feature__conceptTitle {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 16px;
}

.feature__conceptLead {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}

.feature__conceptText {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 48px;
}

.feature__list {
    column-gap: 48px;
    display: grid;
    margin-top: 80px;
    grid-template-columns: 1fr 1fr 1fr;
}

.feture__itemImg img {
    border-radius: 16px;
}

.feture__itemTitle {
    color: var(--color-white);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 16px;
    text-align: center;
}

.feture__itemText {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
}

@media screen and (width <= 1140px) {
    .feature {
        padding: 14% 0 80px;
    }

    .feature::before {
        top: -7%;
    }

    .feature::after {
        height: 70%;
    }

    .waveWhite::before {
        top: -7.2%;
    }

    .feature .heading {
        padding: 40px 0 0;
    }

    .feature .heading::before {
        background-size: contain;
        top: -100px;
    }

    .feature__column {
        margin-top: 40px;
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .feature__list {
        margin-top: 80px;
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .feture__itemImg img {
        border-radius: 32px;
    }
}

@media screen and (width <= 767px) {
    .feature {
        padding: 12% 0 48px;
    }

    .feature::before {
        top: -7%;
    }

    .feature::after {
        height: 80%;
    }

    .feature .heading {
        padding-bottom: 0;
    }

    .feature .heading::before {
        background-size: contain;
        left: 0;
        position: absolute;
        top: -48px;
        width: 60%;
    }

    .feature .heading::after {
        display: none;
    }

    .feature .heading__lead {
        font-size: 18px;
    }

    .feature__column {
        row-gap: 24px;
    }

    .feature__conceptInner {
        padding-left: 24px;
    }

    .feature__conceptInner::before {
        width: 8px;
    }

    .feature__conceptWord {
        font-size: 18px;
    }

    .feature__conceptWord span {
        font-size: 28px;
    }

    .feature__conceptWord br {
        display: none;
    }

    .feature__conceptTitle {
        font-size: 32px;
        margin-top: 8px;
    }

    .feature__conceptLead {
        font-size: 16px;
    }

    .feature__conceptText {
        font-size: 14px;
        margin-top: 24px;
    }

    .feature__list {
        margin-top: 40px;
        grid-template-columns: 100%;
        row-gap: 32px;
    }

    .feture__itemImg img {
        border-radius: 16px;
    }

    .feture__itemTitle {
        font-size: 20px;
    }

    .feture__itemText {
        font-size: 14px;
    }
}

/* ------------------------------------------------------
    kids 
------------------------------------------------------ */
.featureKids {
    background: url('../images/top/bg_kids.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 60px;
    margin-top: 140px;
    padding: 96px 0 200px;
    position: relative;
}

.featureKids::before {
    border: 1px solid var(--color-orange);
    border-radius: 60px;
    content: '';
    height: calc(100% - 40px);
    left: 20px;
    position: absolute;
    top: 20px;
    width: calc(100% - 40px);
}

.featureKids::after {
    background: url('../images/top/featureKids_circle.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    height: 140px;
    position: absolute;
    right: -6%;
    top: 55%;
    width: 140px;
}

.featureKids__balloon {
    left: -140px;
    position: absolute;
    top: -80px;
}

.featureKids__balloon img {
    width: 380px;
}

.featureKids__thumbnail {
    right: -80px;
    position: absolute;
    top: -72px;
}

.featureKids__thumbnail img {
    width: 300px;
}

.featureKids__title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 5%;
    text-align: center;
}

.featureKids__title span {
    background: linear-gradient(transparent 70%, var(--color-yellow) 30%);
    display: inline-block;
    font-size: 42px;
    font-weight: 500;
}

.featureKids__title + .featureKids__title {
    margin-top: 24px;
}

.featureKids__text {
    font-family: var(--font-noto-sans);
    line-height: 1.8;
    margin-top: 32px;
    text-align: center;
}

.featureKids__img {
    align-items: center;
    bottom: -100px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    overflow: visible;
    padding: 40px 0;
    position: absolute;
}

.featureKids__img img {
    height: auto;
    position: relative;
    transition:
        transform 0.3s ease,
        z-index 0.3s;
    width: 310px;
}

.featureKids__img img + img {
    margin-left: -1%;
}

.featureKids__img .item-01 {
    transform: rotate(0deg) translateY(0);
    z-index: 1;
}

.featureKids__img .item-02 {
    transform: rotate(0deg) translateY(20px);
    z-index: 2;
}

.featureKids__img .item-03 {
    transform: rotate(4deg) translateY(6px);
    z-index: 2;
}

.featureKids__img .item-04 {
    transform: rotate(2deg) translateY(20px);
    z-index: 0;
}

.featureKids__img img:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
}

@media screen and (width <= 1140px) {
    .featureKids {
        border-radius: 30px;
        margin-top: 64px;
        padding: 72px 20px 140px;
    }
    
    .featureKids::before {
        border-radius: 30px;
        height: calc(100% - 20px);
        left: 10px;
        top: 10px;
        width: calc(100% - 20px);
    }
    
    .featureKids::after {
        height: 100px;
        right: -4%;
        top: 65%;
        width: 100px;
        z-index: 100;
    }
    
    .featureKids__balloon {
        left: -32px;
        top: -40px;
    }
    
    .featureKids__balloon img {
        width: 130px;
    }
    
    .featureKids__thumbnail {
        right: -16px;
        top: -54px;
    }
    
    .featureKids__thumbnail img {
        width: 120px;
    }
    
    .featureKids__title {
        font-size: 16px;
    }
    
    .featureKids__title span {
        font-size: 24px;
    }
    
    .featureKids__title + .featureKids__title {
        margin-top: 16px;
    }
    
    .featureKids__text {
        margin-top: 24px;
        text-align: left;
    }

    .featureKids__text br {
        display: none;
    }

    .featureKids__img {
        bottom: 40px;
        padding: 0;
    }
    
    .featureKids__img img {
        width: 28%;
    }
}

/* ------------------------------------------------------
    voice 
------------------------------------------------------ */
.voice {
    background: url('../images/top/bg_voice.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 80px;
}

.voiceCatch {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.voiceCatch__ribbon {
    background: var(--color-blue);
    box-sizing: border-box;
    display: inline-block;
    height: 62px;
    max-width: 100%;
    padding: 6px 80px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
}

.voiceCatch__ribbon h4 {
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 12px 0;
    margin: 0;
}

.voiceCatch__ribbon::before,
.voiceCatch__ribbon::after {
    background: var(--color-white);
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.voiceCatch__ribbon::before {
    top: 6px;
}

.voiceCatch__ribbon::after {
    bottom: 6px;
}

.voice__list {
    display: grid;
    margin-top: 48px;
    gap: 64px;
    grid-template-columns: 1fr 1fr;
}

.voiceCard {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 3px 6px 0 rgb(0, 0, 0, 0.1);
    padding: 0 40px;
    position: relative;
}

.voiceCard__head {
    height: 240px;
}

.voiceCard__comment {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    top: 80px;
    z-index: 100;
}

.voiceCard__comment p + p {
    margin-top: 8px;
}

.voiceCard__comment p span {
    background: var(--color-white);
    display: inline-block;
    padding: 7px 4px;
}

.voiceCard__comment--profile {
    font-size: 16px;
}

.voiceCard__img {
    position: absolute;
    right: 0;
    top: 0;
}

.voiceCard__img img {
    border-radius: 30vw 16px 0 30vw;
    height: 240px;
    object-fit: cover;
    width: 336px;
}

.voiceCard__body {
    padding: 32px 0 48px;
}

.voiceCard__body p {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    line-height: 2;
}

.voice__more {
    display: flex;
    margin-top: 64px;
    justify-content: center;
}

@media screen and (width <= 1140px) {
    .voice__list {
        gap: 40px;
    }
}

@media screen and (width <= 767px) {
    .voice {
        padding: 48px 0;
    }

    .voiceCatch {
        margin-top: 32px;
    }

    .voiceCatch__ribbon {
        height: 54px;
        padding: 6px 40px;
    }

    .voiceCatch__ribbon h4 {
        font-size: 16px;
    }

    .voice__list {
        margin-top: 24px;
        gap: 32px;
        grid-template-columns: 100%;
    }

    .voiceCard {
        border-radius: 10px;
        box-shadow: 0 3px 6px 0 rgb(0, 0, 0, 0.1);
        padding: 0 20px;
    }

    .voiceCard__head {
        height: 200px;
    }

    .voiceCard__comment {
        font-size: 16px;
        top: 80px;
    }

    .voiceCard__comment p + p {
        margin-top: 4px;
    }

    .voiceCard__comment p span {
        padding: 4px 2px;
    }

    .voiceCard__comment--profile {
        font-size: 14px;
    }

    .voiceCard__img img {
        border-radius: 30vw 10px 0 30vw;
        height: 200px;
        object-fit: cover;
        width: 70vw;
    }

    .voiceCard__body {
        padding: 16px 0 24px;
    }

    .voiceCard__body p {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ------------------------------------------------------
    achievements 
------------------------------------------------------ */
.achievements {
    background: url('../images/top/bg_achievements.webp');
    background-position: center;
    background-size: cover;
    padding: 88px 0 72px;
}

.achievements__inner {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.achievements__list {
    display: grid;
    gap: 40px 24px;
    grid-template-columns: 1fr 1fr;
}

.achievementsCard {
    width: 320px;
}

.achievementsCard__img img {
    height: auto;
    max-width: 320px;
    width: 100%;
}

.achievementsCard__body p {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

@media screen and (width <= 1140px) {
    .achievements__inner {
        display: grid;
        grid-template-columns: 100%;
        row-gap: 48px;
    }

    .achievementsCard {
        width: 100%;
    }

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

@media screen and (width <= 767px) {
    .achievements {
        padding: 48px 0;
    }

    .achievements__inner {
        display: grid;
        grid-template-columns: 100%;
    }

    .achievements__list {
        gap: 20px 12px;
        grid-template-columns: 100%;
        margin-top: 32px;
    }

    .achievementsCard {
        width: 100%;
    }

    .achievementsCard__img img {
        max-width: 100%;
    }

    .achievementsCard__body p {
        font-size: 14px;
    }
}

/* ------------------------------------------------------
    concept
------------------------------------------------------ */
.concept {
    background: var(--color-white-100);
    container-name: concept;
    container-type: inline-size;
    padding: 100px 0 260px;
    position: relative;
    overflow: hidden;
}

.concept__vertical {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    position: absolute;
    right: 12%;
    top: 40px;
}

.concept__vertical p {
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-zen-maru);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 10px 6px;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.concept__column {
    align-items: center;
    display: grid;
    column-gap: 48px;
    grid-template-columns: 30% 1fr 22%;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
}

.concept__body {
    margin: 0 auto;
    padding: 0 16px;
}

.concept__images img {
    border-radius: 0;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.concept__images--sub {
    align-self: end;
    margin-bottom: -220px;
}

.concept__title {
    color: #aa915f;
    font-family: var(--font-zen-maru);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.concept__text span {
    display: block;
}

.concept__title + .concept__title {
    margin-top: 0;
}

.concept__text {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 32px;
}

.concept__wishes {
    margin-top: 40px;
}

.concept__wishes p {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2;
}

.concept__button {
    margin-top: 48px;
}

.buttonBlue--right .buttonBlue__word {
    font-weight: 400;
    margin-top: 0;
}

.buttonBlue--right::before {
    height: 40px;
}

.buttonBlue--right::after {
    background: url('../images/top/icon_arrow_right.svg') no-repeat center / contain;
    height: 14px;
    width: 16px;
}

.buttonBlue--right:hover::after {
    transform: translateY(-50%) translateX(8px);
}

@container concept (max-width: 1000px) {
    .concept__vertical p {
        font-size: 24px;
    }

    .concept__title span {
        display: block;
    }
}

@media screen and (width <= 1140px) {
    .concept {
        padding: 80px 0 120px;
    }

    .concept__images--sub {
        margin-bottom: -100px;
    }

    .concept__title {
        font-size: 24px;
    }

    .concept__text {
        font-size: 15px;
        margin-top: 24px;
    }

    .concept__wishes {
        margin-top: 28px;
    }

    .concept__wishes p {
        font-size: 15px;
    }
}

@media screen and (width <= 800px) {
    .concept {
        display: grid;
        grid-template-columns: 58% 1fr;
        padding: 64px 0 48px;
        overflow: hidden;
    }

    .concept__vertical {
        grid-column: 2;
        grid-row: 1;
        position: static;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-self: start;
        padding: 16px 24px 16px 0;
        gap: 8px;
        margin-bottom: 0;
    }

    .concept__vertical p {
        font-size: 18px;
        padding: 8px 4px;
    }

    .concept .container {
        display: contents;
    }

    .concept__column {
        display: contents;
    }

    .concept__images:not(.concept__images--sub) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .concept__images:not(.concept__images--sub) img {
        border-bottom-right-radius: 40%;
    }

    .concept__images--sub {
        grid-column: 2;
        grid-row: 2;
        place-self: start end;
        margin-bottom: 0;
        padding: 0 0 0 0;
    }

    .concept__body {
        grid-column: 1 / -1;
        grid-row: 3;
        padding: 24px 20px 0;
        margin-top: 0;
    }

    .concept__title {
        font-size: 22px;
    }

    .concept__text span {
        display: inline;
    }

    .concept__text {
        font-size: 14px;
        line-height: 2;
        margin-top: 16px;
    }

    .concept__wishes {
        margin-top: 20px;
    }

    .concept__wishes p {
        font-size: 14px;
        line-height: 2.2;
    }

    .concept__button {
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .concept__button .buttonStaff {
        padding-left: 0;
    }
}

/* ------------------------------------------------------
    commitment
------------------------------------------------------ */
.commitment {
    background: var(--color-white-100);
    container-name: commitment;
    container-type: inline-size;
    padding: 0 0 120px;
    position: relative;
    overflow: visible;
}

.commitment__vertical {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    left: 3%;
    position: absolute;
    top: 0;
}

.commitment__vertical p {
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-zen-maru);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 10px 6px;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.commitment__title {
    color: #aa915f;
    font-family: var(--font-zen-maru);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 840px;
}

.commitment__lead {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin: 16px auto 0;
    max-width: 840px;
}

.commitment__steps {
    margin: 64px auto 0;
    max-width: 920px;
}

.commitmentStep {
    align-items: center;
    column-gap: 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
}

.commitmentStep + .commitmentStep {
    margin-top: 80px;
}

.commitmentStep--reverse {
    grid-template-columns: 1fr 1.6fr;
}

.commitmentStep--reverse .commitmentStep__img {
    order: 2;
}

.commitmentStep--reverse .commitmentStep__body {
    order: 1;
}

.commitmentStep__img {
    position: relative;
}

.commitmentStep__img img:not(.commitmentStep__number) {
    border-radius: 50%;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.commitmentStep__number {
    border-radius: 0;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: 0%;
    top: 0%;
    width: 120px;
    z-index: 1;
}

.commitmentStep:nth-child(1) .commitmentStep__number {
    left: 3%;
    top: 3%;
}

.commitmentStep__title {
    align-items: center;
    color: #3780be;
    column-gap: 8px;
    display: flex;
    font-family: var(--font-zen-maru);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.commitmentStep:nth-child(2) .commitmentStep__title {
    color: #56b48b;
}

.commitmentStep:nth-child(3) .commitmentStep__title {
    color: #e78376;
}

.commitmentStep__title img {
    height: 44px;
    width: 44px;
}

.commitmentStep__text {
    font-family: var(--font-noto-sans);
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 16px;
}

@container commitment (max-width: 1000px) {
    .commitment__vertical p {
        font-size: 24px;
    }

    .commitment__title span {
        display: block;
    }

    .commitment__title,
    .commitment__lead {
        max-width: 70%;
    }

    .commitmentStep {
        column-gap: 40px;
        grid-template-columns: 1fr 1fr;
    }

    .commitmentStep--reverse {
        grid-template-columns: 1fr 1fr;
    }

    .commitmentStep + .commitmentStep {
        margin-top: 56px;
    }
}

@media screen and (width <= 1140px) {
    .commitment {
        padding: 0 0 80px;
    }
}

@media screen and (width <= 800px) {
    .commitment {
        display: grid;
        grid-template-columns: 1fr auto;
        padding: 40px 20px 80px;
        overflow: hidden;
    }

    .commitment .container {
        display: contents;
    }

    .commitment__vertical {
        grid-column: 2;
        grid-row: 1 / span 2;
        position: static;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-self: start;
        padding: 16px 16px 0 0;
        gap: 8px;
        margin-bottom: 0;
    }

    .commitment__vertical p {
        font-size: 20px;
        padding: 8px 4px;
    }

    .commitment__title {
        grid-column: 1;
        margin: 0;
    }

    .commitment__lead {
        grid-column: 1;
        margin: 16px 0 0;
    }

    .commitment__steps {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media screen and (width <= 767px) {
    .commitment {
        padding: 48px 20px 56px;
    }

    .commitment__title {
        font-size: 20px;
        max-width: 400px;
    }

    .commitment__lead {
        font-size: 14px;
        margin-top: 12px;
        max-width: 400px;
    }

    .commitment__steps {
        margin-top: 40px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .commitmentStep {
        grid-template-columns: 100%;
        row-gap: 16px;
    }

    .commitmentStep--reverse {
        grid-template-columns: 100%;
    }

    .commitmentStep--reverse .commitmentStep__img {
        order: 0;
    }

    .commitmentStep--reverse .commitmentStep__body {
        order: 0;
    }

    .commitmentStep + .commitmentStep {
        margin-top: 48px;
    }

    .commitmentStep__img {
        max-width: 320px;
        margin: 0 auto;
    }

    .commitmentStep__number {
        width: 30%;
    }

    .commitmentStep__title {
        font-size: 22px;
    }

    .commitmentStep__text {
        font-size: 14px;
        margin-top: 12px;
    }
}

/* ------------------------------------------------------
    smile
------------------------------------------------------ */
.smile {
    background: var(--color-white-100);
    container-type: inline-size;
    overflow: hidden;
    padding: 80px 0 100px;
}

.smile__gallery {
    display: flex;
    justify-content: center;
}

.smile__gallery img {
    display: block;
    height: auto;
    max-width: none;
    width: 80%;
}

.smile__body {
    max-width: 70cqi;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
}

.smile__title {
    color: #AA915F;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.smile__title span {
    display: block;
}

.smile__title em {
    font-size: 1.3em;
    font-style: normal;
}

.smile__title span:nth-child(1) {
    padding-right: 6em;
}

.smile__title span:nth-child(2) {
    padding-left: 6em;
}

.smile__text {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 32px;
}

@media screen and (max-width: 767px) {
    .smile {
        padding: 40px 0 48px;
    }

    .smile__body {
        padding: 40px 0;
    }

    .smile__title {
        font-size: 22px;
    }

    .smile__title span:nth-child(1) {
        padding-right: 0;
    }

    .smile__title span:nth-child(2) {
        padding-left:  0;
    }

    .smile__text {
        font-size: 16px;
        margin-top: 20px;
    }

    .smile__text br {
        display: none;
    }

    .smile__gallery img {
        width: 100%;
    }
}

/* ------------------------------------------------------
    news
------------------------------------------------------ */
.news {
    background: var(--color-white-100);
    padding: 80px 0 100px;
}

.news__inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 64px;
}

.news__head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news__head .heading {
    padding-bottom: 48px;
}

.news__head .heading__title {
    font-size: 42px;
}

.news__head .heading__lead {
    font-size: 16px;
    margin-top: 8px;
    text-align: left;
}

.news__head .heading--left.heading::after {
    height: 12px;
    right: unset;
    width: 55px;
}

.news__more a {
    align-items: center;
    color: var(--color-black);
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    letter-spacing: 0.05em;
}

.news__moreIcon {
    background: var(--color-blue);
    border-radius: 50%;
    display: inline-block;
    height: 24px;
    position: relative;
    width: 24px;
}

.news__moreIcon::after {
    border-right: 2px solid var(--color-white);
    border-top: 2px solid var(--color-white);
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
    width: 6px;
}

.news__list {
    border-top: 2px dotted var(--color-gray-500);
}

.news__item {
    border-bottom: 2px dotted var(--color-gray-500);
    color: var(--color-black);
    display: block;
    padding: 28px 24px;
    transition: background-color 0.3s ease;
}

.news__item:hover {
    background: var(--color-white-500);
}

.news__itemHead {
    align-items: center;
    display: flex;
    gap: 16px;
}

.news__date {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    letter-spacing: 0.05em;
}

.news__badge {
    background: var(--color-blue);
    border-radius: 100vw;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 4px 14px;
}

.news__itemText {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
}

@media screen and (max-width: 767px) {
    .news {
        padding: 48px 0 60px;
    }

    .news__inner {
        grid-template-columns: 100%;
        gap: 32px 0;
    }

    .news__head {
        align-items: center;
    }

    .news__head .heading {
        justify-items: center;
        padding-bottom: 32px;
    }

    .news__head .heading__title {
        font-size: 40px;
        text-align: center;
    }

    .news__head .heading__lead {
        text-align: center;
    }

    .news__head .heading--left.heading::after {
        left: 0;
        margin: auto;
        right: 0;
    }

    .news__item {
        padding: 20px 12px;
    }

    .news__itemText {
        font-size: 14px;
    }

    .news__date {
        font-size: 14px;
    }

    .news__badge {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* ------------------------------------------------------
    topBanner
------------------------------------------------------ */
.topBanner {
    background: var(--color-white-100);
    padding: 0 0 100px;
}

.topBanner__list {
    display: grid;
    gap: 32px;
    grid-template-columns: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.topBanner__item {
    display: block;
    transition: opacity 0.3s ease;
}

.topBanner__item:hover {
    opacity: 0.8;
}

.topBanner__item img {
    border-radius: 16px;
    display: block;
    height: auto;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .topBanner {
        padding: 0 0 60px;
    }

    .topBanner__list {
        gap: 16px;
    }

    .topBanner__item img {
        border-radius: 8px;
    }
}
