@charset "UTF-8";
/* ----変数定義 */

:root {
    /* カラー */
    --color-black: #211c12;
    --color-white: #fff;
    --color-gray: #959595;
    --color-bean: #6f4e37; /* 豆の色 */
    --space-section: 60px;
    --duration: 0.4s;
}

/* ーーーーーーーーーベースーーーーーーーーー */
body {
    font-family: "Noto Sans JP", sans-serif;
    color:var(--color-black);
    line-height: 1.8; 
    letter-spacing: 0.05em; 
    margin: 0;
}

html, body {
    height: 100vh;  
    overflow: hidden; 
}



/* ------------- ローディング画面全体 -------------- */
#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #1a1a1a;; 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hourglass-wrap {
    text-align: center;
    position: relative;
    width: 200px;
    height: 250px;
}

/* ------------------ コーヒー豆の形（1粒） ------------- */
.bean, .stacked-bean {
    display: block;
    width: 14px;
    height: 20px;
    background-color: var(--color-bean); 
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    position: relative;
    margin: 0 auto;
}
/* 豆の真ん中の筋 */
.bean::after, .stacked-bean::after {
    content: "";
    position: absolute;
    top: 10%; left: 50%;
    width: 1px; height: 80%;
    background-color: rgba(0,0,0,0.2);
    transform: translateX(-50%) rotate(5deg);
}

/* ----------- 落ちてくる豆のアニメーション ------------- */
.bean {
    animation: bean-drop 2.0s infinite cubic-bezier(0.5, 0, 0.7, 0.5);
}

@keyframes bean-drop {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(75px) rotate(20deg); opacity: 0; }
}

/* ------------- 積み重なっている豆 -------------- */
.bean-stack-area {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

.stacked-bean {
    opacity: 0.6;
    transform: scale(0.9);
}
.stacked-bean:nth-child(2) { transform: rotate(-20deg) translateY(-5px); }
.stacked-bean:nth-child(3) { transform: rotate(15deg) translateY(-2px); }

/* --- メッセージテキスト --- */
.loader-txt {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    opacity: 0;
    animation: fade-in 2s ease-out forwards 1s;
}
.loader-txt img { width: 80px; margin: 0 auto; }

@keyframes fade-in { to { opacity: 1; } }


.wrapper {
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 40px; 
    width: 100%;
    box-sizing: border-box; 
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
}

li { list-style: none; }
a { text-decoration: none; color: inherit; }

a { text-decoration: none; color: inherit; transition: var(--duration); }
img { border-radius: 2px; }

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: transparent;
}


/* ボタン */
.btn-view-more,
.btn-01,
.btn-02,
.btn-03,
.btn-04,
.btn-05 {
    display: block;
    width: 220px;  
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--color-black); 
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
    z-index: 1;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}
.btn-view-more{
    margin-right: 0;  
    margin-left: auto; 
}

/* 背景スライドパーツ（共通） */
.btn-view-more::before, .btn-01::before, .btn-02::before, 
.btn-03::before, .btn-04::before, .btn-05::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    transition: left 0.4s ease;
    z-index: -1;
}

/* ホバー時の挙動（共通） */
.btn-view-more:hover, .btn-01:hover, .btn-02:hover, 
.btn-03:hover, .btn-04:hover, .btn-05:hover {
    color: var(--color-white);
}

.btn-view-more:hover::before, .btn-01:hover::before, .btn-02:hover::before, 
.btn-03:hover::before, .btn-04:hover::before, .btn-05:hover::before {
    left: 0;
}

/* 矢印（共通：アイコンだけの03以外につける） */
.btn-view-more::after, .btn-01::after, .btn-02::after, .btn-04::after, .btn-05::after {
    content: "→";
    position: relative;
    margin-left: 10px;
    transition: margin-left 0.4s;
}
.btn-view-more:hover::after, .btn-01:hover::after, .btn-02:hover::after, 
.btn-04:hover::after, .btn-05:hover::after {
    margin-left: 20px;
}

/* 各ボタン固有の「位置」と「余白」の設定 */
.btn-01, .btn-02 {
    margin-left: auto;
    margin-right: 0;
}

.btn-01 {
    margin-bottom: 60px; 
}

.btn-04, .btn-05 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

/* Instagramボタン */
.btn-03 {
    border: none;
    border-radius: 0;
    width: 60px;  
    background-color: transparent;
    font-size: 40px;
    color: var(--color-white);
    padding-bottom: var(--space-section);
}
.btn-03::after {
    display: none 
} 

/* ホバー時の背景色） */
.btn-03::before {
    display: none; /* ホバーで背景がスライドしてくる演出も消す場合 */
}

/* ホバー時にアイコンの色だけ変える設定（例：黒から灰色へ） */
.btn-03:hover {
    color: var(--color-gray) 
    /* 背景スライドを消した場合は、文字色だけ変わるようにすると綺麗です */
}

/* --- ボタンのデザイン（統一感を持たせる） --- */
.btn-04 {
    display: block; 
    margin: 40px auto 0; 
    width: 240px;
    height: 55px;
    line-height: 55px;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-align: center;
    transition: var(--duration);
}



.btn-05 {
    display: inline-block;
    width: 220px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    margin: 20px auto;
    transition: var(--duration);
}

.btn-04:hover, .btn-05:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}


/* ----------------メイン ------------------------------------------*/
.layout-container {
    display: grid;
    grid-template-columns: 40% 1fr 250px;
    height: 100vh; /* 画面の高さいっぱい */
    width: 100vw;
    overflow: hidden; /* コンテナからはみ出すスクロールを禁止 */
}


.left-area {
    position: relative;
    background-color: var(--color-black);
    overflow: hidden;
}


video {
    max-width: 100%;
    height: 100%;
    display: block; /* 下の隙間を消す */
}
.main-img , .menu-img , .news-img , .info-img, .parking-img {
    border-radius: 0;
}
/* ーーーーーーーーーーーーーー波型のエリア ーーーーーーーーーー*/
.wave-box {
    background-color: transparent; /* 白背景を削除 */
    height: 200px;
    line-height: 0;
    position: relative;
    overflow: hidden;
    z-index: 2; /* canvasの上 */
}

/* Canvas水面は hero-water-wrapper内に移動したため削除 */

.wave-bg {
    width: 100%;
    background-size: cover; 
}

/* ーーーーーーードリップ水滴のスタイルーーーーーーー */
.drip-container {
    position: absolute;
    top: 0; /* hero-water-wrapperの最上部から */
    left: 0;
    width: 100%;
    height: 70vh; /* 水面までの距離 */
    pointer-events: none;
    z-index: 100; /* canvasやsec-topより確実に上 */
}

.coffee-drop {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--color-black);
    /* ティアドロップ（涙型）の形 - 上が尖る */
    border-radius: 50% 0 50% 50%;
    /* 先に細長く変形してから回転 */
    transform: scaleX(0.7) scaleY(1.2) rotate(-45deg);
    opacity: 0;
    animation: drip-fall 3.5s ease-in forwards;
}

/* 水滴が落ちるアニメーション */
@keyframes drip-fall {
    0% {
        opacity: 1;
        transform: translateY(0) scaleX(0.7) scaleY(1.2) rotate(-45deg);
    }
    85% {
        opacity: 1;
        transform: translateY(75vh) scaleX(0.7) scaleY(1.2) rotate(-45deg);
    }
    92% {
        opacity: 0.8;
        transform: translateY(75vh) scaleX(0.7) scaleY(1.2) rotate(-45deg);
    }
    100% {
        opacity: 0;
        transform: translateY(75vh) scaleX(0.7) scaleY(1.2) rotate(-45deg);
    }
}

/* ーーーーーーーーーーーー中央セクションーーーーーーーーーーーー */
.center-area {
    height: 100vh;
    overflow-y: auto; 
    overflow-x: hidden;
    background-color: var(--color-white);
}
/* ーーーーーーヒーローセクション+水面アニメーションのラッパーーーーーー */
.hero-water-wrapper {
    position: relative;
    height: 100vh; /* sec-top + wave-box の合計 */
}

/* Canvas水面（全体の背景） */
#waterCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1; /* 背景として */
}

.sec-top {
    position: relative;
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent; 
    color: var(--color-black);
    z-index: 2; /* canvasの上 */
}
.scrolldown {
    position: fixed;
    bottom: 180px;
    right: 290px; 
    z-index: 100;
    text-align: center;
}

.scrolldown span {
    display: block;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-bean);
    margin-bottom: 10px;
}

.scrolldown::after {
    content: ""; display: block; width: 1px; height: 60px;
    background: rgba(0,0,0,0.1); margin: 0 auto;
}

.scrolldown::before {
    content: ""; position: absolute; bottom: 0; left: 50%;
    width: 1px; height: 60px; background: var(--color-bean);
    animation: scroll-line 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    46% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}




/* --- セクション全体の背景--- */
.about-section {
    padding: 120px 0;
    background-color: var(--color-black); 
    overflow: hidden;
}

/* --- 重なりレイアウトのベース --- */
.overlap-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* --- 写真部分の設定 --- */
.about-img-part {
    flex: 0 0 65%; 
    position: relative;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.5s ease-out;
}

.about-img-part img {
    width: 100%;
    height: auto;
    filter: brightness(0.9);
    border-radius: 2px;
}

/* --- 文字フレームの設定 --- */
.overlap-container .policy-frame-box {
    position: absolute;
    right: 0;
    width: 45%;
    z-index: 2;
    background-color: #ffffff;
    margin: 0;
    padding: 50px 40px;
    box-shadow: 20px 20px 0 rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.5s ease-out 0.3s; /* 写真より少し遅れて動く */
}

/* ーー私たちの想いからのカードの重なり合いなどーー*/
.about-section:nth-of-type(even) .overlap-container {
    flex-direction: row-reverse;
}
.about-section:nth-of-type(even) .policy-frame-box {
    right: auto;
    left: 0; 
    transform: translateX(-50px);
}
.about-section:nth-of-type(even) .about-img-part {
    transform: translateX(50px);
}

.f-up.fadeup .about-img-part,
.f-up.fadeup .policy-frame-box {
    opacity: 1;
    transform: translateX(0); 
}

/* --- 文字周りの調整 --- */

.v-main-txt {
    text-align: left;
    color: #444;
}


/* ラベル (STATEMENT) */
.label {
    font-size: 13px;
    color: var(--color-gray);
    letter-spacing: 5px;
    margin-bottom: 10px; 
}



/* 本文 */
.v-main-txt {
    font-size: 16px;
    line-height: 2.0; 
    text-align: left;
}


.v-main-txt p {
    margin-bottom: 20px;
}


/* トップメニューのセクション */

.txt {
    font-size: 50px;
}
.top-title{
    text-align: center;
    padding: var(--space-section);
    color: var(--color-black);
}
.top-title h1 {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 20px;
}
.logo-02 img {
    width: 300px;
    height: auto;
    margin: 0; 
}

.card-list {
    background-color: var(--color-white); 
    padding: 80px 40px;
}

.card {
    padding-bottom: var(--space-section);
    color: var(--color-black);

}
.card img {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0; 
    height: 500px;
    object-fit: cover; 
    padding-bottom: var(--space-section);
}

.f-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out; 
}

.f-up.fadeup {
    opacity: 1;
    transform: translateY(0);
}
.card-ttl {
    font-size: 30px;
    line-height: 1.7;
    padding-bottom: 15px;
}
.card-txt {
    padding-bottom: 30px;
}
/* ーーーーーーーーーーーーーーーーーーーーーMENU ーーーーーーーーーーーーーーーーーーー*/

.menu-intro-box {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px;
    position: relative;
}

/* ーーーーーーーー中央の縦ラインーーーーーー */
.menu-intro-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background-color: var(--color-bean); 
}

.menu-intro-box h3 {
    font-size: 22px;
    letter-spacing: 0.15em;
    color: var(--color-black);
    font-weight: 500;
}

.menu-intro-box .time {
    font-size: 16px;
    color: var(--color-bean);
    margin-left: 10px;
    font-weight: normal;
}

/* ---  サラダ・ボリューム案内：額縁フレーム --- */
.menu-info-container {
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

.policy-frame-box {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0; 
    text-align: center;
    color: var(--color-black);
}

/* 内枠（二重線のあしらい） */
.policy-frame-box::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #f2f2f2;
    pointer-events: none;
}

.policy-label {
    display: block;
    font-size: 11px;
    color: var(--color-bean);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 25px;
}

.policy-frame-box h4 {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.policy-txt {
    font-size: 15px;
    color: #333;
    line-height: 2.4;
    margin-bottom: 30px;
    position: relative;
    z-index: 1; 
}

/* ------大盛り価格などの強調--------*/
.policy-txt span {
    font-weight: bold;
    color: var(--color-black);
    /* 重要な部分にマーカー */
    background: linear-gradient(transparent 70%, #fdf2e2 70%);
}

.policy-option {
    font-size: 13px;
    color: var(--color-gray);
    border-top: 1px solid #eee;
    display: inline-block;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}


.sec-01 , .sec-03 , .news-01 , .parking-section,
.sec-02 , .sec-04 , .sec-access{
    background-color: var(--color-white);
    color: var(--color-black);
    padding-bottom: var(--space-section);
}

.menu-ttl-02 {
    font-size: 30px;
    padding: var(--space-section);
    text-align: center;
}
.menu-list {
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 30px;
}
.menu-item {
    width: calc(50% - 15px);
    list-style: none;
    text-align: center;
    padding: 0 20px; 
    box-sizing: border-box;
    margin-bottom: 40px;
}

.menu-item img {
    width: 80%;
    aspect-ratio: 4 / 3;
    object-fit: cover; 
    padding-bottom: var(--space-unit);
    vertical-align: bottom;
}
.menu-box h3{
    font-size: 20px;
    font-weight: bold;
    padding-bottom: var(--space-unit);
}

.accordion-menu {
    margin-top: 40px;
    width: 100%;
    max-width: 700px; 
    margin-left: auto;
    margin-right: auto;
}


.accordion-content {
    display: none; 
}

.accordion-header {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 10px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid currentColor; 
}

/* デフォルト矢印消去（Safari用） */
.accordion-header::-webkit-details-marker {
    display: none;
}

/* 矢印アイコンの回転 */
.accordion-header .icon {
    transition: transform 0.4s;
}
.accordion-menu.open .accordion-header .icon {
    transform: rotate(180deg);
}

/* --- メニューリスト（点線と横並び） --- */
.menu-sub-list {
    margin-top: 20px;
}

.list-item {
    /* メニュー名と価格を左右に配置 */
    display: flex;
    justify-content: space-between;
    align-items: baseline; 
    padding: 15px 10px; 
    border-bottom: 1px dotted currentColor;
}

.list-item dt {
    font-weight: normal;
}
.list-item dd {
    font-weight: bold;
}

/* ーーーーNEWSセクションーーー */
.news-01 {
    padding: 100px 0;
    background-color: var(--color-white);
    color: var(--color-black);
}

/* --- タイトルエリア（MENUと統一） --- */
.sp-news-ttl {
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 80px;
    position: relative;
    padding-top: 40px;
}

/* タイトル上の縦ライン演出 */
.sp-news-ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background-color: var(--color-bean);
}

/* --- ニュースリストのコンテナ --- */
.news-sec01 {
    width: 95%;
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

/*  日付（dt）のデザイン  */
.news-list dt {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--color-bean);
    font-weight: 500;
    padding-top: 30px;
    border-top: 1px solid #eee; 
    text-align: center;
}

/* 最初の項目だけは上の線を消す */
.news-list dt:first-of-type {
    border-top: none;
}

/* 内容（dd）のデザイン  */
.news-list dd {
    padding-bottom: 40px;
    margin-bottom: 0;
    text-align: center;
}

.news-list dd a {
    display: block;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 8px;
    font-weight: 500;
    transition: var(--duration);
}

/* ホバー時に文字を少し右にずらす */
.news-list dd a:hover {
    color: var(--color-bean);
    padding-left: 10px;
}

/* 補足説明（pタグ） */
.news-list dd p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.8;
}


/* TOPの地図とアドレスメーションエリア */
.shop-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

.shop-layout {
    display: flex;
    align-items: stretch; 
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 左側：マップのフレーム */
.map-frame-box {
    flex: 1.2;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px; 
    line-height: 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.02);
}

.map-frame-box iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    filter: grayscale(0.3); /* 地図の色を抑える */
}

/* 右側のshopのデザイン */
.info-card-box {
    flex: 0.8;
    margin: 0 ; /* ABOUTセクションの中央寄せを上書き */
    padding: 50px 40px ;
    text-align: left ; /* 文字を左揃えに */
}
/* 内枠の設定は .policy-frame-box::after から自動で引き継がれます */

.shop-address {
    font-style: normal;
    margin-bottom: 35px;
}

.shop-address .zip {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--color-bean);
}

.shop-address .pref {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 10px;
}

.shop-address .tel {
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 2px;
}

.shop-details-list {
    margin-bottom: 40px;
}

.shop-details-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-details-list i {
    color: var(--color-bean);
    width: 18px;
    text-align: center;
}

.shop-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-btns .btn-01, 
.shop-btns .btn-05 {
    width: 100%;
    margin: 0; /* センター寄せ解除 */
}

/* ーーーーーーINFOセクションのGoogleマップと駐車場のマップのこと ーーーーーーーーーーー*/

.info-sec {
    padding: 120px 0; 
    background-color: var(--color-white);
    color: var(--color-black);
}

/*  地図の囲み */
.map-img02 {
    margin: 0 auto 40px;
    max-width: 900px;
    padding: 12px; 
    border: 1px solid #e0e0e0; 
    background-color: #fff;
    line-height: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
}

/* Googleマップの色を落ち着かせる */
.map-img02 iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(0.4) contrast(0.9); /* 地図を少し白黒にして馴染ませる */
}



/* ーーーーーーーーーー駐車場の地図ーーーーーーーーーーーー */
.parking-warm {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: #f8f6f3;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e8ddd0;
}

.parking-warm .row {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.parking-warm .space {
    flex: 1;
    height: 58px;
    border: 2px dashed #d4c4b0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    background: white;
}

.parking-warm .available {
    background: #6f4e37;
    color: white;
    border: 2px solid #6f4e37;
    box-shadow: 0 2px 8px rgba(111, 78, 55, 0.2);
}

.parking-warm .unavailable {
    background: #fafaf8;
    color: #c4b5a0;
    border-style: dashed;
}

.parking-warm .unavailable::before {
    content: "ー";
    font-size: 18px;
    color: #d4c4b0;
}

.parking-warm .label {
    position: absolute;
    top: 6px;
    left: 8px;
    font-size: 12px;
    font-weight: bold;
}

.parking-warm .entrance {
    margin-top: -20px;
    text-align: center;
    font-size: 12px;
    color: #6f4e37;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.parking-warm .shop-arrow {
    text-align: right;
    margin-top: 20px;
    font-size: 14px;
    color: #6f4e37;
    font-weight: 500;
}

/*  店舗情報カードのデザイン */
.address-01 {
    margin: 80px auto 0;
    max-width: 640px;
    padding: 60px 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    position: relative; /* 内枠を作るために必要 */
    text-align: center;
}

/* 住所の文字デザイン */
.address-01 address {
    font-style: normal;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

/* --- 店舗情報カードの内枠（ABOUTと共通の二重線）を追加 --- */
.address-01::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #f2f2f2; /* ごく薄い内側の枠線 */
    pointer-events: none;
}


.sec-ttl , 
.design-title {
    position: relative;
    padding-top: 100px;
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.15em;
    color: var(--color-black);
    margin-bottom: 60px;
}

.sec-ttl::before ,
.design-title::before {
        content: "";
        position: absolute;
        top: 45px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 35px;
        background-color: var(--color-bean);
    }




/* --------------右エリアナビゲーション------------*/
.right-area {
    height: 100vh;
    padding: 60px 40px;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    border-left: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

/* ナビゲーションリスト */
.nav-list {
    margin-top: 40px;
}

.nav-list li {
    margin-bottom: 25px; 
    position: relative;
}

.nav-list a {
    display: block;
    font-size: 22px; 
    letter-spacing: 0.3em; 
    color: #888;
    text-transform: uppercase;
    transition: var(--duration);
    padding-left: 0;
}

/* ホバー時豆の色に変わり、少し右にスライドする */
.nav-list a:hover {
    color: var(--color-bean);
    padding-left: 10px;
}

/* 細い縦）*/
.nav-list a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 1px;
    height: 0;
    background-color: var(--color-bean);
    transition: var(--duration);
}

.nav-list a:hover::before {
    height: 15px;
    top: calc(50% - 7px);
}

/* --- 右下アイテム（SNS & Page Top） --- */
.right-bottom-items {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Instagramボタン：シンプルに */
.btn-03 {
    font-size: 24px;
    color: #ccc;
    transition: var(--duration);
}

.btn-03:hover {
    color: var(--color-bean);
    transform: translateY(-3px);
}

.page-top {
    position: relative;
    width: 100px;
    transition: var(--duration);
}

.page-top::before {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #ccc;
    text-transform: uppercase;
}

.page-top img {
    width: 100%;
    height: auto;
    opacity: 0.4;
    transition: var(--duration);
    filter: sepia(1) hue-rotate(340deg) brightness(0.8); 
}

.page-top:hover img {
    opacity: 1;
    transform: rotate(10deg); 
}

.news-detail-wrapper {
    padding: 100px 5% 50px; 
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-black);
}

.post-date {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
    font-family: 'Noto Sans JP', sans-serif;
}


.post-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.3); 
}

.post-thumbnail {
    margin-bottom: 30px;
}
.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}


.article-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.back-link {
    margin-top: 60px;
    text-align: center;
}
.btn-back {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid var(--color-bean);
    color: var(--color-gray);
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}
.btn-back:hover {
    background:var(--color-black);
    color: var(--color-white);
}



/* ---------------------コピーライト ---------------*/
footer {
    background-color: var(--color-black); 
    padding: 20px 0 20px;
}

.copyright {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-align: center;
    color: var(--color-gray);
    opacity: 0.6;
}



/* -----------------------------レシポンシブーーーーーーーーーー */
/* タブレットはここから */
@media screen and (max-width:1199px){
    html, body {
        height: auto;
        overflow: visible; 
    }
    .layout-container {
        display: block; 
        height: auto; 
    }
    .left-area {
        display: none;
    }
    .center-area {
        height: auto;
        overflow: visible; 
    }
    .scrolldown {
    position: fixed;
    right: 20px;
    bottom: 180px; 
    z-index: 999;  
    display: block 
    }
    .txt {
        font-size: 30px;
    }
    .logo-01 img {
        width: 120px; 
    }
    .top-title h1 {
        gap: 10px;
    }
    /* 本文横書き */
    .v-container {
        width: 100%;
        display: block;
        padding: 0 20px;
    }

    /* 3. 本文の調整 */
    .v-main-txt {
        line-height: 1.8;            /* 横書きで読みやすい行間に（縦書きの2.8は広すぎるため） */
        font-size: 16px;
        letter-spacing: 0.05em;      /* 横書き用の文字間隔に */
    }     

    .v-main-txt p {
        margin-left: 0;              /* 縦書き用の左余白を消す */
        margin-bottom: 15px;         /* 段落の下に隙間を作る */
    }
    .sec-top {
        height: calc(100vh - 150px);
    }
    .wave-box {
        height: 150px;
    }

    .overlap-container {
        display: block;
        min-height: auto;
    }
    .about-img-part, .overlap-container .policy-frame-box {
        width: 100%;
        position: relative;
        transform: translateY(30px); /* 上下運動に変える */
        right: auto;
        left: auto;
    }
    .overlap-container .policy-frame-box {
        margin-top: -30px; /* スマホでも少しだけ重ねるとおしゃれ */
    }


/* --- 写真部分の設定 --- */

.about-img-part img {
    width: 100%;
    height: auto;
    filter: brightness(0.8); /* 文字を読みやすくするため少し暗めに */
}

.about-section {
    padding: 60px 0;
}
.overlap-container {
    display: block;
    min-height: auto;
}
.about-img-part {
    width: 100%;
    margin-bottom: -30px; /* スマホでも少しだけ重ねる */
    transform: translateY(30px);
}
.overlap-container .policy-frame-box {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 30px 20px;
    transform: translateY(30px);
}
.about-section:nth-of-type(even) .about-img-part,
.about-section:nth-of-type(even) .policy-frame-box {
    transform: translateY(30px);
}

.card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    }
    .card-list {
    padding: 40px 20px; /* カード全体の横余白を少し詰めて画像を見やすく */
    }

    /* --- マップエリアの縦並び --- */
    .shop-layout {
    flex-direction: column;
    }
    .map-frame-box iframe {
    min-height: 300px;
    }
    .info-card-box {
    width: 100% ;
    }

    .btn-01, .btn-02 {
    margin: 0 auto 20px auto; 
    width: 60%;
    }

/* ーーーーーーメニューのSP設定ーーーーーーーー*/
.menu-item {
    width: 100%; /* スマホでは幅いっぱいに */
}
.list-01 {
    display: block;
    margin: 0 auto;
    width: 50%;
}
/* -------------ニュース ------------*/
/* タイトル */
.sp-news-ttl {
    font-size: 24px;
    margin-bottom: 40px;
    padding-top: 40px; 
}

/* リストの日付 (dt) */
.news-list dt {
    text-align: center; 
    padding-top: 25px;
    font-size: 14px;
    border-top: 1px solid #eee; /* 区切り線 */
    margin-bottom: 10px;
}

/* 最初のdtの線は消す */
.news-list dt:first-of-type {
    border-top: none;
}

/* リストの内容 (dd) */
.news-list dd {
    text-align: center;
    padding-bottom: 40px;  /* 次の記事までの余白 */
    padding-left: 0;
}
/* ーーーーーーインフォメーション ーーーーーーーーーー*/

.parking-warm .label {
    top: 4px;
    left: 3px;
    font-size: 10px;
}

.sec-access {
    padding:0 40px 0 40px;
    box-sizing: border-box;
}



    /* --- 右エリア　ナビゲーションをハンバーガーメニュー化 --- */
    .right-area {
    position: fixed;
    top: 0;
    right: -100%;       /* 最初は隠しておく */
    width: 80%;         /* メニューの幅（少し余白を残すとオシャレ） */
    height: 100vh;
    background-color: var(--color-black) ;
    padding: 100px 40px ;
    display: flex ;
    flex-direction: column;
    justify-content: center; /* 縦の中央に寄せる */
    align-items: center;     /* 横の中央に寄せる */
    border-left: none ;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* スルスルと滑らかな動き */
    z-index: 1000;
    }
    /* クラス「active」がついたら画面に出てくる */
    .right-area.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
.menu {
    /* ▼ buttonタグのデフォルトスタイルを消す（重要） */
    background: transparent; /* 背景透明 */
    border: none;            /* 枠線なし */
    padding: 0;
    cursor: pointer;
    appearance: none;        /* スマホ特有のボタン装飾を消す */
    
    /* ▼ 位置とサイズの指定（前回のまま） */
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 25px;
    z-index: 1000;
}

/* 中の3本線の設定 */
.menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-bean);
    position: absolute;
    transition: 0.4s;
    border-radius: 2px;
}

/* 3本線の位置 */
.menu span:nth-child(1) { top: 0; }
.menu span:nth-child(2) { top: 11px; }
.menu span:nth-child(3) { bottom: 0; }

/* アクティブ(×印)時のアニメーション */
.menu.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
    background-color:var(--color-white); /* 背景が濃い色になるなら白にする */
}
.menu.active span:nth-child(2) {
    opacity: 0;
}
.menu.active span:nth-child(3) {
    bottom: 12px;
    transform: rotate(-45deg);
    background-color:var(--color-white);
}

.nav-list {
    border-left: none ;
    padding-left: 0 ;
    margin-top: 0 ;
    margin-bottom: 60px; /* 下のアイテムとの間隔 */
    width: 100%;
}

.nav-list li {
    margin-bottom: 35px;
    text-align: center;
}

.nav-list a {
    font-size: 22px ; /* タップしやすい大きさ */
    color: var(--color-bean) ; /* 豆の色：#6f4e37 */
    letter-spacing: 0.3em;
    font-weight: 500;
    display: inline-block;
}

/* タップ（ホバー）した時だけ白く光る */
.nav-list a:hover, 
.nav-list a:active {
    color: var(--color-white) ;
    padding-left: 0 ; /* 横にずれる演出をスマホではカット */
}

/* PC版の縦線を消す */
.nav-list a::before {
    display: none ;
}

/* 3. 右下のSNSとPage Topの配置調整 */
.right-bottom-items {
    flex-direction: row ; /* 横並びにする */
    gap: 40px;
    justify-content: center;
}

.btn-03 {
    font-size: 32px ; /* アイコンを少し大きく */
    color: var(--color-bean) ;
    margin: 0;
}

/* Page Top（ロゴ）のデザイン：黒背景に合わせた調整 */
.page-top {
    width: 80px !important; /* 少し小さめに調整 */
}

.page-top::before {
    color: var(--color-bean) ;
    font-size: 10px;
}

.page-top img {
    opacity: 0.8 !important;
    /* 白いロゴを茶色っぽくアンティークな感じに加工 */
    filter: grayscale(0) sepia(1) brightness(0.8) ;
}


    /* --- フッター調整 --- */
    .copyright {
        position: relative;
        z-index: 1;
    }
}

@media screen and (max-width:767px){ 
.wrapper {
        padding: 0 20px;   /* スマホでは余白を少し狭くして読みやすくする */
    }
    .scrolldown {
        right: 20px; /* スマホでは少し端に寄せる */
        bottom: 140px;
    }
    .news-list dt{
        text-align: center;
    }
    .card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .about-section {
        padding: 60px 0px;
    }
    .sec-top {
        height: calc(100vh - 120px);
    } 
    .wave-box {
        height: 120px;
    }
    .v-container {
        height: auto;                /* 高さを自動に */
        width: 100%;
    }

    .v-main-txt {
        font-size: 15px;
        line-height: 1.8;            /* 横書きに適した行間に */
    }

    .menu-intro-box {
        margin-bottom: 50px;
    }
    .policy-frame-box {
        padding: 40px 20px;
    }
    .policy-txt {
        font-size: 14px;
        line-height: 2;
    }
/* ニュースセクション */
 /* コンテンツの左右に余白を作る */
    .wrapper {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    }

    .center-area {
    padding: 0;
    }

    /* セクション全体の余白 */
    .news-sec01 {
        padding:0 20px;
    }

    /* タイトル */
    .sp-news-ttl {
        font-size: 24px;       /* 文字サイズを調整 */
        margin-bottom: 40px;   /* 下の余白 */
        padding-top: 40px;        /* 調整 */
    }
    
    /* --- リストの日付 (dt) --- */
    .news-list dt {
        text-align: center;    /* 日付は中央揃えで見出しっぽく */
        font-size: 13px;
        color: var(--color-bean);
        padding-top: 30px;     /* 上の余白 */
        margin-bottom: 15px;   /* 本文との間隔 */
        border-top: 1px dotted #ccc; /* 点線で区切る */
    }

    /* --- リストの内容 (dd) --- */
    .news-list dd {
        text-align: justify;   /* 本文は左揃え（または両端揃え）で読みやすく */
        text-align-last: center; /* 短い行（タイトルなど）は中央に寄せたい場合 */
        /* ※もし完全に左寄せが良ければ text-align: left; にしてください */
        
        padding-bottom: 30px;
        font-size: 15px;
        line-height: 1.8;
    }

    /* リンクテキスト */
    .news-list dd a {
        display: block;        /* タップしやすいようにブロック要素化 */
        padding: 10px;         /* タップ領域を広げる */
    }
    
    /* 画像のキャプション（・氷コーヒーなど） */
    .news-list dd p {
        text-align: center;
        font-size: 13px;
        margin-top: 5px;
    }


/* shop info */
.map-img02 iframe {
        height: 300px; 
}
    .address-01 { 
        padding: 40px 20px; 
        margin: 60px 0 ;
    }
    .address-01 address { 
        font-size: 16px;
    }
    
    .right-area {
        width: 100%; /* スマホでは全画面表示 */
    }
    .nav-list a {
        font-size: 20px !important;
    }
    .map-img02 {
        width: 100%; /* スマホでは画面端まで広く使う */
        margin-bottom: 30px;
    }
    .sec-access {
        padding:0
    }
/* ニュースの詳細のCSS */
    .news-detail-wrapper {
        padding-top: 80px;
    }
    .post-title {
        font-size: 20px;
    }

}