@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Noto+Sans+JP:wght@300;400;700&family=Oswald:wght@400;600;700&family=Noto+Serif+JP:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

/* --- 基本設定 (Variables & Reset) --- */
:root {
    --text-color: #333333;
    --text-light: #666666;
    --accent-color: #FF6B9D; /* 明るいピンク */
    --accent-hover: #FF4081;
    --sub-accent: #FFB74D; /* オレンジ */
    --bg-color: #ffffff;
    --bg-gray: #f9f9f9;
    --font-en: "Montserrat", sans-serif;
    --font-jp: "Noto Sans JP", sans-serif;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-jp);
    color: var(--text-color);
    line-height: 2.0;
    letter-spacing: 0.05em;
    background-color: var(--bg-color);
    padding-top: var(--header-height);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
ul { list-style: none; }

/* --- タイポグラフィ --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-en);
    line-height: 1.4;
}

/* --- レイアウト共通 --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

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

/* --- 見出しデザイン（親しみやすく） --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .jp {
    display: block;
    font-family: var(--font-jp);
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.section-title .en {
    display: block;
    font-family: var(--font-en);
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* --- ボタン --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #000;
    color: #fff;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-align: center;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    opacity: 1;
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}
.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

/* --- ヘッダー --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header .container {
    max-width: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #000;
    flex-shrink: 0;
}
.logo img {
    height: 35px;
    width: auto;
    margin-right: 8px;
}
@media (max-width: 1199px) {
    .logo {
        font-size: 14px;
    }
    .logo img {
        height: 30px;
        margin-right: 6px;
    }
}

.nav-menu {
    display: none;
}
@media (min-width: 1200px) {
    .nav-menu {
        display: flex;
        gap: 25px;
        align-items: center;
    }
    .nav-link {
        font-family: var(--font-jp);
        font-size: 14px;
        font-weight: 500;
        color: #333;
        position: relative;
        white-space: nowrap;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: 0.3s;
    }
    .nav-link:hover::after {
        width: 100%;
    }
}

.header-cv-btn {
    display: none;
}
@media (min-width: 1200px) {
    .header-cv-btn {
        display: inline-block;
        padding: 10px 20px;
        font-size: 12px;
        background: var(--accent-color);
        color: #fff;
        font-weight: 600;
        border-radius: 20px;
        white-space: nowrap;
        margin-left: 10px;
    }
}

.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
    margin: -10px;
}
@media (min-width: 1200px) {
    .hamburger { display: none; }
}

/* --- Hero Area (Swiper) --- */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .swiper-slide.swiper-slide-active .swiper-img img,
.hero-swiper .swiper-slide.swiper-slide-duplicate-active .swiper-img img,
.hero-swiper .swiper-slide.swiper-slide-prev .swiper-img img {
    animation: scale 8s linear 0s normal both;
    transform-origin: left bottom;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 60px 0 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
.hero-text-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left;
}
.hero-title-jp {
    font-family: "Noto Serif JP", "Noto Sans JP", serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.08em;
    text-transform: none;
}
.hero-sub-title {
    font-family: "Noto Serif JP", "Noto Sans JP", serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 0.1em;
    text-transform: none;
}
.hero-sub {
    font-family: "Oswald", "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 0 60px;
    }
    .hero-text-wrapper {
        padding: 0 20px;
    }
    .hero-title-jp {
        font-size: 36px;
        line-height: 1.4;
        letter-spacing: 0.06em;
    }
    .hero-sub-title {
        font-size: 22px;
        letter-spacing: 0.08em;
    }
    .hero-sub {
        font-size: 14px;
        letter-spacing: 0.08em;
    }
}

/* --- Mission / Concept --- */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}
.promise-item {
    text-align: center;
}
.promise-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}
.promise-title {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.promise-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 2;
}

/* --- Menu (Card Style) --- */
.menu-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
@media (max-width: 768px) {
    .menu-container { grid-template-columns: 1fr; }
}
.menu-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.menu-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-bg {
    transform: scale(1.1);
}
.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
    transition: background 0.3s;
}
.menu-card:hover .menu-card-overlay {
    background: linear-gradient(to top, rgba(233, 30, 99, 0.8), rgba(0,0,0,0.1));
}
.menu-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
}
.menu-card-title {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.menu-card-desc {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* --- Trainer Section --- */
.trainer-feature {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}
.trainer-img {
    flex: 1;
    min-width: 300px;
}
.trainer-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.trainer-text {
    flex: 1;
    min-width: 300px;
}
.trainer-role {
    font-family: var(--font-en);
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.trainer-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}
.trainer-name span {
    font-size: 16px;
    margin-left: 15px;
    font-weight: 400;
}
.trainer-message {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 30px;
}
.quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    font-style: italic;
    margin-bottom: 30px;
    color: #555;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Voice --- */
.voice-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.voice-icon {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    margin-right: 15px;
}
.voice-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* --- Access --- */
.access-wrapper {
    position: relative;
    height: 500px;
    background: #ddd;
}
.access-map {
    width: 100%;
    height: 100%;
    border: 0;
}
.access-info-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: #fff;
    padding: 40px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .access-info-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: -50px;
    }
}

/* --- Footer --- */
.footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 100px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}
.footer-title {
    font-family: var(--font-en);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-list li { margin-bottom: 12px; }
.footer-list a { color: #fff; transition: 0.3s; }
.footer-list a:hover { opacity: 0.7; }

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 12px;
    color: #fff;
    font-family: var(--font-en);
}

/* --- Mobile Fixed CTA --- */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
@media (min-width: 900px) {
    .fixed-cta { display: none; }
}
.fixed-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
}
.fixed-btn-call {
    background: #fff;
    color: #333;
    border-top: 1px solid #eee;
}
.fixed-btn-reserve {
    background: var(--accent-color);
    color: #fff;
}
.fixed-btn-sub {
    font-size: 10px;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 3px;
}

/* --- Mobile Menu --- */
.nav-menu-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
#nav-input { display: none; }
#nav-input:checked ~ .nav-menu-mobile { transform: translateX(0); }
#nav-input:checked ~ .nav-overlay { display: block; }
.nav-mobile-link {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
    backdrop-filter: blur(2px);
}

/* --- 新しいコンポーネント --- */

/* 3つの特徴 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}
.feature-item {
    padding: 40px 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
}
.feature-number {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 107, 157, 0.25);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}
.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
    white-space: nowrap;
    text-align: center;
}
.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}
.feature-item p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 15px;
}
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .feature-item {
        padding: 30px 25px;
    }
    .feature-number {
        font-size: 48px;
    }
    .feature-item h3 {
        font-size: 20px;
    }
}

/* レッスンメニュー */
.lesson-list {
    max-width: 1000px;
    margin: 0 auto;
}
.lesson-item {
    display: block;
    margin-bottom: 60px;
    text-decoration: none;
    color: inherit;
}
.lesson-item:last-child {
    margin-bottom: 0;
}
.lesson-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lesson-item:hover .lesson-item-content {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.lesson-item-reverse .lesson-item-content {
    grid-template-columns: 1fr 1fr;
}
.lesson-item-reverse .lesson-item-img {
    order: 1;
}
.lesson-item-reverse .lesson-item-text {
    order: 2;
}
.lesson-item-text {
    padding: 40px;
}
.lesson-item-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}
.lesson-item-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}
.lesson-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lesson-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: 0;
}
.lesson-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}
.lesson-btn > span:first-child {
    position: relative;
    z-index: 1;
}
.lesson-item:hover .lesson-btn {
    color: #fff;
    border-color: var(--accent-color);
}
.lesson-item:hover .lesson-btn::before {
    left: 0;
}
.lesson-item:hover .lesson-btn-arrow {
    transform: translateX(5px);
}
.lesson-item-img {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}
.lesson-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 200 / 153;
}
.lesson-item:hover .lesson-item-img img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .lesson-item-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .lesson-item-reverse .lesson-item-img,
    .lesson-item-reverse .lesson-item-text {
        order: unset;
    }
    .lesson-item-img {
        min-height: 250px;
    }
    .lesson-item-text {
        padding: 30px 25px;
    }
    .lesson-item-text h3 {
        font-size: 20px;
    }
    .lesson-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* お知らせ（シンプル版） */
.news-simple {
    max-width: 800px;
    margin: 0 auto;
}
.news-item-simple {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}
.news-date {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    min-width: 100px;
}
.news-tag {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}
.news-tag.info { background: #666; }
.news-tag.campaign { background: var(--accent-color); }
.news-tag.schedule { background: var(--sub-accent); }
.news-item-simple a {
    flex: 1;
    font-size: 15px;
    color: #333;
    text-decoration: none;
}
.news-item-simple a:hover {
    color: var(--accent-color);
}

/* アクセス（シンプル版） */
.access-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .access-simple { grid-template-columns: 1fr; }
}
.access-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.access-detail p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.access-detail a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent));
    color: #fff;
}
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn {
    min-width: 200px;
}
.cta-buttons .btn-outline {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}
.cta-buttons .btn-outline:hover {
    background: #fff;
    color: var(--accent-color);
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent));
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}
.page-title h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-title span {
    opacity: 0.8;
    font-size: 14px;
}

/* 初めての方へ専用スタイル */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}
.recommend-item {
    padding: 40px 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
}
.recommend-number {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 107, 157, 0.25);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-align: center;
}
.recommend-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
    white-space: nowrap;
    text-align: center;
}
.recommend-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}
.recommend-item p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 15px;
}
@media (max-width: 992px) {
    .recommend-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .recommend-item {
        padding: 30px 25px;
    }
    .recommend-number {
        font-size: 48px;
    }
    .recommend-item h3 {
        font-size: 20px;
    }
}

/* 体験レッスンの流れ */
.flow-container {
    max-width: 600px;
    margin: 0 auto;
}
.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: var(--accent-color);
    opacity: 0.3;
}
.flow-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}
.flow-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.flow-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* 持ち物 */
.bring-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.bring-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.bring-list {
    list-style: none;
    padding: 0;
}
.bring-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
}
.bring-list li:last-child {
    border-bottom: none;
}

/* FAQ（シンプル版） */
.faq-item-simple {
    margin-bottom: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.faq-item-simple h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}
.faq-item-simple p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

/* レッスン詳細ページ専用スタイル */
.lesson-detail-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}
.lesson-detail-section:last-child {
    border-bottom: none;
}
.lesson-detail-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.lesson-detail-header.reverse {
    grid-template-columns: 1.5fr 1fr;
}
.lesson-detail-header.reverse .lesson-detail-img {
    order: 2;
}
.lesson-detail-header.reverse .lesson-detail-content {
    order: 1;
}
@media (max-width: 768px) {
    .lesson-detail-header,
    .lesson-detail-header.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lesson-detail-header.reverse .lesson-detail-img,
    .lesson-detail-header.reverse .lesson-detail-content {
        order: unset;
    }
}
.lesson-detail-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}
.lesson-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}
.lesson-subtitle {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.lesson-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}
.lesson-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.feature-tag {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* 料金表（新デザイン） */
.price-table-container {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 12px;
}
.price-table-container h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
.price-table-new {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}
.price-table-new th,
.price-table-new td {
    padding: 20px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.price-table-new th {
    background: #f8f8f8;
    font-weight: 600;
    color: #333;
    width: 30%;
}
.price-table-new tr.recommended th {
    background: var(--accent-color);
    color: #fff;
}
.price-table-new tr.recommended td {
    background: rgba(255, 107, 157, 0.05);
}
.price-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}
.price-unit {
    font-size: 14px;
    color: var(--text-light);
}
.price-note {
    font-size: 12px;
    color: var(--text-light);
}
.recommend-badge {
    background: #fff;
    color: var(--accent-color);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    margin-left: 10px;
}

/* 入会時必要なもの */
.enrollment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.enrollment-item {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.enrollment-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}
.enrollment-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.enrollment-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* トレーナー紹介ページ専用スタイル */
.trainer-profile-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .trainer-profile-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.trainer-photos {
    position: relative;
}
.trainer-main-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.trainer-sub-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.trainer-sub-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}
.trainer-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}
.trainer-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.trainer-name span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}
.trainer-credentials {
    margin-bottom: 30px;
}
.credential-item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}
.credential-label {
    font-size: 14px;
    color: var(--text-light);
    min-width: 80px;
    margin-right: 15px;
}
.credential-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.trainer-message h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.trainer-message blockquote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 0;
    font-style: italic;
}

/* 指導方針 */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.philosophy-item {
    padding: 40px 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    border-left: 4px solid var(--accent-color);
    text-align: left;
}
.philosophy-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}
.philosophy-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}
.philosophy-item p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 15px;
}
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .philosophy-item {
        padding: 30px 25px;
    }
    .philosophy-item h3 {
        font-size: 20px;
    }
}

/* 実績・資格 */
.achievements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.achievement-category h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.achievement-list {
    list-style: none;
    padding: 0;
}
.achievement-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
}
.achievement-list li:last-child {
    border-bottom: none;
}

/* スタッフ紹介 */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.staff-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.staff-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.staff-info {
    padding: 25px;
}
.staff-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}
.staff-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.staff-message {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* 会員様の声ページ専用スタイル */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.voice-card-detailed {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.voice-header-detailed {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.voice-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}
.voice-meta-detailed h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}
.voice-meta-detailed p {
    font-size: 12px;
    color: var(--text-light);
}
.voice-content-detailed h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.voice-content-detailed p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}
.voice-results {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.result-item {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* FAQ詳細版 */
.faq-item-detailed {
    margin-bottom: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.faq-item-detailed h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.faq-item-detailed p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

/* アクセスページ専用スタイル */
.access-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.access-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
}
.access-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.access-info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
}
.access-info-card small {
    font-size: 12px;
    color: var(--text-light);
}
.tel-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

/* スケジュール */
.schedule-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .schedule-container {
        grid-template-columns: 1fr;
    }
}
.schedule-info {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.schedule-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.hours-table {
    margin-bottom: 20px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.day {
    font-weight: 600;
    color: #333;
}
.time {
    color: var(--accent-color);
    font-weight: 600;
}
.schedule-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}
.weekly-schedule h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.schedule-table-detailed {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    font-size: 12px;
}
.schedule-table-detailed th,
.schedule-table-detailed td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.schedule-table-detailed th {
    background: #f8f8f8;
    font-weight: 600;
    color: #333;
}
.kick-class { background: rgba(255, 107, 157, 0.1); color: var(--accent-color); font-weight: 600; }
.rhythm-class { background: rgba(255, 183, 77, 0.1); color: var(--sub-accent); font-weight: 600; }
.free-time { background: rgba(200, 200, 200, 0.1); color: #666; }
.closed { color: #ccc; }
.schedule-legend {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.legend-item {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
}

/* ノリトレングとは */
.about-nori-container {
    max-width: 900px;
    margin: 0 auto;
}
.about-nori-content {
    text-align: center;
}
.about-nori-main {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 40px;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.about-nori-main strong {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 24px;
}
.about-nori-sub {
    font-size: 16px;
    line-height: 2.2;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .about-nori-main {
        font-size: 18px;
    }
    .about-nori-main strong {
        font-size: 20px;
    }
    .about-nori-sub {
        font-size: 15px;
        line-height: 2;
    }
}

/* アクセス方法 */
.access-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.access-method {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.access-method h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.access-steps {
    padding-left: 20px;
    margin-bottom: 20px;
}
.access-steps li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}
.parking-info {
    background: var(--bg-gray);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* 施設紹介 */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.facility-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.facility-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.facility-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 20px 10px;
    color: #333;
}
.facility-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 20px 20px;
}

/* 周辺情報 */
.area-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.area-list {
    list-style: none;
    padding: 0;
}
.area-list li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}
.area-list li:last-child {
    border-bottom: none;
}

/* お問い合わせページ専用スタイル */
.trial-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.trial-info-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
}
.trial-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.trial-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}
.trial-time {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}
.trial-info-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
.trial-info-card small {
    font-size: 12px;
    color: var(--text-light);
}

/* お問い合わせ方法 */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.contact-method {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    text-align: center;
}
.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}
.contact-method h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.tel-link-large {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}
.contact-hours {
    font-size: 14px;
    color: var(--text-light);
    margin: 10px 0;
}
.contact-note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* フォーム */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.form-group {
    margin-bottom: 25px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.required {
    color: var(--accent-color);
    font-weight: 700;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}
.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}
.checkbox-label input {
    margin-right: 8px;
}
.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* 注意事項 */
.notice-list {
    list-style: none;
    padding: 0;
}
.notice-list li {
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}
.notice-list li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}
.notice-list li:last-child {
    border-bottom: none;
}

/* お知らせページ専用スタイル */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}
.news-article {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.news-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}
.news-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #333;
}
.news-content ul {
    margin: 15px 0;
    padding-left: 20px;
}
.news-content li {
    margin-bottom: 5px;
}
.campaign-box {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}
.campaign-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.price-highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.pagination-current {
    background: var(--accent-color);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}
.pagination-link {
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}
.pagination-link:hover {
    background: var(--accent-color);
    color: #fff;
    opacity: 1;
}

