@charset "utf-8";

/* --- 2. 基本設定 --- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* 目立たせたい場所：太字を解除し、赤系のアンダーラインを適用 */
strong, b, .text-bold {
    font-weight: inherit; /* 太字を解除（親要素の太さに合わせる） */
    color: inherit;       /* テキスト色はそのまま */
    
    /* 赤系のアンダーライン（マーカー風） */
    background: linear-gradient(transparent 70%, #ffcccc 70%); /* 薄い赤のマーカー */
    /* もし「線」にしたい場合はこちら： border-bottom: 2px solid #e60012; */
    
    padding: 0 2px;
}


/* --- 3. 共通見出し --- */
.hrf-section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.hrf-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.3;
}

.hrf-section-title .title-en {
    display: block;
    color: #e60012;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
    font-weight: 700;
}

.hrf-section-title .title-jp {
    font-family: 'RocknRoll One', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #000;
    letter-spacing: 0.05em;
    transform: skewX(-3deg); /* 躍動感 */
}

.hrf-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e60012;
}

/* --- 4. Hero Section --- */
.hrf-hero-gate-tagline { font-weight: 700; margin-bottom: 10px; letter-spacing: 0.1em; }
.hrf-hero-gate-subline { font-size: 0.9rem; margin-bottom: 20px; opacity: 0.9; }


/* Google Fonts 読み込み（Dela Gothic One を追加） */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Noto+Sans+JP:wght@400;700;900&family=RocknRoll+One&display=swap');

/* 英語：Dela Gothic One */
.hero-en {
    display: block; /* 改行させる */
    font-family: 'Dela Gothic One', cursive;
    font-style: italic;
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* 英語はより大きく */
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

/* 日本語：Noto Sans JP ウェイト900 */
.hero-jp {
    display: block; /* 改行させる */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900; /* Noto Sansの最大太さ */
    font-size: clamp(1.2rem, 3.5vw, 2rem); /* 日本語は少し抑えて可読性重視 */
    letter-spacing: 0.1em;
    color: #fff;
}

.hrf-hero-gate-triangle {
    position: absolute;
    top: 100%; left: 0;
    width: 0; height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 60px solid #001d3d;
    z-index: 10;
}

.hrf-top-image-content { 
    width: 25%; /* 15%だと小さすぎる可能性があるので25%に調整。必要に応じて変更してくれ */
    max-width: 400px; /* PCで広がりすぎないように制限 */
    margin: 160px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hrf-top-image-content img {
    width: 100%;
    height: auto;
    display: block;
    /* 背景が透過PNGなら、少し影をつけると公式感が出る */
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* スマホ用の調整 */
@media screen and (max-width: 768px) {
    .hrf-top-image-content {
        width: 60%; /* スマホでは少し大きく表示 */
        margin: 120px auto 0;
    }
}

/* --- 5. ABOUT Section --- */
.hrf-section-about { padding: 140px 0 80px; background-color: #ffffff; }
.hrf-about-content { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; }
.hrf-about-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.hrf-about-text { font-size: 1rem; }
.hrf-about-lead { font-weight: 900; color: #001d3d; border-left: 4px solid #e60012; padding-left: 12px; margin-bottom: 20px; font-size: 1.2rem; }
.color-accent { color: #e60012; }

@media screen and (min-width: 768px) {
    .hrf-about-content { flex-direction: row; align-items: center; }
    .hrf-about-image, .hrf-about-text { flex: 1; }
}

/* --- 6. EVENT DETAILS Section --- */
.hrf-section-details {
    background: linear-gradient(135deg, #b8860b 0%, #f1d57a 50%, #d4af37 100%);
    color: #001d3d;
    padding: 100px 0;
}

.hrf-details-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
}

.hrf-details-slider {
    border: 4px solid #001d3d; 
    background: #001d3d; 
    border-radius: 4px;
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    width: 100%;
}

.hrf-details-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.hrf-info-card { 
    background: rgba(255, 255, 255, 0.4); 
    padding: 30px; 
    border-radius: 8px; 
    backdrop-filter: blur(5px); 
}

.hrf-info-table { 
    width: 100%; 
    border-collapse: collapse; 
}

/* 見出し幅を拡大し、折り返しを防止 */
.hrf-info-table th {
    color: #e60012;
    font-family: 'RocknRoll One', sans-serif;
    text-align: left;
    width: 180px;           /* 110pxから180pxに拡大 */
    padding: 15px 0;
    vertical-align: top;
    font-size: 1.1rem;
    line-height: 1.3;
    white-space: nowrap;    /* テキストの強制改行を防止 */
}

.hrf-info-table td { 
    padding: 15px 10px; 
    border-bottom: 1px solid rgba(0,29,61,0.1); 
    font-weight: 700; 
}

.hrf-info-table tr:last-child td {
    border-bottom: none;
}

.hrf-btn-ticket {
    display: block; 
    background: #e60012; 
    color: #fff; 
    padding: 20px;
    text-decoration: none; 
    font-family: 'RocknRoll One', sans-serif; 
    border-radius: 50px;
    margin-top: 30px; 
    transition: 0.3s; 
    text-align: center; 
    font-size: 1.2rem;
}

.hrf-btn-ticket:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(230,0,18,0.4); 
}

/* --- レスポンシブ調整 --- */

/* タブレット・PC（992px以上） */
@media screen and (min-width: 992px) {
    .hrf-details-grid { 
        flex-direction: row; 
        align-items: flex-start;
        gap: 60px; 
    }
    .hrf-details-slider { flex: 1.2; } 
    .hrf-details-info { flex: 1; }
}

/* スマホ（768px以下） */
@media screen and (max-width: 768px) {
    .hrf-section-details {
        padding: 60px 0;
    }
    .hrf-info-card {
        padding: 20px 15px;
    }
    /* スマホ時は幅指定を解除して縦並びにする */
    .hrf-info-table th, 
    .hrf-info-table td {
        display: block;
        width: 100% !important; 
        padding: 5px 0;
        white-space: normal; /* スマホでは必要に応じて改行を許可 */
    }
    .hrf-info-table th {
        padding-top: 15px;
        font-size: 1rem;
    }
    .hrf-info-table td {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0,29,61,0.1);
    }
}

/* --- 7. WISH Section --- */
.hrf-wish-inner { max-width: 800px; margin: 0 auto; }

.hrf-highlight-blue { color: #001d3d; font-weight: 900; }

/* Swiperドット */
.swiper-pagination-bullet-active { background: #e60012 !important; }


/* --- WISH Section テキスト配置設定 --- */
.hrf-section-wish {
    padding: 120px 0;
    background-color: #ffffff;
    text-align: center; /* 親要素で中央に寄せる */
}

.hrf-wish-content {
    max-width: 800px;
    margin: 0 auto;
}

/* 指定の2箇所のテキストブロック：ボックスを中央に、文字を左揃えに */
.hrf-wish-text {
    display: block;
    max-width: 580px;      /* 読みやすい幅に絞る（ここがボックスの幅になる） */
    margin: 0 auto 30px;   /* 上下余白をとりつつ、左右margin:autoで中央配置 */
    text-align: left;      /* 文字だけを左揃えにする */
    font-size: 1rem;
    line-height: 2;
}

/* 引用ボックス：ここはインパクト重視で中央揃えのまま */
.hrf-wish-quote {
    background: #fdf2f2;
    padding: 40px 20px;
    margin: 50px auto;
    max-width: 700px;
    border-radius: 8px;
    border: 2px dashed #e60012;
    color: #e60012;
    font-family: 'RocknRoll One', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    text-align: center; 
}

.hrf-wish-quote img {
    margin: 50px auto 0;
    max-width: 100%;
    height: auto;
    display: block;
}

/* strongタグ：太字解除 ＋ 赤系アンダーライン（マーカー風） */
strong, b {
    font-weight: normal; /* 太字を解除 */
    background: linear-gradient(transparent 60%, #ffcccc 60%); /* 赤系のマーカー */
    padding: 0 2px;
}


/* NEWSセクション全体 */
.hrf-news-section {
    margin-top: 80px;
    padding: 80px 20px;
    background: #f8f9fa;
}

/* --- カードレイアウト --- */
.hrf-news-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.hrf-news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.hrf-news-card:not(.hrf-news-empty):hover {
    transform: translateY(-5px);
}

.hrf-news-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #eee;
    overflow: hidden;
}

.hrf-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hrf-news-body {
    padding: 20px;
}

.hrf-news-body .date {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 700;
}

.hrf-news-body .title {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.hrf-news-body .excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}


/* --- 空枠（Coming Soon）の装飾 --- */
.hrf-news-empty {
    opacity: 0.6;
}

.empty-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bbb;
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.2rem;
    background: #efefef;
}

/* --- ボタン --- */
.hrf-news-more {
    text-align: center;
}

.hrf-news-more a {
    display: inline-block;
    padding: 15px 50px;
    background: #000;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-decoration: none;
    transition: background 0.3s;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 900px) {
    .hrf-news-card-wrapper {
        grid-template-columns: 1fr;
    }
}

/* カード内のすべてのリンクから下線を消す */
.hrf-news-card a {
    text-decoration: none !important;
}

/* もしホバーした時だけ線を出したい、などのこだわりがなければこれでOK */
.hrf-news-card a:hover {
    text-decoration: none !important;
}



