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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1a1a1a;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: #fff;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===================================
   共通コンポーネント
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.4;
}

.section-title .highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

/* ===================================
   ヘッダー
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #d4af37;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo i {
    font-size: 1.5rem;
    color: #d4af37;
}

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

.header-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #d4af37;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.header-nav-link:hover::before {
    left: 100%;
}

.header-nav-link:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d78d 100%);
    color: #1a1a1a;
    border-color: #d4af37;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.header-nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.header-nav-link:hover i {
    transform: rotate(10deg) scale(1.1);
}

.header-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ===================================
   ヒーローセクション
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: #d4af37;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
    text-decoration-color: #f4d03f;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.price-highlight {
    font-size: 2.2rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-badge i {
    font-size: 1.3rem;
    color: #d4af37;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 25px 60px;
}

.cta-button.secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #d4af37;
}

.cta-button.secondary:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

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

.cta-button i {
    font-size: 1.3rem;
}

.cta-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-note {
    margin-top: 20px;
    margin-bottom: 80px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s infinite;
}

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

/* ===================================
   アニメーション
   =================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   共感セクション
   =================================== */
.empathy-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 6枚のカードを3列×2行に配置（PC表示時） */
@media (min-width: 992px) {
    .empathy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.empathy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.empathy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.empathy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.empathy-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.empathy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.empathy-image i {
    font-size: 80px;
    color: #667eea;
    transition: all 0.3s ease;
}

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

.empathy-card:hover .empathy-image i {
    transform: scale(1.15);
    color: #d4af37;
}

.empathy-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.empathy-card strong {
    color: #d4af37;
    font-weight: 700;
}

.alert-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    border-left: 6px solid #d4af37;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.alert-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.alert-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.alert-highlight {
    font-size: 1.8rem;
    font-weight: 900;
    color: #d4af37;
}

.alert-highlight span {
    font-size: 2.2rem;
    text-decoration: underline;
    text-decoration-color: #f4d03f;
}

/* ===================================
   料金シミュレーションセクション
   =================================== */
.simulation-section {
    background: #ffffff;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.table-header,
.table-row,
.table-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    border-bottom: 1px solid #f0f0f0;
}

.table-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.table-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight-cell {
    background: rgba(212, 175, 55, 0.2);
}

.table-row {
    transition: all 0.3s ease;
}

.table-row:hover {
    background: #fafafa;
}

.price-after {
    color: #d4af37;
    font-weight: 700;
}

.saving {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
}

.table-footer {
    background: #fafafa;
    border-bottom: none;
    font-size: 1.2rem;
}

.total-saving {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 900;
}

.benefits-grid {
    margin-bottom: 60px;
}

.benefits-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.benefit-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
}

.mission-box {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid #d4af37;
}

.mission-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-text strong {
    color: #d4af37;
}

.mission-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.cta-box {
    text-align: center;
}

/* ===================================
   プロフィールセクション
   =================================== */
.profile-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.profile-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image-small {
    position: relative;
    flex-shrink: 0;
    width: 180px;
}

.profile-image-small img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #d4af37;
}

.profile-badge-small {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.profile-badge-small i {
    font-size: 1.3rem;
}

.profile-text-wrapper {
    flex: 1;
}

.profile-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #555;
}

.profile-intro strong {
    color: #d4af37;
    font-weight: 700;
}

.profile-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #1a1a1a;
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #555;
}

.profile-mission {
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    border-left: 5px solid #d4af37;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #fff !important;
}

.profile-mission strong {
    color: #d4af37;
}

.profile-credentials {
    margin-top: 40px;
    padding: 30px;
    background: #fafafa;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
}

.profile-credentials h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-credentials h4 i {
    color: #d4af37;
}

.profile-credentials ul {
    list-style: none;
}

.profile-credentials li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.profile-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 900;
}

/* ===================================
   選ばれる理由セクション
   =================================== */
.reasons-section {
    background: #ffffff;
}

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

.reason-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.reason-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 100 !important;
}

.reason-icon {
    text-align: center;
    margin-bottom: 30px;
}

.reason-icon i {
    font-size: 4rem;
    color: #d4af37;
}

.reason-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.5;
}

.reason-card > p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.reason-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #555;
}

.feature-item i {
    color: #d4af37;
    font-size: 1.1rem;
}

.reason-highlight {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    font-weight: 600;
    line-height: 1.8;
    color: #1a1a1a;
}

.credential-image {
    margin: 25px 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    display: block;
    min-height: 50px;
}

.credential-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    display: block;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    border: 2px solid #f0f0f0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

/* ===================================
   お客様の声セクション
   =================================== */
.testimonials-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.testimonial-result {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonial-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.5;
}

.testimonial-text {
    line-height: 1.9;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-top: 20px;
    color: #d4af37;
    font-size: 1.2rem;
}

/* ===================================
   サービスセクション
   =================================== */
.service-section {
    background: #ffffff;
}

.service-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #d4af37;
}

.service-price-box {
    text-align: center;
    color: white;
}

.price-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #d4af37;
}

.price-unit {
    font-size: 2.5rem;
}

.price-note {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.9;
}

.service-features {
    color: white;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.3rem;
}

.service-feature i {
    font-size: 1.5rem;
    color: #d4af37;
}

.service-additional {
    margin-bottom: 60px;
}

.service-additional h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.service-additional h3 i {
    color: #d4af37;
    margin-right: 10px;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.service-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.service-comparison {
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-comparison img {
    width: 100%;
    max-width: min(800px, 100%);
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

/* ===================================
   対象者セクション
   =================================== */
.target-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

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

.target-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.target-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.target-card i {
    font-size: 1.8rem;
    color: #d4af37;
    flex-shrink: 0;
}

.target-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
}

.target-cta {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

.target-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.target-cta-text i {
    color: #d4af37;
    margin-right: 10px;
}

/* ===================================
   ご利用の流れセクション
   =================================== */
.flow-section {
    background: #ffffff;
}

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

.flow-step {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flow-step:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.flow-number {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border-radius: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.flow-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.flow-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.flow-step p {
    color: #666;
    line-height: 1.8;
}

.flow-arrow {
    text-align: center;
    padding: 20px 0;
    color: #d4af37;
    font-size: 2rem;
    animation: bounce-arrow 2s infinite;
}

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

/* ===================================
   FAQセクション
   =================================== */
.faq-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question i:first-child {
    color: #d4af37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-toggle {
    color: #d4af37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.9;
    padding-left: 45px;
}

/* ===================================
   お問い合わせフォームセクション
   =================================== */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-title,
.contact-header .section-subtitle {
    color: white;
}

.contact-header .section-title .highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
}

.contact-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-benefits h3 i {
    color: #d4af37;
    margin-right: 10px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #555;
    font-weight: 500;
}

.benefits-list i {
    color: #d4af37;
    font-size: 1.2rem;
}

.contact-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #f0f0f0;
}

.contact-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #d4af37;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.profile-role {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.form-group label i {
    color: #d4af37;
    margin-right: 8px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.form-privacy {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-link {
    color: #d4af37;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.submit-button i {
    font-size: 1.3rem;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
}

.form-note i {
    color: #d4af37;
    margin-right: 5px;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d4af37;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-credentials {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-top: 15px;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #d4af37;
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-phone {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: #d4af37;
}

/* ===================================
   固定CTA & ページトップ
   =================================== */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.fixed-cta.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.fixed-cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    animation: pulse-fixed 2s infinite;
    white-space: nowrap;
}

.fixed-cta-button.secondary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #d4af37;
    border: 2px solid #d4af37;
}

@keyframes pulse-fixed {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 10px 60px rgba(212, 175, 55, 0.8);
    }
}

.fixed-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.page-top.show {
    opacity: 1;
    transform: translateY(0);
}

.page-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* ===================================
   レスポンシブデザイン
   =================================== */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

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

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

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

    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image-small {
        width: 150px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .header-cta {
        display: none;
    }

    /* オーバーフロー完全防止 */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .container,
    .section,
    .reason-card,
    .testimonial-card,
    .empathy-card,
    .benefit-card,
    .service-card,
    .target-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        min-height: 600px;
    }

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

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

    .price-highlight {
        font-size: 1.8rem;
    }

    .cta-button.large {
        font-size: 1.2rem;
        padding: 20px 40px;
    }

    .comparison-table {
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .table-header {
        display: none;
    }

    .table-row,
    .table-footer {
        display: block;
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border: 2px solid #f0f0f0;
    }

    .table-row:hover {
        background: white;
    }

    .table-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .table-cell:last-child {
        border-bottom: none;
    }

    .table-cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #666;
        flex-shrink: 0;
        margin-right: 15px;
        min-width: 80px;
    }

    .price-after,
    .saving {
        font-weight: 900;
    }

    .table-footer {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: white;
        border: 2px solid #d4af37;
    }

    .table-footer .table-cell {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .table-footer .table-cell::before {
        color: #d4af37;
    }

    .total-saving {
        background: none;
        color: #d4af37;
        font-size: 1.3rem;
    }

    .service-main {
        flex-direction: column;
        gap: 40px;
    }

    .price-value {
        font-size: 3.5rem;
    }

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

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

    .stat-item {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .credential-image {
        padding: 0 10px;
    }

    .credential-image img {
        max-width: 100%;
    }

    .service-comparison {
        padding: 0 10px;
    }

    .service-comparison img {
        max-width: 100%;
    }

    .empathy-image {
        height: 180px;
    }

    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-small {
        width: 180px;
        margin: 0 auto;
    }

    .fixed-cta {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
        padding: 0 10px;
        max-width: 100%;
    }

    .fixed-cta.show {
        transform: translateX(-50%) translateY(0);
    }

    .fixed-cta-button {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 12px 15px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .fixed-cta-button i {
        font-size: 1rem;
    }

    .fixed-cta-button span {
        display: inline;
    }

    .page-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

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

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

    .empathy-grid,
    .benefits-cards,
    .target-grid {
        grid-template-columns: 1fr;
    }

    .empathy-image {
        height: 150px;
    }

    .profile-image-small {
        width: 150px;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .table-row,
    .table-footer {
        padding: 15px;
    }

    .table-cell {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .table-cell::before {
        font-size: 0.85rem;
    }

    .alert-box {
        flex-direction: column;
        text-align: center;
    }
}