﻿/* top.css */
/* 重複整理・プロパティ統合済み */

/* ===========================================
    スクロールアニメーション
============================================ */
[data-animate] {
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(40px);
}

[data-animate="fade-in"] {
    opacity: 0;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* モーション軽減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.hero {
    background: var(--colorOrange100);
    box-sizing: border-box;
    height: 100vh;
    overflow: hidden;
    padding-top: 90px;
    position: relative;
}

.hero__content {
    display: flex;
    height: 100%;
    justify-content: space-between;
    gap: clamp(32px, 6vw, 98px);
    z-index: 0;
}

.hero__contentLeftTop {
    display: flex;
    justify-content: flex-start;
    margin-top: clamp(20px, 7.5vw, 110px);
    margin-left: clamp(80px, 14vw, 210px);
}

.hero__titleSlides {
    display: grid;
    position: relative;
}

.hero__title {
    color: var(--colorGold);
    font-size: 36px;
    font-weight: 500;
    grid-area: 1 / 1;
    letter-spacing: 0.2em;
    position: relative;
    writing-mode: vertical-rl;
}

.hero__title span {
    display: block;
    line-height: 1.2;
}

.hero__spacer {
    height: 240px;
}

@media screen and (width <= 1024px) {
    .hero__spacer {
        display: none;
    }
}

.hero__contentLeftBottom {
    align-items: flex-end;
    bottom: clamp(120px, 15.3vw, 220px);
    display: flex;
    gap: clamp(16px, 2vw, 32px);
    left: 0;
    position: fixed;
    z-index: 400;
}

.hero__storeTel a::before {
    display: inline-block;
    height: 20px;
    width: 20px;
}

.hero__storeTel img {
    display: inline-block;
    height: 20px;
    width: 12px;
}

.hero__stores {
    bottom: 5%;
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 12px;
    z-index: 1000;
}

.hero__storeCard {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    align-items: center;
    background: var(--colorWhite);
    border-radius: 0 10px 10px 0;
    display: flex;
    min-width: 280px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.hero__storeCard.is-show {
    opacity: 1;
    transform: translateX(0);
}

.is-scrolling .hero__storeCard {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
}

.hero__storeBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 24px;
}

.hero__storeName {
    color: var(--colorBlack);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.05em;
}

.hero__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;
}

.hero__storeCard:nth-child(1) .hero__storeBadge {
    background: var(--colorBlue700);
}

.hero__storeCard:nth-child(2) .hero__storeBadge {
    background: var(--colorBlue300);
}

.hero__storeTel a {
    align-items: flex-end;
    color: var(--colorBlack);
    display: flex;
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
    margin-top: 6px;
    text-decoration: none;
}

.hero__storeThumb {
    border-radius: 0 8px 8px 0;
    height: 90px;
    object-fit: cover;
    width: 120px;
}

.hero__right {
    flex: 1;
    height: 100%;
    min-width: 0;
    position: relative;
}

.hero__hours {
    right: 0;
    bottom: 0;
    position: absolute;
    width: auto;
}

.hero__circleSlides {
    align-self: flex-start;
    border-radius: 999px 0 0 999px;
    display: grid;
    flex-shrink: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero__circle {
    background: center / cover no-repeat;
    grid-area: 1 / 1;
    height: 100%;
    width: 100%;
}

.hero__circle.hero__slide--1 {
    background-image: url('../images/top/mainvisual_slide_1.webp');
}

.hero__circle.hero__slide--2 {
    background-image: url('../images/top/mainvisual_slide_2.webp');
}

.hero__circle.hero__slide--3 {
    background-image: url('../images/top/mainvisual_slide_3.webp');
}

.hero__circle.hero__slide--4 {
    background-image: url('../images/top/mainvisual_slide_4.webp');
}

.hero__circle.hero__slide--5 {
    background-image: url('../images/top/mainvisual_slide_5.webp');
}

@keyframes hero-fade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }   
    20%  { opacity: 1; }   
    24%  { opacity: 0; }   
    100% { opacity: 0; }
}

.hero__slide {
    animation: hero-fade 25s ease-in-out infinite;
    opacity: 0;
}

.hero__slide--1 {
    animation-delay: 0s;
}

.hero__slide--2 {
    animation-delay: 5s;
}

.hero__slide--3 {
    animation-delay: 10s;
}

.hero__slide--4 {
    animation-delay: 15s;
}

.hero__slide--5 {
    animation-delay: 20s;
}

body:has(.header__drawer.is-open) .hero__ctaBar {
    z-index: 0;
}

.header__drawer.is-open ~ * .hero__seagull, body:has(.header__drawer.is-open) .hero__seagull {
    opacity: 0;
    pointer-events: none;
}

.hero__ctaBar {
    display: none;
}

.hero__seagull {
    pointer-events: none;
    position: absolute;
    writing-mode: horizontal-tb;
    z-index: 2;
}

.hero__seagull--1 {
    left: 100px;
    top: -78px;
    width: 100px;
}

.hero__seagull--2 {
    left: 180px;
    top: -12%;
    transform: scaleX(-1) rotate(15deg);
    width: 68px;
}

.hero__seagull--3 {
    top: 280px;
    left: -80px;
    width: 80px;
}

@media screen and (width <= 1024px) {

    .hero {
        flex-direction: column;
        height: auto;
        margin-bottom: 0;
        min-height: auto;
        padding-top: 64px; /* モバイルヘッダー高さに合わせる */
    }

    .hero__content {
        flex-direction: column;
        gap: 0;
        height: auto;
        padding: 0;
        z-index: auto;
    }

    .hero__contentLeft {
        order: 0;
    }

    .hero__contentLeftTop {
        margin-top: 40px;
        margin-left: clamp(24px, 8vw, 72px);
    }

    .hero__title {
        font-size: 24px;
        font-weight: 500;
        writing-mode: horizontal-tb;
        line-height: 140%;
    }

    .hero__title span {
        display: block;
        line-height: 1.8;
    }

    .hero__seagull--1 {
        left: auto;
        right: 12px;
        top: -18px;
        width: 60px;
    }

    .hero__seagull--2 {
        left: auto;
        right: -20px;
        top: 4px;
        width: 44px;
    }

    .hero__seagull--3 {
        left: auto;
        right: 216px;
        top: 180px;
        width: 48px;
    }

    .hero__right {
        height: auto;
        order: 1;
        position: static;
        width: 100%;
    }

    .hero__circleSlides {
        border-radius: 999px 0 0 999px;
        height: 70vw;
        margin-top: 8px;
        margin-left: 40px;
        width: 100%;
    }

    .hero__hours {
        display: none;
    }

    .hero__contentLeftBottom {
        display: none;
    }
}

.menu {
    background: var(--colorOrange50);
    border-radius: 120px 120px 0 0;
    padding: 100px 0;
    position: relative;
}

.menu__title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 56px;
    text-align: center;
}

.menu__title span {
    color: var(--colorBlue);
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
}

.menu__titleSecond {
    margin-top: 96px;
}

.menu__titleSecond span {
    background: linear-gradient(transparent 60%, var(--colorYellow) 40%);
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.menu__column {
    display: grid;
    margin-top: 40px;
    gap: 20px 30px;
    grid-template-columns: 1fr 1fr;
}

.menu__item {
    align-items: center;
    background: var(--colorWhite);
    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(--colorBlack);
    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: 50%;
    transform: translateY(-50%);
    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: 50%;
    transform: translateY(-50%);
    width: 15px;
}

.menu__word {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 24px;
    text-align: center;
}

.menu__list {
    display: grid;
    gap: 48px 24px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
}

.menu__listItem {
    position: relative;
}

.menu__listCard {
    aspect-ratio: 16 / 10;
    display: block;
    position: relative;
    transition: opacity 0.3s ease;
    width: 100%;
}

.menu__listCard:hover {
    opacity: 0.85;
}

.menu__listFig {
    border-radius: 16px;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
}

.menu__listFig img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
}

.menu__listCard:hover .menu__listFig img {
    transform: scale(1.05);
}

.menu__listLabel {
    align-items: center;
    background: var(--colorWhite);
    border-radius: 10px;
    bottom: -20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    font-size: 15px;
    font-weight: 500;
    left: 24px;
    letter-spacing: 0.03em;
    padding: 16px 24px 16px 16px;
    position: absolute;
    right: 24px;
    z-index: 1;
}

.menu__listLabel > span:first-child {
    flex: 1;
}

.menu__listSep {
    border-left: 1.5px solid var(--colorBlue);
    color: transparent;
    display: inline-block;
    flex-shrink: 0;
    height: 44px;
    margin: 0 24px;
    width: 0;
}

.menu__listArrow {
    display: inline-block;
    flex-shrink: 0;
    font-size: 0;
    height: 10px;
    position: relative;
    width: 10px;
}

.menu__listArrow::after {
    border-right: 2px solid var(--colorBlue);
    border-top: 2px solid var(--colorBlue);
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
}

.menu__more {
    column-gap: 72px;
    display: flex;
    margin-top: 80px;
    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: 16px 0;
        row-gap: 24px;
    }
    
    .menu__item dt::after {
        bottom: -48px;
        height: 1px;
        left: 0;
        width: 90%;
    }
    
    .menu__itemInner {
        justify-content: center;
        column-gap: 20px;
        padding: 0 16px;
    }
    
    .menu__item dd {
        font-size: 14px;
        padding-left: 18px;
    }

    .menu__item dd::before {
        height: 14px;
        top: 13px;
        width: 14px;
    }
    
    .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 {
        gap: 52px 12px;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .menu__listFig {
        border-radius: 12px;
    }

    .menu__listLabel {
        bottom: -24px;
        border-radius: 8px;
        font-size: 16px;
        left: 40px;
        padding: 16px 20px;
        right: 40px;
    }

    .menu__listSep {
        height: 24px;
        margin: 0 16px;
    }

    .menu__listArrow {
        height: 7px;
        width: 7px;
    }

    .menu__listArrow::after {
        height: 7px;
        width: 7px;
    }

    .menu__more {
        align-items: center;
        margin-top: 56px;
        flex-direction: column;
        row-gap: 40px;
    }

    .blueButton {
        width: 100%;
    }
}

.feature {
    background: var(--colorOrange50);
    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;
    pointer-events: none;
    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;
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: -10px;
    z-index: 100;
}

.feature .container {
    position: relative;
    z-index: 300;
}

.feature .heading {
    padding-bottom: 0;
    position: relative;
    row-gap: 24px;
    top: -48px;
}

.feature .heading::after {
    bottom: -40px;
    left: 0;
    right: auto;
}

.feature .heading__title {
    font-size: 64px;
}

.feature .heading__lead {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 8px;
}

.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(--colorBlue500);
    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;
}

.feature__itemImg img {
    border-radius: 16px;
}

.feature__itemTitle {
    color: var(--colorWhite);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 16px;
    text-align: center;
}

.feature__itemText {
    color: var(--colorWhite);
    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: 16px 0 0;
    }

    .feature .heading::before {
        background-size: contain;
        top: -100px;
    }

    .feature__column {
        margin-top: 0;
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .feature__list {
        margin-top: 80px;
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .feature__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;
        row-gap: 16px;
    }

    .feature .heading__title {
        font-size: 48px;
    }

    .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;
    }

    .feature__itemImg img {
        border-radius: 16px;
    }

    .feature__itemTitle {
        font-size: 20px;
    }

    .feature__itemText {
        font-size: 14px;
    }
}

.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(--colorOrange);
    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: 0.05em;
    text-align: center;
}

.featureKids__title span {
    background: linear-gradient(transparent 70%, var(--colorYellow) 30%);
    display: inline-block;
    font-size: 42px;
    font-weight: 500;
}

.featureKids__title + .featureKids__title {
    margin-top: 24px;
}

.featureKids__text {
    font-family: var(--fontNotoSans);
    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;
}


@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: 80px;
        right: -4%;
        top: 63%;
        width: 80px;
        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%;
    }
}

@media screen and (width <= 767px) {
    .featureKids {
        border-radius: 20px;
        margin-top: 40px;
        padding: 40px 16px 120px;
    }

    .featureKids::before {
        border-radius: 20px;
        height: calc(100% - 16px);
        left: 8px;
        top: 8px;
        width: calc(100% - 16px);
    }

    .featureKids::after {
        display: none;
    }

    .featureKids__balloon {
        left: -12px;
        top: -24px;
    }

    .featureKids__balloon img {
        width: 100px;
    }

    .featureKids__thumbnail {
        right: -8px;
        top: -32px;
    }

    .featureKids__thumbnail img {
        width: 88px;
    }

    .featureKids__title {
        font-size: 14px;
    }

    .featureKids__title span {
        font-size: 20px;
    }

    .featureKids__title + .featureKids__title {
        margin-top: 12px;
    }

    .featureKids__text {
        font-size: 13px;
        margin-top: 16px;
    }

    .featureKids__img {
        bottom: 24px;
        padding: 0;
    }

    .featureKids__img img {
        width: 25%;
    }
}



.concept {
    background: var(--colorOrange100);
    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(--colorWhite);
    color: var(--colorBlack);
    font-family: var(--fontZenMaru);
    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: var(--colorGold);
    font-family: var(--fontZenMaru);
    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(--fontNotoSans);
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 32px;
}

.concept__wishes {
    margin-top: 40px;
}

.concept__wishes p {
    font-family: var(--fontNotoSans);
    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 {
        max-width: 100%;
    }
}

/* ------------------------------------------
    blueButton：MENUセクション等のCTAブロック
------------------------------------------ */
.blueButton {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 320px;
}

.blueButton__head {
    color: #333333;
    font-family: var(--fontZenMaru);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.blueButton__head span::before {
    content: '\\ ';
    display: inline-block;
    font-size: 26px;
    opacity: 0.4;
    vertical-align: sub;
}

.blueButton__head span::after {
    content: ' /';
    display: inline-block;
    font-size: 26px;
    opacity: 0.4;
    vertical-align: sub;
}

.blueButton__button {
    width: 100%;
}

.blueButton__button .buttonStaff {
    margin: 0 auto;
    max-width: 100%;
}

@media screen and (width <= 767px) {
    .blueButton {
        gap: 10px;
        width: 100%;
    }

    .blueButton__head {
        font-size: 14px;
    }

    .blueButton__head span::before,
    .blueButton__head span::after {
        font-size: 20px;
    }

    .blueButton__button .buttonStaff {
        max-width: 100%;
        width: auto;
    }
}

/* ------------------------------------------
    commitment
------------------------------------------ */
.commitment {
    background: var(--colorOrange100);
    container-name: commitment;
    container-type: inline-size;
    padding: 80px 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(--colorWhite);
    color: var(--colorBlack);
    font-family: var(--fontZenMaru);
    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: var(--colorGold);
    font-family: var(--fontZenMaru);
    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(--fontNotoSans);
    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: 880px;
}

.commitmentStep {
    align-items: center;
    column-gap: 40px;
    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 {
    aspect-ratio: 1;
    position: relative;
    width: 100%;
}

.commitmentStep__img img:not(.commitmentStep__number) {
    border-radius: 50%;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.commitmentStep__number {
    border-radius: 0;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: 3%;
    top: 3%;
    width: 120px;
    z-index: 1;
}

.commitmentStep__title {
    align-items: center;
    color: var(--colorBlue700);
    column-gap: 8px;
    display: flex;
    font-family: var(--fontZenMaru);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.commitmentStep:nth-child(2) .commitmentStep__title {
    color: var(--colorGreen500);
}

.commitmentStep:nth-child(3) .commitmentStep__title {
    color: #e78376;
}

.commitmentStep__title img {
    height: 44px;
    width: 44px;
}

.commitmentStep__text {
    font-family: var(--fontNotoSans);
    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 {
        column-gap: 16px;
        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 {
        left: 0;
        top: 0;
        width: 30%;
    }

    .commitmentStep__title {
        font-size: 22px;
    }

    .commitmentStep__text {
        font-size: 14px;
        margin-top: 12px;
    }
}

.smile {
    background: var(--colorOrange100);
    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: var(--colorGold);
    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 {
    background: var(--colorOrange100);
    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(--colorBlack);
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    letter-spacing: 0.05em;
}

.news__moreIcon {
    background: var(--colorBlue);
    border-radius: 50%;
    display: inline-block;
    height: 24px;
    position: relative;
    width: 24px;
}

.news__moreIcon::after {
    border-right: 2px solid var(--colorWhite);
    border-top: 2px solid var(--colorWhite);
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
    width: 6px;
}

.news__list {
    border-top: 2px dotted var(--colorGray500);
}

.news__item {
    border-bottom: 2px dotted var(--colorGray500);
    color: var(--colorBlack);
    display: block;
    padding: 28px 60px 28px 24px;
    position: relative;
    transition: background-color 0.3s ease;
}

.news__item:hover {
    background: var(--colorWhite500);
}

/* 右矢印アイコン */
.news__item::after {
    background-color: var(--colorBlue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
    border-radius: 50%;
    content: '';
    height: 24px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
}

.news__itemHead {
    align-items: center;
    display: flex;
    gap: 16px;
}

.news__date {
    font-family: var(--fontNotoSans);
    font-size: 16px;
    letter-spacing: 0.05em;
}

.news__badge {
    background: var(--colorBlue);
    border-radius: 100vw;
    color: var(--colorWhite);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 4px 14px;
}

.news__itemText {
    font-family: var(--fontNotoSans);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
}

@media screen and (max-width: 767px) {
    .news {
        padding: 48px 0 32px;
    }

    .news__inner {
        grid-template-columns: 100%;
        gap: 24px 0;
    }

    .news__head {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .news__head .heading {
        padding-bottom: 40px;
        text-align: left;
    }

    .news__head .heading__title {
        font-size: 36px;
        text-align: left;
    }

    .news__head .heading__lead {
        font-size: 13px;
        text-align: left;
    }

    .news__head .heading--left.heading::after {
        height: 8px;
        margin: 0;
        right: unset;
        width: 40px;
    }

    .news__item {
        padding: 16px 40px 16px 12px;
    }

    .news__itemText {
        font-size: 14px;
    }

    .news__date {
        font-size: 13px;
    }

    .news__badge {
        font-size: 10px;
        padding: 3px 10px;
    }
}

.topBanner {
    background: var(--colorOrange100);
    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;
    }
}

/* ==============================================
    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(--colorBlue);
    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(--colorWhite);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 12px 0;
    margin: 0;
}

.voiceCatch__ribbon::before, .voiceCatch__ribbon::after {
    background: var(--colorWhite);
    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(--colorWhite);
    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__text + .voiceCard__text {
    margin-top: 8px;
}

.voiceCard__text span {
    background: var(--colorWhite);
    display: inline-block;
    padding: 7px 4px;
}

.voiceCard__text--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__word {
    font-family: var(--fontNotoSans);
    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 .heading::after {
    margin: unset;
    right: unset;
}

.achievements .heading__title {
    font-size: 46px;
}

.achievements .heading__lead--left {
    line-height: 1.5;
}

.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__text {
    font-family: var(--fontNotoSans);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

@media screen and (width <= 1024px) {
    .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__text{
        font-size: 14px;
    }
}


/* ===========================================
    fv__stores（スクロール後に左から出る店舗カード）
============================================ */
.fv__stores {
    bottom: 5%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    left: 0;
    position: fixed;
    z-index: 1000;
}

.fv__storeCard {
    align-items: center;
    background: var(--colorWhite);
    border-radius: 0 10px 10px 0;
    color: inherit;
    display: flex;
    min-width: 280px;
    overflow: hidden;
    text-decoration: none;
}

.fv__storeBody {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 8px 16px;
}

.fv__storeName {
    color: var(--colorBlack);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.fv__storeBadge {
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    margin-top: 4px;
    padding: 2px 10px;
    text-align: center;
    white-space: nowrap;
}

.fv__storeCard:nth-child(1) .fv__storeBadge {
    background: var(--colorBlue);
}

.fv__storeCard:nth-child(2) .fv__storeBadge {
    background: var(--colorBlue300, #5a8fc4);
}

.fv__storeTel a {
    align-items: flex-end;
    color: var(--colorBlack);
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 4px;
    margin-top: 6px;
    text-decoration: none;
}

.fv__storeTel img {
    display: inline-block;
    height: 18px;
    width: 11px;
}

.fv__storeThumb {
    border-radius: 0 8px 8px 0;
    height: 90px;
    object-fit: cover;
    width: 100px;
}

@media (max-width: 767px) {
    .fv__stores {
        display: none;
    }
}