:root {
    --dark-blue: #142335;
    --black: #000102;
    --main-color: #4FD8EB;
    --main-color-hover: #3FC3D4;
    --accent-color: #FA6E61;
    --blue-gray: #4a6674;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e5eb;
    --form-bg: #e8f4fa;
    --required-bg: #0047a0;
    --background-gradient: linear-gradient(135deg, #F7FCFF 0%, #E8F9FB 50%, #F7FCFF 100%);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--black);
    line-height: 1.6;
}

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

/* ヘッダー部分のスタイル */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-blue);
    text-decoration: none;
    display: inline-block;
}

.logo span {
    color: var(--main-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--main-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ボタンスタイル */
.cta-button {
    display: inline-block;
    background: var(--main-color);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(79, 216, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--main-color-hover);
    box-shadow: 0 6px 15px rgba(79, 216, 235, 0.4);
}

.cta-button-secondary {
    background: var(--white);
    color: var(--dark-blue);
    border: 2px solid var(--main-color);
}

.cta-button-secondary:hover {
    background: var(--white);
    border-color: var(--main-color-hover);
}

/* ヒーローセクション */
.hero {
background-image: url('https://lp.aintex.jp/images/hero.webp');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 35, 53, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    text-align: left; /* 左寄せ */
}

.hero-title .highlight {
    color: var(--main-color);       /* 元のメインカラーを使用 */
    font-weight: 900;
    font-size: 1.2em;
    font-style: normal;             /* 斜体解除 */
    letter-spacing: 0.02em;
    display: inline;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 32px);  /* 画面幅に応じて拡縮、ただし24px以下にはならない */
    margin-bottom: 50px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;                  /* 念のため（安全） */
    text-overflow: ellipsis;          /* 念のため（安全） */
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
}

.cta-button-container {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.discount-bubble {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.discount-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--accent-color) transparent transparent transparent;
}

/* 共通セクションスタイル */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--blue-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* 問題点セクション */
.problem-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.problem-item {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon img {
    max-width: 100%;
    border-radius: 10px;
}

.problem-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-blue);
}

.problem-item p {
    color: var(--blue-gray);
}

.problem-summary {
    margin-top: 2rem;
    text-align: center;
}

.problem-caption {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--blue-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .problem-caption {
        font-size: 2rem; /* または 2rem でもOK */
    }
}

/* AI活用率のセクション */
.ai-adoption-rate {
    text-align: center;
    margin: 30px 0;
    order: 2;
}

.ai-adoption-rate h3 {
    font-size: 36px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.ai-adoption-rate span {
    color: var(--accent-color);
    font-weight: 700;
}

/* 生成AIサービスのルール整備と導入の状況 */
.country-graph {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    order: 3;
}

.adoption-title {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.adoption-container {
    margin-top: 20px;
}

.wall-caption {
  color: var(--blue-gray); /* 例：#142335 */
}

/* 国ごとの行のレイアウト */
.country-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.country-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 216, 235, 0.3);
}

.country-row:last-child {
    margin-bottom: 0;
}

.country-name {
    width: 180px;
    font-weight: bold;
    color: var(--white);
    background-color: var(--dark-blue);
    padding: 15px;
    display: flex;
    align-items: center;
}

.country-flag {
    width: 32px;
    height: 24px;
    margin-right: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.country-bar-container {
    flex: 1;
    height: 60px;
    overflow: hidden;
    position: relative;
}

/* セグメントの色と表示 */
.country-bar-segment {
    height: 100%;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.country-bar-segment:last-child {
    border-right: none;
}

.country-bar-segment:hover {
    opacity: 0.9;
}

.segment-implemented {
    background: linear-gradient(90deg, var(--main-color), #7fe9f7);
}

.segment-planned {
    background-color: var(--accent-color);
}

.segment-none {
    background-color: var(--medium-gray);
}

.segment-value {
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.segment-implemented .segment-value,
.segment-planned .segment-value {
    color: var(--white);
}

.segment-none .segment-value {
    color: var(--dark-blue);
}

/* 凡例のスタイル */
.legend-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 5px;
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
flex-wrap: nowrap;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-implemented {
    background: linear-gradient(90deg, var(--main-color), #7fe9f7);
}

.legend-planned {
    background-color: var(--accent-color);
}

.legend-none {
    background-color: var(--medium-gray);
}

.legend-text {
    font-weight: 500;
    color: var(--dark-blue);
    white-space: nowrap;
}

.adoption-source {
    text-align: right;
    font-size: 12px;
    color: var(--blue-gray);
    margin-top: 20px;
    font-style: italic;
}

/* ビフォーアフターセクション - 比較グラフ */
.comparison-graph {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 23%;
    transition: transform 0.3s ease;
}

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

.comparison-label {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-blue);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-bars {
    display: flex;
    width: 100%;
    height: 180px;
    position: relative;
    align-items: flex-end;
}

.comparison-bar {
    width: 45%;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.comparison-bar.before {
    background-color: var(--blue-gray);
    margin-right: 10%;
    height: 140px !important;
}

.comparison-bar.after {
    background-color: var(--accent-color);
    height: 35px !important;
}

.comparison-value {
    position: absolute;
    top: -25px;
    font-weight: 700;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.comparison-note {
    margin-top: 15px;
    font-size: 14px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 市場情報セクション */
.market-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.market-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.market-stat {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: transform 0.3s ease;
}

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

.market-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.market-label {
    color: var(--blue-gray);
}

/* ドーナツチャート */
.donut-chart-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.donut-chart {
    width: 300px;
    height: 300px;
    position: relative;
}

.donut-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: conic-gradient(
        var(--accent-color) 0% 25%,
        #30b1c9 25% 50%,
        #6db4c2 50% 75%,
        #a4d7e6 75% 100%
    );
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donut-hole {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.donut-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.donut-label {
    font-size: 14px;
    color: var(--blue-gray);
    text-align: center;
}

.donut-legend {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.donut-legend .legend-item {
    display: flex;
    align-items: center;
}

.donut-legend .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 10px;
}

.donut-legend .legend-label {
    font-size: 14px;
text-align: left;
}

/* 成長チャート */
.growth-chart {
    margin-top: 40px;
    position: relative;
}

.growth-chart-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    color: var(--dark-blue);
    font-weight: 700;
}

/* 成長バーを中央に配置し、間隔を均等に */
.growth-bars {
    display: flex;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    margin: 20px auto;
    max-width: 600px;
    padding: 0 20px;
}

/* 各年の間隔を均等に設定 */
.growth-year {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

/* バーコンテナのサイズを均一に */
.growth-bar-container {
    width: 60px;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: visible;
}

/* バーに影とボーダーを追加し、より立体的に */
.growth-bar {
    width: 100%;
    background-color: var(--main-color);
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: height 0.5s ease;
    position: relative; /* ← 必須！ */
    min-height: 40px;
    /* 修正: インラインスタイルとの矛盾を避けるため height は CSS で制御する */
}

.bar-value {
  position: absolute;
  bottom: 100%; /* 棒の上に出す */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
  margin-bottom: 6px;
}

.growth-label {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    text-align: center;
}

/* ステップロードマップ */
.roadmap {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background-color: var(--main-color);
    z-index: 1;
}

.roadmap-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 0 0 4px var(--white);
    transition: transform 0.3s ease;
}

.roadmap-step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.roadmap-step:hover .step-content {
    transform: translateX(5px);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.step-details {
    margin-top: 15px;
}

.step-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.detail-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(79, 216, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.detail-text {
    flex: 1;
}

/* スキル一覧 */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.skill-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.skill-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 16px;
    display: flex;  
}

/* スキルカードのアイコン内のimgは非表示（使わない） */
.skill-icon img {
    display: none;
}

/* 修正: スキルカードに対応する番号を表示 */
.skills-grid .skill-card:nth-child(1) .skill-icon::before {
    content: "1";
    width: 48px;
    height: 48px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 0 0 4px var(--white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.skills-grid .skill-card:nth-child(2) .skill-icon::before { content: "2"; }
.skills-grid .skill-card:nth-child(3) .skill-icon::before { content: "3"; }
.skills-grid .skill-card:nth-child(4) .skill-icon::before { content: "4"; }
.skills-grid .skill-card:nth-child(5) .skill-icon::before { content: "5"; }
.skills-grid .skill-card:nth-child(6) .skill-icon::before { content: "6"; }

.skill-title {
    font-size: 18px;         /* 任意サイズに統一 */
    font-weight: 700;
    line-height: 1.2;        /* 高さ合わせに有効 */
    margin: 0;               /* ← ← ← ← ← ← ← ← ← ← ← これが超重要！ */
    transform: translateY(-5px);
}

.skills-grid .skill-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px; /* ← 好みに応じて */
  height: 170px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2; /* ← 透過度調整 */
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* カード本体には画像は付けない */
.skills-grid .skill-card:nth-child(1)::after {
    background-image: url('/images/ai.webp');
}
.skills-grid .skill-card:nth-child(2)::after {
    background-image: url('/images/risk.webp');
}
.skills-grid .skill-card:nth-child(3)::after {
    background-image: url('/images/dx.webp');
}
.skills-grid .skill-card:nth-child(4)::after {
    background-image: url('/images/ai2.webp');
}
.skills-grid .skill-card:nth-child(5)::after {
    background-image: url('/images/sdgs.webp');
}
.skills-grid .skill-card:nth-child(6)::after {
    background-image: url('/images/engine.webp');
}

/* 料金プラン・助成金セクション */
.pricing-section {
    background-color: var(--background-gradient);
    padding: 60px 0;
}

.pricing-container {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: var(--dark-blue);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--white);
    text-align: center;
}

.pricing-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.price-original {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto 40px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.1);
}

.price-original-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.price-original-value {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.price-original-unit {
    font-size: 20px;
    opacity: 0.9;
}

.price-arrow {
    position: relative;
    height: 60px;
    margin-bottom: 10px;
}

.price-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid var(--accent-color);
}

.price-arrow-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    transform: translateY(-50%);
}

.price-discounted {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.discount-badge {
    flex: 1;
    background-color: var(--accent-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}

.discount-label {
    font-size: 16px;
    margin-bottom: 5px;
}

.discount-value {
    font-size: 36px;
    font-weight: 700;
}

.discount-price {
    flex: 1;
    background-color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    color: var(--dark-blue);
}

.discount-price-label {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--blue-gray);
}

.discount-price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* 助成金比較テーブル */
.funding-comparison {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.funding-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.funding-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.funding-table th, .funding-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.funding-table th {
    font-weight: 700;
    text-align: center;
}

.funding-table td:first-child {
font-weight: 700;
    color: var(--white);
    background-color: var(--dark-blue);
    width: 30%;
    text-align: left;
}

.funding-table tr:last-child td {
    border-bottom: none;
}

.funding-col1 {
    background-color: var(--dark-blue);
    color: var(--white);
    width: 30%;
}

.funding-col2 {
    background: linear-gradient(90deg, var(--main-color), #4fd8eb);
    color: var(--white);
    width: 35%;
}

.funding-col3 {
    background-color: var(--blue-gray);
    color: var(--white);
    width: 35%;
}

.funding-table td:nth-child(2) {
    background-color: rgba(79, 216, 235, 0.1);
    border-right: 1px solid var(--light-gray);
}

.funding-table td:nth-child(3) {
    background-color: rgba(74, 102, 116, 0.1);
}

/* 申請フロー */
.application-flow {
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.flow-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.flow-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--blue-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.flow-steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 80px;
    right: 80px;
    height: 2px;
    background-color: var(--main-color);
    z-index: 1;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 33.33%;
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.flow-step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.step-number {
    background-color: var(--main-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-icon {
    width: 45px;
    height: 45px;
}

.flow-step-content {
    text-align: center;
}

.flow-step-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.flow-step-duration {
    font-size: 14px;
    color: var(--blue-gray);
    margin-bottom: 5px;
}

.flow-step-description {
    font-size: 13px;
    color: var(--blue-gray);
    max-width: 200px;
}

.flow-total-duration {
    background-color: var(--main-color);
    color: var(--white);
    padding: 10px 40px;
    text-align: center;
    font-weight: 700;
    border-radius: 30px;
    margin: 20px auto;
    width: 60%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(79, 216, 235, 0.3);
white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .flow-total-duration {
    width: fit-content;
    max-width: 90%;
    font-size: 14px;
    padding: 8px 20px;
    margin: 20px auto 10px auto;
  }
}

.flow-support {
    text-align: center;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 20px;
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(79, 216, 235, 0.1);
    border-radius: 10px;
}

/* 修了証書セクション - 問題箇所の修正 */
.certificate {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* center から space-between に変更 */
    gap: 40px;
    margin-top: 40px;
    overflow: hidden;
}

/* 必要に応じて .certificate-image の調整も追加 */
.certificate-image {
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
    display: flex; /* フレックスボックスとして表示 */
    justify-content: center; /* コンテンツを中央揃え */
    align-items: center; /* 縦方向も中央揃え */
    overflow: hidden; /* はみ出し部分を隠す */
}

.certificate-image:hover {
    transform: scale(1.02);
}

.certificate-image img {
    max-width: 100%;
    height: auto; /* アスペクト比を保持 */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain; /* 画像をコンテナ内に収める */
    width: auto; /* 幅を自動調整 */
    display: block; /* ブロック要素として表示 */
    margin: 0 auto; /* 中央揃え */
}

.certificate-content {
    flex: 1;
    min-width: 300px; /* 最小幅を調整 */
}

.certificate-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.certificate-content p {
    margin-bottom: 20px;
    color: var(--blue-gray);
}

.certificate-benefits {
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(79, 216, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
    color: var(--dark-blue);
}

/* FAQセクション */
.faq {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-blue);
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--main-color);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--blue-gray);
    display: none;
}

/* CTAセクション */
.cta-section {
    text-align: center;
    background: var(--background-gradient);
    padding: 80px 0;
    margin-top: 80px;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.cta-section h2 span.break-mobile {
    display: none;
}

.cta-section p {
    font-size: 18px;
    color: var(--blue-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.no-wrap-badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(250, 110, 97, 0.3);
}

/* 資料請求フォーム */
.form-container {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

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

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

.required-label {
    display: inline-block;
    background-color: var(--required-bg);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--form-bg);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 216, 235, 0.4);
    transform: translateY(-2px);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    padding: 15px 40px;
    font-size: 18px;
}

.form-note {
    font-size: 14px;
    color: var(--blue-gray);
    text-align: center;
    margin-top: 20px;
}

/* フッター */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.footer-logo-text {
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-text span {
    color: var(--main-color);
}

.footer-logo img {
    height: 40px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-cta .cta-button {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(79, 216, 235, 0.4);
}

/* 改行制御 - モバイルでの改行 */
@media (min-width: 769px) {
    .section-title h2,
    .ai-adoption-rate h3,
    .graph-title,
    .section-title p,
    .flow-support,
    .pricing-title,
    .pricing-subtitle,
    .cta-section h2,
    .no-wrap-badge {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .break-mobile::before {
        content: "\A";
        white-space: pre;
    }
    
    .cta-section h2 span.break-mobile {
        display: inline-block;
    }
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 32px;
    }
    
    h1 {
        font-size: 42px;
    }
    
    .problem-list, .comparison-graph {
        flex-wrap: wrap;
    }
    
    .comparison-item {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* メニューボタンの表示 */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: none; /* デフォルトでは非表示 */
    }
    
    .nav-links.active {
        display: flex; /* activeクラスが付いた時だけ表示 */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    section {
        padding: 50px 0; /* セクションの上下パディングを縮小 */
    }
      
    .container {
        padding: 0 15px; /* 左右のパディングを縮小 */
    }
      
    /* ヒーローセクションを改善 */
    .hero {
        padding: 120px 0 60px; /* 上部のパディングを少し増やし、モバイルでも大きく見せる */
    }
      
    h1 {
        font-size: 36px; /* 元の32pxより大きく */
        line-height: 1.2;
    }
      
    .hero-subtitle {
        font-size: 20px; /* 元の18pxより大きく */
        margin-bottom: 30px;
        white-space: normal;
    }
      
    /* 問題点リストをよりデスクトップに近く */
    .problem-list {
        flex-direction: row; /* 横並びに戻す */
        flex-wrap: wrap; /* 折り返し許可 */
        gap: 15px; /* 隙間を小さく */
    }
      
    .problem-item {
        flex: 0 0 calc(50% - 15px); /* 2つずつ表示 */
        min-width: unset; /* 100%を解除 */
        padding: 15px; /* パディングを縮小 */
    }
      
    .problem-icon {
        width: 60px; /* アイコンサイズを縮小 */
        height: 60px;
        margin-bottom: 10px;
    }
      
    .problem-item h4 {
        font-size: 16px; /* フォントサイズを縮小 */
        margin-bottom: 8px;
    }
      
    .problem-item p {
        font-size: 12px; /* テキストを縮小 */
    }
      
    /* グラフの表示調整 */
    .graph-container {
        flex-direction: row; /* 横並びに戻す */
        height: 280px; /* 高さを調整 */
        align-items: flex-end;
        gap: 10px;
    }
      
    .graph-bar {
        width: 80px; /* バーの幅を縮小 */
        height: unset; /* 高さをリセット */
    }
      
    .graph-value {
        font-size: 18px; /* 値のサイズを縮小 */
        top: -35px;
        padding: 3px 8px;
    }
      
    .graph-country {
        font-size: 14px; /* 国名のサイズを縮小 */
    }
      
    .graph-flag {
        width: 30px; /* 国旗を縮小 */
        height: 22px;
    }
      
    .graph-note {
        font-size: 16px; /* ノートを縮小 */
        padding: 10px;
    }
      
    /* 比較グラフの改善 - 横スクロールを削除 */
    .comparison-graph {
        flex-wrap: wrap; /* 折り返し許可 */
        overflow-x: visible; /* 横スクロールを削除 */
        justify-content: space-between; /* 均等配置 */
        padding: 15px 10px;
        gap: 20px;
    }
      
    .comparison-item {
        min-width: calc(50% - 10px); /* 2つずつ表示 */
        width: calc(50% - 10px);
        flex: 0 0 auto;
    }
      
    .comparison-label {
        font-size: 14px; /* ラベルのサイズを縮小 */
        min-height: 40px;
    }
      
    .comparison-bars {
        height: 150px; /* 高さを縮小 */
    }
      
    /* 市場情報セクションの調整 - 横スクロールを削除 */
    .market-stats {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: space-between;
        padding-bottom: 10px;
        gap: 20px;
    }
      
    .market-stat {
        min-width: calc(33.33% - 15px);
        flex: 0 0 calc(33.33% - 15px);
    }
      
    /* ドーナツチャートをモバイルでも綺麗に */
    .donut-chart {
        width: 240px;
        height: 240px;
    }
      
    /* 成長矢印と文字を非表示 */
    .growth-arrow, .growth-arrow-text {
        display: none;
    }
      
    /* 凡例項目の非表示 */
    .growth-chart .legend-item {
        display: none;
    }
      
    /* ロードマップの修正 */
    .roadmap::before {
        left: 20px;
    }
      
    .roadmap-step {
        margin-bottom: 20px;
    }
      
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 15px;
    }
      
    .step-content {
        padding: 20px;
    }
      
    .step-title {
        font-size: 18px;
    }
      
    /* スキルグリッドの調整 - 横スクロールを削除 */
    .skills-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-bottom: 15px;
        overflow-x: visible;
    }
      
    .skill-card {
        min-width: 0;
        width: 100%;
    }
      
    /* 料金プラン・助成金の表示調整 */
    .price-discounted {
        flex-direction: column;
    }
      
    .discount-badge {
        border-radius: 10px 10px 0 0;
        padding: 15px;
    }
      
    .discount-price {
        border-radius: 0 0 10px 10px;
        padding: 15px;
    }
      
    /* 申請フローの調整 - 横スクロールを削除 */
    .flow-steps {
        flex-direction: column;
        overflow-x: visible;
        padding-bottom: 15px;
        margin-bottom: 30px;
        align-items: flex-start;
    }
      
    .flow-step {
        min-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }
      
    .flow-steps::before {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        right: auto;
    }
      
    .flow-step-circle {
        width: 110px;
        height: 110px;
    }
      
    /* FAQの表示調整 */
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
      
    .faq-answer {
        padding: 0 15px 15px;
        font-size: 14px;
    }
      
    /* フォームの調整 */
    .form-container {
        padding: 20px;
    }
      
    /* フローティングCTAをより目立つように */
    .floating-cta {
        width: auto;
        max-width: 200px;
    }
      
    .floating-cta .cta-button {
        padding: 10px 15px;
        font-size: 14px;
    }
      
    /* フッターロゴの配置調整 */
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* 生成AIサービス導入状況テーブルのモバイル最適化 */
    .country-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .country-name {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 15px;
        border-radius: 10px 10px 0 0;
    }
    
    .country-bar-container {
        width: 100%;
        height: 40px;
    }
    
    .segment-value {
        font-size: 14px;
    }
    
    /* 凡例を横並びにして見やすく */
    .legend-container {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 12px;
    }
    
    .legend-item {
        flex: 0 0 auto;
        margin-right: 15px;
    }
    
    .legend-text {
        font-size: 13px;
    }
    
    /* 成長グラフの調整 */
    .growth-bars {
        max-width: 100%;
        justify-content: space-between;
        padding: 0 10px;
    }
    
.growth-year {
        padding: 0 5px;
    }
    
    .growth-bar-container {
        width: 100%;
        max-width: 50px;
    }

    /* モバイル対応の改善 */
    .certificate {
        padding: 25px; /* パディングを小さく */
        gap: 25px; /* ギャップを小さく */
        flex-direction: column; /* 縦方向に変更 */
        align-items: center; /* 中央揃え */   
 }
    
    .certificate-image {
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    /* テキストは左揃えを維持 */
    .certificate-content {
        text-align: left; /* 左揃えを維持 */
    }
/* モバイルでのタイトル位置調整 */
    .certificate-content h3 {
        text-align: center; /* タイトルを中央揃え */
    }
    
    /* モバイルでのチェックマークリスト位置調整 */
    .certificate-benefits {
        width: fit-content; /* コンテンツの幅に合わせる */
        margin: 20px auto; /* 上下のマージンはそのままに、左右を自動で中央揃え */
    }
    
    /* リストアイテムの縦揃え調整 */
    .benefit-item {
        display: flex;
        align-items: flex-start; /* 上端揃え */
    }
    
    /* チェックマークアイコンの位置調整 */
    .benefit-icon {
        margin-top: 2px; /* テキストと縦位置を微調整 */
    }
    
    /* テキスト自体は左揃えを維持 */
    .benefit-text {
        flex: 1;
        text-align: left; 
    }
    .certificate-content .cta-button-secondary {
        display: block;
        margin: 20px auto; /* 上下のマージンはそのままに、左右を自動で中央揃え */
        width: fit-content; /* ボタンの幅をコンテンツに合わせる */
    }
}

/* 小さいモバイル画面向けの追加修正 */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .problem-item {
        flex: 0 0 100%; /* 1つずつ表示に切り替え */
    }
      
    .comparison-item {
        min-width: 100%; /* 比較項目を1列表示に */
        width: 100%;
    }
      
    .market-stat {
        min-width: 100%; /* 市場情報を1列表示に */
        flex: 0 0 100%;
    }
      
    .skills-grid {
        grid-template-columns: 1fr; /* スキルカードを1列表示に */
    }
    
    .comparison-bars {
        height: 150px;
    }
    
    .ai-adoption-rate h3 {
        font-size: 24px;
    }
    
    .graph-title {
        font-size: 22px;
    }
    
    .graph-value {
        font-size: 20px;
        padding: 3px 10px;
    }
    
    .graph-note {
        font-size: 18px;
    }
    
    .price-original-value {
        font-size: 36px;
    }
    
    .discount-value, .discount-price-value {
        font-size: 28px;
    }
    
    .flow-support {
        font-size: 16px;
    }
    
    .funding-table th, .funding-table td {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .funding-table img {
        max-width: 70px;
    }
    
    .segment-value {
        font-size: 12px;
    }
    
    .legend-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .legend-item {
        margin: 5px 10px;
        width: auto;
    }
    
    .no-wrap-badge {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .growth-bars {
        height: 180px;
    }
    
    .growth-bar-container {
        max-width: 40px;
    }
    
    .growth-label {
        font-size: 12px;
    }
    
    .country-bar-container {
        height: 36px;
    }

    /* 小さい画面向けの追加調整 */
    .certificate {
        padding: 20px;
        gap: 20px;
    }
    
    .certificate-image {
        max-width: 250px; /* 小さい画面でもそれなりの大きさを維持 */
    }
    
    .certificate-image img {
        width: 100%; /* 親要素に合わせる */
    }

    .funding-table {
        font-size: 15.5px;  /* ← 控えめに拡大 */
    }

    .funding-table th,
    .funding-table td {
        padding: 14px 10px; /* ← 少し余白UP */
    }

    .funding-table img {
        max-width: 100px;   /* ← デスクと同等でOK */
        height: auto;
    }
}

/* 横向きモバイル向けの最適化 */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .problem-item {
        flex: 0 0 calc(33.33% - 15px); /* 3つずつ表示 */
    }
    
    .roadmap::before {
        left: 25px;
    }
    
    .comparison-item {
        width: 23%;
        min-width: auto;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .market-stat {
        min-width: 30%;
        flex: 0 0 30%;
    }
}

/* アニメーションとトランジション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* アクセシビリティ改善 */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 印刷対応 */
@media print {
    header, footer, .floating-cta {
        display: none;
    }
    
    body {
        background: white;
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
    
    .cta-button, .cta-button-secondary {
        border: 1px solid black;
        background: none;
        color: black;
    }
    
    .section-title h2 {
        font-size: 18pt;
    }
    
    section {
        page-break-inside: avoid;
    }
}

.strike-price {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 600;
}

.strike-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 4px;
  background-color: #FA6E61; /* コーラルレッド系 */
  transform: rotate(-12deg);
  transform-origin: center;
  pointer-events: none;
}

/* スクロールバー非表示設定 */
body {
    -ms-overflow-style: none;  /* IE, Edge 対応 */
    scrollbar-width: none;     /* Firefox 対応 */
}
body::-webkit-scrollbar {
    display: none;             /* Chrome, Safari 対応 */
}
