/* ベースの設定 */
:root {
    /* カラー設定 */
    --color-main: #1E88E5; /* メインカラー: 水色 */
    --color-main-dark: #1565C0; /* メインカラーの暗め版 */
    --color-main-light: #64B5F6; /* メインカラーの明るめ版 */
    --color-secondary: #26C6DA; /* アクセントカラー: ティール */
    --color-secondary-light: #4DD0E1; /* アクセントカラーの明るめ版 */
    --color-accent: #00BCD4; /* アクセントカラー: シアン */
    --color-bg: #FFFFFF; /* 背景色: 白 */
    --color-bg-alt: #E3F2FD; /* 別背景色: 淡い水色 */
    --color-bg-gradient: linear-gradient(135deg, #E1F5FE, #B3E5FC); /* 背景グラデーション */
    --color-text: #333333; /* テキスト色: 濃いグレー */
    --color-text-light: #FFFFFF; /* 明るいテキスト色: 白 */
    --color-border: #BBDEFB; /* ボーダー色: 薄い水色 */
    
    /* フォントサイズ */
    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-md: 1.125rem; /* 18px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-size-2xl: 2rem; /* 32px */
    --font-size-3xl: 2.5rem; /* 40px */
    
    /* スペーシング */
    --space-xs: 0.5rem; /* 8px */
    --space-sm: 1rem; /* 16px */
    --space-md: 1.5rem; /* 24px */
    --space-lg: 2rem; /* 32px */
    --space-xl: 3rem; /* 48px */
    
    /* コンテナ幅 */
    --container-width: 1200px;
    
    /* トランジション */
    --transition: all 0.3s ease;
    
    /* 境界半径 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* 影 */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* 基本スタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

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

a {
    color: var(--color-main);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn--primary {
    background: linear-gradient(to right, var(--color-main), var(--color-accent));
    color: var(--color-text-light);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-accent), var(--color-main));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn--primary:hover:before {
    opacity: 1;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-main);
    border: 2px solid var(--color-main);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn--outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn--outline:hover {
    color: var(--color-text-light);
}

.btn--outline:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--nav {
    background: linear-gradient(to right, var(--color-main), var(--color-main-dark));
    color: var(--color-text-light);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-main-dark), var(--color-main));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn--nav:hover:before {
    opacity: 1;
}

.btn--large {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-md);
    letter-spacing: 0.5px;
}

/* ヘッダー */
.header {
    background-color: var(--color-bg);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 12px;
}

.header__logo a {
    display: block;
    color: var(--color-main);
    font-weight: bold;
    font-size: var(--font-size-lg);
    position: relative;
    padding-left: var(--space-xs);
}


.header__logo h1 {
    font-size: var(--font-size-lg);
    margin: 0;
}

.header__menu {
    display: flex;
    align-items: center;
}

.header__menu li {
    margin-left: var(--space-md);
    position: relative;
}

.header__menu li a {
    font-weight: 700;
    position: relative;
}

.header__menu li a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-main), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.header__menu li a:not(.btn):hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.header__hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: linear-gradient(to right, var(--color-main), var(--color-secondary));
    transition: var(--transition);
    border-radius: var(--radius-full);
}

/* メインコンテンツ */
main {
    padding-top: 54px; /* ヘッダーの高さ分 */
}

/* ヒーローセクション */
.hero {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--color-bg-gradient);
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 150px;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero__title {
    font-size: var(--font-size-3xl);
    color: var(--color-main-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    display: inline-block;
}

.hero__title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-main), var(--color-secondary));
    border-radius: var(--radius-full);
}

.hero__text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    color: var(--color-text);
}

.hero__cta {
    margin-top: var(--space-lg);
}

.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero__bg-circle {
    position: absolute;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.hero__bg-circle--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero__bg-circle--2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 25%;
    animation-delay: 1s;
}

.hero__bg-circle--3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 40%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero__bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFFFFF" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,218.7C672,203,768,149,864,122.7C960,96,1056,96,1152,112C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* セクション共通 */
.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section--problems {
    background-color: var(--color-bg);
}

.section--rights {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.section--rights:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23BBDEFB"/></svg>');
    background-size: 20px;
    opacity: 0.5;
}

.section--service {
    background-color: var(--color-bg);
}

.section--cta {
    background: linear-gradient(135deg, var(--color-main), var(--color-secondary));
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.section--cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 20px;
}

.section__title {
    font-size: var(--font-size-2xl);
    color: var(--color-main-dark);
    text-align: center;
    margin-bottom: var(--space-sm);
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.section__title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--color-main), var(--color-secondary));
    border-radius: var(--radius-full);
}

.section__title--cta {
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.section__title--cta:after {
    background: var(--color-text-light);
}

.section__lead {
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.section__lead--cta {
    color: var(--color-text-light);
}

.section__more {
    text-align: center;
    margin-top: var(--space-lg);
}

/* 労働問題グリッド */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.problem-item {
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--color-main);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-item__title {
    color: var(--color-main);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

.problem-item__text {
    color: var(--color-text);
    font-size: var(--font-size-base);
}

/* 労働者の権利グリッド */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.rights-item {
    background-color: var(--color-bg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.rights-item:hover {
    transform: rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.rights-item__title {
    font-size: var(--font-size-md);
    color: var(--color-main-dark);
    margin-bottom: var(--space-xs);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-xs);
}

.rights-item__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--color-main), var(--color-secondary));
    border-radius: var(--radius-full);
}

.rights-item__text {
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

/* サービス機能 */
.service-features {
    margin-top: var(--space-lg);
}

.service-feature {
    background: linear-gradient(135deg, var(--color-bg-alt), #F5F9FF);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--color-main);
}

.service-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.service-feature__title {
    font-size: var(--font-size-lg);
    color: var(--color-main-dark);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-xs);
}

.service-feature__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--color-main), var(--color-secondary));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.service-feature:hover .service-feature__title:after {
    width: 60px;
}

.service-feature__text {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-feature__list {
    padding-left: var(--space-md);
    list-style-type: decimal;
    color: var(--color-text);
}

.service-feature__list li {
    margin-bottom: var(--space-xs);
    position: relative;
}

/* CTA領域 */
.cta-wrapper {
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}

/* ご相談コンテンツのスタイル調整 */
.contact-cta {
    background: linear-gradient(135deg, var(--color-main), var(--color-secondary));
    padding: var(--space-lg) 0;
    margin: var(--space-xl) auto; /* 上下のマージンを追加 */
    border-radius: var(--radius-lg); /* 角を丸くする */
    max-width: 90%; /* 横幅を90%に制限して両サイドに余白を作る */
    box-shadow: var(--shadow-md);
}

.contact-cta .container {
    max-width: 900px; /* コンテナの最大幅を制限 */
}

.contact-cta__title {
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xl);
}

.contact-cta__text {
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.contact-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* フッターとの間隔調整 */
.footer {
    background-color: #1a1a1a; /* より暗い背景色 */
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-md) 0;
    text-align: center; /* 中央寄せ */
    position: relative;
    overflow: hidden;
    margin-top: var(--space-xl); /* フッター上部の余白を追加 */
}

.footer:before {
    display: none; /* グラデーションラインを削除 */
}

.footer__main {
    display: block; /* flexからblockに変更して中央寄せしやすくする */
    margin-bottom: var(--space-sm);
}

.footer__info {
    display: none; /* 組合情報を非表示 */
}

.footer__menu {
    display: flex;
    justify-content: center; /* 中央寄せ */
    gap: var(--space-md);
    padding: 0;
    margin: 0 0 var(--space-sm) 0;
}

.footer__menu li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: var(--font-size-sm);
    padding-left: 0; /* 左パディングを削除 */
}

.footer__menu li a:before {
    display: none; /* 矢印アイコンを削除 */
}

.footer__menu li a:hover {
    color: var(--color-text-light);
    text-decoration: underline;
    padding-left: 0; /* ホバー時のパディングを削除 */
}

.footer__copyright {
    text-align: center;
    font-size: var(--font-size-xs);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* 境界線を薄く */
    opacity: 0.7;
}

.footer__copyright p {
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    /* タブレット用スタイル */
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero__title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 767px) {
    /* スマホ用スタイル */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, var(--color-main), var(--color-secondary));
        transition: var(--transition);
        padding: var(--space-lg);
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .header__nav.active {
        right: 0;
    }
    
    .header__menu {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header__menu li {
        margin: var(--space-sm) 0;
    }
    
    .header__menu li a {
        color: var(--color-text-light);
    }
    
    .header__menu li a:not(.btn):after {
        background: var(--color-text-light);
    }
    
    .header__hamburger {
        display: block;
        z-index: 101;
    }
    
    .header__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .problem-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__menu {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__menu li {
        margin: var(--space-xs) 0;
    }
}

/* 波紋デザイン用のスタイル */
.hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px; /* パディングを増やして波紋のスペースを確保 */
    margin-bottom: -30px; /* ネガティブマージンで次のセクションを引き上げる */
  }
  
  .hero__wave-container {
    position: absolute;
    bottom: -120px; /* 波紋をさらに下に移動 */
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
  }
  
  .hero__wave {
    display: block;
    width: 100%; /* 横幅100%を確保 */
    min-width: 100%; /* 最小幅も100%に設定 */
    height: auto;
    transform: translateY(1px); /* 次のセクションとの隙間を埋める */
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
  }
  
  /* 波紋アニメーション - アニメーションを修正 */
  @keyframes wave-animation {
    0% {
      transform: translateX(0) translateY(1px) scaleX(1.05); /* 少し拡大して端が見切れないようにする */
    }
    50% {
      transform: translateX(-25px) translateY(1px) scaleX(1.05);
    }
    100% {
      transform: translateX(0) translateY(1px) scaleX(1.05);
    }
  }
  
  .hero__wave {
    animation: wave-animation 15s ease-in-out infinite;
    transform-origin: center bottom; /* 変形の基準点を設定 */
  }
  
  /* ヒーローコンテンツの位置調整 */
  .hero__content {
    position: relative;
    z-index: 2; /* 波紋より前面に表示 */
    padding: 56px 0 38px 0;
  }
  
  /* ボタンが波紋に重ならないようにする */
  .hero__cta {
    position: relative;
    z-index: 3; /* 波紋より前面に表示 */
    margin-bottom: 30px; /* ボタン下の余白を増やす */
  }
  
  .btn--large {
    position: relative;
    z-index: 3; /* 波紋より前面に表示 */
  }
  
  /* 次のセクションの調整 */
  .section--problems {
    position: relative;
    z-index: 1;
    margin-top: 0; /* 上部マージンを削除 */
    padding-top: 40px; /* 上部パディングを追加 */
  }
  
  /* 画面サイズに関わらず波紋が常に表示されるように */
  @media (max-width: 1200px) {
    .hero__wave {
      width: 120%; /* 小さい画面でも余裕を持たせる */
      margin-left: -10%; /* 中央に配置 */
    }
    
    /* レスポンシブ対応 - 小さい画面ではパディングを調整 */
    .hero {
      padding-bottom: 90px;
      margin-bottom: -25px;
    }
    
    .hero__content {
        padding: 40px 0 50px 0;
    }
    
    .hero__cta {
      margin-bottom: 25px;
    }
  }
  
  /* さらに小さい画面サイズでの調整 */
  @media (max-width: 768px) {
    .hero {
      padding-bottom: 80px;
      margin-bottom: -20px;
    }
    
    .hero__wave-container {
      bottom: -100px; /* 小さい画面では少し上に調整 */
    }
    
    .hero__content {
      padding-bottom: 40px;
    }
    
    .hero__cta {
      margin-bottom: 20px;
    }
    
    .section--problems {
      padding-top: 30px;
    }
  }

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .contact-cta {
        max-width: 95%; /* タブレットでは少し広く */
        margin: var(--space-lg) auto;
    }
}

@media (max-width: 767px) {
    .contact-cta {
        max-width: 100%; /* モバイルでは横幅いっぱい */
        margin: var(--space-md) auto;
        border-radius: var(--radius-md); /* 角の丸みを少し小さく */
    }
    
    .contact-cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .footer {
        margin-top: var(--space-lg); /* モバイルでは余白を少し小さく */
    }
}

/* フェードインアニメーションのセクションも同様に調整 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .section--cta {
        max-width: 95%; /* タブレットでは少し広く */
    }
}

@media (max-width: 767px) {
    .section--cta {
        max-width: 100%; /* モバイルでは横幅いっぱい */
        border-radius: var(--radius-md); /* 角の丸みを少し小さく */
    }
    
    .section__title--cta {
        font-size: var(--font-size-lg); /* モバイルでは少し小さく */
    }
}

section.section.section--cta.fade-in {
    width: 90%;
}

/* アイコンプレースホルダーを削除 */
.icon-placeholder {
    display: none;
}

/* アイコン関連のスタイルを削除 */
.problem-icon, .icon-placeholder {
    display: none;
}