/* ===========================
   リセット & ベーススタイル
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #06b6d4;
    --secondary-color: #4b5563;
    --accent-color: #22d3ee;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #d1d5db;
    --bg-dark: #2d3748;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

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

/* ===========================
   ナビゲーション
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-third {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===========================
   ヒーローセクション
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            135deg,
            rgba(220, 38, 38, 0.05) 0%,
            transparent 50%,
            rgba(220, 38, 38, 0.05) 100%
        );
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 10px;
    display: block;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-title-sub {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 8px;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin: 2rem 0 1rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0.8;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.6;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll span {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: scrollAnimation 2s infinite;
}

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

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0;
        height: 10px;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
}

/* ===========================
   セクション共通スタイル
   =========================== */
.section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section:nth-child(even) {
    background: #9ca3af;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

/* ===========================
   チーム概要
   =========================== */
.overview {
    background: var(--bg-light);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--text-dark);
}

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

.overview-meaning {
    margin-top: 3rem;
}

.overview-meaning h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.meaning-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meaning-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.meaning-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
}

.meaning-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.meaning-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-box {
    background-size: cover;
    background-position: center;
    padding: 3rem;
    border-radius: 20px;
    text-align: left;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 100%);
}

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

.visual-content h4 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.visual-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   チーム理念
   =========================== */
.philosophy {
    background: var(--bg-dark);
    color: var(--white);
}

.philosophy .section-title {
    color: var(--white);
}

.philosophy .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.philosophy-main {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: var(--primary-color);
}

.philosophy-stages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stage {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stage:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.5);
}

.stage-highlight {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.05));
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.stage-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stage p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.stage-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.9;
}

/* ===========================
   T.H.I.R.D. 行動指針
   =========================== */
.third-values {
    background: var(--bg-light);
}

.values-intro {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.value-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.value-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.value-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-color);
}

.value-card:hover .value-image {
    filter: brightness(1.1);
}

.value-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin: -2rem 0 1rem 2rem;
    opacity: 0.15;
    position: relative;
}

.value-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 2rem 0.5rem 2rem;
    color: var(--text-dark);
}

.value-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 2rem 1rem 2rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding: 0 2rem 2rem 2rem;
}

/* ===========================
   3ポイントの考え方
   =========================== */
.three-point {
    background: linear-gradient(135deg, var(--primary-color), #0891b2);
    color: var(--white);
    padding: 4rem 0;
}

.three-point-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.three-point-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.three-point-description {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.three-point-criteria {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.three-point-criteria h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.three-point-criteria ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.three-point-criteria li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.three-point-criteria li::before {
    content: '✓';
    margin-right: 0.8rem;
    font-weight: 900;
}

/* ===========================
   ギャラリー
   =========================== */
.gallery {
    background: var(--bg-dark);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.gallery .section-number {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 400px;
}

.gallery-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===========================
   求める選手像
   =========================== */
.players {
    background: #9ca3af;
}

.players-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.players-headline {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.players-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.players-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.players-list li div strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.players-list li div p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.players-quote {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--primary-color);
}

.players-quote p {
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 500;
    margin: 0;
}

/* ===========================
   練習方針
   =========================== */
.practice {
    background: var(--bg-light);
}

.practice-hero {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
}

.practice-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.practice-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.practice-motto {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
}

.practice-motto h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.practice-schedule {
    margin-bottom: 3rem;
}

.practice-schedule h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border-top: 5px solid var(--primary-color);
}

.schedule-card h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.time-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
    letter-spacing: 2px;
}

.schedule-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.purpose-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.purpose-box p {
    margin: 0 0 1rem 0;
    line-height: 1.8;
}

.purpose-box p:last-child {
    margin-bottom: 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.practice-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.practice-card h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.practice-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.body-care {
    background: var(--bg-dark);
    padding: 4rem;
    border-radius: 30px;
    color: var(--white);
}

.body-care h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
}

.body-care-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.body-care-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.care-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.care-item:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
}

.care-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.care-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.care-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===========================
   成長ステージ
   =========================== */
.stages {
    background: #9ca3af;
}

.stages-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.stage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.stage-header {
    margin-bottom: 1.5rem;
}

.stage-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.stage-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.stage-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stage-card li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.stage-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.stages-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* ===========================
   受け入れ方針
   =========================== */
.admission {
    background: var(--bg-light);
}

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

.admission-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.admission-criteria {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.admission-criteria li {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
}

.admission-note {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* ===========================
   THIRDの約束
   =========================== */
.promise {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    color: var(--white);
    padding: 5rem 0;
}

.promise-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.promise-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.promise-item:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.promise-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.promise-item p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
}

/* ===========================
   保護者の方へ
   =========================== */
.parents {
    background: #9ca3af;
}

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

.parents-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.parents-content > p {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.parents-support {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.parents-support h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.parents-support ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.parents-support li {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
    color: var(--text-dark);
}

/* ===========================
   お問い合わせ
   =========================== */
.contact {
    background: var(--bg-light);
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   フッター
   =========================== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-third {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links h4,
.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===========================
   レスポンシブデザイン
   =========================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .overview-content,
    .players-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-stages {
        flex-direction: column;
    }

    .stage-arrow {
        transform: rotate(90deg);
    }

    .stage-highlight {
        transform: scale(1);
    }

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

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

    .gallery-large {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-item {
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }

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

    .hero-title-main {
        font-size: 4rem;
    }

    .practice-grid,
    .stages-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .body-care {
        padding: 2rem;
    }

    .practice-hero {
        height: 300px;
    }

    .practice-motto {
        padding: 2rem;
    }

    .practice-motto h3 {
        font-size: 1.8rem;
    }

    .visual-box {
        min-height: 300px;
        padding: 2rem;
    }

    .visual-content h4 {
        font-size: 1.5rem;
    }
}
