﻿/* =============================================
   OSAKA OHSHO THAILAND â€” main.css
   Width: 750px (PC & SP same)
   ============================================= */

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.3s ease;
    text-underline-offset: 3px;
}

a:hover,
a:focus,
a:active {
    color: #B41F11;
    text-underline-offset: 3px;
}

html,
body {
    scroll-behavior: smooth;
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes anim-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes anim-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

[data-animate="fade-in"] {
    opacity: 0;
}

[data-animate="fade-in-up"] {
    opacity: 0;
}

[data-animate="fade-in"].is-visible {
    animation: anim-fade-in 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: var(--animate-delay, 0ms);
}

[data-animate="fade-in-up"].is-visible {
    animation: anim-fade-in-up 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: var(--animate-delay, 0ms);
}

body {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 24px;
    color: #1a1a1a;
    background: #d8d8d8;
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== SITE WRAPPER â€” 750px centered ===== */
.site-wrapper {
    width: 750px;
    margin: 0 auto;
    background: #fff;
    overflow: clip;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-logo {
    display: flex;
    align-items: stretch;
    padding: 0 30px;
    background: #C80F2E;
}

.header-logo img {
    height: 100px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 24px;
    font-family: 'Noto Sans JP', sans-serif;
}

.header-nav a {
    font-weight: 500;
}


.site-header .header-nav__list,
.site-header .header-nav__list li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.site-header .header-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lang-switcher {
    position: relative;
}

.site-header .lang-btn,
.site-header .lang-btn:hover,
.site-header .lang-btn:focus {
    font-weight: 500;
    font-size: inherit;
    font-family: inherit;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    cursor: pointer;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: none;
    letter-spacing: normal;
}

.lang-arrow {
    font-size: 0.7em;
    transition: transform 0.2s;
    display: inline-block;
}

.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 120px;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown ul,
.lang-dropdown ul li,
.lang-dropdown li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.lang-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.85em;
    white-space: nowrap;
    transition: background 0.15s;
}

.lang-dropdown li a:hover {
    background: #f5f5f5;
}

.lang-dropdown .current-lang a {
    font-weight: 700;
    pointer-events: none;
    opacity: 0.5;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    display: flex;
    height: 750px;
    overflow: hidden;
}

html[lang="en-US"] .hero{
    height: 800px;
}

/* å·¦ï¼šå‹•ç”» */
.hero-left {
    width: 412px;
    flex-shrink: 0;
    position: relative;
    background: #111;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 1) 20%, rgba(102, 102, 102, 0) 100%);
    z-index: 1;
    opacity: 0.65;
}

/* ãƒ–ãƒ©ãƒ³ãƒ‰ãƒ†ã‚­ã‚¹ãƒˆç¸¦æ›¸ã */
.hero-brand {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    right: 14px;
    top: 4%;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.65);
}

.brand-ohsho {
    right: 14px;
    top: 40%;
}

.brand-country {
    right: 18%;
    top: 49%;
}

/* å³ï¼šã‚³ãƒ”ãƒ¼ + ã‚¹ãƒ©ã‚¤ãƒ€ãƒ¼ */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-copy {
    flex: 1;
    padding: 32px 24px 42px;
    background-color: #f7f3ee;
    background-image: url(../images/homepage/image2.png);
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 16px;
}

html[lang="en-US"] .hero-title{
    font-size: 30px;
    line-height: 1.2;
}

.hero-title span:last-child {
    margin-left: 40px;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

html[lang="en-US"] .hero-desc {
    font-size: 17px;
}

html[lang="th"] .hero-desc {
    font-size: 18px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.hero-btns a {
    display: inline-block;
    width: auto;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to right, #B41F11 0%, #FF4532 100%);
    border: none;
    padding: 8px 16px;
    text-align: center;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s, box-shadow 0.3s;
    min-width: 200px;
}

.hero-btns a:hover, .hero-btns a:focus {
    opacity: 0.8;
    transform: translateY(-3px);
}


/* Hero Slider */
.hero-slider {
    height: 302px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Dots */
.slide-dots {
    position: absolute;
    top: 86%;
    left: auto;
    right: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slide-dots .sdot:hover {
    background: inherit;
}

.sdot--active {
    background: #000;
    transform: scale(1.3);
}

/* =============================================
   SHARED COMPONENTS
   ============================================= */

.btn-primary {
    display: block;
    background: #c8272d;
    color: #fff;
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: background 0.3s;
}

.btn-outline {
    display: block;
    text-align: center;
    border: 2px solid #c8272d;
    color: #c8272d;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
}

.btn-more {
    display: block;
    text-align: center;
    border: 1px solid #fff;
    padding: 12px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
}

.btn-more:hover, .btn-more:focus {
    color: #fff;
}

.btn-map {
    display: inline-block;
    background: linear-gradient(to right, #D60015 0%, #FF4532 100%);
    color: #fff;
    padding: 9.5px 16px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.btn-map:hover,.btn-map:focus {
    color: #fff;
}

/* ===== COMMON SECTION TITLE ===== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Section header container */
.section-header {
    margin-bottom: 28px;
}

.section-header .section-title {
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #c8272d;
    border-radius: 2px;
}

.section-header p {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
}

/* =============================================
   AREA INTRO
   ============================================= */
.area-intro {
    background: #fff;
    padding: 52px 40px 0;
    text-align: center;
}

.area-intro-line {
    border: none;
    border-top: 1px solid #000;
    margin: 20px auto 88px;
    width: 90%;
}

/* =============================================
   PROMOTION
   ============================================= */
.promotion {
    background: #fff;
}

.promo-inner {
    padding: 44px 40px 32px;
    text-align: center;
}

.promo-btn {
    display: inline-block;
    padding: 16px 20px;
    background: linear-gradient(to left, #B41F11 0%, #FF4532 100%);
    border-left: 7px solid #79160D;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
}

.promo-btn>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-btn:hover, .promo-btn:focus {
    opacity: 0.8;
    color: #fff;
}

.promo-btn-text {
    flex: 1;
}

.promo-btn-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.hero-btns a:hover .promo-btn-arrow,
.hero-btns a:focus .promo-btn-arrow {
    transform: scale(1.2);
}

.promo-btn-arrow::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
    transform: translateX(1px);
}

.promo-body {
    background: #FCF0D1;
    padding: 55px 40px 36px;
    text-align: center;
    margin-top: -60px;
}

/* ----- Promotion modal ----- */
.promo-btn {
    cursor: pointer;
}

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 20px;
    overflow-y: auto;
}

.promo-modal[hidden] {
    display: none;
}

.promo-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.promo-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    animation: promoModalIn 0.3s ease;
}

@keyframes promoModalIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

.promo-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-modal-close:hover,
.promo-modal-close:focus {
    background: #fff;
    color: #111;
    transform: scale(1.08);
}

.promo-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.promo-modal-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

/* single poster: don't stretch to half width */
.promo-modal-img:only-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .promo-modal {
        padding: 48px 16px;
    }
    .promo-modal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .promo-modal-close {
        top: -42px;
    }
}

/* =============================================
   MENU
   ============================================= */
.menu {
    padding: 92px 22px;
    background: #fff url(../images/homepage/background.png) center top / cover no-repeat;
}

.menu-header {
    text-align: center;
    margin-bottom: 0;
}

.menu-header .section-title {
    margin-bottom: 10px;
}

.menu-header p {
    line-height: 1.6;
}

.menu-divider {
    border: none;
    border-top: 1px solid #000;
    margin: 20px auto 88px;
    width: 83%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
    margin-bottom: 24px;
}

.menu-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}


.menu-card-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-card-label {
    position: absolute;
    bottom: 12px;
    left: 0;
    display: inline-block;
    background: #F10E0E;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    padding: 6px 12px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    line-height: 1.4;
    font-size: 22px;
}

.menu-card-label .f-sm{
    font-size: 18px;
}

.menu-card-body {
    padding: 12px 12px 20px;
    background: #fff;
    font-size: 20px;
}

.menu-cta {
    padding: 48px 40px 10px;
    text-align: center;
}

.menu-cta-label {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 600;
}

.menu-cta-btn {
    background: linear-gradient(to right, #D60015 0%, #FF4532 100%);
    color: #fff;
    font-weight: 700;
    padding: 20px 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
    display: inline-block;
    min-width: 200px;
}

.menu-cta-btn:hover, .menu-cta-btn:focus {
    opacity: 0.8;
    color: #fff;
}

/* =============================================
   STORES
   ============================================= */
.stores {
    background: linear-gradient(to bottom, #fff 80%, #FCF0D1 100%);
    padding: 52px 40px;
}

.store-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 16px;
    margin-bottom: 20px;
}

.store-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

.store-card--coming {
    opacity: 0.5;
}

.store-info {
    padding: 20px 18px 16px;
    font-family: 'Merriweather', serif;
}

.store-city {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;

}

.store-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.icon-store-sm {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
}

.store-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0.06em;
}

.icon-small {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
}

.store-photo {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.store-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.store-photo--coming {
    background-color: #e8e8e8;
}

.store-photo-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    gap: 15px;
    z-index: 1;
}

.store-delivery {
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-delivery img {
    height: 45px;
    width: auto;
}

.stores-cta {
    padding: 40px 40px 30px;
    text-align: center;
}

.stores-cta-note {
    font-weight: 600;
    margin-bottom: 20px;
}

.stores-cta-btn {
    display: inline-block;
    color: #fff;
    border: 1px solid #D60015;
    font-weight: 700;
    transition: opacity 0.3s ease;
    padding: 10px;
    min-width: 200px;
}

.stores-cta-btn>div {
    background: #D60015;
    padding: 8px 32px;
}

.stores-cta-btn:hover, .stores-cta-btn:focus {
    opacity: 0.8;
    color: #fff;
}

/* =============================================
   BRAND INTRO
   ============================================= */
.brand-intro {
    background: #fff url(../images/homepage/bg2.png) center bottom / 100% no-repeat;
    padding: 52px 0 0;
}

.brand-intro-content {
    margin-bottom: 32px;
    padding-left: 60px;
    padding-right: 60px;
}

.brand-intro-line {
    border: none;
    border-top: 1px solid #000;
    margin: 32px auto 40px;
    width: 90%;
}

.brand-intro-craft {
    display: flex;
    gap: 0;
    padding: 80px 40px 80px;
    align-items: start;
}

.brand-intro-craft-text {
    flex: 1;
    padding-right: 16px;
}

.brand-intro-craft-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.brand-intro-craft-text p {
    font-size: 20px;
    margin-bottom: 14px;
}

.brand-intro-craft-text p:last-child {
    margin-bottom: 0;
}

.brand-intro-craft-img {
    width: 330px;
    flex-shrink: 0;
}

.brand-intro-craft-img img {
    width: 100%;
    display: block;
}

.brand-intro-slider {
    margin: 0 20px;
    height: 288px;
}

.brand-intro-slider .swiper-wrapper,
.brand-intro-slider .swiper-slide {
    height: 288px;
}

.brand-intro-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

/* =============================================
   NEWS
   ============================================= */
.news {
    padding: 52px 40px 80px;
    background: #fff;
}

.news-header {
    text-align: center;
    margin-bottom: 32px;
}

.news-header .section-title {
    margin-bottom: 8px;
}

.news-header p {
    margin-bottom: 20px;
}

.news-header-line {
    border: none;
    border-top: 1px solid #000;
    margin: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 82px;
}

.news-item {
    border: 1px solid #F0B53F;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 4px 4px 0 rgba(240, 181, 63);
    font-family: 'Noto Sans JP', sans-serif;
}

.news-item .post-link:last-child {
    text-align: right;
}

.news-item-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-date {
    background: #B41F11;
    color: #fff;
    font-size: 20px;
    padding: 6px 22px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: -30px;
}

.news-item-top > div {
    font-size: 22px;
    font-weight: 700;
    flex: 1;
    min-width: 0;
    text-align: right;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.news-item p {
    font-size: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.news-more {
    display: inline-block;
    text-align: right;
    color: #D60015;
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
    font-family: 'Noto Serif JP', sans-serif;
    transition: transform 0.3s;
}

.news-more:hover {
    transform: translateX(4px);
}

.news-cta {
    text-align: center;
}

.news-cta-btn {
    display: inline-block;
    background: linear-gradient(to right, #77150C 0%, #B41F11 100%);
    color: #fff;
    font-weight: 700;
    padding: 16px 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
}

.news-cta-btn:hover, .news-cta-btn:focus {
    opacity: 0.8;
    color: #fff;
}

/* =============================================
   FRANCHISE
   ============================================= */
.franchise {
    padding: 70px 40px 120px;
    background: #fff url(../images/homepage/bg-fc.png) center top / cover no-repeat;
}

.franchise-header {
    text-align: center;
    margin-bottom: 82px;
}

.franchise-header .section-title {
    margin-bottom: 8px;
}

.franchise-header p {
    margin-bottom: 20px;
}

.franchise-header-line {
    border-top: 1px solid #000;
    margin: 32px auto 40px;
    width: 90%;
}

.franchise-cards {
    display: flex;
    flex-direction: column;
    gap: 82px;
}

.franchise-card {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
}

.franchise-card-head {
    display: flex;
    align-items: stretch;
}

.franchise-badge {
    background: rgba(180, 31, 17, 1);
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchise-card-head h3 {
    flex: 1;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.franchise-card-head--fc h3 {
    background: rgba(255, 204, 204, 1);
}

.franchise-card-head--b2b h3 {
    background: rgba(204, 255, 204, 1)
}

.franchise-card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    min-height: 210px;
}

.franchise-card-body p {
    font-size: 20px;
    flex: 1;
}

.franchise-btn {
    display: inline-block;
    align-self: flex-end;
    background: linear-gradient(to right, #B41F11 0%, #FF4532 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease;
    font-family: 'Noto Serif JP', serif;
}

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


/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 52px 40px 180px;
    background: #fff url(../images/homepage/bg3.png) center top / cover no-repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 0;
}

.contact>* {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 82px;
}

.contact-header .section-title {
    margin-bottom: 8px;
}

.contact-header p {
    margin-bottom: 20px;
}

.contact-header-line {
    border: none;
    border-top: 1px solid #000;
    margin: 32px auto 40px;
    width: 90%;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 82px;
}

.contact-card {
    display: flex;
    height: auto;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: inherit;
}

.contact-card--reverse {
    flex-direction: row-reverse;
}

.contact-card-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.88);
    padding: 20px 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-body h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(180, 31, 17, 1);
}

.contact-card.contact-card--reverse .contact-card-body h3 {
    justify-content: end;
}

.contact-card-icon {
    width: 32px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.contact-card-icon.icon-hand {
    width: 40px;
}

.contact-card-body p {
    font-size: 22px;
    padding-left: 42px;
}

.contact-card.contact-card--reverse .contact-card-body p {
    padding-left: 0;
}

.contact-card-img {
    width: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

/* =============================================
   SNS BAR
   ============================================= */
.sns-bar {
    background: rgba(180, 31, 17, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 18px 0;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.sns-link:hover {
    opacity: 0.75;
}

.sns-link img {
    width: 41px;
    height: 41px;
    filter: brightness(0) invert(1);
}

/* =============================================
   COMPANY
   ============================================= */
.company {
    padding: 52px 40px 120px;
    background: #fff url(../images/homepage/bg4.png) center / cover no-repeat;
    position: relative;
}

.company::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    z-index: 0;
}

.company>* {
    position: relative;
    z-index: 1;
}

.company-header {
    text-align: center;
    margin-bottom: 82px;
}

.company-header .section-title {
    margin-bottom: 8px;
}

.company-header p {
    margin-bottom: 20px;
}

.company-header-line {
    border: none;
    border-top: 1px solid #000;
    margin: 32px auto 40px;
    width: 90%;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(252, 240, 209, 0.7);
}

.company-table th,
.company-table td {
    padding: 18px 20px;
    font-size: 20px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 140px;
    font-weight: 700;
    white-space: nowrap;
}

.company-table-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.company-table tr:last-child {
    border-bottom: 5px solid rgba(180, 31, 17, 0.7);
}

.company-table a {
    color: #B41F11;
    transition: opacity 0.3s ease;
}

.company-table a:hover {
    opacity: 0.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #fff;
}

.footer-main {
    display: flex;
    align-items: start;
    min-height: 240px;
    background-color: rgba(247, 247, 247, 1);
}

.footer-logo-wrap {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 24px 52px 24px 230px;
}

.footer-nav a {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 0;
}

.footer-nav a:hover {
    color: #B41F11;
}

.footer-bottom {
    background: #F0B53F;
    padding: 14px 40px;
    text-align: center;
}

.footer-copy {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
}

/* =============================================
   GO-TOP BUTTON
   ============================================= */

.go-top {
    position: fixed;
    right: calc(50% - 375px + 16px);
    bottom: 20px;
    width: 67px;
    height: 67px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.go-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.go-top img {
    width: 100%;
    height: 100%;
    display: block;
}

/* =============================================
   ARCHIVE: NEWS
   ============================================= */

.archive-banner {
    text-align: center;
    padding: 72px 24px 40px;
    background: #fff;
}

.archive-banner .section-title {
    margin-bottom: 8px;
}

.archive-banner p {
    margin-bottom: 20px;
}

.archive-banner-line {
    border: none;
    border-top: 1px solid #000;
    width: 60%;
    margin: 0 auto;
}

.archive-news-section {
    background: #fff;
    padding: 0 40px 80px;
}

/* ── Pagination ── */
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #F0B53F;
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
    background: #B41F11;
    color: #fff !important;
    border-color: #B41F11;
}

.archive-pagination .page-numbers.dots {
    border: none;
    pointer-events: none;
}

.archive-empty {
    text-align: center;
    padding: 60px 0;
    color: #888;
    font-size: 18px;
}

/* link in news-item-top h3 (archive only) */
.news-item-top h3 a {
    color: inherit;
    text-decoration: none;
}

.news-item-top h3 a:hover {
    color: #B41F11;
}

/* =============================================
   SINGLE: NEWS DETAIL
   ============================================= */

.single-news-section {
    background: #fff;
    padding: 0 40px 80px;
}

.news-detail {
    max-width: 860px;
    margin: 0 auto;
}

.news-detail-meta {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-detail-meta .news-date {
    margin-left: 0;
    font-size: 18px;
    padding: 6px 20px;
    flex-shrink: 0;
}

.news-detail-title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
}

.news-detail-divider {
    border: none;
    border-top: 1px solid #F0B53F;
    margin: 0 0 32px;
}

.news-detail-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-content p {
    margin-bottom: 1.2em;
}

/* Back button */
.news-back-wrap {
    max-width: 860px;
    margin: 48px auto 0;
    text-align: center;
}

/* =============================================
   CONTACT FORM 7 — global style
   ============================================= */

/* ── CF7 Row layout ── */
.wpcf7 .cf7-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.wpcf7 label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
}

.wpcf7 label .required {
    color: #B41F11;
    margin-left: 4px;
}

/* ── Inputs, Textarea, Select ── */
.wpcf7 .wpcf7-form-control:not([type="submit"]),
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #F0B53F;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.wpcf7 .wpcf7-form-control:not([type="submit"]):focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #B41F11;
    box-shadow: 0 0 0 2px rgba(180, 31, 17, 0.12);
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

/* Select arrow */
.wpcf7 .wpcf7-select,
.wpcf7 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B41F11' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ── Validation error ── */
.wpcf7 .wpcf7-not-valid-tip {
    color: #B41F11;
    font-size: 20px;
    margin-top: 4px;
    font-family: 'Noto Sans JP', sans-serif;
}

.wpcf7 .wpcf7-not-valid {
    border-color: #B41F11 !important;
}

/* ── Response messages ── */
.wpcf7 .wpcf7-response-output {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    margin: 16px 0 0;
    padding: 12px 16px;
    border: none !important;
    border-left: 4px solid #333 !important;
    background: #fff8f8;
}

.wpcf7 .invalid .wpcf7-response-output {
    border-left-color: #B41F11 !important;
    color: #B41F11;
}

.wpcf7 .sent .wpcf7-response-output {
    border-left-color: #2e7d32 !important;
    color: #2e7d32;
}

/* ── Submit button ── */
.wpcf7 .wpcf7-submit,
.wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    margin-top: 32px;
    background: linear-gradient(to right, #B41F11 0%, #FF4532 100%);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 input[type="submit"]:hover {
    opacity: 0.8;
}

/* ── Submit loading state ── */
.wpcf7 .wpcf7-submit[data-loading] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.hero-container {
    background-color: #fff;
}

.entry-hero.page-hero-section .entry-header {
    min-height: 150px;
}

.content-area {
    margin-top: 0;
}

.entry.single-entry {
    box-shadow: none;
}

/* Spinner */
.wpcf7 .wpcf7-spinner {
    display: none;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #B41F11;
    color: #B41F11;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.news-back-btn:hover {
    background: #B41F11;
    color: #fff;
}
/* ===== BUTTON HOVER LIFT ===== */
.hero-btns a,
.promo-btn,
.btn-more,
.btn-map,
.menu-cta-btn,
.stores-cta-btn,
.news-more,
.news-cta-btn,
.franchise-btn,
.news-back-btn,
.store-delivery a,
.go-top {
    transition: opacity 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.2s ease !important;
}

.hero-btns a:hover, .hero-btns a:focus,
.promo-btn:hover, .promo-btn:focus,
.btn-more:hover, .btn-more:focus,
.btn-map:hover, .btn-map:focus,
.menu-cta-btn:hover, .menu-cta-btn:focus,
.stores-cta-btn:hover, .stores-cta-btn:focus,
.news-cta-btn:hover, .news-cta-btn:focus,
.franchise-btn:hover,
.news-back-btn:hover,
.store-delivery a:hover,
.go-top:hover {
    transform: translateY(-3px);
}

.home .grecaptcha-badge{
    display: none !important;
}
