/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    /* カラーパレット */
    --color-primary: #c8102e;
    /* 赤 */
    --color-secondary: #1a1a1a;
    /* 黒 */
    --color-accent: #ffffff;
    /* 白 */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-gray: #f5f5f5;

    /* フォント */
    --font-title: 'Noto Serif JP', serif;
    --font-text: 'Noto Sans JP', sans-serif;

    /* スペーシング */
    --spacing-section-sp: 80px;
    --spacing-section-pc: 120px;
    --spacing-content: 40px;

    /* その他 */
    --header-height: 70px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-text);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* SPのみ改行 */
.sp-br {
    display: none;
}

@media (max-width: 1024px) {
    .sp-br {
        display: block;
    }
}

/* 税別表記を小さく */
.tax-excluded {
    font-size: 0.65em;
    font-weight: 500;
    margin-left: 2px;
    vertical-align: baseline;
}

/* 右クリック禁止 */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.header-logo a img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-nav-list {
    display: flex;
    gap: 30px;
}

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

.header-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.header-nav-list a:hover::after {
    width: 100%;
}

.header-cta-btn {
    padding: 10px 25px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
}

.header-cta-btn:hover {
    background-color: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    z-index: 1001;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    z-index: 2000;
    /* ヘッダーより前面に */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--color-accent);
    padding: 10px 20px;
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    background-color: transparent;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.mobile-menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu-nav a {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

.mobile-menu-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 40px;
    background-color: var(--color-primary);
    border-radius: 30px;
    transition: var(--transition);
}

.mobile-menu-cta:hover {
    background-color: #a00d25;
    transform: scale(1.05);
}

/* SP時のヘッダー調整 */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ========================================
   FV (First View)
======================================== */
.fv {
    width: 100%;
    margin-top: var(--header-height);
}

.fv-swiper {
    width: 100%;
}

.fv .swiper-slide {
    width: 100%;
}

.fv .swiper-slide picture,
.fv .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}


/* ========================================
   Promotion Banner
======================================== */
.promo-banner {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 60px 0;
    background-color: #610000;
}

.promo-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 30px;
    border: 3px solid #008035;
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #008035;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    letter-spacing: 0.1em;
    /* animation: banner-pulse 3s infinite ease-in-out; Removed pulse, using shimmer */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.promo-banner-link::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.promo-banner-link:hover {
    background-color: #006028;
    color: #ffffff !important;
    border-color: #006028;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(200, 16, 46, 0.3);
    animation: none;
}

.promo-banner-link:hover::after {
    transform: translateX(10px);
}

@keyframes banner-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .promo-banner {
        margin-top: 0;
        margin-bottom: 0;
        padding: 50px 0;
        /* Keep consistent padding */
        background-color: #610000;
    }

    .promo-banner-link {
        font-size: 1.4rem;
        padding: 15px 20px;
        max-width: 100%;
        border-radius: 10px;
        margin: 0;
        /* Align */
    }

    .promo-banner-link::after {
        font-size: 1.2rem;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .promo-banner-link {
        font-size: 1.15rem;
        padding: 12px 15px;
        border-width: 2px;
        letter-spacing: 0.05em;
    }

    .promo-banner-link::after {
        margin-left: 10px;
    }
}


/* ========================================
   CTA Section
======================================== */

.cta-section {
    width: 100%;
    background-color: #222222;
    padding: 60px 0;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a00d25 100%);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.35);
    background: linear-gradient(135deg, #d91d3a 0%, #ba0f2b 100%);
}

.cta-icon {
    font-size: 1.4rem;
}

.cta-text {
    text-align: left;
    line-height: 1.25;
}

.cta-text small {
    display: block;
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .cta-container {
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        padding: 15px 20px;
    }
}

/* ========================================
   Section共通スタイル
======================================== */
.section {
    padding: var(--spacing-section-sp) 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-dots {
    color: var(--color-primary);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-top: 2px;
    line-height: 1;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.section-subtitle {
    font-family: var(--font-text);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
}

@media (min-width: 1025px) {
    .section {
        padding: var(--spacing-section-pc) 0;
    }
}

@media (max-width: 1024px) {
    .section-container {
        padding: 0 15px;
    }

    .section-dots {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }
}

/* ========================================
   TV (Third View)
======================================== */
.tv {
    position: relative;
    padding: var(--spacing-section-sp) 0;
    /* Restored padding to separate content from edge */
    overflow: hidden;
    background: transparent;
    /* Video is behind */
    margin-bottom: -1px;
    /* Overlap to remove line */
}

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

.tv-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Request: 100% opacity */
}

.tv .section-container {
    position: relative;
    z-index: 2;
}

.tv-content-wrapper {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tv-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.tv-image {
    display: block;
}

.tv-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.tv-text {
    width: 100%;
    text-align: left;
}

.tv-list li {
    display: block;
    margin-bottom: 15px;
}

.tv-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.tv-list {
    margin-bottom: 30px;
}

.tv-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.tv-catchcopy {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .tv-content-wrapper {
        padding: 30px 20px;
        background-color: rgba(255, 255, 255, 0.9);
        /* Allow background to show slightly on mobile if needed, or keep solid white */
    }

    .tv-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tv-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .tv-list li {
        font-size: 1rem;
    }

    .tv-catchcopy {
        text-align: center;
    }
}

/* ========================================
   About Section
======================================== */
.about {
    background-color: #222222;
    position: relative;
    padding-bottom: calc(var(--spacing-section-sp) + 18vw);
    /* Significantly pushed down */
    color: #ffffff;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* Slightly lower to overlap potential gap */
    left: 0;
    width: 101%;
    /* Slightly wider to prevent side gaps */
    height: 8.5vw;
    /* Slightly increased to ensure coverage */
    background-color: white;
    /* Next section color (Service is white) */
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    pointer-events: none;
    z-index: 5;
}

.about .section-title {
    color: #ffffff;
}

.about .section-subtitle {
    color: #cccccc;
}

.about .section-dots {
    color: var(--color-primary);
    /* Same as Service dots */
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #e0e0e0;
}

.about-image {
    position: relative;
}

/* About Section Image */
.about-img-single {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .about-img-single {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        order: 1;
    }

    .about-text {
        order: 2;
    }

    .about-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-description {
        font-size: 1rem;
    }
}

/* ========================================
   Service Section
======================================== */
.service-item {
    display: grid;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item-odd {
    grid-template-columns: 1.5fr 1fr;
}

.service-item-even {
    grid-template-columns: 1fr 1.5fr;
}

.service-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 2;
}

.service-image {
    display: flex;
    justify-content: center;
}

.service-image img {
    width: 450px;
    height: auto;
    max-width: 100%;
    /* Responsive fix */
    aspect-ratio: 1/1;
    /* Lock aspect ratio */
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {

    .service-item,
    .service-item-odd,
    .service-item-even {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-image {
        order: 1;
    }

    .service-text {
        order: 2;
    }



    .service-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .service-description {
        font-size: 1rem;
    }
}

/* ========================================
   Menu Section (パララックス)
======================================== */
.menu {
    padding: 0;
}

.menu-parallax {
    background-image: url('../img/fixedbgs.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: var(--spacing-section-sp) 0;
}

.menu-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(69 69 69 / 69%);
    z-index: 1;
}

.menu-parallax .section-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* 2カラムレイアウト */
.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.menu-parallax .section-title {
    color: #ffffff;
}

.menu-parallax .section-subtitle {
    color: #ffffff;
}

.menu-parallax .section-dots {
    color: #ffffff;
}

/* 左側：画像エリア */
.menu-visuals {
    position: sticky;
    top: 100px;
}

.menu-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.menu-img-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* 右側：メニューリスト */
.menu-list-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-list-item {
    padding: 25px 0;
    border-bottom: 1px dotted #ccc;
}

.menu-list-item:first-child {
    padding-top: 0;
}

.menu-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-list-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-list-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.menu-list-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-left: auto;
}

.tax-label {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 5px;
    color: var(--color-text-light);
}

.menu-list-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.menu-more {
    text-align: center;
    margin-top: 40px;
}

.menu-more-btn {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-more-btn:hover {
    background-color: #a00d25;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
    .menu-parallax {
        padding: var(--spacing-section-pc) 0;
    }
}

@media (max-width: 1024px) {
    .menu-parallax {
        background-attachment: scroll;
    }

    .menu-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-visuals {
        position: static;
        margin-bottom: 20px;
    }

    .menu-list-title {
        font-size: 1.25rem;
    }

    .menu-list-price {
        font-size: 1.3rem;
    }

    .menu-list-container {
        padding: 25px 15px;
    }
}

/* ========================================
   Gallery Section
======================================== */
.gallery {
    background-color: #b9001e;
}

.gallery .section-title {
    color: #ffffff;
}

.gallery .section-subtitle {
    color: #ffdce3;
}

.gallery .section-dots {
    color: #ffffff;
}

.gallery-swiper {
    position: relative;
    padding: 0 50px;
}

.gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: var(--color-primary);
    width: 40px;
    height: 40px;
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .gallery-swiper {
        padding: 0 30px;
    }

    .gallery-img {
        max-width: 100%;
    }
}

/* ライトボックス */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--color-accent);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* ========================================
   Reviews Section
======================================== */
.reviews {
    background: url('../img/bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-section-sp) 0;
}

.reviews .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Enhance readability */
}

.review-header-bg {
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text */
    padding: 15px 30px;
    /* Tightened padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 60px;
    /* Center with auto margins */
    width: fit-content;
    /* Narrow width only wrapping content */
    max-width: 90%;
    /* border-radius removed */
    text-align: center;
}

/* Ensure parent centers it */
.reviews .section-header {
    text-align: center;
}

.reviews .section-subtitle {
    color: #dddddd;
}

.reviews .section-dots {
    color: #ffffff;
}

.reviews-swiper {
    padding: 0 60px 50px 60px;
    position: relative;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a00d25 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-title);
}

.review-author {
    flex: 1;
}

.review-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
    font-family: var(--font-text);
}

.review-stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
    flex: 1;
    position: relative;
}

.review-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text.expanded {
    display: block;
}

.read-more-btn {
    display: inline-block;
    margin-top: 8px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #a00d25;
    text-decoration: underline;
}

.read-more-btn.hidden {
    display: none;
}

/* Swiper Navigation */
.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.reviews-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 900;
}

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Swiper Pagination */
.reviews-swiper .swiper-pagination {
    bottom: 10px;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

@media (max-width: 1024px) {
    .reviews-swiper {
        padding: 0 50px 50px 50px;
    }
}

@media (max-width: 768px) {
    .reviews-swiper {
        padding: 0 40px 50px 40px;
    }

    .review-card {
        padding: 20px;
    }

    .review-avatar {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }

    .review-name {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviews-swiper .swiper-button-prev,
    .reviews-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .reviews-swiper .swiper-button-prev::after,
    .reviews-swiper .swiper-button-next::after {
        font-size: 1rem;
    }
}

/* ========================================
   Access Section
======================================== */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.access-info {
    display: flex;
    flex-direction: column;
}

.access-store-name {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
}

/* テーブルスタイル */
.access-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.access-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.access-table tr:last-child {
    border-bottom: none;
}

.access-table th {
    width: 1%;
    white-space: nowrap;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--color-secondary);
    background-color: #f8f8f8;
    vertical-align: top;
}

.access-table td {
    padding: 18px 20px;
    line-height: 1.8;
    color: var(--color-text);
}

.phone-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    text-decoration: underline;
}

/* 支払い方法セクション */
.access-payment {
    margin-bottom: 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.payment-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-title i {
    color: var(--color-primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-item {
    font-size: 0.9rem;
}

.payment-label {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-detail {
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 500;
}

/* SNSセクション */
.access-sns-section {
    margin-top: auto;
    padding-top: 30px;
}

.sns-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.access-sns-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for PC/Tablet */
    gap: 12px;
}

.sns-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.sns-btn i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.sns-btn span {
    display: block;
}

.sns-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sns-instagram {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.sns-instagram:hover {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    color: #fff;
    border-color: #E1306C;
}

.sns-instagram:hover i {
    transform: scale(1.2) rotate(5deg);
}

.sns-hotpepper {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.sns-hotpepper:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    color: #fff;
    border-color: #ff6b35;
}

.sns-hotpepper:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.sns-tabelog {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.sns-tabelog:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff4400 100%);
    color: #fff;
    border-color: #ff6600;
}

.sns-tabelog:hover i {
    transform: scale(1.2) rotate(5deg);
}

.sns-facebook {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.sns-facebook:hover {
    background: linear-gradient(135deg, #1877F2 0%, #0e5dc7 100%);
    color: #fff;
    border-color: #1877F2;
}

.sns-facebook:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* マップスタイル */
.access-map {
    position: relative;
    flex: 1;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-address-overlay {
    display: none;
    /* Hidden as requested - removed white box from map */
}

.map-address {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-map-side {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .access-map-side {
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .access-info {
        min-height: auto;
    }

    .access-store-name {
        font-size: 1.5rem;
        text-align: center;
    }

    .access-table th {
        width: 1%;
        white-space: nowrap;
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .access-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .access-sns-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sns-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 15px;
        min-height: auto;
    }

    .sns-btn i {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 12px;
    }

    .access-map {
        height: 350px;
    }

}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-accent);
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
   TOPへ戻るボタン
======================================== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #a00d25;
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .back-to-top {
        bottom: 95px;
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   SP時追従CTAボタン
======================================== */
.fixed-cta-sp {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 997;
    padding: 5px 10px;
}

.fixed-cta-sp {
    display: flex;
    gap: 10px;
}

.fixed-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 5px;
    font-weight: 700;
    transition: var(--transition);
}

.fixed-cta-phone {
    background-color: #4caf50;
    color: var(--color-accent);
}

.fixed-cta-web {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

.fixed-cta-icon {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.fixed-cta-text {
    font-size: 0.85rem;
}

.fixed-cta-sp {
    display: none !important;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}