/* CSS Variables */
:root {
    /* Colors */
    --primary-gradient: linear-gradient(145deg, #B5CAD3 0%, #5F6983 100%);
    --secondary-gradient: linear-gradient(135deg, #B5CAD3 0%, #5F6983 100%);
    --white: #fff;
    --dark-gray: #333;
    --medium-gray: #666;
    --light-gray: #F8F9FA;
    --border-color: #E9ECEF;
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Section Spacing - 統一されたセクション間隔 */
    --section-padding: 100px 0;
    --section-padding-mobile: 80px 0;
    --section-margin-bottom: 0;
    --section-max-width: 1200px;
    --section-padding-horizontal: 30px;
    --section-padding-horizontal-mobile: 20px;
    
    /* Content Spacing */
    --content-spacing-xs: 10px;
    --content-spacing-sm: 15px;
    --content-spacing-md: 25px;
    --content-spacing-lg: 40px;
    --content-spacing-xl: 60px;
    
    /* Typography Scale - 統一された文字サイズ規則 */
    --text-xs: 12px;      /* 注釈、小さなテキスト */
    --text-sm: 14px;      /* 本文小、サブタイトル */
    --text-base: 16px;    /* 本文標準 */
    --text-lg: 18px;      /* 本文大 */
    --text-xl: 20px;      /* 小見出し */
    --text-2xl: 24px;     /* 中見出し */
    --text-3xl: 28px;     /* 大見出し */
    --text-4xl: 32px;     /* 特大見出し */
    --text-5xl: 36px;     /* メインタイトル */
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
}

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
body {
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    color: var(--dark-gray);
    background-color: #F8F9FA;
    overflow-x: hidden;
}

/* 統一されたセクションスタイル */
.section {
    padding: var(--section-padding);
    margin-bottom: var(--section-margin-bottom);
}

.section-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--section-padding-horizontal);
}

/* 統一されたタイポグラフィスタイル */
h1, .h1 {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: var(--content-spacing-lg);
}

h2, .h2 {
    font-family: var(--font-secondary);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: var(--content-spacing-lg);
}

h3, .h3 {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: var(--line-height-normal);
    margin-bottom: var(--content-spacing-md);
}

h4, .h4 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: var(--line-height-normal);
    margin-bottom: var(--content-spacing-sm);
}

p, .p {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--content-spacing-md);
}

.small-text {
    font-size: var(--text-sm);
    line-height: var(--line-height-normal);
}

.xs-text {
    font-size: var(--text-xs);
    line-height: var(--line-height-normal);
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

/* コンテナ */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        max-width: 390px;
        padding: 0 20px;
    }
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-gradient);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 60px;
}

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

.logo {
    height: 40px;
}

.logo-img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-icon {
    width: 11px;
    height: 1px;
    background: #fff;
    position: relative;
}

.dropdown-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 5px;
    width: 1px;
    height: 11px;
    background: #fff;
}

.cart-icon {
    width: 53px;
    height: 33px;
    color: #fff;
}

/* モバイル用のナビゲーション */
@media (max-width: 768px) {
    .header {
        height: 60px;
    }
    
    .header-container {
        max-width: 390px;
        padding: 0 20px;
    }
    
    .logo {
        height: 35px;
    }
    
    .nav {
        display: none;
    }
    
    .cart-icon {
        width: 24px;
        height: 24px;
    }
    
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 42px;
        height: 42px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .hamburger-menu span {
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }
    
    /* モバイル用フォントサイズ調整 */
    .section-title {
        font-size: 19.2px; /* 24px * 0.8 */
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .solution-title {
        font-size: 25.6px; /* 32px * 0.8 */
    }
    
    .solution-subtitle {
        font-size: 16px; /* 20px * 0.8 */
    }
    
    .problem-item p,
    .customer-type h3,
    .benefit-item h3,
    .detail-item h3,
    .achievement-item h3 {
        font-size: 16px; /* 18-20px * 0.8 */
    }
    
    .problem-item p,
    .customer-type p,
    .benefit-item p,
    .detail-item p,
    .achievement-item p {
        font-size: 14px; /* 16px * 0.875 */
    }
    
    /* モバイル用お悩みセクション */
    .problems-title {
        font-size: 19.2px; /* 24px * 0.8 */
        margin-bottom: 40px;
    }
    
    .problem-text {
        font-size: 16px; /* 18px * 0.89 */
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .problems-content {
        max-width: 320px;
        padding: 0 20px;
    }
    
    
    .customer-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .franchise-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* モバイル用ソリューションセクション */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-item {
        gap: 12px;
    }
    
    .solution-icon {
        width: 32px;
        height: 32px;
    }
    
    .solution-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .solution-text p {
        font-size: 14px;
    }
    
    /* モバイル用お客様層セクション */
    .customers-title {
        font-size: 19.2px; /* 24px * 0.8 */
        margin-bottom: 40px;
    }
    
    .customer-text {
        font-size: 16px; /* 18px * 0.89 */
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .customers-content {
        max-width: 320px;
        padding: 0 20px;
    }
    
    /* モバイル用加盟店セクション */
    .franchise-title {
        font-size: 19.2px; /* 24px * 0.8 */
        margin-bottom: 40px;
    }
    
    .franchise-text {
        font-size: 16px; /* 18px * 0.89 */
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .franchise-content {
        max-width: 320px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    /* モバイル用実績セクション */
    .achievements-title {
        font-size: 19.2px; /* 24px * 0.8 */
        margin-bottom: 40px;
    }
    
    .achievement-text {
        font-size: 16px; /* 18px * 0.89 */
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .achievements-content {
        max-width: 320px;
        padding: 0 20px;
    }
}

/* メインコンテンツ */
.main {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main {
        margin: 0 auto;
    }
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 1052px;
    background: linear-gradient(145deg, #B5CAD3 0%, #5F6983 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        height: 582px;
        background: linear-gradient(118deg, #B5CAD3 0%, #5F6983 100%);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 88px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (min-width: 769px) {
    .hero-indicators {
        right: 88px;
        left: auto;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        flex-direction: column;
    }
}

.indicator {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
}

/* ショップリストセクション */
.shop-list-section {
    background: linear-gradient(-15deg, #BACED6 1%, #8998AA 99%);
    padding: 156px 0 100px;
    position: relative;
}

.shop-list-container {
    position: relative;
    padding: 0 31px;
}

.shop-list-header {
    text-align: center;
    margin-bottom: 61px;
}

.section-title {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2D2D2D;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

.shop-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.shop-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: inset 0px 0px 10.4px 0px rgba(255, 255, 255, 0.3);
}

.shop-item.coming-soon {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E0EAF0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.coming-soon-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 9.3px;
    letter-spacing: 11.18%;
    text-transform: uppercase;
    color: #B5CAD3;
}

.shop-logo {
    max-width: 100%;
    height: auto;
}

.top-button {
    position: absolute;
    bottom: 60px;
    right: 31px;
    width: 59px;
    height: 59px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #5F6983 0%, #B5CAD3 100%);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0px 0px 4.16px 0px rgba(0, 0, 0, 0.25);
    filter: blur(10px);
}

.top-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 5.2%;
    text-transform: uppercase;
    color: #fff;
}

.top-arrow {
    width: 42px;
    height: 46px;
}

/* プロダクトセクション */
.products-section {
    background: linear-gradient(225deg, rgba(95, 105, 131, 0) 11%, rgba(95, 105, 131, 0.84) 86%);
    padding: 83px 0;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #C7D7DD 0%, #B5CAD3 50%, #9CACC9 100%);
    z-index: -1;
}

.products-container {
    padding: 0 20px;
}

.products-header {
    text-align: center;
    margin-bottom: 22px;
}

.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

@media (min-width: 769px) {
    .products-scroll {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.products-scroll::-webkit-scrollbar {
    height: 4px;
}

.products-scroll::-webkit-scrollbar-track {
    background: rgba(181, 202, 211, 0.3);
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #B5CAD3;
    border-radius: 2px;
}

.product-item {
    flex-shrink: 0;
    width: 157px;
    height: 37px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-label {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12.4px;
    letter-spacing: 10.9%;
    text-transform: uppercase;
    color: #fff;
}

.product-image {
    width: 37px;
    height: 37px;
    object-fit: cover;
    border-radius: 4px;
}

/* 商品詳細セクション */
.product-details-section {
    background: #fff;
    padding: 84px 0 88px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #B5CAD3;
    border-left: 1px solid #B5CAD3;
}

@media (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-detail-card {
    border-right: 1px solid #B5CAD3;
    border-bottom: 1px solid #B5CAD3;
    padding: 24px 20px;
    background: linear-gradient(135deg, #fff 0%, #F8F9FA 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.product-detail-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-detail-card:nth-child(2) {
    border-left: 1px solid #B5CAD3;
}

.product-detail-card:nth-child(3) {
    border-top: 1px solid #B5CAD3;
}

.product-detail-card:nth-child(4) {
    border-left: 1px solid #B5CAD3;
    border-top: 1px solid #B5CAD3;
}

.product-image-container {
    margin-bottom: 16px;
    background: rgba(95, 105, 131, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.product-detail-image {
    width: 100%;
    max-width: 164px;
    height: auto;
    object-fit: cover;
}

.product-info {
    text-align: left;
}

.product-category {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12.5px;
    color: #fff;
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14.6px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 24px;
}

.product-spec {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.product-size {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14.6px;
    color: #fff;
}

.product-unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12.5px;
    color: #fff;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.price {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14.6px;
    color: #fff;
}

.tax {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10.4px;
    color: #fff;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-button {
    width: 100%;
    height: 27px;
    background: rgba(95, 105, 131, 0.3);
    border: none;
    border-radius: 0;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 11.4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.detail-button:hover {
    background: rgba(95, 105, 131, 0.5);
}

.purchase-button {
    width: 100%;
    height: 35px;
    background: #5F6983;
    border: none;
    border-radius: 0;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: inset 0px 0px 4px 0px rgba(181, 202, 211, 0.8);
    transition: background 0.3s ease;
}

.purchase-button:hover {
    background: #4A5568;
}

.cart-icon {
    width: 19px;
    height: 19px;
}

/* 注釈 */
.product-notes {
    padding: 16px 20px 0;
    background: #fff;
}

.note-item {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.note-mark {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10.4px;
    color: #fff;
    flex-shrink: 0;
}

.note-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10.4px;
    color: #fff;
}

/* Aboutセクション */
.about-section {
    background: linear-gradient(204deg, #AFC4CE 0%, #646F88 100%);
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .about-section {
        padding: 355px 0 1736px;
        background: linear-gradient(243deg, #AFC4CE 0%, #646F88 100%);
    }
}

.about-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 31px;
    }
}

.about-content {
    margin-bottom: 60px;
}

.about-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 15.6px;
    line-height: 1.8;
    letter-spacing: 12.82%;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.about-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 15.6px;
    line-height: 1.8;
    letter-spacing: 12.82%;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 16px;
}

.note-reference {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10.4px;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    margin-top: 24px;
}

.more-button {
    width: 100%;
    height: 37px;
    background: rgba(95, 105, 131, 0.2);
    border: none;
    border-radius: 0;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14.6px;
    cursor: pointer;
    box-shadow: inset 0px 0px 4px 0px rgba(255, 255, 255, 1);
    transition: background 0.3s ease;
}

.more-button:hover {
    background: rgba(95, 105, 131, 0.4);
}

.supervisor-section {
    margin-bottom: 60px;
}

.supervisor-image {
    text-align: center;
    margin-bottom: 32px;
}

.supervisor-photo {
    width: 126px;
    height: 114px;
    object-fit: cover;
    border: 1px solid #B5CAD3;
    border-radius: 8px;
}

.supervisor-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13.5px;
    letter-spacing: 14.81%;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
}

.supervisor-quote {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16.6px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
}

.supervisor-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12.5px;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 16px;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.gallery-item {
    flex-shrink: 0;
    border: 1px solid #B5CAD3;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ギフトセットセクション */
.gift-sets-section {
    background: #F4F8FA;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .gift-sets-section {
        padding: 83px 0 1469px;
    }
}

.gift-sets-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

@media (max-width: 768px) {
    .gift-sets-container {
        padding: 0 31px;
    }
}

.gift-sets-container .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--font-sm);
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 50px;
    line-height: 1.6;
}

.gift-sets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .gift-sets-grid {
        display: flex;
        flex-direction: column;
    }
}

.gift-set-card {
    background: linear-gradient(180deg, #BED1D9 0%, #788499 100%);
    border-radius: 0;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}

.gift-set-image {
    text-align: center;
    margin-bottom: 32px;
    background: rgba(95, 105, 131, 0.1);
    border-radius: 0;
    padding: 27px;
}

.gift-image {
    width: 208px;
    height: 208px;
    object-fit: cover;
    border-radius: 8px;
}

.gift-set-type {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12.5px;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}

.gift-set-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 15.6px;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.gift-set-contents {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 9.4px;
    letter-spacing: 19.15%;
    color: #fff;
    margin-bottom: 8px;
}

.gift-set-list {
    list-style: none;
    margin-bottom: 24px;
}

.gift-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12.5px;
    color: #fff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(181, 202, 211, 0.5);
}

.gift-item:last-child {
    border-bottom: none;
}

.gift-set-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.gift-set-card .purchase-button {
    margin: 0 auto;
    max-width: 276px;
}

/* Instagramセクション */
.instagram-section {
    background: #fff;
    padding: 100px 0;
}

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

.instagram-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

@media (max-width: 768px) {
    .instagram-container {
        padding: 0 31px;
    }
}

.instagram-container .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 70px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

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

.instagram-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-section .more-button {
    background: rgba(181, 202, 211, 0.1);
    color: #5F6983;
    box-shadow: inset 0px 0px 4px 0px rgba(181, 202, 211, 1);
    max-width: 270px;
    margin: 0 auto;
    display: block;
}

/* ===== LUCEエクステ加盟店サイト用スタイル ===== */

/* ファーストビューセクション */
.luce-hero {
    background: linear-gradient(135deg, #B5CAD3 0%, #5F6983 100%);
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #5F6983;
    color: #fff;
    box-shadow: 0px 4px 12px rgba(95, 105, 131, 0.3);
}

.cta-button.primary:hover {
    background: #4A5568;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(95, 105, 131, 0.4);
}

.cta-button.secondary {
    background: #B5CAD3;
    color: #222;
    box-shadow: 0px 4px 12px rgba(181, 202, 211, 0.3);
}

.cta-button.secondary:hover {
    background: #A0B3C1;
    transform: translateY(-2px);
}

.cta-button.final {
    background: #06C755;
    color: #fff;
    font-size: 20px;
    padding: 20px 40px;
    box-shadow: 0px 4px 12px rgba(6, 199, 85, 0.3);
}

.cta-button.final:hover {
    background: #05A647;
    transform: translateY(-2px);
}

.placeholder-image {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

/* お悩みセクション */
.problems-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--white);
}

.problems-title {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: var(--text-xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--content-spacing-xl);
}

.problems-content {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--section-padding-horizontal);
}

.problem-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--content-spacing-md);
    line-height: var(--line-height-relaxed);
    text-align: left;
}


.solution-intro {
    background: #5F6983;
    padding: var(--content-spacing-xl);
    border-radius: 0;
    color: var(--white);
    margin-top: var(--content-spacing-lg);
}

.solution-title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--content-spacing-md);
    letter-spacing: 0.02em;
    color: var(--white);
}

.solution-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--content-spacing-lg);
    color: var(--white);
    opacity: 0.9;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--content-spacing-md);
}

.solution-item {
    display: flex;
    align-items: center;
    gap: var(--content-spacing-sm);
    text-align: left;
}

.solution-icon {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.solution-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.solution-text {
    flex: 1;
}

.solution-text p {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    line-height: var(--line-height-normal);
    color: var(--white);
    margin: 0;
}

/* お客様層セクション */
.customers-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--white);
}

.customers-title {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: var(--text-xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--content-spacing-xl);
}

.customers-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--text-sm);
    text-align: center;
    color: var(--white);
    margin-bottom: var(--content-spacing-xl);
    line-height: var(--line-height-normal);
    opacity: 0.9;
}

.customers-content {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--section-padding-horizontal);
}

.customer-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--content-spacing-md);
    line-height: var(--line-height-relaxed);
    text-align: left;
}


/* SENSE独自技法セクション */
.sense-benefits-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.sense-benefits-section .section-title {
    color: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--content-spacing-lg);
}

.benefit-item {
    background: var(--white);
    padding: var(--content-spacing-lg);
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 50%;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 2;
}

.benefit-item h3 {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--content-spacing-sm);
}

.benefit-highlight {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 700;
    color: #5F6983;
    margin-bottom: var(--content-spacing-xs);
}

.benefit-note {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: var(--medium-gray);
    font-style: italic;
}

/* ルーチェの説明セクション */
.luce-explanation-section {
    padding: var(--section-padding);
    background: var(--white);
}

.luce-explanation-section .section-title {
    color: var(--dark-gray);
}

.luce-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--content-spacing-xl);
}

.merits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--content-spacing-md);
    margin-top: var(--content-spacing-lg);
}

.merit-item {
    background: var(--white);
    padding: var(--content-spacing-md);
    border-radius: 0;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.merit-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B5CAD3, #5F6983);
    border-radius: 50%;
    color: white;
    margin: 0 auto 12px;
    box-shadow: 0 6px 20px rgba(95, 105, 131, 0.3);
}

.merit-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
}

.merit-item p {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: var(--dark-gray);
}

.luce-colors h3 {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--content-spacing-sm);
}

.color-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--content-spacing-md);
    margin-top: var(--content-spacing-md);
}

.color-sample {
    background: #fff;
    border: 2px dashed #B5CAD3;
    border-radius: 0;
    padding: 40px;
    text-align: center;
    color: #666;
}

/* サポート体制セクション */
.support-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.support-section .section-title {
    color: var(--dark-gray);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--content-spacing-lg);
}

.support-item {
    background: var(--secondary-gradient);
    padding: var(--content-spacing-xl);
    border-radius: 0;
    color: var(--white);
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B5CAD3, #5F6983);
    border-radius: 50%;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(95, 105, 131, 0.3);
}

.support-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 2;
}

.support-item h3 {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--content-spacing-md);
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--content-spacing-xs);
    padding-left: var(--content-spacing-sm);
    position: relative;
}

.support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* 加盟店についてセクション */
.franchise-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-gradient);
    color: var(--white);
}

.franchise-title {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: var(--text-xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--content-spacing-xl);
}

.franchise-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--text-sm);
    text-align: center;
    color: var(--white);
    margin-bottom: var(--content-spacing-xl);
    line-height: var(--line-height-normal);
    opacity: 0.9;
}

.franchise-content {
    max-width: var(--section-max-width);
    margin: 0 auto var(--content-spacing-xl);
    padding: 0 var(--section-padding-horizontal);
}

.franchise-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--content-spacing-md);
    line-height: var(--line-height-relaxed);
    text-align: left;
}

.franchise-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.detail-item {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 50%;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.detail-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 2;
}

.detail-item h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.detail-item p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.franchise-cta {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.franchise-cta p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

/* 実績・経験セクション */
.achievements-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--white);
}

.achievements-title {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: var(--text-xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--content-spacing-xl);
}

.achievements-content {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--section-padding-horizontal);
}

.achievement-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--content-spacing-md);
    line-height: var(--line-height-relaxed);
    text-align: left;
}

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

.achievement-item {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    border: 1px solid #E9ECEF;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 50%;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.achievement-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 2;
}

.achievement-item h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.achievement-item p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* FAQセクション */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-section .section-title {
    color: var(--dark-gray);
}

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

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark-gray);
    padding: var(--content-spacing-md);
    margin: 0;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.faq-answer {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--medium-gray);
    line-height: var(--line-height-normal);
    padding: var(--content-spacing-md);
    margin: 0;
}

/* 最終CTAセクション */
.final-cta-section {
    padding: var(--section-padding);
    background: var(--secondary-gradient);
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--content-spacing-lg);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-types {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .luce-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .merits-grid {
        grid-template-columns: 1fr;
    }
    
    .franchise-details {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .color-samples {
        grid-template-columns: 1fr;
    }
}

/* フッター */
.footer {
    background: var(--primary-gradient);
    padding: 60px 100px;
    color: var(--white);
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 0 20px 557px;
    }
    
    .footer-container {
        max-width: 350px;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
}

.footer-link-item {
    background: linear-gradient(123deg, #F3EAF3 0%, #FBF4F5 56%, #FDDADA 100%);
    border-radius: 0;
    padding: 30px 16px;
    box-shadow: 0px 3px 11px 1px rgba(181, 181, 181, 0.25);
}

.footer-link-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    width: 50px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    margin-bottom: 4px;
}

.footer-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 10%;
    color: #fff;
}

.footer-social {
    text-align: center;
    margin-bottom: 60px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icon {
    width: 30px;
    height: 30px;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 60px;
}

.footer-copyright p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #fff;
}

.footer-legal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 60px;
}

.legal-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 10%;
    color: #5F6983;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #333;
}

.footer-main-logo {
    text-align: center;
}

.main-logo {
    width: 164px;
    height: 68px;
    object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 390px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .shop-list-section {
        padding: 120px 0 80px;
    }
    
    .about-section {
        padding: 300px 0 1200px;
    }
    
    .gift-sets-section {
        padding: 60px 0 1000px;
    }
    
    .instagram-section {
        padding: 60px 0 800px;
    }
    
    .footer {
        padding: 0 15px 400px;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* スクロールバーのスタイリング */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: rgba(181, 202, 211, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #B5CAD3;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CACC9;
}

/* ========================================
   page-fin.html 専用スタイル
   ======================================== */

/* ロゴの反転処理 */
.logo-img.luce-logo {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.logo-img.luce-logo:hover {
    opacity: 0.8;
}

/* ヒーローセクション（ミニマル版 - 画像のみ） */
.hero-section-minimal {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-fullwidth {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 追加画像セクション */
.additional-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.additional-image-container {
    width: 100%;
    position: relative;
}

.additional-image-fullwidth {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-secondary);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.3;
}

.hero-title-brand {
    display: block;
    font-size: 72px;
    letter-spacing: 0.1em;
    font-weight: 300;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title-sub {
    display: block;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.benefit-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.benefit-value {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.highlight-zero {
    color: #D4AF37;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
    position: relative;
    display: inline-block;
}

.highlight-zero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.luce-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.8s both;
}

.luce-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.6);
}

.cta-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.luce-cta:hover .cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-section-minimal {
        height: 70vh;
        min-height: 400px;
    }
}

/* セクションコンテナ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

/* 問題提起セクション */
.issues-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #F8F9FA 100%);
    position: relative;
}

.issues-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.issues-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.issue-item {
    padding: 20px 24px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-left: 4px solid #B5CAD3;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.issue-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(181, 202, 211, 0.3);
}

.solution-highlight {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD1DC 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.2);
    border: 3px solid #FF6B9D;
    position: relative;
    overflow: hidden;
}

.solution-highlight::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.solution-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #C44569;
    text-shadow: 0 2px 8px rgba(196, 69, 105, 0.3);
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.reasons-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 400;
    color: #5F6983;
    margin-bottom: 30px;
    text-align: center;
}

.reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reason-item {
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 40px;
}

.reason-item::before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: #B5CAD3;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .issues-list,
    .reasons-list {
        grid-template-columns: 1fr;
    }
    
    .solution-title {
        font-size: 24px;
    }
}

/* 顧客層セクション */
.segments-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.segments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #5F6983;
    text-align: center;
    margin-bottom: 60px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.customer-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

.customer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B5CAD3;
}

.card-description {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 4px;
}

.card-benefit {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #C44569;
    font-weight: 600;
    margin-top: 12px;
}

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

/* メリットセクション */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #fff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-name {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.5;
}

.benefit-highlight.featured-number {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD1DC 100%);
    padding: 32px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
    border: 3px solid #FF6B9D;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.benefit-highlight.featured-number::after {
    content: "💰";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    opacity: 0.3;
}

.benefit-amount {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.benefit-price-large {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #C44569;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.price-range {
    font-weight: 600;
    position: relative;
}

.price-range::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C44569, transparent);
}

.price-separator {
    margin: 0 8px;
    font-weight: 300;
}

.price-unit {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    color: #666;
}

.benefit-description {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 12px 0;
}

.benefit-note {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #888;
    font-style: italic;
}

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

/* LUCE説明セクション */
.description-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.subsection-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 400;
    color: #5F6983;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
}

.comparison-wrapper {
    margin: 40px 0 60px;
    text-align: center;
}

.comparison-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 20px;
}

.comparison-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.comparison-caption {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin-top: 16px;
    font-style: italic;
}

.luce-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.luce-description-text {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

/* LUCE技術特徴セクション */
.luce-tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-feature-item {
    background: linear-gradient(135deg, #F8F9FA 0%, #fff 100%);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tech-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    position: relative;
}

.tech-icon-speed::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #2563eb;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 8px;
    transform: rotate(-45deg);
}

.tech-icon-speed::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 0;
    height: 0;
    border-left: 8px solid #2563eb;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.tech-icon-duration::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tech-icon-duration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 6px;
    background: #2563eb;
    margin-top: -4px;
    margin-left: 1px;
}

.tech-icon-quality::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #2563eb;
    border-radius: 50% 0;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
}

.tech-icon-secure::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #2563eb;
    border-radius: 3px 3px 0 0;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.tech-icon-secure::after {
    content: '';
    width: 18px;
    height: 14px;
    border: 2px solid #2563eb;
    border-top: none;
    border-radius: 0 0 4px 4px;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.tech-feature-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tech-feature-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

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

.merit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.merit-card.featured {
    background: linear-gradient(135deg, #fff 0%, #F8F9FA 100%);
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    position: relative;
    overflow: hidden;
}

.merit-card.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #B5CAD3 0%, #5F6983 100%);
}

.merit-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border-color: rgba(212, 175, 55, 0.3);
}

.merit-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
}

.merit-icon::before {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin-top: -2px;
}

.merit-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.merit-description {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .merit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .luce-description-text {
        font-size: 16px;
        padding: 24px;
    }
}

/* サポートセクション */
.support-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #fff 100%);
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.support-content {
    max-width: 900px;
    margin: 0 auto;
}

.support-subtitle {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 400;
    color: #5F6983;
    text-align: center;
    margin-bottom: 40px;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.support-item {
    padding: 24px;
    background: linear-gradient(135deg, #F8F9FA 0%, #fff 100%);
    border-left: 4px solid #B5CAD3;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    position: relative;
    padding-left: 50px;
}

.support-item::before {
    content: "✓";
    position: absolute;
    left: 20px;
    color: #B5CAD3;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 768px) {
    .support-list {
        grid-template-columns: 1fr;
    }
}

/* 加盟店情報セクション */
.franchise-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.franchise-headline {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.franchise-details {
    max-width: 700px;
    margin: 0 auto 50px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.franchise-item {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-bottom: 1px solid #E9ECEF;
}

.franchise-item:last-child {
    border-bottom: none;
}

.franchise-item.highlight-item {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD1DC 100%);
    border-left: 4px solid #FF6B9D;
    border-radius: 8px;
    padding: 24px;
    margin: 12px 0;
}

.franchise-term {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #5F6983;
    margin-bottom: 8px;
}

.franchise-description {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.franchise-description.featured-zero {
    font-size: 28px;
    font-weight: 700;
    color: #C44569;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFD1DC 100%);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid #FF6B9D;
}

.franchise-description.featured-zero-large {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 400;
    color: #C44569;
    text-shadow: 0 2px 8px rgba(196, 69, 105, 0.3);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.franchise-description.featured-time {
    font-size: 32px;
    font-weight: 700;
    color: #5F6983;
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E8F0 100%);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid #B5CAD3;
}

.franchise-note {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.franchise-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.franchise-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.franchise-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.6);
}

/* 実績セクション */
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #fff 100%);
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.achievements-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    background: linear-gradient(135deg, #fff 0%, #F8F9FA 100%);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.achievement-category {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: #5F6983;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.achievement-text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.achievement-year {
    font-family: var(--font-secondary);
    font-size: 56px;
    font-weight: 300;
    color: #5F6983;
    margin: 16px 0;
    text-align: center;
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E8F0 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #B5CAD3;
    display: inline-block;
    min-width: 200px;
}

.achievement-highlight.featured-number {
    text-align: center;
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E8F0 100%);
    border-radius: 16px;
    border: 3px solid #B5CAD3;
    box-shadow: 0 6px 20px rgba(181, 202, 211, 0.3);
}

.achievement-label {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.achievement-number-large {
    font-family: var(--font-secondary);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 300;
    color: #5F6983;
    display: inline-block;
    line-height: 1;
    background: linear-gradient(135deg, #5F6983 0%, #3A4558 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin: 0 8px;
    position: relative;
}

.achievement-number-large::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5F6983, transparent);
}

.achievement-unit {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #666;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .achievements-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-number-large {
        font-size: 48px;
    }
}

/* FAQセクション */
.faq-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
}

.faq-question {
    margin: 0;
}

.faq-button {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background: #F8F9FA;
}

.faq-button::after {
    content: "+";
    font-size: 24px;
    color: #B5CAD3;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-answer[aria-hidden="false"] {
    max-height: 1000px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* 最終CTAセクション */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    text-align: center;
    color: #fff;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.final-cta-section .section-title {
    color: #fff;
    margin-bottom: 20px;
}

.final-cta-section .section-title::after {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.cta-message {
    font-family: var(--font-primary);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.5);
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 107, 157, 0.7);
}

/* カラーバリエーションギャラリー */
.color-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.color-sample {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.color-image {
    width: 100%;
    height: auto;
    display: block;
}

.color-caption {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #888;
    padding: 12px;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .color-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 40px;
    }
    
    .issues-section,
    .segments-section,
    .benefits-section,
    .description-section,
    .support-section,
    .franchise-section,
    .achievements-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .customer-card {
        padding: 16px 12px;
    }
    
    .merit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .achievements-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .luce-tech-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .franchise-description.featured-zero-large {
        font-size: 36px;
    }
    
    .franchise-description.featured-time {
        font-size: 24px;
    }
    
    .achievement-year {
        font-size: 40px;
        min-width: 150px;
    }
    
    .achievement-number-large {
        font-size: 48px;
    }
}


      /* ============================================
           モダンなデザインシステム - 洗練版
           ============================================ */
        
        /* CSS変数定義 - 統一されたデザインシステム */
        :root {
            --color-white: #fff;
            --color-black: #222;
            --color-paleBlue: #b5cad3;
            --color-deepBlue: #5f6983;
            --color-blueGray: #f4f8fa;
            /* 統一グラデーション: linear-gradient(145deg, #B5CAD3 0%, #5F6983 100%) */
            --color-primary: #5f6983;
            --color-primary-dark: #5f6983;
            --color-secondary: #5f6983;
            --color-accent: #5f6983;
            --color-success: #5f6983;
            --color-light-gray: #E8ECEF;
            --color-border: rgba(95, 105, 131, 0.5);
            --unified-gradient: linear-gradient(145deg, #B5CAD3 0%, #5F6983 100%);
            --unified-gradient-reverse: linear-gradient(145deg, #5F6983 0%, #B5CAD3 100%);
            --highlight-number-gradient-default: linear-gradient(145deg, #B5CAD3 0%, #5F6983 100%);
            --highlight-number-gradient-on-dark: linear-gradient(145deg, #ffffff 0%, #fff4cc 45%, #ffd46a 100%);
            --highlight-number-gradient-on-light: linear-gradient(145deg, #142a4a 0%, #1f3b66 45%, #0d1f38 100%);
            
            /* イージング関数 */
            --ease-out-sine: cubic-bezier(0.14, 1, 0.34, 1);
            --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
            
            /* ============================================
               タイポグラフィスケール - 統一された文字サイズ
               ============================================ */
            /* 大サイズ（見出し用） */
            --font-size-3xl: 4rem;       /* 特大見出し（ヒーロータイトル） */
            --font-size-2xl: 3.6rem;     /* 特大見出し（最終CTA） */
            --font-size-xl: 3.2rem;      /* 大見出し（h1、ヒーロータイトル） */
            --font-size-lg: 2.4rem;      /* 中見出し（h2、セクションタイトル） */
            --font-size-md: 2rem;        /* 小見出し（h3、サブタイトル） */
            
            /* 中サイズ（本文・強調用） */
            --font-size-base: 1.6rem;    /* 基本サイズ（本文、ボタン） */
            --font-size-sm: 1.4rem;      /* 小さい本文（注釈、補足） */
            
            /* 小サイズ（詳細・補足用） */
            --font-size-xs: 1.2rem;      /* 最小サイズ（キャプション、フッター） */
            
            /* 行間 */
            --line-height-tight: 1.4;    /* 見出し用 */
            --line-height-normal: 1.8;   /* 本文用 */
            --line-height-relaxed: 2.0;  /* 読みやすさ重視 */
            
            /* ============================================
               スペーシングシステム - 統一された余白
               ============================================ */
            /* セクション間の余白（縦方向） */
            --section-padding-y: 8rem;   /* セクションの上下パディング */
            --section-gap: 6rem;         /* セクション間のギャップ */
            
            /* コンテンツ間の余白（縦方向） */
            --spacing-xxl: 6rem;         /* 特大（セクション内の大ブロック間） */
            --spacing-xl: 4.8rem;        /* 特大（セクション内の大ブロック間） */
            --spacing-lg: 3.2rem;        /* 大（コンテンツブロック間） */
            --spacing-md: 2.4rem;        /* 中（要素間） */
            --spacing-sm: 1.6rem;        /* 小（関連要素間） */
            --spacing-xs: 0.8rem;        /* 最小（密接な要素間） */
            
            /* コンテンツ間の余白（横方向） */
            --spacing-x-lg: 3.2rem;      /* 横方向の大余白 */
            --spacing-x-md: 2.4rem;       /* 横方向の中余白 */
            --spacing-x-sm: 1.6rem;       /* 横方向の小余白 */
            
            /* コンテナの最大幅（全セクション統一） */
            --container-max-width: 120rem; /* 全セクションのコンテンツ最大幅 */
            
            /* コンテナのパディング - モバイルファースト */
            --container-padding-x-mobile: 1.6rem; /* モバイル時の左右パディング（デフォルト） */
            --container-padding-x: 1.6rem;  /* デスクトップ時の左右パディング（後で上書き） */
            
            /* カード・要素の内部パディング - モバイルファースト */
            --card-padding-mobile: 1.6rem; /* モバイル時のカードパディング（デフォルト） */
            --card-padding: 1.6rem;         /* デスクトップ時のカードパディング（後で上書き） */
            --element-padding: 1.2rem;   /* 要素の内部パディング */
            
            /* シャドウ */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
            --shadow-primary: 0 8px 24px rgba(95, 105, 131, 0.2);
            
            /* ボーダー半径 */
            --radius-sm: 0.5rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.5rem;
            --radius-xl: 0.5rem;
            --radius-full: 9999px;
        }
        
        /* ベーススタイルの改善 - モバイルファースト */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        
        html {
            font-size: 62.5%; /* 1rem = 10px */
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            box-sizing: border-box;
        }
        
        body {
            font-size: var(--font-size-base);
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            line-height: 1.8;
            color: var(--color-secondary);
            background: var(--color-white);
            letter-spacing: 0.02em;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            margin: 0;
            width: 100%;
            padding: 0;
            max-width: 100vw;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        
        /* モバイル: はみ出し防止のための包括的な設定（強化版） */
        @media screen and (max-width: 768px) {
            html, body {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
                position: relative;
            }
            
            * {
                max-width: 100%;
            }
            
            section, main, header, footer {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            
            .container,
            .hero-content,
            .problems-content,
            .benefits-grid,
            .solution-grid,
            .customers-content,
            .franchise-content,
            .achievements-content,
            .support-grid,
            .merits-grid,
            .faq-list {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                margin-left: auto;
                margin-right: auto;
            }
            
            /* 特定のグリッドのpaddingを0に */
            .benefits-grid,
            .merits-grid,
            .faq-list {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            
            /* すべてのグリッド要素の幅を制限 */
            .benefit-item,
            .solution-item,
            .merit-item,
            .support-item,
            .customer-item,
            .achievement-text,
            .problem-text,
            .customer-text,
            .franchise-text,
            .faq-item {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            img, svg, video, iframe {
                max-width: 100%;
                height: auto;
                box-sizing: border-box;
            }
            
            /* テキスト要素の自動折り返し（モバイル最適化） */
            p, h1, h2, h3, h4, h5, h6, span, div, li, td, th {
                word-break: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
                line-height: 1.8;
                letter-spacing: 0.02em;
            }
            
            /* 見出しの改行調整 */
            h1, h2, h3, .section-title {
                word-break: break-word;
                overflow-wrap: break-word;
                line-height: 1.6;
            }
            
            /* 本文の改行調整 */
            p {
                word-break: break-word;
                overflow-wrap: break-word;
                line-height: 1.8;
                text-align: left;
            }
            
            /* 中央揃えテキストの改行調整 */
            .text-center,
            [style*="text-align: center"],
            .franchise-text,
            .customer-text,
            .problem-text,
            .achievement-text {
                word-break: break-word;
                overflow-wrap: break-word;
                line-height: 1.8;
                text-align: center;
            }
            
            /* 長いテキストの改行を改善 */
            .benefit-item p,
            .solution-item p,
            .support-content p,
            .customer-label,
            .customer-detail {
                word-break: break-word;
                overflow-wrap: break-word;
                line-height: 1.8;
                text-align: left;
            }
            
            /* リストアイテムの改行調整 */
            li {
                word-break: break-word;
                overflow-wrap: break-word;
                line-height: 1.8;
                text-align: left;
            }
            
            /* ボタンとリンク */
            .cta-button,
            a, button {
                max-width: 100%;
                box-sizing: border-box;
            }
            
            /* flexアイテムの幅を制限 */
            .solution-item,
            .support-item {
                min-width: 0;
            }
            
            .solution-text,
            .support-content {
                min-width: 0;
                flex: 1 1 0;
            }
        }
        
        /* ============================================
           タイポグラフィ - 統一されたスタイル
           ============================================ */
        
        /* 大サイズ - 見出し */
        h1, .h1 {
            font-size: var(--font-size-xl);
            font-weight: 700;
            line-height: var(--line-height-tight);
            letter-spacing: 0.1em;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-lg);
        }
        
        h2, .h2, .section-title {
            font-size: var(--font-size-lg);
            font-weight: 700;
            line-height: var(--line-height-tight);
            letter-spacing: 0.1em;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-lg);
        }
        
        h3, .h3 {
            font-size: var(--font-size-md);
            font-weight: 700;
            line-height: var(--line-height-tight);
            letter-spacing: 0.08em;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-md);
        }
        
        h4, .h4 {
            font-size: var(--font-size-base);
            font-weight: 600;
            line-height: var(--line-height-normal);
            letter-spacing: 0.05em;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-sm);
        }
        
        /* 中サイズ - 本文 */
        p, .text-base {
            font-size: var(--font-size-base);
            line-height: var(--line-height-normal);
            letter-spacing: 0.02em;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-sm);
        }
        
        .text-sm {
            font-size: var(--font-size-sm);
            line-height: var(--line-height-normal);
            letter-spacing: 0.02em;
            color: var(--color-secondary);
        }
        
        /* 小サイズ - 補足・注釈 */
        .text-xs, small {
            font-size: var(--font-size-xs);
            line-height: var(--line-height-normal);
            letter-spacing: 0.02em;
            color: var(--color-secondary);
        }
        
        /* 強調テキスト */
        strong, .text-bold {
            font-weight: 700;
            color: var(--color-secondary);
        }
        
        /* リンク */
        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s var(--ease-out-sine);
        }
        
        a:hover {
            color: var(--color-secondary);
        }
        
        /* ハイライトナンバー - 洗練されたアニメーション */
        .highlight-number {
            font-size: 1.5em;
            font-weight: 700;
            background: var(--highlight-number-gradient, var(--highlight-number-gradient-default));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            position: relative;
            animation: numberGlow 3s ease-in-out infinite;
            background-size: 200% 200%;
        }

        .bg-tone-dark {
            --highlight-number-gradient: var(--highlight-number-gradient-on-dark);
        }

        .bg-tone-light {
            --highlight-number-gradient: var(--highlight-number-gradient-on-light);
        }
        
        @keyframes numberGlow {
            0%, 100% { 
                transform: scale(1);
                filter: brightness(1);
            }
            50% { 
                transform: scale(1.05);
                filter: brightness(1.2);
            }
        }
        
        /* スクロールアニメーション用 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(3rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
        }

        @keyframes lucetBorderGlow {
            0% {
                box-shadow: 0 0 0 5px rgba(181, 202, 211, 0.95),
                            0 0 0 6px rgba(95, 105, 131, 0.95);
            }
            25% {
                box-shadow: 0 0 0 5px rgba(195, 212, 220, 0.88),
                            0 0 0 6px rgba(107, 118, 143, 0.88);
            }
            50% {
                box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.75),
                            0 0 0 6px rgba(255, 255, 255, 0.75);
            }
            75% {
                box-shadow: 0 0 0 5px rgba(195, 212, 220, 0.88),
                            0 0 0 6px rgba(107, 118, 143, 0.88);
            }
            100% {
                box-shadow: 0 0 0 5px rgba(181, 202, 211, 0.95),
                            0 0 0 6px rgba(95, 105, 131, 0.95);
            }
        }
        
        /* CTAボタン - 統一グラデーション適用 */
        .cta-button.primary,
        .cta-button.secondary,
        .cta-button.final {
            background: var(--unified-gradient);
            color: var(--color-white);
            padding: 1.8rem 4rem;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: var(--radius-full);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s var(--ease-out-expo);
            box-shadow: 0 4px 12px rgba(95, 105, 131, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 0;
            letter-spacing: 0.05em;
            min-height: 3.6rem;
            border: 2px solid #5F6983;
            cursor: pointer;
        }
        
        .cta-button.primary::before,
        .cta-button.secondary::before,
        .cta-button.final::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.6s var(--ease-out-expo);
            z-index: -1;
        }
        
        .cta-button.primary::after,
        .cta-button.secondary::after,
        .cta-button.final::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s var(--ease-out-expo);
        }
        
        @media (hover: hover) and (pointer: fine) {
            .cta-button.primary:hover::before,
            .cta-button.secondary:hover::before,
            .cta-button.final:hover::before {
                transform: translate(-50%, -50%) scale(4);
                width: 100%;
                height: 100%;
                opacity: 1;
            }
            
            .cta-button.primary:hover::after,
            .cta-button.secondary:hover::after,
            .cta-button.final:hover::after {
                left: 100%;
            }
            
            .cta-button.primary:hover,
            .cta-button.secondary:hover,
            .cta-button.final:hover {
                background: var(--unified-gradient-reverse);
                border-color: #5F6983;
                transform: translateY(-4px) scale(1.02);
                box-shadow: 0 6px 20px rgba(95, 105, 131, 0.4);
            }
            
            .cta-button.primary:active,
            .cta-button.secondary:active,
            .cta-button.final:active {
                transform: translateY(-2px) scale(0.98);
            }
        }
        
        /* ベネフィットハイライト - 統一されたスタイル */
        .benefit-highlight {
            font-size: var(--font-size-lg);
            font-weight: 700;
            background: var(--unified-gradient);
            color: var(--color-white) !important;
            margin: var(--spacing-md) 0;
            letter-spacing: 0.05em;
            display: inline-block;
            position: relative;
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
            padding: var(--spacing-sm) var(--spacing-md);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }
        
        /* benefit-highlight内のすべての要素を白文字に */
        .benefit-highlight,
        .benefit-highlight *,
        .benefit-highlight .highlight-number,
        .benefit-highlight span,
        .benefit-highlight p {
            color: var(--color-white) !important;
        }
        
        /* モバイル: benefit-highlightの調整 */
        @media screen and (max-width: 768px) {
            .benefit-highlight {
                font-size: var(--font-size-md);
                line-height: 1.7;
                margin: var(--spacing-sm) 0;
                padding: var(--spacing-sm) var(--spacing-md);
            }
        }
        
        .benefit-highlight::after {
            display: none;
        }
        
        .achievement-text {
            font-weight: 400;
            color: var(--color-secondary);
        }
        
        .achievement-text .highlight-number {
            font-weight: 700;
        }
        
        /* ヘッダー画像セクション - 統一されたスタイル（はみ出し防止強化） */
        .header-image-section {
            width: 100%;
            max-width: 100vw;
            position: relative;
            margin: 0;
            padding: 0;
            margin-bottom: 0;
            margin-top: 0;
            overflow-x: hidden;
            overflow-y: visible;
            box-sizing: border-box;
        }
        
        /* ヘッダーの下に空間を作らないようにする（画像が切れないように調整） */
        @media screen and (max-width: 768px) {
            .header-image-section {
                margin-top: calc(-1 * 7rem + 60px); /* bodyのpadding-topを相殺しつつ、ヘッダーの高さ分は残す */
            }
        }
        
        @media screen and (min-width: 769px) {
            .header-image-section {
                margin-top: calc(-1 * 6rem + 60px); /* bodyのpadding-topを相殺しつつ、ヘッダーの高さ分は残す */
            }
        }
        
        .header-image-container {
            width: 100%;
            max-width: var(--container-max-width);
            position: relative;
            overflow: visible;
            box-sizing: border-box;
            margin: 0 auto;
            padding: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .header-image {
            width: 380px;
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            object-position: center;
            box-sizing: content-box;
            margin: 20px 0;
            padding: 0;
        }
        
        /* モバイル: ヘッダー画像を100%幅にする */
        @media screen and (max-width: 768px) {
            .header-image-section {
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100vw !important;
                max-width: 100vw !important;
                position: relative;
                left: 0 !important;
                right: 0 !important;
            }
            
            .header-image-container {
                width: 100vw !important;
                max-width: 100vw !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                position: relative;
                left: 0 !important;
                right: 0 !important;
            }
            
            .header-image {
                width: 100vw !important;
                max-width: 100vw !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                position: relative;
                left: 0 !important;
                right: 0 !important;
            }
        }
        
        .treatment-detail-container {
            width: 100%;
            max-width: 100%;
            text-align: center;
            padding: var(--spacing-xl) var(--container-padding-x-mobile);
            padding-top: var(--spacing-xl);
            padding-bottom: var(--spacing-xl);
            background: var(--color-white);
            border-bottom: 2px solid var(--color-border);
            box-sizing: border-box;
        }
        
        .treatment-detail-image {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: var(--radius-md);
            box-sizing: border-box;
            position: relative;
            border: 5px solid rgba(181, 202, 211, 0.95);
            will-change: border-color;
            transform: translateZ(0);
            backface-visibility: hidden;
            animation: blinkRed 2s ease-in-out infinite !important;
        }
        
        /* モバイル: トリートメント画像の調整 */
        @media screen and (max-width: 768px) {
            .treatment-detail-container {
                padding: var(--spacing-md) var(--container-padding-x-mobile);
            }
            
            .treatment-detail-image {
                width: 100%;
                max-width: 100%;
            }
        }
        
        /* ヒーローセクション - 統一されたスタイル（削除済み、互換性のため残す） */
        .hero-section.luce-hero {
            background: var(--unified-gradient);
            position: relative;
            overflow: hidden;
            padding: var(--section-padding-y) 0;
            min-height: 60vh;
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        /* ============================================
           ヒーローセクション - 統一されたスタイル（モバイルファースト）
           ============================================ */
        
        /* ヒーローコンテンツ - モバイルファースト */
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--color-white);
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 var(--container-padding-x-mobile);
            box-sizing: border-box;
        }
        
        /* デスクトップ: 最大幅とパディングを設定 */
        @media screen and (min-width: 769px) {
            .hero-content {
                max-width: var(--container-max-width);
                padding: 0 var(--container-padding-x);
            }
        }
        
        /* ヒーロータイトル - 統一されたスタイル */
        .hero-title {
            color: var(--color-white);
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
            font-size: var(--font-size-3xl);
            line-height: var(--line-height-tight);
            margin-bottom: var(--spacing-lg);
            letter-spacing: 0.1em;
            font-weight: 700;
        }
        
        /* ヒーローハイライト */
        .hero-highlights {
            margin-bottom: var(--spacing-lg);
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            width: 100%;
            box-sizing: border-box;
        }
        
        .hero-section.luce-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(181, 202, 211, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(95, 105, 131, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, rgba(181, 202, 211, 0.1) 0%, rgba(95, 105, 131, 0.2) 100%);
            z-index: 1;
            pointer-events: none;
            animation: gradientShift 15s ease infinite;
        }
        
        .hero-section.luce-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 1;
            pointer-events: none;
        }
        
        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .hero-section.luce-hero .hero-text,
        .hero-section.luce-hero .hero-text p,
        .hero-section.luce-hero .hero-text h1,
        .hero-section.luce-hero .hero-text h2,
        .hero-section.luce-hero .hero-text h3 {
            color: var(--color-white);
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
        }
        
        /* ハイライトアイテム - 洗練されたガラスモーフィズムスタイル */
        .highlight-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px) saturate(180%);
            -webkit-backdrop-filter: blur(10px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1.2rem 2.4rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--color-white);
            transition: all 0.4s var(--ease-out-expo);
            letter-spacing: 0.05em;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .highlight-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s var(--ease-out-expo);
        }
        
        @media (hover: hover) and (pointer: fine) {
            .highlight-item:hover {
                background: rgba(255, 255, 255, 0.25);
                transform: translateY(-4px) scale(1.05);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
                border-color: rgba(255, 255, 255, 0.5);
            }
            
            .highlight-item:hover::before {
                left: 100%;
            }
        }
        
        /* セクションタイトル - 統一されたスタイル */
        .section-title {
            position: relative;
            padding-bottom: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
            text-align: center;
            font-size: var(--font-size-lg);
            font-weight: 700;
            line-height: 1.6;
            letter-spacing: 0.1em;
            word-break: break-word;
            overflow-wrap: break-word;
            color: var(--color-secondary) !important;
        }
        
        /* 白背景セクションでのsection-titleの色を確実に濃い色に */
        .sense-benefits-section .section-title,
        .problems-section .section-title,
        .customers-section .section-title,
        .franchise-section .section-title,
        .achievements-section .section-title,
        .faq-section .section-title {
            color: var(--color-secondary) !important;
        }
        
        /* ルーチェセクションのみ白文字 */
        .luce-explanation-section .section-title {
            color: var(--color-white) !important;
        }
        
        /* モバイル: section-titleの調整 */
        @media screen and (max-width: 768px) {
            .section-title {
                font-size: var(--font-size-md);
                line-height: 1.7;
                padding-bottom: var(--spacing-sm);
                margin-bottom: var(--spacing-lg);
                letter-spacing: 0.05em;
            }
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 10rem;
            height: 0.4rem;
            background: var(--unified-gradient);
            border-radius: var(--radius-full);
            box-shadow: 0 2px 8px rgba(95, 105, 131, 0.3);
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            bottom: -0.2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 6rem;
            height: 0.2rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: var(--radius-full);
            filter: blur(4px);
        }
        
        /* ============================================
           アイコン統一 - シンプルで一貫性のあるスタイル
           ============================================ */
        .solution-icon,
        .benefit-icon,
        .merit-icon,
        .support-icon {
            width: 2.4rem;
            height: 2.4rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-secondary);
            background: none;
            background-color: transparent;
            box-shadow: none;
            text-shadow: none;
        }
        
        .solution-icon svg,
        .benefit-icon svg,
        .merit-icon svg,
        .support-icon svg {
            width: 2.4rem;
            height: 2.4rem;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            color: var(--color-secondary);
            background: none;
            background-color: transparent;
            box-shadow: none;
            text-shadow: none;
            filter: none;
        }
        
        /* ============================================
           カードアイテム - 統一されたスタイル（モバイルファースト）
           ============================================ */
        
        /* ベネフィットアイテム - 縦レイアウト（はみ出し防止） */
        .benefit-item {
            transition: all 0.4s var(--ease-out-expo);
            padding: var(--card-padding-mobile);
            border-radius: var(--radius-lg);
            background: var(--color-white);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* ソリューションアイテム - モバイル: 横（アイコン左・テキスト右、はみ出し防止） */
        .solution-item {
            transition: all 0.4s var(--ease-out-expo);
            padding: var(--spacing-sm);
            border-radius: var(--radius-lg);
            background: var(--color-white);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: var(--spacing-sm);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .solution-item p {
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.8;
            text-align: left;
            font-size: var(--font-size-base);
            color: var(--color-secondary) !important;
            font-weight: 400;
        }
        
        /* モバイル: ソリューションアイテムのテキスト調整 */
        @media screen and (max-width: 768px) {
            .solution-item {
                flex-wrap: nowrap;
                align-items: center;
            }
            
            .solution-icon {
                align-self: center;
                margin-top: 0;
                margin-bottom: 0;
            }
            
            .solution-item p {
                line-height: 1.9;
                flex: 1 1 auto;
                min-width: 0;
                font-size: 1.4rem;
                padding: 0 var(--spacing-xs);
                color: var(--color-secondary) !important;
            }
        }
        
        .benefit-item p {
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.8;
            text-align: left;
        }
        
        /* benefit-noteのスタイル調整 */
        .benefit-note {
            font-size: var(--font-size-sm);
            color: var(--color-secondary) !important;
            margin-top: var(--spacing-xs);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            font-weight: 500;
        }
        
        /* モバイル: ベネフィットアイテムのテキスト調整 */
        @media screen and (max-width: 768px) {
            .benefit-item p {
                line-height: 1.9;
                padding: 0 var(--spacing-xs);
            }
            
            .benefit-note {
                line-height: 1.8;
                padding: 0 var(--spacing-xs);
                font-size: 1.3rem;
                color: var(--color-secondary) !important;
                font-weight: 500;
            }
        }
        
        /* デスクトップ: パディングとレイアウトを調整 */
        @media screen and (min-width: 769px) {
            .benefit-item {
                padding: var(--card-padding);
            }
            
            .solution-item {
                flex-direction: column;
                padding: var(--spacing-md);
            }
        }
        
        /* ソリューションアイテム内の要素 */
        .solution-icon {
            flex-shrink: 0;
            margin-top: 0.2rem;
            background: none;
            background-color: transparent;
            box-shadow: none;
            text-shadow: none;
        }
        
        .solution-text {
            flex: 1;
            width: 100%;
        }
        
        .solution-text p {
            font-size: var(--font-size-base);
            margin: 0;
            line-height: var(--line-height-normal);
            color: var(--color-secondary);
        }
        
        /* デスクトップ: アイコンのマージン調整 */
        @media screen and (min-width: 769px) {
            .solution-icon {
                margin-top: 0;
                margin-bottom: var(--spacing-xs);
            }
        }
        
        /* ベネフィットアイテム内の要素 */
        .benefit-item .benefit-icon {
            margin-bottom: var(--spacing-sm);
            background: none;
            background-color: transparent;
            box-shadow: none;
            text-shadow: none;
        }
        
        .benefit-item h3 {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-md);
            color: var(--color-secondary) !important;
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
            font-weight: 700;
        }
        
        .benefit-item p {
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-sm);
            line-height: 1.8;
            font-weight: 400;
            text-align: center;
        }
        
        /* モバイル: benefit-item h3の調整 */
        @media screen and (max-width: 768px) {
            .benefit-item h3 {
                font-size: var(--font-size-base);
                line-height: 1.7;
                margin-bottom: var(--spacing-sm);
                color: var(--color-secondary) !important;
            }
        }
        
        .benefit-item p:last-child {
            margin-bottom: 0;
        }
        
        /* ソリューションアイテム内の見出し */
        .solution-item h3 {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-md);
            color: var(--color-secondary);
        }
        
        .benefit-item::before,
        .solution-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--unified-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out-expo);
        }
        
        @media (hover: hover) and (pointer: fine) {
            .benefit-item:hover,
            .solution-item:hover {
                transform: translateY(-8px) scale(1.01);
                box-shadow: var(--shadow-xl);
                border-color: #5F6983;
            }
            
            .benefit-item:hover::before,
            .solution-item:hover::before {
                transform: scaleX(1);
            }
            
            .benefit-item:hover .benefit-icon,
            .solution-item:hover .solution-icon {
                transform: scale(1.1) rotate(5deg);
                color: var(--color-secondary);
            }
        }
        
        /* アイコンのアニメーション */
        .benefit-icon,
        .solution-icon,
        .merit-icon,
        .support-icon {
            transition: all 0.4s var(--ease-out-expo);
            color: var(--color-secondary);
        }
        
        .benefit-icon svg,
        .solution-icon svg,
        .merit-icon svg,
        .support-icon svg {
            transition: all 0.4s var(--ease-out-expo);
            color: currentColor;
        }
        
        /* セクション背景 - 統一されたスタイル（メリハリ強化） */
        .problems-section {
            background: 
                linear-gradient(135deg, #f8f9fa 0%, var(--color-blueGray) 100%),
                radial-gradient(circle at 0% 0%, rgba(181, 202, 211, 0.1) 0%, transparent 50%);
            color: var(--color-secondary);
            padding: var(--section-padding-y) 0;
            position: relative;
            margin-top: 0;
        }
        
        .problems-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .problems-section .problems-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-lg);
            text-align: center;
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.6;
        }
        
        /* モバイル: problems-titleの調整 */
        @media screen and (max-width: 768px) {
            .problems-section .problems-title {
                font-size: var(--font-size-md);
                line-height: 1.7;
                margin-bottom: var(--spacing-md);
            }
        }
        
        /* お悩みセクション - モバイルファースト（はみ出し防止） */
        .problems-content {
            margin-bottom: var(--spacing-xl);
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-sm);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .problems-content .problem-text {
            font-size: var(--font-size-base);
            margin: 0;
            padding: var(--spacing-sm);
            background: var(--color-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--color-border);
            text-align: center;
            transition: all 0.3s var(--ease-out-sine);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 5rem;
            color: var(--color-secondary) !important;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.8;
            font-weight: 500;
        }
        
        /* モバイル: problem-textの改行調整 */
        @media screen and (max-width: 768px) {
            .problems-content .problem-text {
                line-height: 1.9;
                padding: var(--spacing-sm) var(--spacing-xs);
                min-height: auto;
                font-size: 1.4rem;
                color: var(--color-secondary) !important;
            }
            
            /* お悩みセクションのcontainerのpaddingを無しに */
            .problems-section .container {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            
            /* problems-contentにはpaddingを追加 */
            .problems-section .problems-content {
                padding-left: var(--container-padding-x-mobile) !important;
                padding-right: var(--container-padding-x-mobile) !important;
            }
        }
        
        /* デスクトップ: パディングを増やす */
        @media screen and (min-width: 769px) {
            .problems-content .problem-text {
                padding: var(--spacing-sm) var(--spacing-md);
            }
        }
        
        @media (hover: hover) and (pointer: fine) {
            .problems-content .problem-text:hover {
                box-shadow: var(--shadow-md);
                transform: translateY(-2px);
                border-color: #5F6983;
                background: var(--color-blueGray);
            }
            
            .customers-content .customer-text:hover {
                background: var(--color-white);
                border-color: #5F6983;
            }
            
            .franchise-content .franchise-text:hover {
                background: var(--color-white);
                border-color: #5F6983;
            }
        }
        
        /* 重要な情報を強調するクラス */
        .highlight-info {
            background: linear-gradient(135deg, rgba(181, 202, 211, 0.15) 0%, rgba(95, 105, 131, 0.15) 100%) !important;
            border-color: #5F6983 !important;
            font-weight: 600;
        }
        
        .solution-intro {
            margin-top: var(--spacing-xl);
            background: var(--unified-gradient);
            padding: var(--spacing-lg) var(--container-padding-x-mobile);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .solution-title {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-md);
            color: var(--color-white);
            text-align: center;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        /* モバイル: solution-introとsolution-titleの調整 */
        @media screen and (max-width: 768px) {
            .solution-intro {
                padding: var(--spacing-md) var(--container-padding-x-mobile);
                margin-left: 0;
                margin-right: 0;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            .solution-title {
                color: var(--color-white) !important;
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
                word-break: break-word;
                overflow-wrap: break-word;
                padding: 0 var(--spacing-xs);
                font-size: var(--font-size-base);
                line-height: 1.7;
                margin-bottom: var(--spacing-sm);
            }
            
            .solution-subtitle {
                color: var(--color-white) !important;
                text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
                font-size: 1.4rem;
                line-height: 1.8;
            }
        }
        
        .solution-subtitle {
            font-size: var(--font-size-base);
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            color: var(--color-secondary);
            text-align: center;
            line-height: 1.8;
        }
        
        .problems-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .problems-section h2,
        .problems-section h3,
        .problems-section p {
            color: var(--color-secondary);
        }
        
        /* solution-titleの色 */
        .solution-title {
            color: var(--color-white) !important;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
        }
        
        .sense-benefits-section {
            background: 
                linear-gradient(135deg, var(--color-blueGray) 0%, var(--color-white) 100%),
                radial-gradient(circle at 100% 0%, rgba(95, 105, 131, 0.05) 0%, transparent 50%);
            color: var(--color-secondary);
            padding: var(--section-padding-y) 0;
            position: relative;
        }
        
        .sense-benefits-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #5F6983, transparent);
            opacity: 0.3;
        }
        
        .sense-benefits-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .sense-benefits-section h2,
        .sense-benefits-section h3,
        .sense-benefits-section p {
            color: var(--color-secondary);
        }
        
        .achievements-section {
            background: 
                linear-gradient(135deg, #f8f9fa 0%, var(--color-blueGray) 100%),
                radial-gradient(circle at 50% 50%, rgba(181, 202, 211, 0.08) 0%, transparent 70%);
            color: var(--color-secondary);
            padding: var(--section-padding-y) 0;
            position: relative;
        }
        
        .achievements-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .achievements-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-lg);
            text-align: center;
            word-break: break-word;
            overflow-wrap: break-word;
            color: var(--color-secondary) !important;
            font-weight: 700;
            line-height: 1.6;
        }
        
        /* モバイル: achievements-titleの調整 */
        @media screen and (max-width: 768px) {
            .achievements-title {
                font-size: var(--font-size-md);
                line-height: 1.7;
                margin-bottom: var(--spacing-md);
                color: var(--color-secondary) !important;
            }
        }
        
        /* 実績セクション - モバイルファースト（はみ出し防止） */
        .achievements-content {
            margin-top: var(--spacing-xl);
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-sm);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* モバイル: achievements-contentのgrid設定を修正 */
        @media screen and (max-width: 768px) {
            .achievements-content {
                grid-template-columns: 1fr !important;
                width: 100% !important;
                max-width: 100% !important;
                padding-left: var(--container-padding-x-mobile) !important;
                padding-right: var(--container-padding-x-mobile) !important;
                box-sizing: border-box !important;
                overflow-x: hidden;
            }
            
            .achievements-content > * {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow-x: hidden !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                hyphens: auto;
            }
        }
        
        /* モバイル: achievements-sectionの幅とパディング調整 */
        @media screen and (max-width: 768px) {
            .achievements-section {
                padding-left: 0;
                padding-right: 0;
                overflow-x: hidden;
            }
            
            .achievements-section .container {
                padding-left: var(--container-padding-x-mobile);
                padding-right: var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            .achievements-content {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                box-sizing: border-box;
            }
            
            .achievement-text {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
                padding-left: var(--spacing-xs);
                padding-right: var(--spacing-xs);
            }
        }
        
        /* デスクトップ: 2列表示 */
        @media screen and (min-width: 769px) {
            .achievements-content {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
        }
        
        .achievement-text {
            font-size: var(--font-size-base);
            margin: 0;
            padding: var(--spacing-md) var(--spacing-lg);
            background: var(--color-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--color-border);
            transition: all 0.3s var(--ease-out-sine);
            line-height: 1.9;
            display: block;
            text-align: center;
            min-height: 4.5rem;
            color: var(--color-secondary) !important;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            font-weight: 400;
            letter-spacing: 0.02em;
            white-space: normal;
            writing-mode: horizontal-tb;
            text-orientation: mixed;
        }
        
        /* achievement-text内のspan要素をブラックに統一 */
        .achievement-text span {
            color: var(--color-black) !important;
        }
        
        /* モバイル: achievement-textの文字組を改善（横書きが縦書きになる問題を修正） */
        @media screen and (max-width: 768px) {
            .achievement-text {
                font-size: 1.4rem;
                line-height: 1.9;
                padding: var(--spacing-md) var(--spacing-sm);
                text-align: center;
                word-break: break-word;
                overflow-wrap: break-word;
                white-space: normal !important;
                writing-mode: horizontal-tb !important;
                text-orientation: mixed !important;
                direction: ltr !important;
                min-height: auto;
                display: block !important;
            }
        }
        
        /* モバイル: achievement-textの改行調整 */
        @media screen and (max-width: 768px) {
            .achievement-text {
                line-height: 1.9;
                padding: var(--spacing-sm) var(--spacing-xs);
                min-height: auto;
                font-size: 1.4rem;
                color: var(--color-secondary) !important;
            }
        }
        
        /* デスクトップ: パディングを増やす */
        @media screen and (min-width: 769px) {
            .achievement-text {
                padding: var(--spacing-md) var(--spacing-lg);
                display: block;
            }
        }
        
        /* 実績の見出し（太字・強調） */
        .achievement-text:first-of-type,
        .achievement-text:nth-of-type(3),
        .achievement-text:nth-of-type(5),
        .achievement-text:nth-of-type(7),
        .achievement-text:nth-of-type(9),
        .achievement-text:nth-of-type(11),
        .achievement-text:nth-of-type(13) {
            font-weight: 700;
            background: linear-gradient(135deg, rgba(181, 202, 211, 0.2) 0%, rgba(95, 105, 131, 0.2) 100%);
            border: 2px solid #5F6983;
            color: var(--color-secondary) !important;
        }
        
        @media (hover: hover) and (pointer: fine) {
            .achievement-text:hover {
                box-shadow: var(--shadow-md);
                transform: translateY(-2px);
                border-color: #5F6983;
            }
        }
        
        
        .achievements-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .achievements-section h2,
        .achievements-section .achievement-text {
            color: var(--color-secondary);
        }
        
        /* 加盟店セクション - 統一されたスタイル（メリハリ強化） */
        .franchise-section {
            background: var(--color-white);
            color: var(--color-secondary);
            padding: var(--section-padding-y) 0;
            position: relative;
        }
        
        .franchise-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #5F6983, transparent);
            opacity: 0.3;
        }
        
        .franchise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .franchise-section h2,
        .franchise-section h3,
        .franchise-section p {
            color: var(--color-secondary);
        }
        
        .franchise-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-md);
            text-align: center;
            color: var(--color-secondary);
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.6;
        }
        
        .franchise-subtitle {
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-lg);
            text-align: center;
            color: var(--color-secondary);
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.8;
        }
        
        /* モバイル: franchise-titleとfranchise-subtitleの調整 */
        @media screen and (max-width: 768px) {
            .franchise-title {
                font-size: var(--font-size-md);
                line-height: 1.7;
                margin-bottom: var(--spacing-sm);
            }
            
            .franchise-subtitle {
                font-size: 1.4rem;
                line-height: 1.9;
                margin-bottom: var(--spacing-md);
            }
        }
        
        .franchise-content {
            margin-bottom: var(--spacing-xl);
        }
        
        .franchise-text {
            font-size: var(--font-size-base);
            line-height: var(--line-height-normal);
            margin-bottom: var(--spacing-sm);
            color: var(--color-secondary);
        }
        
        .franchise-cta {
            margin-top: var(--spacing-lg);
            text-align: center;
        }
        
        .franchise-cta p {
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-md);
            color: var(--color-secondary) !important;
            text-align: center;
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        /* お客様層セクション - 統一されたスタイル（メリハリ強化） */
        .customers-section {
            background: var(--color-white);
            color: var(--color-secondary);
            padding: var(--section-padding-y) 0;
            position: relative;
        }
        
        .customers-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .customers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .customers-section h2,
        .customers-section h3,
        .customers-section p {
            color: var(--color-secondary);
        }
        
        /* ルーチェ説明セクション - 統一されたスタイル（メリハリ強化） */
        .luce-explanation-section {
            background: var(--unified-gradient);
            color: var(--color-white);
            padding: var(--section-padding-y) 0;
            position: relative;
        }
        
        .luce-explanation-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            opacity: 0.5;
        }
        
        .luce-explanation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }
        
        .luce-explanation-section h2,
        .luce-explanation-section h3,
        .luce-explanation-section p,
        .luce-explanation-section .section-title {
            color: var(--color-white) !important;
        }
        
        /* ルーチェの説明タイトルを白文字に */
        #luce-explanation-section .section-title {
            color: var(--color-white) !important;
        }
        
        /* ルーチェセクション内のコンテンツエリア */
        .luce-content {
            color: var(--color-white);
        }
        
        /* ルーチェプロモーションバナー */
        .luce-promo-banner {
            margin-bottom: var(--spacing-xl);
            text-align: center;
        }
        
        .luce-promo-image {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }
        
        /* ルーチェ説明文 */
        .luce-description {
            margin-bottom: var(--spacing-xl);
            text-align: center;
            color: var(--color-white);
            padding: var(--spacing-md);
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            font-size: var(--font-size-base);
            line-height: var(--line-height-normal);
        }
        
        .luce-description p {
            margin-bottom: var(--spacing-xs);
            line-height: 1.8;
        }
        
        .luce-description p:last-child {
            margin-bottom: 0;
        }
        
        .luce-desc-line-1 {
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-xs);
            color: var(--color-secondary);
        }
        
        .luce-desc-line-2,
        .luce-desc-line-3 {
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: #FFA500;
            margin-bottom: var(--spacing-xs);
        }
        
        .luce-desc-line-3 {
            margin-bottom: var(--spacing-sm);
        }
        
        .luce-desc-line-4,
        .luce-desc-line-5 {
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-xs);
            color: var(--color-secondary);
        }
        
        /* モバイル: ルーチェ説明文の調整 */
        @media screen and (max-width: 768px) {
            .luce-content {
                grid-template-columns: 1fr;
                gap: 0px;
            }
            
            .luce-promo-image {
                border-radius: var(--radius-sm);
            }
            
            .luce-description {
                padding: var(--spacing-sm);
            }
            
            .luce-desc-line-1,
            .luce-desc-line-4,
            .luce-desc-line-5 {
                font-size: var(--font-size-base);
            }
            
            .luce-desc-line-2,
            .luce-desc-line-3 {
                font-size: var(--font-size-md);
            }
        }
        
        .luce-technical {
            color: var(--color-white);
        }
        
        .luce-technical h3 {
            color: var(--color-white);
        }
        
        .luce-technical p {
            color: var(--color-white);
        }
        
        /* LUCE比較画像コンテナ */
        .luce-comparison-container {
            width: 100%;
            text-align: center;
            margin: var(--spacing-lg) 0;
            padding: var(--spacing-md) 0;
        }
        
        .luce-comparison-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
        }
        
        /* サポートセクション - 統一されたスタイル（メリハリ強化） */
        .support-section {
            background: 
                linear-gradient(135deg, var(--color-white) 0%, var(--color-blueGray) 100%);
            color: var(--color-secondary);
            padding: var(--section-padding-y) 0;
            position: relative;
        }
        
        .support-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .support-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .support-section h2,
        .support-section h3,
        .support-section p,
        .support-section li {
            color: var(--color-secondary);
        }
        
        .support-item {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: var(--spacing-sm);
            padding: var(--card-padding-mobile);
            background: var(--color-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            transition: all 0.4s var(--ease-out-expo);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* モバイル: support-itemの幅とパディング調整 */
        @media screen and (max-width: 768px) {
            .support-section {
                padding-left: 0;
                padding-right: 0;
                overflow-x: hidden;
            }
            
            .support-section .container {
                padding-left: var(--container-padding-x-mobile);
                padding-right: var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            .support-grid {
                width: 100%;
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
                box-sizing: border-box;
            }
            
            .support-item {
                width: 100%;
                max-width: 100%;
                padding: var(--spacing-sm);
                gap: var(--spacing-xs);
                box-sizing: border-box;
            }
            
            .support-item h3 {
                font-size: var(--font-size-base);
                word-break: break-word;
                overflow-wrap: break-word;
                line-height: 1.6;
                color: var(--color-secondary) !important;
            }
            
            .support-content {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                flex: 1 1 0% !important;
                box-sizing: border-box !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
                hyphens: auto;
                padding-right: 0 !important;
                margin-right: 0 !important;
            }
            
            .support-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow-x: hidden !important;
                padding-left: var(--spacing-sm) !important;
                padding-right: var(--spacing-sm) !important;
            }
        }
        
        .support-content {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: keep-all;
            overflow-wrap: break-word;
        }
        
        .support-content p {
            line-height: 1.8;
            text-align: left;
            color: var(--color-secondary) !important;
            font-weight: 400;
        }
        
        .support-list {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .support-list li {
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.8;
            text-align: left;
            padding-left: var(--spacing-md);
            position: relative;
        }
        
        /* モバイル: support-contentの改行調整 */
        @media screen and (max-width: 768px) {
            .support-content p,
            .support-list li {
                line-height: 1.9;
                padding-left: var(--spacing-md);
                padding-right: var(--spacing-xs);
                font-size: var(--font-size-sm);
                color: var(--color-secondary) !important;
            }
        }
        
        /* デスクトップ: パディングとギャップを増やす */
        @media screen and (min-width: 769px) {
            .support-item {
                padding: var(--card-padding);
                gap: var(--spacing-md);
            }
        }
        
        .support-icon {
            flex-shrink: 0;
            margin-top: 0.2rem;
            background: none;
            background-color: transparent;
            box-shadow: none;
            text-shadow: none;
        }
        
        .support-content {
            flex: 1;
            min-width: 0; /* flexアイテムの幅を制限 */
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .support-item h3 {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-md);
            color: var(--color-secondary) !important;
            font-weight: 700;
        }
        
        .support-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .support-list li {
            font-size: var(--font-size-base);
            line-height: var(--line-height-normal);
            margin-bottom: var(--spacing-xs);
            padding-left: var(--spacing-md);
            position: relative;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            color: var(--color-secondary) !important;
        }
        
        /* モバイル: support-list liの幅を制限 */
        @media screen and (max-width: 768px) {
            .support-list {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            
            .support-list li {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: var(--spacing-md) !important;
                padding-right: var(--container-padding-x-mobile) !important;
                box-sizing: border-box !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                hyphens: auto;
                overflow-x: hidden;
                color: var(--color-secondary) !important;
            }
            
            /* support-itemのpaddingを考慮して幅を調整 */
            .support-item {
                padding-left: var(--spacing-sm) !important;
                padding-right: var(--spacing-sm) !important;
            }
            
            .support-content {
                padding-right: 0 !important;
                margin-right: 0 !important;
            }
        }
        
        .support-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-secondary);
            font-weight: 700;
        }
        
        .support-list li:last-child {
            margin-bottom: 0;
        }
        
        .final-cta-section {
            background: var(--unified-gradient);
            color: var(--color-white);
            text-align: center;
            padding: var(--section-padding-y) 0;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta-section .cta-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-lg);
        }
        
        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(131deg, rgba(181, 202, 211, 0.1) 4.86%, rgba(95, 105, 131, 0.2) 87.99%);
            z-index: 1;
            pointer-events: none;
        }
        
        .final-cta-section .container {
            position: relative;
            z-index: 2;
            overflow: visible;
            padding: 6px;
        }
        
        .final-cta-section .cta-title {
            color: var(--color-white);
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
            margin-bottom: var(--spacing-md);
            font-size: var(--font-size-2xl);
            letter-spacing: 0.1em;
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.6;
        }
        
        .final-cta-section .cta-description {
            color: var(--color-white);
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-lg);
            opacity: 0.95;
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.8;
            text-align: center;
        }
        
        /* モバイル: final-cta-sectionの調整 */
        @media screen and (max-width: 768px) {
            .final-cta-section .cta-title {
                font-size: var(--font-size-lg);
                line-height: 1.7;
                letter-spacing: 0.05em;
            }
            
            .final-cta-section .cta-description {
                font-size: 1.4rem;
                line-height: 1.9;
            }
        }
        
        .final-cta-section p,
        .final-cta-section .cta-button {
            color: var(--color-white);
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
        }
        
        /* ============================================
           レイアウト - 統一されたコンテナとスペーシング
           ============================================ */
        
        /* 全セクションの統一 - 幅の一貫性を保つ（はみ出し防止） */
        section {
            width: 100%;
            max-width: 100vw;
            padding: var(--section-padding-y) 0;
            position: relative;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        
        main {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            box-sizing: border-box;
            margin: 0 auto;
        }
        
        /* モバイル: mainのmargin-topを0に */
        @media screen and (max-width: 768px) {
            .main {
                margin-top: 0;
            }
        }
        
        header, footer {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        
        /* コンテナクラス - モバイルファースト（はみ出し防止強化） */
        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 var(--container-padding-x-mobile);
            position: relative;
            box-sizing: border-box;
        }
        
        /* モバイル: コンテナの幅を厳密に制限 */
        @media screen and (max-width: 768px) {
            .container {
                max-width: 100vw;
                overflow-x: hidden;
                padding-left: var(--container-padding-x-mobile);
                padding-right: var(--container-padding-x-mobile);
            }
        }
        
        /* デスクトップ: 最大幅とパディングを設定 */
        @media screen and (min-width: 769px) {
            .container {
                max-width: var(--container-max-width);
                padding: 0 var(--container-padding-x);
            }
        }
        
        /* セクション内のコンテンツコンテナの統一 - モバイルファースト（はみ出し防止） */
        section > div:not(.hero-content):not(.hero-image),
        section > .problems-content,
        section > .solution-intro,
        section > .customers-content,
        section > .franchise-content,
        section > .achievements-content {
            width: 100%;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: var(--container-padding-x-mobile);
            padding-right: var(--container-padding-x-mobile);
            box-sizing: border-box;
        }
        
        /* デスクトップ: 最大幅とパディングを設定 */
        @media screen and (min-width: 769px) {
            section > div:not(.hero-content):not(.hero-image),
            section > .problems-content,
            section > .solution-intro,
            section > .customers-content,
            section > .franchise-content,
            section > .achievements-content {
                max-width: var(--container-max-width);
                padding-left: var(--container-padding-x);
                padding-right: var(--container-padding-x);
            }
        }
        
        /* モバイル: セクション内のコンテンツの幅を厳密に制限 */
        @media screen and (max-width: 768px) {
            section > .customers-content,
            section > .franchise-content,
            section > .achievements-content {
                width: 100%;
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
                margin-left: 0;
                margin-right: 0;
            }
            
            /* お悩みセクションのproblems-contentはpaddingを追加 */
            .problems-section .problems-content {
                padding-left: var(--container-padding-x-mobile);
                padding-right: var(--container-padding-x-mobile);
            }
            
            /* container内のコンテンツはcontainerのパディングを考慮 */
            .container > .customers-content,
            .container > .problems-content,
            .container > .franchise-content,
            .container > .achievements-content {
                width: 100%;
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
            }
        }
        
        /* ヒーローコンテンツは既に別途スタイル定義済みのため除外 */
        
        /* 疑似要素や装飾要素は除外 */
        section::before,
        section::after {
            max-width: none;
            margin-left: 0;
            margin-right: 0;
            padding-left: 0;
            padding-right: 0;
        }
        
        /* .container内の要素は親の幅に従う（二重適用を防ぐ） */
        .container > * {
            max-width: 100%;
        }
        
        /* グリッドやフレックスコンテナは親の幅に従う */
        .benefits-grid,
        .solution-grid,
        .merits-grid {
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* 技術の特徴（merit-item） - モバイルファースト（はみ出し防止） */
        .merits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* デスクトップ: 2列表示 */
        @media screen and (min-width: 769px) {
            .merits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
        }
        
        .merit-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: var(--spacing-sm);
            padding: var(--spacing-sm);
            background: var(--color-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--color-border);
            transition: all 0.3s var(--ease-out-sine);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .merit-icon {
            flex-shrink: 0;
            width: 2.4rem;
            height: 2.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .merit-item p {
            word-break: keep-all;
            overflow-wrap: break-word;
        }
        
        /* デスクトップ: パディングを増やす */
        @media screen and (min-width: 769px) {
            .merit-item {
                padding: var(--spacing-sm) var(--spacing-md);
            }
        }
        
        .merit-icon {
            flex-shrink: 0;
            width: 2.4rem;
            height: 2.4rem;
            background: none;
            background-color: transparent;
            box-shadow: none;
            text-shadow: none;
        }
        
        .merit-item p {
            font-size: var(--font-size-base);
            margin: 0;
            flex: 1;
            line-height: var(--line-height-normal);
            color: var(--color-secondary) !important;
            font-weight: 400;
        }
        
        /* ルーチェセクション内のmerit-itemのテキストカラー */
        .luce-explanation-section .merit-item {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        /* 白背景のmerit-itemなので濃い色に */
        .luce-explanation-section .merit-item p {
            color: var(--color-secondary) !important;
        }
        
        .luce-explanation-section .merit-icon {
            color: var(--color-secondary);
        }
        
        @media (hover: hover) and (pointer: fine) {
            .merit-item:hover {
                box-shadow: var(--shadow-md);
                transform: translateY(-2px);
                border-color: #5F6983;
            }
            
            .merit-item:hover .merit-icon {
                transform: scale(1.1);
                color: var(--color-secondary);
            }
        }
        section + section {
            margin-top: 0; /* セクション間の余白はpaddingで調整 */
        }
        
        /* セクション内の要素間隔 */
        .section-content {
            margin-top: var(--spacing-xl);
        }
        
        .section-content > * + * {
            margin-top: var(--spacing-lg);
        }
        
        /* コンテンツブロック間の余白 */
        .content-block {
            margin-bottom: var(--spacing-lg);
        }
        
        .content-block:last-child {
            margin-bottom: 0;
        }
        
        /* 関連要素のグループ化 */
        .content-group > * + * {
            margin-top: var(--spacing-sm);
        }
        
        /* グリッドレイアウトの統一 - モバイルファースト（はみ出し防止） */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-lg);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* ソリューショングリッド - モバイルファースト（1列、はみ出し防止） */
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* デスクトップ: グリッドを拡張 */
        @media screen and (min-width: 769px) {
            .benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
                gap: var(--spacing-md);
                margin-top: var(--spacing-xl);
            }
            
            .solution-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            
            .problems-content {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
        }
        
        /* テキスト要素の統一スタイル */
        .problem-text,
        .customer-text,
        .franchise-text,
        .achievement-text {
            font-size: var(--font-size-base);
            line-height: var(--line-height-normal);
            transition: all 0.3s var(--ease-out-sine);
            padding: var(--spacing-xs) 0;
            margin-bottom: var(--spacing-xs);
        }
        
        .customer-text,
        .franchise-text {
            margin-bottom: var(--spacing-sm);
        }
        
        .customers-title,
        .franchise-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-md);
            text-align: center;
            color: var(--color-secondary) !important;
            font-weight: 700;
        }
        
        .customers-subtitle,
        .franchise-subtitle {
            font-size: var(--font-size-base);
            margin-bottom: var(--spacing-lg);
            text-align: center;
            color: var(--color-secondary) !important;
            line-height: 1.8;
        }
        
        /* お客様層セクション - モバイルファースト（はみ出し防止） */
        .customers-content {
            margin-bottom: var(--spacing-xl);
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-sm);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* デスクトップ: 2列表示 */
        @media screen and (min-width: 769px) {
            .customers-content {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-lg);
            }
        }
        
        /* customers-contentの重複定義を削除（既に上で定義済み） */
        
        .customer-item {
            background: var(--color-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--color-border);
            padding: var(--spacing-md);
            transition: all 0.3s var(--ease-out-sine);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .customer-label {
            font-size: var(--font-size-base);
            font-weight: 600;
            color: var(--color-secondary) !important;
            margin-bottom: var(--spacing-xs);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.8;
            text-align: left;
        }
        
        .customer-detail {
            font-size: var(--font-size-sm);
            color: var(--color-secondary) !important;
            line-height: 1.8;
            margin-top: var(--spacing-xs);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            text-align: left;
            font-weight: 400;
        }
        
        /* モバイル: customer-labelとcustomer-detailの改行調整 */
        @media screen and (max-width: 768px) {
            .customer-label,
            .customer-detail {
                line-height: 1.9;
                padding: 0 var(--spacing-xs);
                color: var(--color-secondary) !important;
            }
            
            .customer-detail {
                color: var(--color-secondary) !important;
            }
        }
        
        /* モバイル: customer-itemの幅を厳密に制限（強化版） */
        @media screen and (max-width: 768px) {
            .customers-section {
                padding-left: 0;
                padding-right: 0;
                overflow-x: hidden;
            }
            
            .customers-section .container {
                padding-left: var(--container-padding-x-mobile);
                padding-right: var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            .customers-content {
                padding-left: 0;
                padding-right: 0;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            .customer-item {
                width: 100%;
                max-width: 100%;
                padding: var(--spacing-sm);
                margin-left: 0;
                margin-right: 0;
                box-sizing: border-box;
                overflow: hidden;
            }
            
            .customer-label,
            .customer-detail {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
        }
        
        @media screen and (min-width: 769px) {
            .customers-content {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-lg);
            }
            
            .customer-item {
                padding: var(--spacing-lg);
            }
        }
        
        @media (hover: hover) and (pointer: fine) {
            .customer-item:hover {
                box-shadow: var(--shadow-md);
                transform: translateY(-2px);
                border-color: #5F6983;
            }
        }
        
        .customers-content .customer-text {
            font-size: var(--font-size-base);
            margin: 0;
            padding: var(--spacing-sm);
            background: var(--color-blueGray);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--color-border);
            transition: all 0.3s var(--ease-out-sine);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 4.5rem;
            color: var(--color-secondary) !important;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.8;
            font-weight: 500;
        }
        
        /* モバイル: customer-textの改行調整 */
        @media screen and (max-width: 768px) {
            .customers-content .customer-text {
                line-height: 1.9;
                padding: var(--spacing-sm) var(--spacing-xs);
                min-height: auto;
                font-size: 1.4rem;
                color: var(--color-secondary) !important;
            }
        }
        
        /* デスクトップ: パディングを増やす */
        @media screen and (min-width: 769px) {
            .customers-content .customer-text {
                padding: var(--spacing-sm) var(--spacing-md);
            }
        }
        
        /* 加盟店情報 - モバイルファースト（改善版） */
        .franchise-content {
            margin-bottom: var(--spacing-xl);
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
            width: 100%;
            max-width: 100%;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* モバイル: franchise-contentのgrid設定を修正 */
        @media screen and (max-width: 768px) {
            .franchise-content {
                grid-template-columns: 1fr !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow-x: hidden;
            }
            
            .franchise-content > * {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
        }
        
        /* 加盟店情報グループ - 文脈に合わせたグループ化 */
        .franchise-group {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-xs);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: var(--spacing-md);
            background: var(--color-blueGray);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--color-border);
            transition: all 0.3s var(--ease-out-sine);
        }
        
        /* モバイル: franchise-groupの幅を制限 */
        @media screen and (max-width: 768px) {
            .franchise-content {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow-x: hidden;
            }
            
            .franchise-group {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                box-sizing: border-box !important;
            }
            
            .franchise-group {
                padding: var(--spacing-md) var(--spacing-sm) !important;
            }
            
            .franchise-group .franchise-text {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: var(--spacing-xs) 0 !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                hyphens: auto;
                line-height: 1.8 !important;
                text-align: center !important;
                font-size: 1.4rem !important;
                color: var(--color-secondary) !important;
                background: transparent !important;
                border: none !important;
                box-shadow: none !important;
            }
        }
        
        /* デスクトップ: 2列表示 */
        @media screen and (min-width: 769px) {
            .franchise-content {
                grid-template-columns: repeat(2, 1fr);
                padding: 0;
                gap: var(--spacing-lg);
            }
            
            .franchise-group {
                gap: var(--spacing-sm);
                padding: var(--spacing-lg) var(--spacing-md);
            }
        }
        
        /* 加盟店情報の見出しスタイル */
        .franchise-title-item {
            font-weight: 700 !important;
            font-size: var(--font-size-md) !important;
            color: var(--color-secondary) !important;
            margin-bottom: var(--spacing-xs) !important;
        }
        
        /* 加盟店情報の注釈スタイル */
        .franchise-note {
            font-size: var(--font-size-sm) !important;
            color: var(--color-secondary) !important;
            opacity: 0.8;
        }
        
        .franchise-content .franchise-text {
            font-size: var(--font-size-base);
            margin: 0;
            padding: var(--spacing-xs) 0;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            border: none;
            display: block;
            text-align: center;
            line-height: 1.8;
            color: var(--color-secondary) !important;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            word-break: break-word;
            overflow-wrap: break-word;
            font-weight: 400;
            letter-spacing: 0.02em;
        }
        
        /* モバイル: franchise-textの文字組を改善 */
        @media screen and (max-width: 768px) {
            .franchise-content .franchise-text {
                font-size: 1.4rem;
                line-height: 1.9;
                padding: var(--spacing-xs) 0;
                text-align: center;
                word-break: break-word;
                overflow-wrap: break-word;
                white-space: normal;
                writing-mode: horizontal-tb;
                text-orientation: mixed;
            }
        }
        
        /* モバイル: franchise-textとfranchise-groupの改行調整 */
        @media screen and (max-width: 768px) {
            .franchise-content {
                gap: var(--spacing-sm);
            }
            
            .franchise-group {
                gap: var(--spacing-xs);
                width: 100%;
                max-width: 100%;
            }
            
            .franchise-content .franchise-text {
                line-height: 1.9;
                padding: var(--spacing-xs) var(--spacing-sm);
                min-height: auto;
                font-size: 1.4rem;
                color: var(--color-secondary) !important;
            }
        }
        
        /* デスクトップ: パディングを増やす */
        @media screen and (min-width: 769px) {
            .franchise-content .franchise-text {
                padding: var(--spacing-sm) var(--spacing-md);
            }
        }
        
        /* モバイル: 加盟店セクションの見切れ防止（強化版） */
        @media screen and (max-width: 768px) {
            .franchise-section {
                padding: var(--spacing-xl) 0;
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
                box-sizing: border-box;
            }
            
            .franchise-section .container {
                padding: 0 var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                margin: 0 auto;
            }
            
            .franchise-title,
            .franchise-subtitle {
                padding: 0 var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                word-break: keep-all;
                overflow-wrap: break-word;
            }
            
            .franchise-content {
                padding: 0 var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                box-sizing: border-box;
            }
            
            .franchise-content .franchise-text {
                font-size: var(--font-size-sm);
                padding: var(--spacing-xs) var(--spacing-sm);
                min-height: auto;
                line-height: 1.6;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                word-break: keep-all;
                overflow-wrap: break-word;
                overflow: hidden;
            }
            
            /* 加盟店セクション全体の幅を制限 */
            .franchise-section .container {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .franchise-content {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .franchise-cta {
                padding: 0 var(--container-padding-x-mobile);
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            .franchise-cta p {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                word-break: keep-all;
                overflow-wrap: break-word;
            }
            
            .franchise-cta .cta-button {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                margin: 0 auto;
            }
        }
        
        /* 重要な情報を強調（背景色を変更） */
        .franchise-content .franchise-text.highlight-info {
            background: linear-gradient(135deg, rgba(181, 202, 211, 0.2) 0%, rgba(95, 105, 131, 0.2) 100%) !important;
            border: 2px solid #5F6983 !important;
            font-weight: 600;
        }
        @media (hover: hover) and (pointer: fine) {
            .problem-text:hover,
            .customer-text:hover,
            .franchise-text:hover {
                padding-left: 1.2rem;
                color: var(--color-secondary);
            }
        }
        
        /* デスクトップ: パディングとフォントサイズを拡張 */
        @media screen and (min-width: 769px) {
            :root {
                --container-padding-x: 3rem;
                --card-padding: 3rem;
            }
        }
        
        /* ============================================
           レスポンシブデザイン - モバイルファースト
           ============================================ */
        
        @media screen and (max-width: 768px) {
            html {
                font-size: 2.6666666667vw;
            }
            
            :root {
                /* モバイル表示時のフォントサイズ調整 */
                --font-size-3xl: 3.2rem;
                --font-size-2xl: 2.8rem;
                --font-size-xl: 2.8rem;
                --font-size-lg: 2.4rem;
                --font-size-md: 2rem;
                --font-size-base: 1.6rem;
                --font-size-sm: 1.4rem;
                --font-size-xs: 1.2rem;
                
                /* モバイル時のスペーシング調整 */
                --section-padding-y: 4rem;
                --section-gap: 3rem;
            }
            
            body {
                font-size: var(--font-size-base);
                line-height: 1.8;
            }
            
            /* ヘッダー画像セクション */
            .header-image-container {
                width: 100%;
            }
            
            .header-image {
                width: 100%;
                height: auto;
            }
            
            .treatment-detail-container {
                padding: var(--spacing-md) 0;
            }
            
            .treatment-detail-image {
                width: 100%;
                max-width: 100%;
            }
            
            .luce-comparison-container {
                margin: var(--spacing-md) 0;
                padding: var(--spacing-sm) 0;
            }
            
            .luce-comparison-image {
                width: 100%;
                max-width: 100%;
            }
            
            /* ヒーローセクション（削除済み、互換性のため残す） */
            .hero-section.luce-hero {
                padding: var(--section-padding-y) 0;
                min-height: 50vh;
            }
            
            .hero-title {
                font-size: var(--font-size-lg);
                line-height: var(--line-height-tight);
                margin-bottom: var(--spacing-md);
            }
            
            /* セクションタイトル */
            .section-title {
                font-size: var(--font-size-md);
                font-weight: 700;
                margin-bottom: var(--spacing-lg);
            }
            
            /* 見出し */
            h2 {
                font-size: var(--font-size-md);
            }
            
            h3 {
                font-size: var(--font-size-base);
            }
            
            /* 本文 */
            p {
                font-size: var(--font-size-base);
                line-height: var(--line-height-normal);
            }
            
            /* アイコンサイズの統一 */
            .solution-icon,
            .merit-icon,
            .support-icon {
                width: 2.4rem;
                height: 2.4rem;
                flex-shrink: 0;
            }
            
            /* アイコンとテキストの2列レイアウト */
            .merit-item {
                flex-direction: row;
                align-items: center;
                gap: var(--spacing-sm);
            }
            
            .support-item {
                flex-direction: row;
                align-items: flex-start;
                gap: var(--spacing-sm);
            }
            
            /* 数字と単位が分離されないように */
            .highlight-number {
                font-size: 1.3em;
                white-space: nowrap;
                display: inline-block;
            }
            
            .benefit-highlight {
                font-size: var(--font-size-md);
                line-height: var(--line-height-tight);
            }
            
            /* CTAボタン */
            .cta-button.primary,
            .cta-button.secondary,
            .cta-button.final {
                padding: var(--spacing-md) var(--spacing-x-lg);
                font-size: var(--font-size-base);
                width: 100%;
                max-width: 100%;
                min-height: 5.4rem;
                box-sizing: border-box;
                word-break: keep-all;
                overflow-wrap: break-word;
            }
            
            /* モバイル時の余白調整 */
            .problems-section,
            .sense-benefits-section,
            .achievements-section {
                padding: var(--spacing-xl) 0;
            }
            
            .final-cta-section {
                padding: 6rem 0;
            }
            
            .final-cta-section .cta-title {
                font-size: var(--font-size-lg);
            }
            
            /* 改行の最適化 */
            .benefit-highlight,
            .achievement-text,
            .problem-text,
            .customer-text,
            .franchise-text {
                word-break: keep-all;
                overflow-wrap: break-word;
            }
            
            /* 数字と単位が分離されないように */
            .benefit-highlight .highlight-number,
            .achievement-text .highlight-number {
                white-space: nowrap;
            }
        }
        
        @media screen and (min-width: 1280px) {
            html {
                font-size: 62.5%;
            }
        }
        
        /* アニメーションとトランジションの改善 */
        *,
        *::before,
        *::after {
            transition: background-color 0.3s var(--ease-out-sine),
                        color 0.3s var(--ease-out-sine),
                        border-color 0.3s var(--ease-out-sine);
        }
        
        /* 点滅アニメーション - 1番目（赤）、2番目（青）、3番目（緑） */
        @keyframes blinkRed {
            0%, 100% {
                border-color: rgba(181, 202, 211, 0.95);
            }
            50% {
                border-color: rgba(255, 0, 0, 1);
            }
        }
        
        @keyframes blinkBlue {
            0%, 100% {
                border-color: rgba(181, 202, 211, 0.95);
            }
            50% {
                border-color: rgba(0, 100, 255, 1);
            }
        }
        
        @keyframes blinkGreen {
            0%, 100% {
                border-color: rgba(181, 202, 211, 0.95);
            }
            50% {
                border-color: rgba(0, 200, 0, 1);
            }
        }
        
        /* Instagram画像セクション */
        .instagram-image-section {
            padding: var(--spacing-lg) 0;
            background: var(--color-white);
            text-align: center;
        }
        
        .instagram-note {
            font-family: var(--font-primary);
            font-size: var(--font-size-sm);
            color: var(--color-secondary);
            margin-bottom: var(--spacing-md);
            font-style: italic;
        }
        
        .instagram-image-container {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .instagram-account-image {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: var(--radius-md);
        }
        
        /* 指定された3つの要素に点滅アニメーションを適用（重複を削除、ここは既に上で定義済み） */
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* スクロール時のアニメーション */
        @media (prefers-reduced-motion: no-preference) {
            .benefit-item,
            .solution-item,
            .faq-item {
                opacity: 0;
                transform: translateY(2rem);
                animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
            }
            
            .benefit-item:nth-child(1) { animation-delay: 0.1s; }
            .benefit-item:nth-child(2) { animation-delay: 0.2s; }
            .benefit-item:nth-child(3) { animation-delay: 0.3s; }
            .solution-item:nth-child(1) { animation-delay: 0.1s; }
            .solution-item:nth-child(2) { animation-delay: 0.15s; }
            .solution-item:nth-child(3) { animation-delay: 0.2s; }
            .solution-item:nth-child(4) { animation-delay: 0.25s; }
            .solution-item:nth-child(5) { animation-delay: 0.3s; }
            .solution-item:nth-child(6) { animation-delay: 0.35s; }
        }
        
        /* FAQアイテムの統一スタイル - 省スペース・小さな文字 */
        .faq-section {
            padding: var(--spacing-lg) 0;
            position: relative;
        }
        
        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(95, 105, 131, 0.3), transparent);
        }
        
        .faq-section .section-title {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-md);
        }
        
        .faq-list {
            max-width: 100%;
            width: 100%;
        }
        
        .faq-item {
            background: var(--color-white);
            border-radius: var(--radius-sm);
            padding: var(--spacing-sm);
            margin-bottom: var(--spacing-xs);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all 0.3s var(--ease-out-sine);
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
        
        .faq-item:last-child {
            margin-bottom: 0;
        }
        
        .faq-question {
            font-size: var(--font-size-sm);
            color: var(--color-secondary);
            margin: 0;
            padding: 0;
            padding-right: var(--spacing-lg);
            font-weight: 600;
            line-height: var(--line-height-tight);
            cursor: pointer;
            position: relative;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: transparent;
            border: none !important;
            border-bottom: none !important;
        }
        
        /* アコーディオンアイコン */
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-secondary);
            transition: transform 0.3s var(--ease-out-sine);
            line-height: 1;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            font-size: var(--font-size-xs);
            color: var(--color-secondary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.3s var(--ease-out-sine),
                        opacity 0.3s var(--ease-out-sine),
                        margin-top 0.3s var(--ease-out-sine),
                        padding-top 0.3s var(--ease-out-sine);
            display: block;
            word-break: keep-all;
            overflow-wrap: break-word;
        }
        
        .faq-item.active .faq-answer {
            opacity: 1;
            margin-top: var(--spacing-xs);
            padding-top: var(--spacing-xs);
            padding-right: var(--spacing-xs);
            padding-left: 0;
            padding-bottom: var(--spacing-xs);
            border-top: 1px solid var(--color-border);
            max-height: none;
            overflow: visible;
        }
        
        /* モバイル: FAQ回答の改行調整 */
        @media screen and (max-width: 768px) {
            .faq-answer {
                line-height: 1.9;
                font-size: 1.2rem;
                word-break: keep-all;
                overflow-wrap: break-word;
                white-space: normal;
            }
            
            .faq-item.active .faq-answer {
                max-height: none;
                overflow: visible;
            }
        }
        
        @media (hover: hover) and (pointer: fine) {
            .faq-item:hover {
                box-shadow: var(--shadow-md);
                border-color: #5F6983;
            }
            
            .faq-question:hover {
                color: var(--color-secondary);
            }
        }
        
        /* アクセシビリティの改善 */
        @media (hover: hover) and (pointer: fine) {
            * :focus-visible {
                box-shadow: 0 0 0 3px rgba(95, 105, 131, 0.3) !important;
                outline: none;
                border-radius: var(--radius-sm);
            }
        }
        
        /* パフォーマンス最適化 */
        .benefit-item,
        .solution-item,
        .highlight-item,
        .cta-button {
            will-change: transform;
        }
        
        /* 印刷時のスタイル */
        @media print {
            .hero-section.luce-hero,
            .final-cta-section {
                background: var(--color-white) !important;
                color: var(--color-secondary) !important;
            }
            
            .cta-button {
                display: none;
            }
        }
        
        /* ============================================
           ヘッダー - ロゴとハンバーガーメニュー
           ============================================ */
        body {
            padding-top: 7rem; /* 固定ヘッダーの高さ分 */
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            padding: var(--spacing-sm) var(--container-padding-x-mobile);
        }
        
        @media screen and (min-width: 769px) {
            body {
                padding-top: 6rem;
            }
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: var(--container-max-width);
            margin: 0 auto;
        }
        
        .logo {
            flex-shrink: 0;
        }
        
        .logo-img {
            width: auto;
            height: 4rem;
            transform: scale(0.6);
            transform-origin: left center;
        }
        
        .nav {
            display: none;
        }
        
        .hamburger-menu {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 3rem;
            height: 3rem;
            background: var(--unified-gradient);
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            padding: 0.6rem;
            z-index: 1001;
        }
        
        .hamburger-menu span {
            width: 100%;
            height: 0.3rem;
            background: var(--color-white);
            border-radius: 0.2rem;
            transition: all 0.3s ease;
        }
        
        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(0.8rem, 0.8rem);
        }
        
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(0.8rem, -0.8rem);
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 30rem;
            height: 100vh;
            background: var(--unified-gradient);
            transition: right 0.3s ease;
            z-index: 1000;
            padding: 8rem var(--spacing-md) var(--spacing-md);
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav-list li {
            margin-bottom: var(--spacing-md);
        }
        
        .mobile-nav-list a {
            color: var(--color-white);
            font-size: var(--font-size-base);
            text-decoration: none;
            display: block;
            padding: var(--spacing-sm);
            border-radius: var(--radius-md);
            transition: background 0.3s ease;
        }
        
        .mobile-nav-list a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* デスクトップ: ナビゲーション表示 */
        @media screen and (min-width: 769px) {
            .nav {
                display: block;
            }
            
            .hamburger-menu {
                display: none;
            }
            
            .mobile-menu {
                display: none;
            }
            
            .nav-list {
                display: flex;
                list-style: none;
                padding: 0;
                margin: 0;
                gap: var(--spacing-md);
            }
            
            .nav-link {
                color: var(--color-secondary);
                text-decoration: none;
                font-size: var(--font-size-sm);
                transition: color 0.3s ease;
            }
            
            .nav-link:hover {
                color: var(--color-secondary);
            }
        }
        
        /* ============================================
           フッター - シンプルな構造
           ============================================ */
        .footer {
            background: var(--color-white);
            border-top: 1px solid var(--color-border);
            padding: var(--spacing-lg) 0 var(--spacing-md);
            margin-top: var(--spacing-xl);
        }
        
        .footer-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 var(--container-padding-x-mobile);
            text-align: center;
        }
        
        .footer-logo-top {
            margin-bottom: var(--spacing-md);
        }
        
        .footer-logo-small {
            width: auto;
            height: 3rem;
            margin: 0 auto;
        }
        
        .footer-bottom {
            margin-top: var(--spacing-md);
            text-align: center;
        }
        
        .footer-bottom p {
            font-size: var(--font-size-xs);
            color: var(--color-secondary);
            margin: 0;
            text-align: center;
        }
        
        /* デスクトップ: フッターパディング調整 */
        @media screen and (min-width: 769px) {
            .footer-container {
                padding: 0 var(--container-padding-x);
            }
        }
        
        /* 画像セクション - パディング調整 */
        section.image-section {
            padding-top: 30px;
            padding-bottom: 30px;
        }
        
        /* バナーセクション - パディング調整 */
        section.banner-section {
            padding-top: 30px;
            padding-bottom: 30px;
        }
        
        /* ルーチェカラーセクション内のh3 - マージン調整 */
        .luce-colors h3 {
            margin-top: 15px;
        }
        
        /* 加盟店CTA - パディング調整 */
        div.franchise-cta {
            padding-left: 0px;
            padding-right: 0px;
            width: 100%;
            padding-top: 0px;
            padding-bottom: 0px;
            background-color: unset;
            background: unset;
            box-shadow: none;
        }
        
        /* 加盟店CTA内のpタグ - マージン調整 */
        div.franchise-cta p {
            margin-top: 10px;
        }
        
        /* ヘッダー画像 - ボックスサイズと幅調整 */
        img.header-image {
            box-sizing: content-box;
            width: 100%;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        /* LINEバナー画像 - 角丸調整 */
        img.line-banner-image {
            border-radius: 10px;
            box-sizing: border-box;
            position: relative;
            border: 5px solid rgba(181, 202, 211, 0.95);
            will-change: border-color;
            transform: translateZ(0);
            backface-visibility: hidden;
            display: block;
            margin: 6px auto;
        }
        
        /* 2番目: 最初のfinal-cta-section（画像セクションの後）内のline-banner-image → 青 */
        main > section.image-section + section.final-cta-section img.line-banner-image {
            animation: blinkBlue 2s ease-in-out infinite !important;
        }
        
        /* 3番目: franchise-cta内のline-banner-image → 緑 */
        div.franchise-cta img.line-banner-image {
            animation: blinkGreen 2s ease-in-out infinite !important;
        }
        
        /* その他のline-banner-imageは通常のアニメーション */
        img.line-banner-image:not(main > section.image-section + section.final-cta-section img):not(div.franchise-cta img) {
            animation: lucetBorderGlow 2s ease-in-out infinite;
        }
        
        
        .final-cta-section .container {
            overflow: visible;
        }
        
        .final-cta-section a,
        .franchise-cta a {
            display: inline-block;
            padding: 6px;
            overflow: visible;
        }
        
        /* 挨拶バナーセクション */
        .greeting-section {
            padding: var(--section-padding-y) 0;
            background: var(--color-white);
        }
        
        .greeting-banners {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-lg);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .greeting-banner-item {
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: var(--radius-md);
            overflow: visible;
            box-shadow: var(--shadow-md);
            padding: 6px;
        }
        
        .greeting-banner-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        .greeting-banner-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            box-sizing: border-box;
            position: relative;
            animation: lucetBorderGlow 2s ease-in-out infinite;
            will-change: box-shadow;
            transform: translateZ(0);
            backface-visibility: hidden;
            border-radius: var(--radius-md);
        }
        
        .greeting-banners {
            overflow: visible;
        }
        
        .greeting-banner-item {
            overflow: visible !important;
        }
        
        /* モバイル: 挨拶バナー */
        @media screen and (max-width: 768px) {
            .greeting-banners {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
        }
        
        /* 挨拶ポップアップモーダル */
        .greeting-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-md);
        }
        
        .greeting-modal.active {
            display: flex;
        }
        
        .greeting-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
        }
        
        .greeting-modal-content {
            position: relative;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            z-index: 1;
            animation: modalFadeIn 0.3s ease-out;
            display: flex;
            flex-direction: column;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .greeting-modal-close {
            position: sticky;
            top: var(--spacing-sm);
            align-self: flex-end;
            width: 48px;
            height: 48px;
            border: 3px solid var(--color-deepBlue);
            background: var(--color-white);
            border-radius: 50%;
            font-size: 32px;
            font-weight: bold;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-deepBlue);
            transition: all 0.3s ease;
            z-index: 10001;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            margin: var(--spacing-sm);
            margin-bottom: calc(-48px - var(--spacing-sm) * 2);
            flex-shrink: 0;
        }
        
        .greeting-modal-close:hover {
            background: var(--color-deepBlue);
            color: var(--color-white);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        
        .greeting-modal-body {
            padding: var(--spacing-xl);
            padding-top: calc(var(--spacing-xl) + 48px + var(--spacing-sm) * 2);
        }
        
        .greeting-modal-title {
            font-family: var(--font-primary);
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-md);
            text-align: center;
            padding-bottom: var(--spacing-sm);
            border-bottom: 2px solid var(--color-paleBlue);
        }
        
        .greeting-modal-text {
            font-family: var(--font-primary);
            font-size: var(--font-size-base);
            line-height: var(--line-height-relaxed);
            color: var(--color-secondary);
            white-space: pre-line;
        }
        
        .greeting-modal-text p {
            margin-bottom: var(--spacing-sm);
        }
        
        .greeting-modal-text p:last-child {
            margin-bottom: 0;
        }
        
        /* モバイル: ポップアップモーダル */
        @media screen and (max-width: 768px) {
            .greeting-modal-content {
                max-width: 95%;
                max-height: 85vh;
            }
            
            .greeting-modal-body {
                padding: var(--spacing-lg);
            }
            
            .greeting-modal-title {
                font-size: var(--font-size-md);
            }
            
            .greeting-modal-text {
                font-size: var(--font-size-sm);
            }
        }