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

body {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 現地専用カラーパレット */
:root {
    --primary-blue: #4A6FA5;
    --primary-green: #5B8B3A;
    --secondary-gold: #B8860B;
    --warm-beige: #D4B896;
    --action-green: #5B8B3A;
    --light-green: #7CB342;
    --deep-green: #4A7C28;
    --soft-green: #E8F5E8;
    --natural-green: #81C784;
}

/* ==================================================
   ヘッダーセクション（new_style.cssから移植）
================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(74, 111, 165, 0.1);
    z-index: 1000;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
    transition: transform 0.3s ease;
}

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

.logo {
    height: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-info {
    text-align: right;
}

.phone-info .fas{
    padding-right: 10px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4A6FA5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #FF6B47;
}

.phone-hours {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}

.header-cta {
    background: linear-gradient(45deg, #FF6B47, #B8860B);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 71, 0.3);
}

/* ハンバーガーメニューボタン */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #4A6FA5;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ハンバーガーメニューのアニメーション */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ナビゲーションリスト */
.nav-list {
    position: fixed;
    top: 80px;
    right: -300px; /* 初期状態で画面外に配置 */
    width: 280px;
    max-height: calc(100vh - 80px);
    background-color: #fff;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s ease;
    border-radius: 15px 0 0 0;
}

.nav-list.active {
    right: 0; /* アクティブ時に表示 */
}

.nav-list ul {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.nav-list > ul > li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.nav-list > ul > li:last-child {
    border-bottom: none;
}

.nav-list a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    background-color: #f8f9fa;
    color: #4A6FA5;
}

/* 子メニューのスタイル */
.nav-list > ul > li:nth-child(6),
.nav-list > ul > li:nth-child(7) {
    border-left: 3px solid var(--action-green);
    background-color: #f8f9fa;
}

.nav-list > ul > li:nth-child(6) a,
.nav-list > ul > li:nth-child(7) a {
    padding-left: 40px;
    font-size: 0.9rem;
    color: #666;
    position: relative;
}

.nav-list > ul > li:nth-child(6) a::before,
.nav-list > ul > li:nth-child(7) a::before {
    content: '└';
    position: absolute;
    left: 25px;
    color: var(--action-green);
    font-weight: bold;
}

.nav-list > ul > li:nth-child(6) a:hover,
.nav-list > ul > li:nth-child(7) a:hover {
    background-color: #e8f5e8;
    color: var(--action-green);
}


/* オーバーレイ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* スマートフォン用の調整 */
@media screen and (max-width: 500px) {
    .header-content {
        padding: 10px 20px;
    }
    
    .nav-list {
        width: 250px;
        right: -250px;
    }
    
    .dropdown-content {
        width: 180px;
    }
    
    .phone-info {
        display: none; /* スマートフォンでは電話情報を非表示 */
    }
}

.in-factory-button{
    position: absolute;
    top: 100px;
    z-index: 10;
    right: 100px;
    background: linear-gradient(45deg, #FF6B47, #B8860B);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .in-factory-button{
        font-size: 0.7rem;
        padding: 10px 15px;
        top: 80px;
        right: 50px;
    }
}
@media screen and (max-width: 480px) {
    .in-factory-button{
        right: 0px;
    }
}



/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--soft-green) 0%, #f8f9fa 100%);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/lp_onsite2.webp');    
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #2c3e50;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .hero-content {
        margin-top: 0px;
    }
}
@media screen and (max-width: 400px) {
    .hero{
        height: auto;
    }

    .hero-content {
        margin-top: 50px;
    }
    .hero-cta{
        margin-bottom: 30px;
    }
}

.hero-badge {
    color: var(--primary-green);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 1px 1px 2px #ddd;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 1px 1px 2px #333;
}

.hero-subtitle {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.15);
    padding: 20px 30px;
    border-radius: 15px;
    margin: 40px 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);

}

.hero-phone {
    background: rgba(255,255,255,0.9);
    padding: 20px 30px;
    border-radius: 15px;
    margin: 40px 0;
    backdrop-filter: blur(20px);
    border: 2px solid var(--soft-green);
}

.hero-phone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-green);
    margin-bottom: 8px;
}

.hero-phone-number .fas{
    padding-right: 10px;
}

.hero-phone-hours {
    font-size: 1rem;
    color: #666;
}

.hero-cta {
    background: linear-gradient(45deg, var(--action-green), var(--deep-green));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(91, 139, 58, 0.3);
}

@media screen and (max-width: 400px) {
    .hero-cta{
        margin-bottom: 30px;
    }
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 139, 58, 0.4);
}


/* セクション共通スタイル */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--action-green), var(--secondary-gold));
    border-radius: 2px;
}

/* 3つのメリットセクション */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid var(--soft-green);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--action-green), var(--natural-green));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(91, 139, 58, 0.15);
    border-color: var(--action-green);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--action-green), var(--natural-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(91, 139, 58, 0.3);
}

.benefit-icon span {
    font-size: 2rem;
    filter: grayscale(1) brightness(10);
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.benefit-details {
    margin-top: 20px;
    text-align: left;
}

.benefit-details ul {
    list-style: none;
    padding: 0;
}

.benefit-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.benefit-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--action-green);
    font-weight: bold;
}

/* 作業内容詳細セクション */
.work-details-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-green) 0%, #f8f9fa 100%);
}

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

.work-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--warm-beige);
    transition: all 0.3s ease;
}

.work-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--action-green);
}

.category-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--soft-green);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--action-green), var(--natural-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon span {
    font-size: 1.5rem;
    filter: grayscale(1) brightness(10);
}

.category-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: bold;
}

.category-work-list {
    list-style: none;
    padding: 0;
}

.category-work-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
    line-height: 1.5;
}

.category-work-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--action-green);
    font-weight: bold;
}

.work-note {
    background: linear-gradient(135deg, #e8f5fd 0%, var(--soft-green) 100%);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--action-green);
}

.work-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--deep-green);
    font-weight: 500;
}

/* 作業内容詳細セクション - 写真スタイル */
.category-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border: 2px solid var(--soft-green);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.category-image:hover {
    border-color: var(--action-green);
    transform: scale(1.02);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.category-image::before {
    content: '写真をここに配置';
    position: absolute;
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    z-index: 1;
    pointer-events: none;
}

.category-image:has(img)::before {
    display: none;
}

/* プラン選択セクション */
.plans-section {
    padding: 100px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 3px solid var(--soft-green);
    position: relative;
    transition: all 0.4s ease;
    overflow: visible;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(91, 139, 58, 0.1);
    border-color: var(--action-green);
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--soft-green);
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.plan-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: bold;
}

/* レスポンシブ対応：768px以下で横並び */
@media (max-width: 768px) {
    .plan-header {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        text-align: left;
    }
    
    .plan-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        font-size: 2.5rem;
    }
    
    .plan-title {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    
    .plan-subtitle {
        font-size: 1rem;
    }
}

/* レスポンシブ対応：600px以下でplan-subtitleを2段目に下げる */
@media (max-width: 600px) {
    .plan-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .plan-icon {
        margin-bottom: 10px;
        font-size: 2rem;
    }
    
    .plan-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .plan-subtitle {
        font-size: 0.9rem;
        margin-top: 5px;
    }
}

.plan-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.plan-price-container {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--soft-green);
    border-radius: 15px;
}

.plan-up-detail{
    font-size: 0.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.plan-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-green);
    margin-bottom: 8px;
}

.plan-price-note {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.plan-savings {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: bold;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    line-height: 1.5;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--action-green);
    font-weight: bold;
}

.plan-button {
    width: 100%;
    background: linear-gradient(45deg, var(--action-green), var(--deep-green));
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 139, 58, 0.3);
}

.plan-recommended {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(91, 139, 58, 0.3);
    border: 3px solid var(--action-green);
    animation: gentle-pulse 2s infinite;
}

.plan-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--action-green), var(--natural-green));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(91, 139, 58, 0.3);
    width: 300px;
    text-align: center;
}
@media (max-width: 756px) {
    .plan-badge{
        top: -45px;
        width: 300px;
        text-align: center;
    }
}

/* Before→After実例セクション */
.before-after-section {
    padding: 100px 0;
    background: white;
}

/* 大きな写真ギャラリー */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* レスポンシブ対応：タブレット以下で2列 */
@media (max-width: 1024px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* レスポンシブ対応：スマートフォンで1列 */
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .gallery-item {
        padding: 15px;
    }
    
    .gallery-caption h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .gallery-item {
        padding: 12px;
    }
    
    .gallery-caption h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .gallery-caption p {
        font-size: 0.85rem;
    }
}

.gallery-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(74,111,165,0.05) 0%, rgba(91,139,58,0.05) 100%);
    transition: width 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(74,111,165,0.3);
}

.gallery-item > * {
    position: relative;
    z-index: 2;
}

.gallery-image {
    margin-bottom: 20px;
}

.gallery-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--action-green), var(--natural-green));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid #666;
    transition: all 0.3s ease;
}

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

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.02);
    border-color: #4A6FA5;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 50%);
}

.gallery-placeholder span {
    position: relative;
    z-index: 1;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.gallery-placeholder .no-polisher{
    width: 150px;
    height: 200px;
    font-size: 1.3rem;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
}

.gallery-caption h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.example-card {
    background: var(--soft-green);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.example-title {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.before-item,
.after-item {
    text-align: center;
}

.before-image,
.after-image {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.before-image {
    background: linear-gradient(135deg, #8d6e63 0%, #5d4037 100%);
    color: white;
}

.after-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 2px solid var(--action-green);
}

.before-label {
    color: #d32f2f;
    font-weight: bold;
}

.after-label {
    color: var(--action-green);
    font-weight: bold;
}

/* 比較テーブルセクション */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--soft-green) 100%);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, #7cb34273, var(--natural-green));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}

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

.comparison-table span{
    vertical-align: middle;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-check {
    color: var(--action-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-cross {
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 作業の流れセクション */
.workflow-section {
    padding: 100px 0;
    background: white;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--soft-green);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--action-green);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--action-green), var(--natural-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.step-time {
    color: var(--deep-green);
    font-weight: 500;
    font-size: 0.9rem;
}

/* 対応エリア・料金セクション */
.area-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-green) 0%, #f8f9fa 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--action-green);
}

.location-header {
    text-align: center;
    margin-bottom: 25px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--action-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.location-title {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.location-region {
    color: #666;
}

.location-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.location-address {
    text-align: center;
    font-weight: bold;
    color: var(--deep-green);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--action-green);
}

/* 料金表スタイル */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    table-layout: fixed;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    width: 172px;
}

.pricing-table thead tr {
    background: linear-gradient(135deg, var(--primary-blue), var(--action-green));
}

.pricing-table th {
    padding: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.pricing-table tbody tr:last-child {
    background: #f8f9fa;
}

.pricing-table td {
    padding: 20px;
    color: #333;
    font-size: 1rem;
}

.pricing-table td:first-child {
    text-align: left;
}

.pricing-table td:last-child {
    text-align: right;
    color: var(--deep-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-table tbody tr:last-child td:first-child {
    font-weight: 500;
}

.pricing-table tbody tr:last-child td:last-child {
    font-size: 1.3rem;
}

/* 追加料金注釈スタイル */
.additional-fees-note {
    background: #fff3e0;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-gold);
    max-width: 700px;
    margin: auto;
}

.additional-fees-note h4 {
    color: var(--secondary-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.additional-fees-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-fees-note li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    font-size: 0.95rem;
}

.additional-fees-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: bold;
}

/* 比較セクション内の推奨プラン */
.comparison-recommended-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.comparison-recommended-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.comparison-recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.comparison-recommended-item {
    background: var(--soft-green);
    padding: 15px;
    border-radius: 10px;
}

/* 対応エリア詳細 */
.area-details-title {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

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

.area-details-item {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
}

.area-details-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--action-green);
    font-weight: bold;
}

/* 料金詳細コンテナ */
.pricing-details-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.pricing-details-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.pricing-details-withouttax{
    color: #333;
    font-size: 0.8rem;
    font-weight: 100;
}

.pricing-details-campaign{
    color: #dc3545;
    font-size: 1rem;
}

.pricing-table-container {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-contact-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 10px;
}

.pricing-contact-note p {
    margin: 0;
    color: var(--primary-blue);
    font-weight: 500;
}

/* FAQ回答内のスタイル */
.faq-answer-text {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.faq-answer-text:last-child {
    margin: 0;
}

.faq-highlight-box {
    padding: 15px;
    border-radius: 10px;
}

.faq-highlight-box.green {
    background: var(--soft-green);
}

.faq-highlight-box.blue {
    background: #e3f2fd;
}

.faq-highlight-box.orange {
    background: #fff3e0;
}

.faq-highlight-box.yellow {
    background: #ffd54f;
    color: #f57f17;
}

.faq-highlight-box.light-green {
    background: #e8f5e8;
}

.faq-highlight-text {
    margin: 0;
    font-weight: 500;
}

.faq-highlight-text.green {
    color: var(--deep-green);
}

.faq-highlight-text.blue {
    color: var(--primary-blue);
}

.faq-highlight-text.orange {
    color: var(--secondary-gold);
}

.faq-highlight-text.light-green {
    color: var(--action-green);
}

/* FAQ最終セクション */
.faq-final-section {
    text-align: center;
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--action-green) 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
}

.faq-final-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-final-text {
    margin-bottom: 25px;
    opacity: 0.95;
}

.faq-final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-final-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-final-button.primary {
    background: white;
    color: var(--primary-blue);
}

.faq-final-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* 工房クリーニング誘導セクション */
.workshop-benefits-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.workshop-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.workshop-benefit-card {
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid;
}

.workshop-benefit-card.blue {
    background: #e3f2fd;
    border-left-color: var(--primary-blue);
}

.workshop-benefit-card.green {
    background: #e8f5e8;
    border-left-color: var(--action-green);
}

.workshop-benefit-card.gold {
    background: #fff3e0;
    border-left-color: var(--secondary-gold);
}

.workshop-benefit-title {
    margin-bottom: 10px;
}

.workshop-benefit-title.blue {
    color: var(--primary-blue);
}

.workshop-benefit-title.green {
    color: var(--action-green);
}

.workshop-benefit-title.gold {
    color: var(--secondary-gold);
}

.workshop-benefit-text {
    margin: 0;
    color: #555;
}

.workshop-description {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

.workshop-link-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-blue), var(--action-green));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.in-factory-discription-button{
    background: linear-gradient(45deg, #FF6B47, #B8860B);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

/* CTAセクション内のスタイル */
.cta-final-text {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* フッター内のスタイル */
.footer-phone-icon {
    font-size: 1.2rem;
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.footer-area-info {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-area-label {
    color: rgba(255,255,255,0.95);
}

.footer-hours-section {
    margin-bottom: 25px;
}

.footer-hours-title {
    font-size: 1rem;
    font-weight: bold;
    color: #87CEEB;
    margin-bottom: 12px;
}

.footer-hours-container {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

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

.footer-hours-label {
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}

.footer-hours-value {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

.footer-services-section {
    margin-bottom: 25px;
}

.footer-services-title {
    font-size: 1rem;
    font-weight: bold;
    color: #87CEEB;
    margin-bottom: 12px;
}

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

.footer-services-item {
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-left: 15px;
}

.footer-services-item::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--action-green);
    font-weight: bold;
}

.footer-contact-section {
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.footer-contact-icon {
    color: #FFD700;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-content {
    flex: 1;
}

.footer-contact-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #87CEEB;
    margin-bottom: 5px;
}

.footer-contact-link {
    font-size: 1rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 3px;
}

.footer-contact-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

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

.footer-main-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--action-green), var(--deep-green));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(91, 139, 58, 0.3);
}

.footer-main-button-icon {
    font-size: 1.1rem;
}

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

/* お客様の声セクション */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--warm-beige);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--action-green);
}

.testimonial-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ共通スタイル */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-green) 0%, #f8f9fa 100%);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--soft-green);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--action-green);
    transform: translateX(5px);
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--action-green);
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(91, 139, 58, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 25px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--action-green);
    color: white;
}

/* 工房クリーニング誘導セクション */
.workshop-link-section {
    padding: 80px 0;
    background: white;
}

.workshop-link-content {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--soft-green) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px dashed var(--action-green);
}

/* スペシャルクリーニング誘導セクション */
.special-cleaning-link-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffd54f 100%);
    position: relative;
    overflow: hidden;
}

.special-cleaning-link-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.special-cleaning-content {
    background: url('image/lp_special2.jpg');
    background-size: cover;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.2);
    text-align: center;
    border: 3px solid var(--secondary-gold);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.special-badge {
    background: linear-gradient(45deg, var(--secondary-gold), #FFD700);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.special-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.special-cleaning-title-div {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 225, 0.8) 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.special-benefits-title {
    color: var(--secondary-gold);
    font-size: 2.4rem;
    font-weight: bold;
    text-shadow: 2px 1px 4px #fff;
}

.special-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.special-benefit-card {
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 0.3s ease;
    z-index: 1;
}

.special-benefit-card:hover::before {
    width: 100%;
}

.special-benefit-card > * {
    position: relative;
    z-index: 2;
}

.special-benefit-card.gold {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: var(--secondary-gold);
}

.special-benefit-card.gold::before {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.special-benefit-card.diamond {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left-color: #9c27b0;
}

.special-benefit-card.diamond::before {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(186, 104, 200, 0.1) 100%);
}

.special-benefit-card.star {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-left-color: var(--action-green);
}

.special-benefit-card.star::before {
    background: linear-gradient(135deg, rgba(91, 139, 58, 0.1) 0%, rgba(129, 199, 132, 0.1) 100%);
}

.special-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.special-benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.special-benefit-card:hover .special-benefit-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.special-benefit-title {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}

.special-benefit-title.gold {
    color: var(--secondary-gold);
}

.special-benefit-title.diamond {
    color: #9c27b0;
}

.special-benefit-title.star {
    color: var(--action-green);
}

.special-benefit-text {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.special-target-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,248,225,0.8) 100%);
    border-radius: 20px;
    border: 2px solid rgba(184, 134, 11, 0.3);
}

.special-target-title {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: bold;
}

.special-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.special-target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(184, 134, 11, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-target-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.3s ease;
}

.special-target-item:hover::before {
    left: 100%;
}

.special-target-item:hover {
    transform: translateX(5px);
    border-color: var(--secondary-gold);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.target-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-gold), #FFD700);
    border-radius: 50%;
    color: white;
    box-shadow: 0 3px 10px rgba(184, 134, 11, 0.3);
    position: relative;
    z-index: 2;
}

.target-text {
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.special-cta-container {
    text-align: center;
}

.special-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, var(--secondary-gold), #FFD700);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.special-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FFD700, var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.special-cta-button:hover::before {
    opacity: 1;
}

.special-cta-button > * {
    position: relative;
    z-index: 2;
}

.special-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
    border-color: rgba(255,255,255,0.3);
}

.special-cta-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .special-cleaning-content {
        padding: 30px 25px;
    }
    
    .special-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .special-target-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .special-target-item {
        padding: 12px 15px;
    }
    
    .special-cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .special-cleaning-content {
        padding: 25px 20px;
    }
    
    .special-benefits-title {
        font-size: 1.5rem;
    }
    
    .special-target-title {
        font-size: 1.3rem;
    }
    
    .special-benefit-card {
        padding: 20px;
    }
    
    .special-target-section {
        padding: 20px;
    }
}

/* CTAセクション */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--action-green) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.cta-button {
    background: white;
    color: var(--primary-blue);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.3);
}

.cta-button.primary {
    background: var(--deep-green);
    color: white;
}

.cta-button.primary:hover {
    background: #3d5c20;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}


.footer-company {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.company-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.company-description {
    margin-bottom: 25px;
}

.company-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.footer-contact-main {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.main-phone {
    text-align: center;
}

.footer-phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-phone-number:hover {
    color: #FFF700;
    transform: scale(1.05);
}

.phone-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    padding-bottom: 8px;
}

.footer-location-item {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid var(--action-green);
}

.footer-location-title {
    font-size: 1rem;
    font-weight: bold;
    color: #87CEEB;
    margin-bottom: 10px;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* フォームセクション */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-green) 0%, #f8f9fa 100%);
}

.form-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--action-green), var(--secondary-gold));
    border-radius: 2px;
}

#pianoForm {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#form-section-over {
    border: none;
    padding: 0;
    margin: 0;
}

fieldset {
    border: 2px solid var(--soft-green);
    border-radius: 15px;
    padding: 20px;
    background: #fafbfc;
}

fieldset legend {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

.piano-type,
.request {
    margin-bottom: 25px;
}

.piano-type legend,
.request legend {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 15px;
    background: none;
    padding: 0;
    border-radius: 0;
}

.piano-type label,
.request label {
    display: block;
    margin-bottom: 10px;
    padding: 12px 15px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 45px;
}

.piano-type label:hover,
.request label:hover {
    border-color: var(--action-green);
    background: var(--soft-green);
}

.piano-type input[type="radio"],
.request input[type="checkbox"] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    accent-color: var(--action-green);
}

.piano-type input[type="radio"]:checked + span,
.request input[type="checkbox"]:checked + span {
    color: var(--primary-blue);
    font-weight: bold;
}

.customer-info {
    background: white;
    border: 2px solid var(--action-green);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.required {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--action-green);
    box-shadow: 0 0 0 3px rgba(91, 139, 58, 0.1);
}

/* UP/GPオプション */
#upOptions,
#gpOptions {
    background: #f8f9fa;
    border: 2px solid var(--warm-beige);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.manufacturer,
.model-name,
.environment,
.postalCode,
.address,
.address2,
.floor {
    margin-bottom: 20px;
}

.manufacturer label,
.model-name label,
.environment label,
.postalCode label,
.address label,
.address2 label,
.floor label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.manufacturer select,
.model-name input,
.environment select,
.postalCode input,
.address input,
.address2 input,
.floor select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

/* ラジオボタンとチェックボックスのスタイル */
.elevator,
.up-steps-from,
.up-steps-to,
.gp-steps-from,
.gp-steps-to,
.up-from-disassembly,
.up-to-disassembly,
.gp-from-disassembly,
.up-from-window,
.up-to-window,
.gp-from-window,
.gp-to-window {
    margin-bottom: 20px;
}

.elevator p,
.up-steps-from p,
.up-steps-to p,
.gp-steps-from p,
.gp-steps-to p,
.up-from-disassembly p,
.up-to-disassembly p,
.gp-from-disassembly p,
.up-from-window p,
.up-to-window p,
.gp-from-window p,
.gp-to-window p {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.elevator label,
.up-steps-from label,
.up-steps-to label,
.gp-steps-from label,
.gp-steps-to label,
.up-from-disassembly label,
.up-to-disassembly label,
.gp-from-disassembly label,
.up-from-window label,
.up-to-window label,
.gp-from-window label,
.gp-to-window label {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 8px;
    padding: 8px 15px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.elevator label:hover,
.up-steps-from label:hover,
.up-steps-to label:hover,
.gp-steps-from label:hover,
.gp-steps-to label:hover,
.up-from-disassembly label:hover,
.up-to-disassembly label:hover,
.gp-from-disassembly label:hover,
.up-from-window label:hover,
.up-to-window label:hover,
.gp-from-window label:hover,
.gp-to-window label:hover {
    border-color: var(--action-green);
    background: var(--soft-green);
}

.elevator input[type="radio"],
.up-steps-from input[type="radio"],
.up-steps-to input[type="radio"],
.gp-steps-from input[type="radio"],
.gp-steps-to input[type="radio"],
.up-from-disassembly input[type="radio"],
.up-to-disassembly input[type="radio"],
.gp-from-disassembly input[type="radio"],
.up-from-window input[type="radio"],
.up-to-window input[type="radio"],
.gp-from-window input[type="radio"],
.gp-to-window input[type="radio"] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    accent-color: var(--action-green);
}

/* 条件付き表示要素 */
.up-stepCount-from,
.up-stepCount-to,
.gp-stepCount-from,
.gp-stepCount-to,
.up-elevatorType-from,
.up-elevatorType-to,
.gp-elevatorType-from,
.gp-elevatorType-to,
.up-from-carry-on-hand,
.up-to-carry-on-hand,
.gp-from-carry-on-hand,
.gp-to-carry-on-hand {
    margin-top: 15px;
    padding: 15px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-gold);
}

.up-stepCount-from label,
.up-stepCount-to label,
.gp-stepCount-from label,
.gp-stepCount-to label,
.up-elevatorType-from label,
.up-elevatorType-to label,
.gp-elevatorType-from label,
.gp-elevatorType-to label,
.up-from-carry-on-hand label,
.up-to-carry-on-hand label,
.gp-from-carry-on-hand label,
.gp-to-carry-on-hand label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-gold);
    font-weight: 600;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.up-stepCount-from select,
.up-stepCount-to select,
.gp-stepCount-from select,
.gp-stepCount-to select,
.up-elevatorType-from select,
.up-elevatorType-to select,
.gp-elevatorType-from select,
.gp-elevatorType-to select,
.up-from-carry-on-hand select,
.up-to-carry-on-hand select,
.gp-from-carry-on-hand select,
.gp-to-carry-on-hand select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
}

/* フォーム注意書き */
.form-caution {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.preview-bold {
    font-weight: bold;
    color: #dc3545;
}

/* クリーニング・調律のみセクション */
.cleaningtuning {
    background: #e3f2fd;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

/* 送信ボタン */
.send-button {
    width: 100%;
    background: linear-gradient(45deg, var(--action-green), var(--deep-green));
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(91, 139, 58, 0.3);
}

.send-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(91, 139, 58, 0.4);
}

.send-button:active {
    transform: translateY(-1px);
}

/* GPピアノサイズ選択 */
.gpPianoSizeYAMAHA,
.gpPianoSizeKAWAI,
.gpPianoSizeSTEINWAY,
.gpPianoSizeBosendorfer,
.gpPianoSizeBechstein,
.gpPianoSizeOtherPiano {
    margin-bottom: 20px;
    display: none;
}

.gpPianoSizeYAMAHA label,
.gpPianoSizeKAWAI label,
.gpPianoSizeSTEINWAY label,
.gpPianoSizeBosendorfer label,
.gpPianoSizeBechstein label,
.gpPianoSizeOtherPiano label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.gpPianoSizeYAMAHA select,
.gpPianoSizeKAWAI select,
.gpPianoSizeSTEINWAY select,
.gpPianoSizeBosendorfer select,
.gpPianoSizeBechstein select,
.gpPianoSizeOtherPiano select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-phone-number {
        font-size: 2rem;
    }

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

    .benefits-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .work-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workflow-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-info {
        display: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* フォームのレスポンシブ */
    #pianoForm {
        padding: 25px 20px;
    }

    fieldset {
        padding: 20px 15px;
    }

    .elevator label,
    .up-steps-from label,
    .up-steps-to label,
    .gp-steps-from label,
    .gp-steps-to label,
    .up-from-disassembly label,
    .up-to-disassembly label,
    .gp-from-disassembly label,
    .up-from-window label,
    .up-to-window label,
    .gp-from-window label,
    .gp-to-window label {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    .pricing-details-container {
        padding: 20px;
    }
    .pricing-table td{
        padding: 10px
    }
    .pricing-table td:last-child{
        font-size: 1.1rem;
    }
    .pricing-table tbody tr:last-child td:last-child{
        font-size: 1.1rem;
    }
    .pricing-details-campaign{
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-phone-number {
        font-size: 1.8rem;
    }

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

    .benefit-card,
    .work-category,
    .plan-card {
        padding: 25px 20px;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .workflow-step {
        padding: 20px;
    }

    /* フォームのモバイル対応 */
    #pianoForm {
        padding: 20px 15px;
    }

    .form-section h2 {
        font-size: 2rem;
    }

    fieldset {
        padding: 15px 10px;
    }

    fieldset legend {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* ==================================================
   固定お問い合わせボタン
================================================== */
.fixed-contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: fadeInUp 1s ease-out;
    transition: all 1s ease;
}

.fixed-contact-button.hidden {
    opacity: 0;
    transform: translateY(150px);
    pointer-events: none;
    visibility: hidden;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #5B8B3A, #4A7C28);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(91, 139, 58, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(91, 139, 58, 0.5);
    color: white;
    text-decoration: none;
}

.contact-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.contact-text {
    font-size: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

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

/* スマートフォン対応 */
@media (max-width: 768px) {
    .fixed-contact-button {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .contact-icon {
        font-size: 1.1rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fixed-contact-button {
        bottom: 10px;
        right: 10px;
    }
    
    .contact-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 0.85rem;
    }
}
