:root {
    --primary-gradient: linear-gradient(90deg, #3498db 0%, #2ecc71 100%); /* 青から緑へのグラデーション */
    --accent-color: #3498db; /* メインの青 */
    --bg-color: #f0f8ff; /* 非常に明るい青（ほぼ白） */
    --surface-color: #ffffff; /* 白 */
    --text-color: #333333; /* 暗めのテキスト色 */
    --heading-color: #2c3e50; /* より濃い青系の見出し色 */
    --border-color: #e0e0e0; /* 明るいボーダー色 */
    --light-green: #2ecc71; /* 明るい緑 */
    --medium-blue: #7FB3D5; /* 中間の青（少し濃く修正） */
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-break: strict;
    overflow-wrap: break-word;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
section {
    padding: 40px 0;
    background-color: var(--bg-color);
}
.section-alt-bg {
    background-color: var(--surface-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    margin-top: 0;
    line-height: 1.3;
}
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
}
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--light-green); /* ホバー時に緑色に */
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9); /* 白背景に透過 */
    backdrop-filter: blur(5px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;
    margin-right: 0px;
    margin-left: 10px;
}
.nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

/* PCでは外部リンクを非表示（ページ内リンクのみ表示） */
@media (min-width: 768px) {
    .nav a[href*="guidelines.html"],
    .nav a[href*="company.html"],
    .nav a[href*="contact.html"],
    .nav a[href*="terms.html"],
    .nav a[href*="privacy-policy.html"],
    .nav a[href*="cancel-policy.html"],
    .nav a[href*="tokusho.html"] {
        display: none;
    }
}

/* スマホではページ内リンクを非表示（外部リンクのみ表示） */
@media (max-width: 767px) {
    .nav a[href^="#"] {
        display: none;
    }
}
.nav a.nav-button {
    background: var(--primary-gradient);
    color: #fff; /* 文字色を白に指定 */
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}
.nav a.nav-button:hover {
    opacity: 0.9;
    color: #fff; /* ホバー時も文字色は白のまま */
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(255, 240, 249, 0.5), rgba(240, 248, 255, 1.0)), url('image/top2.png'); /* 背景の透明度を上げて画像を薄く見せる */
    background-size: cover;
    background-position: center;
    color: var(--heading-color); /* テキスト色を暗めに */
    padding-bottom: 100px;
    padding-top: 200px;
    text-align: center;
    
    /* ▼▼ 境界線を消すための修正 ▼▼ */
    border: none;
    margin-bottom: -1px; 
    /* ▲▲ ここまで ▲▲ */
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);

    max-width: 750px;      /* PCで横に広がりすぎないように制限 */
    margin-left: auto;     /* 中央寄せ */
    margin-right: auto;    /* 中央寄せ */
    line-height: 1.4;
    
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}
.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: var(--text-color);

    max-width: 580px;      /* この幅(約30文字分)で自然に折り返す */
    margin: 0 auto 40px;   /* 上0、左右自動(中央)、下40px */
    line-height: 1.9;
    
    /* 挙動を安定させる設定 */
    width: 100%;
    display: inline-block;
}
.cta-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3); /* 青系の影 */
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
    color: #fff; /* ← ホバー時も文字色を白に固定 */
}

/* Problems Section */
.problem-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.problem-list li {
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 255, 255, 0.8) 100%);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 影を控えめに */
}
.problem-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.problem-list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    stroke: url(#icon-gradient);
    margin-top: 5px;
}
.icon-gradient-svg {
    width: 0;
    height: 0;
    position: absolute;
}
.problems-conclusion {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.problems-conclusion::before,
.problems-conclusion::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 1.5em; /* テキストとの余白 */
}

.passion-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem; /* 「情熱」の文字を少し大きく */
    font-family: 'Poppins', sans-serif;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.feature-item {
    text-align: center;
}
.feature-item .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: #cce6ff; /* 背景色を元の薄い色に */
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-item .icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-color); /* アイコンの色を元の濃い青に */
}
.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}
.feature-item p {
        max-width: 330px;      /* PCで横に広がりすぎないように制限 */
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        text-align: center;
}

/* Steps Section */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.step {
    background-color: var(--surface-color); /* 白背景 */
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex: 1;
    max-width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}
.step .step-number {
    /* 数字を真ん中に配置する設定 */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    /* サイズと形 */
    width: 70px;
    height: 70px;
    border-radius: 50%; /* 完全な円にする */
    
    /* 色のデザイン */
    background: #b3d7f9;
    color: #ffffff;
    
    /* フォント調整 */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem; /* 数字を大きくハッキリと */
    
    /* 装飾（枠線と影） */
    margin-bottom: 20px;
    border: 4px solid #fff; /* 内側に白いフチをつける */
    box-shadow: 
        0 0 0 2px rgba(52, 152, 219, 0.2), /* 外側に薄い青のリング */
        0 10px 20px rgba(52, 152, 219, 0.3); /* ふんわり浮き上がる影 */
}
.step h3 {
     font-size: 1.2rem;
     color: var(--heading-color);
}

/* Use Cases Section */
.use-cases .use-case-item:not(:last-child) {
    margin-bottom: 80px;
}
.use-case-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
}
@media (min-width: 768px) {
    .use-case-card {
         grid-template-columns: 1fr 1fr;
    }
    .use-case-card.reverse .card-image {
        order: 2;
    }
}
.card-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-content .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--accent-color); /* 青色に */
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.card-content .card-catchphrase {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    max-width: 380px;
    text-align: left;
}

/* FAQ Section */
.faq details {
    background-color: var(--surface-color);
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.faq summary {
    padding: 20px;
    padding-right: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
    color: var(--heading-color);
    list-style: none;
    position: relative;
}
.faq summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--light-green); /* 緑色に */
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq .answer {
    padding: 0 20px 20px;
    border-top: 1px solid var(--border-color);
    margin: 10px 20px 0;
    padding-top: 20px;
    color: var(--text-color);
}

/* Closing Section */
.closing {
    background: var(--primary-gradient);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.closing .container {
    position: relative;
    z-index: 1;
}
.closing .section-title {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); /* 影を調整 */
}
.closing p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.closing .cta-button {
    background: #fff;
    color: var(--accent-color); /* ★★★ 修正箇所 ★★★ */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.3rem;
    padding: 20px 45px;
    border-radius: 50px;
}
.closing .cta-button:hover {
    background: #e6e6e6;
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
    color: var(--accent-color); /* ← ホバー時も文字色を青に固定 */
}

/* Footer */
.footer {
    background-color: rgba(224, 224, 224, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* Safari用 */
    border-top: 1px solid rgba(224, 224, 224, 0.8);
    text-align: center;
    padding-top: 8px;
    color: #999797;
    font-size: 0.8rem;
    position: relative;
    z-index: 10;
}
.footer-links a {
    color: #999797; /* 暗めのテキスト色 */
    margin: 0 10px;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.footer .copyright {
    padding-bottom: 10px;
    margin-top: 3px;
    margin-bottom: 0px;
    font-size: 0.8rem;
    opacity: 0.7;
    color: #999797;
}
.footer .container {
    max-height: 80px;
}

/* マーカーの色定義を:rootに追加 (既存の:rootがあればその中に追加) */
:root {
    /* 既存の変数 */
    --highlight-blue-color: rgba(173, 216, 230, 0.7); /* 薄い水色、透明度あり */
    --highlight-green-color: rgba(144, 238, 144, 0.7); /* 薄い緑色、透明度あり */
}

/* マーカー風ハイライトスタイル */
.highlight {
    color: var(--heading-color); /* 元のテキスト色を維持 */
    background-color: transparent; /* 背景色は透明に */
    position: relative; /* 下線のために必要 */
    padding: 0 5px; /* マーカーがテキストの左右に少しはみ出るように調整 */
    box-decoration-break: clone; /* 行をまたぐ場合にスタイルを維持 */
    -webkit-box-decoration-break: clone; /* Safari対応 */
    
    background-repeat: no-repeat;
    background-size: 100% 50%; /* 幅は100%、高さは50%（テキストの下半分） */
    background-position: 0 90%; /* テキストの90%下から開始 (マーカーの位置) */
    
    transform: rotate(-1deg); /* 少し傾ける */
    display: inline-block; /* transformを適用するために必要 */

    /* デフォルトのマーカー色 (もし個別指定がない場合) */
    background-image: linear-gradient(120deg, var(--highlight-green-color) 0%, var(--highlight-green-color) 100%);
}

/* フレーズごとのマーカー色 */
.highlight.highlight-greem {
    background-image: linear-gradient(120deg, var(--highlight-green-color) 0%, var(--highlight-green-color) 100%);
}

.highlight.highlight-blue {
    background-image: linear-gradient(120deg, var(--highlight-blue-color) 0%, var(--highlight-blue-color) 100%);
}

/* ヒーローセクションの既存h1, pタグのtext-shadowを調整または削除して、ハイライトが目立つように */
.hero h1, .hero p {
    text-shadow: none; /* ハイライトが目立つように影を一時的に削除 */
}

/* ヒーローセクションのテキストに、少し拡散した白フチと白い影を追加 */
.hero h1, .hero p {
    text-shadow: 
        /* 外側の白い影（グロー効果） */
        3px 3px 8px rgba(255, 255, 255, 0.6),
        /* 内側の白フチに、ほんの少しぼかしを追加 */
        -1px -1px 2px #fff,  
         1px -1px 2px #fff,
        -1px  1px 2px #fff,
         1px  1px 2px #fff;
}

/* --- スマホ表示：ユースケースをカード型にする --- */
@media (max-width: 767px) {
    
    /* カード本体の枠を作る */
    .use-case-card {
        display: flex;
        flex-direction: column; /* 縦並び */
        background-color: #fff; /* 白背景 */
        border-radius: 16px;    /* 角丸 */
        box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* 浮き上がる影 */
        border: 1px solid var(--border-color);   /* 薄い枠線 */
        overflow: hidden;       /* 画像が角丸からはみ出ないように */
        gap: 0;                 /* グリッドの隙間設定をリセット */
        margin-bottom: 30px;    /* 下のカードとの間隔 */
    }

    /* 画像部分の調整 */
    .card-image {
        width: 100%;
        margin: 0;
    }

    .card-image img {
        width: 100%;
        height: 200px;        /* 高さを統一して綺麗に見せる */
        object-fit: cover;    /* 画像の比率を維持してトリミング */
        border-radius: 0;     /* 元の角丸をリセット */
        box-shadow: none;     /* 元の影をリセット */
    }

    /* テキスト部分の調整 */
    .card-content {
        padding: 24px;        /* 内側に余白を入れる */
        text-align: left;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    /* タイトル周りの微調整 */
    .card-content .card-title {
        margin-top: 0;
        font-size: 1rem;
        color: var(--accent-color);
    }
    
    .card-content .card-catchphrase {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .header {
        padding: 8px 0;
    }
    
    .header .container {
        position: relative;
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        width: 100%;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        margin: 0 0 15px 0;
        padding: 12px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: center;
    }
    
    .nav a:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .hero {
    padding: 20px 0;
    text-align: center;
    
    /* ▼▼ 境界線を消すための修正 ▼▼ */
    border: none;
    margin-bottom: -1px; 
    /* ▲▲ ここまで ▲▲ */
    }

    .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    max-width: 350px;
    margin-left: auto;     /* 中央寄せ */
    margin-right: auto;    /* 中央寄せ */
    line-height: 1.4;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    }
    .hero p {
    color: var(--text-color);
    max-width: 330px;
    margin: 0 auto 40px;   /* 上0、左右自動(中央)、下40px */ 
    width: 100%;
    display: inline-block; 
    }
    .problems-conclusion{
        max-width: 250px;
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        text-align: center;
    }
    .problems-conclusion::before,
    .problems-conclusion::after {
        display: none;
    }
    .section-title { 
        font-size: 2.2rem; 
        margin-bottom: 20px;
        max-width: 320px; 
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        text-align: center;
    }
    .feature-item p {
        max-width: 330px;
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        text-align: center;
    }
    .container h1 {
        font-size: 2.3rem; 
        max-width: 330px;
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        text-align: center;
    }
    .section-title {
        font-size: 1.8rem; 
        max-width: 320px;
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        text-align: center;
    }
    .card-content .card-title {
        font-family: 'Poppins', sans-serif;
        color: var(--accent-color); /* 青色に */
        font-size: 1.3rem; 
        max-width: 350px;
        margin-left: auto;     /* 中央寄せ */
        margin-right: auto;    /* 中央寄せ */
        padding-bottom: 0px;
        text-align: center;
    }
    .card-content .card-catchphrase {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    max-width: 330px;
    margin-left: auto;     /* 中央寄せ */
    margin-right: auto;    /* 中央寄せ */
    text-align: center;
    }
    .closing .container h2 {  
    font-size: 1.8rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    }
    .closing .container p {  
    font-size: 1.0rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    }
    .steps-container { flex-direction: column; align-items: center; }
    .step { width: 100%; max-width: 350px; margin-bottom: 20px; }
    .closing .section-title { font-size: 2.5rem; }
    .closing p { font-size: 1.1rem; }
    .closing .cta-button { 
        font-size: 1rem;
        padding: 15px 30px; 
    }

    .footer {
        display: none;
    }
}

@media (min-width: 768px) {
    .features-grid .feature-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* style.css の末尾に追加 */

.nav a.nav-link-special {
    color: var(--accent-color); /* 文字色をアクセントカラー（青）に */
    border: 1px solid var(--accent-color); /* アクセントカラーの枠線 */
    padding: 8px 16px; /* 内側の余白を調整 */
    border-radius: 8px; /* 角を丸くする */
    transition: background-color 0.3s, color 0.3s;
}

/* ホバー時のスタイル */
.nav a.nav-link-special:hover {
    background-color: var(--accent-color); /* 背景色をアクセントカラーに */
    color: #fff; /* 文字色を白に */
    opacity: 1; /* 透明度をリセット */
}

/* --- フォームセクション (coach.html用) --- */
#pre-registration-form {
    padding: 50px 0;
    border-top: 1px solid #e0eaf3;
    border-bottom: 1px solid #e0eaf3;
}
#pre-registration-form form {
    max-width: 550px; /* ← 横幅を 550px に変更 */
    margin: 0 auto;
    background-color: var(--surface-color);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.05rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
     border-color: var(--accent-color); 
     box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2); 
     outline: none;
}

/* フォーム専用CTAボタン (スタイル競合を防ぐため .cta-button-form として定義) */
.cta-button-form {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif; 
}
.cta-button-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
    color: white; 
}

/* style.cssに .text-center が無かったため追加 */
.text-center {
     text-align: center;
}

/* アプリストアバッジのグレーアウトスタイル */
.app-badges-light {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.app-badges-light a {
    opacity: 0.7; /* グレーアウト効果（さらに透明度を上げて見やすく） */
    filter: grayscale(80%) brightness(0.8); /* グレースケールを80%に、明度を下げる */
    transition: opacity 0.3s ease, filter 0.3s ease;
    pointer-events: none; /* クリックを無効化 */
    cursor: not-allowed; /* カーソルを変更 */
}

.app-badges-light a:hover {
    opacity: 0.7; /* ホバー時もグレーアウトを維持（透明度を統一） */
    filter: grayscale(80%) brightness(0.8);
}

.app-badges-light img {
    height: 50px;
    width: auto;
}

/* --- キャンセルポリシー表のスマホ対応（修正版：重なり防止） --- */
@media (max-width: 767px) {
    /* ヘッダー行を非表示 */
    .policy-table thead {
        display: none;
    }

    /* 行をカード化 */
    .policy-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid #edf4fa; /* 薄い青枠 */
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    /* セルを縦積みに */
    .policy-table td {
        display: block;
        text-align: left;
        border: none;
        border-bottom: 1px solid #eee;
        padding: 15px; /* 通常のパディング */
        /* padding-topによるスペース確保は廃止 */
    }

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

    /* --- 項目名（ラベル）のデザイン修正 --- */
    /* 共通設定：浮かせるのではなく、ブロックとして配置 */
    .policy-table td::before {
        display: block;           /* ← ここが重要：ブロック要素にする */
        margin-bottom: 8px;       /* 下の文字との間隔 */
        font-size: 0.85rem;
        color: #666;              /* 少し濃くして読みやすく */
        font-weight: 700;
        background-color: #f0f4f8; /* 薄い背景色 */
        padding: 4px 10px;        /* ラベルの内側の余白 */
        border-radius: 4px;
        width: fit-content;       /* 文字の幅に合わせる */
    }

    /* 各項目のラベル文字定義 */
    
    /* 1列目 */
    .policy-table td:nth-of-type(1)::before {
        content: "タイミング";
    }

    /* 2列目 */
    .policy-table td:nth-of-type(2)::before {
        content: "キャンセル料";
    }
    
    /* 2列目の文字強調（0%や100%） */
    .policy-table td:nth-of-type(2) strong {
        font-size: 1.4rem;        /* さらに大きく強調 */
        color: var(--accent-color);
        display: block;           /* 数字もブロックにして目立たせる */
        margin-top: 5px;
    }

    /* 3列目 */
    .policy-table td:nth-of-type(3)::before {
        content: "料金の請求";
    }
}

/* =========================================
   ガイドラインページ専用スタイル (guidelines.html)
   ========================================= */

    /* ページ全体のレイアウト（フッター固定用） */
    .guidelines-page {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    .guidelines-page main {
        flex-grow: 1;
    }

    /* コンテンツエリア */
    .guidelines-content {
        max-width: 900px;
        margin: 40px auto;
        padding: 50px;
        background-color: var(--surface-color);
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    /* ヒーローセクション（トップ画像） */
    .hero-guidelines {
        background-image: url('image/guidelines_hero.jpg');
        background-size: cover;
        background-position: center;
        color: #fff;
        text-align: center;
        padding: 100px 20px;
        position: relative;
        box-shadow: inset 0 -50px 50px rgba(0, 0, 0, 0.3);
    }
    .hero-guidelines::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
    }
    .hero-guidelines .container {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 0;
        background: none;
        box-shadow: none;
    }
    .hero-guidelines h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        border-bottom: none;
    }
    .hero-guidelines p {
        font-size: 1.3em;
        line-height: 1.6;
        margin-bottom: 0;
        color: #f0f0f0;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    /* 前書き */
    .preface {
        text-align: center;
        margin-bottom: 50px;
        font-size: 1.2em;
        color: #666;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    /* 区切り線 */
    .section-divider {
        border: 0;
        height: 1px;
        background-color: var(--border-color);
        margin: 60px auto;
        width: 80%;
    }

    /* セクションタイトル（ガイドラインページ専用の上書き） */
    .guidelines-page .section-title {
        font-size: 2rem;
        color: var(--primary-color);
        text-align: center;
        margin-top: 60px;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
        max-width: 100%; /* 他ページの制限を解除 */
    }
    .guidelines-page .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, var(--medium-blue), var(--light-green));
        border-radius: 2px;
    }

    /* ガイドラインカード */
    .guideline-card {
        background-color: #f8fcfd;
        border-left: 5px solid var(--accent-color);
        border-radius: 8px;
        padding: 25px 30px;
        margin-bottom: 25px;
        display: flex;
        align-items: flex-start;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }
    .guideline-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    .guideline-card .icon {
        font-size: 2.2rem;
        color: var(--accent-color);
        margin-right: 20px;
        min-width: 40px;
        text-align: center;
        line-height: 1;
        background: -webkit-linear-gradient(left, var(--medium-blue), var(--light-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* 注意喚起用カード（赤色） */
    .guideline-card.danger {
        border-left-color: #e74c3c;
    }
    .guideline-card.danger .icon {
        color: #e74c3c;
        -webkit-text-fill-color: #e74c3c;
    }

    /* カード内コンテンツ */
    .guideline-card-content h3 {
        font-size: 1.35rem;
        color: var(--heading-color);
        margin-top: 0;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .guideline-card-content p {
        font-size: 1.05rem;
        color: var(--text-color);
        margin-bottom: 0;
    }

    /* OK/NG例リスト */
    .example-list {
        list-style: none;
        padding-left: 0;
        margin-top: 10px;
        font-size: 0.95em;
    }
    .example-list li {
        margin-bottom: 5px;
    }
    .example-list .good-example {
        color: #2ecc71;
    }
    .example-list .good-example::before {
        content: '✓ ';
        font-weight: bold;
    }
    .example-list .bad-example {
        color: #e74c3c;
    }
    .example-list .bad-example::before {
        content: '✗ ';
        font-weight: bold;
    }

    /* フッターの注釈 */
    .footer-note {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #eee;
        text-align: center;
        color: #777;
        font-size: 1em;
        line-height: 1.6;
    }
    .footer-note strong {
        color: #333;
    }
    .emphasis-text {
        font-size: 1.2em;
        font-weight: 700;
        color: var(--heading-color);
    }

    /* -------------------------------------------
    スマホ表示（レスポンシブ）設定
    ------------------------------------------- */
    @media (max-width: 767px) {
        /* メインコンテナの余白を減らす */
        .guidelines-content {
            padding: 30px 20px;
            width: 95%;
            margin: 20px auto;
        }

        /* ヒーロー画像の文字サイズ調整 */
        .hero-guidelines h1 {
            font-size: 1.8rem;
            line-height: 1.3;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-guidelines p {
            font-size: 1rem;
            max-width: 330px;
            margin-left: auto;
            margin-right: auto;
        }

        /* カードを縦積みに変更 */
        .guideline-card {
            padding: 20px 15px;
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        /* アイコンの位置調整 */
        .guideline-card .icon {
            margin-right: 0;
            margin-bottom: 15px;
            font-size: 2.5rem;
        }

        /* 見出しと本文の調整 */
        .guideline-card-content h3 {
            font-size: 1.2rem;
            text-align: center;
        }
        .guideline-card-content p {
            font-size: 0.95rem;
            text-align: left; /* 読みやすさのため左寄せ */
        }

        /* セクションタイトル調整 */
        .guidelines-page .section-title {
            font-size: 1.5rem;
            margin-top: 40px;
            margin-bottom: 30px;
        }
        
        /* 序文の調整 */
        .preface {
            font-size: 1rem;
            text-align: left;
        }

        .emphasis-text {
            max-width: 300px;
            margin: auto;
        }

        .example-list .good-example {
            text-align: left;
        }
        .example-list .bad-example {
            text-align: left;
        }    
    }

/* =========================================
   会社概要ページ専用スタイル (company.html)
   ========================================= */

/* ページ固有のラッパー設定（フッター固定などのレイアウト調整） */
.company-page .company-section {
    padding-top: 40px;
}

/* メインコンテナ */
.company-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ページのメインタイトル */
.company-page-container > h1 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    font-size: 2.5rem;
}
.company-page-container > h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--medium-blue), var(--light-green));
    border-radius: 2px;
}

/* Missionセクション */
.mission-section {
    text-align: center;
    padding: 50px 30px;
    background-color: #f8fcfd;
    border-radius: 10px;
    margin-bottom: 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.mission-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color); /* 修正: --primary-colorが未定義の場合はvar(--accent-color)などに置換推奨 */
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
/* ※もし --primary-color が効かない場合は var(--accent-color) を使ってください */

.mission-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--medium-blue), var(--light-green));
    border-radius: 2px;
}
.mission-section p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
    margin-top: 30px;
}
.mission-section strong {
    color: var(--heading-color);
}

/* 代表メッセージ */
.ceo-message {
    margin-bottom: 70px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.ceo-message-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.ceo-message-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--light-green);
    border-radius: 1px;
}
.ceo-message-content p {
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: justify;
}
.ceo-message-content .name {
    text-align: right;
    font-weight: 700;
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--primary-color); /* 必要に応じて修正 */
}

/* サブセクションタイトル（会社概要・アクセス） */
.subsection-title {
    text-align: left;
    font-size: 1.8rem;
    color: var(--heading-color);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-top: 60px;
    margin-bottom: 30px;
}

/* 会社概要テーブル */
.company-page .company-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.company-page .company-table th, 
.company-page .company-table td {
    border: 1px solid var(--border-color);
    padding: 18px;
    text-align: left;
    font-size: 1.05rem;
}
.company-page .company-table th {
    background-color: #f8f9fa;
    width: 30%;
    font-weight: 700;
    color: var(--heading-color);
}
.company-page .company-table td a {
    color: var(--accent-color);
    text-decoration: none;
}
.company-page .company-table td a:hover {
    text-decoration: underline;
}

/* アクセスマップ */
.access-map {
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* -------------------------------------------
   会社概要ページ：スマホ表示（レスポンシブ）設定
   ------------------------------------------- */
@media (max-width: 767px) {
    /* 1. メインコンテナの余白を減らす */
    .company-page-container {
        padding: 30px 20px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    /* 2. ページタイトルのサイズ調整 */
    .company-page-container > h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* 3. 会社概要テーブルを「カード型（縦積み）」に変更 */
    .company-page .company-table, 
    .company-page .company-table tbody, 
    .company-page .company-table tr, 
    .company-page .company-table th, 
    .company-page .company-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* 行ごとに枠線をつけてカード化 */
    .company-page .company-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* 見出し（項目名） */
    .company-page .company-table th {
        width: 100%;
        background-color: #f0f4f8;
        border: none;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 15px;
        font-size: 0.95rem;
        color: #666;
    }

    /* データ部分 */
    .company-page .company-table td {
        width: 100%;
        border: none;
        padding: 15px;
        background-color: #fff;
    }

    /* 4. その他のセクション調整 */
    /* ミッション */
    .mission-section {
        padding: 30px 20px;
    }
    .mission-section h2 {
        font-size: 1.6rem;
    }
    .mission-section p {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }

    /* 代表メッセージ */
    .ceo-message {
        padding: 25px 20px;
    }
    .ceo-message-content h3 {
        font-size: 1.4rem;
        width: 100%;
    }

    /* マップ */
    .access-map {
        height: 300px;
    }
}

/* =========================================
   特定商取引法に基づく表記ページ専用スタイル (tokusho.html)
   ========================================= */

/* ポリシー系共通コンテナ（特商法ページ用） */
.tokusho-page .policy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* タイトル */
.tokusho-page .policy-container h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

/* 本文 */
.tokusho-page .policy-container p {
    margin-bottom: 20px;
}

/* テーブルスタイル（PC用） */
.tokusho-page .company-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
.tokusho-page .company-table th, 
.tokusho-page .company-table td {
    border: 1px solid var(--border-color);
    padding: 18px;
    text-align: left;
    font-size: 1.05rem;
}
.tokusho-page .company-table th {
    background-color: #f8f9fa;
    width: 30%;
    font-weight: 700;
    color: var(--heading-color);
}
.tokusho-page .company-table td a {
    color: var(--accent-color);
    text-decoration: none;
}
.tokusho-page .company-table td a:hover {
    text-decoration: underline;
}

/* -------------------------------------------
   特商法ページ：スマホ表示（レスポンシブ）設定
   ------------------------------------------- */
@media (max-width: 767px) {
    /* 1. メインコンテナの余白を減らす */
    .tokusho-page .policy-container {
        padding: 30px 20px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    /* 2. テーブルを「カード型（縦積み）」に変更 */
    .tokusho-page .company-table, 
    .tokusho-page .company-table tbody, 
    .tokusho-page .company-table tr, 
    .tokusho-page .company-table th, 
    .tokusho-page .company-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* 行ごとに枠線をつけてカード化 */
    .tokusho-page .company-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* 見出し（項目名） */
    .tokusho-page .company-table th {
        width: 100%;
        background-color: #f0f4f8;
        border: none;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 15px;
        font-size: 0.95rem;
        color: #666;
    }

    /* データ部分 */
    .tokusho-page .company-table td {
        width: 100%;
        border: none;
        padding: 15px;
        background-color: #fff;
        word-wrap: break-word; /* 長いURLなどがはみ出ないように */
    }

    /* リストのパディング調整 */
    .tokusho-page .company-table td ul {
        padding-left: 20px;
        margin: 10px 0;
    }

    /* タイトルの文字サイズ調整 */
    .tokusho-page .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}