﻿/* Reset & Basic Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* スムーススクロール */
    font-size: 16px;
    /* ベースフォントサイズ */
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    /* 本文フォント */
    line-height: 1.7;
    color: #333;
    /* 基本テキスト色 */
    background-color: #FFFFFF;
    /* 基本背景色 (白基調) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1100px;
    /* コンテンツ最大幅 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: #191970;
    /* アクセントカラー1 (藍色) */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif JP', serif;
    /* 見出しフォント */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
    padding-bottom: 0.5em;
}

/* セクションタイトルの下線装飾 */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #B8860B;
    /* アクセントカラー2 (ゴールド) */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #F8F8F8;
    /* 明るい背景 */
}

.bg-dark {
    background-color: #222222;
    /* 暗い背景 */
}

.text-light {
    color: #FFFFFF;
}

.text-light a {
    color: #FFFFFF;
}

.text-light .section-title::after {
    background-color: #FFFFFF;
}

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

.more-link {
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #191970;
    /* アクセントカラー1 */
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #111150;
    /* ホバー時の色調整 */
    opacity: 1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background-color: #333;
    color: #FFFFFF;
    opacity: 1;
}

.bg-dark .btn-secondary {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.bg-dark .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #222222;
}


/* Header */
.site-header {
    position: sticky;
    /* スクロール追従 */
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    /* 少し透明度を下げる */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.site-logo a:hover {
    opacity: 1;
}

.global-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    /* メニュー間隔 */
}

.global-nav a {
    color: #333;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

/* ナビゲーションリンクのホバー下線 */
.global-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #191970;
    /* アクセントカラー1 */
    transition: width 0.3s;
    position: absolute;
    bottom: -2px;
    left: 0;
}

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

.global-nav a:hover {
    opacity: 1;
    /* ホバー時の透明度変更を無効化 */
}

.mobile-menu-button {
    /* モバイル用メニューボタン (初期非表示) */
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-button .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* モバイルメニュー開閉用JS連携クラス (例) */
.mobile-menu-button.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section */
.hero-section {
    height: 85vh;
    /* 画面の高さを少し抑える */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* はみ出した要素を隠す */
    background-color: #f0f0f0;
    /* 背景色を明るめに */
}

/* ▼▼▼ 水墨画風背景グラデーション ▼▼▼ */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* 払いの表現 (左上から右下へ) */
        linear-gradient(135deg, rgba(50, 50, 50, 0.1) 0%, rgba(50, 50, 50, 0) 30%),
        /* 滲みの表現 (中央付近) */
        radial-gradient(circle at 50% 50%, rgba(100, 100, 100, 0.15) 0%, rgba(100, 100, 100, 0) 50%),
        /* 全体の淡い色 */
        linear-gradient(to bottom, rgba(230, 230, 230, 0.5), rgba(245, 245, 245, 0.8));
    opacity: 0.8;
    /* 透明度調整 */
    z-index: 1;
}

/* ▲▲▲ 水墨画風背景グラデーション ▲▲▲ */

.hero-container {
    /* hero-section .container から変更 */
    position: relative;
    z-index: 2;
}

/* ▼▼▼ キャッチフレーズのスタイル強化 ▼▼▼ */
.hero-catchphrase {
    font-size: 3.5rem;
    /* 少し大きく */
    font-weight: 700;
    /* 太めに */
    color: #222;
    /* 濃いグレーに変更 */
    margin: 0;
    text-shadow: 1px 1px 0 #fff, 2px 2px 5px rgba(0, 0, 0, 0.1);
    /* 白い縁取りと薄い影 */
    position: relative;
    /* ::before, ::after の基準 */
    padding: 0.5em 0;
    /* 上下に少し余白 */
    display: inline-block;
    /* 装飾線の基準 */
}

/* 装飾線 (上) */
.hero-catchphrase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #B8860B, transparent);
    /* ゴールドのグラデーション線 */
    opacity: 0.7;
}

/* 装飾線 (下) */
.hero-catchphrase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, #191970, transparent);
    /* 藍色のグラデーション線 */
    opacity: 0.7;
}

/* ▲▲▲ キャッチフレーズのスタイル強化 ▲▲▲ */


/* Concept Section */
.section-lead {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2em;
    color: #555;
}

#concept p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

/* .concept-image { ... } */

/* Music Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    /* 動画の最大幅 */
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* 角丸 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
    color: #555;
}

.bg-light .video-caption {
    color: #777;
}

/* Goods Section */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* レスポンシブグリッド */
    gap: 30px;
}

.goods-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
    display: flex;
    /* Flexboxを使用 */
    flex-direction: column;
    /* 子要素を縦に並べる */
}

.goods-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.goods-item a {
    display: block;
    color: inherit;
    /* リンク色を親要素から継承 */
    flex-grow: 1;
    /* リンクエリアをアイテム全体に広げる */
    display: flex;
    flex-direction: column;
}

.goods-item a:hover {
    opacity: 1;
    /* ホバー時の透明度変更を無効化 */
}

.goods-item img {
    width: 100%;
    height: 250px;
    /* 画像高さを固定 (要調整) */
    object-fit: cover;
    /* 画像をトリミングしてフィット */
    display: block;
    transition: transform 0.3s ease;
}

/* グッズ画像ホバー時のズーム効果 */
.goods-item a:hover img {
    transform: scale(1.05);
}

.goods-info {
    padding: 20px;
    flex-grow: 1;
    /* テキストエリアが残りの高さを埋める */
}

.goods-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
}

.goods-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* Artist Section */
.artist-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.artist-image {
    flex: 0 0 40%;
    /* 画像幅を40%に固定 */
    max-width: 40%;
}

.artist-image img {
    border-radius: 50%;
    /* 円形にトリミング */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    /* 最大幅設定 */
    margin: 0 auto;
    /* 中央寄せ */
    display: block;
}

.artist-text {
    flex: 1;
}

.artist-text .section-title {
    text-align: left;
    margin-bottom: 0.8em;
}

.artist-text .section-title::after {
    left: 0;
    transform: translateX(0);
}

/* News Section */
.news-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.news-list li {
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list time {
    display: inline-block;
    width: 100px;
    /* 日付の幅 */
    font-weight: 700;
    color: #555;
    margin-right: 15px;
}

.news-list a {
    color: #333;
}

.news-list a:hover {
    color: #191970;
    /* アクセントカラー1 */
    opacity: 1;
}

/* Contact & Follow Section */
.contact-info {
    margin-bottom: 30px;
}

.contact-info a {
    font-size: 1.1rem;
    word-break: break-all;
    /* メールアドレスが長い場合に改行 */
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.8rem;
    /* アイコンサイズ */
    color: #fff;
    /* アイコン色 */
    display: inline-block;
    width: 50px;
    /* アイコン背景サイズ */
    height: 50px;
    line-height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
    background-color: #fff;
    color: #222;
    opacity: 1;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    font-size: 0.9rem;
}

.copyright {
    margin-bottom: 0.5em;
}

.site-footer a {
    color: #aaa;
}

.site-footer a:hover {
    color: #fff;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
        /* スマホ用に少し小さく */
    }

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

    .content-section {
        padding: 60px 0;
    }

    /* Header for Mobile */
    .global-nav {
        display: none;
        /* 初期状態は非表示 */
        position: absolute;
        top: 100%;
        /* ヘッダーのすぐ下 */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    .global-nav.active {
        /* JSで付与するクラス */
        display: block;
    }

    .global-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .global-nav li {
        width: 100%;
    }

    .global-nav a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .global-nav li:last-child a {
        border-bottom: none;
    }

    .global-nav a::after {
        display: none;
        /* モバイルでは下線アニメーション不要 */
    }

    .mobile-menu-button {
        display: block;
        /* モバイルでボタンを表示 */
    }

    /* Hero Section for Mobile */
    .hero-catchphrase {
        font-size: 2.5rem;
        /* スマホ用に調整 */
    }

    .hero-catchphrase::before,
    .hero-catchphrase::after {
        width: 90%;
        /* 装飾線の幅を調整 */
    }


    /* Goods Grid for Mobile */
    .goods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* カラム調整 */
        gap: 20px;
    }

    /* Artist Section for Mobile */
    .artist-container {
        flex-direction: column;
        /* 縦並びにする */
        text-align: center;
    }

    .artist-image {
        flex: 0 0 auto;
        max-width: 200px;
        /* 画像サイズ調整 */
        margin-bottom: 30px;
    }

    .artist-text .section-title {
        text-align: center;
    }

    .artist-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* News Section for Mobile */
    .news-list time {
        display: block;
        /* 日付をブロック要素に */
        width: auto;
        margin-bottom: 5px;
        font-size: 0.9em;
    }

    /* Footer */
    .site-footer {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-catchphrase {
        font-size: 2rem;
        /* さらに小さく */
    }

    .goods-grid {
        grid-template-columns: 1fr;
        /* 1カラム */
    }

    .social-links a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.5rem;
    }
}