/* ==================================================== */
/* base--設定*/
/* ==================================================== */
:root {
    /* Layout */
    --container: 750px;
    --section-sp-y: 60px;
    --sp-m: 20px;

    /* Colors */
    --color-text: #352707;
    --color-text-sub: #4e2c3b;
    --color-bg: #fff;
    --color-bg-01: #f8efe3;
    --color-bg-02: #e8d6c2;
    --color-1st: #6fc9f3;
    --color-2nd: #ae9dca;
    --color-3rd: #f4abac;
    --color-accent: #d71618;
    --border-main: #382913;

    /* 3色のグラデーションルート設定 */
    --color-primary: linear-gradient(135deg, var(--color-1st), var(--color-2nd), var(--color-3rd));

    /* Typography */
    --font-family-base: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    --font-family-mincho: "Hiragino Mincho ProN", serif;
    --font-family-g1: "Kiwi Maru", serif;
    --fs-base: 16px;
    --fs-h2: clamp(1.6rem, 5vw, 2.4rem);

    /* 文字サイズ */
    --fs-base: 1rem;
    --fs-xl: clamp(2.0rem, 8vw, 3.5rem);
    /* MVキャッチコピー用 */
    --fs-l: clamp(1.5rem, 5vw, 2.4rem);
    /* セクションタイトル用 */
    --fs-lm: clamp(1.125rem, 1rem + 0.53vw, 1.25rem);
    --fs-m: 1.125rem;
    /* 本文（18px相当：LPは少し大きい方が読まれる） */
    --fs-s: 0.875rem;
    /* 注釈（14px相当） */

    /* 行間も変数化すると便利 */
    --lh-base: 1.7;
    --lh-tight: 1.3;
    /* 見出し用 */

    /* 共通の余白単位 */
    --sp-xs: 5px;
    --sp-s: 10px;
    --sp-m: 20px;
    --sp-l: 40px;
    --sp-xl: 80px;

    /* UI elements */
    --radius-s: 5px;
    --radius-m: 10px;
    --radius-x: 30px;
    --transition: 0.3s ease;
    --z-modal: 1000;

    /* 重なり順の管理 */
    --z-back: -1;
    /* 背景装飾用 */
    --z-base: 1;
    /* 通常コンテンツ */
    --z-header: 100;
    /* ヘッダー */
    --z-floating: 200;
    /* 追従ボタン（CVボタン、ページトップ） */
    --z-modal-bg: 900;
    /* モーダル背景 */
    --z-modal-content: 1000;
    /* モーダル本体 */

    --flex-gap: 20px;
    --flex-align: center;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    background: var(--color-bg);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: var(--color-text);
    font-weight: bold;
    text-decoration: underline;
}

section {
    background: var(--color-bg);
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}


.container {
    max-width: var(--container);
    margin: 0 auto;
}

.bg {
    background-image: url(../img/ml-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.bg-up {
    background-image: url(../img/ml-bg-mv.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    padding: 0 0 50px;
}

.bg-paper {
    background-image: url(../img/bg-paper.webp);
    background-repeat: repeat;
}

.bg-ds {
    background-image: url(../img/ml-bg2.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.section {
    padding: 20px 20px 40px;
}

.section__title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--font-family-g1);
}

.section__title img {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

.footer {
    text-align: center;
}

/* ==================================================== */
/* component--使いまわしするもの*/
/* ==================================================== */

/* Buttons */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    margin: 20px auto 10px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    box-sizing: border-box;
    background: linear-gradient(90deg, #6fc9f3 0%, #f4abac 100%);
    border: 3px solid var(--color-bg);
    width: fit-content;
    box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.3);
}

.btn__text {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bg);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    opacity: 0.85;
}

/* 反転バージョン */
.btn.-outline {
    background: var(--color-bg, var(--color-bg));
    border-image: var(--color-primary) 1;
}

.btn.-outline .btn__text {
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* 外部リンク */
.btn.-external::after {
    content: "";
    width: 0.9em;
    height: 0.9em;
    display: inline-block;
    flex-shrink: 0;
    background: var(--color-bg);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E") no-repeat center / contain;
    transition: background 0.3s ease;
}

.btn.-outline.-external::after {
    background: var(--color-primary, #333);
}

/* 折りたたみ用矢印（アコーディオン） */
.btn.-toggle::after {
    content: "";
    width: 0.9em;
    height: 0.9em;
    display: inline-block;
    flex-shrink: 0;
    background: var(--color-bg);

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;

    transition: transform 0.3s ease, background 0.3s ease;
}

.btn.-outline.-toggle::after {
    background: var(--color-primary);
}

/* PCのみ表示 */
.u-is-pc {
    display: block !important;
}

.u-is-sp {
    display: none !important;
}

@media (max-width: 768px) {

    /* スマホのみ表示 */
    .u-is-pc {
        display: none !important;
    }

    .u-is-sp {
        display: block !important;
    }
}

/* 改行の制御（スマホだけ改行したい場合などに <br class="u-is-sp"> ） */
br.u-is-sp {
    display: none;
}

@media (max-width: 768px) {
    br.u-is-sp {
        display: block;
    }
}

/*grid*/
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-s);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-s);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-s);
}

@media (max-width: 768px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* flexbox */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--flex-gap);
    align-items: var(--flex-align);
    justify-content: space-between;
    max-width: 750px;
    margin: auto;
}

.flex-2col {
    /* (100% - gap1つ分) / 2 */
    width: calc((100% - var(--flex-gap)) / 2);
}

.flex-3col {
    /* (100% - gap2つ分) / 3 */
    width: calc((100% - var(--flex-gap) * 2) / 3);
}

@media (max-width: 768px) {

    .flex-2col,
    .flex-3col {
        width: 100%;
    }
}

.annotations {
    font-size: var(--fs-s);
}


/* ==================================================== */
/* layout--サイト大枠*/
/* ==================================================== */

/* MV */
.mv {
    max-width: 750px;
    margin: auto;
    position: relative
}

.mv img {
    width: 100%;
    object-fit: cover;
}

.mv-logo-tap-area {
    position: absolute;
    bottom: 3%;
    right: 29%;
    width: 21%;
    height: 5%;

    /*background: rgba(255, 0, 0, 0.4);*/  
    background: transparent;

    border: none;
    cursor: pointer;
    z-index: 10;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.mv__catch {
    font-size: clamp(1.6rem, 4vw, 3rem);
    text-align: center;
    padding: 40px 20px;
}

.mv__catch img {
    max-width: 750px;
    margin: auto;
    width: 100%;
}


/* 本のアニメーション */
.intro.section {
    padding: 100px 20px 80px;
    overflow: visible;
}

.book-stage {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.book-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.book-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.-opened {
    opacity: 0;
    z-index: 1;
    transition: opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}

.-closed {
    opacity: 1;
    z-index: 2;
    transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.book-balloon {
    position: absolute;
    background: var(--color-bg);
    border: 2px solid var(--color-2nd);
    border-radius: 20px;
    padding: 8px 18px;
    white-space: nowrap;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    z-index: 4;
    opacity: 0;
    transform-origin: bottom center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.book-balloon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: var(--color-bg) transparent transparent transparent;
    z-index: 2;
}

.book-balloon::before {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 11px 8px 0 8px;
    border-color: var(--color-2nd) transparent transparent transparent;
    z-index: 1;
}

.-wa {
    top: -25px;
    left: 15%;
    transform: translate(-50%, 15px) scale(0);
}

.-hiraita {
    top: -65px;
    left: 50%;
    transform: translate(-50%, 15px) scale(0);
}

.-letsgo {
    top: -20px;
    left: 85%;
    transform: translate(-50%, 15px) scale(0);
}

.magic-letters {
    position: relative;
}

.magic-letters-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--z-floating);
    opacity: 0;
    transform: scale(0.6);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.mt02 {
    width: 50px;
    top: 45px;
    left: 15%;
}

.mt03 {
    width: 50px;
    top: 0px;
    left: 50%;
}

.mt04 {
    width: 50px;
    top: 50px;
    left: 85%;
}

.book-stage.is-active .-closed {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.book-stage.is-active .-opened {
    opacity: 1;
}

.book-stage.is-active .magic-letters-img {
    animation: magicLettersFadeInOut 2s forwards;
    animation-delay: 0.2s;
}

.book-stage.is-active .book-balloon.-wa {
    animation: balloonFadeInOut 2s forwards;
    animation-delay: 0.15s;
}

.book-stage.is-active .book-balloon.-hiraita {
    animation: balloonFadeInOut 2s forwards;
    animation-delay: 0.35s;
}

.book-stage.is-active .book-balloon.-letsgo {
    animation: balloonFadeInOut 2s forwards;
    animation-delay: 0.55s;
}

.magic-popup {
    max-width: 500px;
    margin: 50px auto 0;
    background: var(--color-bg);
    border: 3px solid transparent;
    border-image: var(--color-primary) 1;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.magic-popup.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ==================================================== */
/* 出現して消えるアニメーションのタイムライン定義 */
/* ==================================================== */
@keyframes balloonFadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, 15px) scale(0);
    }

    15% {
        /* 始まってすぐフワッと拡大して出る */
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }

    80% {
        /* しばらくその場を維持 */
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }

    100% {
        /* 最後に上に小さくなりながら消える */
        opacity: 0;
        transform: translate(-50%, -20px) scale(0);
    }
}

@keyframes magicLettersFadeInOut {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    15% {
        opacity: 1;
        transform: scale(1);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        /* 魔法文字が「逃げ出した」感を出すため、拡大しながら消える */
        opacity: 0;
        transform: scale(1.5);
    }
}


/* Story */
.story__body {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8;
    text-align: center;
}

.story__text {
    margin-bottom: 30px;
    font-family: var(--font-family-g1);
    font-size: var(--fs-lm);
    background-color: rgba(255, 255, 255, 0.6);
    word-break: auto-phrase;
    padding: 20px;
    border-radius: var(--radius-m);
}

.story__more {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story__body.is-open .story__more {
    display: inline;
    opacity: 1;
}

.story__btn {
    display: inline-block;
    cursor: pointer;
    background: var(--color-bg);
    border: 3px solid transparent;
    border-image: var(--color-primary) 1;
    padding: 12px 40px;
    margin: 20px auto 10px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.3);
}

.story__btn-text {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story__btn-text::before {
    content: "read more";
}

.story__body.is-open .story__btn-text::before {
    content: "close";
}

.story__btn:hover {
    opacity: 0.8;
    box-shadow: 0 4px 12px rgba(174, 157, 202, 0.2);
}

/* 「どんなイベント？」セクション */
.events.section {
    padding: 80px 20px;
}

.events__list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.events__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.events__img-wrap {
    width: 100%;
    max-width: 450px;
}

.events__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.events__content {
    width: 100%;
}

.events__heading {
    font-family: var(--font-family-g1);
    font-size: 1.6rem;
}

.events__heading,
.events__text {
    margin-bottom: 12px;
}

.events__text span {
    display: inline;
    padding: 4px 14px;
    line-height: 1.8;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.events__heading span {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-bg);
    background-color: var(--color-text);
    border-radius: var(--radius-x);
    padding: 3px 5px 5px;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0 5px 0 0;
}

.events__text span {
    font-size: 1.2rem;
    color: #444444;
}

.-pink span {
    background: linear-gradient(90deg, #fce4ec 0%, #f3e5f5 100%);
}

.-blue span {
    background: linear-gradient(90deg, #fff9c4 0%, #e0f7fa 100%);
}

.-purple span {
    background: linear-gradient(90deg, #e8eaf6 0%, #e0f2f1 100%);
}

@media (min-width: 768px) {
    .events__list {
        gap: 80px;
    }

    .events__item {
        flex-direction: row;
        justify-content: space-between;
    }

    .events__item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .events__img-wrap {
        width: 55%;
        max-width: none;
    }

    .events__content {
        width: 45%;
    }
}

/* flow */
.flow-wrapper {
    padding: 0;
}

.flow-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 0 45px;
    cursor: grab;
}

.flow-carousel::-webkit-scrollbar {
    display: none;
}

.flow-carousel:active {
    cursor: grabbing;
}

.flow-carousel::-webkit-scrollbar {
    display: none;
}

.flow-carousel-wrapper {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.flow-item {
    flex: 0 0 250px;
    scroll-snap-align: center;
    display: flex;
    user-select: none;
    scroll-snap-align: center;
    flex-shrink: 0;
}

#js-flow-carousel {
    touch-action: auto !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
    cursor: grab;
    scrollbar-width: none;
}

#js-flow-carousel.active {
    cursor: grabbing;
}

@media (min-width: 768px) {

    .flow-item {
        flex: 0 0 400px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;

    }
}

.flow-inner {
    box-shadow: inset 0 0 20px rgba(232, 214, 194, 0.7);
    background-color: var(--color-bg);
    background-blend-mode: multiply;
    text-align: center;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto !important;
}

.flow-img {
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
}

.flow-ctrl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.flow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #8d8d8d;
    border-radius: 50%;
    transition: background 0.1s;
}

.dot.is-active {
    background: var(--text-color);
}

.flow-num {
    display: flex;
    margin: 20px auto;
    font-family: var(--font-family-mincho);
    font-size: 2.4rem;
    color: var(--color-bg);
    background-color: var(--color-text);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.flow-num::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
    z-index: -1;
    border-radius: 4px;
}

.flow-step-title {
    font-family: var(--font-family-mincho);
    font-size: 1.3rem;
    color: var(--deep-teal);
    padding: 0 10px;
}

/* イベント概要 */
.card__container {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-m);
}

.card {
    padding: 15px;
    position: relative;
    text-align: center;
}

.card::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -11px;
    width: 0;
    height: 85%;
    border-right: 2px dashed var(--color-text);
}

.card:nth-child(4n)::after {
    display: none;
}

.card__img {
    margin: 10px auto;
    max-width: 90px;
    width: 90%;
}

.card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-family-g1);
}

.card__text {
    font-size: var(--fs-s);
}

@media (max-width: 768px) {

    .card::after {
        display: none;
    }

    .card:nth-child(2n-1)::after {
        display: block;
        top: 10%;
        right: -11px;
        height: 85%;
        border-right: 2px dashed var(--color-2nd);
    }

    /* 【横線】もし上下のカードの間（行の間）にも横の点線を入れたい場合 */
    .card:nth-child(-n+2)::before {
        content: "";
        position: absolute;
        bottom: -11px;
        left: 10%;
        width: 85%;
        height: 0;
        border-bottom: 2px dashed var(--color-2nd);
    }
}

/* News */

.news__inner {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

.news__list {
    border-top: 1px solid #ddd;
}

.news__item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.news__date {
    font-weight: bold;
    flex-basis: 150px;
    flex-shrink: 0;
}

.news__text {
    margin-left: 0;
    flex-grow: 1;
}

.news__link {
    text-decoration: none;
}

.news__link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .news__item {
        flex-direction: column;
        gap: 8px;
    }

    .news__date {
        flex-basis: auto;
    }
}

/* Outline */
.outline {
    padding: 0;
}

.outline img {
    width: 70%;
    margin: auto;
}

.outline__list {
    width: 100%;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    margin-top: 30px;
}

.outline__item {
    display: flex;
    border-bottom: 1px solid #333;
}

.outline__term {
    flex-basis: 200px;
    flex-shrink: 0;
    padding: 20px;
    background-color: #f9f9f9;
    font-weight: bold;
    border-right: 1px solid #333;
    display: flex;
    align-items: center;
}

.outline__description {
    flex-grow: 1;
    padding: 20px;
    margin-left: 0;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .outline__item {
        flex-direction: column;
    }

    .outline__term {
        flex-basis: auto;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 12px 15px;
    }

    .outline__description {
        padding: 15px;
    }
}


/* price */
.price img {
    width: 70%;
    margin: auto;
}

@media screen and (max-width: 768px) {

    .outline img,
    .price img {
        width: 80%;
    }

}

/* Q&A */
.faq {
    padding: 60px 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: var(--color-bg);
    border-radius: var(--radius-m);
    margin: 0 0 1rem;
}

.faq__label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-bg);
    flex-shrink: 0;
}

.faq__label.-q {
    background-color: var(--color-1st);
}

.faq__label.-a {
    background-color: var(--color-3rd);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    font-weight: bold;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question-text {
    flex: 1;
    line-height: 1.4;
    font-size: var(--fs-lm);
}

.faq__icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

.faq__icon::before {
    width: 100%;
    height: 2px;
    top: 7px;
    left: 0;
}

.faq__icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 7px;
}

.faq__item[open] .faq__icon::after {
    transform: rotate(90deg);
}

.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 20px 20px 20px;
}

.faq__text {
    line-height: 1.6;
    margin: 0;
    flex: 1;
}


/* Notes */
.notes {
    padding: 60px 0;
}

.notes__content {
    max-width: 800px;
    margin: 1rem auto;
    text-align: left;
}

.notes__group {
    margin-bottom: 40px;
}

.notes__group:last-child {
    margin-bottom: 0;
}

.notes__details {
    padding: 10px;
    text-align: center;
}

.notes__summary {
    display: block;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    list-style: none;
}

.notes__summary::-webkit-details-marker {
    display: none;
}

.notes__details[open] .btn.-toggle::after {
    transform: rotate(180deg);
}

.notes__category {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-text);
    line-height: 1.4;
}

.notes__list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.notes__list li {
    margin: 15px 20px;
    padding: 10px 10px 30px 50px;
    position: relative;
    border-bottom: 1px solid var(--color-text);
    line-height: 1.8;
}

.notes__list li:last-child {
    border: none;
    padding: 10px 10px 10px 50px;
    margin: 15px 15px 0;
}

.notes__list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--color-text);
    color: var(--color-bg);
    border-radius: 20%;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 10px;
    line-height: 1;
}

.notes__item {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

.notes__item::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

/* SNS */
.sns__bg {
    background-image: url(../img/img-mv-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 60px 0;
    background-attachment: fixed;
    min-height: 375px;
}

.sns {
    max-width: 300px;
    margin: auto;
}

.sns,
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-m);
}


/* map */
.map {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 375px;
    position: relative;
    box-sizing: border-box;
}

.map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 480px) {
    .map {
        max-width: 750px;
    }
}


/* about */
.about__bg {
    width: 100%;
    background: url("../img/bg_about.webp");
    background-size: 1920px 1080px;
    animation: about-section 100s linear infinite;
}

@keyframes about-section {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1920px 0;
    }
}

.about__bg p {
    text-align: center;
    font-size: 1.3rem;
    font-family: var(--font-family-mincho);
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 2;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 50px;
}

.about {
    padding: 40px 10px;
}

.about-img {
    max-width: 450px;
    width: 100%;
    margin: 50px auto;
    display: block;
}

.about-txt {
    font-family: var(--font-family-mincho);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.syusai {
    padding: 30px 0;
}

@media (max-width: 768px) {

    .syusai .flex-2col {
        width: calc((100% - var(--flex-gap)) / 2);
    }
}


/* ==================================================== */
/* 🌟 【新・使い回し専用】位置もサイズも自由な魔法文字クラス */
/* ==================================================== */
.general-letters-img {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transform: scale(0.6);
    height: auto !important;
    /* 縦長バグを強制解除 */

    /* 💡 HTML側の transition-delay を確実に効かせるための設定 */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 💡「その文字自体」が画面に入ったらアクティブになって現れる */
.general-letters-img.is-active {
    opacity: 1;
    transform: scale(1);
}

.mt05 {
    width: 55px !important;
    top: 20%;
    left: 10%;
}

.mt01 {
    width: 35px;
    bottom: 2%;
    right: 10%;
}

.mt06 {
    width: 40px;
    top: 9%;
    right: 10%;
}

.mt07 {
    width: 50px;
    top: 70%;
    left: 20%;
}

.mt08 {
    width: 60px;
    top: 6%;
    left: 10%;
}

.mt09 {
    width: 50px !important;
    top: 15%;
    left: 9%;
}

.mt10 {
    width: 60px;
    bottom: 15%;
    right: 5%;
}

.mt11 {
    width: 45px;
    bottom: 0;
    left: 30%;
}

.mt12 {
    width: 60px;
    top: 23%;
    right: 5%;
}

.mt13 {
    width: 60px;
    top: 45%;
    left: 5%;
}

.mt14 {
    width: 50px;
    bottom: 2%;
    right: 3%;
}

.mt15 {
    width: 50px;
    top: 23%;
    left: 5%;
}

.mt16 {
    width: 50px;
    bottom: 5%;
    right: 2%;
}

.mt17 {
    width: 60px;
    top: 30%;
    left: 10%;
}

.mt18 {
    width: 50px;
    top: 30%;
    right: 10%;
}

.mt19 {
    width: 65px;
    top: 27%;
    right: 10%;
}

.mt20 {
    width: 60px;
    bottom: 0;
    right: 50%;
}

.mt21 {
    width: 40px !important;
    top: 0%;
    left: 10%;
}

.mt22 {
    width: 50px;
    top: 5%;
    left: 50%;
}

.mt23 {
    width: 50px;
    top: 5%;
    left: 2%;
}


.mt24 {
    width: 50px;
    bottom: 0;
    right: 1%;
}

/* ==================================================== */
/*  謎解き・宝探し機能のスタイリング（集約・洗練版） */
/* ==================================================== */

/* 正解の魔法文字（クリック済み） */
.general-letters-img.is-found {
    opacity: 0.15 !important;
    pointer-events: none;
    filter: grayscale(100%) blur(1px);
    transform: scale(0.8) !important;
    transition: all 0.4s ease;
}

/* ハズレの魔法文字（クリック済み） */
.general-letters-img.is-miss {
    opacity: 0.25 !important;
    filter: sepia(80%) hue-rotate(160deg);
    /* 違った感が出る色味に */
    pointer-events: none;
    /* ハズレも何度も押せないようにロック */
    cursor: default;
}

.general-letters-img {
    cursor: pointer;
}

/* ページ常設のクイズエリア */
.quiz-area {
    background: var(--color-bg-01);
    padding: 30px var(--sp-m);
    border-radius: 12px;
    margin: 40px auto;
    max-width: 550px;
    text-align: center;
    border: 2px solid var(--border-main);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quiz-area.is-locked {
    background: #f0f0f0;
    border-color: #ccc;
}

/* 回答欄の上の進行状況＆ゲージバー */
.page-search-status {
    margin-bottom: 20px;
}

#js-page-counter {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-text-sub);
    margin-bottom: 8px;
}

#js-page-counter .count {
    font-size: 32px;
    color: var(--color-accent);
    font-family: var(--font-family-g1);
}

.gauge-bar {
    width: 100%;
    max-width: 300px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #ccc;
}

.gauge-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-2nd), var(--color-3rd));
    transition: width 0.5s ease;
}

.quiz-msg {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.quiz-input-wrap {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.quiz-input-wrap input {
    padding: 12px;
    font-size: 16px;
    border: 2px solid var(--border-main);
    border-radius: 6px;
    width: 200px;
    outline: none;
}

.quiz-input-wrap input:disabled {
    background: #e9e9e9;
    border-color: #ccc;
}

.quiz-input-wrap button {
    padding: 12px;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.quiz-input-wrap button:disabled {
    background: #b3b3b3;
    cursor: not-allowed;
}

/* ヒントメッセージエリア */
.hint-area {
    margin-top: 25px;
    transition: all 0.5s ease;
}

.hint-area.is-hidden {
    display: none;
}

.hint-message {
    font-weight: bold;
    color: var(--color-accent);
    font-size: 15px;
    line-height: 1.6;
    background: var(--color-bg);
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed var(--color-accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* ツイートボタン */
.share-area {
    text-align: center;
    margin: 30px 0;
}

.share-area.is-hidden {
    display: none;
}

.twitter-btn {
    display: inline-block;
    background: #0c0c0c;
    color: var(--color-bg);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(63, 63, 63, 0.3);
    transition: all 0.3s;
}

.twitter-btn:hover {
    background: #242424;
    transform: translateY(-1px);
}

.complete-btn {
    background: linear-gradient(135deg, #28a745, #218838);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.complete-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
}

/* モーダルウィンドウ（集約版） */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--color-bg);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.is-open .modal-content {
    transform: translateY(0);
}

.modal-close-x {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.modal-close-x:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 20px;
    color: var(--color-text-sub);
    margin-bottom: 12px;
    font-family: var(--font-family-g1);
}

.modal-status {
    background: var(--color-bg-01);
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: bold;
}

.modal-status .modal-count {
    color: var(--color-accent);
    font-size: 16px;
}

.modal-sub-txt {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.modal-sub-txt-bottom {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 20px;
}

/* キーワードデザイン */
.keyword-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 15px;
}

.keyword-char {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--color-bg-01);
    border: 2px solid var(--border-main);
    border-radius: 8px;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-text);
}

.modal-share {
    border-top: 1px dashed #ddd;
    padding-top: 20px;
    margin-top: 10px;
}

/* 5体目のポップアップ */
.fifth-letter-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.fifth-letter-wrap.is-spawned {
    opacity: 1;
    pointer-events: auto;
}

.fifth-letter-content {
    background: var(--color-bg-01);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px dashed var(--color-accent);
}

.fifth-letter-img {
    width: 120px;
    height: auto;
    margin-top: 20px;
    cursor: pointer;
    animation: letterBounce 0.8s infinite alternate ease-in-out;
}

@keyframes letterBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* モーダル内・今回見つけた文字の画像プレビュー */
.modal-char-preview-wrap {
    background: var(--color-bg);
    border: 2px dashed var(--color-3rd);
    /* お好きなテーマカラーに調整してください */
    border-radius: 12px;
    width: 100px;
    height: 100px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-char-preview-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-sub-label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* まだ見つけていない空のキーワードスロット */
.keyword-char.is-empty {
    background: #f0f0f0;
    border-color: #ccc;
    color: transparent;
    box-shadow: none;
}

.keyword-char.is-empty::after {
    content: "？";
    color: #ccc;
    font-size: 16px;
}

/* ==================================================== */
/* 🌟 画像の横に該当の文字を表示するスタイル */
/* ==================================================== */

/* 画像と文字のプレビューを横並びにするコンテナ */
.modal-char-preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px auto;
}

/* モーダル内・今回見つけた文字の画像プレビュー（余白を微調整） */
.modal-char-preview-wrap {
    background: var(--color-bg);
    border: 2px dashed var(--color-3rd);
    border-radius: 12px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0;
}

/* 「＝」と「文字」の並び */
.modal-char-text-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-char-equal {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text);
}

.modal-char-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-accent);
    font-family: var(--font-family-g1);
    background: var(--color-bg-01);
    border: 2px solid var(--border-main);
    border-radius: 8px;
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==================================================== */
/* 📝 手書きメモ風ポップアップ（カンプ再現スタイル） */
/* ==================================================== */
.hint-memo-content {
    background: var(--color-bg);
    padding: 40px 25px 30px 25px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(232, 214, 194, 0.7);
}

/* メモの用紙部分（少しノートの罫線や手書き感を出す装飾） */
.memo-paper {
    text-align: left;
    margin: 20px 0;
}

.memo-text {
    font-size: var(--fs-lm);
    line-height: 2;
    color: var(--color-text-sub);
    font-family: var(--font-family-g1);
    border-bottom: 1px dashed var(--border-main);
    border-top: 1px dashed var(--border-main);
    padding: 10px 5px;
}

/* ロゴのカーソルを変更してノックできる感（ボタン感）を出す */
#js-logo {
    transition: transform 0.1s ease;
}

#js-logo:active {
    transform: scale(0.95);
    /* ノックした時に一瞬ポコッと凹む演出 */
}

/* 5体目の魔法文字を囲むラップ（初期状態は非表示） */
.fifth-letter-wrap {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: popupAnimation 0.3s ease-out;
}

/* JavaScriptで .is-spawned が付与されたら表示する */
.fifth-letter-wrap.is-spawned {
    display: block;
}

/* 5体目の画像自体のスタイル（お好みのサイズに調整してください） */
.fifth-letter-img {
    width: 150px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.fifth-letter-img:hover {
    transform: scale(1.1);
}

/* ふわっと出るアニメーション */
@keyframes popupAnimation {
    from {
        transform: translate(-50%, -40%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* ==================================================== */
/* 🏆 完全クリアモーダル（カンプ再現スタイル） */
/* ==================================================== */
.complete-modal-content {
    background: var(--color-bg) !important;
    border-radius: 16px !important;
    padding: 35px 20px 25px 20px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
    text-align: center;
}

/* 中央の見出し */
.complete-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 15px;
}

/* 中央の「画像 / ❤」のコンテナ */
.complete-char-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 10px 0;
}

.complete-char-wrap {
    position: relative;
    background: var(--color-bg);
    border: 2px dashed var(--color-3rd);
    border-radius: 12px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.complete-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ハートマーク（ふわふわ動くアニメーション付き） */
.heart-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 32px;
    animation: heartBeatAnimation 1.5s infinite ease-in-out;
}

@keyframes heartBeatAnimation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* メッセージテキスト */
.complete-msg {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 発見状況：全部の画像を横並びにするボックス */
.complete-all-images {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 5px;
}

.complete-all-images .keyword-char {
    width: 52px;
    height: 52px;
    background: var(--color-bg);
    border: 2px solid var(--border-main);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.complete-all-images .keyword-char img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 下部：PARCOに逃げた魔法文字を探しに行くボタン */
.parco-go-btn {
    display: block;
    background: var(--color-primary);
    color: var(--color-bg);
    font-size: var(--fs-s);
    padding: 14px 15px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(63, 63, 63, 0.3);
    margin: 30px 0 10px;
    transition: transform 0.1s, box-shadow 0.1s;
}

.parco-go-btn:hover {
    opacity: 0.9;
}

.parco-go-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--border-main);
}

/* アイコン全体の共通調整（文字との縦位置を合わせる） */
.material-symbols-outlined {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 必要に応じて初期サイズを設定 */
    font-size: 1.25em;
}

/* 特定のアイコンだけ色を変えたい場合 */
.quiz-msg .material-symbols-outlined {
    color: var(--color-accent);
    /* 魔法の杖やクラッカーをアクセントカラーに */
    margin-right: 4px;
}

/* ==================================================== */
/* TOPへ戻るボタン */
/* ==================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border: 2px solid var(--color-bg);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.3);

    /* 最初は非表示にしておく */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

/* スクロールしたとき用のクラス */
.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* タップしたときのプチ沈む演出 */
.scroll-top-btn:active {
    transform: translateY(2px);
}

.scroll-top-btn .material-symbols-outlined {
    font-size: 28px;
    color: var(--color-bg);
    font-weight: bold;
}