@charset "utf-8";
/*==========================
common
==========================*/

:root {
    --textblack : #464646;
    --textwhite : #fff;
    --light-beige : #B1A48B;
    --white-beige : #FFFAF1;
    --beige : #8C786B;
    --gray : #787878;
    --brown : #3D362C;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "PT Serif",
        "Shippori Mincho",
        "Noto Sans JP",
        serif,
        "Roboto";
    font-style: normal;
    color: var(--textblack);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.1em
}

body.is-fixed {
    overflow: hidden;
}

.spBr {
    display: none;
}

.spBr--narrow {
    display: none;
}

/* ------------------------------
   ふわっとアニメ
------------------------------ */
.fade-in-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.0s ease, transform 1.0s ease;
}


.fade-in-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-fade {
    opacity: 0;
    transform: translate(-24px, -24px);
    transition: opacity 1.0s ease, transform 1.0s ease;
}

.gallery-fade.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ------------------------------
   ヘッダー
------------------------------ */

.header {
    width: 100%;
    height: auto;
    background-color: #413A30;
    padding: 0 8px;
    color: var(--textwhite);
}

.header__inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}


.header__title img {
    width: clamp(100px, 13vw, 160px);
    height: auto;
    padding: 10px;
}
/* ------------------------------
   ハンバーガー
------------------------------ */
.header__hamburger-circle {
    display: none; 
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background-color: var(--white-beige);
    align-items: center;
    justify-content: center;
    z-index: 1001;
}
.header__hamburger-circle span {
    position: absolute;
    display: block;
    width: 25px;
    height: 2px;
    background: #413A30;
    transition: 0.6s;
}

.header__hamburger-circle span:nth-child(1) {
    top: 17px;
}
.header__hamburger-circle span:nth-child(2) {
    top: 25px;
}
.header__hamburger-circle span:nth-child(3) {
    top: 33px;
}

/* クリックで変形 */
.header__hamburger-circle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header__hamburger-circle.active span:nth-child(2) {
    opacity: 0;
}
.header__hamburger-circle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ------------------------------
   ナビゲーション
------------------------------ */
.header__nav-item--top {
    display: none;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 10px;
}

.header__nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.header__nav-item a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.4s ease;
}

.nav-ja {
    color: var(--textwhite);
    font-size: clamp(1.4rem, 1.3vw, 1.8rem);
    font-weight: 600;
}

.header__nav-item--top .na-ja,
.header__nav-item--news .nav-ja,
.header__nav-item--comment .nav-ja {
    letter-spacing: 0.18em;
}


.nav-en {
    color: var(--light-beige);
    font-size: clamp(1.2rem, 1.0vw, 1.4rem);
}

/* hover */
.header__nav-item a:hover {
    opacity: 0.7;
}

/* ------------------------------
   お問い合わせボタン
------------------------------ */
.header__contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 30.5px;
    background: #8C806B;
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--textwhite);
    text-decoration: none;
    transition: 0.4s ease;
}

.header__contact-btn:hover {
    background-color: var(--light-beige);
}

.header__contact-icon {
    width: 28px;
    height: auto;
}

.header__contact-text {
    color: #FFF;
    font-size: clamp(1.0rem, 1.3vw, 1.8rem);
    line-height: 1.3;
    text-align: left;
}


/* ------------------------------
   メインビジュアル
------------------------------ */
.bg {
    background-color: #FFF;
    padding-bottom: 15%;
    /* border-bottom-left-radius: 60px; */
    /* border-bottom-right-radius: 60px; */


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

.mv__pc img {
    width: 100%;
    height: 100%;      /* ← ここが超重要 */
    display: block;    /* 不要な余白をなくす */
}

.mv__sp img {
    display: none;
}

.mv__support {
    width: 458px;
    margin: 16px auto 0;
}

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

/* ------------------------------
   タイトル共通
------------------------------ */

.section__head {
    text-align: center;
    margin-top: 80px;
}

.section__head--news {
    margin-top: 60px;
}

.section__title {
    font-size: 3.6rem;
}

.section__subtitle {
    color: var(--beige);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.section__subtitle::after {
    content: '';
    display: block;
    width: 0.8px;
    height: 14px;
    background-color: var(--beige);
    margin: 8px auto 0;
}

/* ------------------------------
   News
------------------------------ */

.news__list {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.news-item {
    align-items: center;
    padding: 20px 0; 
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 32px;
    row-gap: 16px;
    position: relative
}

/* 区切りの線 */
.news-item::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #D9D9D9;
    flex-direction: column;
}

/* ニュースヘッダー */
.news-item__header {
    grid-column: 1 / -1; /* いったん全体を包む */
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 32px;
    align-items: center;
}

.news-item__date {
    color: var(--beige);
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);;
    margin: 0 54px 0 14px;
}

.news-item__body {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}


.news-item__text {
    color: var(--textblack);
    font-size: clamp(1.6rem, 1.6vw, 2rem);
    letter-spacing: 0.12em;
    flex-grow: 1;
    font-weight: 500;
    line-height: 1.8;
}

/* 詳細ボタン */
.news-item__toggle {
    background: none;
    border: none;
    font-size: 3.2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--beige);
    width: 32px;
    height: 32px;
    padding: 0px;
    transition: 0.2s ease;
}


.news-item__toggle.is-open {
    transform: rotate(45deg);
}

/* 詳細 */
.news-item__detail {
    grid-column: 1 / -1;   /* ← 全列を横断 */
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.9s cubic-bezier(.16, .84, .44, 1);
}

.news-item__detail-inner {
    margin-top: 20px;
    padding-left: 180px; 
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.6s ease,
        transform 0.9s cubic-bezier(.16, .84, .44, 1);
    max-width: 90%;

}

.news-item__detail-text {
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
    line-height: 1.8;
}

.news-item__detail.is-open {
    max-height: 1000px; 
}

.news-item__detail.is-open .news-item__detail-inner {
    opacity: 1;
    transform: translateY(0);
}

.news-item__map {
    margin-top: 12px;
    width: 100%;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
}

.news-item__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


.news-item__image {
    margin-top: 12px;
    width: 400px;
    height: auto;
}

.news-item__image img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ------------------------------
   予告編
------------------------------ */
.trailer__inner {
    max-width: 960px;
    margin: 44px auto 0;
    padding: 0 20px
}

.trailer__movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    background-color: #000;
    overflow: hidden;
}

.trailer__movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ------------------------------
    イントロダクション
------------------------------ */
.introduction__inner {
    max-width: 1300px;
    margin: 44px auto 0;
}

.introduction__catch {
    color: var(--beige);
    text-align: center;
    font-size: 4rem;
    line-height: 1.8;
    letter-spacing: 0.24rem;
}
.tight {
    letter-spacing: -0.4em;
}

.introduction__content {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 20px;
}

.introduction__images {
    flex: 1;

}

.introduction__image-large img{
    width: clamp(300px, 32vw, 470px);
}

.introduction__image-medium img {
    width: clamp(196px, 24vw, 350px);
    margin-left: 200px;
}

.introduction__image-medium {
    margin-top: 16px;
}


.introduction__text-title {
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
    font-weight: 500;
    line-height: 2;
    margin:  24px 0 42px;
    white-space: nowrap;

}

.introduction__text p {
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    line-height: 2;
    margin-bottom: 24px;
}

/* ギャラリー */

.introduction__gallery {
    margin-top: 10%;
    width: 100%;
    overflow: hidden;
}


.gallery-row {
    display: flex;
    gap: 8px;
    padding: 4px 0;
}


.gallery-row img {
    width: clamp(160px, 20vw, 280px);
    height: auto;
    object-fit: cover;
}


/* ---------- アニメーション ---------- */

.gallery-row--top {
    animation: slide-left 45s linear infinite;
}

.gallery-row--bottom {
    flex-direction: row-reverse;
    animation: slide-right 45s linear infinite;
}

@keyframes slide-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slide-right {
    0%   { transform: translateX(0); }
    100% { transform: translateX(50%); }
}
/* ------------------------------
    解説
------------------------------ */
.explanation__bg {
    background-image: url(../images/explanation_bg.png);
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 268px;
}

.explanation__inner {
    max-width: 980px;
    margin: 44px auto 0;
    padding: 0 10px
}

.explanation__text h3 {
    text-align: center;
    font-size: clamp(2.4rem, 2.6vw, 2.8rem);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.24rem;
}

.explanation__text p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.24rem;
    margin-top: 46px;
}

.explanation__text h4 {
    text-align: center;
    font-size: clamp(2.0rem, 2.4vw, 2.4rem);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.24rem;
    margin-top: 46px;
}


/* ------------------------------
    カフェについて
------------------------------ */

.hajime__inner {
    width: 100%;
    margin: 5.8% auto 0;
    position: relative;
}

.hajime__bg-text {
    color: rgba(140, 120, 107, 0.4);
    font-size: clamp(4.0rem, 4.0vw, 5.6rem);
    font-style: italic;
    position: absolute;
    top: 0;
    left: 2%;
}

/* 上段 */
.hajime__content {
    width: 90%;
    margin: 0 0 0 auto;
    padding: 120px 0 80px;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.hajime__text-block {
    flex: 1;
}

.hajime__title {
    color: var(--beige);
    font-size: clamp(2.8rem, 2.6vw, 3.2rem);
    font-weight: 500;
}

.hajime__text {
    font-size: clamp(1.4rem, 1.4vw, 1.8rem);
    font-weight: 500;
    margin-top: 48px;
    line-height: 1.8;
}

.hajime__image-main {
    flex: 1.2;
}

.hajime__image-main img {
    width: 100%;
    height: auto;
    padding-top: 8px;
}

/* 下段 */
.hajime__lower {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-left: 60px;
}

.hajime__lower-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hajime__lower-img {
    width: clamp(180px, 20vw, 250px);
}

.hajime__lower-img--01 {
    margin-left: 180px;
}

.hajime__quote-block {
    flex: 1.4;
}

.hajime__quote {
    color: var(--beige);
    font-size: clamp(2.2rem, 2.4vw, 3.2rem);
    font-weight: 500;
    line-height: 2;
    white-space: nowrap;
    overflow-x: auto;
}

.hajime__image-kitchen {
    width: 100%;
    height: auto;
    margin-top: 170px;
}

.hajime__image-kitchen img {
    width: 100%;
}

.hajime__image-kitchen--sp {
    display: none;
}

/* ------------------------------
    コメント
------------------------------ */
.comment {
    background-color: #fff;
    width: 100%;
}
.comment__inner {
    margin: 44px auto 0;
}
.comment__catch {
    color: var(--beige);
    text-align: center;
    font-size: clamp(3rem, 3.8vw, 4rem);
    line-height: 1.8;
    letter-spacing: 0.24rem;
    font-weight: 500;
}

.comment-group {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 14% auto 0;
    padding: 0 60px;
}

/* 野中さんのコメント */
.comment-item {
    max-width: 1200px;
    display: flex;
    margin: 60px auto 0;
    gap: 10%;
    padding: 0 60px
}

.comment-item__left {
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}

.comment-item__image{
    width: clamp(180px, 20vw, 250px);
}

.comment-item__image img{
    width: 100%;
}

.comment-item__name {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    margin-top: 16px;
}

.comment-item__position {
    color: var(--gray);
    font-size: clamp(1.2rem, 1.0vw, 1.4rem);
    margin-top: 4px;
}

.comment-item__text {
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
    font-weight: 500;
    line-height: 2.2;
}

/* 他の方のコメント */
.comment-note {
    flex: 1 1 500px;     /* ← 最大500px、縮む時は自動調整 */
    max-width: 500px;    /* ← 指定された最大幅 */
    width: 100%;
}

.comment-note__info {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #D9D9D9;
}

.comment-note__name {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.comment-note__position {
    color: var(--gray);
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.comment-note__heading {
    color: var(--beige);
    font-size: clamp(2rem, 2.2vw, 2.8rem);
    font-weight: 500;
}

.comment-note__lead {
    font-size: clamp(1.5rem, 1.6vw, 1.8rem);
    line-height: 2;
    margin: 24px 0;
}

.comment-note__text {
    font-size: clamp(1.5rem, 1.6vw, 1.8rem);
    line-height: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);  /* ← 少し浮かせておく */
    transition:
        max-height 0.9s cubic-bezier(.16, .84, .44, 1),
        opacity 0.6s ease,
        transform 0.9s cubic-bezier(.16, .84, .44, 1);
}

.comment-note__text.is-open {
    opacity: 1;
    transform: translateY(0);
}

.comment-note__more {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;             
    justify-content: flex-end; 
    align-items: center;
    gap: 8px;
    width: 100%;  
    padding: 8px 0;
    color: #6F6F6F;
    font-size: 1.4rem;
}


.comment-note__more-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #C8C8C8;
    font-size: 2rem;
    line-height: 1;
    transition: transform 1s ease;
}

.comment-note__more-icon.is-open {
    transform: rotate(45deg);
}

.comment-note__more-text {
    font-size: 1.4rem;
    color: #6F6F6F;
}

/* ------------------------------
    ギャラリー
------------------------------ */
.gallery {
    margin-top:10%;
    width: 100%;
    overflow: hidden;
    background-color: #fff;

}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr; 
    width: 100%;
}

.gallery__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ------------------------------
    コンタクト
------------------------------ */
.contact {
    width: 84%;
    border-radius: 60px;
    background: #8C806B;
    padding: 40px 100px 60px;
    margin:  8% auto 0;
}

.section__head--contact {
   margin-top: 0;
   color: var(--textwhite);
}

.section__subtitle-white {
    color: var(--white-beige);
    font-size: 1.4rem;
}


.section__subtitle-white::after {
    content: '';
    display: block;
    width: 0.8px;
    height: 14px;
    background-color: var(--textwhite);
    margin: 8px auto 0;
}

.contact__lead {
    color: var(--textwhite);
    text-align: center;
    font-size: clamp(1.5rem, 1.6vw, 1.8rem);
    margin-top: 40px;
    line-height: 1.8;
}

.contact__org {
    color: var(--textwhite);
    text-align: center;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    font-weight: 600;
    margin-top: 40px;
}

.contact__org--em {
    font-size: clamp(2.8rem, 2.6vw, 3.2rem);
}

.contact__time {
    color: var(--textwhite);
    text-align: center;
    font-size: 1.8rem;
    margin-top: 20px;
}

.contact__time--em {
    font-size: 1.4rem;
}


.contact__buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ボタン共通 */
.contact-btn {
    width: 340px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 36px 16px 16px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.4;
    transition: 0.25s ease;
}

.contact-btn__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-btn__icon--mail {
    background-color: var(--brown);
}

.contact-btn__icon img {
    width: 28px;
    height: auto;
}

.contact-btn__icon img {
    width: 28px;
    height: auto;
}

.contact-btn__text {
    font-size: 1.6rem;
    line-height: 1.5;
}

.contact-btn--tel {
    background-color: var(--brown);
    color: var(--white-beige);
}

.contact-btn--mail {
    background-color: var(--white-beige);
    color: var(--brown);
}

/* Hover */
.contact-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* 固定表示の背景レイヤー */
.contact-photo__bg {
    position: fixed;  
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;  
    background-image: url(/mypace-myspace/assets/images/contact_photo.png);
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
}


/* スタッフ情報　黒背景部分 */
.movie-info {
    margin-top: 800px;
    background-color: #242424;
    color: var(--textwhite);
    padding: 60px 16px 60px;
    text-align: center;
}

.movie-info__title {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

.movie-info__title img{
    width: 100%;
}

.movie-info__credit {
    margin-top: 38px;
    font-size: clamp(1.2rem, 1.0vw, 1.4rem);
    line-height: 2;
}

.footer {
    background-color: #242424;
    padding: 0 0 20px;
    text-align: center;
}

.footer__copy {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.7;
}


/* ------------------------------
   レスポンシブ（PC）
------------------------------ */
@media (max-width: 1179px) {
    .comment-group {
        justify-content: center; /* スマホでは中央 */
    }
}

@media (max-width: 1100px) {

    .header__nav {
        gap: 10px;
        padding-right: 10px;
}

    .header__nav-list {
        gap: 20px;
    }

    .header__contact-btn {
        gap: 8px;
        padding: 8px 14px;
        
    }


    .introduction__image-medium img {
        margin-left: 160px;
    }

    .introduction__content {
        gap: 40px;
    }

    .explanation__bg {
        padding-bottom: 180px;
    }

    .hajime__content {
        gap: 50px;
        }

    .hajime__lower {
        gap: 60px;
    }

    .hajime__lower-img--01 {
        margin-left: 120px;
    }

    .hajime__text {
    margin-top: 38px;
    }

    .comment-group {
        justify-content: center; /* スマホでは中央 */
    }
    
    .spBr {
        display: block;
    }

    .pcBr {
        display: none;
    }

    .spBr--narrow {
        display: none;
    }

}



@media (max-width: 880px) {

    .header__nav {
        gap: 4px;
        padding-right: 6px;
    }

    .header__nav-list {
        gap: 2px;
    }

    .header__contact-btn {
        gap: 8px;
    }

    .introduction__image-medium img {
        margin-left: 140px;
    }


    .introduction__content {
        gap: 20px;
    }

    .hajime__content {
        padding: 120px 0 60px;
    }

    .hajime__lower {
        gap: 42px;
        padding-left: 0;
    }

    .hajime__lower-img--01 {
        margin-left: 100px;
    }

    .spBr--narrow {
        display: none;
    }

    
}

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


    .mv__sp img {
        width: 100%;
        height: 100%;      /* ← ここが超重要 */
        display: block;    /* 不要な余白をなくす */
    }

    .mv__pc img {
        display: none;
    }
    .spBr {
        display: none;
    }
    .header {
        padding: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        height: 80px;
        
    }

    .header__inner {
        padding: 0;
    }

    .header__title img {
        width: 100px;
    }
    .header__hamburger-circle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        background-color: #413A30;
        transform: translateX(100%);
        transition: transform 0.6s ease;
        padding: 100px 34px;
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
    }

    .header__nav.active {
        transform: translateX(0);
    }

    .header__nav-list {
        flex-direction: column;
    }

    .header__nav-item a {
        text-align: start;
        margin-bottom: 26px;

    }

    .nav-ja {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .nav-en {
        font-size: 1.4rem;
    }

    .header__contact-btn {
        padding: 16px 18px;
        width: 210px;
    }

    .header__contact-text {
        font-size: 1.2rem;
    }

    .header__nav-item--top {
        display: block;
    }

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

    .mv__support {
        width: clamp(300px, 54vw, 458px);
        margin: 8px auto 0;
    }
/* ------------------------------
   タイトル共通
------------------------------ */
    .section__head {
        margin-top: 40px;
    }

    .section__title {
        font-size: 2.6rem;
    }

    .section__subtitle {
        font-size: 1.2rem
    }

/* ------------------------------
   news
------------------------------ */
    .news__list {
        margin: 0;
    }
    .news-item--first {
        margin-top: 10px;
    }

    .news-item {
        align-items: center;
        padding: 16px 0px

    }
    .news-item__text {
        font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    }
    .news-item__detail-inner {
        padding-left: 0px; 
    }

    .news-item__header {
        flex-direction: column;
        display: block;
    }

    .news-item__date {
        text-align: start;
        margin: 0;
    }

    .news-item__text {
        margin-top: 10px;
    }

    .news-item__image {
        width: clamp(250px, 80vw, 400px);
    }
/* ------------------------------
  Introduction
------------------------------ */
    .introduction__catch {
        font-size: clamp(2.0rem, 5vw, 3.6rem);
    }

    .introduction__content {
        width: 100%;
        margin-top: 44px;
        display: block;
    } 

    .introduction__images {
        margin: 0 auto;  
        text-align: center;
        max-width: 500px; 
    }

    .introduction__image-large img{
        width: clamp(280px, 70vw, 470px);
        margin-right: 2%;
    }

    .introduction__image-medium img {
        width: clamp(196px, 46vw, 300px);
        margin-left: 34%;
    }

    .introduction__text-title {
        font-size: clamp(1.7rem, 3.6vw, 2.8rem);
        margin:  32px 0 28px;
        text-align: center;
        line-height: 1.8;
    }

/* ------------------------------
  Introduction gallery
------------------------------ */

    .gallery-row img {
        width: clamp(150px, 30vw, 280px);
    }

/* ------------------------------
  解説
------------------------------ */
    .spBr--narrow {
        display: block;
    }

    .explanation__text h3 {
        font-size: clamp(2.0rem, 5vw, 2.4rem);
    }

    .explanation__text p {
        font-size: 1.6rem;
    }

    .explanation__text h4 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.0rem);
    }
/* ------------------------------
  カフェについて
------------------------------ */
    .hajime__ineer {
        margin: 6% auto 0;
    }
    .hajime__bg-text {
        font-size: clamp(1.6rem, 4vw, 2.8rem);
    }

    .hajime__content {
        flex-direction: column;
        margin: 0 auto;
        padding: 10% 0;
        gap: 30px;
    }

    .hajime__title {
        font-size: clamp(2.0rem, 5vw, 2.8rem);
    }

    .hajime__text {
        margin-top: 3%;
    }

    /* 下段 */
    .hajime__lower {
        flex-direction: column-reverse;
        width: 90%;
    }

    .hajime__lower-images {
        gap: 24px;
        margin-left: 32%;
    }

    
    .hajime__lower-img {
        width: clamp(220px, 38vw, 280px);
    }

    .hajime__quote {
        font-size: clamp(1.8rem, 3.6vw, 2.2rem);
        white-space: wrap;
    }

    .hajime__image-kitchen {
        display: none;
    }

    .hajime__image-kitchen {
        display: none;
    }

    .hajime__image-kitchen--sp {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 15%;
    }

    .hajime__image-kitchen--sp img {
        width: 100%;
    }
/* ------------------------------
  コメント
------------------------------ */
    .comment__catch {
        font-size: clamp(1.8rem, 3.6vw, 2.2rem);
        padding: 0 10px;
    }
    .comment-item {
        flex-direction: column;
        padding: 0 10%;
    }

    .comment-item__image{
        width: clamp(200px, 40vw, 300px);
    }

    .comment-item__name {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-top: 16px;
    }

    .comment-item__text {
        margin-top: 24px;
    }

    .comment-group {
        padding: 0 10%;
    }
/* ------------------------------
    ギャラリー
------------------------------ */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__grid img:nth-child(3) {
        order: 2;
    }

    .gallery__grid img:nth-child(4) {
        order: 3;
    }
/* ------------------------------
    contact
------------------------------ */
    .contact {
        width: 90%;
        padding: 40px 8px 60px;
        margin:  10% auto 0;
    }

    .section__head--contact {
        margin-top: 0;
    }

    .contact__org {
        font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    }

    .contact__org--em {
        font-size: clamp(2.0rem, 4vw, 2.8rem);
        margin-top: 4px;
        line-height: 2.0;
    }

    .contact-btn__text {
        font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        line-height: 1.5;
    }

    .movie-info {
        margin-top: 450px;
    }

    .movie-info__title {
        max-width: 400px;
    }

    .contact-btn {
        padding: 16px 24px 16px 16px;
    }

    .contact-photo__bg {
        background-position: 70% 30%;
    }
}


@media (max-width: 500px) {
    .hajime__lower-images {
        gap: 18px;
        margin-left: 10%;
    }

}

@media (max-width: 400px) {

    .hajime__quote {
        letter-spacing: 0em;
    }

    .hajime__lower-img--01 {
        margin-left: 50px;
    }

    .hajime__lower-images {
        margin: 0;
    }

}