:root {
    --color-primary: #D4F1E8;
    --color-secondary: #C8E9F5;
    --color-accent: #F4C430;
    --color-warm-gray: #F5F3EE;
    --color-text: #333333;
    --color-text-light: #6B7C8D;
    --color-white: #FFFFFF;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-display: 'Zen Maru Gothic', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
}

/* 画像プレースホルダー共通スタイル */
.image-placeholder {
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.image-placeholder::after {
    content: attr(data-size);
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 4px;
}

/* ヒーローセクション */
.hero {
    margin-top: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url('../img/hero_PC.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.3"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-main-catch {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-sub-catch {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: var(--color-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-questions {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-question {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--color-text);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.hero-question::before {
    content: '💭';
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

.hero-question:last-child {
    margin-bottom: 0;
}

.hero-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    position: absolute;
    bottom: calc(8% + 50px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hero-cta-text {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-text);
    margin-bottom: 1.8rem;
    font-weight: 500;
    line-height: 1.7;
}

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

/* セクション共通スタイル */
.section {
    padding: 5rem 2rem;
    background: #fffded;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #c8a52b;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    text-shadow: 
        2px 2px 0 #FFFFFF,
        -2px -2px 0 #FFFFFF,
        2px -2px 0 #FFFFFF,
        -2px 2px 0 #FFFFFF,
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #c8a52b;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.8;
}

/* 悩み提起セクション */
.worries-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.worry-item {
    background: linear-gradient(to bottom, #ffffff 50%, #fff0f5 100%);
    border-radius: 15px;
    padding: 1.8rem 2rem;
    color: #ec849b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.worry-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.worry-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.worry-text {
    font-size: 1.1rem;
    color: #ec849b;
    line-height: 1.7;
    font-weight: 500;
}

.solution-box {
    background: #79bb47;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.1);
    color: #ffffff;
}

.solution-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.solution-subtext {
    font-size: 1.1rem;
    color: #ffffff;
}

/* 制度説明セクション */
.system-explanation {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.system-content {
    display: flex;
    flex-direction: column;
}

.system-intro {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    line-height: 2;
}

.system-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: #FDFCFA;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(6, 199, 85, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.benefit-desc {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    text-align: left;
}

.system-highlight {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border: 2px solid #F4C430;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.8;
}

/* 4つの約束セクション */
.promises-grid {
    display: grid;
    gap: 3rem;
}

.promise-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

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

.promise-content {
    padding: 3rem;
}

.promise-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.promise-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06C755;
    background: rgba(6, 199, 85, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    text-align: center;
}

.promise-subtitle {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.promise-details {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding-left: 1rem;
}

.detail-icon {
    color: #06C755;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
    text-align: left;
}

.highlight-box {
    background: rgba(6, 199, 85, 0.08);
    border-left: 4px solid #06C755;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.highlight-subtext {
    font-size: 1rem;
    color: var(--color-text-light);
}

/* ミドルCTAセクション */
.mid-cta-section {
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 0;
}

.mid-cta-title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #c8a52b;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.mid-cta-subtitle {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.mid-cta-button {
    background: #06C755;
    color: #FFFFFF;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(6, 199, 85, 0.35);
    display: inline-block;
}

.mid-cta-button:hover {
    background: #05B34C;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(6, 199, 85, 0.45);
}

/* 作業内容詳細セクション */
.work-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-detail-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.work-detail-image {
    width: 100%;
    height: auto;
    aspect-ratio: 700 / 467;
    object-fit: cover;
}

.work-detail-content {
    padding: 2.5rem;
    text-align: center;
}

.work-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.work-detail-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.work-detail-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: left;
    display: inline-block;
    width: auto;
}

.work-detail-skills {
    background: #e4faff;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(6, 199, 85, 0.1);
    text-align: left;
}

.work-detail-skills-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-detail-skills-list {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    padding-left: 0.5rem;
}

.work-detail-skills-list li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.3rem;
    list-style: none;
}

.work-detail-skills-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: 700;
}

/* 作業スタイルセクション */
.work-styles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.work-style-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.work-style-content {
    padding: 2.5rem;
}

.work-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.work-style-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.work-style-type {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
}

.work-style-desc {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.work-examples {
    background: #fbe59c;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 199, 85, 0.1);
}

.work-examples-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.work-examples-list {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.8;
    font-weight: 500;
}

/* CTAセクション */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.cta-main-text {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ec849b;
    text-shadow: 
        2px 2px 0 #FFFFFF,
        -2px -2px 0 #FFFFFF,
        2px -2px 0 #FFFFFF,
        -2px 2px 0 #FFFFFF,
        0 4px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-sub-text {
    font-size: 1.2rem;
    color: var(--color-text);
    line-height: 2;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-button-large {
    background: #06C755;
    color: #FFFFFF;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(6, 199, 85, 0.4);
    display: inline-block;
}

.cta-button-large:hover {
    background: #05B34C;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(6, 199, 85, 0.5);
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    display: inline-block;
}

.contact-phone {
    font-size: 2rem;
    font-weight: 700;
    color: #ec849b;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-hours {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* フッター */
.footer {
    background: #79bb47;
    color: var(--color-white);
    padding: 3rem 2rem 2rem;
}

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

.footer-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-info {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        background-image: url('../img/hero_スマホ.jpg');
        aspect-ratio: 9 / 16;
    }

    /* セクションタイトル：中央配置 */
    .section-title {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    .section-content {
        text-align: center !important;
    }

    .section-subtitle {
        text-align: left;
        display: inline-block;
        width: auto;
    }

    .benefit-title,
    .promise-title,
    .work-detail-title,
    .mid-cta-title,
    .cta-main-text {
        text-align: left !important;
        display: inline-block !important;
        width: auto !important;
    }

    .benefit-desc,
    .promise-subtitle,
    .work-style-desc,
    .work-examples,
    .work-detail-description,
    .detail-text,
    .mid-cta-subtitle,
    .cta-sub-text {
        text-align: left !important;
        display: inline-block !important;
        width: auto !important;
    }

    .benefit-card,
    .promise-content,
    .work-style-card,
    .work-detail-content,
    .mid-cta-section,
    .cta-content {
        text-align: center !important;
    }

    .hero-content {
        padding: 0;
    }

    .hero-cta {
        bottom: calc(5% + 50px);
    }

    .cta-button-large {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }

    .section {
        padding: 5rem 15px;
    }

    .section-content {
        padding: 0;
    }

    .system-explanation {
        padding: 2rem 15px;
        text-align: center;
    }

    .system-intro {
        text-align: left;
        display: inline-block;
        width: auto;
    }

    .system-highlight {
        text-align: left !important;
        display: inline-block !important;
        width: auto !important;
    }

    .system-explanation {
        text-align: center !important;
    }

    .worry-item {
        text-align: left;
    }

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

    .promise-content {
        padding: 2rem 15px;
    }

    .promise-image {
        width: 100%;
        height: auto;
    }

    .promise-header {
        flex-direction: column;
        text-align: center;
    }

    .promise-subtitle {
        text-align: left;
        display: inline-block;
        width: auto;
    }

    .promise-content {
        text-align: center;
    }

    .work-styles {
        grid-template-columns: 1fr !important;
    }

    .work-style-content {
        padding: 2rem 15px;
    }

    .work-detail-content {
        padding: 2rem 15px;
    }

    .work-examples,
    .work-detail-skills {
        width: 100% !important;
        box-sizing: border-box !important;
    }


    .cta-button-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .footer-content {
        padding: 0 15px;
        text-align: center !important;
    }

    .footer-name,
    .footer-info {
        text-align: left !important;
        display: inline-block !important;
        width: auto !important;
    }

    /* PC版を非表示 */
    .section-title .pc-only,
    .solution-text .pc-only,
    .system-highlight .pc-only,
    .section-subtitle .pc-only,
    .cta-main-text .pc-only,
    .cta-sub-text .pc-only,
    .cta-buttons .pc-only,
    .footer-name .pc-only,
    .footer-info .pc-only,
    .section-divider .pc-only {
        display: none !important;
    }
    
    /* SP版：ボックス中央、テキスト左寄せ */
    .section-title .sp-only {
        display: block !important;
        width: 90% !important;
        margin: 0 auto !important;
        text-align: left !important;
        padding: 0 !important;
    }

    .solution-text .sp-only,
    .system-highlight .sp-only,
    .section-subtitle .sp-only,
    .cta-main-text .sp-only,
    .cta-sub-text .sp-only,
    .cta-buttons .sp-only,
    .footer-name .sp-only,
    .footer-info .sp-only {
        display: inline !important;
    }

    .section-divider .sp-only {
        display: block !important;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* 追加のアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ハイライト用語 */
.highlight-term {
    color: #333333;
    font-weight: 700;
}

/* ピンクハイライト */
.highlight-pink {
    color: #ec849b;
    font-weight: 700;
}

/* 作業詳細の説明文 */
.work-detail-description {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    display: inline-block;
    width: auto;
}

/* PC/スマホ表示切り替え */
.sp-only {
    display: none;
}

.section-divider .sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

.section-divider .pc-only {
    display: block;
}

/* クレヨン風アンダーライン */
.crayon-underline {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 140, 50, 0.3) 3%, 
        rgba(255, 140, 50, 0.7) 8%, 
        rgba(255, 140, 50, 0.8) 15%, 
        rgba(255, 140, 50, 0.85) 25%, 
        rgba(255, 140, 50, 0.9) 50%, 
        rgba(255, 140, 50, 0.85) 75%, 
        rgba(255, 140, 50, 0.8) 85%, 
        rgba(255, 140, 50, 0.7) 92%, 
        rgba(255, 140, 50, 0.3) 97%, 
        transparent 100%);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 104% 8px;
    padding-bottom: 3px;
}

/* クレヨン風アンダーライン（水色） */
.crayon-underline-blue {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to right, 
        transparent 0%, 
        rgba(100, 200, 255, 0.3) 3%, 
        rgba(100, 200, 255, 0.7) 8%, 
        rgba(100, 200, 255, 0.8) 15%, 
        rgba(100, 200, 255, 0.85) 25%, 
        rgba(100, 200, 255, 0.9) 50%, 
        rgba(100, 200, 255, 0.85) 75%, 
        rgba(100, 200, 255, 0.8) 85%, 
        rgba(100, 200, 255, 0.7) 92%, 
        rgba(100, 200, 255, 0.3) 97%, 
        transparent 100%);
    background-repeat: no-repeat;
    background-position: 0 calc(100% + 1px);
    background-size: 104% 8px;
    padding-bottom: 1px;
}

/* クレヨン風アンダーライン（ピンク） */
.crayon-underline-pink {
    position: relative;
    display: inline-block;
    background-image: 
        linear-gradient(to right, 
            transparent 0%, 
            rgba(255, 182, 193, 0.3) 3%, 
            rgba(255, 182, 193, 0.7) 8%, 
            rgba(255, 182, 193, 0.8) 15%, 
            rgba(255, 182, 193, 0.85) 25%, 
            rgba(255, 182, 193, 0.9) 50%, 
            rgba(255, 182, 193, 0.85) 75%, 
            rgba(255, 182, 193, 0.8) 85%, 
            rgba(255, 182, 193, 0.7) 92%, 
            rgba(255, 182, 193, 0.3) 97%, 
            transparent 100%),
        linear-gradient(to right, 
            transparent 0%, 
            rgba(255, 182, 193, 0.3) 3%, 
            rgba(255, 182, 193, 0.7) 8%, 
            rgba(255, 182, 193, 0.8) 15%, 
            rgba(255, 182, 193, 0.85) 25%, 
            rgba(255, 182, 193, 0.9) 50%, 
            rgba(255, 182, 193, 0.85) 75%, 
            rgba(255, 182, 193, 0.8) 85%, 
            rgba(255, 182, 193, 0.7) 92%, 
            rgba(255, 182, 193, 0.3) 97%, 
            transparent 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 calc(50% - 0.3em), 0 calc(100% + 1px);
    background-size: 104% 8px, 104% 8px;
    padding-bottom: 1px;
    line-height: 1.5;
}

/* 電話番号リンク */
.contact-phone a,
.footer-info a {
    color: inherit;
    text-decoration: none;
}

.contact-phone a:hover,
.footer-info a:hover {
    text-decoration: underline;
}

/* セクション区切り画像 */
.section-divider {
    margin: 0;
}

@media (max-width: 768px) {
    .section-divider {
        margin-top: -30px;
    }
}
