@charset "UTF-8";

/* ==========================================================================
   report.css
   開催レポート記事ページ専用スタイル
   ・すべてのセレクタを .rp- プレフィックスで独立させ、他ページ／style.css へ干渉させない
   ・ヘッダー／フッター／Back to Top は style.css（index.html 準拠）をそのまま使用
   ========================================================================== */

/* --- ページ全体 --- */
.rp-page {
    background-color: #fff;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rp-sp-br {
    display: none;
}

/* --- ページ読み込み時アニメーション（Hero） --- */
@keyframes rpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rp-hero-inner>* {
    opacity: 0;
    animation: rpFadeInUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.rp-hero-inner>*:nth-child(1) {
    animation-delay: 0.1s;
}

.rp-hero-inner>*:nth-child(2) {
    animation-delay: 0.25s;
}

.rp-hero-inner>*:nth-child(3) {
    animation-delay: 0.4s;
}

.rp-hero-inner>*:nth-child(4) {
    animation-delay: 0.6s;
}

.rp-hero-inner>*:nth-child(5) {
    animation-delay: 0.75s;
}

/* --- Hero --- */
.rp-hero {
    background-color: #000;
    color: #fff;
    padding: 110px 20px 90px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.rp-hero-inner {
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.rp-crumb {
    display: flex;
    gap: 10px;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.rp-crumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.rp-crumb a:hover {
    color: #c5a365;
}

.rp-crumb-current {
    color: #c5a365;
}

.rp-hero-label {
    font-family: 'EB Garamond', serif;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.4em;
    color: #c5a365;
}

.rp-hero-title {
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.rp-hero-sub {
    font-size: clamp(15px, 2vw, 20px);
    letter-spacing: 0.15em;
    color: #c5a365;
    font-weight: 400;
}

.rp-hero-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    border-top: 1px solid rgba(197, 163, 101, 0.5);
    padding-top: 22px;
}

/* --- メインビジュアル --- */
.rp-keyvisual {
    margin: -40px auto 0;
    max-width: 960px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rp-keyvisual img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.rp-caption {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* --- 本文 --- */
.rp-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 20px 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 16px;
    line-height: 2.3;
    letter-spacing: 0.05em;
    color: #333;
}

.rp-lede {
    font-size: 17px;
}

/* KEY POINTS */
.rp-keypoints {
    border: 1px solid rgba(197, 163, 101, 0.5);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fcfaf6;
}

.rp-keypoints-title {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    letter-spacing: 0.35em;
    color: #72613b;
    font-weight: 400;
}

.rp-keypoints-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rp-keypoints-list li {
    font-size: 15px;
    line-height: 1.9;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

/* 開催概要（定義リスト） */
.rp-spec {
    border-top: 1px solid rgba(197, 163, 101, 0.4);
    border-bottom: 1px solid rgba(197, 163, 101, 0.4);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rp-spec-row {
    display: flex;
    gap: 16px;
    font-size: 15px;
    line-height: 1.9;
}

.rp-spec-term {
    width: 8.5em;
    flex-shrink: 0;
    color: #72613b;
}

/* 見出し */
.rp-h2 {
    margin-top: 36px;
    font-size: clamp(22px, 3vw, 28px);
    color: #c5a365;
    letter-spacing: 0.15em;
    font-weight: 500;
    line-height: 1.7;
    border-left: 1px solid #c5a365;
    padding-left: 24px;
}

.rp-h3-faq {
    margin-top: 10px;
    font-size: clamp(17px, 2.2vw, 20px);
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #72613b;
    line-height: 1.8;
}

/* 引用 */
.rp-quote {
    margin: 10px 0;
    position: relative;
    padding: 24px 34px;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 2.1;
    letter-spacing: 0.1em;
    color: #222;
}

.rp-quote::before,
.rp-quote::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15px;
    height: 100%;
    border-top: 1px solid #c5a365;
    border-bottom: 1px solid #c5a365;
    opacity: 0.8;
}

.rp-quote::before {
    left: 0;
    border-left: 1px solid #c5a365;
}

.rp-quote::after {
    right: 0;
    border-right: 1px solid #c5a365;
}

/* 本文中の図版 */
.rp-figure {
    margin-top: 20px;
}

.rp-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.rp-figure .rp-caption {
    margin-top: 12px;
}

/* まとめの結び */
.rp-closing-line {
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #222;
}

/* 編集情報 */
.rp-note {
    margin-top: 40px;
    border-top: 1px solid rgba(197, 163, 101, 0.5);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rp-note-title {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: #72613b;
    font-weight: 400;
}

.rp-note-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    line-height: 1.9;
    color: #666;
}

/* --- CTA --- */
.rp-cta {
    padding: 110px 20px;
    background-color: #000;
    background-image: url('images/bg_08.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
}

.rp-cta-inner {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.rp-cta-label {
    font-family: 'EB Garamond', serif;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.4em;
    color: #c5a365;
}

.rp-cta-title {
    font-size: clamp(26px, 4vw, 44px);
    color: #b7a664;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.rp-cta-text {
    font-size: clamp(14px, 2vw, 20px);
    line-height: 2.2;
    letter-spacing: 0.1em;
    color: #eee;
}

.rp-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.rp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    height: 64px;
    width: min(340px, 80vw);
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-size: 15px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.rp-btn:hover {
    opacity: 0.8;
    color: #fff;
}

.rp-btn-brown {
    background-color: #7b684c;
}

.rp-btn-gold {
    background-color: #bea36d;
}

.rp-btn-icon {
    width: 1.25em;
    height: auto;
    margin-top: -0.1em;
}

.rp-back {
    margin-top: 10px;
    font-family: 'EB Garamond', serif;
    color: #c5a365;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(197, 163, 101, 0.5);
    padding-bottom: 3px;
    transition: color 0.3s;
}

.rp-back:hover {
    color: #fff;
}

/* --- スクロール連動アニメーション --- */
/* .fade-in / .is-visible は style.css（index.html 共通）を使用。
   ここでは記事本文向けの補助バリエーションのみ定義する。 */

/* 画像はスケール＋フェードでゆっくり立ち上げる */
.rp-figure.fade-in,
.rp-keyvisual.fade-in {
    transform: translateY(40px);
}

.rp-figure.fade-in.is-visible,
.rp-keyvisual.fade-in.is-visible {
    transform: translateY(0);
}

.rp-figure.fade-in img,
.rp-keyvisual.fade-in img {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rp-figure.fade-in.is-visible img,
.rp-keyvisual.fade-in.is-visible img {
    opacity: 1;
    transform: scale(1);
}

/* 引用の罫線を左右から描き出す */
.rp-quote.fade-in::before,
.rp-quote.fade-in::after {
    opacity: 0;
    transition: opacity 1s ease 0.3s;
}

.rp-quote.fade-in.is-visible::before,
.rp-quote.fade-in.is-visible::after {
    opacity: 0.8;
}

/* KEY POINTS のリストを1項目ずつ表示 */
.rp-keypoints.fade-in .rp-keypoints-list li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.rp-keypoints.fade-in.is-visible .rp-keypoints-list li {
    opacity: 1;
    transform: translateY(0);
}

.rp-keypoints.fade-in.is-visible .rp-keypoints-list li:nth-child(1) {
    transition-delay: 0.15s;
}

.rp-keypoints.fade-in.is-visible .rp-keypoints-list li:nth-child(2) {
    transition-delay: 0.28s;
}

.rp-keypoints.fade-in.is-visible .rp-keypoints-list li:nth-child(3) {
    transition-delay: 0.41s;
}

.rp-keypoints.fade-in.is-visible .rp-keypoints-list li:nth-child(4) {
    transition-delay: 0.54s;
}

.rp-keypoints.fade-in.is-visible .rp-keypoints-list li:nth-child(5) {
    transition-delay: 0.67s;
}

/* 開催概要の各行を順に表示 */
.rp-spec.fade-in .rp-spec-row {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.rp-spec.fade-in.is-visible .rp-spec-row {
    opacity: 1;
    transform: translateY(0);
}

.rp-spec.fade-in.is-visible .rp-spec-row:nth-child(1) { transition-delay: 0.10s; }
.rp-spec.fade-in.is-visible .rp-spec-row:nth-child(2) { transition-delay: 0.20s; }
.rp-spec.fade-in.is-visible .rp-spec-row:nth-child(3) { transition-delay: 0.30s; }
.rp-spec.fade-in.is-visible .rp-spec-row:nth-child(4) { transition-delay: 0.40s; }
.rp-spec.fade-in.is-visible .rp-spec-row:nth-child(5) { transition-delay: 0.50s; }
.rp-spec.fade-in.is-visible .rp-spec-row:nth-child(6) { transition-delay: 0.60s; }

/* 読了プログレスバー（ヘッダー下端に表示） */
.rp-progress {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 999;
    background-color: rgba(197, 163, 101, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.rp-progress.is-active {
    opacity: 1;
}

.rp-progress-bar {
    width: 0;
    height: 100%;
    background-color: #c5a365;
    transform-origin: left center;
}

/* --- レスポンシブ --- */
@media (max-width: 900px) {
    .rp-hero {
        padding: 80px 20px 70px;
    }

    .rp-body {
        padding: 60px 20px 80px;
    }

    .rp-cta {
        padding: 80px 20px;
        background-attachment: scroll;
    }

    .rp-lede {
        font-size: 16px;
    }
}

/* ヘッダーがオーバーレイ表示になる幅では、プログレスバーを画面最上部へ */
@media (max-width: 1000px) {
    .rp-progress {
        top: 0;
    }
}

@media (max-width: 600px) {
    .rp-sp-br {
        display: block;
    }

    .rp-hero-title {
        letter-spacing: 0;
    }

    .rp-crumb {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rp-keyvisual {
        margin-top: -24px;
    }

    .rp-quote {
        padding: 22px 24px;
        font-size: 17px;
        line-height: 1.9;
    }

    .rp-btn {
        width: 100%;
        max-width: 340px;
    }

    .rp-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .rp-keypoints {
        padding: 30px 22px;
    }

    .rp-spec-row {
        flex-direction: column;
        gap: 2px;
    }

    .rp-spec-term {
        width: auto;
    }
}

/* --- アニメーションを控えたい環境への配慮 --- */
@media (prefers-reduced-motion: reduce) {

    .rp-hero-inner>*,
    .fade-in,
    .fade-in.is-visible,
    .rp-figure.fade-in img,
    .rp-keyvisual.fade-in img,
    .rp-keypoints.fade-in .rp-keypoints-list li {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .rp-quote.fade-in::before,
    .rp-quote.fade-in::after {
        opacity: 0.8 !important;
    }
}
