/* ========================================
   リセット & 基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

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

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

/* ========================================
   ヘッダー（固定なし）
   ======================================== */
.sticky-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #D4A574 0%, #B8935E 100%);
    color: #fff;
    border: 2px solid #D4A574;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8935E 0%, #9D7D4D 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.btn-outline {
    background: transparent;
    color: #D4A574;
    border: 2px solid #D4A574;
}

.btn-outline:hover {
    background: #D4A574;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-large {
    padding: 20px 60px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .btn-large {
        padding: 15px 40px;
        font-size: 16px;
    }
}

/* ========================================
   新しいヒーローセクション
   ======================================== */
.hero-new {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #000;
    filter: brightness(0.7);
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./hero-bottle.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* PC版での背景画像調整 - 左右に黒帯 */
@media (min-width: 768px) {
    .hero-new {
        min-height: 700px;
        max-height: 800px;
    }
    
    .hero-bg-image::after {
        background-size: contain;
        background-position: center center;
    }
}

@media (min-width: 1024px) {
    .hero-new {
        height: 80vh;
        min-height: 700px;
        max-height: 850px;
    }
    
    .hero-bg-image::after {
        background-size: contain;
        background-position: center center;
    }
}

@media (min-width: 1440px) {
    .hero-new {
        height: 85vh;
        max-height: 900px;
    }
    
    .hero-bg-image::after {
        background-size: contain;
        background-position: center center;
    }
}

.hero-new-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    color: white;
}

/* 左上ロゴエリア */
.hero-top-left {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 20;
}

.hero-logo-image {
    height: 35px !important;
    max-height: 35px !important;
    width: auto !important;
    max-width: 200px !important;
    display: block !important;
    object-fit: contain !important;
}

/* 中央縦書きエリア */
.hero-center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1536px;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.hero-vertical-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    height: 60vh;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-vertical-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 1.5rem;
}

.hero-main-title {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15em;
}

.hero-main-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.15em;
    padding-top: 1rem;
}

/* カウントダウンエリア */
.hero-countdown-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-countdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.countdown-item-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}

.countdown-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4A574;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.countdown-label-new {
    font-size: 0.75rem;
    color: #ccc;
    font-weight: 500;
}

.hero-deadline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

/* 下部CTAエリア */
.hero-bottom {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-weight: 500;
    color: white;
    border: 1px solid white;
    border-radius: 9999px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background: white;
    color: #111;
}

.hero-cta-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hero-cta-arrow {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-cta-arrow {
    transform: translateX(0.5rem);
}

.hero-scroll-text {
    font-size: 0.75rem;
    color: rgb(209, 213, 219);
    margin-top: 1rem;
    letter-spacing: 0.15em;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .hero-new-content {
        padding: 3rem;
    }

    .hero-center {
        justify-content: flex-end;
    }

    .hero-vertical-wrapper {
        height: 50vh;
        gap: 4rem;
    }

    .hero-vertical-text {
        padding-right: 2rem;
    }

    .hero-main-title {
        font-size: 3.5rem;
        white-space: nowrap;
    }

    .hero-main-subtitle {
        font-size: 1.25rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-item-new {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-new {
        min-height: 600px;
    }

    .hero-logo-image {
        height: 25px !important;
        max-height: 25px !important;
        max-width: 150px !important;
    }

    .hero-vertical-wrapper {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }

    .hero-vertical-text {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-main-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-countdown-wrapper {
        flex-direction: column;
    }

    .hero-countdown {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .countdown-item-new {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .hero-deadline {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 0.875rem;
    }

    .hero-bottom {
        bottom: 1.5rem;
    }

    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   固定カウントダウンバー
   ======================================== */
.fixed-countdown-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-top: 2px solid #D4A574;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.fixed-countdown-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
}

.fixed-countdown-text {
    flex-shrink: 0;
    justify-self: end;
}

.fixed-countdown-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.fixed-countdown {
    display: flex;
    gap: 15px;
    justify-self: center;
    flex: 1;
    justify-content: center;
}

.fixed-countdown-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background: rgba(212, 165, 116, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.fixed-countdown-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #D4A574;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.fixed-countdown-unit {
    font-size: 12px;
    color: #ccc;
    font-weight: 500;
}

.fixed-countdown-button {
    flex-shrink: 0;
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #D4A574 0%, #B8935E 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    justify-self: start;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    animation: subtle-pulse 3s ease-in-out infinite;
}

.fixed-countdown-button:hover {
    background: linear-gradient(135deg, #B8935E 0%, #9D7D4D 100%);
    transform: translateY(-2px);
    animation: none;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .fixed-countdown-bar {
        overflow: visible;
    }

    .fixed-countdown-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 10px;
        gap: 6px;
    }

    .fixed-countdown-text {
        flex-shrink: 0;
        white-space: nowrap;
        justify-self: auto;
    }

    .fixed-countdown-label {
        font-size: 9px;
        line-height: 1.3;
    }

    .fixed-countdown {
        flex: 1;
        gap: 3px;
        justify-content: flex-start;
        justify-self: auto;
        flex-wrap: nowrap;
        overflow: visible;
    }

    .fixed-countdown-item {
        padding: 3px 5px !important;
        border-radius: 4px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: baseline !important;
        gap: 2px !important;
    }

    .fixed-countdown-value {
        font-size: 15px !important;
        line-height: 1 !important;
    }

    .fixed-countdown-unit {
        font-size: 8px !important;
        line-height: 1 !important;
    }

    .fixed-countdown-button {
        flex-shrink: 0;
        width: auto;
        min-width: 60px;
        height: 40px;
        padding: 0 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        margin-left: 4px;
        justify-self: auto;
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        animation: subtle-pulse 3s ease-in-out infinite;
    }

    .fixed-countdown-button::before {
        content: none;
    }
}

/* ========================================
   共通セクションスタイル
   ======================================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
    letter-spacing: 0.02em;
}

.section-title.white {
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* ========================================
   問題提起セクション
   ======================================== */
.problem {
    background: #f8f8f8;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.problem-item p {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-item {
        padding: 30px 20px;
    }

    .problem-item p {
        font-size: 16px;
    }
}

/* ========================================
   差別化セクション
   ======================================== */
.differentiation {
    background: #fff;
}

/* 比較表 */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
}

.comparison-table thead th {
    padding: 20px;
    background: #2c2c2c;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid #D4A574;
}

.comparison-table thead th.highlight {
    background: linear-gradient(135deg, #D4A574 0%, #B8935E 100%);
    font-size: 18px;
}

.comparison-table tbody td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody td.label {
    font-weight: 600;
    background: #f8f8f8;
    text-align: left;
}

.comparison-table tbody td.highlight {
    background: rgba(212, 165, 116, 0.1);
    font-weight: 600;
    color: #2c2c2c;
}

/* 3つの独自価値（新デザイン） */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card-new {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.3);
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 140%;
    overflow: hidden;
}

.feature-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-new:hover .feature-bg-image {
    transform: scale(1.08);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 2;
    color: white;
}

.feature-title-new {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-description-new {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-image-wrapper {
        padding-top: 120%;
    }

    .feature-content {
        padding: 25px 20px;
    }

    .feature-title-new {
        font-size: 22px;
    }

    .feature-description-new {
        font-size: 13px;
    }
}

/* ========================================
   コンセプトセクション
   ======================================== */
.concept {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
}

.concept .section-title {
    color: #D4A574;
}

.concept-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #fff;
}

.concept-description {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .concept-text {
        font-size: 20px;
    }

    .concept-description {
        font-size: 14px;
    }
}

/* ========================================
   プランセクション
   ======================================== */
.plans {
    background: #f8f8f8;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 3px solid #D4A574;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
}

.plan-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #D4A574 0%, #B8935E 100%);
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.plan-ribbon::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #9D7D4D transparent transparent transparent;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid #D4A574;
    border-radius: 20px;
    font-size: 12px;
    color: #D4A574;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
}

.plan-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 700;
    color: #D4A574;
}

.price-unit {
    font-size: 18px;
    color: #666;
}

.plan-description {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4A574;
    font-weight: 700;
    font-size: 16px;
}

.plan-features li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-name {
        font-size: 24px;
    }

    .price-amount {
        font-size: 36px;
    }
}

/* ========================================
   お届けの流れ
   ======================================== */
.flow {
    background: #fff;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.flow-step {
    flex: 1;
    text-align: center;
}

.flow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4A574 0%, #B8935E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.flow-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.flow-description {
    font-size: 14px;
    color: #666;
}

.flow-arrow {
    font-size: 24px;
    color: #D4A574;
    margin: 0 20px;
}

.flow-note {
    text-align: center;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .flow-title {
        font-size: 16px;
    }

    .flow-description {
        font-size: 13px;
    }
}

/* ========================================
   お客様の声
   ======================================== */
.reviews {
    background: #f8f8f8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #D4A574;
}

.review-name {
    font-weight: 700;
    color: #2c2c2c;
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 25px 20px;
    }
}

/* ========================================
   CTAセクション
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-section .countdown {
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px;
    min-width: 90px;
}

.countdown-large .countdown-item {
    padding: 30px;
    min-width: 110px;
}

.countdown-label {
    font-size: 12px;
    color: #ccc;
    margin-top: 8px;
    font-weight: 500;
}

.countdown-large .countdown-label {
    font-size: 14px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 768px) {
    .cta-section .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px;
        min-width: 70px;
    }

    .countdown-large .countdown-item {
        padding: 20px;
        min-width: 80px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-large .countdown-label {
        font-size: 12px;
    }
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    background: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

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

.footer-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

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

.footer-link {
    display: inline-block;
    color: #D4A574;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-notice {
    font-size: 16px;
    color: #999;
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 500;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    padding-top: 30px;
    border-top: 1px solid #333;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 申込ボタンの控えめなパルスアニメーション */
@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 165, 116, 0.5);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* スクロールアニメーション用 */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
