@charset "UTF-8";

/* =========================================
   Base & Variables
========================================= */
:root {
    --color-primary: #5a4b3d;
    /* 木の温もり・コーヒー（テキストメイン色） */
    --color-accent: #7fb069;
    /* 植物の緑（アクセント） */
    --color-bg-light: #ffffff;
    /* 白基調 */
    --color-bg-tint: #fefcf8;
    /* ほんのり温かみのある白 */
    --color-bg-wood: #f1ebd9;
    /* 薄い木目調の代替色 */
    --color-border: #e0d8c8;

    --font-heading: 'Kiwi Maru', serif;
    --font-body: 'M PLUS Rounded 1c', sans-serif;

    --max-width: 1000px;
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================
   Layout & Components
========================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: var(--color-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
    opacity: 0.8;
}

.bg-light-wood {
    background-color: var(--color-bg-wood);
}

.bg-green-tint {
    background-color: #f6fcf8;
}

/* =========================================
   Header
========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 0px;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.5rem;
}

.global-nav ul {
    display: flex;
    gap: 25px;
}

.global-nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

.global-nav a:hover {
    color: var(--color-accent);
}

.has-submenu .submenu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 10px;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 101;
}

.has-submenu:hover .submenu {
    display: block;
}

.has-submenu {
    position: relative;
}

.submenu li {
    margin-bottom: 8px;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu a {
    font-size: 0.85rem;
    color: #666;
    display: block;
    padding: 5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    /* Header offset */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    /* 上部を一定量クロップしつつ、ワイド画面でも上の顔が切れにくいように設定 */
}

.hero::after {
    display: none;
}

/* =========================================
   Catchcopy Section (Moved out from Hero)
========================================= */
.catchcopy-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -140px;
    /* 親のAbout paddingが80pxあるため、-140pxで上部へ60px分はみ出させる */
    margin-bottom: 60px;
    /* 下にあるAboutコンテンツとの間隔 */
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.25);
    /* 透過率をさらに上げて透明感を強調 */
    backdrop-filter: blur(12px);
    /* しっかりぼかしを入れて高級感のあるグラスモーフィズムに */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    /* 枠線を少し明るくしてガラス感を強調 */
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
}

.transparent-hero {
    background: transparent;
    box-shadow: none;
    padding: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--color-primary);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    /* すりガラス上に合わせ白シャドウをやや調整 */
}

.hero-subtitle-en {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.9);
}

.hero-character-img {
    max-width: 250px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    /* キャラ背景が透過の場合に備えて白を敷く */
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 0px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 60px;
        /* PC設定より少し詰め、ヘッダー直下からの調整 */
        flex-direction: column;
        justify-content: flex-start;
        background: linear-gradient(135deg, #fefcf8 0%, #f1ebd9 100%);
    }

    .video-bg {
        position: relative;
        width: 100%;
        height: 80vw;
        /* 縦の表示領域を広げてネコの顔が切れないようにする */
    }

    .video-bg video {
        object-fit: cover;
        object-position: center top;
        /* 頭が隠れないよう上部を基点にする */
    }

    .hero::after {
        display: none;
    }

    .catchcopy-wrapper {
        margin-top: -100px;
        /* スマホ用：親のpaddingが60pxのため、-100pxで40px分はみ出させる */
        margin-bottom: 40px;
    }

    .hero-content {
        position: relative;
        padding: 20px 20px 25px;
        width: 85%;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.7);
    }

    .hero-title {
        font-size: 2.5rem;
        /* スマホ画面に合わせたサイズ縮小 */
    }

    .hero-subtitle-en {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}


/* =========================================
   About
========================================= */
.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}



/* =========================================
   News & Campaign
========================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.news-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(90, 75, 61, 0.08);
    position: relative;
    border-top: 4px solid var(--color-border);
}

.news-card.highlight {
    border-top-color: var(--color-accent);
}

.news-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.news-badge.new {
    background: var(--color-accent);
}

.news-card.ended {
    opacity: 0.65;
    border-top-color: #ccc;
}

.news-badge.ended-badge {
    background: #999;
}

.news-content h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.news-content .date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

/* =========================================
   Menu
========================================= */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--color-border);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.menu-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* モーニング限定メニュー特別装飾 */
.menu-item-card.morning-special {
    border: 3px solid #ff914d;
    box-shadow: 0 6px 15px rgba(255, 145, 77, 0.2);
}

.menu-item-card.morning-special:hover {
    box-shadow: 0 8px 20px rgba(255, 145, 77, 0.3);
}

.morning-badge {
    position: absolute;
    top: 15px;
    left: -8px;
    background: #ff914d;
    color: #fff;
    padding: 6px 16px;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
    letter-spacing: 1px;
}

.morning-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #cc6d35 transparent transparent transparent;
}

.morning-name {
    color: #d16b2e !important;
}

.menu-item-card:hover {
    transform: translateY(-5px);
}

.menu-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #eee;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-img:hover {
    transform: scale(1.05);
}

.menu-info {
    padding: 20px;
}

.menu-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.menu-price {
    font-weight: bold;
    color: var(--color-accent);
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.menu-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.menu-notice {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
}

.menu-notice.highlight-notice {
    background-color: #fff9f2;
    border: 2px solid #eab88b;
    color: #c95c00;
    font-size: 1.05rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 92, 0, 0.08);
}

/* =========================================
   Access
========================================= */
.info-wrapper {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.info-details {
    flex: 1;
}

.info-map {
    flex: 2;
    /* 地図の領域をより広く確保 */
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.info-table th {
    text-align: left;
    width: 100px;
    padding: 12px 0;
    border-bottom: 1px dotted var(--color-border);
    font-weight: 500;
}

.info-table td {
    padding: 12px 0;
    border-bottom: 1px dotted var(--color-border);
}

.sns-links {
    margin-top: 20px;
}

.sns-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-sns {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    transition: opacity 0.3s;
    text-decoration: none;
}

.btn-sns.instagram {
    background: #E1306C;
    /* Instagram Color */
}

.btn-sns.line {
    background: #06C755;
    /* LINE Color */
}

.btn-sns.ubereats {
    background: #05A357;
    /* UberEats Color */
}

.btn-sns:hover {
    color: #fff;
    opacity: 0.8;
}

.sns-note {
    font-size: 0.85rem;
    margin-top: 10px;
    color: #06C755;
    /* LINE Color */
    font-weight: bold;
}

.ubereats-coupon {
    margin-top: 15px;
    padding: 15px;
    background: #f0faf5;
    border: 1px dashed #05A357;
    border-radius: 8px;
    text-align: center;
}

.ubereats-coupon p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

.code-copy-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.ubereats-coupon .code {
    font-size: 1.0rem;
    font-weight: bold;
    color: #05A357;
    letter-spacing: 1px;
}

.btn-copy {
    background: #05A357;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.1s;
    white-space: nowrap;
}

.btn-copy:hover {
    background: #048245;
}

.btn-copy:active {
    transform: scale(0.95);
}

.btn-copy.copied {
    background: #555;
}

/* =========================================
   LINEスタンプ特典エリア (全幅セクション)
========================================= */
.line-stamp-section {
    background: linear-gradient(135deg, #e6f6eb 0%, #d4f0df 100%);
    padding: 60px 0;
}

.line-stamp-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .line-stamp-content-wrapper {
        flex-direction: column;
    }
}

.stamp-info {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stamp-rules {
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 25px 0;
    color: #444;
}

.stamp-rules li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
}

.stamp-rules li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #06C755;
    font-weight: bold;
}

.stamp-rewards {
    background: #f8fffb;
    border: 1px dashed #06C755;
    padding: 20px;
    border-radius: 8px;
}

.reward-title {
    font-weight: bold;
    color: #06C755;
    text-align: center;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    /* display: flexを削除して横幅の問題を解決 */
    line-height: 1.6;
}

.reward-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.reward-list li>span:first-child {
    background: #06C755;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 8px;
    display: inline-block;
}

.note-text {
    display: block;
    /* 改行して表示 */
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
    font-weight: normal;
}

.special-reward-card {
    flex: 1;
    background: #fff;
    border: 3px solid #ff914d;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stamp-badge {
    display: inline-block;
    background: #ff914d;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.special-text h3 {
    color: #e65c00;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.special-text small {
    display: inline-block;
    background: #f4ebd9;
    color: #a18d73;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 0.9rem;
    margin: 10px 0;
}

.mug-img-large {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.special-reward-card:hover .mug-img-large {
    transform: scale(1.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================================
   Modal (Image Pop-up)
========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1001;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--color-accent);
    text-decoration: none;
    cursor: pointer;
}


/* =========================================
   Responsive
========================================= */
@media (max-width: 768px) {
    .global-nav {
        /* ハンバーガーメニュー右からスライドインの基本設定 */
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 80px;
        padding-left: 20px;
        transition: right 0.3s ease;
        z-index: 100;
        display: block !important;
        /* jsの個別styleを上書き */
    }

    .global-nav.open {
        right: 0;
    }

    .global-nav ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* スマホ表示時のサブメニュー */
    .has-submenu .submenu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
        margin-top: 10px;
        display: block;
        /* モバイルでは展開状態で表示 */
        min-width: auto;
    }

    .submenu a {
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
        /* メニューより手前 */
    }

    .hero-title {
        font-size: 3rem;
        /* スマホでも大きく */
    }

    .hero-character-img {
        max-width: 200px;
    }

    .hero-image-wrapper {
        display: none;
    }

    .about-flex {
        flex-direction: column;
    }

    .info-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .map-placeholder {
        height: 400px;
        /* スマホで下半分が切れるのを防ぐため、明示的に高さを指定 */
    }
}