/* 
   NEO-INDUSTRIAL POP DESIGN SYSTEM
   Theme: Energetic, Premium, Dynamic
*/

:root {
    /* Colors */
    --color-primary: #FF0033;
    /* Neon Red */
    --color-secondary: #F9D800;
    /* Electric Yellow */
    --color-dark: #111111;
    /* Deep Black */
    --color-dark-lighter: #1a1a1a;
    --color-light: #ffffff;
    --color-gray: #f4f4f4;
    --color-text: #333333;
    --color-text-light: #f0f0f0;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: 20px;
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Typography */
    --font-en: 'Outfit', sans-serif;
    --font-ja: 'Noto Sans JP', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 16px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.3s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

html,
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    /* Strictly prevent horizontal scroll */
    width: 100%;
    position: relative;
}

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
.en {
    font-family: var(--font-en);
    font-weight: 900;
    letter-spacing: 0.05em;
}

.ja {
    font-family: var(--font-ja);
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-en);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-title .ja::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-title .en {
    color: var(--color-dark);
    text-transform: uppercase;
}

.section-title .ja {
    font-size: 1.5rem;
    /* Increased from 1rem */
    color: var(--color-dark);
    /* Changed from primary to dark */
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

.text-light .section-title .en,
.text-light .section-title .ja {
    color: var(--color-light);
    /* Ensure both are light on dark bg */
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Ensure content is above watermark */
}

.section-padding {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Textures & Gradients */
body {
    font-family: var(--font-ja);
    color: var(--color-text);
    background-color: var(--color-gray);
    background-image:
        radial-gradient(var(--color-dark-lighter) 1px, transparent 1px),
        radial-gradient(var(--color-dark-lighter) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
    background-image: linear-gradient(45deg, #111 25%, #1a1a1a 25%, #1a1a1a 50%, #111 50%, #111 75%, #1a1a1a 75%, #1a1a1a 100%);
    background-size: 40px 40px;
}

/* Price section - rich gradient with visual interest */
#price.bg-dark {
    background-color: #2a2a2a;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(80, 60, 100, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(60, 80, 100, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(100, 80, 60, 0.2) 0%, transparent 70%),
        linear-gradient(180deg, #1f1f1f 0%, #2a2a2a 20%, #353535 50%, #2a2a2a 80%, #1f1f1f 100%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle texture overlay for depth */
#price.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* Access section - medium gray */
#shop {
    background-color: #b8b8b8;
    background-image: linear-gradient(to bottom, #b8b8b8, #ababab);
}

.bg-light {
    background-color: var(--color-light);
    background-image: linear-gradient(to bottom, #ffffff, #f8f8f8);
}

/* Watermark */
.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 15vw;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    user-select: none;
}

.bg-dark .section-watermark {
    color: rgba(255, 255, 255, 0.03);
}

.section-watermark.text-stroke {
    color: rgba(255, 255, 255, 0.12);
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.2);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.site-header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    /* Slightly smaller to fit with text */
    width: auto;
    display: block;
}

.logo-ja {
    font-family: var(--font-ja);
    font-size: 1rem;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Footer Logo */
.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.footer-company-name {
    font-family: var(--font-ja);
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.main-nav a {
    font-family: var(--font-ja);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    color: var(--color-dark);
    min-width: 80px;
    /* Ensure enough width for English text */
    text-align: center;
    /* Center text */
}

.main-nav a span {
    display: block;
    transition: transform 0.3s ease;
}

.main-nav a::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--color-primary);
    font-family: var(--font-en);
    transition: transform 0.3s ease;
}

.main-nav a:hover span {
    transform: translateY(-100%);
}

.main-nav a:hover::before {
    transform: translateY(-100%);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.business-hours {
    text-align: right;
    font-size: 0.75rem;
    line-height: 1.2;
}

.status-open {
    color: var(--color-primary);
    font-weight: bold;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-family: var(--font-en);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-phone {
    background-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.cta-phone:hover {
    background-color: #c4000d;
    /* Darker red */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-light);
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    background-image: url('images/_DSC7456-large.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    /* For parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 100px;
    padding-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.hero-title {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s var(--ease-out-expo) forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--color-primary);
    /* Accent color for second line */
    -webkit-text-stroke: 2px var(--color-light);
    /* Outline effect */
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 0.5rem;
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.hero-scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: var(--color-light);
    animation: scrollLine 2s infinite;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
    /* Delay after subtitle */
}

.hero-btn-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-ja);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    /* overflow: hidden; Removed to show tooltip */
    backdrop-filter: blur(5px);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hero-btn .icon {
    font-size: 1.5rem;
}

.hero-btn .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-btn .label {
    font-size: 0.7rem;
    opacity: 0.8;
}

.hero-btn .value {
    font-size: 1.1rem;
    font-family: var(--font-en);
}

/* Button Variants */
.btn-phone {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    border: 2px solid transparent;
}

.btn-phone:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-web {
    background: rgba(33, 150, 243, 0.95);
    color: var(--color-light);
    border: 2px solid rgba(33, 150, 243, 0.6);
    box-shadow:
        0 0 20px rgba(33, 150, 243, 0.3),
        inset 0 0 20px rgba(33, 150, 243, 0.1);
}

.btn-web:hover {
    background: #2196F3;
    border-color: #2196F3;
    transform: translateY(-5px);
    box-shadow:
        0 10px 20px rgba(33, 150, 243, 0.4),
        0 0 30px rgba(33, 150, 243, 0.5);
}

.btn-line {
    background: rgba(6, 199, 85, 0.95);
    color: #fff;
    border: 2px solid rgba(6, 199, 85, 0.6);
    box-shadow:
        0 0 20px rgba(6, 199, 85, 0.3),
        inset 0 0 20px rgba(6, 199, 85, 0.1);
}

.btn-line:hover {
    background: #06C755;
    border-color: #06C755;
    transform: translateY(-5px);
    box-shadow:
        0 10px 20px rgba(6, 199, 85, 0.4),
        0 0 30px rgba(6, 199, 85, 0.5);
}

/* Tooltip for Hero Buttons */
.hero-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1000;
}

.hero-btn[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* News Section */
.news-section {
    background-color: var(--color-secondary);
    padding: 1rem 0;
    overflow: hidden;
}

.news-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-label {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 0.2rem 1rem;
    transform: skewX(-10deg);
}

.news-list {
    flex: 1;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-item dt {
    font-weight: bold;
    font-family: var(--font-en);
}

.news-item dd a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.news-item .arrow {
    transition: transform 0.3s;
}

.news-item a:hover .arrow {
    transform: translateX(5px);
}

.news-more {
    text-align: right;
    margin-top: 1rem;
}

.news-more a {
    display: inline-block;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.news-more a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .news-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .news-more {
        text-align: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Bento Grid (Reasons) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    background: var(--color-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Block Reveal Animation */
/* Block Reveal Animation */
.reveal-heading {
    position: relative;
    display: inline-block;
    /* Ensure block matches text width */
}

/* Force children to be hidden initially */
.reveal-heading .en,
.reveal-heading .ja {
    opacity: 0;
    transition: opacity 0s 0.4s;
}

.reveal-heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 1;
    will-change: transform;
}

.reveal-heading.active {
    transform: none;
    clip-path: none;
}

/* Restore opacity when active */
.reveal-heading.active .en,
.reveal-heading.active .ja {
    opacity: 1;
}

.reveal-heading.active::after {
    animation: reveal-swipe 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal-swipe {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    45% {
        transform: scaleX(1);
        transform-origin: left;
    }

    55% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.span-2 {
    grid-column: span 2;
}

.reason-quick {
    display: flex;
    align-items: center;
    background: var(--color-light);
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.reason-quick::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 80%;
    background-image: url('images/truck.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 70%);
    z-index: 0;
}

.reason-quick .bento-content {
    position: relative;
    z-index: 1;
}

.reason-obd {
    display: flex;
    align-items: center;
    background: var(--color-light);
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.reason-obd::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 80%;
    background-image: url('images/DSC00727.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 0%, transparent 70%);
    z-index: 0;
}

.reason-obd .bento-content {
    position: relative;
    z-index: 1;
}

.reason-compliance {
    display: flex;
    align-items: center;
    background: var(--color-dark);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.reason-compliance::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('images/_DSC7456-large.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
    z-index: 0;
}

.reason-compliance .bento-content {
    position: relative;
    z-index: 1;
}

.main-reason {
    background: var(--color-dark);
    color: var(--color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-reason h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.bento-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
    opacity: 0.6;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-bg {
    transform: scale(1.1);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.sub-reason {
    display: flex;
    align-items: center;
}

.sub-reason h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

.icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    font-family: var(--font-en);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
}

.section-sub-lead {
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-top: 0.5rem;
    font-weight: bold;
    opacity: 0.9;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .section-sub-lead {
        text-align: center;
    }
}

/* Price Cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .price-card {
        padding: 0.4rem;
        min-width: 0 !important;
        max-width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .price-card .card-image {
        height: 50px;
        border-radius: 8px 8px 0 0;
    }

    .price-card .card-content {
        padding: 0.3rem;
    }

    .price-card .card-content h3 {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.3rem;
    }

    .price-card .price-display {
        font-size: 0.8rem;
        margin: 0.4rem 0;
        flex-wrap: wrap;
        gap: 0;
        white-space: normal;
    }

    .price-card .price-display .currency {
        font-size: 0.9rem;
    }

    .price-card .price-display .amount {
        font-size: 1.1rem;
    }

    .price-card .price-display .suffix {
        font-size: 0.6rem;
    }

    .price-card .price-desc {
        font-size: 0.65rem;
        line-height: 1.3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.price-card {
    background: var(--color-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hover effect for price cards */
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 横が切れないように */
    transition: transform 0.5s ease;
}

.price-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
}

.price-card .card-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: none !important;
    display: flex;
    flex-direction: column;
    /* 縦並びにする */
    align-items: center;
    justify-content: center;
    min-height: 3.6rem;
    line-height: 1.4;
    /* 行間を調整 */
    /* 2行分確保して高さを揃える */
}

.price-card .card-content h3 .text-sm {
    font-size: 0.85rem;
    /* 補足テキストをさらに小さく */
    display: block;
    /* 改行させる */
    margin-top: 0.2rem;
}


.tax-note {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 1rem;
    opacity: 0.8;
}

.price-display {
    margin: 1.5rem 0;
    color: var(--color-primary);
    font-family: var(--font-en);
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.suffix {
    font-size: 1rem;
    color: #888;
}

.price-desc {
    font-size: 0.9rem;
    color: #aaa;
}

/* Price Table Section */
.price-table-section {
    margin-top: 4rem;
}

.price-table-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-light);
    text-align: center;
}

.price-table-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: #aaa;
    margin-left: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
    display: none;
}

.show-mobile {
    display: none;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.price-table thead {
    background: #f5f5f5;
}

.price-table th {
    padding: 1rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid #ddd;
}

.price-table td {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #333;
}

.price-table tbody tr:hover {
    background: #f9f9f9;
}

.price-table td:first-child {
    text-align: center;
    font-weight: 600;
}

/* Other Price Grid */
.other-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.other-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.item-name {
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.item-price.free {
    color: #4CAF50;
}

/* Price Notes */
.price-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.price-desc {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.price-note {
    font-size: 0.7rem;
    color: var(--color-secondary);
    margin-top: 0.3rem;
    font-weight: bold;
}

.price-notes p {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.price-notes p:last-child {
    margin-bottom: 0;
}

/* Responsive for Price Table */
@media (max-width: 768px) {

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.3rem;
        font-size: 0.75rem;
    }

    .price-table td:first-child {
        font-size: 0.7rem;
    }

    .other-price-grid {
        grid-template-columns: 1fr;
    }
}

/* Flow Timeline */
.flow-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.flow-step {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    aspect-ratio: 4/3;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.flow-step:hover .step-image img {
    transform: scale(1.05);
}

.step-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.step-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: var(--color-light);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.step-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .flow-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .flow-timeline {
        grid-template-columns: 1fr;
    }

    .flow-step {
        aspect-ratio: 3/2;
    }
}


/* Features */
.feature-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Rich Section Divider - Default */
.section-padding {
    position: relative;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            var(--color-primary) 50%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%);
    box-shadow: 0 0 10px rgba(215, 30, 22, 0.3);
    z-index: 1;
}

/* Remove horizontal divider for specific sections */
#obd.section-padding::before,
#insurance.section-padding::before,
#compliance.section-padding::before {
    display: none;
}

/* Reduce spacing between related sections */
#obd.section-padding,
#insurance.section-padding,
#compliance.section-padding {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Policy Section - Unified Background */
.policy-section {
    background-color: #f9f9f9;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    /* Subtle dot pattern */
    position: relative;
}

/* Add a subtle noise texture overlay for premium feel */
.policy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

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

.policy-section>.section-watermark {
    z-index: 0;
    pointer-events: none;
}

/* Subtle variations for visual rhythm but almost imperceptible */
#quality.policy-section {
    padding-top: 6rem !important;
    padding-bottom: 4rem !important;
}

#obd.policy-section,
#insurance.policy-section,
#compliance.policy-section {
    background: transparent;
    /* Allow the pattern to flow through */
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.policy-main-title {
    margin-bottom: 5rem;
    font-size: 4rem;
    /* Larger, more editorial */
    letter-spacing: 0.05em;
    color: var(--color-dark);
}

/* Short Vertical Connectors (Section Links) */
#price,
#flow,
#quality,
#obd,
#insurance,
#compliance,
#shop,
#faq,
#testimonials,
#contact {
    position: relative;
    z-index: 10;
    overflow: visible;
    /* Ensure connectors sticking out are visible */
}

#price::before,
#flow::before,
#quality::before,
#obd::before,
#insurance::before,
#compliance::before,
#shop::before,
#faq::before,
#testimonials::before,
#contact::before {
    content: '';
    position: absolute;
    top: -80px;
    /* Bridge the gap (half of 160px) */
    left: 50%;
    margin-left: 880px;
    /* Moved significantly further right (was 740px) */
    width: 1px;
    height: 160px;
    /* Cover padding-bottom of prev + padding-top of current */
    background: #000;
    z-index: 1000;
    /* Ensure visibility */
    display: block;
    pointer-events: none;
    opacity: 0.8;
}

/* Adjust for dark sections where black line might be invisible */
#contact::before {
    background: linear-gradient(to bottom, #000 50%, rgba(255, 255, 255, 0.5) 50%);
}

/* Specific fix for PRICE section to ensure connection from REASONS */
#price::before {
    display: none;
}

/* Adjust for sections following dark sections */
#flow::before,
#faq::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 50%, #000 50%);
}

/* Remove previous bottom connectors */
#reasons {
    position: relative;
}

#reasons::before {
    display: none;
}

/* Remove continuous lines */
#reasons::after,
#obd::after,
#insurance::after,
#compliance::after {
    display: none;
}

/* Remove previous container-based lines */
#obd .container::after,
#insurance .container::after,
#compliance .container::after,
#obd .container::before,
#insurance .container::before,
#compliance .container::before {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1240px) {

    #price::before,
    #insurance::before,
    #compliance::before {
        left: auto;
        right: 2rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    #price::before,
    #insurance::before,
    #compliance::before {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 1240px) {

    #obd::before,
    #insurance::before {
        left: auto;
        right: 2rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    #obd::before,
    #insurance::before {
        display: none;
    }
}

.feature-text {
    flex: 1;
}

.section-title-left {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(120deg, transparent 0%, transparent 60%, var(--color-secondary) 60%, var(--color-secondary) 100%);
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: 0 90%;
}

/* Shop Section Background */
#shop {
    position: relative;
}

#shop.section-padding {
    padding-top: 4rem !important;
}

#shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/DSC09788.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

#shop>.container {
    position: relative;
    z-index: 2;
}

#shop>.section-watermark {
    z-index: 0;
}

/* Shop & Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    padding: 3rem;
}

.shop-card {
    display: flex;
    gap: 3rem;
    color: var(--color-dark);
    background:
        radial-gradient(ellipse at 0% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(248, 248, 248, 0.5) 0%, transparent 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--color-primary) 0%,
            var(--color-secondary) 50%,
            var(--color-primary) 100%);
    opacity: 0.8;
}

.shop-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.shop-card:hover::after {
    opacity: 1;
}

.shop-info {
    flex: 1;
}

.shop-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.shop-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 1.2rem;
    background: linear-gradient(135deg,
            var(--color-dark) 0%,
            #4a4a4a 50%,
            var(--color-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg,
            var(--color-secondary) 0%,
            rgba(255, 193, 7, 0.3) 100%);
}

.shop-info h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--color-secondary);
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.address {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-map {
    background: #4285F4;
    color: #fff;
    margin-top: 2rem;
}

/* Map Embed */
.map-embed {
    margin-top: 2rem;
}

.map-embed iframe {
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-dark);
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
}

/* Testimonials */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    /* Space for scrollbar or shadow */
    padding-right: 2rem;
    /* Ensure last item is visible */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 100%;
    /* Mobile: 1 item */
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        /* Tablet: 2 items */
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.33rem);
        /* Desktop: 3 items */
        scroll-snap-align: start;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-light);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.testimoni.main-nav ul {
    display: flex;
    gap: 1rem;
    /* Reduced from 2rem or default */
    list-style: none;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-rating {
    color: var(--color-secondary);
}

/* Contact CTA */
.contact-wrapper {
    text-align: center;
}

.contact-lead {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.cta-group-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--color-light);
}

.cta-button-large:hover {
    background: var(--color-primary);
    transform: translateY(-10px);
    border-color: var(--color-primary);
}

/* Web form button specific styling */
.cta-button-large.cta-form:hover {
    background: #2196F3;
    border-color: #2196F3;
}

.cta-button-large .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button-large .text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cta-button-large .sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* LINE button specific styling */
.cta-button-large.cta-line {
    border: 1px solid rgba(6, 199, 85, 0.15);
}

.cta-button-large.cta-line:hover {
    background: #06C755;
    border-color: #06C755;
}

/* Footer */
.site-footer {
    background:
        radial-gradient(ellipse 100% 80% at 50% -20%,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 30%,
            transparent 60%),
        radial-gradient(ellipse 70% 60% at 15% -10%,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 40%,
            transparent 70%),
        radial-gradient(ellipse 70% 60% at 85% -10%,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 40%,
            transparent 70%),
        radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 50%),
        linear-gradient(180deg,
            #1a1a1a 0%,
            #0d0d0d 30%,
            #000000 70%,
            #000000 100%);
    color: #fff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.6) 25%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.6) 75%,
            rgba(255, 255, 255, 0.2) 90%,
            transparent 100%);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2),
        0 3px 15px rgba(255, 255, 255, 0.15);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 40%,
            transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-en);
    font-size: 3rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h3 {
    font-family: var(--font-en);
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

/* For news-detail.html footer */
.footer-copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

/* FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    opacity: 1;
    pointer-events: auto;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 0, 51, 0.4);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-main.fab-with-text {
    width: auto;
    height: 50px;
    border-radius: 25px;
    padding: 0 1.5rem;
    gap: 0.5rem;
    font-size: 1.2rem;
    animation: fabPulse 4s ease-in-out infinite, fabGlow 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.fab-main.fab-with-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    animation: fabShine 8s ease-in-out infinite;
}

.fab-text {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-ja);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.fab-main:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes fabPulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes fabGlow {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(255, 0, 51, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(255, 0, 51, 0.6), 0 0 20px rgba(255, 0, 51, 0.3);
    }
}

@keyframes fabShine {

    0%,
    80%,
    100% {
        transform: translateX(-100%) rotate(45deg);
    }

    90% {
        transform: translateX(100%) rotate(45deg);
    }
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-container:hover .fab-options,
.fab-container.active .fab-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

/* Phone button - White/Gray */
.fab-option.fab-phone {
    background: #fff;
    color: var(--color-dark);
}

.fab-option.fab-phone:hover {
    background: #f5f5f5;
    transform: scale(1.1);
}

/* Web button - Blue */
.fab-option.fab-web {
    background: #2196F3;
    color: #fff;
}

.fab-option.fab-web:hover {
    background: #1976D2;
    transform: scale(1.1);
}

/* LINE button - Green */
.fab-option.fab-line {
    background: #06C755;
    color: #fff;
}

.fab-option.fab-line:hover {
    background: #05A847;
    transform: scale(1.1);
}

.fab-option::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}

.fab-option:hover::after {
    opacity: 1;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    /* Fallback */
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.modal-title {
    font-family: var(--font-en);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.span-2 {
    grid-column: span 2;
}

.form-group label {
    font-weight: bold;
    font-size: 0.9rem;
}

.required {
    color: var(--color-primary);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    background: #f9f9f9;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.cta-submit {
    background: var(--color-primary);
    color: #fff;
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.mobile-menu-panel.active {
    transform: translateY(0);
}

.main-nav-mobile ul {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.main-nav-mobile a {
    color: var(--color-light);
    font-size: 1.3rem;
    font-family: var(--font-en);
}

.main-nav-mobile small {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-ja);
    color: #888;
    margin-top: 0.3rem;
}

.mobile-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Header scroll behavior */
.site-header.header-hidden {
    transform: translateY(-100%);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 20px;
        justify-content: flex-start;
        height: 100%;
        gap: 0.8rem;
    }

    .hero-title {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .hero-cta-group {
        margin-top: 0.5rem;
    }

    .hero-btn-row {
        flex-direction: row;
        gap: 0.5rem;
    }

    .hero-btn-row .hero-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .fab-container {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .fab-container.fab-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .table-scroll-hint {
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #888;
        margin-top: 0.8rem;
        animation: scrollHintPulse 2s ease-in-out infinite;
    }

    @keyframes scrollHintPulse {

        0%,
        100% {
            opacity: 0.6;
        }

        50% {
            opacity: 1;
        }
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: inline !important;
    }

    .section-title {
        flex-direction: column;
        gap: 0.3rem;
    }

    .section-title .en {
        display: block;
        font-size: 2rem;
    }

    .section-title .ja {
        display: block;
        font-size: 1rem;
        margin-top: 0.3rem;
    }

    .reason-message {
        flex-direction: column;
        padding: 0;
    }

    .reason-message .message-image {
        width: 100% !important;
        height: 200px !important;
        border-radius: 16px 16px 0 0 !important;
    }

    .reason-message .bento-content {
        padding: 1.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .span-2,
    .span-3 {
        grid-column: span 1;
    }

    .flow-timeline::before {
        left: 20px;
    }

    .flow-step {
        flex-direction: column;
        padding-left: 40px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        position: absolute;
        left: -10px;
        top: 0;
    }

    .step-content::before {
        display: none;
    }

    .feature-content {
        flex-direction: column;
    }

    .feature-reverse {
        flex-direction: column;
    }

    .shop-card {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.span-2 {
        grid-column: span 1;
    }

    /* Footer mobile centering */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .link-group {
        text-align: center;
    }

    .link-group ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Message Circle (Japanese Text Only) - Brand Aligned Cool Design */
.hero-message-circle {
    position: relative;
    width: 340px;
    height: 340px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    box-shadow:
        0 0 50px rgba(255, 0, 51, 0.5),
        0 0 100px rgba(255, 0, 51, 0.3),
        inset 0 -50px 80px rgba(0, 0, 0, 0.2);
    animation: pulse-circle-subtle 4s infinite alternate ease-in-out;
    z-index: 1;
}

/* Subtle rotating accent ring */
.hero-message-circle::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: spin-slow 15s linear infinite;
    opacity: 0.7;
}

/* Inner highlight ring */
.hero-message-circle::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-message-circle .hero-subtitle {
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.9;
    width: 85%;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3);
    margin: 0;
    background: none;
    padding: 0;
    position: relative;
    z-index: 10;
    letter-spacing: 0.03em;
}

/* Subtle pulse animation */
@keyframes pulse-circle-subtle {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 50px rgba(255, 0, 51, 0.5),
            0 0 100px rgba(255, 0, 51, 0.3),
            inset 0 -50px 80px rgba(0, 0, 0, 0.2);
    }

    100% {
        transform: scale(1.05);
        box-shadow:
            0 0 60px rgba(255, 0, 51, 0.6),
            0 0 120px rgba(255, 0, 51, 0.4),
            inset 0 -50px 80px rgba(0, 0, 0, 0.25);
    }
}

/* Slow rotation */
@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .hero-message-circle {
        width: 290px;
        height: 290px;
        margin: 1.5rem auto;
    }

    .hero-message-circle .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}

/* Article Card Styles */
.article-card {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3.5rem 4rem;
    color: var(--color-dark);
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--color-primary) 0%,
            var(--color-secondary) 50%,
            var(--color-primary) 100%);
    box-shadow: 0 2px 8px rgba(215, 30, 22, 0.3);
}

.article-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.article-date {
    display: inline-block;
    font-size: 1rem;
    color: #888;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.article-content {
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 2rem;
}

.article-footer {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #ddd;
}

.article-footer .cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.article-footer .cta-button:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .article-card {
        padding: 2.5rem 2rem;
    }

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

    .article-content {
        font-size: 1rem;
    }
}

/* Lightbox */
.lightbox-trigger {
    position: relative;
    display: block;
    cursor: zoom-in;
}

.lightbox-trigger .zoom-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-trigger:hover .zoom-icon {
    opacity: 1;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Payment Section */
.payment-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-light);
}

.payment-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.payment-image {
    flex-shrink: 0;
    width: 300px;
}

.payment-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.payment-text {
    flex: 1;
}

.payment-text>p:first-child {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.payment-methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.payment-methods li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.payment-methods li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.payment-methods li strong {
    color: var(--color-light);
    font-size: 1.05rem;
}

.payment-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .payment-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-image {
        width: 200px;
        margin: 0 auto;
    }

    .payment-methods li {
        text-align: left;
    }
}

/* Payment Link in Flow */
.payment-link {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.payment-link:hover {
    color: var(--color-light);
}

/* Glass card padding fix for feature sections */
.feature-text.glass-card {
    padding: 3rem;
}

/* Reason Message Card */
.reason-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: stretch;
    gap: 0;
    background:
        /* Top-left strong spotlight (White/Cool) */
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        /* Bottom-right ambient glow (Warm/Gold hint) */
        radial-gradient(circle at 100% 100%, rgba(249, 216, 0, 0.08) 0%, transparent 40%),
        /* Center subtle depth */
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        /* Base dark color */
        #080808;
    color: var(--color-light);
    padding: 0;
    border-radius: var(--border-radius);
    /* Premium Glass/Metallic Border */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        /* Deep drop shadow */
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    /* Inner glow */
    overflow: hidden;
    position: relative;
}

/* Add a subtle sheen animation */
.reason-message::before {
    content: '';
    position: absolute;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.reason-message::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.reason-message .message-image {
    flex-shrink: 0;
    width: 45%;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.reason-message .message-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.reason-message .message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reason-message .message-image a:hover img {
    transform: scale(1.05);
}

.reason-message .message-image .zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-message .message-image a:hover .zoom-icon {
    opacity: 1;
}

.reason-message .bento-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reason-message .bento-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.reason-message .bento-content p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.section-divider-car {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 240px;
    z-index: 10;
}

.section-divider-car img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .section-divider-car {
        width: 150px;
        right: 3%;
    }
}

@media (max-width: 768px) {
    .reason-message {
        flex-direction: column;
        text-align: center;
    }

    .reason-message .message-image {
        width: 150px;
        height: 150px;
    }

    .reason-message .bento-content h3 {
        font-size: 1.5rem;
    }
}

/* ニュース一覧ページ */
.news-list-page {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.news-list-page .section-header {
    margin-bottom: 2rem;
}

.back-to-top {
    margin-bottom: 2rem;
}

.back-to-top.bottom {
    margin-top: 3rem;
    margin-bottom: 0;
}

.back-to-top a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.back-to-top a:hover {
    opacity: 0.7;
}

.news-list-full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item-full {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.news-item-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.news-item-full .news-date {
    font-size: 0.85rem;
    color: #666;
    flex-shrink: 0;
}

.news-item-full .news-category {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.news-item-full .news-title {
    flex: 1;
    font-weight: 500;
}

.no-news {
    text-align: center;
    color: #666;
    padding: 3rem;
}

@media (max-width: 768px) {
    .news-list-page {
        padding: 100px 0 60px;
    }

    .news-item-full {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .news-item-full .news-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .reason-message .bento-content {
        padding: 1.5rem;
    }
}/* Price Title Row for Alignment */
.price-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    width: 100%;
}

.price-title-row .price-table-title {
    margin-bottom: 0;
    text-align: left;
}

.price-title-row .tax-note {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-weight: bold;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .price-title-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .price-title-row .price-table-title {
        text-align: center;
    }

    .price-title-row .tax-note {
        margin-left: 0;
    }
}