/* 
横浜SHADEの乾 綾 LPページ スタイルシート
黄色をベースにしたキラキラエフェクト付きデザイン
*/

/* ===== 基本設定 ===== */
:root {
    --main-color: #FFD700; /* メインカラー: 黄色 */
    --main-color-light: #FFF8DC; /* 薄い黄色 */
    --main-color-dark: #DAA520; /* 濃い黄色 */
    --accent-color: #D4AF37; /* アクセントカラー: ゴールド */
    --text-color: #333333; /* テキストカラー */
    --bg-color: #FFFFFF; /* 背景色 */
    --dark-bg: #000000; /* 暗い背景色 */
    --gray-color: #F5F5F5; /* グレー背景 */
    --shadow-color: rgba(0, 0, 0, 0.1); /* 影の色 */
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--text-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}

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

/* ===== ボタンスタイル ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--main-color);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--main-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: var(--dark-bg);
    color: var(--main-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #222;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-social {
    background-color: #f8f8f8;
    color: var(--text-color);
    padding: 10px 20px;
    margin: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-social:hover {
    background-color: var(--main-color-light);
    transform: translateY(-2px);
}

/* ===== キラキラエフェクト ===== */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.sparkle {
    position: absolute;
    background-color: var(--main-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: sparkle-animation 5s linear infinite;
}

@keyframes sparkle-animation {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    20% {
        opacity: 0.8;
        transform: scale(1);
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* ===== ヘッダーセクション ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/header-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.sub-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.header-social {
    margin-top: 30px;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 8px;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== プロフィールセクション ===== */
.profile-section {
    background-color: var(--bg-color);
}

.profile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.profile-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--main-color);
    transition: all 0.3s ease;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px dashed var(--main-color);
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

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

.profile-text {
    flex: 1;
    min-width: 300px;
}

.profile-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-me {
    background-color: var(--gray-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.about-me h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-color);
}

.about-me-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.about-me-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.about-me-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.about-me-item i {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.about-me-item .label {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-color);
}

.about-me-item .value {
    color: #666;
}

/* ===== 魅力・特徴セクション ===== */
.charm-section {
    background-color: var(--main-color-light);
    position: relative;
    overflow: hidden;
}

.charm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.charm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.charm-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.charm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--main-color);
}

.charm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.charm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--main-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--main-color-dark);
    transition: all 0.3s ease;
}

.charm-card:hover .charm-icon {
    background-color: var(--main-color);
    color: white;
    transform: scale(1.1);
}

.charm-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.charm-card p {
    color: #666;
    font-size: 1rem;
}

/* ===== 写真ギャラリーセクション ===== */
.gallery-section {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px var(--shadow-color);
    z-index: 1;
}

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

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== エピソードセクション ===== */
.episode-section {
    background-color: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.episode-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/episode-bg-placeholder.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.episode-section .section-title {
    color: white;
}

.episode-section .section-title::after {
    background-color: var(--main-color);
}

.episode-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.quote-mark {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    color: var(--main-color);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.5;
}

.closing-quote {
    top: auto;
    left: auto;
    right: 20px;
    bottom: -40px;
}

.episode-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.episode-text p {
    margin-bottom: 20px;
}

/* ===== ライブ配信セクション ===== */
.live-section {
    background-color: var(--gray-color);
}

.live-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 アスペクト比 */
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: white;
}

.video-placeholder:hover .play-button {
    background-color: var(--main-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.live-description {
    flex: 1;
    min-width: 300px;
}

.live-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.live-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

/* ===== お客様の声セクション ===== */
.testimonial-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 15px;
}

.testimonial-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--main-color);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--main-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--main-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--main-color);
    transform: scale(1.2);
}

/* ===== SNS・連絡先セクション ===== */
.connect-section {
    background-color: var(--main-color-light);
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.connect-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.connect-text {
    max-width: 700px;
    margin: 0 auto 40px;
}

.connect-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.connect-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.connect-icon-item {
    flex: 0 0 200px;
}

.connect-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.connect-icon-link:hover {
    transform: translateY(-10px);
}

.connect-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.connect-icon.line {
    background-color: #06C755;
    color: white;
}

.connect-icon.tiktok {
    background-color: #000000;
    color: white;
}

.connect-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.connect-icon.twitter {
    background-color: #1DA1F2;
    color: white;
}

.connect-icon-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.connect-icon-id {
    color: #666;
    font-size: 0.9rem;
}

/* ===== 来店案内セクション ===== */
.visit-section {
    background-color: var(--bg-color);
}

.visit-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.visit-info {
    flex: 1;
    min-width: 300px;
}

.visit-info-item {
    margin-bottom: 25px;
}

.visit-info-item i {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.visit-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.visit-note {
    margin: 20px 0;
    padding: 15px;
    background-color: var(--main-color-light);
    border-radius: 5px;
}

.visit-button {
    margin-top: 30px;
}

.visit-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* ===== 求人情報セクション ===== */
.recruit-section {
    background-color: var(--main-color-light);
}

.recruit-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.recruit-text {
    flex: 1;
    min-width: 300px;
}

.recruit-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.recruit-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.recruit-contact-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.recruit-contact-item i {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.recruit-contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.recruit-qr {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--main-color);
}

.footer-address, .footer-tel {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-to-top {
    margin-bottom: 20px;
}

#to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: var(--text-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

#to-top:hover {
    background-color: white;
    transform: translateY(-5px);
}

/* ===== アニメーション ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== レスポンシブデザイン ===== */
@media (max-width: 1199px) {
    .main-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 1.5rem;
    }
    
    .profile-content, 
    .live-content, 
    .visit-content, 
    .recruit-content {
        flex-direction: column;
    }
    
    .profile-image, 
    .profile-text, 
    .video-container, 
    .live-description, 
    .visit-info, 
    .visit-map, 
    .recruit-text, 
    .recruit-qr {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .connect-icon-item {
        flex: 0 0 150px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about-me {
        padding: 20px;
    }
    
    .about-me-content {
        grid-template-columns: 1fr;
    }
    
    .charm-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .episode-content {
        padding: 20px;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .connect-icons {
        gap: 20px;
    }
    
    .connect-icon-item {
        flex: 0 0 130px;
    }
    
    .connect-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== アクセシビリティ対応 ===== */
:focus {
    outline: 3px solid var(--main-color);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== 印刷スタイル ===== */
@media print {
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .sparkles-container,
    .scroll-down,
    .play-button,
    #to-top {
        display: none;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer {
        padding: 20px 0;
    }
}
