:root {
    --jalc-bg: #f5f2ef;
    --jalc-surface: #ffffff;
    --jalc-surface-soft: #f6efe7;
    --jalc-main: #587d66;
    --jalc-main-dark: #446a54;
    --jalc-main-deep: #355441;
    --jalc-accent: #e5b39d;
    --jalc-accent-strong: #d89173;
    --jalc-accent-soft: #f2ddd2;
    --jalc-accent-light: #edd2c4;
    --jalc-text: #4c5e52;
    --jalc-text-soft: #708276;
    --jalc-line: #ddd6cf;
    --jalc-table-odd: #fcfaf7;
    --jalc-table-even: #f7f3ee;
    --jalc-highlight: #efe1c9;
    --jalc-danger: #c86f63;
    --jalc-shadow: 0 12px 32px rgba(106, 110, 98, 0.10);
    --jalc-radius: 16px;
    --nav-height: 102px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--jalc-bg);
    color: var(--jalc-text);
    line-height: 1.75;
}

a {
    color: var(--jalc-main);
    text-decoration: none;
}

a:hover {
    color: var(--jalc-main-deep);
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================
   見出し
========================= */
h2 {
    font-weight: 700;
    border-left: 8px solid var(--jalc-main);
    padding: 14px 16px;
    margin-bottom: 25px;
    background: #e9ece7;
    border-radius: 10px;
    font-size: 1.75rem;
    color: var(--jalc-main-dark);
}

/* =========================
   ナビゲーション
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--jalc-line);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
}

.navbar .navbar-collapse {
    flex-grow: 0;
}

.navbar .navbar-brand {
    height: 70px;
}

.navbar .navbar-brand img {
    height: 100%;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    color: var(--jalc-text);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    background-color: #edf1ed;
    color: var(--jalc-main-dark);
    transition: all 0.25s ease;
}

.btxt {
    color: var(--jalc-main-dark) !important;
}

/* =========================
   KV
========================= */
.hero-simple {
    position: relative;
    padding: 138px 0 72px;
    background: linear-gradient(180deg, #f7f4f1 0%, #f3eeea 100%);
    overflow: hidden;
}

.hero-visual-kv {
    min-height: 720px;
}

.hero-bg-art {
    position: absolute;
    inset: 0;
    background: url('../images/jalc54kv.png') right top / contain no-repeat;
    opacity: 0.52;
    pointer-events: none;
    z-index: 0;
}

.hero-simple .container {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 680px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    background: var(--jalc-accent-soft);
    color: var(--jalc-main-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.25;
    font-weight: 700;
    color: var(--jalc-main-dark);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    line-height: 1.55;
    font-weight: 600;
    color: var(--jalc-main);
    margin-top: -0.4rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.55;
        margin-top: -0.25rem;
    }
}

.hero-lead {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--jalc-text-soft);
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.hero-meta-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--jalc-line);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    box-shadow: 0 6px 18px rgba(88, 125, 102, 0.06);
    backdrop-filter: blur(3px);
}

.hero-meta-label {
    display: block;
    font-size: 0.82rem;
    color: var(--jalc-main-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-meta-value {
    display: block;
    color: var(--jalc-text);
    font-weight: 500;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-figure {
    position: relative;
    text-align: center;
}

.hero-figure img {
    max-height: 640px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 26px 30px rgba(47, 59, 67, 0.16));
}

/* =========================
   ボタン
========================= */
.btn-primary {
    background-color: var(--jalc-main);
    border-color: var(--jalc-main);
    color: #fff;
    font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--jalc-main-dark);
    border-color: var(--jalc-main-dark);
    color: #fff;
}

.btn-outline-primary {
    color: var(--jalc-main-dark);
    border-color: var(--jalc-main);
    font-weight: 700;
    background: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--jalc-main);
    border-color: var(--jalc-main);
    color: #fff;
}

.btn-info {
    background-color: var(--jalc-accent-soft);
    border-color: var(--jalc-accent-soft);
    color: var(--jalc-main-dark);
    font-weight: 700;
}

.btn-info:hover,
.btn-info:focus {
    background-color: var(--jalc-accent-light);
    border-color: var(--jalc-accent-light);
    color: var(--jalc-main-deep);
}

.btn-apply {
    background: linear-gradient(135deg, var(--jalc-main) 0%, var(--jalc-main-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 1.6rem;
    box-shadow: 0 12px 24px rgba(88, 125, 102, 0.22);
}

.btn-apply:hover,
.btn-apply:focus {
    background: linear-gradient(135deg, var(--jalc-main-dark) 0%, var(--jalc-main-deep) 100%);
    color: #fff;
    transform: translateY(-1px);
}

.btn-entry-student {
    background: linear-gradient(135deg, #6f8f7c 0%, #587d66 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(88, 125, 102, 0.20);
}

.btn-entry-student:hover,
.btn-entry-student:focus {
    background: linear-gradient(135deg, #5f816e 0%, #4a6c59 100%);
    color: #fff;
}

.btn-entry-general {
    background: linear-gradient(135deg, #e3b097 0%, #d89173 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(216, 145, 115, 0.24);
}

.btn-entry-general:hover,
.btn-entry-general:focus {
    background: linear-gradient(135deg, #dba387 0%, #cf8464 100%);
    color: #fff;
}

.btntxts {
    font-size: 0.85rem !important;
    font-weight: bold !important;
}

/* =========================
   お知らせ
========================= */
.scroll-box {
    max-height: 180px;
    overflow-y: auto;
    padding: 10px 14px;
    background: var(--jalc-surface);
    border: 1px solid var(--jalc-line);
    border-radius: 12px;
    box-shadow: var(--jalc-shadow);
}

.news-item {
    border-bottom: 1px solid var(--jalc-line);
    padding: 15px 0;
}

.news-item:last-child {
    border-bottom: none;
}

/* =========================
   テーブル / セクション枠
========================= */
.table-responsive {
    max-width: 100%;
    overflow-x: auto;
}

.table-responsive.bg-white,
.table-responsive .table,
.bg-white.rounded-3 {
    background: var(--jalc-surface) !important;
}

.table-responsive.bg-white.rounded-3.p-4 {
    border: 1px solid var(--jalc-line);
    border-radius: var(--jalc-radius) !important;
    box-shadow: var(--jalc-shadow);
    background: var(--jalc-surface) !important;
}

.table {
    margin-bottom: 0;
}

.table th {
    color: var(--jalc-main-dark);
    font-weight: 700;
}

.table td,
.table th {
    vertical-align: middle;
    border-color: #e6dfd9;
}

.table-striped tr:nth-of-type(odd) > * {
    background-color: var(--jalc-table-odd) !important;
}

.table-striped tr:nth-of-type(even) > * {
    background-color: var(--jalc-table-even) !important;
}

.time-col {
    white-space: nowrap;
    width: 16%;
}

.content-col {
    width: 100%;
}

/* =========================
   共通補助
========================= */
.anchor-adjust {
    display: block;
    height: var(--nav-height);
    margin-top: calc(var(--nav-height) * -1);
    visibility: hidden;
}

.lblue,
.text-primary {
    color: var(--jalc-main) !important;
}

.oclr {
    color: var(--jalc-accent-strong);
}

.text-danger {
    color: var(--jalc-danger) !important;
}

.alert-danger {
    background-color: #f7ece7;
    border-color: #ead2c8;
    color: var(--jalc-text);
}

.bg-warning {
    background-color: var(--jalc-highlight) !important;
}

.smltx7 {
    margin-top: 0.5rem;
    font-size: 70%;
    line-height: 120%;
    display: block;
}

.fs {
    font-size: 0.92rem;
}

.fs-sb {
    font-size: 0.95rem;
}

.h1sub {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--jalc-main-dark);
    margin-bottom: 1rem;
}

.lh-pgm {
    line-height: 1.6;
}

.def {
    max-height: 1.1em;
    width: auto;
    vertical-align: middle;
}

/* =========================
   視聴方法セクション
========================= */
.sc1 {
    margin-top: 3rem;
}

.sc1 h1 {
    font-size: 1.6rem;
    position: relative;
    padding: 0.25em 0;
}

.sc1 h1:after {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(to right, var(--jalc-accent), transparent);
}

.shicho {
    color: var(--jalc-main-dark);
    font-weight: 700;
}

/* =========================
   アイコン付きリスト
========================= */
.fa-bullet-list {
    list-style: none;
    padding-left: 1.5em;
}

.fa-bullet-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.5em;
}

.fa-bullet-list li::before {
    content: "\f06a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--jalc-accent-strong);
    font-size: 1em;
}

/* =========================
   サムネイル / モーダル
========================= */
.thumbnail {
    width: 100px;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.25s ease;
}

.thumbnail:hover {
    transform: scale(1.06);
}

.image-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.image-row a {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    color: var(--jalc-text);
}

.fss {
    font-size: 0.82rem;
    line-height: 1.4;
}

.modal-dialog iframe {
    width: 100%;
    height: 60vh;
}

/* オンデマンド視聴ページリスト */
.video-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.video-item:hover {
    background-color: #f5f1ec;
}

/* =========================
   トップへ戻る
========================= */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background-color: var(--jalc-main);
    color: #fff;
    font-size: 22px;
    text-align: center;
    line-height: 52px;
    border-radius: 50%;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 10px 24px rgba(88, 125, 102, 0.24);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--jalc-main-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   開催概要：日曜日の入場案内
========================= */
.access-note {
    display: grid;
    gap: 14px;
}

.access-note-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--jalc-main-dark);
    font-size: 1.08rem;
}

.access-note-head i {
    color: var(--jalc-accent-strong);
}

.access-note-block {
    background: #faf6f1;
    border: 1px solid #eadfd6;
    border-radius: 14px;
    padding: 16px 18px;
}

.access-note-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--jalc-text);
}

.access-note-block p {
    margin-bottom: 0.9rem;
    line-height: 1.85;
}

.access-note-block-assist {
    background: #f3efe9;
    border-color: #ddd6cf;
}

/* =========================
   参加申込
========================= */
.registration-wrap {
    background: transparent;
}

.registration-lead {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
}

.entry-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--jalc-line);
    border-radius: 22px;
    box-shadow: var(--jalc-shadow);
    padding: 26px;
    overflow: hidden;
    height: 100%;
}

.entry-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 8px;
}

.entry-card-student::before {
    background: linear-gradient(90deg, #7d9a88 0%, #587d66 100%);
}

.entry-card-general::before {
    background: linear-gradient(90deg, #e5b39d 0%, #d89173 100%);
}

.entry-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.entry-card-student .entry-card-icon {
    background: #edf3ee;
    color: var(--jalc-main);
}

.entry-card-general .entry-card-icon {
    background: #fbefe9;
    color: var(--jalc-accent-strong);
}

.entry-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--jalc-text);
}

.entry-card-sub {
    color: var(--jalc-text-soft);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.entry-card-note {
    background: #f7f3ef;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.94rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.entry-card-price {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.entry-card-price strong {
    font-size: 1.15rem;
    color: var(--jalc-text);
}

.entry-card-period {
    background: #f4eee8;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.entry-card-actions {
    margin-top: auto;
}

.registration-support {
    margin-top: 1.5rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--jalc-line);
    border-radius: 18px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--jalc-text);
    box-shadow: 0 8px 22px rgba(100, 95, 86, 0.06);
}

.support-link:hover {
    color: var(--jalc-text);
    transform: translateY(-1px);
}

.support-link-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    font-size: 1.35rem;
}

.support-link-join .support-link-icon {
    background: #edf3ee;
    color: var(--jalc-main-dark);
}

.support-link-fee .support-link-icon {
    background: #fbefe9;
    color: var(--jalc-accent-strong);
}

.support-link-text {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.support-link-text strong {
    font-size: 1rem;
}

.support-link-text small {
    color: var(--jalc-text-soft);
    font-size: 0.84rem;
}

.registration-footnote {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--jalc-text-soft);
    text-align: center;
    line-height: 1.8;
}

/* =========================
   追従CTA
========================= */
.floating-cta {
    display: none !important;
}

.floating-btn-general {
    background: linear-gradient(135deg, #e3b097, #d89173) !important;
}

.floating-btn-student {
    background: linear-gradient(135deg, #6f8f7c, #587d66) !important;
}

/* =========================
   レスポンシブ
========================= */
@media (min-width: 992px) {
    .hero-figure {
        transform: translateY(34px);
    }
}

@media (max-width: 991.98px) {
    .hero-simple {
        padding: 118px 0 48px;
    }

    .hero-visual-kv {
        min-height: auto;
    }

    .hero-bg-art {
        background-size: cover;
        background-position: center top;
        opacity: 0.22;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-figure {
        transform: none;
    }

    .hero-figure img {
        max-height: 430px;
    }

    .navbar-nav {
        gap: 4px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 104px 0 42px;
    }

    .hero-bg-art {
        background-size: 170%;
        background-position: center top;
        opacity: 0.16;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        line-height: 1.4;
    }

    .hero-lead {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .hero-meta-item {
        text-align: left;
    }

    .hero-figure img {
        max-height: 360px;
    }

    .thumbnail {
        width: 92px;
    }

    /* 開催概要：スマホ時カード化 */
    #overview table,
    #overview tbody,
    #overview tr,
    #overview th,
    #overview td {
        display: block;
        width: 100% !important;
    }

    #overview tr {
        background: #fff;
        border-radius: 16px;
        padding: 14px;
        margin-bottom: 14px;
        border: 1px solid #e6dfd9;
        box-shadow: 0 6px 18px rgba(106, 110, 98, 0.08);
    }

    #overview th {
        border: none;
        padding: 0 !important;
        margin-bottom: 4px;
        font-weight: 700;
        color: var(--jalc-main-dark);
        background: transparent !important;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    #overview th::before {
        content: "";
        display: inline-block;
        width: 6px;
        height: 14px;
        background: var(--jalc-accent-strong);
        border-radius: 3px;
        margin-right: 8px;
        vertical-align: middle;
    }

    #overview td {
        border: none;
        padding: 0 !important;
        line-height: 1.65;
        font-size: 0.93rem;
    }

    #overview p,
    #overview span {
        line-height: 1.6;
    }

    #overview .alert {
        padding: 10px 12px;
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    #overview .table-responsive.bg-white.rounded-3.p-4 {
        padding: 18px 16px !important;
    }

    /* 参加申込：一般を上、学生を下 */
    #registration .registration-cards > .col-lg-6:first-child {
        order: 2;
    }

    #registration .registration-cards > .col-lg-6:last-child {
        order: 1;
    }

    .entry-card {
        padding: 18px 16px;
    }

    .entry-card-title {
        font-size: 1.25rem;
    }

    .entry-card-note,
    .entry-card-period {
        padding: 10px 12px;
        line-height: 1.6;
        font-size: 0.9rem;
    }

    .entry-card-price {
        margin-bottom: 0.6rem;
    }

    .support-link {
        padding: 16px;
    }

    .access-note-block {
        padding: 14px;
    }

    /* 追従CTA */
    .floating-cta {
        display: block !important;
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: calc(20px + env(safe-area-inset-bottom)) !important;
        z-index: 99999 !important;
        width: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .floating-cta-inner {
        display: block !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 18px !important;
        padding: 10px !important;
        border: 1px solid #ddd6cf !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16) !important;
    }

    .floating-cta-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .floating-btn {
        display: block !important;
        text-align: center !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #fff !important;
        text-decoration: none !important;
        line-height: 1.2 !important;
    }

    body {
        padding-bottom: calc(120px + env(safe-area-inset-bottom)) !important;
    }

    .back-to-top {
        bottom: calc(96px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 576px) {
    :root {
        --nav-height: 96px;
    }

    h2 {
        font-size: 1.45rem;
        padding: 12px 14px;
    }

    .hero-kicker {
        font-size: 0.82rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-figure img {
        max-height: 320px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
    }
}

/* =========================
   LOGIN KV
========================= */
.login-kv {
    position: relative;
    overflow: hidden;
    padding: 0 72px;
    min-height: 480px;
    background: linear-gradient(180deg, #f7f4f1 0%, #f3eeea 100%);
}

/*
.login-kv-bg-art {
    position: absolute;
    inset: 0;
    background:
        url('../images/asset.png') right 18% center / min(420px, 20vw) no-repeat;
    pointer-events: none;
    z-index: 0;
}
*/
.login-kv .container {
    position: relative;
    z-index: 1;
}

.login-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5ddd6;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jalc-main-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

.login-card .form-control {
    border-radius: 10px;
    padding: 10px 12px;
}

.reTxt {
    color: #c86f63;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .login-kv {
        padding: 118px 0 48px;
        min-height: auto;
    }

    .login-kv-bg-art {
        background:
            url('../images/asset.png') right bottom / 48% no-repeat;
        opacity: 0.95;
    }

    .login-hero {
        min-height: auto;
    }

    .login-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .login-kv {
        padding: 1rem;
    }

    .login-kv-bg-art {
        background:
            url('../images/asset.png') center bottom / min(280px, 70vw) no-repeat;
        opacity: 0.25;
    }

    .login-card {
        max-width: 100%;
        padding: 22px;
    }
}

/* =========================
   header内 右上女性ビジュアル
========================= */
.header-hero-simple {
    position: relative;
    overflow: hidden;
}

/* タイトル側の幅を安定させる */
.header-hero-row {
    min-height: 180px;
}

/* 画像エリア */
.header-hero-figure-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.header-hero-figure {
    width: 100%;
    max-width: 180px;
    margin-top: -6px;
    margin-right: 10px;
    text-align: center;
}

.header-hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(47, 59, 67, 0.10));
}

/* タイトルまわり */
.header-hero-simple .hero-kicker {
    margin-bottom: 0.85rem;
}

.header-hero-simple .hero-title {
    margin-bottom: 0.4rem;
    font-size: clamp(2rem, 5.2vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: 0;
}

.header-hero-simple .hero-subtitle {
    margin-bottom: 0;
}

/* タブレット */
@media (max-width: 991.98px) {
    .header-hero-row {
        min-height: auto;
    }

    .header-hero-figure {
        max-width: 180px;
        margin-right: 0;
    }
}

/* スマホでは画像を非表示 */
@media (max-width: 767.98px) {
    .header-hero-simple {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .header-hero-figure-wrap {
        display: none;
    }

    .header-hero-simple .hero-kicker {
        margin-bottom: 0.75rem;
    }

    .header-hero-simple .hero-title {
        font-size: 1.9rem;
        line-height: 1.18;
        letter-spacing: -0.02em;
        margin-bottom: 0.5rem;
    }

    .header-hero-simple .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.45;
    }
}

/* かなり幅の狭い端末向け */
@media (max-width: 380px) {
    .header-hero-simple .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.03em;
    }
}

.bg-jalc-danger {
    color: #fff !important;
    background-color: var(--jalc-danger) !important;
}