@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');

/* ============================================
   Loading Screen
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3a3a3a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader__logo {
    width: 120px;
    max-width: 40vw;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

:root {
    /* カラーパレット（チラシから抽出した概算色） */
    --color-pink: #e95295; /* はちゃめちゃのピンク */
    --color-blue: #00a0e9; /* はちゃめちゃの青 */
    --color-purple: #663399; /* アワード背景の紫っぽい色 */
    --color-bg-dark: #3a3a3a; /* アワードセクションの背景（少し明るめのグレー） */
    --color-bg-light: #F6E6C3; /* ワークショップの背景（チラシ参考：薄いクリーム色） */
    --color-text-main: #333333;
    --color-text-white: #ffffff;

    /* フォント */
    --font-main: "Noto Sans JP", sans-serif;
    --font-en: "Oswald", sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-text-white);
    overflow-x: hidden; /* 横スクロールを防止 */
    width: 100%;
}

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

/* 共通コンテナ（横幅の制限） */
.container {
    width: 100%;
    max-width: 1000px; /* PCでの最大幅 */
    margin: 0 auto;
    padding: 0 20px; /* スマホでの左右の余白 */
}

/* ワイドコンテナ（Intro, Workshopなど幅広コンテンツ用） */
.container--wide {
    max-width: 1150px;
}

/* フルードコンテナ（Philosophyなど全幅背景用） */
.container--fluid {
    max-width: 100%;
    padding: 0;
}

/* ============================================
   Common Components (Date, Place, Specs)
   ============================================ */

/* Date Component */
.c-date-text {
    display: block;
    font-size: 2.2rem; /* Mobile base */
    font-weight: 900;
    margin-bottom: 10px;
    font-family: var(--font-en);
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: inherit; /* Inherit from parent/section */
}

.c-date-text__day {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    background-color: var(--color-pink);
    color: #fff; /* Ensure white text on pink */
    border-radius: 50%;
    width: 34px;
    height: 34px;
    margin: 0 5px;
    vertical-align: middle;
    position: relative;
    top: -4px;
    font-weight: 700;
    padding: 0;
    padding-bottom: 1px;
    padding-left: 1px;
}

.c-date-text__hyphen {
    margin: 0 5px 0 0;
    color: inherit;
}

/* Place Component */
.c-place-info {
    font-size: 1.3rem; /* Mobile base */
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 800;
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: inherit;
}

.c-place-info__name {
    color: #7FCDC1; /* Mint Green */
    display: inline-block;
    white-space: nowrap;
}

.c-place-info__detail {
    color: #D93F79; /* Pink */
    margin-left: 0.2em;
    display: inline-block;
    white-space: nowrap;
}

.c-place-info__address {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: inherit; /* Inherit to allow section override */
}

/* Section Label Component (>>> ラベル ---) */
.c-section-label {
    display: flex;
    align-items: center;
    font-size: clamp(1.3rem, 5.5vw, 1.8rem); /* スマホでも見やすく */
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.15em;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.c-section-label__arrows {
    margin-right: 0.5em;
    letter-spacing: 0.05em;
    font-family: var(--font-en);
    font-weight: 700;
    flex-shrink: 0;
}

.c-section-label__line {
    flex: 1;
    height: 1px;
    background: #fff;
    margin-left: 1em;
    min-width: 0;
}

@media (min-width: 960px) {
    .c-section-label {
        font-size: 1.6rem;
        margin: 0 0 25px;
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Section Line (単独の罫線) */
.c-section-line {
    height: 1px;
    background: #fff;
    margin: 20px auto 0;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 960px) {
    .c-section-line {
        margin: 25px 0 0;
        max-width: none;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
    }
}

/* Spec List Component (Price/Capacity) */
.c-spec-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Mobile: Center */
    gap: 10px 20px; /* Mobile: よりコンパクトに */
    margin: 0 0 15px 0;
    align-items: flex-end;
}

.c-spec-list__item {
    text-align: center;
    padding: 0 1.2em; /* 単位のためのスペース確保 */
}

/* 前後両方に単位がある場合（各回10名、現役小中学生など） */
.c-spec-list__item:has(.c-spec-list__unit:first-child:not(:last-child)) {
    padding-left: 2.5em;
}

.c-spec-list__label {
    display: block;
    font-size: 1rem; /* Mobile: 縮小 */
    color: var(--color-pink);
    font-weight: 900;
    margin-bottom: -3px;
}

.c-spec-list__val {
    font-size: 2.4rem; /* Mobile: 縮小 */
    font-weight: 900;
    font-family: var(--font-en);
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    margin: 0;
    color: inherit;
    position: relative;
    display: inline-block;
}

/* 日本語テキストの値（小中学生など） */
.c-spec-list__val--jp {
    font-family: var(--font-main);
}

.c-spec-list__unit {
    font-size: 1rem; /* Mobile: 縮小 */
    font-weight: 700;
    color: inherit;
    position: absolute;
    bottom: 0.1em;
}

/* 後ろの単位（名、円） */
.c-spec-list__val > .c-spec-list__unit:last-child:not(:first-child) {
    left: 100%;
    margin-left: 2px;
}

/* 前の単位（各回）- 最初かつ最後でない場合 */
.c-spec-list__val > .c-spec-list__unit:first-child:not(:last-child) {
    right: 100%;
    margin-right: 2px;
}

/* 単位が1つだけの場合（名、円のみ） */
.c-spec-list__val > .c-spec-list__unit:only-child {
    left: 100%;
    margin-left: 2px;
}

/* PC Media Queries for Common Components */
@media (min-width: 960px) {
    .c-date-text {
        font-size: 4.2rem;
        line-height: 1;
        margin-bottom: 15px;
        letter-spacing: 0;
    }

    .c-date-text__day {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin: 0 15px;
    }
    
    .c-date-text__hyphen {
        margin: 0 10px 0 0;
    }

    .c-place-info {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .c-place-info__address {
        font-size: 1.1rem;
    }

    .c-spec-list {
        justify-content: flex-start; /* PC: Left */
        gap: 20px 40px; /* PC: 元のサイズに戻す */
        margin: 0 0 20px 0;
    }
    
    .c-spec-list__label {
        font-size: 1.3rem; /* PC: 元のサイズに戻す */
        margin-bottom: -5px;
    }
    
    .c-spec-list__val {
        font-size: 3.8rem; /* PC: 元のサイズに戻す */
    }
    
    .c-spec-list__unit {
        font-size: 1.5rem;
    }
}

/* 画像のレスポンシブ対応 */
img {
    max-width: 100%;
    height: auto;
}

/* ユーティリティクラス */
.pc-only {
    display: none;
}
.sp-only {
    display: block;
}
@media (min-width: 768px) {
    .pc-only {
        display: block;
    }
    .sp-only {
        display: none;
    }
}

/* --- ここから各セクションのスタイル --- */

/* アワードセクション（黒背景） */
.section-award {
    /* background-color: var(--color-bg-dark); 背景色は疑似要素で作る */
    color: var(--color-text-white);
    padding: 0 0 60px; /* 下の余白を少し詰める */
    position: relative;
    z-index: 2;
}

/* 斜めの背景（全体を斜めにして上部はIntroの下に隠す） */
.section-award::before {
    content: "";
    position: absolute;
    top: -200px; /* 上に大きく伸ばしてIntroの裏に隠す */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-dark);
    transform: skewY(-3deg); /* 右上がり */
    transform-origin: bottom right;
    z-index: -2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); /* 影 */
}

/* HACHAMECHAパターン装飾（JSでランダム配置） */
.award-bg-pattern {
    position: absolute;
    top: -200px;
    bottom: 0;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
    transform-origin: bottom right;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.award-bg-pattern .deco-item {
    position: absolute;
    opacity: 1;
}

/* ワークショップセクション（明るい背景） */
.section-workshop {
    /* background-color: var(--color-bg-light); 背景色は疑似要素で作る */
    padding: 130px 0 60px; /* 上の余白を少し戻す (100px -> 130px) */
    position: relative;
    z-index: 1;
}

/* 背景（上部はAwardの下に隠す） */
.section-workshop::before {
    content: "";
    position: absolute;
    top: -200px; /* 上に大きく伸ばしてAwardの裏に隠す */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-light);
    z-index: -1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* 影（少し薄めに） */
}

/* 背景パターン（マッチョシルエット） */
.section-workshop::after {
    content: "";
    position: absolute;
    top: -200px; /* beforeと同じ範囲 */
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* SVGを背景画像として設定（色はSVG側で変更済み） */
    background-image: url(../images/workshop/bg-award-pattern.svg);
    background-repeat: repeat;
    
    /* 位置（左端から少しずらす） */
    background-position: 50px 30px;
    
    /* サイズ（余白を含めて大きめに設定することでパターン間にスペースを確保） */
    background-size: 500px auto;
    
    opacity: 0.3; /* 元の金色が強いので、かなり薄くして背景になじませる */
    z-index: -1; /* 背景色の上、コンテンツの下 */
    pointer-events: none;
}

/* Philosophy Section (White Background) */
.section-philosophy {
    padding-top: 50px; /* Mobile: 上部余白を増やす */
    padding-bottom: 60px;
    position: relative;
    z-index: 0;
    background-color: #fff;
}

.philosophy__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Visuals (Left Side) */
.philosophy__visual {
    position: relative;
    /* スマホでは画面幅に合わせて調整（少し小さく105%にして12%はみ出させる） */
    width: 105vw;
    max-width: 600px; /* PCサイズ以上にはならないように制限 */
    /* 画面左端基準 */
    left: calc(50% - 50vw);
    /* 左に12%ずらして見切れさせる */
    transform: translateX(-12%);
    margin-bottom: 0;
}

.philo-img-main {
    width: 100%;
    height: auto;
    display: block;
}

/* 装飾の斜め線（スマホでは非表示または調整） */
.philosophy__visual::before,
.philosophy__visual::after {
    content: "";
    position: absolute;
    display: none; /* スマホでは一旦非表示 */
}

/* Content (Right Side) */
.philosophy__content {
    width: 100%;
}

.philosophy__title {
    font-size: 1.2rem; /* スマホで改行されないように少し小さく */
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    white-space: nowrap; /* 自動改行を禁止 */
}

.philosophy__text {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
    color: #444;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Brand Area */
.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer__logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__kana {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #999;
    font-weight: 700;
}

/* Contact Area */
.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-style: normal;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__info-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__address,
.footer__tel,
.footer__email {
    font-weight: 400;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s;
    color: rgba(255, 255, 255, 0.6);
}

.footer__tel:hover,
.footer__email:hover {
    color: #fff;
}

.footer__address::after {
    content: "｜";
    color: rgba(255, 255, 255, 0.25);
    margin: 0 8px;
}

/* PC表示 */
@media (min-width: 600px) {
    .footer__contact {
        font-size: 0.8rem;
        gap: 5px;
    }
    .footer__address::after {
        margin: 0 12px;
    }
}

/* Organizers */
.footer__organizers {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.8;
    margin-top: 8px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 0;
}

/* 主催と共催を横並び、後援は改行 */
.footer__organizers span:nth-child(1)::after {
    content: "\3000";
}

.footer__organizers span:nth-child(2)::after {
    content: "";
}

.footer__organizers span:nth-child(3) {
    width: 100%;
    text-align: center;
}

/* PC: 全部横並び */
@media (min-width: 600px) {
    .footer__organizers span:nth-child(2)::after {
        content: "\3000";
    }
    .footer__organizers span:nth-child(3) {
        width: auto;
    }
}

/* Decorative Line */
.footer__line {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: #444;
    margin: 25px auto 0;
}

/* Copyright */
.copyright {
    display: block;
    font-size: 0.7rem;
    color: #666;
    margin-top: 20px;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(233, 82, 149, 0.9); /* テーマカラーのピンク */
    z-index: 1000;
    padding: 0; /* パディングはinnerで制御 */
}

.header__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* 左右の余白を狭める */
}

.header__logo {
    display: flex;
    align-items: center;
    /* 微調整：少し右下へ */
    margin-left: 10px;
    margin-top: 5px;
}

.header__logo img {
    height: 40px; /* 高さを少し抑える */
    width: auto;
    display: block;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px; /* AWARD/WORKSHOPとボタンの間隔 */
}

.header__list {
    display: flex;
    gap: 25px; /* AWARD と WORKSHOP の間隔 */
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__item a {
    color: #fff;
    font-weight: 900; /* 太字を強調 */
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-en); /* 英語フォント適用 */
}

.header__item a:hover {
    color: var(--color-pink);
}

/* 応募ボタン（金色の四角） */
.btn-entry {
    display: inline-block;
    background-color: #a08855; /* チラシの金色の色味 */
    color: #fff;
    padding: 12px 24px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: bold;
    transition: opacity 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    white-space: nowrap; /* 折り返しなし */
    letter-spacing: 0.02em;
}

.btn-entry:hover {
    opacity: 0.8;
}

/* スマホ用メニューボタン（デフォルトは非表示） */
.header__hamburger {
    display: none;
}

/* スマホではナビを隠すなどの処理が必要ですが、一旦PCベースで記述 */
@media (max-width: 768px) {
    .header__nav {
        display: none; /* デフォルトは隠す */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(58, 58, 58, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }
    
    .header__nav.is-open {
        display: flex;
    }
    
    .header__menu {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .header__item a {
        font-size: 1.5rem;
    }
    
    .btn-entry {
        margin-top: 30px;
    }
    
    .header__hamburger {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        z-index: 1000;
    }
    
    .header__hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        transition: transform 0.3s, opacity 0.3s;
    }
    
    .header__hamburger span:nth-child(1) {
        top: 0;
    }
    
    .header__hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header__hamburger span:nth-child(3) {
        bottom: 0;
    }
    
    /* ハンバーガー開いた時のアニメーション */
    .header__hamburger.is-open span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .header__hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }
    
    .header__hamburger.is-open span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
}

/* ============================================
   FV (First View)
   ============================================ */
.fv {
    position: relative;
    background-color: transparent; /* 背景を透明にしてパターンを見せる */
    color: #fff;
    padding-top: 130px; /* ヘッダー被り回避：少し広めに */
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center; /* 上下中央寄せ */
    z-index: 2;
}

/* ============================================
   Hero Banner（斜め帯「キミのゲームが主役になる！？」）
   ============================================ */
.hero-banner {
    position: relative;
    background-color: #d9417f;
    padding: clamp(0.8em, 3vw, 1.5em) 0;
    transform: skewY(3deg); /* 右上がりの傾き */
    margin: 15px 0 0;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    /* 傾きによるはみ出しを補正するため、左右に少し広げる */
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-banner__text {
    /* 
     * 13文字のテキストが画面幅に収まるようにフォントサイズを計算
     * 画面幅の約85%を13文字で割る（左右余白と傾き補正を考慮）
     */
    text-align: center;
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(1.3rem, 6vw, 4.5rem);
    color: #fff;
    margin: 0;
    padding: 0.1em 0 0.2em;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-banner__text .highlight {
    color: #7FCDC1; /* ミントグリーン */
}

/* 小さい画面で帯の存在感を強める */
@media (max-width: 600px) {
    .hero-banner {
        padding: 1.5em 0;
        margin-top: -20px; /* 野田画像との間を詰める */
        padding-left: 20px;
        padding-right: 20px;
    }
}

.fv__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column; /* モバイルファースト：縦積み */
    align-items: center;
    width: 100%;
}

/* --- 左側：情報エリア --- */
.fv__content {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.fv__project-name {
    width: 70%; /* メインロゴより少し小さく */
    max-width: 320px;
    margin: 0 auto 5px; /* 少し間隔を空けて真ん中のロゴを下げる */
    position: relative;
    z-index: 2;
}

.fv__logo {
    width: 95%; /* 一番大きく */
    max-width: 520px;
    margin: 0 auto -5px; /* 下のマージンをマイナスにして詰める */
    position: relative;
    z-index: 3;
}

/* ロゴアニメーション */
.logo-animation {
    animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); } /* 動きを少し控えめに */
}

.fv__award-title {
    width: 50%; /* メインロゴの半分くらい */
    max-width: 240px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 4;
}

/* 日時・場所 */
.fv__info {
    margin-bottom: 20px;
}

.fv__notes-area {
    margin-top: 15px;
    text-align: center;
}

.fv__note {
    display: inline-block;
    font-size: 0.8rem;
    background-color: var(--color-pink);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.fv__notes-list {
    list-style: none;
    margin: 12px auto 0;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.fv__notes-list li {
    font-size: 0.75rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.fv__notes-list li strong {
    font-weight: 700;
}

/* --- 右側：野田所長エリア --- */
.fv__visual {
    position: relative;
    width: 80%; /* スマホで幅を抑える */
    max-width: 280px; /* スマホでの最大幅をさらに抑える */
    margin-top: 20px;
}

.fv__noda {
    width: 100%;
}
.fv__noda img {
    width: 100%;
    height: auto;
    /* ドロップシャドウを強めに */
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.fv__role {
    position: absolute;
    bottom: 10%; /* 下基準に変更 */
    right: 5%;
    z-index: 10;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    top: auto;
}
.role-group {
    writing-mode: vertical-rl;
    color: #D93F79; /* 画像のピンク */
    font-weight: 800;
    font-family: "M PLUS Rounded 1c", sans-serif; /* 丸ゴシック */
    -webkit-text-stroke: 3px white;
    paint-order: stroke fill;
}
.role-lab {
    font-size: 1.3rem; /* 文字サイズアップ */
    margin-left: 8px;
    position: relative;
    top: -1.5em; /* 段差をつける */
}
.role-name {
    font-size: 2.6rem; /* 文字サイズ大幅アップ */
}
.role-note {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    color: #333;
    font-weight: 800;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-right: -18px; /* 更に近づける */
    margin-bottom: -15px; /* 更に近づける */
    background-color: transparent;
    padding: 0;
    transform: rotate(-8deg);
}


/* ============================================
   PC / Tablet Layout (960px以上)
   ============================================ */
@media (min-width: 960px) {
    .fv {
        padding-top: 90px; /* ヘッダー(80px) + 10pxの余白に短縮 */
        height: auto; /* 固定高さを廃止 */
        min-height: 100vh; /* 最低でも画面いっぱい */
        padding-bottom: 50px;
        align-items: flex-start; /* 上揃えにしてパディングを効かせる */
    }

    .fv__container {
        flex-direction: row; /* 横並び */
        justify-content: center; /* 中央に寄せる */
        align-items: center;
        height: auto; /* 高さを自動に */
        max-width: 1280px;
        gap: 0; /* ロゴと写真の距離を詰める */
        margin-top: auto; /* 上下中央寄せ（Safe Center） */
        margin-bottom: auto;
    }

    /* 左側コンテンツ */
    .fv__content {
        flex: 0 1 650px; /* 幅を制限して伸びすぎないように */
        margin-bottom: 0;
        padding-right: 0; /* 余白削除 */
        padding-left: 0;
        z-index: 2;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fv__project-name {
        width: 70%; /* メインロゴに対して70% */
        max-width: 480px;
        margin-bottom: 0; /* 少し間隔を空けて真ん中のロゴを下げる */
    }
    .fv__project-name img {
        width: 100%;
        height: auto;
    }

    .fv__logo {
        width: 100%;
        max-width: 650px; /* Workshopのロゴ幅(650px)に合わせる */
        margin-bottom: -10px; /* 詰める */
    }

    .fv__award-title {
        width: 50%; /* メインロゴに対して50% */
        max-width: 350px;
        margin-bottom: 30px;
    }

    .fv__info {
        width: 100%;
        max-width: 600px; /* ロゴ幅に合わせる */
        text-align: left; /* テキストは左揃え */
        padding-left: 20px; /* 少しインデント */
    }



    .fv__note {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .fv__notes-area {
        text-align: left;
    }

    .fv__notes-list {
        display: block;
        margin: 8px 0 0 0;
    }

    .fv__notes-list li {
        font-size: 0.85rem;
    }

    /* 右側ビジュアル */
    .fv__visual {
        flex: 0 0 500px; /* 幅を固定 */
        max-width: 500px;
        height: 100%;
        margin-top: 0;
        margin-left: -30px; /* 少し左に食い込ませる */
        position: relative;
        display: flex;
        align-items: flex-end; /* 下揃え */
        justify-content: flex-end;
    }

    .fv__noda {
        width: 100%;
        max-width: 500px;
        transform: translateY(40px); /* 少し下にずらして見切れさせる */
    }
    
    .fv__noda img {
        /* ドロップシャドウを強めに */
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
    }

    .fv__role {
        position: absolute;
        right: 12%; /* 画像の上にガッツリ被せる */
        bottom: 8%;
        z-index: 10;
        display: flex;
        flex-direction: row-reverse; /* 左側にnoteを配置するため */
        align-items: flex-end;
        width: auto;
    }

    .role-group {
        writing-mode: vertical-rl;
        color: #D93F79; /* 画像のピンク */
        font-weight: 800;
        line-height: 1.1;
        font-family: "M PLUS Rounded 1c", sans-serif; /* 丸ゴシック */
        /* 強力な白フチ */
        -webkit-text-stroke: 5px white;
        paint-order: stroke fill;
        text-shadow: none;
    }

    .role-lab {
        font-size: 1.6rem;
        margin-left: 15px; /* 行間 */
        letter-spacing: 0.1em;
        position: relative;
        top: -3em; /* 研究所を上に大きくずらす */
    }
    .role-name {
        font-size: 3.2rem;
        letter-spacing: 0.05em;
    }

    .role-note {
        writing-mode: vertical-rl;
        font-size: 0.9rem;
        color: #333;
        font-weight: 800;
        font-family: "M PLUS Rounded 1c", sans-serif;
        margin-right: -12px; /* 被りすぎない程度に近づける */
        margin-bottom: -10px;
        /* 白フチなし */
        -webkit-text-stroke: 0;
        text-shadow: none;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        transform: rotate(-8deg);
    }

    /* Philosophy Section (PC Layout) */
    .section-philosophy {
        padding-top: 40px; /* PCでも適度な余白に */
        padding-bottom: 60px;
    }

    /* コンテナの幅制限を解除して画面幅いっぱいに使う */
    .section-philosophy .container {
        max-width: 100%;
        padding-right: 5%; /* 右端に適度な余白 */
    }

    .philosophy__inner {
        display: flex;
        flex-direction: row; /* 横並びにする */
        align-items: center;
        justify-content: flex-start; /* 左寄せに変更して画像との距離を一定に保つ */
        position: relative;
        min-height: 600px; /* 画像の高さを確保するための最小高 */
    }

    .philosophy__visual {
        position: absolute;
        /* コンテナの左端から画面左端までの距離を計算して配置 */
        left: calc(50% - 50vw);
        top: 50%;
        /* 左に12%ずらして見切れさせる ＆ 上下中央配置 */
        transform: translate(-12%, -50%);
        
        /* ウィンドウ幅でサイズが変わらないように固定幅にする */
        width: 600px;
        height: auto;
        margin: 0;
        z-index: 1;
    }

    .philosophy__content {
        /* 画像の右端(約530px) + 余白(約50px) = 580px */
        margin-left: 580px;
        /* 幅はなりゆきだが、広がりすぎないように制限 */
        width: auto;
        max-width: 800px;
        position: relative;
        z-index: 2;
        padding-top: 0;
    }

    .philosophy__title {
        /* 幅が狭い時でも改行されないようにサイズ調整 */
        font-size: 1.5rem;
        margin-bottom: 30px;
        white-space: nowrap;
    }

    .philosophy__text {
        font-size: 1rem;
    }

    /* Workshopセクションのコンテナ幅も合わせる */
    .section-workshop .container {
        max-width: 1150px;
    }
}

/* ============================================
   Introduction
   ============================================ */
.intro {
    background-color: transparent; /* 背景を透明にしてパターンを見せる */
    color: #fff;
    padding: 40px 0 40px; /* Mobile: 上の余白を広げる */
    position: relative;
    z-index: 2;
}

.intro__header {
    text-align: left; /* 左揃えに変更 */
    margin: 0 auto 50px;
    width: 100%;
    max-width: 500px; /* 下のコンテンツ幅に合わせる */
    padding: 0; /* コンテンツ幅に合わせるためパディング削除 */
}

.intro__sub-title {
    color: #7FCDC1; /* ミントグリーン */
    font-size: clamp(1.1rem, 5.5vw, 1.5rem); /* Mobile: 説明文より大きく */
    font-weight: 900;
    margin-bottom: 0;
    font-family: "M PLUS Rounded 1c", sans-serif;
    line-height: 1.5;
    display: block;
    opacity: 1;
}

.intro__title {
    color: #7FCDC1; /* ミントグリーン */
    font-size: clamp(1.1rem, 5.5vw, 1.5rem); /* Mobile: サブタイトルと同じ */
    font-weight: 900;
    line-height: 1.5;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.intro__content {
    display: flex;
    flex-direction: column;
    gap: 50px; /* 少し詰める */
    align-items: center; /* 中央揃え */
}

.intro__col {
    width: 100%;
    max-width: 500px; /* スマホでの最大幅制限（元に戻す） */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左揃え */
}

.intro__col-title {
    margin: 0 0 15px 0; /* h3のデフォルトマージンをリセット */
    text-align: left;
    width: 100%;
    font-size: inherit; /* h3のデフォルトサイズをリセット */
    font-weight: inherit; /* h3のデフォルトウェイトをリセット */
}
.intro__col-title img {
    width: auto; /* 元に戻す */
    height: 50px; /* 元に戻す */
    max-width: 100%;
    margin-left: 0;
}

.intro__desc {
    color: #7FCDC1; /* ミントグリーン */
    font-size: 1.05rem; /* Mobile: 読みやすいサイズ */
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    text-align: left;
    width: 100%;
}

.intro__list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.intro__list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.95rem; /* Mobile: 縮小 */
    color: #fff;
}

.intro__list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-size: 0.8em;
    line-height: 2;
}

/* PC Layout */
@media (min-width: 960px) {
    .intro {
        padding-top: 60px; /* PC: 元の余白に戻す */
    }
    
    .intro__sub-title {
        font-size: 2.4rem;
        margin-bottom: 0;
        font-weight: 900; /* PCでは太く戻す */
        opacity: 1;
        white-space: normal; /* PCでは通常の改行 */
    }
    .intro__title {
        font-size: 2.4rem;
        line-height: 1.5;
    }

    .intro__content {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start; /* 上揃えに戻す */
        gap: 0;
        position: relative;
    }

    .intro__col {
        width: 50%;
        max-width: none; /* 制限解除 */
        box-sizing: border-box;
        align-items: flex-start; /* 左揃えに戻す */
    }

    /* 真ん中の区切り線 */
    .intro__content::after {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        background-color: #7FCDC1; /* ミントグリーン */
        opacity: 0.5;
    }

    .intro__col-title {
        text-align: left;
    }
    .intro__col-title img {
        width: auto; /* 幅指定解除 */
        height: auto; /* 高さ自動 */
        max-height: 80px; /* 高さを制限 */
        max-width: 100%; /* 親要素を超えないように */
        margin-bottom: 15px;
        margin-left: 0; /* 左寄せリセット */
    }

    .intro__desc {
        font-size: 1.6rem; /* 元のサイズに戻す */
        line-height: 1.5;
        margin-bottom: 30px;
        text-align: left; /* 左揃えに戻す */
    }

    .intro__list {
        padding: 0;
    }

    .intro__list li {
        font-size: 1.1rem; /* 元のサイズに戻す */
        line-height: 1.8;
    }

    /* コンテナ幅をFVのコンテンツ幅(650+500=1150px)に合わせる */
    /* .intro .container {
        max-width: 1150px;
    } */

    .intro__header {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
        padding-left: 20px; /* FVのテキスト位置に合わせる */
        width: 100%;
        max-width: 100%; /* PCでは幅制限解除 */
    }

    .intro__col--play {
        padding-left: 20px;
        padding-right: 50px; /* 中央線との余白 */
    }

    .intro__col--talk {
        padding-left: 50px; /* 中央線との余白 */
        padding-right: 20px; /* 左右対称にするための余白 */
    }

    /* Workshopセクションのコンテナ幅も合わせる */
    /* .section-workshop .container {
        max-width: 1150px;
    } */
}

/* タブレットサイズでの調整 (768px - 959px) - 削除 */
/* @media (min-width: 768px) and (max-width: 959px) { ... } */

/* ============================================
   Print / PDF Export Adjustments
   ============================================ */
@media print {
    /* 印刷時は横幅を強制的に100%に制限 */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ヘッダーの固定を解除し、幅を制限 */
    .header {
        position: absolute;
        width: 100%;
        max-width: 100%;
    }

    /* Philosophy画像の強制はみ出しを解除 */
    .philosophy__visual {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        position: relative !important;
        margin: 0 auto 20px !important;
    }
    
    /* コンテンツの余白調整 */
    .philosophy__content {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================
   Workshop FV Section (Final Implementation v18 - Left Aligned Logos)
   ============================================ */
.workshop-fv {
    padding: 0; /* 余白は親のsection-workshopで管理 */
    width: 100%;
    position: relative;
    overflow-x: clip;
}

.workshop-fv__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 30px; /* 間延びを防ぐために詰める */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* Introセクションと同じく、コンテナのパディングのみに依存させる */
    position: relative;
    z-index: 1;
}

/* PC Layout: Logos(Left) -> Text(Right) */
@media (min-width: 960px) {
    .workshop-fv__inner {
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
        /* コンテナ幅(1190px) - パディング(40px) = 1150px (FVと同じコンテンツ幅) */
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ========== 右側コンテンツ（テキスト） ========== */
.ws-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左揃えに変更 */
    margin-top: 10px; /* 間延びを防ぐために詰める */
    width: 100%; /* 幅を確保して左寄せを有効にする */
}

@media (min-width: 960px) {
    .ws-info {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        /* 右端から少し離して、上のセクションのコンテンツ幅に合わせる */
        margin-right: 60px; 
        position: relative;
        width: auto;
        height: auto;
        min-height: 600px;
    }
}

/* 下部ロゴ（ワークショップ） */
.workshop-bottom-logo {
    text-align: center;
    margin-top: 40px;
    width: 100%;
    padding-bottom: 0;
}
.workshop-bottom-logo img {
    width: 60px; /* スマホ時は小さく */
    height: auto;
    opacity: 1;
    display: inline-block;
}

/* 下部ロゴ（アワード） */
.award-bottom-logo {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.award-bottom-logo img {
    width: 120px; /* スマホ時は小さく */
    height: auto;
    display: inline-block;
}

@media (min-width: 960px) {
    .workshop-bottom-logo {
        margin-top: 80px;
    }
    .workshop-bottom-logo img {
        width: 100px; /* PC時は大きく */
    }
    .award-bottom-logo {
        margin-top: 80px;
    }
    .award-bottom-logo img {
        width: 200px; /* PC時は大きく */
    }
}

/* ========== 縦書きテキスト ========== */
.ws-text {
    display: flex;
    flex-direction: column;
    gap: 0.3em; /* 行間を縮めてまとまりを出す */
    align-items: flex-start; /* 左揃え */
    width: 100%; /* コンテンツ幅に合わせる */
    max-width: 500px; /* Introと同じ最大幅 */
    margin: 0 auto; /* ブロック全体を中央寄せ */
    flex-shrink: 0;
    position: relative;
    z-index: 1; /* クリスタルの上 */
    padding: 0; /* パディング削除（コンテナのパディングに任せる） */
}

@media (min-width: 960px) {
    .ws-text {
        flex-direction: row-reverse; /* 右から左へ読むように戻す */
        align-items: flex-start;
        gap: 1.0rem; /* 行間を狭める */
        margin: 0;
        width: auto; /* PCでは幅自動 */
        max-width: none; /* PCでは制限解除 */
        padding: 0; /* PCではパディング解除 */
    }
}

.ws-text__line {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 5.5vw, 1.5rem); /* Awardセクションのintro__titleと同じ */
    line-height: 1.5;
    color: var(--color-text-main);
    text-align: left; /* 左揃え */
    letter-spacing: 0.05em;
    white-space: normal; /* スマホでは折り返しを許可 */
    margin: 0; /* pタグのデフォルトマージンをリセット */
}

.ws-text__line .pink {
    color: var(--color-pink);
}

@media (min-width: 960px) {
    .ws-text__line {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 2.2rem; /* フォントサイズを少し小さく */
        line-height: 1.5;
        letter-spacing: 0; /* 縦に伸びすぎないように字間を詰める */
        text-align: left;
        white-space: nowrap;
        /* 白フチ削除 */
        text-shadow: none;
    }
}

/* ========== 左側カラム（ロゴ + 募集情報） ========== */
.ws-left-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 960px) {
    .ws-left-col {
        flex: 0 1 650px; /* FVと同じflex設定に変更（縮小を許可） */
        width: auto; /* 固定幅を解除 */
        align-items: center; /* FVに合わせて中央揃え（メインロゴ用） */
    }
}

/* ========== ロゴ群（復元） ========== */
.ws-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* max-width: 400px;  FVに合わせて削除 */
    margin-bottom: 20px;
}

.ws-visual__project {
    width: 70%; /* FVに合わせて60% -> 70% */
    max-width: 320px; /* FVに合わせて追加 */
    height: auto;
    margin-bottom: 5px; /* FVに合わせて10px -> 5px */
}

.ws-visual__main {
    width: 95%; /* FVに合わせて100% -> 95% */
    max-width: 520px; /* FVに合わせて追加 */
    height: auto;
    margin-bottom: -5px; /* FVに合わせて15px -> -5px */
}

.ws-visual__group {
    display: flex;
    align-items: flex-end; /* 下揃え */
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 400px; /* モバイルでの最大幅を制限（元のサイズ感を維持） */
    margin-top: 20px; /* メインロゴとの間隔を確保 */
}

.ws-visual__workshop {
    width: 45%;
    height: auto;
}

.ws-visual__recruit {
    width: 45%;
    height: auto;
}

@media (min-width: 960px) {
    .ws-visual {
        max-width: 650px; /* FVと同じ幅 */
        align-items: center; /* メインロゴは中央揃え */
        padding-left: 0; /* パディング削除 */
    }
    
    .ws-visual__project {
        width: 70%; /* FVと同じ比率 */
        max-width: 480px; /* FVと同じ最大幅 */
        margin-bottom: 0; /* FVと同じマージン */
    }

    .ws-visual__main {
        width: 100%; /* FVに合わせて100% */
        max-width: 650px; /* FVに合わせてPCサイズ(650px)に上書き */
        margin-bottom: -10px; /* FVと同じマージン（詰める） */
    }
    
    .ws-visual__group {
        justify-content: flex-start; /* 左揃え */
        gap: 20px;
        /* テキスト情報(.ws-recruit-info)の左端に合わせるための調整 */
        width: 100%;
        max-width: 600px; /* テキスト情報と同じ最大幅 */
        padding-left: 20px; /* テキスト情報と同じインデント */
        margin-top: 30px; /* メインロゴとの間隔 */
    }
}

/* ========== 募集情報（Award FV風） ========== */
.ws-recruit-info {
    width: 100%;
    /* max-widthはモバイルでは指定しない（.fv__infoと同様） */
    margin-top: 20px; /* ネガティブマージンを廃止し、適切な余白を設定 */
    text-align: center; /* Mobile: Center */
    color: var(--color-text-main);
    position: relative; /* 重なり順制御のため */
    z-index: 20;
}

@media (min-width: 960px) {
    .ws-recruit-info {
        max-width: 600px; /* Match Award (.fv__info) */
        text-align: left; /* PC: Left */
        padding-left: 20px; /* Match Award (.fv__info) */
        margin-top: 30px; /* PCでは少し広げる */
    }
    
    /* 3アイテム横並び用の調整 */
    .ws-recruit-info .c-spec-list {
        flex-wrap: nowrap;
        gap: 20px;
        justify-content: flex-start;
    }
    
    .ws-recruit-info .c-spec-list__item {
        padding: 0 0.8em;
    }
    
    .ws-recruit-info .c-spec-list__item:has(.c-spec-list__unit:first-child:not(:last-child)) {
        padding-left: 2.2em;
    }
    
    /* 定員：右に */
    .ws-recruit-info .c-spec-list__item:first-child {
        margin-left: 15px;
    }
    
    /* 料金 */
    .ws-recruit-info .c-spec-list__item:nth-child(2) {
        margin-left: 0;
    }
    
    /* 参加資格：右に */
    .ws-recruit-info .c-spec-list__item:nth-child(3) {
        margin-left: 25px;
    }
}



/* Note */
.ws-note-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Mobile: Center */
    gap: 5px;
}
@media (min-width: 960px) {
    .ws-note-container {
        align-items: flex-start; /* PC: Left */
    }
}

.ws-note {
    display: inline-block;
    font-size: 0.9rem; /* Match .fv__note (Mobile) */
    background-color: var(--color-pink);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
}
@media (min-width: 960px) {
    .ws-note {
        font-size: 1rem; /* Match .fv__note (PC) */
        padding: 8px 20px;
    }
}

.ws-notes-area {
    margin-top: 15px;
    text-align: center;
}

.ws-notes-list {
    list-style: none;
    margin: 12px auto 0;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.ws-notes-list li {
    font-size: 0.75rem;
    color: var(--color-text-main);
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.ws-notes-list li strong {
    font-weight: 700;
}

@media (min-width: 960px) {
    .ws-notes-area {
        text-align: left;
    }

    .ws-notes-list {
        display: block;
        margin: 12px 0 0 0;
    }

    .ws-notes-list li {
        font-size: 0.85rem;
    }
}

.ws-sub-note {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
}

/* ============================================
   Workshop Menu (Schedule)
   ============================================ */
.workshop-menu {
    padding-top: 60px;
    padding-bottom: 40px;
}

.ws-menu-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 5vw, 1.8rem); /* スマホで収まるよう可変 */
    color: #6A4C9C; /* 画像に近い少し青みのある紫 */
    text-align: left; /* 左揃え */
    margin: 0 auto 20px auto; /* 中央寄せしつつ下マージン確保 */
    width: 100%; /* コンテナ幅いっぱい */
    max-width: 500px;
    letter-spacing: 0.1em;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 0.5em;
    white-space: nowrap; /* 改行させない */
    box-sizing: border-box;
}

/* >>> 矢印 */
.ws-menu-heading__arrows {
    letter-spacing: 0.05em;
    font-family: var(--font-en);
    font-weight: 700;
    flex-shrink: 0;
}

/* 見出し右の波線 */
.ws-menu-heading::after {
    content: "";
    flex: 1;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='10' viewBox='0 0 40 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q10 0 20 5 T40 5' fill='none' stroke='%238989c7' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 40px 10px;
    opacity: 0.6;
    min-width: 20px;
}

.ws-menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0 auto; /* 中央寄せ */
    padding: 0 0 30px 0; /* 下だけ波線用の余白 */
    list-style: none; /* リストマーカーを削除 */
    position: relative;
}

/* リスト下部にだけ波線 */
.ws-menu-list::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='10' viewBox='0 0 40 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q10 0 20 5 T40 5' fill='none' stroke='%238989c7' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 40px 10px;
    opacity: 0.6;
}

/* スマホ・タブレットではIntroに合わせて幅を制限 */
@media (max-width: 959px) {
    .ws-menu-heading,
    .ws-menu-list {
        max-width: 500px;
    }
}

/* ========================================
   モバイルレイアウト（完璧版）
   左: 日付バブル
   右上: タイトル（2行） + ロゴ（右寄せ）
   右下: 説明文（全幅）
   ======================================== */

.ws-menu-item {
    display: grid;
    grid-template-columns: 70px 1fr; /* 左70px、右可変 */
    grid-template-rows: auto auto; /* 1行目:タイトル+ロゴ、2行目:説明文 */
    gap: 6px 12px;
    position: relative;
    padding-bottom: 0;
    align-items: start;
}

.ws-menu-item::after {
    display: none;
}

/* === 日付バブル: 左カラム（2行分） === */
.ws-menu-date {
    grid-row: 1 / 3;
    grid-column: 1;
    position: relative;
    width: 70px;
    height: 60px;
    justify-self: center;
    align-self: start;
    margin-top: 5px;
}

.ws-menu-date-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.type-green .ws-menu-date-bg {
    filter: hue-rotate(140deg) brightness(1.1);
}

.ws-menu-date-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    color: #fff;
}

.ws-menu-date-text .month {
    position: absolute;
    top: 28%;
    left: 28%;
    transform: translate(-50%, -50%);
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 500;
}

.ws-menu-date-text .slash {
    display: none;
}

.ws-menu-date-text .day {
    position: absolute;
    top: 55%;
    left: 63%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.05em;
    text-align: center;
    font-weight: 500;
}

.ws-menu-date-text .weekday {
    position: absolute;
    top: 80%;
    left: 66%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    line-height: 1;
    font-weight: 800;
}

/* === コンテンツエリア === */
.ws-menu-content {
    display: contents;
}

/* テキストグループも展開 */
.ws-menu-text-group {
    display: contents;
}

/* タイトル: 1行目・右カラム（ロゴ分スペース確保） */
.ws-menu-title {
    grid-row: 1;
    grid-column: 2;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-size: 1.0rem;
    color: #D93F79;
    line-height: 1.4;
    margin: 0;
    padding-right: 55px; /* ロゴ用スペース */
    transform: rotate(-0.5deg);
    text-align: left;
}

/* 説明文: 2行目・右カラム */
.ws-menu-desc {
    grid-row: 2;
    grid-column: 2;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

/* === ロゴ: 1行目・右カラム（右寄せ） === */
.ws-menu-instructor {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    align-self: center;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    margin-right: 25px; /* 右端からもっと内側に */
}

.ws-menu-instructor.logo-only {
    width: 50px;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    margin-right: 10px; /* 右端から内側に */
}

.instructor-logo-img {
    height: auto;
    width: 100%;
    max-width: 50px;
    max-height: 45px;
    display: block;
    object-fit: contain;
}

/* 各ロゴ個別調整 */
.logo-kosen {
    max-width: 55px;
}

.logo-ictpark {
    max-width: 50px;
}

.logo-kokusai {
    max-width: 45px;
}

.logo-smileboom {
    max-width: 42px;
}

/* ダイナム用（Powered by付き） */
.ws-menu-instructor--dynam {
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.ws-menu-instructor--dynam .instructor-powered-by {
    font-size: 0.45rem;
    margin-bottom: 2px;
    color: #666;
}

.ws-menu-instructor--dynam .instructor-logo-img {
    max-width: 55px;
}

.instructor-powered-by {
    font-size: 0.4rem;
    margin-bottom: 2px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    color: #666;
}

.logo-dynam {
    width: 100%;
    height: auto;
}

/* PC Layout */
@media (min-width: 960px) {
    .workshop-menu {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .ws-menu-instructor--dynam {
        transform: scale(1.0); /* PCでは標準サイズに戻す */
        width: auto; /* モバイル用の幅制限をリセット */
    }
    
    .ws-menu-instructor--dynam .instructor-logo-img {
        max-width: none; /* モバイル用の制限をリセット */
        height: 60px;
    }

    .instructor-powered-by {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    /* FVと同じ幅に合わせる（定員100名の「1」の左ラインに合わせる） */
    .workshop-menu .container {
        max-width: 1150px; /* FVと同じ幅に統一 */
        padding-left: 40px; /* FVの募集情報(.ws-recruit-info)のpadding-left: 20px + container padding 20px = 40px */
        padding-right: 40px; /* 右側にも余白を確保 */
        box-sizing: border-box;
    }

    .ws-menu-heading {
        font-size: 1.6rem; /* アワード内容と同じサイズ */
        margin-bottom: 0;
        max-width: none; /* PCでは制限解除 */
    }

    .ws-menu-list {
        gap: 40px;
        width: 100%; /* コンテナ幅いっぱい */
        margin: 0 auto;
        max-width: none; /* PCでは制限解除 */
        padding: 40px 0 50px 0; /* 上40px、下50px */
    }

    .ws-menu-item {
        display: flex; /* Grid解除 */
        flex-direction: row; /* 横並び */
        align-items: center; /* 上揃えから中央揃えに変更してバランスをとる */
        gap: 40px; /* ギャップを少し広げる */
        padding-bottom: 0;
    }

    .ws-menu-item::after {
        display: none; /* PCでも波線なし */
    }

    .ws-menu-date {
        width: 140px;
        height: 120px;
        margin: 0; /* マージンリセット */
        grid-row: auto;
        grid-column: auto;
        flex-shrink: 0; /* 縮小しない */
    }
    
    .ws-menu-date-text .month { font-size: 2.2rem; }
    .ws-menu-date-text .day { font-size: 2.6rem; }
    .ws-menu-date-text .weekday { font-size: 1.2rem; margin-bottom: 0; }

    .ws-menu-content {
        display: flex; /* contents解除 */
        text-align: left;
        flex: 1;
        padding-top: 0; /* 上余白削除（align-items: centerにしたため） */
        flex-direction: row;
        justify-content: space-between;
        align-items: center; /* 中央揃え */
        gap: 30px;
    }

    .ws-menu-text-group {
        display: block; /* contents解除 */
        flex: 1;
        grid-row: auto;
        grid-column: auto;
    }

    .ws-menu-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-align: left;
        align-self: auto; /* リセット */
        grid-row: auto;
        grid-column: auto;
    }

    .ws-menu-desc {
        font-size: 1rem;
        margin-bottom: 0; /* 横並びになるので下余白削除 */
        background-color: transparent; /* PCでは背景なしでもOK */
        padding: 0;
        padding-right: 0; /* モバイル用のpadding-rightをリセット */
        margin-top: 0; /* リセット */
        grid-row: auto;
        grid-column: auto;
    }

    .ws-menu-instructor {
        margin: 0;
        justify-content: flex-start;
        flex-shrink: 0;
        /* 右側に配置 */
        margin-top: 0;
        width: auto; /* リセット */
        grid-row: auto;
        grid-column: auto;
        position: static; /* absoluteをリセット */
    }
    
    /* ロゴのみ表示する場合のスタイル（PC） */
    .ws-menu-instructor.logo-only {
        margin-top: 0;
        align-self: center; 
        width: 160px; /* 幅を少し狭める */
        justify-content: center;
        display: flex;
        grid-row: auto;
        grid-column: auto;
        position: static; /* absoluteをリセット */
    }
    
    .instructor-logo-img {
        height: 80px; /* PCでのデフォルトサイズ */
        width: auto;
        max-width: 100%;
        max-height: none; /* モバイル用の制限をリセット */
        object-fit: contain;
    }
    
    /* PC用：各ロゴの個別調整 */
    .instructor-logo-img.logo-kosen {
        max-width: 100%;
        height: 65px; /* ictparkと同じ */
    }
    
    .instructor-logo-img.logo-ictpark {
        max-width: 100%;
        height: 65px; /* 少し小さく */
    }
    
    .instructor-logo-img.logo-kokusai {
        max-width: 100%;
        height: 85px; /* 少し大きく */
    }
    
    .instructor-logo-img.logo-smileboom {
        max-width: 100%;
        height: 95px; /* 大きく */
    }
    
    .instructor-logo-img.logo-dynam {
        max-width: none;
        height: 60px;
    }
    
    .ws-menu-instructor--dynam .instructor-powered-by {
        font-size: 0.9rem; /* 大きく */
    }
}

/* ============================================
   Award Entry Buttons - CSS Grid完璧版
   ============================================ */
.award-entry-area {
    margin: 80px auto 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 680px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2; /* パターンより手前に */
    scroll-margin-top: 100px; /* ヘッダー分のオフセット */
}

/* メインボタン（アワードに参加する） */
.btn-award-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 28px 20px;
    background-color: #e95295;
    box-shadow: 8px 8px 0 #000;
    font-size: 1.6rem;
    color: #fff;
    border: 4px solid #000;
    text-decoration: none;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    border-radius: 16px;
    box-sizing: border-box;
    transition: all 0.15s ease;
}

/* スマホでは改行、PCでは1行 */
.btn-award-main span {
    display: block;
}

@media (min-width: 480px) {
    .btn-award-main {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .btn-award-main span {
        display: inline;
    }
}

.btn-award-main:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 #000;
}

.btn-award-main:active {
    transform: translate(8px, 8px);
    box-shadow: none;
}

/* ワークショップ用エリア調整 */
.award-entry-area--workshop {
    margin: 40px auto 50px;
}

/* ワークショップボタン：スマホで2行表示 */
.award-entry-area--workshop .btn-award-main span {
    max-width: 10em; /* 折り返し幅を制限 */
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (min-width: 480px) {
    .award-entry-area--workshop .btn-award-main span {
        max-width: none;
    }
}

.btn-sub-text {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 6px;
}
/* ============================================
   カードコンテナ
   ============================================ */
.entry-cards {
    display: grid;
    grid-template-columns: 1fr;  /* モバイルは1カラム */
    gap: 20px;
    width: 100%;
    max-width: 400px;  /* モバイル時のカード最大幅 */
    margin: 0 auto;
}

/* 1カラム時はボタンとカードを同じ幅に */
.btn-award-main {
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   Entry Card - v11（中央寄せ対応）
   
   【設計変数】
   --btn-space: 4cqw（ボタン周り3方の余白）
   --btn-size: 48cqw（ボタンサイズ）
   --right-text-w: 7cqw（右テキスト1文字幅）
   
   タイトル幅 = btn-size + btn-space + right-text-w
            = 48 + 4 + 7 = 59cqw
   タイトルフォント = 59cqw ÷ 7文字 ≈ 8.4cqw
   ============================================ */
.entry-card {
    container-type: inline-size;
    contain: layout style; /* パフォーマンス最適化 */
    
    /* 基準変数（clampで最小・最大を制限） */
    --shadow: clamp(4px, 1.5cqw, 8px);
    --border-radius: clamp(8px, 2.5cqw, 14px);
    --inner-gap: clamp(12px, 5cqw, 24px);
    
    /* ボタン周り統一余白 */
    --btn-space: 4cqw;
    
    /* サイズ（原理的に計算） */
    --btn-size: 48cqw;
    --right-text-w: 7cqw;
    --title-font: 8.4cqw;
    
    /* 左テキストとメインの間隔 */
    --col-gap: 2cqw;
    
    /* カード: 中央寄せのためのコンテナ */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* モバイル時は余白を広めに */
    padding: 5cqw 5cqw 4cqw 4.5cqw;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    background-color: #F6E6C3;
}

.entry-card--cream { background-color: #F6E6C3; }
.entry-card--white { background-color: #fff; }

/* 内側ラッパー: コンテンツをまとめる */
.entry-card__inner {
    display: flex;
    gap: var(--inner-gap);
}

/* --------------------------------------------
   左テキスト: 「作品を作る」縦書き (5文字)
   -------------------------------------------- */
.entry-card__left-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    /* 影の分 + ボタン上余白を狭めた分(4-1.5=2.5cqw) */
    margin-bottom: calc(var(--shadow) + 2.5cqw);
}

.entry-card__left-text .char {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 15cqw;
    line-height: 1;
    margin-bottom: -1.5cqw;
}

.entry-card__left-text .char:last-child {
    margin-bottom: 0;
}

.entry-card__left-text .char--black { color: #444; }
.entry-card__left-text .char--pink { color: #e95295; }
.entry-card__left-text .char--green { color: #22ac38; }

/* --------------------------------------------
   メインエリア: ヘッダー + ボタン行
   -------------------------------------------- */
.entry-card__main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 影の分 + ボタン上余白を狭めた分(4-1.5=2.5cqw) */
    margin-bottom: calc(var(--shadow) + 2.5cqw);
}

/* ヘッダー */
.entry-card__header {
    display: flex;
    flex-direction: column;
}

.entry-card__subtitle {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 7cqw;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.entry-card__subtitle .text-pink { color: #e95295; }

.entry-card__title {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: var(--title-font);
    line-height: 1.15;
    margin: 0;
}

.entry-card__title.text-pink { color: #e95295; }
.entry-card__title.text-green { color: #22ac38; }

/* --------------------------------------------
   ボタン行: ボタン + 右テキスト
   
   【原理】3方余白統一
   - margin-top = btn-space（上余白）
   - gap = btn-space（右余白）
   -------------------------------------------- */
.entry-card__btn-row {
    display: flex;
    align-items: flex-end;
    gap: var(--btn-space);
    margin-top: 0cqw;
}

.entry-card__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    
    width: var(--btn-size);
    aspect-ratio: 1 / 1;
    
    background-color: #c94b82;
    color: #fff;
    border: clamp(2px, 0.8cqw, 4px) solid #333;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow) var(--shadow) 0 #333;
    
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    
    /* 気持ち上に */
    margin-bottom: 1cqw;
}

.entry-card__btn--green {
    background-color: #22ac38;
}

.entry-card__btn:hover {
    transform: translate(calc(var(--shadow) / 2), calc(var(--shadow) / 2));
    box-shadow: calc(var(--shadow) / 2) calc(var(--shadow) / 2) 0 #333;
}

.entry-card__btn:active {
    transform: translate(var(--shadow), var(--shadow));
    box-shadow: none;
}

.btn-text-main {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 5.5cqw;
    line-height: 1.4;
}

.btn-text-sub {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 9cqw;
    line-height: 1;
}

/* --------------------------------------------
   右テキスト: 「申込はこちら」縦書き (6文字)
   高さ = ボタン高さ + 影（視覚的下端揃え）
   -------------------------------------------- */
.entry-card__right-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(var(--btn-size) + var(--shadow));
}

.entry-card__right-text .char {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: var(--right-text-w);
    line-height: 1;
    color: #666;
}

/* ============================================
   PC Layout (768px以上)
   ============================================ */
@media (min-width: 768px) {
    .award-entry-area {
        margin: 100px auto 120px;
        gap: 35px;
        max-width: 800px;
    }

    .award-entry-area--workshop {
        margin: 50px auto 60px;
    }

    .btn-award-main {
        font-size: 2.2rem;
        padding: 35px 30px;
        max-width: none;  /* PC時は制限解除 */
    }

    .btn-sub-text {
        font-size: 1.1rem;
        margin-top: 8px;
    }

    .entry-cards {
        grid-template-columns: 1fr 1fr;  /* PC表示は2カラム */
        gap: 25px;
        max-width: none;  /* PC時は制限解除 */
    }
    
    .entry-card {
        /* PC時は余白を狭めに */
        padding: 3.5cqw 3.5cqw 3cqw 3cqw;
    }
}

/* ============================================
   大画面用 (1024px以上)
   ============================================ */
@media (min-width: 1024px) {
    .award-entry-area {
        max-width: 900px;
        gap: 40px;
    }

    .btn-award-main {
        font-size: 2.5rem;
        padding: 40px 40px;
    }

    .entry-cards {
        gap: 30px;
        max-width: 850px;  /* 大画面でもカードが大きくなりすぎないよう制限 */
        margin: 0 auto;
    }
    
    .entry-card {
        /* 大画面時はさらに余白を狭く */
        padding: 3cqw 3cqw 2.5cqw 2.5cqw;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.section-faq {
    background: #fff;
    padding: 60px 0 40px;
}

.faq__heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-text-main);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.faq__item[open] {
    background: #f0f0f0;
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    line-height: 1.5;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: "+";
    margin-left: auto;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-pink);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
    content: "−";
}

.faq__q-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--color-pink);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: var(--font-en);
}

.faq__q-text {
    font-size: 0.95rem;
    flex: 1;
    line-height: 1.5;
}

.faq__answer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 20px 20px;
    line-height: 1.7;
}

.faq__a-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #4a90d9;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: var(--font-en);
}

.faq__a-text {
    font-size: 0.9rem;
    color: #555;
    flex: 1;
    line-height: 1.7;
}

.faq__a-text strong {
    color: var(--color-text-main);
}

/* PC表示 */
@media (min-width: 960px) {
    .section-faq {
        padding: 60px 0 40px;
    }

    .faq__heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .faq__question {
        padding: 20px 25px;
    }

    .faq__q-mark {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .faq__q-text {
        font-size: 1.05rem;
    }

    .faq__answer {
        padding: 0 25px 25px 25px;
    }

    .faq__a-mark {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .faq__a-text {
        font-size: 0.95rem;
    }
}


