@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =========================================
   ライヴスケジュール用スタイル
   ========================================= */

/* ページタイトル */
.p-live-page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 40px 0 30px;
    letter-spacing: 0.05em;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* --- ナビゲーションエリア --- */
.p-live-nav-area {
    display: flex;
    justify-content: center; /* 中央寄せ */
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 0;
}

/* 年月表示 */
.p-live-date-display {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.p-live-date-display__year {
    font-size: 1.5rem;
}
.p-live-date-display__month {
    font-size: 2.5rem;
}

/* 矢印ボタン */
.p-live-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #999;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    background: #fff;
}
.p-live-arrow:not(.is-disabled):hover {
    background: #f0f0f0;
    border-color: #666;
}
.p-live-arrow.is-disabled {
    color: #ccc;
    border-color: #eee;
    pointer-events: none;
}


/* --- リストエリア --- */
.p-live-list {
    border-top: 2px solid #333;
}
.p-live-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    gap: 30px;     /* 日付エリアと詳細エリアの間隔 */
    align-items: center; /* 上下中央寄せ */
}

/* 左側エリア（日付・曜日・時間） */
.p-live-item__left {
    width: 240px;  /* ★変更：40%から固定幅に変更して余白を削減 */
    display: flex;
    align-items: center;
    gap: 20px;     /* ★変更：日付と時間の隙間を少し詰めました */
    flex-shrink: 0;
}

/* 日付＋曜日グループ */
.p-live-item__date-group {
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-width: 80px;
}
.p-live-item__day {
    font-size: 2.4rem;
    font-weight: bold;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1;
}
.p-live-item__week {
    font-size: 1.0rem;
    font-weight: normal;
}

/* 時間グループ */
.p-live-item__time-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    color: #333;
}

/* 色設定 */
.p-live-item__left.is-sat .p-live-item__day,
.p-live-item__left.is-sat .p-live-item__week { color: #0056b3; }

.p-live-item__left.is-sun .p-live-item__day,
.p-live-item__left.is-sun .p-live-item__week { color: #d93025; }


/* 右側エリア（詳細） */
.p-live-item__right {
    flex-grow: 1;
}
.p-live-item__title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 1.4;
}
.p-live-item__title a {
    text-decoration: none;
    color: #333;
    position: relative;
    display: inline-block;
    transition: opacity 0.3s;
}
/* 外部リンクだとわかるアイコンなどはあえてつけずシンプルに */
.p-live-item__title a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.p-live-item__row {
    margin-top: 5px;
    display: flex;
    align-items: baseline;
    font-size: 0.95rem;
}
.p-live-item__label {
    color: #666;
    width: 4.5em;
    flex-shrink: 0;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .p-live-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .p-live-item__left {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }
}

.p-live-empty {
    padding: 50px 0;
    text-align: center;
    color: #999;
}

/* =========================================
   ディスコグラフィー用スタイル
   ========================================= */

/* ページタイトル */
.p-disc-page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 40px 0 30px;
    letter-spacing: 0.05em;
    font-family: 'Open Sans', Arial, sans-serif;
}

.p-disc-content {
    margin-bottom: 60px;
}

/* --- タブ (Modern Style) --- */
.p-disc-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.p-disc-tabs__item {
    cursor: pointer;
    color: #888;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s;
    font-family: 'Open Sans', Arial, sans-serif;
}
.p-disc-tabs__item:hover {
    color: #333;
}
.p-disc-tabs__item.is-active {
    color: #000;
}
.p-disc-tabs__item.is-active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -17px;
    left: 0;
}

/* --- サブタブ (CD Group) --- */
.p-disc-subtabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: -10px 0 40px;
    flex-wrap: wrap;
}
.p-disc-subtabs__item {
    padding: 4px 16px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
    color: #666;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: all 0.2s;
}
.p-disc-subtabs__item:hover {
    border-color: #999;
    color: #333;
}
.p-disc-subtabs__item.is-active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* --- 一覧リスト (Grid) --- */
.p-disc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px 30px;
}
.p-disc-item__link {
    text-decoration: none;
    color: #333;
    display: block;
    transition: opacity 0.3s;
}
.p-disc-item__link:hover {
    opacity: 0.7;
}

/* 画像表示（グレー背景削除） */
.p-disc-item__thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    
    /* ★変更：背景透明・影が切れないように設定 */
    background: transparent;
    overflow: visible; 
}
.p-disc-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    /* ★追加：画像そのものに影をつける */
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}
.p-disc-noimg {
    width: 100%;
    height: 100%;
    background: #eee; /* NO IMAGEは四角いままなので背景ありでOK */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.8rem;
}

.p-disc-item__body {
    text-align: left;
}

.p-disc-item__title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 5px;
    line-height: 1.4;
}
.p-disc-item__artist {
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 5px;
    font-weight: normal;
}
/* 日付（下に移動したのでスタイル調整） */
.p-disc-item__meta {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
}


/* --- 詳細ページ --- */
.p-disc-detail {
    max-width: 800px;
    margin: 40px auto 60px;
}
/* 画像エリア（背景削除） */
.p-disc-detail__thumb {
    text-align: center;
    margin-bottom: 40px;
    
    /* ★変更：背景を透明に */
    background: transparent;
    padding: 0;
}
.p-disc-detail__thumb img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    
    /* ★変更：以前のbox-shadowを消して、drop-shadowに変更 */
    box-shadow: none; 
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15)); /* 詳細ページは少し影をリッチに */
}

/* タイトル（サイズ縮小） */
.p-disc-detail__title {
    font-size: 1.75rem; /* ★2.0remから少し小さく */
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* 情報エリア */
.p-disc-detail__info {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
/* アーティスト名 */
.p-disc-detail__artist {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: normal;
}
.p-disc-detail__date {
    color: #888;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9rem;
}

/* 本文 */
.p-disc-detail__content {
    margin-bottom: 60px;
}

/* 戻るボタン */
.p-disc-detail__back {
    text-align: center;
}
.p-disc-detail__back a {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.p-disc-detail__back a:hover {
    background: #333;
    color: #fff;
}

/* =========================================
   トップページ用 (SWELL 1800px対応版)
   ========================================= */

/* コンテナ */
.my-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

/* 共通：セクションタイトル */
.c-secTitle {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    /* SWELLの h2 スタイルを強制上書き */
    margin-bottom: 25px !important;
    margin-top: 0 !important;
    font-family: 'Open Sans', Arial, sans-serif;
    letter-spacing: 0.05em;
    border: none !important; /* SWELLのボーダーも念のため消す */
}

/* 共通：View Moreボタン (モダン版) */
.p-top-btn-area {
    text-align: center;
    margin-top: 40px;
}
.c-btn-more {
    display: inline-flex; /* アイコンと文字を並べる */
    align-items: center;
    justify-content: center;
    padding: 14px 60px; /* 少し大きめに */
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em; /* 文字間隔を広げてモダンに */
    border-radius: 50px;   /* 角丸（ピル型） */
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}
/* 矢印アイコンを追加 */
.c-btn-more::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.3s;
    font-family: Arial, sans-serif; /* 矢印の形を綺麗に */
}

/* ホバー時の動き */
.c-btn-more:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px); /* ふわっと浮く */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* 影を落とす */
}
.c-btn-more:hover::after {
    transform: translateX(5px); /* 矢印だけ右に動く */
}

/* --- NEWS Section --- */
.p-top-news {
    margin: 60px 0;
}
ul.p-top-news__list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 auto 30px !important;
    max-width: 100%; 
}
li.p-top-news__item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 20px;
    background: none !important;
    position: relative;
}
li.p-top-news__item::before,
li.p-top-news__item::after {
    content: none !important;
    display: none !important;
}
.p-top-news__date {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Open Sans', Arial, sans-serif;
    width: 90px;
    flex-shrink: 0;
}
.p-top-news__link {
    text-decoration: none;
    color: #333;
    flex: 1;
}
.p-top-news__link:hover {
    text-decoration: underline;
}


/* --- Live Schedule Section --- */
.p-top-live {
    padding: 60px 0;
	position: relative; /* 背景配置用 */
}
.p-top-live__list {
    max-width: 100%;
    margin: 0 auto;
    border-top: 2px solid #333;
}
.p-top-live__item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    gap: 30px;
    align-items: center;
}
.p-top-live::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;     /* 画面いっぱい */
    height: 100%;
    background-color: #f9f9f9; 
    z-index: -1;      /* 文字の下に敷く */
}

/* 左側エリア（日付・曜日・時間） */
.p-top-live__left {
    width: 240px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.p-top-live__date-group {
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-width: 80px;
}
.p-top-live__day {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1;
}
.p-top-live__week {
    font-size: 0.9rem;
    font-weight: normal;
}
.p-top-live__time-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    color: #333;
}
.p-top-live__left.is-sat .p-top-live__day,
.p-top-live__left.is-sat .p-top-live__week { color: #0056b3; }
.p-top-live__left.is-sun .p-top-live__day,
.p-top-live__left.is-sun .p-top-live__week { color: #d93025; }

/* 右側エリア（詳細） */
.p-top-live__right {
    flex-grow: 1;
}
/* ★修正：SWELLの .post_content h3 を強制上書き */
.p-top-live__title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 10px !important; /* ここでSWELLの3em 0 2emを消す */
    line-height: 1.4;
    padding: 0 !important;
    border: none !important;
}
.p-top-live__title a {
    text-decoration: none;
    color: #333;
}
.p-top-live__title a:hover {
    text-decoration: underline;
    color: #0056b3;
}
.p-top-live__row {
    margin-top: 5px;
    display: flex;
    align-items: baseline;
    font-size: 0.95rem;
}
.p-top-live__label {
    color: #666;
    width: 4.5em;
    flex-shrink: 0;
}
.p-top-live__empty {
    text-align: center;
    color: #999;
    padding: 20px;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .my-container {
        padding: 0 20px;
    }
    .p-top-live__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .p-top-live__left {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }
}


/* --- DISCOGRAPHY Section --- */
.p-top-disco {
    padding: 80px 0;
    /* 背景設定（::before）を削除しました */
}

.p-top-disco__slide {
    height: auto;
    box-sizing: border-box;
    padding-bottom: 20px;
}

/* リンク全体 */
.p-top-disco__link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
    background: transparent; 
    padding: 0; 
    box-shadow: none;
}
.p-top-disco__link:hover {
    opacity: 0.8;
}

/* 画像エリア（背景透明・ドロップシャドウ） */
.p-top-disco__thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    
    background: transparent; /* 背景透明 */
}
.p-top-disco__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    /* 画像そのものに影を落とす */
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15)); 
}
.p-top-disco__noimg {
    color: #ccc;
    font-size: 0.8rem;
}

/* タイトル */
.p-top-disco__title {
    font-size: 0.9rem !important;
    font-weight: bold;
    margin: 0 !important;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0 !important;
    border: none !important;
    text-align: center;
}

/* 日付（非表示） */
.p-top-disco__date {
    display: none;
}

.p-top-disco .swiper {
    padding-bottom: 40px;
    overflow: visible; /* 影が切れないように */
}
.p-top-disco .swiper-pagination-bullet-active {
    background: #333;
}

/* SWELL標準のページタイトルも Open Sans にする */
.c-pageTitle__inner {
    font-family: 'Open Sans', Arial, sans-serif !important;
}

/* =========================================
   グローバルナビ
   ========================================= */

#gnav .c-gnav > li > a .ttl {
  font-size: 18px !important;
}

#gnav .c-gnav > li > a .ttl {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 18px !important;
}

/* =========================================
   商品リンクボタンエリア
   ========================================= */
.p-disc-detail__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* ボタン同士の間隔 */
    margin-top: 40px;    /* 上（本文）との間隔 */
    margin-bottom: 60px; /* 下（戻るボタン）との間隔 */
}

/* ボタン本体 */
.c-btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #fff;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: all 0.3s ease;
    min-width: 180px; /* ボタンの最低幅 */
    line-height: 1;   /* 高さズレ防止 */
}

/* ホバー時 */
.c-btn-shop:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* アイコン（シンプルな斜め矢印） */
.c-btn-shop__icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg); /* 斜め上に向ける */
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* ホバー時に矢印も少し動かす */
.c-btn-shop:hover .c-btn-shop__icon {
    transform: translateY(-3px) translateX(2px) rotate(45deg);
}