/* 
横浜SHADEの帝 響 LPページ スタイルシート
カラースキーム：
- メインカラー：深い赤（#8B0000）- 高級感と情熱を表現
- サブカラー：ゴールド（#D4AF37）- ゴージャス感を演出
- アクセントカラー：黒（#000000）- エレガントさを強調
- 背景色：濃いめのグラデーション（#1A0000 → #400000）- 高級感のある雰囲気
- テキストカラー：白（#FFFFFF）とゴールド（#D4AF37）- 視認性と高級感の両立
*/

/* ===== 基本設定 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(135deg, #1A0000, #400000);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #FFFFFF;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #D4AF37;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* ===== ヘッダーセクション ===== */
.header {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(139, 0, 0, 0.8)), url('../img/header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

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

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

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
}

.main-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #FFFFFF, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: titleGlow 2s infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    color: #D4AF37;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

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

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

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

/* ===== プロフィールセクション ===== */
.profile-section {
    background: linear-gradient(135deg, #000000, #300000);
    padding: 5rem 0;
}

.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/hibiki-prof.webp");
    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-text {
    flex: 2;
}

.profile-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #D4AF37;
}

.profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid #D4AF37;
}

.profile-detail-column {
    flex: 1;
    min-width: 250px;
}

.profile-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-detail-item i {
    color: #D4AF37;
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.detail-label {
    font-weight: 500;
    margin-right: 0.5rem;
    color: #D4AF37;
}

/* ===== ギャラリーセクション ===== */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #200000, #000000);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

/* 3番目の gallery-section に適用する場合の例 */
.gallery-section:nth-of-type(3) .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    max-width: 400px;
    margin: 0 auto;
}


.gallery-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

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

.image-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #1A0000, #400000);
    border: 2px solid #D4AF37;
    background-size: cover;     /* はみ出しても全体を埋める */
    background-position: center top; /* 中央上部を表示 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D4AF37;
    font-size: 1.2rem;
}

.image-placeholder.image-1 {
  background-image: url('/img/hibiki-formal.webp');
}

.image-placeholder.image-2 {
  background-image: url('/img/hibiki-casual.webp');
}

.image-placeholder.image-3 {
  background-image: url('/img/hibiki-laugh.webp');
}

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

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

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


.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #D4AF37;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
}*

.gallery-alt {
    background: linear-gradient(135deg, #000000, #200000);
}

/* ===== 強み・特徴セクション ===== */
.strengths-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #300000, #000000);
}

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

.strength-card {
    background: linear-gradient(135deg, #1A0000, #400000);
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.strength-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.strength-title {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== エピソードセクション ===== */
.episode-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #400000, #200000);
}

.episode-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.episode-item {
    flex: 1;
    min-width: 300px;
}

.episode-title {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
}

.episode-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
    margin: 0 1rem;
}

/* ===== お客様の声セクション ===== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #200000, #300000);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(135deg, #300000, #000000);
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 2rem;
    margin: 0 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: right;
    color: #D4AF37;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    color: #FFFFFF;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}

/* ===== ライブ配信セクション ===== */
.live-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #300000, #100000);
}

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

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

.video-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #1A0000, #400000);
    border: 2px solid #D4AF37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #D4AF37;
    font-size: 1.2rem;
    border-radius: 5px;
}

.video-placeholder i {
    font-size: 4rem;
    margin-top: 1rem;
    opacity: 0.7;
}

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

.live-text h3 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn-watch {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    background: #FFFFFF;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* ===== Instagram連携セクション ===== */
.instagram-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #200000, #400000);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.instagram-header i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-right: 1rem;
}

.instagram-header h3 {
    font-size: 1.8rem;
    color: #D4AF37;
    margin: 0 1rem 0 0;
}

.btn-follow {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    background: #FFFFFF;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

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

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.instagram-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #1A0000, #400000);
    border: 1px solid #D4AF37;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D4AF37;
    font-size: 1rem;
}

/* ===== SNSリンクセクション ===== */
.sns-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000, #300000);
}

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

.sns-card {
    background: linear-gradient(135deg, #1A0000, #400000);
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.sns-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.sns-title {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.sns-id {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 1rem;
}

.sns-description {
    margin-bottom: 1.5rem;
}

.btn-sns {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-sns:hover {
    background: #FFFFFF;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* ===== 求人情報セクション ===== */
.recruit-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000, #200000);
}

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

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

.recruit-text h3 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.recruit-contact {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    border-left: 3px solid #D4AF37;
}

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

.recruit-contact i {
    color: #D4AF37;
    margin-right: 0.5rem;
}

.btn-recruit {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-recruit:hover {
    background: #FFFFFF;
    color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

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

.qr-placeholder {
    height: 250px;
    width: 250px;
    background: #FFFFFF;
    border: 2px solid #D4AF37;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 1.2rem;
    margin: 0 auto;
}

/* ===== フッターセクション ===== */
.footer {
    background: linear-gradient(to bottom, #000000, #300000);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-info h3 {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info i {
    color: #D4AF37;
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: relative;
    z-index: 3;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== プレースホルダー共通スタイル ===== */
.placeholder-text {
    text-align: center;
    padding: 1rem;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 992px) {
    .main-title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .profile-content {
        flex-direction: column;
    }
    
    .profile-image-placeholder {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .episode-divider {
        display: none;
    }
    
    .episode-item {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .strength-card {
        padding: 1.5rem;
    }
    
    .strength-icon {
        font-size: 2rem;
    }
    
    .strength-title {
        font-size: 1.3rem;
    }
    
    .episode-title {
        font-size: 1.5rem;
    }
    
    .sns-icon {
        font-size: 2.5rem;
    }
    
    .sns-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .profile-intro {
        font-size: 1.1rem;
    }
    
    .profile-details {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .strength-card {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .sns-card {
        padding: 1.5rem;
    }
}