@charset "utf-8";
/* CSS Document */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* ヘッダーの高さ分、止まる位置を調整 */
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* 基本のフォント設定（夢団サイト全体用） */
body {
    background-color: var(--bg-black);
    color: #fff;
    /*line-height: 1.6;*/
	line-height: 1.8;
    overflow-x: hidden; /* 横揺れ防止 */
	margin: 0;
    padding: 0;
	font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
	font-variant-numeric: tabular-nums;
    font-weight: 400; /* 通常の文字 */

}

/* 余白とサイズの初期化 */
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, figure, form, select, textarea, input {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: normal;
    box-sizing: border-box; /* サイズ計算を楽にする設定 */
}

h1, h2, h3, h4, .section-title {
    font-weight: 700; /* 見出しは太く */
}

ul, ol {
    list-style: none;
}

/* リンクの初期設定 */
a {
    text-decoration: none;
    color: inherit; /* 親要素の色を引き継ぐ */
}

/* 画像・メディアのレスポンシブ対応 */
img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

video, iframe {
    max-width: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%; /* 基本100%にしておくと便利です */
}

/* 各テーブルの時間・項目列（th）の共通設定 */
.schedule-table th,
.history-table th,
.timeline-table th,
.contact-table th,
.schedule-table td,
.history-table td,
.timeline-table td,
.contact-table td {🅂🅂
    /* 数字の幅を揃え、読みやすくする設定 */
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
}


/* --- 共通変数・基本設定 --- */
:root {
    --pink: #FF609F;
   /* --dark-pink: #D426A0;*/
	--dark-pink: #d426c0;
    --bg-black: #1A1A1A;
}



.fwb{font-weight: 700;}


/* --- サイト全体の共通枠 --- */
.l-container {
   /* max-width: 1400px;*/
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

/* スマホ用：左右の余白を少し詰める */
@media screen and (max-width: 768px) {
    .l-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* 1400pxの共通枠 */
.container {
    /*max-width: 1400px;*/
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px; /* 左右に少し遊びを作る（スマホで端がくっつかないよう） */
    box-sizing: border-box;
}

/* スマホの時だけ余白を少し狭くしたい場合 */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --- h2 タイトルのアレンジ --- */
.section-title {
    font-size: 16px; /* 英語部分は小さく */
    color: var(--pink);
    /*font-weight: bold;*/
    margin-bottom: 30px;
    display: block; /* 縦に並べるためblock */
    letter-spacing: 0.1em;
    position: relative;
    padding-left: 15px; /* 左線の分の余白 */
}

/* スポットライトをイメージした左の縦線 */
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
   /* background: linear-gradient(to bottom, #FF609F, #D426A0);*/
	/*background: linear-gradient(to bottom, #FF609F, #d426c0);*/
	background: linear-gradient(to bottom, var(--pink), var(--dark-pink));
    border-radius: 2px;
}

/* 日本語の大きな文字 */
.section-title span {
    display: block;
    font-size: 24px; /* 日本語部分を強調 */
   /* margin-top: 5px;*/
    color: #fff; /* 日本語は白にしてピンクを際立たせる */
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 14px; /* 英語をさらに小さく */
    }
    .section-title span {
        font-size: 20px; /* 日本語をスマホで見やすいサイズに */
    }
}



/*写真の下にテキスト追加*/
.img-caption {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}


/* --- 公演作品ページ専用：グリッドレイアウト --- */
.works-container {
    /*max-width: 1400px;*/
	max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.works-grid {
    display: grid;
    /* 横に3つ並べる。間隔は広めに取るとポスターが映えます */
    grid-template-columns: repeat(3, 1fr); 
    gap: 80px 50px; 
    margin-top: 50px;
}

/* ポスター下のテキスト情報（トップページのデザインに合わせる） */
.poster-info {
    padding-top: 15px;
    text-align: center;
}

.poster-series {
    font-size: 12px;
    color: var(--pink);
    margin-bottom: 5px;
}

.poster-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* スマホ対応（2列にする） */
@media screen and (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 15px;
    }
    .poster-info h4 {
        font-size: 14px;
    }
}



/* --- 共通：キャッチコピーの光彩デザイン --- */
.catch-copy-highlight {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: center;
    /* ピンクの発光デザインを共通化 */
    text-shadow: 
        0 0 10px rgba(255, 96, 159, 0.8), 
        0 0 20px rgba(255, 96, 159, 0.4), 
        0 0 30px rgba(255, 96, 159, 0.2);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .catch-copy-highlight {
        /*font-size: 22px; /* スマホでは少し抑える */
		 font-size: 20px; /* スマホでは少し抑える */
    }
}


/* =================================================
   セクション共通レイアウト
   ================================================= */
/* 基本のセクション余白（どのページでも使用） */
.l-section {
    padding: 60px 0;
}

/* --- 上下余白：カスタム用 --- */
.py-lg {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.py-mm {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.py-sm {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* --- 特定方向の余白消し --- */
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pt-20{ padding-top: 20px !important; }


/* スマホ限定改行 */
.sp-only { display: none; }

/* スマホ用の共通調整 */
@media screen and (max-width: 768px) {
 .l-section {
        padding: 40px 0; /* スマホでは基本を40pxに落とすと綺麗です */
    }
 .py-sm {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
	
	.py-mm{ padding-top: 20px !important;
        padding-bottom: 20px !important;
		
	}
	
	.sp-only { display: block; }
}


/* =================================================
   セクション共通レイアウト
   ================================================= */
/* --- 公演のご依頼：導入テキスト --- */
.request-intro {
    padding-bottom: 0; /* 下のナビと近づける */
    text-align: center;
}

.intro-text {
	max-width: 800px; 
    margin: 0 auto 30px;
   text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 2;
   /* letter-spacing: 0.05em;*/
}

/* --- ページ内リンク（既存のabout-navを調整） --- */
.about-nav {
    padding: 20px 0;
    text-align: center;
    /* ページ上部に固定したい場合は sticky を使いますが、まずは標準で配置します */
}

.about-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 15px;
    list-style: none;
    padding: 0;
}

.about-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--pink);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 160px;
    background-color: rgba(255, 96, 159, 0.05); /* ほんのり背景色を入れるとボタンらしくなります */
	min-width: 180px; /* 4つなので少し幅を広げて安定感を出します */
}

.about-nav a:hover {
    background-color: var(--pink);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 96, 159, 0.3);
}


/* お急ぎボタン（ナビの下に配置する場合） */
.quick-contact {
    text-align: center;
    margin-bottom: 40px;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
    .intro-text {
        font-size: 14px;
        padding: 0 15px;
        text-align: left; /* スマホでは左寄せの方が読みやすいです */
		margin-bottom: 20px; /* スマホでは間隔を少し詰める */
    }
	
	.about-nav {
    padding: 0;
   /* text-align: center;*/
}
	
	.about-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px; /* 隙間を少し詰めると安定します */
    }

    .about-nav li {
        /* calc(50% - 隙間の半分) で計算 */
        width: calc(50% - 5px); 
        margin: 0;
    }
    
   /* .about-nav a {
        min-width: calc(50% - 10px); /* スマホで2列に並べる 
        font-size: 12px;
        padding: 10px 5px;
    }*/
	
	.about-nav a {
        /* aタグ自体の幅を100%にして、liの幅に合わせる */
        width: 100%; 
        min-width: 0; /* PC版のmin-width設定をリセット */
        
        /* 文字が入り切らない場合は自動で少し小さくする設定 */
        font-size: 12px;
        padding: 10px 5px; 
        box-sizing: border-box; /* パディングを含めて幅を計算 */
        
        /* 文字が長すぎる場合に折り返さないようにする */
        white-space: nowrap; 
    }
}

/* =================================================
   Header　ヘッダー
   ================================================= */
.site-header {
    background-color: var(--bg-black);
    width: 100%;
	margin-bottom: 15px;
}
/* 1200px幅の中央寄せ共通クラス */
.header-inner {
	max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	/*box-sizing: border-box;*/
}

/* --- ヘッダー上段 --- */
.header-top {
    padding: 15px 0;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    /*height: 70px;*/
	height: 75px;
    width: auto;
}

.logo-tagline {
    margin-left: 15px;
    padding-left: 15px;
    color: #fff;
	 font-size: 14px;
    line-height: 1.5;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* グラデーションボタン */
.btn-school {
    background: linear-gradient(to bottom, var(--pink), var(--dark-pink));
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-school span { font-size: 15px; }

.btn-school:hover {
    color: #fff;              /* 文字は白のままキープ！ */
    opacity: 0.9;             /* ほんの少しだけ明るく（透かす） */
    transform: translateY(-2px); /* 共通演出：少し浮かせる */
    box-shadow: 0 5px 15px rgba(255, 96, 159, 0.4); /* ふわっと光る影を追加 */
    text-decoration: none;
}

/* --- PCナビゲーション --- */
.header-bottom {
    background-color: var(--bg-black);
}

.nav-list {
    display: flex;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-list > li { position: relative; flex: 1; }

.nav-list > li > a {
    display: block;
    padding: 18px 10px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* 子メニュー（PC版：ふわっと出る） */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #222;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 100;
}

.has-child:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.sub-menu li a:hover { background: rgba(255,96,159,0.1); color: var(--pink); }

.nav-cta a {
    border: 2px solid var(--pink);
    border-radius: 8px;
    color: var(--pink) !important;
    margin: 8px 10px;
    padding: 8px 15px !important; /* 左右の余白を少し調整 */
     /* 折り返さない */
    white-space: nowrap; 
}

/* --- スマホ表示設定 --- */
.menu-toggle { display: none; }
.drawer-menu { display: none; }


/* スマホ表示 */
@media screen and (max-width: 960px) {
    .pc-only { display: none !important; }
    
    /* ヘッダー固定 */
    .site-header {
        position: fixed;
        top: 0;
        z-index: 3000;
    }
	
	 body { padding-top: 60px; } /* 固定した高さ分下げる */

    .header-top { padding: 10px 0; }
    .header-logo img { height: 50px; }
    .logo-tagline { display: none; }

    /* ハンバーガーボタン */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        width: 30px;
        height: 22px;
        position: relative;
        z-index: 3100;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        transition: 0.4s;
    }

    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 10px; }
    .menu-toggle span:nth-child(3) { top: 20px; }

    /* ×印への変形 */
    .menu-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

	
	/* --- ドロワー（メニュー背景）：透明度をなくし、影でボカす --- */
    .drawer-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%; /* 最初は隠す */
        width: 85%;
        height: 100vh;
        /*background-color: #1A1A1A !important; /* 透明度をなくし、文字を読みやすく */
		background-color: rgba(26, 26, 26, 0.9) !important;/* 透明あり */
        z-index: 3050;
        transition: 0.4s ease;
        padding-top: 100px;
        overflow-y: auto; /* メニューが多い時にスクロール可能に */
        
        /* ↓ 後ろの画像との境界をボカすための影 ↓ */
        box-shadow: -15px 0 30px rgba(0, 0, 0, 0.7); 
    }

    .drawer-menu.active { right: 0; }

	.drawer-list {
         list-style: none;
        padding: 0;
        margin: 0;
    }
	
	
	.drawer-list li {
        text-align: center; /* リスト内のテキストを中央に */
        border-bottom: 1px solid #333;
        padding-bottom: 15px;
        margin-bottom: 25px;
		font-size: 18px;
    }
	
	.drawer-list li:last-child {
        border-bottom: none; /* 最後は線を消す */
    }
	
	
	/* 各リンクを中央に配置 */
    .drawer-list li a, .drawer-label {
        display: block;
        width: 100%;
        text-align: center; /* 念のためここでも中央寄せを指定 */
        justify-content: center; /* flexを使っている場合の対策 */
    }
    
	
	/* --- 子メニュー本体の設定 --- */
    .drawer-sub {
        display: none; /* JSで制御するため初期値は隠す */
        list-style: none;
        margin: 15px 0 0 0;
        padding: 10px 0; /* 上下の余白 */
        background-color: #333333; /* 背景を少し明るいグレーに */
        border-radius: 5px;
    }
	
	/* JSで開いた時に付けるクラス */
    .drawer-sub.is-open {
        display: block;
    }
	
	/* 子メニューの中の各リスト項目 */
    .drawer-sub li {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        display: block !important; /* ここを none にしないこと */
    }

	.drawer-sub li a {
        display: block;
        padding-top: 12px;
		padding-bottom: 12px;
        color: #ffffff; /* テキストは白 */
        font-size: 16px;
        text-decoration: none;
        text-align: center; /* 中央寄せ */
		/* padding-left: 40px !important;  左に余白をいれて子要素感出し */
    }
  
	.drawer-sub li a:active {
        background-color: #444; /* タップした時の反応 */
    }
	
		/* 「ご予約・お問い合わせ」を他のメニューと同じ見た目にする */
    .drawer-list li a.drawer-cta {
        color: #FF609F !important; /* ピンクにする */
        border: none !important;    /* 枠線を消す */
        padding: 0 !important;     /* 余計な余白を消す */
        background: none !important;
        /*font-weight: bold;*/
        display: block;
        width: 100%;
        text-align: left;
		text-align: center !important;
        justify-content: center !important;
    }
	
	/* --- 公演作品（親要素）の設定 --- */
    .drawer-label {
        display: flex !important;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        color: #fff;
       /* font-weight: bold;*/
        /*font-size: 18px;*/
        position: relative;
        padding: 10px 0;
    }
	
	/* 矢印アイコン ▽ */
    .drawer-label i {
        font-size: 12px;
        transition: transform 0.3s; /* 回転を滑らかに */
    }
	
	/* 開いた時の矢印回転 △ */
    .drawer-label.active i {
        transform: rotate(180deg);
        color: var(--pink); /* 開いている時はピンクにすると分かりやすいです */
    }
	
	
	/* 矢印をCSSで作る（FontAwesomeを使用） */
    .drawer-label::after {
        content: '\f078'; /* 下向き矢印 */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 14px;
        margin-left: 10px;
        display: inline-block;
        transition: transform 0.3s ease; /* くるっと回すアニメーション */
    }
	
	/* 【重要】開いた時に矢印を上に向ける */
    /* JSで .drawer-label に active クラスがつくと回転します */
    .drawer-label.active::after {
        transform: rotate(180deg);
        color: var(--pink); /* 開いている時はピンクに */
    }

    /* 開いた時に矢印を上に向ける */
    .drawer-label.is-active::after {
        transform: rotate(180deg);
        color: var(--pink);
    }
	
	/*SNS表示*/
    .drawer-sns {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #333;
        display: flex;
        justify-content: center;
    }
}

/* ==========================================
   Footer　フッター
   ========================================== */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
    font-size: 14px;
}

/* 1. フッターメインナビ */
.footer-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0; /* 箇条書きの余白をリセット */
}

.footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-nav-list a:hover {
    color: var(--pink);
}

.footer-line {
    border: none;
    border-top: 1px solid #333;
    margin-bottom: 40px;
}

/* 2. フッターボディ（住所とボタンエリアの親） */
.footer-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.footer-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.footer-info p {
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

/* 3. ボタンとSNSアイコンの並び */
.footer-links {
    display: flex;
    align-items: center;
    gap: 15px; /* PCでの要素間の距離 */
}

/* ボタン共通スタイル */
.blog-btn, .recruit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
}

.blog-btn {
    border: 1px solid #fff;
    color: #fff;
}

.blog-btn:hover {
    background: #fff;
    color: #000;
}

.recruit-btn {
    background-color: var(--pink);
    border: 1px solid var(--pink);
    color: #fff;
    font-weight: bold;
}

.recruit-btn:hover {
    background-color: transparent;
    color: var(--pink);
}

/* SNSアイコンエリア */
.c-sns-icons.--footer {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

/* 4. コピーライト */
.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}

/* --- 5. レスポンシブ (スマホ版) --- */
@media screen and (max-width: 768px) {
    .footer-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column; /* スマホでは縦に並べる */
        width: 100%;
        gap: 12px;
    }

    .recruit-btn, .blog-btn {
        width: 90%; /* スマホでタップしやすく幅広に */
        max-width: 300px;
    }

    .c-sns-icons.--footer {
        margin: 15px 0 0 0; /* ボタンの下に中央配置 */
        justify-content: center;
    }

    .footer-nav-list {
        gap: 15px 20px;
    }
}


/* --- 上へ戻るボタン --- */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #222; /* 背景色（夢団ブラック） */
    color: #fff;
    border-radius: 50%; /* 円形にする */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;           /* 最初は隠しておく */
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ボタンの中の「△」を作る */
.back-to-top::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 10px 8px; /* 三角のサイズ */
    border-color: transparent transparent #ffffff transparent; /* 白い三角 */
    margin-top: -4px; /* 位置の微調整 */
}

/* スクロールした時に表示されるクラス（JSで制御） */
.back-to-top.is-show {
    opacity: 1;
    visibility: visible;
}

/* ホバーした時 */
.back-to-top:hover {
    background-color: var(--pink); /* ホバー時に赤くなる（夢団イメージ） */
    transform: translateY(-5px); /* 少し上に浮く演出 */
}

/* スマホでは少し小さくする */
@media screen and (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
    }
}


/* --- 共通ボタン：ベース（形・色・ホバー演出） --- */
.c-btn-main {
    display: inline-block;
    background-color: var(--pink);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    -webkit-appearance: none;
}

/* ホバー演出を一括で設定 */
.c-btn-main:hover {
    background-color: #ff85b5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 96, 159, 0.4);
    opacity: 1; /* opacity 0.8 より、少し色が明るくなる方が劇団の雰囲気に合います */
}

/* --- サイズのバリエーション --- */

/* Lサイズ（フォーム送信や、セクション終わりの大きなボタン） */
.c-btn-main.--large {
    padding: 18px 50px;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(255, 96, 159, 0.3);
}

/* Mサイズ（ナビ下のクイックお問い合わせなど、少し控えめな場所） */
.c-btn-main.--medium {
    padding: 12px 35px;
    font-size: 16px;
}

/* スマホ対応：はみ出し防止＆横幅いっぱい */
@media screen and (max-width: 768px) {
    .c-btn-main.--large,
    .c-btn-main.--medium {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }
}

/*もしも今後、全体的にみて小さくしたい場合
@media screen and (max-width: 768px) {
    .c-btn-main.--medium {
        padding: 10px 25px;
        font-size: 14px;
    }
}*/

/* --- SNSアイコン共通：ベース --- */
/* ホバー時の透過効果 */
.c-sns-icons a:hover, 
.nav-list > li > a:hover
 {
   color: var(--pink); /* 透過を消して、ピンクを指定 */
    opacity: 1;     /* もし他で透過が設定されていても、ここで100%に戻します */
    transition: color 0.3s ease; /* 色の変化を滑らかにする（もし未設定なら） */
}

.c-sns-icons {
    display: flex;
    align-items: center;
}

.c-sns-icons a {
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.c-sns-icons a:hover {
   /* color: var(--pink);*/
    transform: translateY(-3px); /* 共通で動きをつけても可愛いですね */
}

/* --- 場所ごとの個別設定 --- */

/* ヘッダー用（少し小さめ、間隔狭め） */
.c-sns-icons.--header {
    gap: 12px;
}
.c-sns-icons.--header a {
    font-size: 20px;
}

/* フッター用（大きめ、間隔広め） */
.c-sns-icons.--footer {
    gap: 20px;
}
.c-sns-icons.--footer a {
    font-size: 24px;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 768px) {
    /* ヘッダー用スマホ */
    .c-sns-icons.--header {
        gap: 10px;
    }
    
    /* フッター用スマホ */
    .c-sns-icons.--footer {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 15px;
    }
    .c-sns-icons.--footer a {
        font-size: 20px; /* スマホでは少し小さく */
    }
}


/* --- 共通アウトラインボタン：ベース --- */
.c-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

/* ホバー時の挙動：塗りつぶし＋少し浮く・動く */
.c-btn-outline:hover {
    background-color: var(--pink);
    color: #fff;
    transform: translateY(-2px); /* 共通の「浮き」演出 */
    box-shadow: 0 5px 15px rgba(255, 96, 159, 0.3);
}

/* ナビゲーション内にある場合、他のメニューの色の指定に負けないための上書き */
.nav-list .nav-cta a.c-btn-outline:hover {
    color: #fff !important;
    background-color: var(--pink);
}

/* アイコンが含まれる場合の微調整 */
.c-btn-outline i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

/* ホバー時にアイコンだけ右に動かす演出（お好みで！） */
.c-btn-outline:hover i {
    transform: translateX(5px);
}


/* ナビゲーション内のボタン配置用 */
.nav-cta {
    margin-left: 20px;    /* 他のメニュー項目との間に少し広めの距離を作る */
    display: flex;        /* 中の a タグを正しく配置するため */
    align-items: center;  /* 上下中央に揃える */
}

/* スマホ（ハンバーガーメニュー内）での調整 */
@media screen and (max-width: 768px) {
    .nav-cta {
        margin-left: 0;      /* スマホでは横並びではないのでマージンを消す */
        margin-top: 20px;    /* 上のメニューとの縦の間隔を作る */
        width: 100%;         /* 横幅いっぱいにする準備 */
    }
    
    .nav-cta a {
        display: block;      /* スマホではボタンを横いっぱいに広げる */
        width: 100%;
        text-align: center;
    }
}


/* ==========================================
   TABLE 共通設定 (年表・募集 全ページ共通)
   ========================================== */
.history-table-wrapper {
    /*margin-top: 20px;*/
	/*margin-bottom: 60px;*/
    overflow: visible;     /* 横スクロールを解除 */
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.8;
    table-layout: auto; /* テーブルレイアウトを固定せず、中身に合わせる */
}

.history-table th, 
.history-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #333;
    text-align: left;
    vertical-align: top;
    white-space: normal; /* 改行を許可し、はみ出しを防ぐ */
    word-break: break-all;
}

/* 年号・見出しの基本色 */
.history-table th {
    width: 150px;
    color: var(--pink);
    font-size: 20px;
    font-weight: bold;
}

.history-table td {
    color: #fff;
    font-weight: bold;
}

/* 偶数・奇数の背景色 */
.history-table tr:nth-child(odd) { background-color: var(--bg-black); }
.history-table tr:nth-child(even) { background-color: #262626; }

/* td内のspan */
.history-table td span {
    display: block;
	font-weight: normal;
    font-size: 14px;
    color: #aaa;
}

.history-table td span.u-small{
	display: inline; /* 改行を解除 */
    margin-left: 0.5em; /* 金額との間に少しだけ隙間を作る */
}

/* ==========================================
   スマホ対応 (メディアクエリ：全テーブルを縦一列に)
   ========================================== */
@media screen and (max-width: 768px) {
    
    /* テーブルの「行」をバラして縦に並べる */
    .history-table tr {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    /* 見出しと内容をどちらも「横幅100%」にする */
    .history-table th,
    .history-table td {
        display: block;
        width: 100% !important;
        padding: 10px 15px !important;
        border: none !important;
        box-sizing: border-box; /* paddingで横に飛び出さないようにする */
    }

    /*スマホ時の文字サイズや色の微調整 */
    .history-table th {
        font-size: 16px;
        padding-bottom: 0 !important;
    }

    .history-table td {
        font-size: 15px;
        padding-top: 5px !important;
        /*color: #ccc; /* 内容は少しグレーにして読みやすく */
        font-weight: normal;
		 font-weight: bold;
    }

    /* ボタンがある場合の調整 */
    .history-table td.table-action {
        padding-top: 15px !important;
        text-align: left !important;
    }

    .history-table td.table-action .c-btn-main {
        width: 100%; /* スマホではボタンを横いっぱいに */
        display: block;
        text-align: center;
    }
	
	/* ボタンがある列の調整 */
    .history-table td.table-action {
        padding-top: 10px !important;
        padding-bottom: 20px !important;
        text-align: center !important; /* ボタンを中央に寄せる */
    }

    /* ボタン自体のサイズ調整 */
    .history-table td.table-action .c-btn-main {
        width: 85%; /* 横幅を100%から少し小さくする */
        max-width: 240px; /* 大きくなりすぎない上限を設定 */
        margin: 0 auto; /* 中央配置 */
        display: block;
        padding: 8px 15px; /* 上下左右を少し詰めてコンパクトに */
        font-size: 13px; /* 文字も一回り小さく */
    }
	
	.history-table td span.u-small {
        display: block; /* スマホの狭い画面では改行して100%幅にする */
        margin-left: 0;
    }
}


/* =================================================
   タイトル　メインビジュアル　共通
   ================================================= */
.page-hero {
    width: 100%;
    height: 260px; /* ここで高さを固定 */
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 背景画像の設定 */
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    position: absolute;
   /* top: 0;*/
    /*right: 0;*/
    z-index: 1; /* Overlayより下に配置 */
}

/* グラデーションの膜 */
.hero-overlay {
    position: absolute;
    inset: 0; /* top,right,bottom,left: 0 を一括指定 */
    background: linear-gradient(to right, 
        rgba(26, 26, 26, 1) 0%, 
        rgba(26, 26, 26, 1) 20%, 
        rgba(26, 26, 26, 0) 80%
    );
    z-index: 2;
}


/* --- テキスト配置 --- */
.hero-text-container {
	max-width: 1200px;
    margin: 0 auto;
    height: 260px; /* 高さを指定すると安定 */
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

/* メインタイトル */
.hero-title {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
    padding-left: 20px; /* 装飾用の余白 */
}

/* サブタイトル（ある時だけ適用） */
.hero-sub-title {
    display: block; /* 改行させる */
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    /* 画像の枠と、文字の枠、両方の高さを120pxに揃える */
    .page-hero,
    .hero-text-container {
        height: 120px;
    }

    .hero-text-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 20px;
        padding-left: 10px;
        /* 行間を詰めて、120pxの中に綺麗に収める */
        line-height: 1.3;
    }

    .hero-sub-title {
        font-size: 11px;
        margin-bottom: 2px;
    }
}


.c-sns-icons span {
    display: block;
	font-weight: normal;
    font-size: 14px;
    color: #aaa;
}
	