/* 全体のスタイル */
:root {
    --main-color: #0a1a3f; /* より深い青に変更 */
    --accent-color: #1e3a8a; /* 高級感のあるロイヤルブルー */
    --secondary-color: #c0a080; /* 高級感のあるゴールド */
    --highlight-color: #2c5ecc; /* 鮮やかな青のアクセント */
    --text-color: #ffffff;
    --dark-text: #0a1a3f;
    --light-text: #e0e6ff;
    --background-color: #050d24; /* より深い背景色 */
    --section-bg: rgba(10, 26, 63, 0.7); /* 半透明の深い青 */
    --card-bg: rgba(14, 32, 75, 0.8); /* 高級感のあるカード背景 */
    --gradient-start: #0a1a3f;
    --gradient-end: #1e3a8a;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* フォント設定 */
body {
    font-family: 'Playfair Display', 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

/* スクロールバーのカスタマイズ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* コンテナスタイル */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* セクションタイトル */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0.5rem auto;
}

/* ヘッダーセクション */
.header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.7), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1494&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.header-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.2;
    z-index: 1;
}

.header-watermark img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background: rgba(10, 26, 63, 0.6);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 160, 128, 0.3);
    animation: fadeIn 1.5s ease-out;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.sub-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    font-weight: 300;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 26, 63, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.social-icons a:hover {
    color: var(--text-color);
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(192, 160, 128, 0.3);
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-icons a:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

/* パーティクルエフェクト */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* プロフィールセクション */
.profile-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.profile-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(10px);
}

.profile-image-placeholder {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    background-image: url("/img/sora_profile.jpeg");
    background-size: cover;
    background-position: center top;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
    transition: all var(--transition-speed) ease;
}

.profile-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

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

.profile-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 160, 128, 0.3);
}

.detail-item h3 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p {
    font-size: 1rem;
    margin: 0;
}

/* ギャラリーセクション */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(10, 26, 63, 0.9), rgba(5, 13, 36, 0.9)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.gallery-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    background-size: cover;     /* はみ出しても全体を埋める */
    background-position: center top; /* 中央上部を表示 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-placeholder.image-1 {
  background-image: url('/img/sora_formal.jpeg');
}

.image-placeholder.image-2 {
  background-image: url('/img/sora_casual.jpeg');
}

.image-placeholder.image-3 {
  background-image: url('/img/sora_laugh.jpeg');
}

.image-placeholder.image-4 {
  background-image: url('/img/sora-working.webp');
}

.image-placeholder.image-5 {
  background-image: url('/img/sora-relax.webp');
}

.image-placeholder.image-6 {
  background-image: url('/img/sora-event.webp');
}

.image-placeholder.image-7 {
  background-image: url('/img/sora-communication.webp');
}

.image-placeholder.image-8 {
  background-image: url('/img/sora_cm1.jpeg');
}

.image-placeholder.image-9 {
  background-image: url('/img/sora_cm2.jpeg');
}



.gallery-item h3 {
    font-size: 1.2rem;
    padding: 1rem 1.5rem 0.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--light-text);
}

/* 魅力セクション */
.charm-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1528818955841-a7f1425131b5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1632&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.charm-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.charm-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.charm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.charm-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(10, 26, 63, 0.8);
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.charm-content h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.charm-content p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.8;
}

/* 追加写真セクション */
.more-photos-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(10, 26, 63, 0.9), rgba(5, 13, 36, 0.9)), url('https://images.unsplash.com/photo-1519834022362-cf872776bc7e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1528&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.photo-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.photo-item .image-placeholder {
    height: 300px;
}

.photo-item h3 {
    font-size: 1.2rem;
    padding: 1rem 1.5rem 0.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.photo-item p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--light-text);
}

/* エピソードセクション */
.episode-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1483347756197-71ef80e95f73?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.episodes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.episode-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.episode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.episode-item h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.episode-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.episode-item.highlight {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(10, 26, 63, 0.8));
    border: 1px solid rgba(192, 160, 128, 0.5);
}

/* イベント写真セクション */
.event-photos-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(10, 26, 63, 0.9), rgba(5, 13, 36, 0.9)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* 宣材写真セクション */
.promo-photos-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* お客様の声セクション */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(10, 26, 63, 0.9), rgba(5, 13, 36, 0.9)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(10, 26, 63, 0.8);
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.testimonial-info h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonial-text p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.8;
    font-style: italic;
}

/* ライブ配信セクション */
.live-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1506157786151-b8491531f063?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.live-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.live-video-placeholder {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
    transition: all var(--transition-speed) ease;
}

.live-video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.live-video-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.live-video-placeholder p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.live-text {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.live-text h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.live-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
}

.live-schedule {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 160, 128, 0.3);
}

.live-schedule h4 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.live-schedule p {
    margin: 0;
}

/* SNSセクション */
.sns-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(10, 26, 63, 0.9), rgba(5, 13, 36, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1472&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sns-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-text);
    font-size: 1.2rem;
}

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

.sns-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.sns-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.sns-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.sns-item h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.sns-item p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.sns-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.sns-button:hover {
    background: var(--secondary-color);
    color: var(--dark-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

/* 求人情報セクション */
.recruit-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.recruit-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.recruit-text {
    flex: 2;
    min-width: 300px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
    backdrop-filter: blur(5px);
}

.recruit-text h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.recruit-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
}

.recruit-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 160, 128, 0.3);
}

.recruit-contact p {
    margin-bottom: 0.5rem;
}

.recruit-qr {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.qr-placeholder .placeholder-icon {
    font-size: 4rem;
    color: var(--dark-text);
}

.recruit-qr p {
    color: var(--light-text);
    text-align: center;
}

/* フッターセクション */
.footer {
    background: linear-gradient(to bottom, rgba(5, 13, 36, 0.9), rgba(10, 26, 63, 0.9));
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

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

.footer-social a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 26, 63, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.footer-social a:hover {
    color: var(--text-color);
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 160, 128, 0.3);
    width: 100%;
}

.footer-copyright p {
    color: var(--light-text);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.2rem;
    }

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

    .charm-item, .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .charm-icon, .testimonial-icon {
        margin-bottom: 1rem;
    }

    .profile-image-placeholder {
        height: 300px;
    }

    .live-video-placeholder {
        height: 300px;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

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

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

    .sub-title {
        font-size: 1rem;
    }

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

    .profile-image-placeholder {
        height: 250px;
    }

    .live-video-placeholder {
        height: 250px;
    }

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

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* キラキラエフェクト */
.sparkle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    animation: sparkle-animation 2s linear infinite;
}

@keyframes sparkle-animation {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* 高級感のあるスクロールバー */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent-color), var(--secondary-color));
    border-radius: 10px;
    border: 3px solid var(--background-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* インスタグラム連動セクション */
.instagram-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(10, 26, 63, 0.9), rgba(5, 13, 36, 0.9)), url('https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.instagram-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.instagram-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.instagram-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.instagram-image {
    height: 250px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.instagram-content {
    padding: 1.5rem;
}

.instagram-content h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.instagram-content p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.instagram-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 1.5rem;
}

.instagram-date {
    font-size: 0.8rem;
    color: var(--light-text);
    opacity: 0.7;
}

.instagram-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.instagram-link:hover {
    color: var(--text-color);
}

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

.instagram-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.instagram-button:hover {
    background: var(--secondary-color);
    color: var(--dark-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 高級感のあるボタン */
.luxury-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 160, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.luxury-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.luxury-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.luxury-button:hover::before {
    left: 100%;
}

/* 高級感のあるスクロールダウン指示 */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-down-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

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

/* 高級感のあるナビゲーション */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 13, 36, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(192, 160, 128, 0.3);
    transform: translateY(-100%);
}

.luxury-nav.visible {
    transform: translateY(0);
}

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

.nav-logo {
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all var(--transition-speed) ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 13, 36, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(192, 160, 128, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

/* 高級感のあるローディングアニメーション */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(192, 160, 128, 0.3);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* 高級感のあるスクロールトップボタン */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: 1px solid rgba(192, 160, 128, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
