/*
Theme Name: B THREE DANCE STUDIO
Theme URI: https://example.com
Author: B THREE
Author URI: https://example.com
Description: ダンススタジオ向けWordPressテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bthree
*/

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
    background: #F5F39D;
    font-size: 16px;
}

/* アニメーション定義 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.3), 0 0 40px rgba(78, 205, 196, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.5), 0 0 80px rgba(78, 205, 196, 0.4);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}


@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}


@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* パンくずリスト */

/* ヘッダー */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFE66D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 5s ease infinite;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.logo-line1,
.logo-line2 {
    display: inline;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFE66D);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.logo:hover::after {
    transform: scaleX(1);
}

/* ハンバーガーメニュー */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #F5F39D;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 700px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 120px 0 40px 0;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    z-index: 999;
    border-left: 1px solid rgba(255, 107, 107, 0.2);
}

.nav.active {
    right: 0;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.nav-grid a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    padding: 1.5rem 2rem 1.5rem 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 1.6;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.nav-grid a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF6B6B 0%, #FF8E53 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
}

.nav-grid a::after {
    content: '›';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FF6B6B;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-grid a:hover {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.15) 0%, transparent 100%);
    color: #FFE66D;
    padding-left: 3.5rem;
}

.nav-grid a:hover::before {
    transform: scaleY(1);
}

.nav-grid a:hover::after {
    opacity: 1;
    left: 1.5rem;
}

.nav-grid a.active {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.1) 0%, transparent 100%);
}

.nav-grid a.active::before {
    transform: scaleY(1);
}

.header-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    position: relative;
}

.header-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B6B, transparent);
}

.header-social-link {
    color: #ffffff;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.header-social-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.header-social-line {
    background: #06C755;
}

.header-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-social-link:hover::before {
    opacity: 1;
}

.header-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.social-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%) !important;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    padding: 1.4rem 3rem !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
    display: block !important;
    text-align: center;
    margin: 2rem 2.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button::after {
    content: '→';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover::after {
    opacity: 1;
    right: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.7);
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* メインビジュアル */
.hero {
    width: 100%;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    background: #F5F39D;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.15) 40px,
        rgba(255, 255, 255, 0.15) 80px
    );
    animation: stripeSlide 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes stripeSlide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(113.14px, 113.14px);
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide.slide-out-left {
    opacity: 0;
    visibility: hidden;
}

.hero-slide.slide-out-right {
    opacity: 0;
    visibility: hidden;
}

.hero-slide-mobile {
    display: none;
}

@media (min-width: 769px) {
    .hero-slide-mobile {
        display: none !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-overlay {
        background: transparent;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 100%;
    width: 100%;
    padding: 0 80px 0 8rem;
    margin-top: -2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #333333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: transparent;
    letter-spacing: -3px;
    -webkit-text-stroke: 5px #000000;
    text-stroke: 5px #000000;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.5);
}

.scrolling-text-container {
    position: fixed;
    right: 80px;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 100;
    pointer-events: none;
    transform: rotate(-90deg);
    transform-origin: top right;
}

.scrolling-text {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    margin: 0;
    display: block;
}

.scrolling-text:nth-child(2) {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: stretch;
    margin-top: 7rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.hero-button.primary {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: #333333;
    box-shadow: 0 15px 40px rgba(244, 242, 126, 0.4);
}

.hero-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(244, 242, 126, 0.6);
}

.hero-button.secondary {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.9);
    color: white;
}

.hero-button.secondary:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.button-arrow {
    transition: transform 0.3s;
}

.hero-button:hover .button-arrow {
    transform: translateX(5px);
}

.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 10;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #F4F27E;
    opacity: 0;
    animation: ripple 1s ease-out infinite;
}

.dot.active {
    background: #F4F27E;
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

.dot.active::before {
    animation: none;
}

.dot:hover {
    background: rgba(255, 107, 107, 0.7);
    transform: scale(1.2);
}


/* セクション共通 */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.sp-br {
    display: none;
}

.title-badge {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.instructors .title-badge {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #F4F27E 0%, #FFB347 50%, #F4F27E 100%);
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(244, 242, 126, 0.5);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, #F4F27E 0%, #FFB347 50%, #F4F27E 100%);
    border-radius: 3px;
    opacity: 0.15;
}

/* 特徴セクション */
.features {
    padding: 60px 0 0;
    background: #F5F39D;
    position: relative;
}

.features .section-title {
    margin-bottom: 60px;
    color: #000000;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-item {
    width: 100%;
}

.features-item-inner {
    position: relative;
    width: 100%;
    min-height: 680px;
    background: transparent;
}

.features-num-box {
    position: absolute;
    top: 80px;
    left: 10%;
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.features-num {
    display: block;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial', sans-serif;
}

.features-num-txt {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 0;
    color: #000000;
    font-family: 'Arial', sans-serif;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
}

.features-img-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    max-height: 630px;
    overflow: hidden;
}

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

.features-txt-box {
    position: absolute;
    bottom: 80px;
    left: 5%;
    max-width: 40%;
    z-index: 10;
    background: transparent;
    padding: 30px;
    border-radius: 15px;
}

/* 02の部分は左右反転 */
.features-item:nth-child(2) .features-img-box {
    left: 0;
    right: auto;
}

.features-item:nth-child(2) .features-txt-box {
    left: auto;
    right: 5%;
    max-width: 40%;
}

.features-item:nth-child(2) .features-num-box {
    left: auto;
    right: 10%;
}

.features-item-ttl {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #000000;
}

.features-item-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

/* クラス紹介 */
.classes {
    padding: 60px 20px 0;
    background: #F5F39D;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.classes .section-title {
    color: #333333;
    margin-bottom: 3rem;
}

.classes-loop {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    width: 100%;
}

.classes-loop__target {
    display: flex;
    gap: 2rem;
    animation: loop-scroll 60s linear infinite;
    will-change: transform;
}

.classes-loop:hover .classes-loop__target {
    animation-play-state: paused;
}

@keyframes loop-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.class-card {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #999999;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    width: 450px;
    min-width: 450px;
    max-width: 450px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: #999999;
}

.class-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

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

.class-content {
    padding: 1.5rem;
}

/* クラス紹介ページ専用スタイル */
.classes-page-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.classes-page .class-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    max-height: 450px;
    margin: 0 auto;
    transition: none !important;
    transform: none !important;
}

.classes-page .class-card:hover {
    transform: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
}

.classes-page .class-card-reverse {
    flex-direction: row-reverse;
}

.classes-page .class-image {
    width: 52%;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 25px 0 0 25px;
    align-self: stretch;
}

.classes-page .class-card-reverse .class-image {
    border-radius: 0 25px 25px 0;
}

.classes-page .class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.classes-page .class-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.class-pricing-link {
    display: inline-block;
    align-self: flex-end;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: #333333;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.class-pricing-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.class-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.class-card h3 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: #333333;
}

.class-genre {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.class-description {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.class-info {
    list-style: none;
    border-top: 2px solid #333333;
    padding-top: 1.2rem;
    margin-top: 1.5rem;
}

.class-info li {
    padding: 0.6rem 0;
    color: #333333;
    display: flex;
    align-items: center;
}

.class-info li::before {
    content: '✓';
    color: #4ECDC4;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* スケジュール */
.schedule {
    padding: 50px 20px;
    background: #F5F39D;
}

.schedule .section-title {
    color: #333333;
}

.schedule-instagram {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-image {
    flex: 1.5;
    min-width: 0;
}

.schedule-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.schedule-content {
    flex: 1;
    text-align: center;
}

.schedule-text {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 40px rgba(131, 58, 180, 0.4);
}

.instagram-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(131, 58, 180, 0.6);
}

.instagram-button svg {
    width: 24px;
    height: 24px;
}

/* 講師紹介 */
.instructors {
    padding: 0;
    background: transparent;
}

.instructors-hero {
    position: relative;
    height: 500px;
    background-image: url('https://total-boost.com/S-BLINEDANCESTUDIO/wp-content/uploads/2025/12/19.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructors-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.instructors-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.instructors-content .section-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.instructors-description {
    font-size: 1.3rem;
    line-height: 2;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.instructors-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.instructors-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
}

.instructors-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 縦並びインストラクターカード */
.instructor-card-vertical {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.instructor-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(244, 242, 126, 0.2);
    border-color: rgba(244, 242, 126, 0.3);
}

.instructor-photo-vertical {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #333;
}

.instructor-photo-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    gap: 1rem;
}

.no-image-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.no-image-text {
    color: #333333;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.instructor-info-vertical {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.instructor-header-vertical {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.instructor-name-vertical {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.instructor-badge-vertical {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.instructor-genre-vertical {
    color: #4ECDC4;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.instructor-bio-vertical {
    color: #333333;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.instructor-achievements-vertical {
    padding-top: 1.5rem;
    border-top: 2px solid #333;
}

.instructor-achievements-vertical h4 {
    color: #FFB347;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.instructor-achievements-vertical ul {
    color: #444444;
    line-height: 1.8;
    font-size: 0.95rem;
    list-style: none;
    padding: 0;
}

.instructor-achievements-vertical ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.instructor-achievements-vertical ul li:before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #FFB347;
}

.instructor-message-vertical {
    padding-top: 1.5rem;
    border-top: 2px solid #333;
}

.instructor-message-vertical h4 {
    color: #4ECDC4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.instructor-message-vertical p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* インストラクターページ - 講師陣の強み */
.instructor-strength-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-strength-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.instructor-strength-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instructor-strength-nav-btn.active {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .instructor-strength-features {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
        padding: 0 calc((100% - 90%) / 2) !important;
    }

    .instructor-strength-features::-webkit-scrollbar {
        display: none !important;
    }

    .instructor-strength-features > div {
        flex: 0 0 90% !important;
        scroll-snap-align: center !important;
        min-width: 90% !important;
        padding: 2rem 1.5rem !important;
    }

    .instructor-strength-features > div h3 {
        font-size: 1.1rem !important;
    }
}

.instructor-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    clip-path: ellipse(100% 100% at 50% 0%);
    transition: all 0.5s;
}

.instructor-card:hover::before {
    height: 170px;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
}

.instructor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(244, 242, 126, 0.2);
    background: #F5F39D;
    border-color: rgba(244, 242, 126, 0.3);
}

.instructor-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.instructor-photo {
    width: 180px;
    height: 180px;
    background: white;
    border: 5px solid white;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s;
    overflow: hidden;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-photo {
    transform: scale(1.1) rotateZ(5deg);
}

.instructor-card:hover .instructor-photo img {
    transform: scale(1.15);
}

.instructor-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #333333;
    font-weight: 900;
}

.instructor-genre {
    background: linear-gradient(90deg, #F4F27E, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.instructor-bio {
    color: #333333;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.instructor-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.achievement {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s;
}

.achievement:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateX(5px);
}

/* ギャラリー */
.gallery {
    padding: 60px 20px;
    background: transparent;
}

.gallery .section-title {
    color: #333333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #F4F27E, #FFB347);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FF8E53, #4ECDC4);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    min-width: 380px;
    max-width: 450px;
    height: auto;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
    .gallery-item:hover {
        box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
    }

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

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-overlay p {
    color: #333333;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0;
}


/* 生徒の声 */
.voices {
    padding: 60px 20px;
    background: #F5F39D;
}

.voices .section-title {
    color: #333333;
}

@media (min-width: 769px) {
    .voices-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .voices-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

.voice-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.voice-card::after {
    content: '詳しく見る →';
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    color: #FFB347;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-card:hover::after {
    opacity: 1;
}

.voice-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    background: linear-gradient(135deg, #F4F27E, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    opacity: 0.15;
}

.voice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.15);
    background: #F5F39D;
    border-color: rgba(255, 107, 107, 0.3);
}

.voice-rating {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.voice-text {
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.voice-author {
    background: linear-gradient(90deg, #F4F27E, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-align: right;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 60px 20px;
    background: #F5F39D;
}

.faq .section-title {
    color: #333333;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.faq-item:hover {
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F4F27E, #FFB347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFB347;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(255, 107, 107, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2rem 7.5rem;
}

.faq-answer p {
    color: #333333;
    line-height: 1.9;
    margin: 0;
}

/* アクセス */
.access {
    padding: 60px 20px;
    background: #F5F39D;
}

.access .section-title {
    color: #333333;
}

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

.access-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
    display: flex;
    gap: 0.5rem;
}

.access-title-line1,
.access-title-line2 {
    display: inline;
    color: #000;
}

.access-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.access-info p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #333333;
}

.access-map {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.access-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.7), rgba(78, 205, 196, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-overlay span {
    font-size: 4rem;
}

.map-overlay p {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.access-map:hover img {
    transform: scale(1.1);
}

.access-map:hover .map-overlay {
    opacity: 1;
}

.access-map:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

/* お問い合わせ */
.contact {
    padding: 60px 20px;
    background: #F5F39D;
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: #333333;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05), transparent);
    border-radius: 50%;
}

.contact-description {
    text-align: center;
    color: #333333;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: bold;
    color: #333333;
    font-size: 1.05rem;
}

.required {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-left: 0.3rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid #333333;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
}

.form-group select {
    font-size: 20px;
}

.form-group select option {
    font-size: 20px !important;
    padding: 1rem;
    background: #ffffff;
    color: #333333;
    line-height: 2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
    background: #ffffff;
    color: #333333;
}

/* プレースホルダーのスタイル */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #999999;
    opacity: 1;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #999999;
    opacity: 1;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.radio-option {
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #333333;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
    color: #333333;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 107, 107, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.radio-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF6B6B;
}

.radio-option:has(input[type="radio"]:checked) {
    background: rgba(255, 107, 107, 0.15);
    border-color: #FF6B6B;
    color: #FFB347;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

/* チェックボックスグループ */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.checkbox-option {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    background: transparent;
    border: 1px solid #333333;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    color: #333333;
}

.checkbox-option:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 107, 107, 0.5);
    transform: translateX(3px);
}

.checkbox-option input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF6B6B;
    flex-shrink: 0;
}

.checkbox-option:has(input[type="checkbox"]:checked) {
    background: rgba(255, 107, 107, 0.1);
    border-color: #FF6B6B;
    color: #FFB347;
    font-weight: 600;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    background-size: 200% 200%;
    color: #333333;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* 固定CTAボタン */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-top: 2px solid rgba(255, 107, 107, 0.2);
    padding: 0;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

@media (max-width: 1024px) {
    .fixed-cta {
        display: block;
    }
}

.fixed-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.fixed-cta-btn {
    padding: 0.5rem 0.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.fixed-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.fixed-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.fixed-cta-btn:hover {
    transform: translateY(-5px);
}

.fixed-cta-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(131, 58, 180, 0.3);
}

.fixed-cta-btn.instagram:hover {
    box-shadow: 0 10px 35px rgba(131, 58, 180, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.fixed-cta-btn.line {
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(6, 199, 85, 0.3);
}

.fixed-cta-btn.line:hover {
    box-shadow: 0 10px 35px rgba(6, 199, 85, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.fixed-cta-btn.contact {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.fixed-cta-btn.contact:hover {
    box-shadow: 0 10px 35px rgba(255, 107, 107, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.fixed-cta-icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.fixed-cta-text {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* フッター */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    color: white;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 12rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.footer-logo a {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFE66D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    animation: gradientShift 5s ease infinite;
    display: inline-block;
}

.footer-logo a:hover {
    background-size: 150% 150%;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1rem 8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #FF6B6B;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.footer-social-link {
    color: #ffffff;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.footer-social-line {
    background: #06C755;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-social-link svg {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.footer-cta-button {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%) !important;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #ffffff !important;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 30px rgba(244, 242, 126, 0.5);
    position: relative;
    overflow: hidden;
}

.footer-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-cta-button:hover::before {
    opacity: 1;
}

.footer-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 242, 126, 0.6);
}

.footer-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-info p {
    margin: 0.25rem 0;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #FF6B6B;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    padding-top: 2.5rem;
    margin: 2rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 900px;
}

/* スワイプ可能なグリッド(モバイル専用) */
@media (max-width: 1024px) {
    .swipeable {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .swipeable::-webkit-scrollbar {
        display: none;
    }

    .swipeable > * {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .instructors-grid.swipeable > * {
        flex: 0 0 90%;
    }

    .gallery-grid.swipeable {
        flex-direction: row;
    }

    .gallery-grid.swipeable > * {
        flex: 0 0 85%;
        min-width: 320px;
        max-width: 380px;
        height: auto;
    }

    .gallery-item {
        min-width: 320px;
        max-width: 380px;
        height: auto;
    }

    .voices-grid.swipeable > * {
        flex: 0 0 85%;
    }

    .classes-grid.swipeable > * {
        flex: 0 0 85%;
    }

    .classes-grid {
        justify-content: center;
    }
}

/* レスポンシブ - 中間サイズ用 */
@media (max-width: 1400px) and (min-width: 769px) {
    .features-num-box {
        top: 30px;
        left: 5%;
    }

    .features-num {
        font-size: 100px;
    }

    .features-num-txt {
        font-size: 18px;
        letter-spacing: 1px;
        max-width: 200px;
    }

    .features-txt-box {
        bottom: 30px;
        left: 5%;
        max-width: 55%;
    }

    .features-item:nth-child(2) .features-num-box {
        left: auto;
        right: 5%;
    }

    .features-item:nth-child(2) .features-txt-box {
        left: auto;
        right: 5%;
        max-width: 55%;
    }
}

/* レスポンシブ */
@media (max-width: 1315px) {
    .header {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1.2;
    }

    .logo-line1,
    .logo-line2 {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 80px 50px 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        text-align: left;
    }

    .header-social {
        display: none;
    }

    .nav .header-social {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
        align-items: center;
    }

    .nav .header-social-link {
        width: 150px;
        height: 50px;
    }

    .nav .header-social-link svg {
        width: 28px;
        height: 28px;
    }

    .nav a.cta-button {
        margin-top: 20px;
        padding: 1rem;
        text-align: center;
        border: 2px solid;
        border-radius: 8px;
    }
}

@media (max-width: 1024px) {

    .hero {
        height: 65vh;
        margin-top: 110px;
    }

    .hero-slide-pc {
        display: none !important;
    }

    .hero-slide-mobile {
        display: block !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: -2px;
        padding-left: 0;
        text-align: left;
        line-height: 0.9;
        -webkit-text-stroke: 2px #000000 !important;
        text-stroke: 2px #000000 !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
    }

    .hero-title span:first-of-type {
        padding-left: 2rem !important;
    }

    .hero-title span:last-of-type {
        padding-left: 4rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        position: absolute;
        top: 40%;
        left: 0;
        right: 0;
        padding-left: 10px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-buttons {
        position: static;
        margin-top: 2rem;
        right: 20px;
        flex-direction: row;
        gap: 0.8rem;
        z-index: 10;
    }

    .hero-buttons {
        display: none;
    }

    .hero-button {
        display: none;
    }

    .slider-controls {
        bottom: 140px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
    }

    .slider-dots {
        display: none;
    }

    .instructors-description {
        font-size: 1rem !important;
    }

    .features-num-box {
        top: 40px;
        left: 5%;
    }

    .features-num {
        font-size: 80px;
    }

    .features-num-txt {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .features-txt-box {
        bottom: 40px;
        max-width: 50%;
        padding: 20px;
    }

    .features-item:nth-child(2) .features-num-box {
        right: 5%;
    }

    .features-item:nth-child(2) .features-txt-box {
        max-width: 50%;
    }

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

    .title-badge {
        font-size: 0.75rem;
    }

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

    .features .container {
        padding-left: 0;
        padding-right: 0;
    }

    .features-item-inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .features-num-box {
        position: relative;
        top: auto;
        left: auto;
        padding: 20px 5%;
        order: 1;
    }

    .features-num {
        font-size: 80px;
    }

    .features-num-txt {
        font-size: 16px;
        letter-spacing: 1px;
        max-width: 180px;
    }

    .features-img-box {
        position: relative;
        width: 100%;
        height: 300px;
        top: auto;
        right: auto;
        left: auto;
        order: 2;
    }

    .features-txt-box {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        max-width: 100%;
        margin: 0;
        padding: 30px 5%;
        background: transparent;
        border-radius: 0;
        order: 3;
    }

    .features-item-ttl {
        font-size: 24px;
        color: #333333;
    }

    .features-item-desc {
        font-size: 14px;
        color: #333333;
    }

    /* 02の部分もモバイルでは通常表示 */
    .features-item:nth-child(2) .features-img-box {
        left: auto;
        right: auto;
        width: 100%;
        position: relative;
    }

    .features-item:nth-child(2) .features-txt-box {
        left: auto;
        right: auto;
        max-width: 100%;
        position: relative;
    }

    .features-item:nth-child(2) .features-num-box {
        left: auto;
        right: auto;
        position: relative;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .access-map {
        height: 400px;
        width: 100%;
    }

    .classes {
        padding: 60px 0;
        margin-bottom: 3rem;
    }

    .voices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .classes-grid.swipeable {
        padding: 2rem 0;
        animation: scroll-loop-mobile 60s linear infinite;
        display: flex;
        gap: 2rem;
    }

    @keyframes scroll-loop-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1660px);
        }
    }

    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instructor-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .contact-description {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .contact .container {
        padding: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .form-group label {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9);
        color: #333333;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        background: #ffffff;
        color: #333333;
    }

    .form-group select option {
        font-size: 16px !important;
        background: #ffffff;
        color: #333333;
    }

    .radio-option {
        padding: 0.9rem 0.8rem;
    }

    .hero-button {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .schedule-table {
        font-size: 0.85rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-table table {
        min-width: 600px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }


    .faq-question {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 4.5rem;
    }

    .faq-list + div {
        padding: 1rem !important;
        margin-top: 2rem !important;
    }

    .faq-list + div p {
        font-size: 0.75rem !important;
        line-height: 1.6 !important;
    }

    .radio-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .radio-option {
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .fixed-cta {
        padding: 0;
    }

    .fixed-cta-container {
        display: grid;
        gap: 0;
    }

    .fixed-cta-btn {
        padding: 0.4rem 0.3rem;
        font-size: 0.75rem;
        border-radius: 0;
        border: none;
    }

    .fixed-cta-icon {
        font-size: 1.1rem;
    }

    .fixed-cta-text {
        font-size: 0.65rem;
    }

    .footer {
        padding: 3rem 0 6rem 0;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }

    .footer-left {
        width: 100%;
    }

    .footer-logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .footer-nav {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 2rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .footer-buttons {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social-link,
    .footer-cta-button {
        width: 100%;
        max-width: 100%;
    }

    .footer-info {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button {
        width: 110px;
        height: 110px;
        font-size: 0.95rem;
    }

    .hero-button span {
        max-width: none;
        white-space: nowrap;
    }

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

    .sp-br {
        display: block;
    }

    .class-card {
        padding: 0;
        margin: 0 auto;
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }

    .instructor-card {
        padding: 1.5rem 1rem;
        margin: 0 auto;
        max-width: 90%;
        height: 460px;
    }

    .instructor-bio {
        font-size: 12px;
    }

    .voice-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 90%;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .voice-card:active {
        transform: scale(0.98);
    }

    .voice-card::after {
        display: none;
    }

    .class-card h3 {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }

    .class-genre {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        padding-left: 0.5rem;
    }

    .class-description {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .class-info {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .class-info li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    .class-badge {
        display: none;
    }

    .class-content {
        padding: 2rem 1.5rem;
    }

    .class-image {
        height: 220px;
    }

    .features-num {
        font-size: 60px;
    }

    .features-num-txt {
        font-size: 14px;
        letter-spacing: 1px;
        max-width: 150px;
    }

    .features-item-ttl {
        font-size: 20px;
    }

    .features-item-desc {
        font-size: 13px;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.7rem;
    }

    .access-map {
        height: 300px;
    }

    .gallery-item {
        min-width: 280px;
        max-width: 320px;
        height: auto;
    }

    .gallery-grid.swipeable > * {
        min-width: 280px;
        max-width: 320px;
        height: auto;
    }
}

@media (min-width: 1400px) {
    .instructors-grid {
        gap: 2.5rem;
    }
}

/* フッターリンクのホバー効果 */
.footer nav a:hover {
    color: #FF6B6B !important;
}

.footer-content {
    text-align: center;
}

/* コラムアーカイブページ */
.column-archive {
    padding: 80px 20px;
    background: transparent;
    min-height: 100vh;
}

.page-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #333333;
}

.column-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.column-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.column-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.column-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
}

.column-thumbnail {
    width: 40%;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.column-thumbnail::before {
    content: '';
    display: block;
    padding-top: 75%; /* 4:3 aspect ratio */
}

.column-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.column-card:hover .column-thumbnail img {
    transform: scale(1.1);
}

.column-content {
    padding: 2rem;
    flex: 1;
}

/* No images placeholder for column */
.no-image-placeholder-column {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.no-image-icon-column {
    font-size: 3rem;
    opacity: 0.3;
}

.no-image-text-column {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 600;
}

.column-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.column-meta time {
    color: #444444;
    font-size: 0.9rem;
}

.column-category {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.column-title {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.column-excerpt {
    color: #333333;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* コラム詳細ページ */
.column-single {
    background: transparent;
}

.column-header {
    padding: 80px 20px 40px;
    background: transparent;
}

.column-meta-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.column-meta-info time {
    color: #444444;
    font-size: 1rem;
}

.column-category-badge {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.column-single-title {
    font-size: 2.5rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.column-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.column-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-body {
    padding: 60px 20px;
}

.column-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
    line-height: 2;
    font-size: 1.1rem;
}

.column-content-wrapper p {
    margin-bottom: 2rem;
}

.column-content-wrapper h2 {
    font-size: 2rem;
    color: #333333;
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.column-content-wrapper h3 {
    font-size: 1.6rem;
    color: #333333;
    margin: 2.5rem 0 1rem;
}

.column-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
}

.column-content-wrapper ul,
.column-content-wrapper ol {
    margin: 2rem 0;
    padding-left: 2rem;
}

.column-content-wrapper li {
    margin-bottom: 1rem;
    color: #333333;
}

.column-navigation {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.nav-previous,
.nav-next {
    flex: 1;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-previous:hover,
.nav-next:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
    transform: translateY(-5px);
}

.nav-label {
    color: #444444;
    font-size: 0.9rem;
}

.nav-title {
    color: #333333;
    font-size: 1.1rem;
    font-weight: bold;
}

.back-to-list-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.back-to-list {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.back-to-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* ページネーション */
.pagination {
    margin-top: 4rem;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0 0.3rem;
    background: rgba(255, 255, 255, 0.5);
    color: #333333;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.pagination a:hover {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    transform: translateY(-3px);
}

.pagination .current {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
}

.no-posts {
    text-align: center;
    color: #444444;
    font-size: 1.2rem;
    padding: 4rem 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .column-single-title {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .column-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .column-archive {
        padding: 60px 15px;
    }
    
    .column-single-title {
        font-size: 1.6rem;
    }
    
    .column-featured-image {
        height: 300px;
    }
    
    .column-content-wrapper {
        font-size: 1rem;
    }
    
    .column-content-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .column-content-wrapper h3 {
        font-size: 1.3rem;
    }
}

/* NEWSアーカイブページ */
.news-archive {
    padding: 80px 20px;
    background: transparent;
    min-height: 100vh;
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.news-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 2rem;
}

.news-thumbnail {
    width: 250px;
    min-width: 250px;
    height: 200px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.news-content {
    padding: 2rem 2rem 2rem 2rem;
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.news-meta time {
    color: #444444;
    font-size: 0.9rem;
}

.news-category {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-title {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.news-excerpt {
    color: #333333;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* NEWS詳細ページ */
.news-single {
    background: transparent;
}

.news-header {
    padding: 80px 20px 40px;
    background: transparent;
}

.news-meta-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.news-meta-info time {
    color: #444444;
    font-size: 1rem;
}

.news-category-badge {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.news-single-title {
    font-size: 2.5rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.news-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 60px 20px;
}

.news-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
    line-height: 2;
    font-size: 1.1rem;
}

.news-content-wrapper p {
    margin-bottom: 2rem;
}

.news-content-wrapper h2 {
    font-size: 2rem;
    color: #333333;
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.news-content-wrapper h3 {
    font-size: 1.6rem;
    color: #333333;
    margin: 2.5rem 0 1rem;
}

.news-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
}

.news-content-wrapper ul,
.news-content-wrapper ol {
    margin: 2rem 0;
    padding-left: 2rem;
}

.news-content-wrapper li {
    margin-bottom: 1rem;
    color: #333333;
}

.news-navigation {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.5);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .news-item-link {
        flex-direction: column;
        gap: 0;
    }
    
    .news-thumbnail {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-single-title {
        font-size: 1.8rem;
    }
    
    .news-content-wrapper {
        font-size: 1rem;
    }
    
    .news-content-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .news-content-wrapper h3 {
        font-size: 1.3rem;
    }
}

/* TOPページ NEWS セクション */
.news-section {
    padding: 60px 0;
    background: #F5F39D;
    width: 100%;
}

.news-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section .section-title {
    color: #333333;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(244, 242, 126, 0.3);
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-card-thumbnail img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 1.8rem;
}

.news-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.news-card-meta time {
    color: #444444;
    font-size: 0.85rem;
}

.news-card-category {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: #333333;
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.news-card-title {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    color: #333333;
    line-height: 1.7;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    text-align: center;
    margin-top: 3rem;
}

.news-more-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #F5F39D;
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #999999;
}

.news-more-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #666666;
    color: #ffffff;
    border-color: #666666;
}

.no-news {
    text-align: center;
    color: #444444;
    font-size: 1.1rem;
    padding: 3rem 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card-title {
        font-size: 1.1rem;
    }
    
    .news-card-thumbnail {
        height: 180px;
    }
}

/* =================================
   COLUMN Section (TOPページ)
   ================================= */

.column-section {
    padding: 60px 0;
    background: #F5F39D;
    width: 100%;
}

.column-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.column-section .section-title {
    color: #333333;
}

.column-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.column-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.column-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.column-card-content {
    padding: 1.8rem;
}

.column-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.column-card-meta time {
    color: #444444;
    font-size: 0.85rem;
}

.column-card-category {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.column-card-title {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-card-excerpt {
    color: #333333;
    line-height: 1.7;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-more {
    text-align: center;
    margin-top: 3rem;
}

.column-more-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.column-more-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.no-column {
    text-align: center;
    color: #444444;
    font-size: 1.1rem;
    padding: 3rem 0;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .column-card-link {
        flex-direction: column !important;
    }

    .column-thumbnail {
        width: 100% !important;
        padding-top: 56.25% !important; /* 16:9 aspect ratio (9/16 = 0.5625) */
    }

    .column-thumbnail::before {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .column-card-title {
        font-size: 1.1rem;
    }
}

/* 生徒の声 - リンク対応 */
.voice-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

/* 生徒の声 詳細ページ */
.voice-single {
    background: transparent;
}

.voice-single-header {
    padding: 80px 20px 40px;
    background: #F5F39D;
    text-align: center;
}

.voice-single-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.voice-single-name {
    font-size: 2rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.voice-single-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.voice-meta-item {
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: bold;
}

.voice-single-image {
    padding: 40px 20px;
    text-align: center;
}

.voice-single-image img {
    max-width: 250px;
    max-height: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    object-fit: cover;
}

.voice-single-body {
    padding: 40px 20px 80px;
}

.voice-single-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
    line-height: 2;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.voice-navigation {
    padding: 60px 20px;
    background: transparent;
}

/* 生徒の声 一覧ページ */
.voices-archive {
    padding: 80px 20px;
    background: transparent;
    min-height: 100vh;
}

.voices-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.voice-archive-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.voice-archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.voice-archive-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 2rem;
}

.voice-archive-thumbnail {
    width: 200px;
    min-width: 200px;
    height: 200px;
    overflow: hidden;
}

.voice-archive-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.voice-archive-card:hover .voice-archive-thumbnail img {
    transform: scale(1.1);
}

.voice-archive-content {
    padding: 2rem;
    flex: 1;
}

/* アイキャッチ画像がある場合は左側のpaddingを0に */
.voice-archive-thumbnail + .voice-archive-content {
    padding-left: 0;
}

.voice-archive-excerpt {
    color: #333333;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.voice-archive-author {
    color: #FFB347;
    font-weight: bold;
    font-size: 0.95rem;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .voices-archive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .voice-single-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .voice-archive-link {
        flex-direction: column;
        gap: 0;
    }
    
    .voice-archive-thumbnail {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .voice-archive-content {
        padding: 1.5rem;
    }
    
    .voice-single-title {
        font-size: 1.6rem;
    }

    .voice-single-name {
        font-size: 1.5rem;
    }

    .voice-meta-item {
        font-size: 0.7rem !important;
        padding: 0.4rem 1rem !important;
    }

    .voice-single-content {
        font-size: 0.9rem;
        padding: 2rem 1.5rem;
        line-height: 1.8;
    }

    .voice-single-image img {
        max-width: 100%;
    }
}

/* 生徒の声 - もっと見るボタン */
.voices-more {
    text-align: center;
    margin-top: 3rem;
}

.voices-more-button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.voices-more-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* ページヒーロー */
.page-hero {
    margin-top: 0;
}

/* 講師紹介ページ モバイル対応 */
@media (max-width: 1024px) {
    .page-hero {
        height: 40vh !important;
        margin-top: 0 !important;
    }

    .hero-title {
        font-size: 4.5rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
    }

    /* 講師陣の強み - 1カラムに */
    .instructors-grid + div > div > div {
        grid-template-columns: 1fr !important;
    }
}


/* レンタルページ モバイル対応 */
@media (max-width: 1024px) {
    .rental-section ul li {
        font-size: 0.85rem !important;
    }

    .rental-section h3 {
        font-size: 1.1rem !important;
    }

    .rental-section h3 span {
        font-size: 0.75rem !important;
    }

    .rental-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .rental-price {
        font-size: 3rem !important;
    }

    .rental-price-unit {
        font-size: 1rem !important;
    }

    .rental-label {
        font-size: 1.1rem !important;
    }

    .rental-notice {
        font-size: 0.8rem !important;
    }
}

/* 料金ページ モバイル対応 */
@media (max-width: 1024px) {
    /* TOPページのスタジオレンタルセクション */
    .rental-info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .rental-price-text {
        font-size: 2rem !important;
    }

    .rental-price-suffix {
        font-size: 1rem !important;
    }

    .rental-facilities-text,
    .rental-usage-text {
        font-size: 0.95rem !important;
    }

    .rental-pricing-box,
    .rental-facilities-box > div {
        padding: 1.5rem 1rem !important;
    }
}

/* アクセスページ モバイル対応 */
@media (max-width: 1024px) {
    .access {
        padding: 40px 15px;
    }

    .access-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .access-info,
    .access-map {
        width: 100% !important;
    }

    .access-info h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: flex-start !important;
    }

    .access-title-line1,
    .access-title-line2 {
        display: block !important;
    }

    .access-info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .access-info p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1rem !important;
    }

    .access-map {
        height: 300px !important;
    }
}

/* スケジュールセクション モバイル対応 */
@media (max-width: 1024px) {
    .schedule {
        padding: 40px 15px;
    }

    .schedule-instagram {
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 2rem 0 !important;
    }

    .schedule-image {
        width: 100% !important;
    }

    .schedule-image img {
        height: 250px !important;
    }

    .schedule-content {
        width: 100% !important;
    }

    .schedule-text {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .instagram-button {
        font-size: 1rem !important;
        padding: 1rem 2.5rem !important;
    }
}

/* インストラクターページ モバイル対応 */
@media (max-width: 1024px) {
    .instructor-card-vertical {
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }

    .instructor-photo-vertical {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
    }

    .instructor-name-vertical {
        font-size: 1.5rem !important;
    }

    .instructor-badge-vertical {
        font-size: 0.75rem !important;
        padding: 0.3rem 1rem !important;
    }

    .instructor-genre-vertical {
        font-size: 0.9rem !important;
    }

    .instructor-bio-vertical {
        font-size: 0.9rem !important;
    }

    .instructor-achievements-vertical h4,
    .instructor-message-vertical h4 {
        font-size: 1rem !important;
    }

    .instructor-achievements-vertical ul li,
    .instructor-message-vertical p {
        font-size: 0.85rem !important;
    }
}

/* クラスページ モバイル対応 */
@media (max-width: 1024px) {
    .classes-page .class-card {
        flex-direction: column !important;
        max-height: none !important;
    }

    .classes-page .class-image {
        width: 100% !important;
        border-radius: 25px 25px 0 0 !important;
        max-height: 250px;
    }

    .classes-page .class-content {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    .classes-page .class-title {
        font-size: 1.5rem !important;
    }

    .classes-page .class-level {
        font-size: 0.8rem !important;
    }

    .classes-page .class-description {
        font-size: 0.9rem !important;
    }
}

/* 生徒の声ページ モバイル対応 */
@media (max-width: 1024px) {
    .voices-page .voice-card {
        padding: 1.5rem !important;
    }

    .voices-page .voice-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .voices-page .voice-avatar {
        width: 60px !important;
        height: 60px !important;
    }

    .voices-page .voice-name {
        font-size: 1.2rem !important;
    }

    .voices-page .voice-info {
        font-size: 0.85rem !important;
    }

    .voices-page .voice-content {
        font-size: 0.95rem !important;
    }
}

/* 料金ページ モバイル対応 */
@media (max-width: 1024px) {
    /* ページ全体のパディング調整 */
    .classes .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    /* システム案内 - 横スクロール対応 */
    .pricing-features {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 calc((100% - 90%) / 2) !important;
    }

    .pricing-features::-webkit-scrollbar {
        display: none !important;
    }

    .pricing-features > div {
        flex: 0 0 90% !important;
        scroll-snap-align: center !important;
        min-width: 90% !important;
        padding: 2rem 1.5rem !important;
    }

    .pricing-features > div h3 {
        font-size: 1.1rem !important;
    }

    .pricing-nav-buttons {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 3rem;
    }

    .pricing-nav-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pricing-nav-btn.active {
        background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
        width: 30px;
        border-radius: 6px;
    }

    /* 入会金・体験レッスン - 1カラムに */
    .pricing-entry-trial {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .pricing-entry-trial > div {
        padding: 2rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    .pricing-entry-trial > div > div:last-child {
        font-size: 2rem !important;
    }

    /* コース表 - カード形式に */
    .pricing-table {
        background: transparent !important;
        border: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 1.5rem !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 1rem !important;
    }

    .pricing-table::-webkit-scrollbar {
        display: none !important;
    }

    .pricing-table > div:first-child {
        display: none !important;
    }

    .pricing-table > div:not(:first-child) {
        display: flex !important;
        flex-direction: column !important;
        background: #1a1a1a !important;
        border: 1px solid #333 !important;
        border-radius: 12px !important;
        padding: 2rem 1.5rem !important;
        gap: 1rem !important;
        flex: 0 0 85% !important;
        scroll-snap-align: start !important;
        min-width: 85% !important;
    }

    .pricing-table > div:not(:first-child) > div {
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .pricing-table > div:not(:first-child) > div:first-child {
        margin-bottom: 1rem;
        order: 1;
        width: 100%;
    }

    .pricing-table > div:not(:first-child) > div:nth-child(2) {
        order: 2;
        flex: 1;
    }

    .pricing-table > div:not(:first-child) > div:nth-child(2)::before {
        content: '回数: ';
        color: #888;
        font-size: 0.85rem;
    }

    .pricing-table > div:not(:first-child) > div:nth-child(3) {
        order: 4;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #333;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #fff !important;
        background-clip: unset !important;
        color: #fff !important;
        text-align: center !important;
    }

    .pricing-table > div:not(:first-child) > div:nth-child(3)::before {
        content: '料金';
        color: #888;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .pricing-table > div:not(:first-child) > div:nth-child(4) {
        order: 3;
        flex: 1;
    }

    .pricing-table > div:not(:first-child) > div:nth-child(4)::before {
        content: '対象: ';
        color: #888;
        font-size: 0.85rem;
    }

    .pricing-table > div:not(:first-child) {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        background: #1a1a1a !important;
        border: 1px solid #333 !important;
        border-radius: 12px !important;
        padding: 2rem 1.5rem !important;
        gap: 1rem !important;
    }

    /* フラダンスセクション */
    .pricing-table + div {
        padding: 2rem 1.5rem !important;
    }

    .pricing-table + div h3 {
        font-size: 1.3rem !important;
    }

    .pricing-table + div p {
        font-size: 0.9rem !important;
    }
}

/* 料金ページ デスクトップ用 */
.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 料金ページ 基本スタイル */
.pricing-entry-trial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-table {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* 料金ページ セクション幅調整（モバイル） */
@media (max-width: 1024px) {
    .pricing-section {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* 固定CTAボタンコンテナ */
.fixed-cta-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    gap: 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

/* モバイルのみ表示 */
@media (max-width: 1024px) {
    .fixed-cta-container {
        display: flex;
    }
}

/* SNSボタン */
.fixed-social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    color: #333333;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fixed-social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
}

.fixed-instagram:hover {
    background: linear-gradient(135deg, #E1306C 0%, #FD1D1D 50%, #833AB4 100%);
}

.fixed-line {
    background: #06C755;
}

.fixed-line:hover {
    background: #05B04D;
}

/* 体験レッスンボタン */
.fixed-cta-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-align: center;
    color: #333333;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    background: linear-gradient(135deg, #F4F27E 0%, #FFB347 100%);
    transition: all 0.3s ease;
}

.fixed-cta-button:hover {
    background: linear-gradient(135deg, #FFB347 0%, #F4F27E 100%);
}

@media (max-width: 1024px) {
    .fixed-social-button {
        font-size: 0.85rem;
        padding: 1.2rem 0.5rem;
    }

    .fixed-social-button span {
        display: inline;
    }

    .fixed-cta-button {
        font-size: 0.9rem;
        padding: 1.2rem 0.5rem;
    }

    /* 料金ページ - モバイル版のみ白文字 */
    .pricing-course-title,
    .pricing-course-detail,
    .pricing-session-count,
    .pricing-target,
    .hula-description,
    .hula-contact {
        color: #fff !important;
    }

    /* クラス紹介セクション - モバイル版のみマージン0 */
    .classes {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .fixed-social-button {
        font-size: 0.75rem;
        padding: 1rem 0.3rem;
    }

    .fixed-social-button svg {
        width: 20px;
        height: 20px;
    }

    .fixed-cta-button {
        font-size: 0.85rem;
        padding: 1rem 0.3rem;
    }
}


@media (max-width: 768px) {
    .logo {
        font-size: 0.9rem !important;
    }

    .hero-title {
        font-size: 4.5rem !important;
        font-weight: 700 !important;
        -webkit-text-stroke: 2px #000000 !important;
        text-stroke: 2px #000000 !important;
    }

    .hero-content {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
