@charset "UTF-8";

:root {
    --color-primary: #5081A5;
    --color-secondary: #00AEEF;
    --color-yellow: #FCC800;
    --color-gray: #F1F5F8;
    --color-white: #fff;
    --color-black: #000;
    --color-light: #F2F7FA;
    /* 結果モーダルのスクロールバー */
    --color-scrollbar: #D9D9D9;
    /* 食料対策「1〜3日 / 4〜7日」タブ用 */
    --color-day-blue: #A5D8F2;
    --color-day-gold: #FFD400;
    --color-day-ink: #1F3A4D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
    padding-left: 0;
}

small {
    font-size: 12px;
}

/* button / input はブラウザ既定のフォント（Arial 13.33px 等）になり、
   body の Zen Maru Gothic / 16px / 700 を継承しない。
   個別に font-size を指定している箇所（.snav-toggle__label の 14px など）は
   そちらが優先されるので、ここで一括して継承させる。 */
button,
input,
select,
textarea {
    font: inherit;
}

body.overflow-hidden {
    padding-right: 16px;
}

/* ================
Utility classes */

/* display class */
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

@media only screen and (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
}

@media only screen and (min-width: 576px) {
    .d-sm-inline {
        display: inline !important;
    }
}

@media only screen and (min-width: 576px) {
    .d-sm-inline-block {
        display: inline-block !important;
    }
}

@media only screen and (min-width: 576px) {
    .d-sm-inline-flex {
        display: inline-flex !important;
    }
}

@media only screen and (min-width: 576px) {
    .d-sm-block {
        display: block !important;
    }
}

@media only screen and (min-width: 576px) {
    .d-sm-flex {
        display: flex !important;
    }
}

@media only screen and (min-width: 767px) {
    .d-md-none {
        display: none !important;
    }
}

@media only screen and (min-width: 767px) {
    .d-md-inline {
        display: inline !important;
    }
}

@media only screen and (min-width: 767px) {
    .d-md-inline-block {
        display: inline-block !important;
    }
}

@media only screen and (min-width: 767px) {
    .d-md-inline-flex {
        display: inline-flex !important;
    }
}

@media only screen and (min-width: 767px) {
    .d-md-block {
        display: block !important;
    }
}

@media only screen and (min-width: 767px) {
    .d-md-flex {
        display: flex !important;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-inline {
        display: inline !important;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-inline-block {
        display: inline-block !important;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.overflow-hidden {
    overflow: hidden;
}

.py-30 {
    padding-block: 30px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mx-auto {
    margin-inline: auto;
}

.text-primary {
    color: var(--color-primary);
}

.text-center {
    text-align: center;
}

@media only screen and (min-width:767px) {
    .text-md-left {
        text-align: left;
    }
}

.text-auto-phrase {
    word-break: auto-phrase;
    overflow-wrap: anywhere;

}

@media only screen and (max-width:767px) {
    .w-sp-50 {
        max-width: 50%;
        width: 100% !important;
    }

    .w-sp-80 {
        max-width: 80%;
        width: 100% !important;
    }

    .w-sp-60 {
        max-width: 60%;
        width: 100% !important;
    }

}

/* End Utility classes 
==========================*/
.bausai-guide {
    background-color: var(--color-primary);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    color: var(--color-black);
}

.bausai-guide__main {
    max-width: 830px;
    width: 100%;
    padding-inline: 15px;
    margin: 0 auto;
}

.bausai-guide__note {
    font-size: 14px;
    line-height: 1.4;
}

@media only screen and (max-width:767px) {
    .bausai-guide__note {
        font-size: 12px;
    }
}

.bausai-guide__breadcrumb {
    list-style-type: none;
    display: flex;
    margin-bottom: 40px;
}

@media only screen and (max-width:767px) {
    .bausai-guide__breadcrumb {
        margin-bottom: 20px;
        overflow-x: auto;
    }

    .bausai-guide__breadcrumb-item {
        white-space: nowrap;
    }
}

.bausai-guide__breadcrumb-item {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.bausai-guide__breadcrumb-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='8' viewBox='0 0 5 8' fill='none'%3E%3Cpath d='M3.06667 3.5385L0 0.471833L0.471833 0L4.01033 3.5385L0.471833 7.077L0 6.60517L3.06667 3.5385Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center;
    margin: 0 10px;
}

.bausai-guide__breadcrumb-item a {
    color: inherit;
    font-size: 14px;
    text-decoration: none;
}

.bausai-guide__breadcrumb-item a:hover {
    text-decoration: underline;
}

.bausai-guide__chapter {
    background-color: var(--color-gray);
    border-radius: 50px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter {
        border-radius: 30px;
    }
}

.bausai-guide__chapter-heading {
    border-bottom: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.bausai-guide__chapter-heading-num {
    width: 60px;
    height: 60px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--color-primary);
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-heading-num {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.bausai-guide__chapter-heading-title {
    font-size: 24px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-heading-title {
        font-size: 20px;
    }
}

.bausai-guide__chapter-section {
    padding-inline: 40px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-section {
        padding-inline: 20px;
    }
}

.bausai-guide__chapter-section.-top {
    padding-top: 40px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-section.-top {
        padding-top: 20px;
    }
}

.bausai-guide__chapter-section-inner {
    padding-inline: 20px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-section-inner {
        padding-inline: 0;
    }
}

.bausai-guide__chapter-intro {
    border: 2px solid var(--color-primary);
    padding: 40px;
    border-radius: 50px;
    background-color: var(--color-white);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-intro {
        border-radius: 30px;
        padding: 30px;
        gap: 30px;
    }
}

.bausai-guide__chapter-intro-top {
    max-width: 300px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
}

.bausai-guide__chapter-intro-top::after,
.bausai-guide__chapter-intro-top::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 4px;
}

.bausai-guide__chapter-intro-top-inner {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-block: 11px 16px;
    gap: 6px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-intro-top-inner {
        padding-block: 5px 10px;
    }
}

.bausai-guide__chapter-intro-top-text {
    font-size: 28px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-intro-top-text {
        font-size: 20px;
    }
}

.bausai-guide__chapter-intro-top-num {
    display: block;
    line-height: 1;
    font-size: 48px;
    color: var(--color-yellow);
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-intro-top-num {
        font-size: 40px;
    }
}

.bausai-guide__chapter-intro-title {
    font-size: 28px;
    color: var(--color-primary);
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-intro-title {
        font-size: 24px;
    }
}

.bausai-guide__chapter-intro-lead {
    font-size: 18px;
    line-height: 1.7;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-intro-lead {
        font-size: 16px;
    }
}

.bausai-guide__chapter-anchor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor {
        position: relative;
        display: block;
        gap: 0;
        padding: 0;
        min-height: 58px;
        overflow: hidden;
        border-radius: 16px;
        background-color: var(--color-white, #fff);
        box-shadow: inset 0 0 0 2px var(--color-primary, #4A7FA5);
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor.is-collapsed .snav-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor.is-collapsed .snav-toggle__label {
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor.is-collapsed .snav-toggle__icon {
        transform: rotate(180deg);
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor.is-collapsed .snav-toggle__icon:after {
        transform: translateX(-50%) scaleY(1);
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor.is-collapsed .snav-body {
        grid-template-rows: 0fr;
    }
}

.bausai-guide__chapter-anchor-link {
    flex: 0 0 auto;
    max-width: calc(50% - 5px);
    width: 100%;
    box-shadow: inset 0 0 0 2px var(--color-primary);
    padding: 20px 30px;
    border-radius: 16px;
    background-color: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor-link {
        max-width: 100%;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 18px 20px;
        border-bottom: 1px solid #e7eef4;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor-link:last-child {
        border-bottom: none;
    }
}

.bausai-guide__chapter-anchor-link:hover .bausai-guide__chapter-anchor-arrow {
    transform: translateY(5px);
}

.bausai-guide__chapter-anchor-count {
    color: var(--color-primary);
    font-size: 20px;
}

.bausai-guide__chapter-anchor-arrow {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: var(--color-gray);
    display: block;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.875 3.4375L5 6.5625L8.125 3.4375' stroke='%23222222' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-anchor-arrow {
        display: none;
    }
}

.bausai-guide__chapter-card {
    border: 2px solid var(--color-black);
    border-radius: 16px;
    padding-inline: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    min-height: 240px;
    /* 1枚のカード内を点線で区切った各ブロック（15 家族の連絡ルール）。
     中身は第1章のカードと同じ作り（-info > -info-inner + -info-img.pc）にして、
     第1章の SP 対応がそのまま効くようにしている。 */
    /* PC は段ごとに列数が違う（14 は 4カラム＋3カラム＋3カラム）が、
     SP では全イラストを通しの2カラムに流したい。
     SP だけ ul を display:contents にして、親の1つのグリッドにまとめる。 */
    /* 「1〜3日 / 4〜7日」の2段ブロック（食料対策）
     タブ列 + 本文列の Grid。align-items:stretch なので
     本文が折り返して高くなればタブの高さも自動で追従する。 */
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card {
        min-height: auto;
        padding: 18px;
    }
}

.bausai-guide__chapter-card:not(:last-child) {
    margin-bottom: 20px;
}

.bausai-guide__chapter-card-rule {
    padding-block: 24px;
}

.bausai-guide__chapter-card-rule:not(:last-child) {
    border-bottom: 2px dotted var(--color-primary);
}

.bausai-guide__chapter-card-rule .bausai-guide__chapter-card-title {
    color: var(--color-primary);
}

.bausai-guide__chapter-card-header {
    background-color: var(--color-light);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
}

@media only screen and (max-width:767px) {
    .bausai-guide__chapter-card-header {
        margin-bottom: 15px;
    }
}

.bausai-guide__chapter-card-header-icon {
    /* flex アイテムなので、見出しが長いとアイコンが縮んでしまう */
    flex-shrink: 0;
    /* SP ではアイコンを少し大きく見せる */
}

.bausai-guide__chapter-card-header-icon img {
    display: block;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-header-icon.-lg img {
        width: 50px;
        height: auto;
    }
}

.bausai-guide__chapter-card-header-title {
    color: var(--color-primary);
}

.bausai-guide__chapter-card-items {
    /* ▼ ここは2人の変更が重なった箇所。両方の指定を残している。
     ガターは --gap ではなく -item の padding-inline で取る（html-update 側の方式）。 */
    --col: 2;
    --gap: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* SP で余った1つを中央に置く */
    gap: var(--gap);
    margin-inline: -10px;
    margin-bottom: 30px;
    row-gap: 20px;
    /* イラストとラベルを中央寄せ。本文テキストは読みやすさのため左寄せのまま */
    /* SP では「テキスト＋イラストの2カラム」を1行×アイテム数に組み替える。
     PC は通常どおりイラスト上・テキスト下のまま。 */
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-items {
        margin-inline: -5px;
    }
}

.bausai-guide__chapter-card-items.-border-top {
    border-top: 2px dashed var(--color-primary);
    padding-top: 20px;
}

.bausai-guide__chapter-card-items.-mt-14 {
    margin-top: 14px;
}

.bausai-guide__chapter-card-items.-center {
    text-align: center;
}

.bausai-guide__chapter-card-items.-center .bausai-guide__chapter-card-item>img {
    display: block;
    margin-inline: auto;
}

.bausai-guide__chapter-card-items.-center .bausai-guide__chapter-card-item-text {
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-items.-sp-row {
        display: block;
        text-align: left;
        /* 1行組みではラベルもテキストの左に揃える */
    }

    .bausai-guide__chapter-card-items.-sp-row .bausai-guide__chapter-card-item {
        display: grid;
        /* イラスト列も 80px 固定。SP のイラストはページ全体で同じ大きさ。 */
        grid-template-columns: minmax(0, 1fr) 80px;
        /* イラストが2行にまたがるため、その高さが行に配分されて
       タイトルと本文の間が開いてしまう。上下に 1fr の行を置いて
       余白をそこに逃がし、テキストは詰めたまま上下中央に置く。 */
        grid-template-rows: 1fr auto auto 1fr;
        column-gap: 12px;
        max-width: 100%;
        border-right: 0;
        /* 1行になるので縦罫線は出さない */
    }

    .bausai-guide__chapter-card-items.-sp-row .bausai-guide__chapter-card-item:not(:last-child) {
        margin-bottom: 16px;
    }

    .bausai-guide__chapter-card-items.-sp-row .bausai-guide__chapter-card-item>img {
        grid-column: 2;
        grid-row: 1/5;
        align-self: center;
        width: 100%;
        max-width: none;
        height: auto;
    }

    .bausai-guide__chapter-card-items.-sp-row .bausai-guide__chapter-card-item .bausai-guide__chapter-card-item-title {
        grid-column: 1;
        grid-row: 2;
    }

    .bausai-guide__chapter-card-items.-sp-row .bausai-guide__chapter-card-item .bausai-guide__chapter-card-item-text {
        grid-column: 1;
        grid-row: 3;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-items-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-inline: -5px;
        margin-bottom: 30px;
    }

    .bausai-guide__chapter-card-items-group .bausai-guide__chapter-card-items {
        display: contents;
    }

    .bausai-guide__chapter-card-items-group.evacuation-backpack-group .bausai-guide__chapter-card-item {
        margin-bottom: 10px;
    }
}

.bausai-guide__chapter-card-item {
    flex: 0 0 auto;
    max-width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    width: 100%;
    padding-inline: 10px;
    /* SP は既定で2カラム（--col-sp で上書き可）。
     --col はインライン style で入るため、SP 用は別変数で計算する。 */
    /* -item-img を使わず img を直接置く節（10〜14）用。
     SP のイラストは 05〜09（-item-img）と同じ 80px に揃える。
     列幅に追従させると 767px 付近で大きくなりすぎ、
     同じページ内で節ごとに大きさが変わってしまうため。 */
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-item {
        padding-inline: 8px;
        max-width: calc((100% - var(--gap) * (var(--col-sp, 2) - 1)) / var(--col-sp, 2));
    }
}

.bausai-guide__chapter-card-item.-border-right {
    border-right: 2px dashed var(--color-primary);
    /* SP で行末になるアイテムの右罫線は消す */
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-item.-border-right:nth-child(2n) {
        border-right: 0;
    }
}

.bausai-guide__chapter-card-item.-border-bottom {
    border-bottom: 2px dashed var(--color-primary);
}

.bausai-guide__chapter-card-item-img {
    text-align: center;
    height: 121px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-item-img {
        height: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-item-img img {
        width: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-item>img {
        width: 80px;
        height: auto;
    }
}

.bausai-guide__chapter-card-item-title {
    color: var(--color-primary);
    margin-bottom: 5px;
}

.bausai-guide__chapter-card-item-title span {
    font-size: 14px;
}

.bausai-guide__chapter-card-item-text {
    font-size: 16px;
    line-height: 1.3;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-item-text {
        font-size: 14px;
    }
}

.bausai-guide__chapter-card-day {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 0;
    align-items: stretch;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-day {
        grid-template-columns: 30px minmax(0, 1fr);
        column-gap: 12px;
    }
}

.bausai-guide__chapter-card-day-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-day-ink);
    padding-bottom: 18px;
    /* 矢印に文字がかからないように */
    /* 下端をそのまま点に絞る（三角形を別要素で継ぎ足さない） */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 50% 100%, 0 calc(100% - 15px));
    /* ブルーを前面に。矢印の脇にできる三角の隙間はイエローで埋める */
}

.bausai-guide__chapter-card-day-tab.-blue {
    background-color: var(--color-day-blue);
    position: relative;
    z-index: 1;
}

.bausai-guide__chapter-card-day-tab.-gold {
    background-color: var(--color-day-gold);
    margin-top: -15px;
    /* ブルーの矢印の裏まで伸ばす */
    padding-top: 26px;
}

.bausai-guide__chapter-card-day-content {
    min-width: 0;
}

.bausai-guide__chapter-card-day-content.-first {
    padding-bottom: 16px;
}

.bausai-guide__chapter-card-day-content.-second {
    padding-top: 16px;
    border-top: 2px dotted var(--color-primary);
}

.bausai-guide__chapter-card-day-content-title {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.bausai-guide__chapter-card-day-content-text {
    font-size: 14px;
    line-height: 1.4;
}

.bausai-guide__chapter-card-day-content-row {
    display: flex;
    gap: 12px;
    align-items: start;
}

.bausai-guide__chapter-card-day-content-row .bausai-guide__chapter-card-day-content-text {
    flex: 1 1 auto;
    min-width: 0;
}

.bausai-guide__chapter-card-day-content-img {
    width: 200px;
    text-align: center;
}

.bausai-guide__chapter-card-day-content-img img {
    flex: 0 0 30%;
    max-width: 120px;
    height: auto;
}

@media only screen and (max-width: 992px) {
    .bausai-guide__chapter-card-day-content-img {
        width: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-day-content-img {
        width: 100%;
    }

    .bausai-guide__chapter-card-day-content-img img {
        max-width: 110px;
        display: block;
        margin: 10px auto 0;
    }
}

.bausai-guide__chapter-card-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.bausai-guide__chapter-card-info-inner {
    flex-grow: 1;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-info-inner .bausai-guide__chapter-card-checkbox {
        max-width: 100%;
    }
}

.bausai-guide__chapter-card-info-text {
    /* .d-flex 内の flex アイテム。本文が短いとテキスト幅も縮み、
     イラストがテキストのすぐ隣に来てしまうので、余白はテキスト側で持つ
     （＝イラストは常に右端）。 */
    flex-grow: 1;
    min-width: 0;
}

.bausai-guide__chapter-card-info-img.sp {
    display: none;
    /* flex アイテムなので、本文が長いとイラストが縮んでしまう。
     SP は 90px で固定する。 */
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-info-img.sp {
        display: block;
        flex-shrink: 0;
        width: 90px;
        margin: 0 auto 10px;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-info-img.sp img {
        width: 100%;
        height: auto;
    }
}

.bausai-guide__chapter-card-info-img.pc {
    display: block;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-info-img.pc {
        display: none;
    }
}

.bausai-guide__chapter-card-info .bausai-guide__chapter-card-img {
    display: none;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-info .bausai-guide__chapter-card-img {
        display: block;
        margin-bottom: 25px;
        text-align: center;
        width: 180px;
        margin-inline: auto;
    }
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-info .bausai-guide__chapter-card-img img {
        width: 100%;
        height: auto;
    }
}

.bausai-guide__chapter-card-title {
    font-size: 20px;
    margin-bottom: 7px;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-title {
        font-size: 18px;
    }
}

.bausai-guide__chapter-card-title.-sm {
    font-size: 16px;
}

.bausai-guide__chapter-card-text {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.3;
    /* color: #3D454B; */
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-text {
        font-size: 14px;
    }
}

.bausai-guide__chapter-card-img {
    flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-img {
        display: none;
    }
}

.bausai-guide__chapter-card-checkbox {
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    max-width: fit-content;
    padding: 14px;
    gap: 8px;
    background-color: rgba(80, 129, 165, 0.08);
    color: var(--color-primary);
}

@media only screen and (max-width: 767px) {
    .bausai-guide__chapter-card-checkbox {
        margin-inline: auto;
        max-width: 100%;
    }
}

.bausai-guide__chapter-card-checkbox label {
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1;
}

.bausai-guide__chapter-card-checkbox input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    background-color: var(--color-white);
}

.bausai-guide__chapter-card-checkbox input[type=checkbox]:checked {
    background-color: var(--color-primary);
}

.bausai-guide__chapter-card-checkbox input[type=checkbox]:checked~.bausai-guide__chapter-card-checkbox-checkIcon {
    color: var(--color-white);
}

.bausai-guide__chapter-card-checkbox-area {
    position: relative;
    line-height: 1;
}

.bausai-guide__chapter-card-checkbox-checkIcon {
    width: 13px;
    height: 11px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
}

.bausai-guide__chapter-card-checkbox-checkIcon svg {
    display: block;
}

.page-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 50px 0;
}

@media only screen and (max-width: 767px) {
    .page-nav {
        flex-direction: column;
    }
}

.page-nav__top-page {
    width: 100%;
}

.page-nav__btn {
    position: relative;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 44px;
    border-radius: 999px;
    border: 2px solid #5081A5;
    background: #fff;
    text-decoration: none;
    width: 44%;
    /* <button> は font を継承しないので明示する（<a> では実質無効） */
    font: inherit;
    color: inherit;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .page-nav__btn {
        width: 100%;
    }
}

.page-nav__btn--prev .page-nav__arrow {
    left: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 2 L3.5 5 L6.5 8' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-nav__btn--prev:hover .page-nav__arrow {
    transform: translateY(-50%) translateX(-4px);
}

.page-nav__btn--next .page-nav__arrow {
    right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 2 L6.5 5 L3.5 8' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-nav__btn--next:hover .page-nav__arrow {
    transform: translateY(-50%) translateX(4px);
}

.page-nav__body {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.page-nav__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.page-nav__title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

@media only screen and (max-width: 767px) {
    .page-nav__title {
        font-size: 14px;
    }
}

.page-nav__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #eef3f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
    transition: transform 0.25s ease;
}

.chapter-score {
    max-width: 576px;
    width: 100%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    /* position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1; 
    margin: 0 auto;*/
    border: 1px solid var(--color-white);
    border-radius: 6px;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.25);
    padding: 8px;
}

@media only screen and (max-width: 767px) {
    .chapter-score {
        width: auto;
        left: 15px;
        right: 15px;
        padding: 8px 12px;
    }
}

.chapter-score__icon {
    margin-right: 12px;
    display: block;
    flex-shrink: 0;
}

.chapter-score__icon img {
    display: block;
}

.chapter-score__content {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 0 15px 6px 0;
}

.chapter-score__content::after {
    content: "";
    display: block;
    height: 2px;
    border-radius: 4px;
    background-color: var(--color-yellow);
    flex: 0 0 calc(100% + 15px);
    margin-top: 5px;
}

@media only screen and (max-width: 767px) {
    .chapter-score__content::after {
        flex: 0 0 100%;
    }
}

.chapter-score__label {
    margin-right: 13px;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .chapter-score__label {
        margin: 0 0 6px 0;
    }
}

.chapter-score__points span {
    line-height: 1;
    display: inline-block;
}

.chapter-score__points-current {
    font-size: 32px;
}

@media only screen and (max-width: 767px) {
    .chapter-score__points-current {
        font-size: 22px;
    }
}

.chapter-score__points-total {
    font-size: 20px;
}

@media only screen and (max-width: 767px) {
    .chapter-score__points-total {
        font-size: 16px;
    }
}

.chapter-score__link {
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .chapter-score__link {
        margin-left: 16px;
    }
}

.chapter-score__link-arrow {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter-score__link-arrow::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M3.4375 8.125L6.5625 5L3.4375 1.875' stroke='%235081A5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.chapter-score__link:hover {
    opacity: 0.7;
}

.snav-toggle {
    display: none;
}

@media only screen and (max-width: 767px) {
    .snav-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        position: absolute;
        top: 0;
        right: 0;
        width: 58px;
        height: 58px;
        padding: 0 20px;
        border: none;
        background: transparent;
        cursor: pointer;
        overflow: hidden;
        white-space: nowrap;
        z-index: 2;
        transition: width 0.34s ease;
    }
}

@media only screen and (max-width: 767px) {
    .snav-toggle__label {
        font-size: 14px;
        font-weight: 700;
        color: var(--color-black, #222);
        opacity: 0;
        transition: opacity 0.2s ease;
    }
}

@media only screen and (max-width: 767px) {
    .snav-toggle__icon {
        position: relative;
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
        transition: transform 0.34s ease;
    }
}

@media only screen and (max-width: 767px) {

    .snav-toggle__icon::before,
    .snav-toggle__icon::after {
        content: "";
        position: absolute;
        background-color: var(--color-black, #222);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }
}

@media only screen and (max-width: 767px) {
    .snav-toggle__icon:before {
        left: 0;
        right: 0;
        top: 50%;
        height: 2px;
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 767px) {
    .snav-toggle__icon:after {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        transform: translateX(-50%) scaleY(0);
    }
}

.snav-body,
.snav-body-inner {
    display: contents;
}

@media only screen and (max-width: 767px) {
    .snav-body {
        display: grid;
        grid-template-rows: 1fr;
        transition: grid-template-rows 0.34s ease;
    }
}

.snav-body-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .snav-body-inner {
        display: block;
        min-height: 0;
        overflow: hidden;
    }
}

header {
    min-height: 60px;
    background-color: white;
    margin-bottom: 10px;
}

footer {
    height: 200px;
    background-color: #393939;
}

.result-modal {
    background-color: rgba(0, 0, 0, 0.45);
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 10;
}

.result-modal.is-show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.result-modal__close {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: -52px;
    right: -32px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M1.79525 32L0 30.2047L14.2047 16L0 1.79525L1.79525 0L16 14.2047L30.2047 0L32 1.79525L17.7953 16L32 30.2047L30.2047 32L16 17.7953L1.79525 32Z' fill='%23E3E3E3'/%3E%3C/svg%3E");
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .result-modal__close {
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .result-modal__close {
        width: 24px;
        height: 24px;
        right: 0;
        top: -32px;
    }
}

.result-modal__dialog {
    max-width: 910px;
    width: 100%;
    height: 630px;
    background-color: var(--color-white);
    padding: 60px 16px 60px 40px;
    border: 2px solid var(--color-black);
    border-radius: 32px;
    box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.25);
    position: relative;
    margin-inline: 15px;
}

@media only screen and (max-width: 767px) {
    .result-modal__dialog {
        height: calc(100vh - 20%);
        padding: 30px 16px 30px 20px;
    }
}

.result-modal__content {
    height: 100%;
    overflow-y: auto;
    padding-right: 16px;
}

.result-summary {
    display: flex;
    gap: 22px;
    /* SP は「スコア」→「章カード」の縦積み。
     __score が SP で max-width:100% なのはこの縦積み前提のため。 */
}

@media only screen and (max-width: 767px) {
    .result-summary {
        flex-direction: column;
        gap: 24px;
    }
}

.result-summary__score {
    text-align: center;
    flex: 0 0 auto;
    max-width: 37.204819%;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .result-summary__score {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .result-summary__score-img {
        width: 120px;
    }
}

.result-summary__score-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 20px;
    margin-block: 32px 16px;
}

@media only screen and (max-width: 767px) {
    .result-summary__score-content {
        font-size: 16px;
        margin-block: 20px 6px;
    }
}

.result-summary__score-label {
    margin-right: 13px;
}

.result-summary__score-point.-current {
    font-size: 30px;
    color: var(--color-primary);
}

.result-summary__score-message {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .result-summary__score-message {
        font-size: 14px;
    }
}

.result-summary__score-message::after {
    content: "";
    display: block;
    height: 3px;
    border-radius: 100px;
    width: 100%;
    background-color: var(--color-yellow);
    margin-top: 6px;
}

.result-summary__overview {
    flex: 0 0 auto;
    max-width: 60.096386%;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .result-summary__overview {
        max-width: 100%;
    }
}

.result-modal .bausai-guide__recommendation {
    padding: 60px 0;
}

@media only screen and (max-width:767px) {
    .result-modal .bausai-guide__preparation-check-card-title br {
        display: none;
    }
}


/* ※ scrollbar-width / scrollbar-color（標準プロパティ）は使わないこと。
   Chrome 121+ はこれらを解釈し、指定するとネイティブのスクロールバー描画に
   切り替わって ::-webkit-scrollbar-* が全て無視される（角丸が消え、上下の
   矢印ボタンが出る）。デザインどおりの見た目は -webkit- 系でのみ再現できる。 */
.scrollbar {
    /* デザイン上、溝は白のまま（トラックは出さない） */
}

.scrollbar::-webkit-scrollbar {
    width: 8px;
}

.scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--color-scrollbar);
    border-radius: 8px;
}

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

.bausai-guide {
    background: var(--color-primary);
    padding-block: 40px;
}

@media only screen and (max-width:767px) {
    .bausai-guide {
        padding-block: 15px;
    }
}

.bausai-guide.top-page {
    padding-bottom: 0;
}

.bausai-guide .highlight {
    color: var(--color-primary);
}

.bausai-guide__main-wrap {
    background-color: var(--color-gray);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .bausai-guide__main-wrap {
        border-radius: 30px;
    }
}

.bausai-guide__top {
    padding: 30px;
}

@media (max-width: 768px) {
    .bausai-guide__top {
        padding: 20px;
    }
}

.bausai-guide__top-desc {
    background: #ffffff;
    padding: 30px 61px;
    border-radius: 50px;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    border: 3px solid var(--color-primary);
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .bausai-guide__top-desc {
        flex-direction: column;
        padding: 15px 20px;
        border-radius: 30px;
    }
}

.bausai-guide__top-img {
    width: 128px;
}

@media (max-width: 768px) {
    .bausai-guide__top-img {
        width: 100px;
    }
}

.bausai-guide__top-text {
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.bausai-guide__top-text .highlight.-sm {
    font-size: 36px;
}

@media (max-width: 768px) {
    .bausai-guide__top-text .highlight.-sm {
        font-size: 26px;
    }
}

.bausai-guide__top-text .highlight.-lg {
    font-size: 64px;
    transform: translateY(3px);
    display: inline-block;
}

@media (max-width: 768px) {
    .bausai-guide__top-text .highlight.-lg {
        font-size: 52px;
    }
}

.bausai-guide__top-text.-top {
    font-size: 28px;
    letter-spacing: 3%;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .bausai-guide__top-text.-top {
        font-size: 20px;
        margin-bottom: 14px;
    }
}

.bausai-guide__top-text.-mid {
    font-size: 30px;
    margin-bottom: 17px;
    position: relative;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .bausai-guide__top-text.-mid {
        font-size: 21px;
        margin-bottom: 14px;
        line-height: 1.5;
    }
}

.bausai-guide__top-text.-mid::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 100px;
}

.bausai-guide__top-text.-bot {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1%;
}

@media (max-width: 768px) {
    .bausai-guide__top-text.-bot {
        font-size: 32px;
    }
}

.bausai-guide__top-text.-bot span.of {
    display: inline-block;
    transform: translateY(3px);
}

.bausai-guide__preparation-guide {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px 60px;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-guide {
        padding: 15px 15px 60px;
    }
}

.bausai-guide__preparation-guide-txt {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 38px;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-guide-txt {
        font-size: 16px;
    }
}

.bausai-guide__preparation-guide-txt:last-child {
    margin-bottom: 0;
}

.bausai-guide__slider {
    padding: 0 0 60px;
    overflow: visible;
    position: relative;
}

.bausai-guide__slider .bausai-guide__preparation-guide-after {
    position: absolute;
    z-index: 1;
    top: -101px;
    right: 34px;
    width: 101px;
    height: 125px;
    background: url("../images/object/top/bousai-guide_glass-1.webp") center/cover no-repeat;
}

@media (max-width: 768px) {
    .bausai-guide__slider .bausai-guide__preparation-guide-after {
        top: -85px;
        right: 18px;
        width: 85px;
        height: 106px;
    }
}

.bausai-guide__slider-viewport {
    overflow: hidden;
}

.bausai-guide__slider-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.bausai-guide__slider-set {
    display: flex;
    flex: 0 0 auto;
}

.bausai-guide__slider-item {
    display: grid;
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    place-items: center;
    background: #fff;
    border: 1px solid #000;
    border-right: 0;
}

@media (max-width: 768px) {
    .bausai-guide__slider-item {
        width: 120px;
        height: 120px;
        flex: 0 0 120px;
    }
}

.bausai-guide__slider-item img {
    width: 73px;
    max-height: 69px;
    object-fit: contain;
}

.bausai-guide__heading-pri {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
    position: relative;
    padding-bottom: 9px;
    max-width: 408px;
    width: 100%;
    margin: 0 auto 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .bausai-guide__heading-pri {
        font-size: 17px;
        margin-bottom: 12px;
    }
}

.bausai-guide__heading-pri::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #fcc800;
    border-radius: 100px;
}

.bausai-guide__preparation-check {
    position: relative;
}

.bausai-guide__preparation-check-wrap {
    padding: 0 40px 60px;
    /* max-width: 479px;
  width: 100%;
  margin: 0 auto; */
}

@media only screen and (max-width:767px) {
    .bausai-guide__preparation-check-wrap {
        padding: 0 15px 60px;
    }
}

.bausai-guide__preparation-check-txt {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.bausai-guide__preparation-check-txt .highlight.-xs {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
}

.bausai-guide__preparation-check-txt .text-sm {
    font-size: 18px;
}

.bausai-guide__preparation-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-grid {
        gap: 8px;
        grid-template-columns: 1fr;
    }
}

.bausai-guide__preparation-check-pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    background: var(--color-primary);
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.bausai-guide__preparation-check-pdf-btn:hover {
    opacity: 0.85;
}

.bausai-guide__preparation-check-pdf-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bausai-guide__preparation-check-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    border: 2px solid var(--color-primary);
    padding: 20px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    min-height: 143px;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-card {
        position: relative;
        padding: 13px;
        min-height: auto;
    }
}

.bausai-guide__preparation-check-card:hover {
    box-shadow: 2px 2px 0 0 var(--color-primary);
}

.bausai-guide__preparation-check-card:hover .bausai-guide__preparation-check-card-arrow {
    transform: translateX(3px);
}

.bausai-guide__preparation-check-card-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bausai-guide__preparation-check-card-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.bausai-guide__preparation-check-card-chapter {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-card-chapter {
        font-size: 13px;
    }
}

.bausai-guide__preparation-check-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .bausai-guide__preparation-check-card-title {
        font-size: 14px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-card-title {
        font-size: 14px;
        padding-right: 20px;
    }
}

.bausai-guide__preparation-check-card-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-card-arrow {
        position: absolute;
        top: 8px;
        right: 10px;
    }
}

.bausai-guide__preparation-check-card-arrow svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: #222222;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bausai-guide__preparation-check-card-score {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-card-score {
        font-size: 12px;
    }
}

.bausai-guide__preparation-check-card-score .score-value {
    font-size: 20px;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-card-score .score-value {
        font-size: 16px;
    }
}

.bausai-guide__preparation-check-after {
    position: absolute;
    z-index: 1;
    bottom: -29px;
    left: 74px;
    width: 92px;
    height: 122px;
    background: url("../images/object/top/bousai-guide_illuminate.webp") center/cover no-repeat;
}

@media (max-width: 768px) {
    .bausai-guide__preparation-check-after {
        bottom: -23px;
        left: 2px;
        width: 78px;
        height: 100px;
    }
}

.bausai-guide__recommendation {
    background: #fff;
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .bausai-guide__recommendation {
        padding: 40px 15px;
    }
}

.bausai-guide__recommendation .bausai-guide__heading-pri {
    max-width: 504px;
    line-height: 1.5;
}

.bausai-guide__recommendation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.bausai-guide__recommendation-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f1f5f8;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 20px 17px 18px;
}

.bausai-guide__recommendation-card-tagline {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: var(--color-primary);
    letter-spacing: -0.3px;
    background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
    background-size: 4px 2.5px;
    background-repeat: repeat-x;
    background-position: bottom left;
    padding-bottom: 6px;
}

@media (max-width: 480px) {
    .bausai-guide__recommendation-card-tagline {
        font-size: 16px;
    }
}

/* .bausai-guide__recommendation-card-tagline span {
  padding-bottom: 2px;
  background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
  background-size: 4px 2.5px;
  background-repeat: repeat-x;
  background-position: bottom left;
} */

.bausai-guide__recommendation-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #000;
}

.bausai-guide__recommendation-card-img {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    flex: 1;
}

.bausai-guide__recommendation-card-img img {
    width: 100%;
    max-width: 170px;
    object-fit: contain;
}

.bausai-guide__recommendation-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .bausai-guide__recommendation-brands {
        flex-direction: column;
        gap: 0;
    }
}

.bausai-guide__recommendation-brands-x {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.bausai-guide__recommendation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    background: #000;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.bausai-guide__recommendation-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .bausai-guide__recommendation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bausai-guide__recommendation-grid .bausai-guide__recommendation-card:last-child {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .bausai-guide__recommendation-grid {
        grid-template-columns: 1fr;
    }

    .bausai-guide__recommendation-grid .bausai-guide__recommendation-card:last-child {
        grid-column: auto;
    }
}

@media only screen and (max-width:767px) {

    .bausai-guide__chapter-card-item-img .portable-battery-img,
    .bausai-guide__chapter-card-item-img .portable-power-supply-img,
    .bausai-guide__chapter-card-item-img .drinking-water-img {
        width: 110px;
    }

    .toilet-hygiene-products .bausai-guide__chapter-card-info-img.sp {
        width: 160px;
    }
}

.bausai-guided__fixed-bottom-area {
    position: fixed;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 35px;
    padding-inline: 15px;
    z-index: 3;
}

/* page-top */
.page-top {
    text-decoration: none;
    min-width: fit-content;
}

.page-top__btn {
    width: 46px;
    height: 46px;
    background-color: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.25);
}

.page-top__btn::after {
    content: "";
    display: block;
    width: 18px;
    height: 21px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_1' data-name='レイヤー_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 61.6 79.1'%3E%3C!-- Generator: Adobe Illustrator 30.6.0, SVG Export Plug-In . SVG Version: 2.1.4 Build 109) --%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: %235081a5; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='st0' points='61.6 40.9 30.8 0 0 40.9 21.5 40.9 21.5 79.1 39.6 79.1 39.6 40.9 61.6 40.9'/%3E%3C/svg%3E");
}

.page-top__label {
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    line-height: 1.1;
    color: #5081a5;
    white-space: nowrap;
    font-weight: bold;
    background: #fff;
    padding: 1px 7px;
    border-radius: 3px;
    padding-top: 2px;
}


@media only screen and (max-width:767px) {
    .page-top {
        min-width: 0;
    }

    .bausai-guided__fixed-bottom-area {
        flex-wrap: wrap;
        gap: 0
    }

    .page-top__label {
        display: none;
    }
}

/*# sourceMappingURL=static-bausai-guide.css.map */

.test-text {
    position: sticky;
    bottom: 100px;
    color: #5081a5;
    text-align: center;
    z-index: 2;
    mix-blend-mode: difference;
}