/* 基本設定 */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1e3a8a; /* 暗めの青色 */
    --secondary-color: #3b82f6; /* 明るい青色 */
    --text-color: #333;
    --bg-color: #fff;
    --footer-bg: #1e3a8a;
    --section-padding: 4rem 0;
    --highlight-blue: #0056b3;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn::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.5s;
}

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

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s;
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* ヘッダー */
.menu-trigger,
.accordion-trigger {
    color: #fff;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
    line-height: 1;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.menu-trigger:hover,
.accordion-trigger:hover {
    color: #93c5fd;
}

.accordion-trigger {
    padding: 15px 20px;
    border-bottom: 1px solid #374151;
    position: relative;
}

.accordion-trigger::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion.active .accordion-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}
header {
    background-color: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: none;
    width: 100%;
    height: 60px;
}

.logo a {
    display: block;
}

.logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.pc-nav ul {
    display: flex;
}

.pc-nav ul li {
    position: relative;
    margin-left: 20px;
}

.pc-nav ul li a {
    padding: 20px 15px;
    display: block;
    font-weight: 500;
    transition: color 0.3s;
    line-height: 1;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.pc-nav ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* サブメニュー */
.has-submenu {
    position: static;
}

.submenu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    transform: translateY(10px);
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 0;
    padding: 30px 5%;
    border: none;
    border-top: 1px solid #e0e0e0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-height: 80vh;
    overflow-y: auto;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
    width: 100%;
}

.submenu li a {
    color: var(--primary-color);
    padding: 15px 0;
    display: block;
    text-align: left;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    max-width: none;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.submenu li a:after {
    content: '>';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.submenu li a:before {
    display: none;
}

.submenu li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 10px;
}

.submenu li a:hover:after {
    color: var(--primary-color);
}

.free-services-header {
    padding: 12px 0 12px 15px;
    font-weight: 600;
    background-color: #f8f9fa;
    color: var(--primary-color);
    text-align: left;
    border-radius: 0;
    margin: 20px 0 10px 0;
    font-size: 0.9rem;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    max-width: none;
    width: 100%;
    position: relative;
}

.free-services-header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
}

/* スマホナビ */
.sp-nav-btn {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.sp-nav-btn span {
    height: 3px;
    width: 20px;
    background-color: white;
    margin-bottom: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sp-nav-btn span:last-child {
    margin-bottom: 0;
}

.sp-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--primary-color);
    padding: 20px;
    overflow-y: auto;
}

.sp-nav ul li {
    margin-bottom: 15px;
}

.sp-nav ul li a {
    color: white;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
}

.sp-nav ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* アコーディオン */
.accordion {
    position: relative;
}

.accordion:after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion.open:after {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding-left: 20px;
}

.accordion-content li {
    margin-top: 10px;
}

/* ヒーローセクション */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('rmove1.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    animation: slideInFromTop 1s ease-out 0.3s both !important;
    line-height: 1.2 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}

/* スマホ用レスポンシブ対応 */
@media (max-width: 768px) {
    /* ハンバーガーメニュー表示 */
    .sp-nav-btn {
        display: flex;
    }
    
    .pc-nav {
        display: none;
    }
    
    .hero {
        padding: 100px 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1rem;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
        padding: 0 10px !important;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.1 !important;
        padding: 0 5px !important;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .hero-buttons {
        padding: 0 10px;
    }
    
    .btn {
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInFromTop 1s ease-out 0.6s both;
    opacity: 0;
    transform: translateY(-50px);
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: slideInFromBottom 1s ease-out 0.9s both;
    opacity: 0;
    transform: translateY(50px);
    flex-wrap: wrap;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 特徴セクション */
.features {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
}

.feature-header {
    position: relative;
    margin-bottom: 3rem;
}

.feature-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-subtitle-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    margin: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* プランセクション */
.plans {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
}

.plan-header {
    position: relative;
    margin-bottom: 3rem;
}

.plan-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

.plan-subtitle-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
}

.plan-grid {
    margin-top: 3rem;
}

.plan-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.plan-item {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    flex: 1 1 300px;
    max-width: 500px;
    position: relative;
    border: 1px solid #eee;
}

.plan-item:hover {
    transform: translateY(-5px);
}

.plan-image {
    position: relative;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ダミー画像の背景（実際の実装では画像ファイルを使用します） */
.plan-item:nth-child(1) .plan-image {
    background-color: #f0f0f0;
    height: 250px;
}

.plan-item:nth-child(2) .plan-image {
    background-color: #e0e0e0;
    height: 250px;
}

.plan-item:nth-child(3) .plan-image {
    background-color: #d0d0d0;
    height: 250px;
}

.plan-item:nth-child(4) .plan-image {
    background-color: #c0c0c0;
    height: 250px;
}

.plan-item:nth-child(5) .plan-image {
    background-color: #b0b0b0;
    height: 250px;
}

.plan-number {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--highlight-blue);
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    padding: 10px 25px;
    z-index: 1;
    opacity: 0.9;
}

.plan-content {
    padding: 15px;
    text-align: center;
}

.plan-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 3px;
    font-weight: 600;
}

.plan-subtitle {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.plan-link {
    position: relative;
    text-align: right;
}

.arrow-link {
    display: inline-block;
}

.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--highlight-blue);
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    margin-right: 10px;
}

.arrow-link:hover .arrow {
    background-color: var(--highlight-blue);
    color: white;
}

/* ガイドセクション */
.guide {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
}

.guide-header {
    position: relative;
    margin-bottom: 3rem;
}

.guide-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

.guide-subtitle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.guide-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.guide-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.guide-image {
    position: relative;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.guide-content {
    padding: 1.5rem;
    position: relative;
}

.guide-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.guide-content .guide-subtitle {
    position: static;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 1;
}

.guide-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}

.guide-link .arrow-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-link .arrow-link:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.guide-link .arrow {
    font-size: 1.2rem;
    font-weight: bold;
}

/* 見積もりセクション */
.estimate {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
}

.estimate-header {
    position: relative;
    margin-bottom: 3rem;
}

.estimate-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.estimate-subtitle-bg {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
    line-height: 1;
}

.estimate-content {
    position: relative;
}

.estimate-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.estimate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.estimate-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.estimate-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.estimate-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.estimate-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 0.5rem;
}

.estimate-icon i:first-child {
    margin-left: 0;
}

.estimate-icon i:last-child {
    margin-right: 0;
}

.estimate-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.estimate-content .estimate-description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.estimate-link {
    position: relative;
    text-align: center;
}

.estimate-link .arrow-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.estimate-link .arrow-link:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.estimate-link .arrow {
    font-size: 1.2rem;
    font-weight: bold;
}

.estimate-bottom-text {
    text-align: center;
    font-size: 2rem;
    color: rgba(30, 58, 138, 0.3);
    font-weight: 700;
    margin-top: 2rem;
}

/* お問い合わせセクション */
.contact-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-tel {
    margin-top: 20px;
    font-size: 1.2rem;
}

.tel-link {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin: 10px 0;
}

/* フッター */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* ページヘッダー */
.page-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 企業理念ページ */
.philosophy-main {
    padding: var(--section-padding);
}

.philosophy-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.philosophy-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-item:first-child {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.philosophy-item:first-child h3 {
    font-size: 2rem;
    margin-bottom: 0;
}

.philosophy-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-item:first-child h3 {
    color: white;
}

.philosophy-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

/* CTA セクション */
.cta-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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



/* WEB見積もりページ専用スタイル */
.web-estimate-flow {
    padding: var(--section-padding);
    background-color: white;
}

.web-estimate-benefits {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.web-estimate-form {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
}

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

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.form-btn.primary-btn {
    background: white;
    color: var(--primary-color);
}

.form-btn.primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-btn.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.form-btn.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-btn {
        min-width: 280px;
    }
}

/* WEB見積もりフォームページ専用スタイル */
.web-estimate-form-page {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.estimate-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h2 i {
    color: var(--primary-color);
}

.section-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    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(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* お荷物リストスタイル */
.items-category {
    margin-bottom: 2rem;
}

.items-category h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.item-group {
    display: flex;
    flex-direction: column;
}

.item-group label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.item-group select {
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.item-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* 送信ボタンスタイル */
.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.submit-note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1rem;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .estimate-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 引越プランページ専用スタイル */
.single-plan-overview,
.family-plan-overview,
.ladies-plan-overview {
    padding: var(--section-padding);
    background-color: white;
}

.single-plan-header,
.family-plan-header,
.ladies-plan-header {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
}

.single-plan-title,
.family-plan-title,
.ladies-plan-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
    text-align: left;
}

.single-plan-subtitle-bg,
.family-plan-subtitle-bg,
.ladies-plan-subtitle-bg {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
    line-height: 1;
}

.single-plan-content,
.family-plan-content,
.ladies-plan-content {
    max-width: 1200px;
    margin: 0 auto;
}

.single-plan-text,
.family-plan-text,
.ladies-plan-text {
    text-align: center;
    margin-bottom: 3rem;
}

.single-plan-text p,
.family-plan-text p,
.ladies-plan-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.single-plan-features,
.family-plan-features,
.ladies-plan-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.single-plan-feature-item,
.family-plan-feature-item,
.ladies-plan-feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.single-plan-feature-item:hover,
.family-plan-feature-item:hover,
.ladies-plan-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.single-plan-feature-item i,
.family-plan-feature-item i,
.ladies-plan-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.single-plan-feature-item span,
.family-plan-feature-item span,
.ladies-plan-feature-item span {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}



/* コース紹介セクション */
.course-introduction {
    padding: var(--section-padding);
    background-color: white;
}



.course-header {
    flex-direction: column;
    gap: 1rem;
}

.course-catch h3 {
    font-size: 1.8rem;
}

.course-catch h4 {
    font-size: 2.2rem;
}

.course-features {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.course-features::before {
    display: none;
}

.feature-circle {
    width: 100px;
    height: 100px;
    font-size: 0.85rem;
}

/* スマホでも横並びを維持 */
@media (max-width: 768px) {
    .course-features {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .feature-circle {
        width: 80px !important;
        height: 80px !important;
        font-size: 0.75rem !important;
    }
    
    /* 改行を減らすためのフォントサイズ調整 */
    .catch-text {
        font-size: 0.9rem !important;
    }
    
    .course-catch h3 {
        font-size: 1.8rem !important;
    }
    
    .course-info p {
        font-size: 0.85rem !important;
    }
    
    .course-info h4 {
        font-size: 1.6rem !important;
    }
    
    .course-description p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .course-services h5 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .course-features {
        gap: 0.8rem !important;
    }
    
    .feature-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 0.7rem !important;
    }
    
    /* さらに小さい画面での改行防止 */
    .catch-text {
        font-size: 0.8rem !important;
    }
    
    .course-catch h3 {
        font-size: 1.6rem !important;
    }
    
    .course-info p {
        font-size: 0.8rem !important;
    }
    
    .course-info h4 {
        font-size: 1.4rem !important;
    }
    
    .course-description p {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .course-services h5 {
        font-size: 1rem !important;
    }
}

.standard-course .feature-circle {
    border-color: #3b82f6;
    color: #3b82f6;
}

.rakuraku-course .feature-circle {
    border-color: #10b981;
    color: #10b981;
}

.full-service-course .feature-circle {
    border-color: #f59e0b;
    color: #f59e0b;
}

.service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-item {
    padding: 1rem 0.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
}

.service-icon i {
    font-size: 1.2rem;
}

.service-images {
    grid-template-columns: 1fr;
}

.payment-options {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.payment-option {
    min-width: 200px;
    flex: 1;
    max-width: 300px;
}

.flow-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.step-number {
    align-self: center;
}

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

.phone-buttons {
    flex-direction: column;
    align-items: center;
}

/* 引越プランページのコース部分専用スタイル */
.course-item {
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.standard-course {
    border-color: #3b82f6;
}

.standard-course .feature-circle {
    border-color: #3b82f6;
    color: #3b82f6;
}

.standard-course .feature-circle:hover {
    background: #3b82f6;
    color: white;
}

.rakuraku-course {
    border-color: #10b981;
}

.rakuraku-course .feature-circle {
    border-color: #10b981;
    color: #10b981;
}

.rakuraku-course .feature-circle:hover {
    background: #10b981;
    color: white;
}

.full-service-course {
    border-color: #f59e0b;
}

.full-service-course .feature-circle {
    border-color: #f59e0b;
    color: #f59e0b;
}

.full-service-course .feature-circle:hover {
    background: #f59e0b;
    color: white;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.course-catch {
    flex: 1;
}

.catch-line {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.catch-text {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 600;
}

.course-catch h3 {
    font-size: 2rem;
    color: #f59e0b;
    font-weight: 700;
    margin: 0;
}

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

.course-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.course-info h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.course-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.course-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    z-index: 1;
}

.feature-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f59e0b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.course-description {
    text-align: center;
    margin-bottom: 2rem;
}

.course-description p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.course-services {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
}

.course-services h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* スマホでの表示を改善するためのデフォルト設定 */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
}

/* レスポンシブ対応でグリッドレイアウトを改善 */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
    
    .service-item {
        padding: 0.8rem !important;
    }
    
    .service-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.4rem !important;
    }
    
    .service-icon i {
        font-size: 1.2rem !important;
    }
    
    .service-item span {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .service-item {
        padding: 0.6rem !important;
    }
    
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.3rem !important;
    }
    
    .service-icon i {
        font-size: 1.1rem !important;
    }
    
    .service-item span {
        font-size: 0.75rem !important;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 120px;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.phone-btn {
    min-width: 250px;
}

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

/* ZOOM見積もりページのレスポンシブ対応 */
.estimate-overview .overview-title {
    font-size: 2.5rem;
}

.estimate-overview .overview-subtitle-bg {
    font-size: 3rem;
}

.points-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.points-tags {
    gap: 0.8rem;
}

.tag {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.point-item {
    padding: 2.5rem 1.5rem 2rem;
}

.zoom-estimate-points .point-number {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    top: -6px;
    right: -6px;
}

.point-icon {
    width: 60px;
    height: 60px;
}

.point-icon i {
    font-size: 2rem;
}

.point-content h3 {
    font-size: 1.2rem;
}

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

.reservation-buttons {
    flex-direction: column;
    align-items: center;
}

.reservation-btn {
    min-width: 280px;
}

/* 訪問見積もりの流れセクション */
.visit-estimate-flow {
    padding: var(--section-padding);
    background-color: white;
}

.flow-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flow-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.flow-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.flow-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    transition: all 0.3s ease;
}

.flow-item:hover .flow-icon {
    transform: scale(1.1);
}

.flow-icon i {
    font-size: 2rem;
    color: white;
}

.flow-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.flow-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}


/* 訪問見積もりのメリットセクション */
.visit-estimate-benefits {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.benefits-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* 訪問予約セクション */
.visit-reservation-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
}

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

.reservation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reservation-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reservation-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.reservation-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.reservation-btn.primary-btn {
    background: white;
    color: var(--primary-color);
}

.reservation-btn.primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reservation-btn.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.reservation-btn.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 他の見積もり方法セクション */
.other-estimate-methods {
    padding: var(--section-padding);
    background-color: white;
}

.methods-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.method-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.method-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    transform: scale(1.1);
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.method-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.method-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reservation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reservation-btn {
        min-width: 280px;
    }
}

/* 電話見積もりの流れセクション */
.phone-estimate-flow {
    padding: var(--section-padding);
    background-color: white;
}

.flow-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* 電話見積もりのメリットセクション */
.phone-estimate-benefits {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.benefits-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* お電話番号セクション */
.phone-number-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
}

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

.phone-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.phone-number i {
    font-size: 2.5rem;
}

.phone-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.phone-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.phone-btn.primary {
    background: white;
    color: var(--primary-color);
}

.phone-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.phone-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.phone-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* 他の見積もり方法セクション */
.other-estimate-methods {
    padding: var(--section-padding);
    background-color: white;
}

.other-methods-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-icon i:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.method-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-link:hover {
    gap: 1rem;
}

.method-link i {
    font-size: 0.9rem;
}

/* ZOOM見積もりページ専用スタイル */
.estimate-overview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

.estimate-overview .overview-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.estimate-overview .overview-subtitle-bg {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
    line-height: 1;
}

/* ZOOM見積もりのポイントセクション */
.zoom-estimate-points {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.zoom-estimate-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.points-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.points-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.points-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
    border-radius: 2px;
}

.points-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::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.5s ease;
}

.tag:hover::before {
    left: 100%;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.point-item {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.point-item:hover::before {
    transform: scaleX(1);
}

.point-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.zoom-estimate-points .point-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    z-index: 10;
}

.point-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.point-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.point-item:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
}

.point-item:hover .point-icon::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.point-icon i {
    font-size: 2.5rem;
    color: white;
}

.point-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.point-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.point-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.point-item:hover .point-decoration {
    transform: scaleX(1);
}

/* ZOOM見積もりの流れセクション */
.zoom-estimate-flow {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

/* ZOOM見積もりのメリットセクション */
.zoom-estimate-benefits {
    padding: var(--section-padding);
    background-color: white;
}

.benefits-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* 予約ボタンセクション */
.zoom-reservation-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
}

.reservation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.reservation-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reservation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.reservation-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 300px;
    justify-content: center;
}

.reservation-btn.primary {
    background: white;
    color: var(--primary-color);
}

.reservation-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reservation-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.reservation-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* 単身引越ページ専用スタイル */
.single-overview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

.overview-header {
    position: relative;
    margin-bottom: 3rem;
}

.overview-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.overview-subtitle-bg {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
    line-height: 1;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-features .feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    min-width: 0;
}

.overview-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.overview-features .feature-card:hover::before {
    transform: scaleX(1);
}

.overview-features .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.overview-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.overview-features .feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.overview-features .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.overview-features .feature-card:hover .feature-icon::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.overview-features .feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.overview-features .feature-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.overview-features .feature-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.overview-features .feature-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.overview-features .feature-card:hover .feature-decoration {
    transform: scaleX(1);
}

/* 訪問見積もり専用のoverview-featuresスタイル */
.visit-overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.visit-overview-features .visit-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.visit-overview-features .visit-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.visit-overview-features .visit-feature-card:hover::before {
    transform: scaleX(1);
}

.visit-overview-features .visit-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.visit-overview-features .visit-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.visit-overview-features .visit-feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.3s ease;
}

.visit-overview-features .visit-feature-card:hover .visit-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.visit-overview-features .visit-feature-card:hover .visit-feature-icon::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.visit-overview-features .visit-feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.visit-overview-features .visit-feature-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.visit-overview-features .visit-feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.visit-overview-features .visit-feature-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.visit-overview-features .visit-feature-card:hover .visit-feature-decoration {
    transform: scaleX(1);
}

/* コース紹介セクション */
.course-introduction {
    padding: var(--section-padding);
    background-color: white;
}

.course-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.course-item {
    margin-bottom: 4rem;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* 標準コース - オレンジ系 */
.standard-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.standard-course .course-catch h3 {
    color: #f97316;
}

.standard-course .course-catch h3::after {
    background: #f97316;
}

.standard-course .feature-circle {
    border-color: #f97316;
    color: #f97316;
}

.standard-course .feature-circle:hover {
    background: #f97316;
}

.standard-course .course-services h5 {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.standard-course .course-services h5::before {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.standard-course .service-icon {
    background: #f97316;
}

.standard-course .service-item:hover {
    border-color: #f97316;
}

.standard-course .service-item::before {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

/* らくらくコース - グリーン系 */
.rakuraku-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.rakuraku-course .course-catch h3 {
    color: #16a34a;
}

.rakuraku-course .course-catch h3::after {
    background: #16a34a;
}

.rakuraku-course .feature-circle {
    border-color: #16a34a;
    color: #16a34a;
}

.rakuraku-course .feature-circle:hover {
    background: #16a34a;
}

.rakuraku-course .course-services h5 {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.rakuraku-course .course-services h5::before {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.rakuraku-course .service-icon {
    background: #16a34a;
}

.rakuraku-course .service-item:hover {
    border-color: #16a34a;
}

.rakuraku-course .service-item::before {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* お任せコース - ブルー系 */
.omakase-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
}

.omakase-course .course-catch h3 {
    color: var(--primary-color);
}

.omakase-course .course-catch h3::after {
    background: var(--primary-color);
}

.omakase-course .feature-circle {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.omakase-course .feature-circle:hover {
    background: var(--primary-color);
}

.omakase-course .course-services h5 {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.omakase-course .course-services h5::before {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.omakase-course .service-icon {
    background: var(--primary-color);
}

.omakase-course .service-item:hover {
    border-color: var(--primary-color);
}

.omakase-course .service-item::before {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.course-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.course-catch {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.catch-line {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.catch-text {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.course-catch h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    position: relative;
}

.course-catch h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.course-catch p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.course-catch h4 {
    font-size: 2.8rem;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
}

.course-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    flex-direction: row;
}

.course-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    z-index: 1;
}

.feature-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

.feature-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
    background: var(--primary-color);
    color: white;
}

.course-description {
    text-align: center;
    margin-bottom: 2rem;
}

.course-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.course-services h5 {
    font-size: 1.4rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), #4ade80);
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    position: relative;
}

.course-services h5::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #4ade80);
    border-radius: 27px;
    z-index: -1;
    opacity: 0.3;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #4ade80);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.service-item:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

/* 心を込めたサービスセクション */
.service-heart {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.service-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.image-item {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.image-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

/* 決済方法セクション */
.payment-methods {
    padding: var(--section-padding);
    background-color: white;
}

.payment-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    font-size: 2rem;
    color: white;
}

.payment-option h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}
    
    .submenu {
        padding: 20px 5%;
        max-width: none;
        width: 100%;
        max-height: 70vh;
    }
    
    .submenu li a {
        padding: 12px 0;
        font-size: 0.9rem;
        max-width: none;
        width: 100%;
    }
    
    .free-services-header {
        padding: 10px 0 10px 12px;
        margin: 15px 0 8px 0;
        font-size: 0.85rem;
    }


/* お客様の声 */
.reviews-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.reviews-header {
    position: relative;
    margin-bottom: 2rem;
}

.reviews-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.reviews-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.reviews-lead {
    max-width: 600px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.reviews-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

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

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

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.stat-description {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 10px;
}

.reviews-content {
    padding: 80px 0;
    background: #fff;
}

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

.reviews-filter {
    text-align: center;
    margin-bottom: 50px;
}

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

.filter-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

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

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

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.reviewer-details h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 5px;
    font-weight: 700;
}

.reviewer-location,
.review-date {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.review-rating {
    text-align: right;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.review-content {
    margin-bottom: 20px;
}

.review-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 12px;
    font-weight: 700;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.reviews-cta {
    text-align: center;
    padding: 60px 0;
    background: #f8fafc;
    border-radius: 12px;
}

.reviews-cta h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-cta p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn.primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn.primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

.btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    background: #fff;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-color);
    color: #fff;
}

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

/* 引越プランページのレスポンシブ対応 */
@media (max-width: 768px) {
    .single-plan-title,
    .family-plan-title,
    .ladies-plan-title {
        font-size: 2.5rem;
    }
    
    .single-plan-subtitle-bg,
    .family-plan-subtitle-bg,
    .ladies-plan-subtitle-bg {
        font-size: 3rem;
    }
    
    .single-plan-features,
    .family-plan-features,
    .ladies-plan-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .single-plan-feature-item,
    .family-plan-feature-item,
    .ladies-plan-feature-item {
        padding: 1.5rem;
    }
    
    .single-plan-feature-item i,
    .family-plan-feature-item i,
    .ladies-plan-feature-item i {
        font-size: 2rem;
    }
    
    /* コース詳細セクションの横並びを維持 */
    .course-features {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .feature-circle {
        width: 80px !important;
        height: 80px !important;
        font-size: 0.75rem !important;
    }

    .course-title {
        font-size: 2rem;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 3rem;
        font-weight: 700;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-rating {
        text-align: left;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .reviews-cta {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn.primary {
        width: 100%;
        max-width: 280px;
    }
}

/* 個人情報保護方針 */
.privacy-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.privacy-header {
    position: relative;
    margin-bottom: 2rem;
}

.privacy-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.privacy-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.privacy-lead {
    max-width: 600px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.privacy-content {
    padding: 80px 0;
    background: #fff;
}

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

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

.privacy-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1e40af);
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.privacy-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.privacy-details {
    margin-bottom: 80px;
}

.detail-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.detail-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.detail-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.6;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.purpose-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.purpose-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.purpose-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-method {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.contact-method h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-method p {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.cookie-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
}

.cookie-info h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.cookie-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    color: #856404;
    font-size: 0.9rem;
    font-weight: 600;
}

.update-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
}

.update-info p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.update-info p:last-child {
    margin-bottom: 0;
}

.privacy-contact {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    border-radius: 16px;
}

.privacy-contact h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-contact p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .detail-section {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .purpose-grid,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .purpose-item,
    .contact-method {
        padding: 20px;
    }
    
    .privacy-contact {
        padding: 40px 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn.primary {
        width: 100%;
        max-width: 280px;
    }
}

/* 特定商取引法に基づく表記 */
.law-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.law-header {
    position: relative;
    margin-bottom: 2rem;
}

.law-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.law-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.law-lead {
    max-width: 600px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.law-content {
    padding: 80px 0;
    background: #fff;
}

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

.law-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.overview-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1e40af);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.overview-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.overview-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.law-details {
    margin-bottom: 80px;
}

.detail-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.detail-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.info-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.info-value {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.factor-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.factor-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.factor-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.price-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.price-note p {
    color: #856404;
    font-weight: 600;
    margin: 0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.payment-method {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.payment-method h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.payment-method p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.payment-timing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.timing-option {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.timing-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.timing-option h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.timing-option p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.timing-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.delivery-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.delivery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.5rem;
}

.delivery-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.delivery-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cancellation-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.policy-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.5rem;
}

.policy-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.policy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.responsible-person {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    margin-top: 25px;
}

.person-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.person-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.person-details h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.person-details p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.person-details p:last-child {
    margin-bottom: 0;
}

.person-note {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.person-note p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.update-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
}

.update-info p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.update-info p:last-child {
    margin-bottom: 0;
}

.law-contact {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    border-radius: 16px;
}

.law-contact h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.law-contact p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .law-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overview-card {
        padding: 25px;
    }
    
    .overview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .detail-section {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .price-factors,
    .payment-methods-grid,
    .payment-timing,
    .delivery-info,
    .cancellation-policy {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .factor-item,
    .payment-method,
    .timing-option,
    .delivery-item,
    .policy-item {
        padding: 20px;
    }
    
    .person-info {
        flex-direction: column;
        text-align: center;
    }
    
    .person-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .law-contact {
        padding: 40px 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn.primary {
        width: 100%;
        max-width: 280px;
    }
}

/* お支払い方法（ガイド） */
.guide-payment-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.guide-payment-header {
    position: relative;
    margin-bottom: 2rem;
}

.guide-payment-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.guide-payment-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.guide-payment-lead {
    max-width: 600px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.guide-payment {
    padding: 60px 0;
    background: #fff;
}

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

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.payment-method {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
}

.payment-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 700;
}

.payment-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.payment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-timing {
    margin-bottom: 80px;
}

.payment-timing-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.timing-option {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timing-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.timing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.timing-option h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 700;
}

.timing-option p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.timing-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.timing-benefits li {
    color: var(--text-color);
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.timing-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.payment-security {
    margin-bottom: 80px;
}

.payment-security-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.security-feature {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.security-feature h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 700;
}

.security-feature p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.payment-contact {
    text-align: center;
    padding: 60px 0;
    background: #f8fafc;
    border-radius: 12px;
}

.payment-contact h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-contact p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn.primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn.primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

.btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    background: #fff;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .payment-method {
        padding: 25px;
    }
    
    .timing-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timing-option {
        padding: 25px;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-feature {
        padding: 25px;
    }
    
    .payment-contact {
        padding: 40px 20px;
    }
    
    .payment-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn.primary {
        width: 100%;
        max-width: 280px;
    }
}

/* Q&A（ガイド） */
.guide-qa-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.guide-qa-header {
    position: relative;
    margin-bottom: 2rem;
}

.guide-qa-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.guide-qa-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.guide-qa-lead {
    max-width: 600px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.guide-qa {
    padding: 60px 0;
    background: #fff;
}

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

.qa-category {
    margin-bottom: 60px;
}

.qa-category:last-child {
    margin-bottom: 0;
}

.qa-category-title {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.qa-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.qa-question {
    padding: 25px 30px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.qa-question:hover {
    background: #f1f5f9;
}

.qa-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.qa-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.qa-answer p {
    padding: 25px 30px;
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
}

.qa-item.active .qa-question {
    background: var(--primary-color);
    color: #fff;
}

.qa-item.active .qa-question h3 {
    color: #fff;
}

.qa-item.active .qa-toggle {
    color: #fff;
}

.qa-contact {
    text-align: center;
    padding: 60px 0;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: 60px;
}

.qa-contact h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.qa-contact p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.qa-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn.primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn.primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

.btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    background: #fff;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .qa-question {
        padding: 20px;
    }
    
    .qa-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .qa-answer p {
        padding: 20px;
    }
    
    .qa-category-title {
        padding: 15px 20px;
        font-size: 1.3rem;
    }
    
    .qa-contact {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .qa-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn.primary {
        width: 100%;
        max-width: 280px;
    }
}

/* チェックリスト（ガイド） */
.guide-checklist-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.guide-checklist-header {
    position: relative;
    margin-bottom: 2rem;
}

.guide-checklist-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.guide-checklist-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.guide-checklist-lead {
    max-width: 600px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.guide-checklist {
    padding: 60px 0;
    background: #fff;
}

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

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

.checklist-section:last-child {
    margin-bottom: 0;
}

.checklist-section-title {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.checklist-checkbox {
    margin-right: 20px;
    margin-top: 5px;
}

.checklist-checkbox input[type="checkbox"] {
    display: none;
}

.checklist-checkbox label {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checklist-checkbox input[type="checkbox"]:checked + label {
    background: var(--primary-color);
}

.checklist-checkbox input[type="checkbox"]:checked + label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.checklist-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 20px;
    margin-top: 5px;
}

.icon-single, .icon-family {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    min-width: 40px;
}

.icon-single {
    background: #10b981;
    color: #fff;
}

.icon-family {
    background: #f59e0b;
    color: #fff;
}

.checklist-content {
    flex: 1;
}

.checklist-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 12px;
    font-weight: 700;
}

.checklist-procedure {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.procedure-label {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.procedure-destination {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.checklist-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.btn-details {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .checklist-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .checklist-checkbox,
    .checklist-icons {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .checklist-icons {
        flex-direction: row;
        gap: 12px;
    }
    
    .checklist-section-title {
        padding: 15px 20px;
        font-size: 1.3rem;
    }
}

/* 引越の流れ（ガイド） */
.guide-flow-hero {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.guide-flow-header {
    position: relative;
    margin-bottom: 2rem;
}

.guide-flow-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.guide-flow-subtitle-bg {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    z-index: 1;
    line-height: 1;
}

.guide-flow-lead {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.guide-flow {
    padding: 80px 0;
    background: #fff;
}

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

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step {
    flex-direction: row;
}

.flow-badge {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 1px;
}

.flow-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 0 16px;
    font-weight: 700;
    border-bottom: 3px solid #e5e7eb;
    padding-bottom: 8px;
}

.flow-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.flow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.flow-actions {
    justify-content: flex-start;
}

.btn.small {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: #fff;
    font-size: 0.85rem;
}

.btn.small:hover {
    background: var(--primary-color);
    color: #fff;
}

.flow-image {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.flow-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.guide-flow-cta {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.guide-flow-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.btn.primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn.primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

.btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    background: #fff;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .flow-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .flow-image {
        max-width: 100%;
    }
    
    .flow-actions {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn.primary {
        width: 100%;
        max-width: 280px;
    }
}

/* お問い合わせページ */
.contact-main {
    padding: var(--section-padding);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.contact-method-item:hover {
    transform: translateY(-5px);
}

.contact-method-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.contact-method-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #e53e3e;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.privacy-policy {
    display: flex;
    align-items: center;
    grid-column: 1 / -1;
}

.privacy-policy input {
    width: auto;
    margin-right: 10px;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
}

/* 企業理念ページ */
.philosophy-hero {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
}

.philosophy-header {
    position: relative;
    margin-bottom: 3rem;
}

.philosophy-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

.philosophy-subtitle-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-weight: 900;
    z-index: 1;
}

.philosophy-main-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.philosophy-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.philosophy-values {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .value-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .value-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .values-grid {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .value-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .value-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

.value-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.value-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.value-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
    margin: 0;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.value-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.philosophy-cta {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 会社情報ページ */
.company-main {
    padding: var(--section-padding);
}

.company-info {
    margin-bottom: 60px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-table th,
.company-table td {
    padding: 15px 20px;
    border: 1px solid #eee;
}

.company-table th {
    width: 25%;
    text-align: left;
    background-color: #f9f9f9;
    font-weight: 600;
    color: var(--primary-color);
}

.company-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.company-link-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
}

.company-link-item:hover {
    transform: translateY(-5px);
}

.company-link-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.company-link-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.company-link-item p {
    margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .tel-link {
        font-size: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }
    
    .company-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .company-table td {
        border-top: none;
        padding-top: 5px;
    }
}

/* JavaScript連動クラス */
.sp-nav.show {
    display: block;
}

.accordion.open .accordion-content {
    display: block;
}

/* WEB見積もりページ専用スタイル */
.web-estimate-flow {
    padding: var(--section-padding);
    background-color: white;
}

.web-estimate-benefits {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.web-estimate-form {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
}

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

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.form-btn.primary-btn {
    background: white;
    color: var(--primary-color);
}

.form-btn.primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-btn.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.form-btn.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* WEB見積もりページのレスポンシブ対応 */
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-btn {
        min-width: 280px;
    }
} 

@media screen and (max-width: 768px) {
    .pc-nav {
        display: none;
    }

    .sp-nav-btn {
        display: flex;
    }

    .header-container {
        padding: 15px 5%;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .feature-grid, .plan-grid, .guide-grid, .estimate-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-title, .plan-title, .estimate-title, .feature-title, .philosophy-title {
        font-size: 2.5rem;
    }
    
    .guide-subtitle, .plan-subtitle-bg, .estimate-subtitle-bg, .feature-subtitle-bg, .philosophy-subtitle-bg {
        font-size: 3rem;
    }
    
    .guide-item {
        margin-bottom: 1rem;
    }
    
    .guide-image {
        height: 150px;
    }
    
    .guide-content {
        padding: 1rem;
    }
    
    .guide-content h3 {
        font-size: 1.1rem;
    }
    
    .guide-link {
        bottom: 1rem;
        right: 1rem;
    }
    
    .guide-link .arrow-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    .estimate-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .estimate-item {
        padding: 1.5rem;
    }
    
    .estimate-icon i {
        font-size: 2rem;
    }
    
    .estimate-content h3 {
        font-size: 1.1rem;
    }
    
    .estimate-content .estimate-description {
        font-size: 0.85rem;
    }
    
    .estimate-bottom-text {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .philosophy-main-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* 単身引越ページのレスポンシブ対応 */
    .overview-title {
        font-size: 2.5rem;
        line-height: 1;
    }
    
    .overview-subtitle-bg {
        font-size: 3rem;
        line-height: 1;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-features .feature-card {
        padding: 2rem 1rem;
    }
    
    .overview-features .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .overview-features .feature-icon i {
        font-size: 2rem;
    }
    
    .overview-features .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .visit-overview-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visit-overview-features .visit-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .visit-overview-features .visit-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .visit-overview-features .visit-feature-icon i {
        font-size: 2rem;
    }
    
    .visit-overview-features .visit-feature-content h3 {
        font-size: 1.2rem;
    }
}