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

/* 基本スタイル */
:root {
    --color-primary: #003B75;
    --color-primary-light: #1E88E5;
    --color-accent: #FF9800;
    --color-accent-light: #FFB74D;
    --color-success: #4CAF50;
    --color-success-light: #81C784;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #FFFFFF;
    --color-background-alt: #F8F9FA;
    --color-border: #E0E0E0;
    --color-line: #06C755;
    --color-error: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0, 59, 117, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 59, 117, 0.12);
    --shadow-lg: 0 12px 20px rgba(0, 59, 117, 0.18);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-primary-dark: linear-gradient(135deg, #002854 0%, #1565C0 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    --gradient-success: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-light) 100%);
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

/* コンテナ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* アニメーションの準備 */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* セクションタイトル */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
}

.section-lead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--color-text-light);
}

/* ハイライト */
.highlight {
    color: var(--color-accent);
    font-weight: 700;
}

/* 影付き画像 */
.shadow-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn--main {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--main:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn--line {
    background-color: var(--color-line);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--line:hover {
    background-color: #05aa49;
    transform: translateY(-2px);
}

.btn--line i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

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

.header__logo img {
    /* height: 40px; */
    height: 56px;
    width: auto;
}

.header__nav {
    display: flex;
}

.header__nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header__nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.header__nav a:hover {
    color: var(--color-primary);
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
    left: 0;
}

.header__menu-toggle span:nth-child(1) {
    top: 0;
}

.header__menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__menu-toggle span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

/* モバイルメニュー active 時 */
.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

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

/* モバイルナビゲーション */
@media screen and (max-width: 992px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        border-top: 1px solid var(--color-border);
        overflow-y: auto;
        flex-direction: column;
        gap: 15px;
    }

    .header__nav.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

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

    .header__nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header__nav li {
        width: 100%;
        text-align: center;
    }

    .header__nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-background-alt);
        font-size: 1.1rem;
    }

    .header__nav a.btn {
        border: none;
        margin: 10px auto;
        width: 80%;
    }

    .header__menu-toggle {
        display: flex;
    }
}

/* メインビジュアル */
.hero {
    padding: 166px 0 120px;
    background-color: var(--color-background-alt);
    position: relative;
    overflow: hidden;
    /* min-height: 85vh; */
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 30px;
}

/* .hero__content {
    flex: 1;
    max-width: 48%;
} */

.hero__content {
    flex: 0 1 50%;
}

.hero__badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.hero__subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.hero__cta {
    position: relative;
}

.hero__cta-note {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--color-text-light);
}

.hero__features {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__feature i {
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

.hero__trust {
    margin-top: 2rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.hero__trust i {
    color: var(--color-primary);
}

/* .hero__image {
    flex: 1.2;
    position: relative;
    height: 600px;
    margin-left: 30px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
} */

.hero__image {
    flex: 0 1 50%;
    position: relative;
    /* height: 600px;
    margin-left: 30px; */
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* .hero__bg {
    position: absolute;
    top: -30px;
    right: -120px;
    width: 150%;
    height: 130%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
} */

.hero__bg {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* 問題提起セクション */
.problems {
    padding: 80px 0;
    background-color: var(--color-background);
}

.problems__list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.problems__item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--color-background-alt);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

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

.problems__icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.problems__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.problems__item p {
    font-weight: 500;
}

.problems__data {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0.5rem 0;
}

.problems__solution {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 183, 77, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.problems__solution i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.problems__solution p {
    font-size: 1.5rem;
}

/* なぜアローリンクの研修なのか */
.why-arrowlink {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f3ff 100%);
    border-top: 1px solid rgba(0, 59, 117, 0.1);
    border-bottom: 1px solid rgba(0, 59, 117, 0.1);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.authority-block {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

/* .authority-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: normal;
    gap: 30px;
    margin-bottom: 50px;
}

.authority-block {
    width: 48%;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
} */

.authority-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.authority-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
}

.authority-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
}

.authority-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.authority-list {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.authority-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.authority-list li i {
    color: var(--color-accent);
    margin-right: 10px;
}

/* 公的認証 */
.certifications {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.certification {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 59, 117, 0.05) 0%, rgba(30, 136, 229, 0.05) 100%);
    border-radius: var(--border-radius-md);
    flex: 1;
    min-width: 120px;
    border: 1px solid rgba(0, 59, 117, 0.1);
}

.certification i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.certification span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

/* 講師プロフィール */
.authority-profile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.profile-position {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.profile-achievements {
    list-style: none;
    padding: 0;
}

.profile-achievements li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.profile-achievements li i {
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 1rem;
}

.profile-quote {
    background: linear-gradient(135deg, rgba(0, 59, 117, 0.05) 0%, rgba(30, 136, 229, 0.05) 100%);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 59, 117, 0.1);
    position: relative;
}

.profile-quote i {
    color: rgba(0, 59, 117, 0.2);
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    left: 10px;
}

.profile-quote p {
    position: relative;
    padding-left: 15px;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* クライアント実績 */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.client {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 59, 117, 0.05) 0%, rgba(30, 136, 229, 0.05) 100%);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 59, 117, 0.1);
    transition: var(--transition);
}

.client:hover {
    background: linear-gradient(135deg, rgba(0, 59, 117, 0.1) 0%, rgba(30, 136, 229, 0.1) 100%);
}

.client i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.client p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.client-result {
    display: block;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 5px;
}

/* CTA */
.authority-cta {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    margin-top: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.authority-cta p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.authority-cta .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* 統計・実績セクション */
.stats {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}
/*.stats__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 4rem;
} */
.stats__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 4rem;
}

/* .stats__item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    background-color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
} */
.stats__item {
    flex: 1;
    width: 200px;
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    background-color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.stats__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.stats__testimonials h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.stats__testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.testimonial__text {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial__text i {
    color: rgba(0, 59, 117, 0.2);
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
}

.testimonial__text p {
    position: relative;
    z-index: 2;
    font-style: italic;
    margin: 0;
}

.testimonial__author {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.testimonial__name {
    font-weight: 700;
    margin: 0;
}

.testimonial__company {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* 研修概要セクション */
.about {
    padding: 80px 0;
    background-color: var(--color-background);
}

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

.about__text--full {
    width: 100%;
}

.about__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.about__heading {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
}

.about__features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.about__features--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.about__features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.6;
}

.about__features i {
    color: var(--color-success);
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 20px;
}

/* カリキュラム */
.curriculum {
    max-width: 1200px;
    margin: 0 auto;
}

.curriculum__title {
    font-size: 2rem;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

/* レベル別セクション */
.curriculum__level {
    margin-bottom: 50px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.curriculum__level-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.level-badge {
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.level-badge--basic {
    background: var(--gradient-success);
}

.level-badge--intermediate {
    background: var(--gradient-accent);
}

.curriculum__level-description {
    margin-bottom: 25px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.curriculum__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.curriculum__module {
    background-color: var(--color-background-alt);
    border-radius: var(--border-radius-md);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.curriculum__module:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.curriculum__module-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.curriculum__module-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.curriculum__module-title {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0;
}

.curriculum__list {
    list-style: none;
    padding: 0;
}

.curriculum__list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.curriculum__list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* サポートハイライト */
.support-highlight {
    background: var(--gradient-primary-dark);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.support-highlight::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 10s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.support-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.support-item {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.support-item:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.support-item h5 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-align: center;
    color: #FFD54F;
    margin-top: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.support-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.support-cta {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 25px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.about__text {
    .support-cta {
        color: white;
    }
}

.support-cta strong {
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
    color: #FFD54F;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* 特典・実績セクション */
.benefits {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-card__title {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card__description {
    line-height: 1.6;
    color: var(--color-text-light);
}

.benefits__bonus {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--color-border);
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.benefits__bonus h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefits__bonus p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* 料金プラン */
.price {
    padding: 80px 0;
    background-color: var(--color-background);
}

.price-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.price-card {
    flex: 1;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--color-border);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    border: 3px solid var(--color-accent);
    transform: scale(1.05);
}

.price-card--featured:hover {
    transform: scale(1.06) translateY(-5px);
}

.price-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-card__header {
    margin-bottom: 30px;
}

.price-card__title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.price-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.price-card__currency {
    font-size: 1.2rem;
    font-weight: 500;
}

.price-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 5px;
}

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

.price-card__description {
    color: var(--color-text-light);
    line-height: 1.4;
}

.price-card__features {
    margin-bottom: 30px;
}

.price-card__features ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.price-card__features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.price-card__features li i {
    margin-right: 10px;
    width: 16px;
}

.price-card__features li.disabled {
    color: var(--color-text-light);
}

.price-card__features li.disabled i {
    color: #ccc;
}

.price__notes {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.price__notes p {
    margin-bottom: 5px;
}

.price-card__footer .btn {
    font-size: 1rem;
    padding: 12px 24px;
    white-space: nowrap;
    /* テキストの折り返しを防ぐ */
}

.company {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.company__content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.company__info {
    flex: 2;
}

.company__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.company__table th,
.company__table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.company__table th {
    background-color: var(--color-background-alt);
    font-weight: 700;
    color: var(--color-primary);
    width: 30%;
}

.company__mission {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.company__mission h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.company__image {
    flex: 1;
    text-align: center;
}

/* FAQセクション */
.faq {
    padding: 80px 0;
    background-color: var(--color-background);
}

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

.faq-item {
    background-color: var(--color-background-alt);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.faq-item__question:hover {
    background: linear-gradient(135deg, #002a55 0%, #1a76c8 100%);
}

.faq-item__question i {
    transition: transform 0.3s ease;
}

.faq-item__question.active i {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: white;
}

.faq-item__answer.active {
    max-height: none;
    /* 固定値ではなくnoneに設定 */
    padding: 20px 30px;
    overflow: visible;
    /* オーバーフローを表示 */
}

.faq-item__answer p {
    margin-bottom: 0;
    color: var(--color-text);
    line-height: 1.8;
    /* 行間を広げて読みやすく */
}

/* 申し込みセクション */
.apply {
    padding: 80px 0;
    background-color: var(--color-background);
}

.apply__methods {
    display: grid;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.apply__method {
    /* background-color: var(--color-background-alt); */
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.apply__method-title {
    font-size: 1.8rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 30px;
}

/* LINE申し込み */
.apply__line {
    display: flex;
    gap: 30px;
    align-items: center;
}

.apply__line-qr {
    flex-shrink: 0;
}

.apply__line-info {
    flex: 1;
}

.apply__line-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.apply__note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 10px;
}

/* フォーム */
.apply__form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-column {
    flex: 1;
}

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

.required {
    color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 59, 117, 0.1);
}

/* バリデーションエラー時のスタイル */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group .error-message {
    color: var(--color-error);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-group .interests-error,
.form-group .privacy-error {
    display: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px;
}

.checkbox-group label:hover {
    background-color: var(--color-background-alt);
    border-radius: var(--border-radius-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-privacy label {
    margin-bottom: 0;
    line-height: 1.5;
}

.privacy-link {
    color: var(--color-primary);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* フォームメッセージ */
.form-message {
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.form-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.form-success h3 {
    color: #2e7d32;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.form-success p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.form-success p:last-child {
    font-size: 0.9rem;
    color: #666;
}

/* note */
.note {
    padding: 80px 0;
    background-color: var(--color-background);
}

.note__list {
    /* display: flex;
    justify-content: space-between; */

    display: grid;
    grid-template-columns: 1fr;
    grid-template-columns: repeat(3, minmax(0 ,1fr));
    place-content: stretch;
    place-items: stretch;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.note__item {
    /* flex: 1; */
    /* text-align: center;
    padding: 40px 30px;
    background-color: var(--color-background-alt);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm); */
    transition: var(--transition);
    /* border: 1px solid var(--color-border); */
    opacity: 1.0;
    text-decoration: none;
    img {
        display: block;
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    h3 {
        margin-bottom: 15px;
        /* color: var(--color-primary); */
        color: var(--color-text);
        /* font-size: 1.5rem; */
        text-decoration: none;
    }
    p {
        margin-bottom: 15px;
        text-decoration: none;
        /* color: var(--color-text); */
        color: var(--color-text-light);

    }
    /* span {

    } */
}

.note__item:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: var(--shadow-md); */
    opacity: 0.7;
}

.note__icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.note__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.note__item p {
    font-weight: 500;
}

.note__data {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0.5rem 0;
}

.note__solution {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 183, 77, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.note__solution i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.note__solution p {
    font-size: 1.5rem;
}

/* フッター */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 50px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer__logo {
    max-width: 300px;
}

.footer__logo p {
    margin-top: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer__link-group h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-accent-light);
}

.footer__link-group ul {
    list-style: none;
    padding: 0;
}

.footer__link-group li {
    margin-bottom: 8px;
}

.footer__link-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link-group a:hover {
    color: white;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer__social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    gap: 6px;
    padding: 12px;
}
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner #hs-eu-policy-wording {
    flex: auto;
    margin: 0 !important;
}
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner #hs-eu-policy-wording p {
    margin: 0 !important;
}
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area {
    margin: 0 !important;
    flex: none;
}
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area div#hs-eu-cookie-confirmation-button-group a#hs-eu-confirmation-button,
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area div#hs-eu-cookie-confirmation-button-group a#hs-eu-decline-button {
    padding: 8px 12px !important;
}

/* レスポンシブデザイン */
@media screen and (max-width: 992px) {

    /* ヒーロー */
    .hero {
        padding: 150px 0 80px;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .hero__image {
        height: 400px;
        margin-left: 0;
        width: 100%;
    }

    .hero__bg {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    /* 問題提起 */
    .problems__list {
        flex-direction: column;
        gap: 20px;
    }

    /* 権威性セクション */
    .authority-grid {
        grid-template-columns: 1fr;
    }

    /* .authority-block {
        width: 100%;
    } */

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

    /* 統計 */
    /* .stats__list {
        flex-direction: column;
        gap: 20px;
    } */
    .stats__list {
        /* flex-direction: column; */
        gap: 20px;
    }
    .stats__item {
        p {
            font-size: 14px;
        }
    }

    .stats__testimonial-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* 料金プラン */
    .price-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card--featured {
        transform: none;
    }

    .price-card--featured:hover {
        transform: translateY(-5px);
    }

    /* 会社情報 */
    .company__content {
        flex-direction: column;
        gap: 30px;
    }

    /* FAQセクション（スマホ） */
    .faq-item__question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-item__question span {
        padding-right: 30px;
        /* アイコン分のスペースを確保 */
    }

    .faq-item__answer {
        font-size: 0.95rem;
    }

    .faq-item__answer.active {
        padding: 15px 20px;
    }

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

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* note */
    .note__list {
        flex-direction: column;
        gap: 20px;
    }

    /* フッター */
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer__logo,
    .footer__links,
    .footer__link-group {
        max-width: 100%;
        align-items: center;
    }

    .footer__link-group ul {
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    /* カリキュラム関連 */
    .curriculum__content {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-features {
        grid-template-columns: 1fr;
    }

    /* 研修概要 */
    .about__features--grid {
        grid-template-columns: 1fr;
    }

    /* 特典 */
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {

    /* 基本 */
    .container {
        padding: 0 15px;
    }

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

    .section-lead {
        font-size: 1rem;
    }

    /* ヒーロー */
    .hero {
        padding: 100px 0 50px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.3rem;
    }

    .hero__text {
        font-size: 1rem;
    }

    .hero__features {
        flex-direction: column;
        gap: 10px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 10px;
    }
    .stats__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0 ,1fr));
        place-content: stretch;
        place-items: stretch;
    }
    .stats__item {
        width: auto;
        max-width: auto;
    }
    /* 特典 */
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    /* カリキュラム関連（スマホ） */
    .curriculum__content {
        grid-template-columns: 1fr;
    }

    .curriculum__level-title {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .curriculum__module-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 5px;
    }

    .curriculum__module-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .curriculum__module-title {
        font-size: 1.1rem;
    }

    .support-highlight {
        padding: 20px;
    }

    /* 会社情報 */
    .company__table th,
    .company__table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .company__table th {
        width: 40%;
    }

    /* 申し込み */
    .apply__line {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* チェックボックスグループのラベルを調整 */
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .checkbox-group label {
        justify-content: flex-start;
        padding: 10px;
        background-color: var(--color-background-alt);
        border-radius: var(--border-radius-sm);
        border: 1px solid var(--color-border);
    }

    .note__list {
        grid-template-columns: repeat(2, minmax(0 ,1fr));
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 1.7rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .stats__number {
        font-size: 2.5rem;
    }

    .problems__title {
        font-size: 1.1rem;
    }

    .btn--large {
        padding: 14px 24px;
        font-size: 1rem;
    }

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

    /* .note__title {
        font-size: 1.1rem;
    } */
    .note__list {
        grid-template-columns: 1fr;
    }

    .spNone {
        display: none;
    }
}