@charset "UTF-8";

/* カスタムプロパティ
---------------------------------------------------------- */
:root {
    /* カラー */
    --color-primary: #322507;
    --color-text: #322507;
    --color-footer: #614227;
    --color-bg: #fffefb;
    /* レイアウト */
    --width-wrapper: 1200px;
    --header-height: 120px;
    --header-height-sp:80px;
    /* その他 */
    --duration: .3s;
}

/* ベース
----------------------------------------------------------- */
/* --- 基本設定 --- */
html {
    font-size: 100%;
    overflow-x: hidden;
}
body {
    font-family: "YuMincho", "Yu Mincho", "MS Mincho", "游明朝", serif;
    overflow-x: hidden;
    background: #fffefb;
    color: var(--color-text);
    min-width: 1200px;
}
img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding:0 40px;
    box-sizing:border-box;
}

/* ユーティリティ - Flex
----------------------------------------------------------- */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap { gap: var(--gap); }

/* 共通コンポーネント
----------------------------------------------------------- */
.sec-ttl,
.about-content h2, 
.text-area .sec-ttl {
    font-family: "Hiragino Mincho ProN", "ヒラギノ 明朝 ProN", sans-serif;
    font-size: 40px;
    font-weight: normal;
    color: #322507;
    position:relative;
    letter-spacing: 0.1em;
    margin-bottom: 80px; /* タイトルと、その下の中身との間の絶妙なすき間 */
    display: inline-block;
    width: auto;
    margin-bottom: 0;
}
.sec-ttl::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px; 
    background: #322507;
    margin: 25px auto 0;
}
.heading-area{
    width:100%;
    margin-bottom: 40px;
}
/* 中央配置のセクション */
.sec-01 .heading-area,
.news .heading-area{
    text-align:center;
}
/* 左寄せのセクション */
.sec-02 .heading-area,
.sec-03 .heading-area,
.access .heading-area{
    text-align:left;
}
.body-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.body-area .btn-common{
    margin-top: auto;
    align-self: flex-end;
}

/* ボタン共通
----------------------------------------------------------- */
/* ── 矢印ラインボタン（共通設定） ── */
a.btn-common {
    display: inline-flex;
    flex-direction: column;    /* 文字と矢印を「上下並び」に */
    align-items: flex-start; 
    position: relative;
    font-size: 17px;
    font-weight: normal;
    color: #322507;
    text-decoration: none;
    letter-spacing: 0.1em;
    width: 180px;              /* ボタン全体の横幅（＝矢印の長さ）を固定 */
    height: 50px;              /* 上下に並べるための十分な高さを確保 */
    align-self: flex-end;
    margin-top: auto;
    transition: all 0.3s ease;
}
/* 矢印の「長い横棒（ライン）」を作る設定 */
a.btn-common::after {
    content: "";
    position: absolute;
    right: 0;
    top: 54%;
    bottom: 15px;
    width: 100%;
    height: 1px;
    background-color: #322507;
    /* 横幅（width）や位置が変化するときに、0.3秒かけて滑らかに動かす */
    transition: width 0.3s ease, transform 0.3s ease;
    transform-origin: left center; /* 左側を固定して右に伸ばすための起点設定 */
}
/* HTMLにある空の <span> タグを使って、矢印の「先端の折れ曲がり」を作る */
a.btn-common span {
    position: absolute;
    right: 0;
    bottom: 22px;
    width: 12px;
    height: 1px;
    /* 横棒が伸びる速度に合わせて、先端の斜線も一緒に滑らかに右へ動かす */
    transition: transform 0.3s ease;
}
/* ホバー時 */
a.btn-common:hover {
    transform: scale(1.03);
}
/* マウスホバー時に横棒（::after）を右方向に7px伸ばす指示 */
a.btn-common:hover::after {
    transform: translateX(10px);
}
/* マウスホバー時に先端の斜線（span）を右に7px押し出す指示 */
a.btn-common:hover span {
    transform: translateX(10px);
} 
a.btn-common:hover span::before {
    transform: rotate(45deg); /* 右方向に「7px」スライドさせる */ 
}
a.btn-common span::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0;
    width: 12px;                /* 先端のハネの長さ */
    height: 1px;
    background-color: #322507;
    transform: rotate(45deg);
    transform-origin: right top;
}

/* ローディング
----------------------------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fffefb;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
    visibility: visible;
    display: none;
}
#loading.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loading-logo {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.loading-logo.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヘッダー
------------------------------------------------------- */
.header {
    width: 100%;
    height: 120px;
    background-color: #614227;
    display: flex;
    align-items: center;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;  
}    
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(97, 66, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header-wrapper{
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
/* 右側のナビゲーション */
.nav {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-left: auto;  
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 60px;
}
.nav-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}
.nav a:hover {
    opacity: 0.7;
}
/* ロゴ */
.logo {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.logo img {
    height: 95px;
    /* width: auto; */
}
/* グローバルナビ（PC） */
.nav-link {
    display: block;
    font-size: 18px;
    font-weight: 600; /* demiboldの代わりに数値指定 */
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}    
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .nav-link:hover::after {
        width: 100%;
    }
}
/* オーバーレイ・ハンバーガーボタン（PCでは非表示） */
.nav-overlay,
.menu {
    display: none;
}

/* mv
--------------------------------------------------------- */
.mv {
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 850px;  
    margin-top: 120px;  
}
.mv-wrapper{
    width: 100%;
    max-width: 1800px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
}
.mv-left {
    width: 35%;
    display: flex;
    padding: 200px 0;
    flex-direction: column;
    align-items: center;
    position: relative; /* SNSの位置指定の基準にする */
    box-sizing: border-box;
}
.mv-images-pc img {
    width:100%;
    margin: 0;
    height: auto;
}

/* ロゴ */
.mv-left .mv-logo {
    width: 240px;
    margin-top: 110px;
    height: auto;
    margin: 0;
    display: block;
}
/* SNSボタン（SNS） */ 
.sns-box-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 150px;
    position: absolute;
    /* top: 500px; */
    margin-top: 220px;
    bottom:40px;
    left:10%;
}
.sns-box-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #322507;
    font-size: 40px;
    text-decoration: none;
    transition: opacity .3s ease;
}
@media (hover: hover) and (pointer: fine){
    .sns-box-wrap a:hover{
        opacity: .7;
    }
}
/* 右側 */
.mv-right {
    width: 65%;
    height: 100%;
    position: relative;  
}
/* 画像を囲むコンテナ */
.mv-images {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 60px;    /* 左上の角丸 */
    border-bottom-left-radius: 60px; /* 左下の角丸 */
}
/* 3枚の画像共通の設定 */
.mv-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover; /* 縦横比を崩さずにエリアいっぱいに広げる */
    opacity: 0;
    animation: mvSlider 15s infinite;
}
/* 3枚の画像の出現タイミングをずらす設定 */
.mv-img:nth-child(1) {
    animation-delay: 0s;
}
.mv-img:nth-child(2) {
    animation-delay: 5s;
}
.mv-img:nth-child(3) {
    animation-delay:10s ;
}
/* CSSスライドアニメーションの定義（合計15秒想定） */
@keyframes mvSlider {
    0% { opacity: 0; }
    10% { opacity: 1; }  /* 1.5秒かけてフェードイン */
    33% { opacity: 1; }  /* 5秒目まで表示維持 */
    43% { opacity: 0; }  /* 次の画像へ1.5秒かけてフェードアウト */
    100% { opacity: 0; }
}
/* キャッチコピー */
.catchcopy {
    position:absolute;
    top:15%;
    left: 10%;
    z-index: 10; /* 画像（z-indexなし）より手前に出す */
    width: 100%;
    pointer-events: none; /* 文字が画像へのクリック等の邪魔をしないように */
}
.catchcopy h1 {
    color:white;
    font-size:45px;
    line-height:1.4;
    text-align: left;
    letter-spacing: 0.05em;
    text-shadow:3px 3px 25px rgba(0,0,0,0.6);
}
.mv-images-sp {
    display: none;
}


/* sec01
-------------------------------------------------------- */
.sec-01 {
    position: relative;
    max-width: 1800px;
    min-width:1600px;
    width: 100%;
    min-height:1460px;
    height:auto;
    margin:0 auto;
    overflow: hidden;
    padding: 140px 0;
}
.about-content {
    width: 100%;
    max-width: 960px;
    text-align: center;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align:center;
} 
.sub-title {
    font-size: 23px;
    margin-bottom: 40px;
    color: #322507;
    font-weight: 600px;
}
.sec-01 .heading-area{
    text-align:center;
    margin-top: 20px;
    margin-bottom:100px;
}
.sec-01 .body-area{
    padding-top: 50px;
    transform: translateY(-80px);
}
.text {
    font-size: 18px;
    line-height: 2.2;
    color: #333507;
    margin-bottom: 4px;
    text-align: left;      /* 改行前の左右の端のラインが綺麗に「均等揃え」になる */
    text-align: justify;
    text-indent: 1em;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 0;
}
.img-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.img {
    position: absolute;
    z-index: 1;
    display: block;
    height: auto; /* 縦横比を崩さないお守り */
}
/* 左中：看板 */
.img1 {
    width: 45%;
    max-width: 400px;
    left: 3%;
    top: 28%;
}
/* 上中央：店内 */
.img2 {
    width: 39%;
    max-width: 410px;
    left: 33%;
    top: 6%;
}
/* 右上：ギャラリー */
.img3 {
    width: 31%;
    max-width: 380px;
    right: 2%;
    top: 20%;
}
/* 左下：コーヒーとケーキ */
.img4 {
    width: 39%;
    max-width: 410px;
    left: 6%;
    bottom: 18%;
}
/* 下中央：窓際の女性 */
.img5 {
    width: 41%;
    max-width: 440px;
    left: 45%;
    bottom: 8%;
}
/* 右下：本棚 */
.img6 {
    width: 35%;
    max-width: 360px;
    right: 6%;
    bottom: 20%;
}
/* キャラ */ 
.sec01-chara-full{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
    z-index:0;
}
.sec01-chara-top,
.sec01-chara-bottom {
    display: none;
}
/* スクロールアニメーション用のCSS設定 */
.js-fade {
    opacity: 0;
    transform: translateY(40px); /* 最初は50px下に下げておく */
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
/* 画面内に該当の画像が入ってきたら、このクラスがJavaScriptによって付与される */
.js-fade.is-active {
    opacity: 1;
    transform: translateY(0); /* 元の位置にスムーズに浮き上がる */
}

/* sec02
------------------------------------------------------- */
/* 背景 */
.sec-02 {
    background-image: url("../img/sec02-bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
}
.sec-02.pc-only {
    height: 1400px;
    padding: 140px 0;
}
/* 横並び */
.sec-02 .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:relative;
    align-items: flex-start;
}
.sec-02.pc-only .content {
    margin-bottom: 200px;
}
/* 下段だけ左右反転 */
.content.cafe {
    margin-bottom: 0;
    flex-direction: row-reverse;
}
/* テキスト */
.sec-02 .text-area {
    width: 38%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position:relative;
    z-index:10;
    height:460px;   /* 画像の高さに合わせる */
}
.sec-02.pc-only .heading-area{
    margin-bottom: 40px;
    text-align:left;
}
.sec-02 .body-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 160px;
    flex: 1;
}
.sec-02 .body-area .btn-common{
    margin-top: auto;
    align-self: flex-end;
}
.text-area p {
    font-size: 16px;
    line-height: 2;
    color: #322507;
    margin-bottom: 15px;
    text-align: left;
}
/* 右側の画像エリアのサイズコントロール */
.content img {
    width: 60%; /* 全体の半分弱のバランスに設定 */
    max-width: 600px;
    height: auto;
    border-radius: 0; /* 必要に応じて四角形を維持 */
    box-shadow: none;
    margin: 0;
    position:relative;
    z-index:1;
}
.sp-only {
    display: none;
}

/* sec03
------------------------------------------------------- */
.sec-03 {
    background-image: url(../img/sec03-bg.svg);
    background-size: cover;
    height: 1350px;
    padding: 100px 0;
}
/* タイトル */
.sec-03 .sec-ttl {
    margin: 0 auto 50px;
}  
.sec-03 .heading-area{
    margin-bottom: 0;
    text-align:left;
}
/* 上下共通 */
.content-item {
    width: 100%;
    margin-bottom: 200px;
    display: flex;
    justify-content: space-between;
}
.sec-03 .text-area {
    width: 35%;
    height: 330px;              /* 右側のカード（330px）と高さを完全に同期 */
    display: flex;              /* 縦並びのレイアウト構造を作る */
    flex-direction: column;     /* 上から下へ縦に並べる */
    justify-content: flex-end;
    min-height: 380px;
}
.sec-03 .text-area p {
    line-height: 2;
    color: #322507;
    margin-top: 220px;
    margin-bottom: 5px;
} 
/* カード */
.activities-card {
    width: 590px;
    height: 360px;
    background: #c2a180;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}
/* 上段 */
.goods {
    border-radius: 120px 0 0 0;
}
/* 下段 */
.gallery {
    flex-direction: row-reverse;
    border-radius: 0 0 120px 0;
}
.activities-card.gallery {
    display: flex;
    background-color: #9d7e60;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}
.activities-card img {
    width: 290px;
    height: 290px;
    object-fit: cover;
    margin: 0;
}
/* タイトル */
.card-title {
    font-size: 30px;
    color: #322507;
    line-height: 1.2;
    padding: 40px
}

/* NEWS
-------------------------------------------------------- */
.sec-news {
    position: relative;
    width: 100%;
    padding: 100px 40px;
    /*背景画像の設定 */
    background-image: url("../img/news-01.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    color: #fffefb;
}
.news-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.sec-news .sec-ttl {
    color: #fffefb; 
}
.sec-news .sec-ttl::after {
    background: #fffefb;
}
.news .heading-area{
    margin-bottom: 50px;
}
.news-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px; /* 左右に適度な余白を作る幅 */
    text-align: left; /* リストの中身は左揃え */
}
.news-list li a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    /* 細い「白の点線」で上下を区切る */
    border-bottom: 1px dotted rgba(255, 255, 255, 0.6); 
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: background-color .3s ease;
}
.news-list .date {
    font-size: 16px;
    width: 150px; /* 日付の横幅を固定することで、右側のお知せタイトルの縦ラインが綺麗に揃う */
    letter-spacing: 0.05em;
}
.news-list .title {
    font-size: 16px;
    letter-spacing: 0.05em;
    flex: 1; /* 残りの横幅をいっぱいに使う */
}
.news-list li a:hover{
    background: rgba(255,255,255,.08);
}
.news-list li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fffefb;
    transition: .4s ease, 
}
.news-list li a:hover::after{
    width: 100%;
}
.sec-news .news-container .btn-common {
    margin-top: 50px;
    color: #fffefb;
}
.sec-news .news-container .btn-common::after {
    background-color: #fffefb;
}
.sec-news .news-container .btn-common span::before {
    background-color: #fffefb;
}

/* ACCESS
------------------------------------------------------- */
.sec-access {
    width: 100%;
    padding: 140px 0;
}

/* SINGLE（記事詳細）
------------------------------------------------------- */
.single {
    padding: 160px 0 140px;
    background: #fffefb;
}
.wrapper-mid {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}
.single-header {
    text-align: center;
    margin-bottom: 60px;
}
.single-date {
    font-family: "Hiragino Mincho ProN", "ヒラギノ 明朝 ProN", sans-serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: #322507;
    margin: 0 0 20px;
}
.single-title {
    font-family: "Hiragino Mincho ProN", "ヒラギノ 明朝 ProN", sans-serif;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 0.08em;
    color: #322507;
    line-height: 1.6;
    position: relative;
    padding-bottom: 30px;
}
.single-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #322507;
    margin: 20px auto 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.single-thumbnail {
    margin-bottom: 60px;
}
.single-thumbnail img {
    width: 100%;
    height: auto;
}
.single-content {
    font-size: 16px;
    line-height: 2.1;
    letter-spacing: 0.05em;
    color: #322507;
}
.single-content p {
    margin-bottom: 1.8em;
}
.single-content img {
    margin: 3em auto;
}
.single-content h2 {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.08em;
    margin: 3em 0 1.2em;
}
.single-content h3 {
    font-size: 19px;
    font-weight: normal;
    letter-spacing: 0.06em;
    margin: 2.5em 0 1em;
}
.single-content a {
    color: #322507;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.back-link-area {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px dotted #322507;
    text-align: center;
}   
.access-container {
    max-width: 1200px;
    margin: 0 auto;
} 
.access .heading-area{
    margin-bottom: 60px;
    text-align:left;
    
}
.access-flex {
    display: flex;
    justify-content: space-between; /* 左と右のブロックの間に適度なすき間を作る */
    align-items: stretch;        /* 左右ブロックの高さを自動で並べる */
    gap: 60px;                      /* 左右のブロックの間の具体的な距離 */
    margin-top: 50px;
}
.access-info {
    width: 48%;
}
.access-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}
.info-table {
    width: 100%;
    border-collapse: collapse; /* 線の重なりを防いで綺麗に1本にする */
    font-size: 15px;
    color: #322507;
}
.info-table tr {
    border-bottom: 1px dotted rgba(50, 37, 7, 0.4); 
}
.info-table th, 
.info-table td {
    padding: 12px 0;
    vertical-align: top; /* 文字が複数行になっても上揃えにする */
    line-height: 1.0;
}
.info-table th {
    width: 100px;
    font-weight: normal;
    text-align: left;
}
/* ──  郵便番号の下に確実にすき間を作る設定 ── */
.info-table td .postal-code {
    display: block;    /* 郵便番号を1行独立した箱にする */
    margin-bottom: 8px; /* この下の余白で、住所との間に確実にすき間を作る */
}
/* ── 右側：Googleマップエリア ── */
.access-map {
    width: 70%;
    height: auto;
}
/* Googleマップのiframe自体を、指定したエリアいっぱいに広げる設定 */
.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;       /* 外枠の余計な線を消す */
}

/* フッター
---------------------------------------------------------- */
.site-footer {
    position: relative;
    width: 100%;
    background-color: #614227;
    padding: 70px 60px;
    overflow: hidden; /* キャラクター画像がフッターからはみ出るのを防ぐ  */
    z-index: 1;
}
.site-footer::after {
    content: "";
    position: absolute;
    right: 22%;
    bottom: -77px;         /* 下端にピッタリくっつける */
    width: 400px;
    height: 400px;
    background-image: url("../img/footer-bg.png"); 
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 0.5;          /* うっすらと馴染ませるための透明度 */
    z-index: -1;           /* 文字やリンクの後ろ側に配置する */
    pointer-events: none;  /* マウスが重なってもリンクなどの邪魔をしない */
}
.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* 左詰めでバランスを保つ */
    align-items: center;
    gap: 80px;                   /* ロゴ、SNS、ナビの間のゆったりとしたすき間 */
}
.footer-sp{
    display: none;
}
/* ── 左：ロゴエリア ── */
.footer-logo {
    width: 160px;
    margin-top: 10px;
}
.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}
/* ── 中央：SNS・QRコードエリア ── */
.footer-sns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    align-items: flex-start; 
}
/* SNSリンク（Instagram / X） */
.sns-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.sns-links li {
    margin-bottom: 5px;
    display: flex;
    justify-content: flex-start;
}
.sns-links a {
    color: #fffefb;
    text-decoration: none;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}
.sns-links a i {
    width: 24px;
    text-align: center;
}
.fa-instagram {
    margin-left: -2px;
}
.sns-links a:hover {
    opacity: 0.7;
}
.x-icon {
    font-family: sans-serif;
    font-weight: bold;
}
/* LINE@ QRコードのレイアウト構造 */
.qr-code-area {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}
.qr-img {
    width: 72px;
    height: 72px;
    display: block;
}
.qr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.qr-text {
    color: #fffefb;
    text-align: left;
}
.qr-ttl {
    font-size: 17px;
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
}
.qr-sub {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}
/* ── 右：プライバシーポリシー ＆ コピーライト ── */
.footer-info {
    margin-left: auto;  /* これを入れることで、このブロックだけ右端にピタッと寄る */
    text-align: left;
    flex-shrink: 0;
    transform: translate(40px, 75px);
}
.info-links {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}
.info-links li {
    margin-bottom: 5px;
}
.info-links a {
    color: #322507;
    text-decoration: none;
    font-size: 13px;
}
.copyright {
    font-size: 12px;
    color: #322507;
    margin: 0;
}

/* ---------------------------------------------------
    下層ページ共通
--------------------------------------------------- */
.page-mv {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}
.page-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-mv-title {
    position: absolute;
    left: 50%;
    bottom: 200px;
    transform: translateX(-50%);
    text-align: center;
}
.page-mv-title .sub-mv-title {
    text-align: center;
    /* font-size: 40px; */
    /* font-weight: normal; */
    color: #fffefb;
    /* letter-spacing: .1em; */
}
.page-mv-title .sub-mv-title::after {
    /* content: ""; */
    /* display: block; */
    /* width: 80px; */
    /* height: 2px; */
    background: #fffefb;
    /* margin: 20px auto 0; */
}
/* 過ごし方ページ
---------------------------------------------------- */
.howto {
    padding: 120px 0;
    background: #fffefb;
}
.howto-subtitle {
    text-align: center;
    font-size: 25px;
    font-weight: normal;
    color: #322507;
    margin-bottom: 60px;
    letter-spacing: .1em;
}
.howto .wrapper p {
    text-align: center;
    font-size: 18px;
    line-height: 2.2;
    color: #322507;
    margin-bottom: 40px;
}
.howto-attention {
    font-size: 18px;
    text-align: center;
    color: #322507;
    margin: 70px 10px;
}
.howto-attention h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px; 
}
.howto-list {
    font-size: 18px;
    display: inline-block;
    text-align: left;
    padding: 0;
    list-style: none;
}
.howto-list li {
    font-size: 18px;
    line-height: 2;
    color: #322507;
}
.notice{
    margin: 60px 0;
    font-size: 18px;
    line-height: 2;
}
/* お問合せページ
---------------------------------------------------- */
.page-content {
    padding: 120px 0 140px;
    background: #fffefb;
}
.contact-intro {
    text-align: center;
    font-size: 18px;
    line-height: 2.2;
    color: #322507;
    margin-bottom: 70px;
}
.page-content .wrapper > p:first-child {
    max-width: 520px;      /* フォームと同じ幅 */
    margin: 0 auto 60px;   /* 中央寄せ＋下余白 */
    text-align: center;
    font-size: 18px;
    line-height: 2.2;
    color: #322507;
}
.wpcf7 {
    max-width: 520px;
    margin: 0 auto;
}
.wpcf7 p {
    margin-bottom: 28px;
}
.wpcf7 label {
    display: block;
    font-size: 16px;
    color :#322507;
    margin-bottom: 10px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: none;
    background: #d9d9d9;
    box-sizing: border-box;
    margin-top: 8px;
}
.wpcf7 textarea {
    width: 100%;
    height: 190px;
    padding: 12px;
    border: none;
    background: #d9d9d9;
    resize: none;
    box-sizing: border-box;
    margin-top: 12px;
}
/* 送信ボタン（Contact Form 7 標準マークアップ用フォールバック） */
.wpcf7-form p:has(input[type="submit"]) {
    text-align: center;
    margin-top: 40px;
}
.wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    background-color: transparent;
    color: #322507;
    border: 1px solid #322507;
    font-size: 15px;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wpcf7-form input[type="submit"]:hover {
    background-color: #322507;
    color: #fffefb;
}
.wpcf7-spinner {
    margin: 15px auto 0;
}
/* ボタンの親要素ごと中央に寄せるための指定（my-submit-btn を使う場合） */
.wpcf7-form button.my-submit-btn,
.wpcf7-form p:has(.my-submit-btn) {
    text-align: center; /* 親要素のテキスト配置を中央に */
    padding-bottom: 10px; 
}
/* ボタン全体のスタイル */
.my-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;          
    height: 45px;
    gap: 5px; /* 文字と矢印の間隔（お好みで調整） */
    padding: 0 25px 0 10px;
    /* 中央寄せのためのマージン（上下に40px、左右は自動） */
    margin: 40px auto;
    background-color: transparent; /* 背景透明 */
    color: #322507;
    border: 1px solid #322507; /* 外枠の黒線 */
    font-size: 15px; /* 「送信」の文字サイズ */
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.my-submit-btn .text {
    display: inline-block;
    /* マイナスにすると文字が上に上がる */
    transform: translateY(7px); 
}
/* 矢印の共通設定（横棒の部分） */
.my-submit-btn .arrow {
    display: inline-block;
    position: relative;
    width: 45px; /* 矢印の横棒の長さ */
    height: 1px; /* 矢印の線の太さ */
    background-color: #322507; /* 矢印の色 */
    transform: translateY(6px);
}
/* 矢印の先端（上の斜め線一本だけ） */
.my-submit-btn .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 10px; /* 斜め線の長さ */
    height: 1px; /* 斜め線の太さ */
    background-color: #322507; /* 斜め線の色 */
    transform: rotate(45deg); /* 反時計回りに45度回転 */
    transform-origin: right top; /* 右上を基準点にして回転 */
}

/* NEWS（お知らせ）ページ
---------------------------------------------------- */
.news-archive {
    padding: 80px 0 120px;
    background: #fffefb;
    
}
.news-archive .news-container {
    max-width: 760px;
    margin: 0 auto;
    
}
.news-archive .news-list {
    width: 700px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.news-archive .news-list li {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px dotted #322507;
}
.news-archive .news-list .date {
    width: 160px;
    font-size: 18px;
    color: #322507;
}
.news-archive .news-list .title {
    font-size: 18px;
    color: #322507;
}
.news-archive-back {
    margin-top: 50px;
    text-align: center;
}
.news-archive-back .btn-common {
    align-self: auto;
}


/* レスポンシブ tablet + mobile 共通
---------------------------------------------------- */
@media screen and (max-width:1199px) {
    /* .navをドロワーとして使用（PC横並びからドロワーに切り替え） */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        /* right: -280px; */
        width: 0;
        height: 100%;
        margin-right: 0;
        background: #614227; /* ダーク背景 */
        transform: translateX(100%); /* 閉じた状態：画面外に隠す */
        transition: right 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
        padding-top: 120px;
        box-shadow: none;/*-4px 0 20px rgba(0, 0, 0, 0.1); */
    }
    /* 開いた状態：スライドイン */
    body.open .nav {
        transform: translateX(0);
    }
    /* SP/TB時のnav-list：縦並びに変更 */
    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin: 0;
        padding: 0;
    } 
    /* SP/TB時のnav-link：ドロワーリンクのスタイルに変更 */
    .nav-link {
        display:block;
        padding: 18px 30px;
        font-size:16px;
        color:#fffefb;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-list li{
        list-style: none;
    }
    /* ドロワー時はホバー下線アニメーションを無効化 */
    .nav-link::after {
        display: none;
    }
    /* オーバーレイ */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        /* top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    body.open .nav {
        width: 280px;
    }
    /* 開いた状態：オーバーレイ表示 */
    body.open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    /* ハンバーガーメニュー */
    .menu {
        display: block;
        position: absolute;
        top: 60px;
        right: 60px;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        z-index: 1002;
    }
    .menu span {
        display: block;
        height: 3px;
        background: #fffefb; /* ダーク背景に映えるオフホワイト */
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out;
        border-radius: 4px;
    }
    .menu span:nth-child(1) { top: 5px; }
    .menu span:nth-child(2) { top: 22px; }
    .menu span:nth-child(3) { top: 39px; }
    body.open .menu span:nth-child(1) { top: 12px; rotate: 135deg; }
    body.open .menu span:nth-child(2) { width: 0; left: 50%; }
    body.open .menu span:nth-child(3) { top: 12px; rotate: -135deg; }

    /* ボタン ホバー時 */
    a.btn-common:hover {
        transform: scale(1.03);
    }
    /* マウスホバー時に横棒（::after）を右方向に6px伸ばす指示 */
    a.btn-common:hover::after {
        transform: translateX(6px);   /* 元の長さ（100%）に「＋6px」長くする */
    }
    /* マウスホバー時に先端の斜線（span）を右に6px押し出す指示 */
    a.btn-common:hover span {
        transform: translateX(6px);
    } 
    a.btn-common:hover span::before {
        transform: translateX(6px) rotate(45deg); /* 右方向に「6px」スライドさせる */ 
    }
    a.btn-common span::before {
        content: "";
        position: absolute;
        right: 0px;
        top: 0;
        width: 12px;                /* 先端のハネの長さ */
        height: 1px;
        background-color: #322507;
        transform: rotate(45deg);
        transform-origin: right top;
    }

    /* NEWS ホバー時 */
    .news-list li a:hover {
        background: rgba(255,255,255,.08);
    }
    .news-list li a::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: #fffefb;
        transition: .4s ease, 
    }
    .news-list li a:hover::after{
        width: 100%;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    html,
    body {
        min-width: 0;
        width: 100%;
        overflow-x: hidden;
    }
     /* --- ヘッダー --- */
    .header {
        position: fixed;
        padding: 0;
        /* position: relative; */
        box-sizing: border-box;
        padding: 0 15px;
        z-index: 1000;
    }
    .header-wrapper {
        padding: 0 15px;
    }
    .nav-list a {
        font-size: 14px;
    }
}

/* レスポンシブ tablet
----------------------------------------------------- */
@media screen and (max-width:1199px) {
    /* ---MV--- */
    .mv {
        min-height: 500px;
        height: 600px; 
        margin-top: 120px;
    }
    .mv-left {
        width: 20%;
        padding: 40px 0;
        align-items: center;
    }
    .mv-right {
        width: 80%;
    }
    .mv-left .mv-logo {
        width: 160px;
    }
    .sns-box-wrap {
        position: static;
        flex-direction: row;
        margin-top: auto;
    }
    .catchcopy h1 {
        font-size: 36px;
    }
    .mv-images {
        width: 100%;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 50px;
    }

    /* --- sec-01 --- */
    .sec-01 {
        padding: 40px 0;
        min-width: initial;
        height: 1150px;
        background-color: #fffefb;
    }
    .sec-01 .wrapper {
        min-height:auto;
    }
    .img1 {
        width: 24%;
        left: 5%;
        top: 20%;
    }
    .img2 {
        width:24%;
        left: 33%;
        top: 8%;
    }
    .img3 {
        width: 19%;
        right: 8%;
        top: 16%;
    }
    .img4 {
        width: 24%;
        left: 6%;
        bottom: 15%;
    }
    .img5 {
        width: 25%;
        left: 45%;
        bottom: 8%;
    }
    .img6 {
        width: 20%;
        right: 6%;
        bottom: 18%;
    }
    .about-content {
        width: 90%;
        transform: translate(-50%,-50%);
        max-width: 620px;
        top: 50%;
        left: 50%;
    }
    .sec-01 .heading-area {
        margin-top:-20px;
    }
    .sub-title {
        font-size: 27px ;
        margin-top:35px ;
        margin-bottom:40px ;
    }
    .text { 
        font-size: 22px;
        line-height: 2;
        max-width:100%;
    }
    .sec-01 .body-area {
        padding-top: 0;
    }
    .text br {
        display: none;
    }
    .sec01-chara-full {
        display: none;
    }
    .sec01-chara-top {
        display: block;
        position: absolute;
        width: 95px;
        top: 130px;
        right: 27%;
        z-index: 2;
    }
    .sec01-chara-bottom {
        display: block;
        position: absolute;
        width: 85px;
        bottom: 135px;
        /* left: 420px; */
        left: 31%;
        z-index: 2;
    }

    /* --- sec-02 --- */
    .sec-02 {
        height: 1800px;
        min-height: 1230px;
    }
    .sec-02 .content {
        display:flex;
        flex-direction: column ;
        align-items: center;
    }
    .sec-02 .heading-area {
        width: 100%;
        text-align: left;
        padding-top: 80px;
        margin-bottom: 50px;
    }
    .sec-02 img {
        width: 100%;
        max-width: 600px;
        margin-bottom: 10px;
    }
    .sec-02.sp-only .body-area {
        width: 100%;
        max-width: 600px; 
        margin-top: 0;
        min-height: 0;
        flex: none; 
        display: flex;
        flex-direction: column; 
        justify-content: flex-start;
        padding-top: 20px ;
    }
    .sec-02 .body-area p { 
        margin-top: 0;
        margin-bottom: 10px;
        text-align: left;
        font-size: 18px;
        line-height: 2;
    }
    .sec-02 .btn-common {
        align-self: flex-end;
        font-size: 20px;
    }

    /* --- sec03 --- */
    .sec-03 {
        height: 1500px;
    }
    .sec-03 .content-item {
        width: 620px;
        max-width: 100%;
        margin: 0 auto;
        display:flex ;
        flex-direction:column;
    }
    /* カードを一番上へ */
    .sec-03 .activities-card {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
        margin-top: 40px;
    }
    .sec-03 .content-item.goods {
        margin-bottom: 40px;
    }
    .sec-03 .content-item.gallery {
        margin-bottom: 10px;
    }
    /* テキストを中央へ */
    .sec-03 .text-area {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        order: 2; 
        width:100%;
        height: auto;
        min-height: 0;
        margin: 0 0 20px;
        padding: 0;
    }
    /* 説明文 */
    .sec-03 .text-area p {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 2;
        text-align: left;
    }
    /* ボタン */
    .sec-03 .btn-common {
        margin-top: 10px;
        margin-left: auto;
        align-self: flex-end;
        display: inline-flex; /* PC版と同じ */
        width: 180px;         /* PC版と同じ */
        font-size: 20px;
    }

    /* --- access --- */
    .sec-access {
        padding-top: 70px;
        padding-bottom: 100px;
    }
    .access-content {
        flex-direction: column;
        align-items: center;
    }

    /*--- フッター --- */
    .site-footer {
        position: relative;
        height: 300px;
        padding: 40px 40px;
    }
    .footer-info {
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        text-align: center;
    }
    .site-footer::after {
        right: 0;
        bottom: -75px;
    }
}

/* レスポンシブ mobile
----------------------------------------------------- */
@media screen and (max-width:767px) {
    .wrapper {
        width: 100%;
        padding: 0 15px;
    }
    .sec-ttl::after {
        width: 50px;
        height: 2px;
        margin-top: 10px;
    }

    /* ヘッダー */
    .header { 
        height: 120px;
        padding: 0;
    }
    .header-wrapper {
        height: 100%;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        }
    /* ロゴ */
    .logo{
        width: 90px;
        margin: 0;
    }
    .logo img {
        width: 100%;
        height: auto;
        display: block;
    }
    /* ハンバーガー */
    .menu { 
        display: block;
        position: fixed;
        width: 40px;
        height: 40px;
        top: 60px;
        right: 25px;
    }
    .menu span {
        display: block;
        left: 0;
        height: 3px;
        border-radius: 3px;
        background: #fffefb;
        transition: .5s ease-in-out;
        width: 100%;
        position: absolute;
    } 
    .menu span:nth-child(1) {
        top: 5px;
    }
    .menu span:nth-child(2) {
        top: 22px;
    }
    .menu span:nth-child(3) {
        top: 39px;
    }
    body.open .menu span:nth-child(1) { top: 12px; rotate: 135deg; }
    body.open .menu span:nth-child(2) { width: 0; left: 50%; }
    body.open .menu span:nth-child(3) { top: 12px; rotate: -135deg; }
    
    .nav {
        margin: 0;
    }

    /* --- mv --- */
    .mv-images-pc {
        display: none;
    }
    .mv-images-sp {
        display: block;
    }
    .mv {
        height: 500px;
        margin-top: 120px;
    }
    .mv-images-sp {
        width: 100%;
        height: 100%;
        border-top-left-radius: 0;   /* PC版の左側の角丸をリセット */
        border-bottom-left-radius: 0; /* PC版の左側の角丸をリセット */
        margin: 0 auto;
        border-radius: 0; /* 全体が四角で設定 */
        position: relative;
        overflow: hidden;
    }
    .mv-images-sp .mv-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* object-fit: cover; */
        opacity: 0;
        animation: mvSlider 15s infinite;
    }
    .mv-images-sp .mv-img:nth-child(1) {
        animation-delay: 0s;
    }
    .mv-images-sp .mv-img:nth-child(2) {
        animation-delay: 5s;
    }
    .mv-images-sp .mv-img:nth-child(3) {
        animation-delay: 10s;
    }
    .mv-left {
        display: none; 
    }
    .mv-right {
        width: 100%;
        padding: 0 10px 10px 10px;
    }
    .catchcopy {
        top: 10%;
        left: 25px;
        width: calc(100% - 80px);
    }
    .catchcopy h1 {
        font-size: 30px;
        line-height: 1.6;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7); 
    }

    /* --- sec01 --- */
    .sec-01 {
        position: relative;
        width: 100%;
        height: 780px;
        min-height: 620px; /* 画像を上下にゆったり散りばめるための高さを確保 */
        padding: 100px 0;
        min-width: initial;
        overflow: hidden;   /* 左右にわざとはみ出させた楕円画像をマスクし、横揺れを完全に防ぐ */
        box-sizing: border-box;
    }
    .sec-01 .wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 620px; /* 親の最小高さと一致させて絶対配置を安定させる */
    }
    .img-container,
    .img-top,
    .img-bottom {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; /* 画像が文字の選択やスマートフォンのタップを邪魔しないようにする */
    }
    .img1 {
        width: 28%;
        left: 2%;
        top: -5%;
    }
    .img2 {
        width:27%;
        left: 32%;
        top: -13%;
    }
    .img3 {
        width: 22%;
        right: 3%;
        top: -7%;
    }
    .img4 {
        width: 28%;
        left: 1%;
        bottom: 1%;
    }
    .img5 {
        width: 27%;
        left: 45%;
        bottom: -5%;
    }
    .img6 {
        width: 22%;
        right: 3%;
        bottom: 5%;
    }
    .about-content {
        position: absolute;
        width: 90%;
        transform: translate(-50%,-50%); 
        max-width: 700px;
        top: 50%;
        left: 50%;
        text-align: center;
    }
    .sec-01 .heading-area {
        margin-top:0;
        margin-bottom: 0;
    } 
    .sec-01 .heading-area .sec-ttl {
        font-size: 25px;      
        /* タイトル下の文字の塊（text-area）との間の余白 */
        margin-bottom: 70px; 
    }
    .sec-01 .body-area{
        width: 90%;
    }
    .sub-title {
        font-size: 17px ;
        margin-top:45px ; 
        margin-bottom:40px; 
        line-height: 1.5;
    }
    .text{ 
        font-size: 14px;
        line-height: 2;
        max-width:100%;
        text-align: justify; /* カンプのように左右の端のラインを揃える */
    }
    .sec01-chara-full {
        display: none;
    }
    .sec01-chara-top {
        display: block;
        position: absolute;
        width: 40px;
        top: -62px;
        right: 27%;
        z-index: 2;
    }
    .sec01-chara-bottom {
        display: block;
        position: absolute;
        width: 40px;
        bottom: -15px;
        left: 31%;
        z-index: 2;
    }

    /* --- sec-02 --- */
    .sec-02.sp-only {
        height: 1290px;
    }
    .sec-02.sp-only .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    .sec-02.sp-only .content.books {
        padding: 40px 0 0 0;
    }
    .sec-02.sp-only .content.cafe {
        height: 630px;
        padding: 20px 0 0 0;
    }
    .sec-02.sp-only .sec-ttl {
        font-size: 25px;      
        /* タイトル下の文字の塊（text-area）との間の余白 */
        margin-bottom: 25px; 
    }
    .sec-02.sp-only .heading-area {
        width: 100%;
        text-align: left;
        padding-top: 20px;
        margin-bottom: 5px;
    }
    .sec-02.sp-only img {
        width: 100%; /* タブレットの指定を上書き */
        max-width: 100%; 
        height: auto;
        margin-bottom: 35px;
    }
    .sec-02.sp-only .body-area {
        width: 100%; /* タブレットの 80% を 100% に広げる */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* 文章を左揃えにする */
        box-sizing: border-box;
        margin-top: 0;
    }
    .sec-02.sp-only .body-area p { 
        margin-top: 0;
        margin-bottom: 30px;
        text-align: justify; /* 端をきれいに揃える */
        font-size: 14px;
        line-height: 1.8;    /* 行間をゆったりさせて読みやすく */
    }
    /* 【ボタン】「NEW ARRIVAL」や「MENU」の矢印ボタン */
    .sec-02.sp-only a.btn-common {
        width: 150px;
        height: 40px;
        align-self: flex-end; /* ボタンだけは右下にピタッと寄せる */
        font-size: 14px;
        margin-bottom: 10px;  /* BOOKSとCAFEの間の大きな区切り余白 */
    }
    /* 横棒の設定 */
    .sec-02.sp-only a.btn-common::after {
        height: 1px;       
        bottom: 10px;     
        top: auto;
    }
    /* 先端の折れ曲がり（span） */
    .sec-02.sp-only a.btn-common span {
        bottom: 10px;     
    }
    /* 先端のハネ（＞） */
    .sec-02.sp-only a.btn-common span::before {
        width: 20px;       
        height: 1px;      
        transform: rotate(35deg); 
    }

    /* --- sec-03 --- */
    .sec-03 {
        height: 1000px;
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .sec-03 .wrapper {
        height: 850px;
    }
    .sec-03 .heading-area .sec-ttl {
        font-size: 25px;
        margin-bottom: 30px;
    }
    .sec-03 .content-item {
        width: 100%;
        margin: 0 auto;
    }
    .sec-03 .content-item .activities-card {
        width: 100%;
        height: auto;
        min-height: 160px;
        aspect-ratio: 600 / 340;
        padding: 10px;
        box-sizing: border-box;
        justify-content: space-between;
    }
    .sec-03 .content-item.goods {
        margin-bottom: 0;
    }
    .sec-03 .activities-card.goods {
        margin-top: 30px;
        border-radius: 80px 0 0 0;
    }
    .sec-03 .activities-card.gallery {
        margin-top: 30px;
        border-radius: 0 0 80px 0;
    }
    .sec-03 .content-item .card-title {
        width: 50%;
        padding: 0;
        font-size: 18px;       
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
    }
    .sec-03 .content-item .activities-card img {
        width: 50%; 
        aspect-ratio: 1/1;           
        height: auto;
        object-fit: cover;
    }
    .sec-03 .content-item .text-area {
        width: 100%;
    }
    .sec-03 .content-item .text-area p {
        font-size: 14px;
        line-height: 1.9;
        text-align: justify; 
    }
    .sec-03 .content-item a.btn-common {
        margin-top: 10px;
        margin-left: auto;
        align-self: flex-end;
        display: inline-flex;
        width: 150px;
        height: 40px;
        font-size: 14px;
    }
    .sec-03 .content-item a.btn-common::after {
        height: 1px;
        bottom: 10px;
        top: auto;
    }
    .sec-03 .content-item a.btn-common span {
        bottom: 10px;
    }
    .sec-03 .content-item a.btn-common span::before {
        width: 20px;
        height: 1px;
        transform: rotate(35deg);
    }

    /* --- NEWS --- */
    .sec-news {
    width: 100%;    
    min-height: auto;
    padding: 60px 0 80px;
    background-image: url("../img/sp-news-01.webp");
    }
    /* タイトル */
    .sec-news .heading-area {
        margin-bottom: 25px;
        text-align: left;
    }
    .sec-news .sec-ttl {
        font-size: 25px;
    }
    /* リスト全体 */
    .news-list {
        width: 100%;
    }
    /* 各行 */
    .news-list li a {
        padding: 10px 0;
    }
    /* 下線 */
    .news-list li a {
        border-bottom: 1px dotted rgba(255,255,255,.75);
    }
    /* 日付 */
    .news-list .date {
        width: 85px;
        font-size: 15px;
    }
    /* タイトル */
    .news-list .title {
        font-size: 14px;
        line-height: 1.7;
        margin: 0 0 0 30px;
    }

    /* --- ACCESS --- */
    .sec-access {
        height: 1200px;
        padding: 60px 0 70px;
    }
    .access .heading-area {
        margin-bottom: 55px;
    }
    /* ACCESS */
    .sec-access .sec-ttl {
        font-size: 25px;
    }
    /* 横並び解除 */
    .access-flex {
        display: block;
        margin-top: 0;
    }
    .access-info,
    .access-map {
        width: 100%;
    }
    .access-img {
        margin-bottom: 40px;
    }
    .access-img img {
        width: 100%;
        margin-bottom: 0;
    }
    /* テーブル */
    .info-table {
        font-size: 24px;
    }
    .info-table th {
        font-size: 14px;
        padding: 10px 0;
        vertical-align: middle;
    }
    .info-table td {
        font-size: 14px;
        line-height: 1.9;
        padding: 10px 0;
    }
    /* 郵便番号 */
    .info-table td .postal-code {
        margin-bottom: 4px;
    }
    /* GoogleMap */
    .access-map {
        margin-top: 60px;
        height: 430px;
    }
    .access-map iframe {
        width: 100%;
        height: 100%;
    }

    /* --- フッター --- */
    .footer-pc {
        display: none;
    }
    .site-footer {
        padding: 10px 15px;
    }
    .footer-sp {
        display: block;
        position: relative; /* 擬似要素キャラクターの基準点 */
        box-sizing: border-box;
        /* padding: 10px 0; */
    }
    .footer-sp-middle {
        display: flex;
        justify-content: flex-start; /* 左右に広げず、左詰めに配置 */
        align-items: flex-end;       /* ロゴの下端と、SNSテキストの下端をきれいに揃える */
        gap: 20px;
        margin-bottom: 10px; /* 下のコピーライトエリアとの間隔 */
        position: relative;
    }
    /* ロゴ */
    .footer-sp-middle .footer-logo {
        width: 100px;
        margin: 0; 
        display: flex;     
    }
    .footer-sp-middle .footer-logo img {
        width: 100%;
        height: auto;
    }
    /* SNS */
    .footer-sp-middle .sns-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; /* カンプ通り縦に並べる */
        gap: 10px; /* InstagramとXの上下の間隔 */
        margin-bottom: 8px;
    }
    .footer-sp-middle .sns-links a{
        display: flex;
        align-items: center;
        gap: 14px; /* アイコンと文字の間隔 */
        font-size: 16px;
        text-decoration: none;
    }
    .qr-code-area {
        display: flex;
        top: 0;
        left: 0;
        gap: 60px;
    } 
    .footer-sp-qr {
        display: flex;
        align-items: flex-end;
        gap: 25px;
        margin-bottom: 5px; /* 下の要素（ロゴ・SNS）との間隔 */
    }  
    .footer-sp-qr .qr-img {
        width: 90px;
        height: 90px; /* 縦幅も同じサイズでカッチリ固定して縮み・変形を防ぐ */
        flex-shrink: 0;
        padding: 8px;
        box-sizing: border-box;
        display: flex;
    } 
    .footer-sp-qr .qr-img img {
        width: 100%;
        height: auto;
        display: block;
    } 
    .footer-sp-qr .qr-text{
        text-align: left;
    }
    .footer-sp-qr .qr-ttl {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 12px; /* タイトルと下の文との隙間 */
        line-height: 1.2;
    }
    .footer-sp-qr .qr-sub {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 5px; /* 一番下の文字の余計な余白をゼロに */
    }
    /* コピーライト */
    .footer-sp-info {
        text-align: center;
        position: relative;   
        margin-top: 25px;  
    }
    .footer-sp-info .info-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; /* リンクを縦並びにする */
        gap: 1px; /* プライバシーポリシーと特定商取引法の間隔 */
    }
    .footer-sp-info .info-links li {
        margin-bottom: 0;
    }
    .footer-sp-info .info-links a {   
        font-size: 10px;
        text-decoration: none;
    }
    .footer-sp-info .copyright {
        margin-top: 8px;
        font-size: 8px;
    }
    .site-footer::after {
        display: block; /* PC版で消しているのをここで復活 */
        width: 160px;
        height: 160px;
        right: -13px;
        bottom: -25px;
        z-index: 0;     /* 文字の後ろに回り込ませる */
        pointer-events: none; /* キャラがリンク選択の邪魔をしないようにする */
    }   
}