@charset "utf-8"; /* =====================================================================
  フォント・タイポグラフィ
===================================================================== */
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/NS-400.woff2") format("woff2"), url("./fonts/NS-400.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/NS-700.woff2") format("woff2"), url("./fonts/NS-700.woff") format("woff");
    font-display: swap;
}

/* =====================================================================
  CSS変数・トークン
===================================================================== */
:root {
    /* ベースサイズシステム */
    font-size: 62.5%;
    --s-2: calc(var(--s1) / 2);
    --s1: 0.8rem;
    --s2: calc(var(--s1) * 2);
    --s3: calc(var(--s1) * 3);
    --s4: calc(var(--s1) * 4);
    --s5: calc(var(--s1) * 5);
    --s6: calc(var(--s1) * 6);
    --s7: calc(var(--s1) * 7);
    --s8: calc(var(--s1) * 8);
    --s9: calc(var(--s1) * 9);
    --s10: calc(var(--s1) * 10);
    --s11: calc(var(--s1) * 11);
    --s12: calc(var(--s1) * 12);
    --s13: calc(var(--s1) * 13);
    --s14: calc(var(--s1) * 14);
    /* Font size tokens - フォントサイズ基準で整理 */
    --fs-s: clamp(1.4rem, 1.28rem + 0.53vw, 1.6rem);
    /* 14px -> 16px */
    --fs-m: clamp(1.65rem, 1.53rem + 0.5vw, 2rem);
    /* ~16.5px → 20px */
    --fs-l: clamp(1.95rem, 1.8rem + 0.6vw, 2.5rem);
    /* ~19.5px → 25px */
    --fs-xl: clamp(2.3rem, 2.05rem + 0.9vw, 3.1rem);
    /* 23px → 31px */
    --fs-2xl: clamp(2.7rem, 2.35rem + 1.1vw, 3.8rem);
    /* 27px → 38px */
    --fs-xxl: clamp(3.1rem, 2.76rem + 1.48vw, 4.8rem);
    /* 31px -> 48px */
    /* Color tokens - 配色基準で整理 */
    --c0: #f9f9f7;
    /* 背景ベース */
    --c1: #e8ebf1;
    /* 背景プライマリ */
    --c2: #f3efe8;
    /* 背景セカンダリ */
    --c3: #faf7f2;
    /* 背景サブ */
    --cE: #404040;
    /* 背景エンファシス */
    /* テキストカラー */
    --txt: #3e3a39;
    --sub: #949494;
    --inv: #f0f0f0;
    --white: #ffffff;
    --black: #000000;
    /* ライン・ボーダー */
    --ln: #cccccc;
    --ln-dark: #d0d3e0;
    /* カード用カラー変数 */
    --pri: #666666;
    --pri-dark: #333333;
    --sec: #cccccc;
    --sec-dark: #999999;
    --acc: #dddddd;
    --acc-dark: #111;
    --suc: #777777;
    --lig: #eeeeee;
    --bor: #949494;
    --sha: rgba(0, 0, 0, 0.08);
    --shh: rgba(0, 0, 0, 0.12);
    /* その他の色 */
    --gray-light: #EB5505;
    --gray-medium: #818181;
    --gray-border: #d0d3e0;
    --accent-green: #248471;
    /* 角丸トークン */
    --r-xs: var(--s-2);
    /* 極小角丸 */
    --r-sm: var(--s1);
    /* 小角丸 */
    --r-md: var(--s2);
    /* 中角丸 */
    --r-lg: var(--s3);
    /* 大角丸 */
    --r-xl: var(--s4);
    /* 特大角丸 */
    /* 影トークン */
    --sd-0: none;
    /* 影なし */
    --sd-1: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    /* 軽い影 */
    --sd-2: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15);
    /* 中程度の影 */
    --sd-3: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
    /* 強い影 */
}

/* レスポンシブフォントサイズ */
@media screen and (max-width: 1000px) {
    :root {
        font-size: 1vw;
        --s1: 0.6rem;
    }
}

/* =====================================================================
  ベーススタイル・リセット
===================================================================== */
/* ベースボディスタイル */
body {
    margin: 0;
    padding: 0;
    background: var(--white);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--txt);
    min-width: 1100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

body.is-gnav-open {
    overflow: hidden;
}

/* タイポグラフィリセット */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* エレメントリセット */
ul, ol, dl, p, img, form, dt, dd, figure {
    margin: 0;
    padding: 0;
    border: 0;
}

/* リストスタイル */
ul li, ol li {
    list-style: none;
    position: relative;
}

/* デフォルトリストスタイリング */
ul:not([class]) li {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

ul:not([class]) li::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #0068B7;
    position: absolute;
    bottom: calc(100% - 1.2em);
    left: 0.4em;
}

ol:not([class]) li {
    padding-left: 1.5em;
    margin-bottom: 1em;
    counter-increment: number;
}

ol:not([class]) li::before {
    content: counter(number);
    width: 1.6rem;
    color: white;
    font-size: 1.6rem;
    background: #d32e2e;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 0.5rem;
    left: 0;
}

/* フォームエレメントリセット */
input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 画像リセット */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* リンクスタイル */
a {
    color: inherit;
}

/* タイポグラフィユーティリティ */
strong {
    font-weight: 700;
}

em {
    font-style: italic;
    font-weight: normal;
}

small {
    font-size: 80%;
}

/* 段落間隔 */
p:not([class]) {
    line-height: 2;
}

p + p {
    margin-top: 0.6em;
}

/* ボックスサイジング */
* {
    box-sizing: border-box;
}

/* ディスプレイユーティリティ */
.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

.for-sp {
    display: none;
}

.sp-only, .sp_only {
    display: none;
}

.pc-only {
    display: inline;
}

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

    .for-sp, .sp-only, .sp_only {
        display: block;
    }
}

/* 縮小クラス（汎用） */
.small {
    font-size: 80%;
}

/* テキスト強調ユーティリティ */
.marker {
    font-weight: 700;
    background: linear-gradient(var(--acc) calc(100% - 30%), var(--acc) calc(100% - 30%));
}

.txt_bold {
    font-weight: 700;
    color: #eb5507;
}

/* =====================================================================
  レイアウトシステム
===================================================================== */
/* コンテナレイアウト */
.l-center, .l-container {
    max-width: 1200px;
    box-sizing: content-box;
    margin: 0 auto;
    padding-left: var(--s3);
    padding-right: var(--s3);
}

/* セクションレイアウト */
.l-sec {
    padding: var(--s10) 0;
    color: var(--txt);
}

/* スタックレイアウト */
.l-stack-xs {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
}

.l-stack-s {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.l-stack-sm {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.l-stack-m {
    display: flex;
    flex-direction: column;
    gap: var(--s5);
}

.l-stack-md {
    display: flex;
    flex-direction: column;
    gap: var(--s7);
}

.l-stack-l {
    display: flex;
    flex-direction: column;
    /* gap: var(--s10); */
}

.l-stack-xl {
    display: flex;
    flex-direction: column;
    gap: var(--s12);
}

.l-column {
    gap: var(--s2);
}

.l-column__side {
    width: 100%;
}

.l-column__main {
    width: 100%;
}

/* グリッドレイアウト */
.l-grid-2 {
    display: grid;
    gap: var(--s3);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-grid-3 {
    display: grid;
    gap: var(--s3);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-grid-two, .l-grid-two-large {
    display: grid;
    gap: var(--s2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-grid-three {
    display: grid;
    gap: var(--s2);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-grid-four {
    display: grid;
    gap: var(--s2);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.l-grid-two-flex, .l-grid-three-flex, .l-grid-four-flex {
    --minimum: calc((100% - var(--s2)) / 2);
}

@media screen and (max-width: 768px) {
    .l-grid-2, .l-grid-3, .l-grid-two, .l-grid-two-large, .l-grid-three, .l-grid-four {
        display: flex;
        flex-direction: column;
        gap: var(--s8);
    }
}

/* クラスターレイアウト */
.l-cluster {
    gap: var(--s2);
    flex-flow: column;
}
#low-page.l-center, #low-page.l-container {
    max-width: 1000px;
}
/* フロートレイアウト */
/* =====================================================================
  画像レイアウト
===================================================================== */
/* 中央画像 */
.l-center-img {
    max-width: 60rem;
    margin: 0 auto;
    padding-bottom: var(--s2);
    text-align: center;
}

/* 左画像 */
.l-left-img {
    width: 40%;
    margin-right: var(--s4);
    padding-bottom: var(--s1);
    text-align: center;
    float: left;
}

/* 右画像 */
.l-right-img {
    width: 40%;
    margin-left: var(--s3);
    padding-bottom: var(--s1);
    text-align: center;
    float: right;
}

/* 画像ボックス */
.l-center-img-box, .l-left-img-box, .l-right-img-box {
    display: flow-root;
}

/* 画像キャッチコピー */
.l-center-img-catch, .l-left-img-catch, .l-right-img-catch {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--pri);
    margin-bottom: var(--s1);
    line-height: 1.6;
}

/* スクロールレイアウト */
.l-scroll-x {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.l-scroll-x::-webkit-scrollbar {
    height: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar-track {
    background: var(--lig);
}

.l-scroll-x::-webkit-scrollbar-thumb {
    background: var(--acc);
}

.l-scroll-x table {
    width: inherit;
}

.l-scroll-x table th, .l-scroll-x table td {
    min-width: 20rem;
}

/* ヘッダー・ナビゲーションレイアウト */
.l-header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-gnavi {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.l-gnavi::-webkit-scrollbar {
    display: none;
}

/*
---------------------------------------------
    navigation ※TOP、下層共通
*/
.header-area-upper {
    padding: 0.7rem 1.2rem;
    text-align: right;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

header.header-area.header-area--top {
    position: relative;
}

.header-title {
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
}

.header-title::before {
    content: "PR";
    padding: 0 0.2rem;
    color: var(--white);
    background-color: var(--pri-dark);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -2.4rem;
    line-height: 1.2;
}

.header-title a {
    text-decoration: none;
}

.gnavi-btn-close {
    display: none;
}

.toggle-content {
    display: none;
}

.gnavi-ctrl {
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
}

.gnavi-ctrl.is-show {
    opacity: 1;
    visibility: visible;
}

#low-header .gnavi-ctrl {
    /* opacity: 1; */
    visibility: visible;
}

.gnavi-btn {
    width: 5.6rem;
    height: 5.6rem;
    background: #EB5505;
    display: block;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 200;
    cursor: pointer;
    border-radius: var(--r-sm);
}

.gnavi-btn span {
    width: 3.2rem;
    height: 0.2rem;
    display: inline-block;
    background: var(--white);
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn span:nth-of-type(1) {
    top: 2rem;
}

.gnavi-btn span:nth-of-type(2) {
    top: 2.8rem;
}

.gnavi-btn span:nth-of-type(3) {
    top: 3.6rem;
}

.gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.7rem) rotate(-45deg);
}

.gnavi-btn.is-active span:nth-of-type(2) {
    opacity: 0;
}

.gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.7rem) rotate(45deg);
    top: 3.4rem;
}

.gnavi-btn-close {
    width: 80%;
    margin: var(--s3) auto;
    padding: var(--s2);
    background: #9ca4b2;
    display: block;
    text-align: center;
    border-radius: 50vh;
}

.gnavi-btn-close__inner {
    padding: 0 var(--s3);
    display: block;
    color: var(--white);
    font-weight: 700;
    position: relative;
    text-align: center;
    width: 100%;
}

.gnavi-btn-close__inner::before {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
}

.gnavi-btn-close__inner::after {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(135deg);
}

.gnavi-area {
    width: 100%;
    max-width: 37.5rem;
    height: 100vh;
    padding: var(--s1) var(--s1) var(--s10);
    display: block;
    background: #f9f9f7;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

.gnavi-title {
    width: 60%;
    margin: 0 2rem var(--s3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

.gnavi-pc {
    display: none;
}

.gnavi-list {
    /* border-bottom: 1px solid var(--pri-dark); */
    position: relative;
}

.gnavi-list li {
    padding-left: 0;
}

.gnavi-list__item::before {
    display: none;
}

.gnavi-list__link {
    width: 100%;
    margin: 0 auto;
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    /* border-top: 1px solid var(--pri-dark); */
    display: block;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    position: relative;
}

.gnavi-list__sub .gnavi-list__link {
    font-size: 1.4rem;
    font-weight: 400;
}

.gnavi-list__link::after {
    content: "";
    width: 0.8rem;
    height: 1.7rem;
    background: url("./img/arrow-s.svg") no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}

.gnavi-list__link--toggle::after {
    background-image: url("./img/arrow-s-down.svg");
    width: 1.4rem;
    height: 1rem;
}

.gnavi-list__link--toggle.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
}

.gnavi-list__sub {
    width: 100%;
    /* background: var(--white); */
    padding-left: 1rem;
    padding-bottom: 2rem;
}

.gnavi-list__low .gnavi-list__link {
    padding: var(--s2) var(--s4) var(--s2) var(--s4);
}

.gnavi-list__low .gnavi-list__link::after {
    content: "└";
    background: none;
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    left: 1rem;
}

.is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
}

/* ==============================================
   目次02 (1.9.1 index02-frame)
   ============================================== */
.index02-frame {
    width: 100%;
}

.index02-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3) var(--s4) var(--s3);
    border: solid 0.1rem var(--ln-dark);
    background: var(--white);
    position: relative;
}

.index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    color: var(--pri-dark);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background: url("./img/dummy-icon.png") no-repeat left center;
    background-size: 4rem auto;
    position: relative;
    border-bottom: 1px solid var(--ln-dark);
}

.index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}

.index02-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}

.index02-chapter-h a {
    display: block;
    text-decoration: none;
}

.index02-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}

.index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}

.index02-chapter-h-two::before, .index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}

.index02-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: var(--pri);
    transform: translateY(-50%);
    top: 0.8em;
}

.index02-chapter-h-three::before {
    content: "└";
}

/*----------------------------------------------
    more content settings
*/
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}

.more-content-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
}

.more-content-gradation.is-open::after {
    display: none;
}

.index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    padding: 2rem 6rem;
    border: 0.2rem solid var(--pri);
    text-align: center;
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
}

.index02-btn::before {
    content: "";
    width: 2rem;
    height: 0.2rem;
    background: var(--black);
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translate(0, -50%);
}

.index02-btn::after {
    content: "";
    width: 0.2rem;
    height: 2rem;
    background: var(--black);
    position: absolute;
    top: 50%;
    right: 3.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.index02-btn.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}

/* ==============================================
   関連記事01(related-article01)
   ============================================== */
.related-article01-frame {
    margin: var(--s6) auto var(--s10);
    padding: var(--s3) var(--s4) var(--s4);
    position: relative;
    border-radius: var(--r-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    width: 80%;
    background: var(--c1);
}

.related-article01-title {
    /* margin-bottom: var(--s2); */
    color: var(--txt);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: var(--s1);
    position: relative;
    padding-top: var(--s1);
}

.related-article01-title::after {
    content: "";
    width: 100%;
    height: 2px;
    /* background: repeating-linear-gradient(to right, var(--accent-green), var(--accent-green) 2px, transparent 2px, transparent 14px); */
    position: absolute;
    bottom: -8px;
    left: 0;
}

.related-article01-list {
    margin-top: var(--s2);
    padding: 0;
    list-style: none;
}

.related-article01-list li {
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    width: fit-content;
}

.related-article01-list li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: var(--pri);
    position: absolute;
    top: 0.6em;
    left: 0.4em;
}

.related-article01-list a {
    text-decoration: none;
}

.related-article01-list a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 0.1rem; */
    /* background: var(--ln); */
}

/* トグルユーティリティ */
.toggle-sp-content {
    display: block;
}

/* =====================================================================
  パンくずリスト
===================================================================== */
#pankuzuWrap {
    margin: 0;
    background: var(--c0);
}

#pankuzu {
    font-size: 1.3rem;
    padding: var(--s1) 0;
    line-height: 1.4;
}

#pankuzu a {
    color: inherit;
    text-decoration: underline;
}

#pankuzu span {
    color: inherit;
    font-weight: inherit;
}

/* =====================================================================
  ページ見出し
===================================================================== */
/* 下層ページ共通見出し */
#low-page h1:not([class]) {
    font-size: clamp(2.4rem, 2.6vw, 4rem);
    /* 最大4rem */
    font-weight: 700;
    text-align: center;
    color: var(--pri-dark);
    margin-block: var(--s10) var(--s10);
    position: relative;
    }


#low-page h1:not([class])::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 3.5em;
    background-image: url(img/c-h2-before.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#low-page h1:not([class])::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 3.5em;
    background-image: url(img/c-h2-after.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}




#low-page h2:not([class]) {
    width: 100%;
    margin-block: var(--s8) var(--s3);
    font-size: 3.2rem;
    font-weight: 700;
    padding: var(--s2) var(--s3);
    background: linear-gradient(to bottom right, #4c4c4c, #561e00, #a53a00);
    color: white;
    line-height: 1.6;
    border-radius: var(--r-sm);
}

#low-page h3:not([class]) {
    width: 100%;
    margin-block: var(--s4) var(--s3);
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    padding-left: var(--s7);
    min-height: var(--s5);
    background: url("./img/icon-tit2.svg") no-repeat left 1rem center / var(--s4) auto, var(--c0);
    border-radius: var(--r-sm);
    border: 1px solid #EB5505;
}

#low-page h4:not([class]) {
    width: 100%;
    margin-block: var(--s4) var(--s3);
    font-size: 2.4rem;
    font-weight: 700;
    background: url("./img/circle.svg") no-repeat left 1rem center / auto 65%;
    padding: var(--s1) var(--s1) var(--s1) var(--s3);
    padding-left: var(--s5);
    line-height: 1.6;
    border-bottom: 1px solid var(--pri);
}

#low-page h5:not([class]) {
    width: 100%;
    margin-block: var(--s4) var(--s1);
    padding: var(--s1) var(--s1) var(--s1) var(--s5);
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold;
    color: #eb5507;
}

/* 見出しリンク */
#low-page h2:not([class]) a, #low-page h3:not([class]) a, #low-page h4:not([class]) a, #low-page h5:not([class]) a {
    display: block;
    padding-right: 1.6em;
    text-decoration: none;
    background: url("./img/arrow-right.svg") no-repeat center right / auto 0.8em;
}

#low-page h2:not([class]) a {
    background: url("./img/arrow-wh-right.svg") no-repeat center right / auto 0.8em;
}

/* =====================================================================
  画像レイアウト
===================================================================== */
/* 中央画像 */
.low-center-img {
    max-width: 60%;
    margin: 0 auto;
    padding-bottom: var(--s2);
    text-align: center;
}

/* 左画像 */
.low-left-img {
    width: 40%;
    margin-right: var(--s4);
    padding-bottom: var(--s1);
    text-align: center;
    float: left;
}

/* 右画像 */
.low-right-img {
    width: 40%;
    margin-left: var(--s3);
    padding-bottom: var(--s1);
    text-align: center;
    float: right;
}

/* 画像ボックス */
.low-center-img-box, .low-left-img-box, .low-right-img-box {
    display: flow-root;
    margin-block: var(--s7); }

/* 画像キャッチコピー */ .low-center-img-catch, .low-left-img-catch, .low-right-img-catch {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #eb5507;
    margin-bottom: var(--s1);
    line-height: 1.6;
}

/* =====================================================================
  キャプション
===================================================================== */
.caption {
    margin-top: 0.8em;
    /* color: var(--sub); */
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    overflow-x: auto;
    display: block;
}

.caption a {
    color: var(--sub);
}

.caption--right {
    text-align: right;
}

.caption--left {
    text-align: left;
}

.caption br {
    display: none;
}

/* スクロール可能キャプション */
.caption-scroll {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

.caption-scroll a {
    color: var(--sub);
}

.caption-scroll::-webkit-scrollbar {
    height: 0.6rem;
}

.caption-scroll::-webkit-scrollbar-track {
    background: var(--lig);
}

.caption-scroll::-webkit-scrollbar-thumb {
    background: var(--acc);
}

/* =====================================================================
  テーブル・リスト
===================================================================== */
/* ベーステーブルスタイル */
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    /* background: var(--c0); */
}

table th, table td {
    padding: var(--s1);
    border: 1px solid var(--ln);
    word-break: break-word;
}
table td {
    width: 70%;
}
table th {
    text-align: left;
    /* border-color: var(--pri); */
    background: var(--c0);
    border: 1px solid var(--ln);
}

/* 下層ページテーブル間隔 */
#low-page table {
    margin-block: 4rem; }

/* 下層ページリスト間隔 */
#low-page ul:not([class]), #low-page ol:not([class]) {
    margin-block: 4rem; }

/* =====================================================================
  ボタン
===================================================================== */
/* 共通ボタンコンテナスタイル */
.btn-internal, .btn-anchor, .btn-web, .btn-tel {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

#index .btn-web, #index .btn-tel, #index .btn-internal, #index .btn-anchor {
    width: 95%;
    margin: 0 auto var(--s1);
}

/* 共通ボタンリンクスタイル */
.btn-internal a, .btn-anchor a, .btn-web a, .btn-tel a {
    width: 100%;
    margin: 0;
    display: block;
    color: var(--white);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    padding: var(--s2) var(--s6) var(--s2) var(--s5);
    border-radius: 50vh;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--sd-3);
    font-size: clamp(1.65rem, 1.53rem + 0.5vw, 1.8rem);
}

/* ボタンホバーエフェクト */
.btn-internal:hover a, .btn-anchor:hover a, .btn-web:hover a, .btn-tel:hover a {
    transform: translateY(var(--s-2));
    box-shadow: none;
    opacity: 1;
}

/* 内部ボタン */
.btn-internal a {
    background: url("./img/arrow-wh-right.svg") no-repeat center right 1em / auto 1em, #0068B7;
}

/* アンカーボタン */
.btn-anchor a {
    padding: var(--s2) var(--s6) var(--s2) var(--s5);
    background: url("./img/arrow-wh-down.svg") no-repeat center right 2rem / auto 0.8em, linear-gradient(to right, var(--sec-dark), var(--pri));
}

/* Webボタン */
.btn-web {
    z-index: 5;
}

.btn-web a {
    padding: var(--s2) var(--s5);
    background: url(./img/arrow-wh-right.svg) no-repeat center right 0.8em / auto 1em, #d32f2f;
}

/* テキストリンクボタン */
.btn-link {
    text-align: right;
}

.btn-link a {
    margin: 0;
    padding: 0 var(--s3) var(--s-2) 0;
    background: url("./img/arrow-s.svg") no-repeat top 0.3em right/auto 0.8em;
    display: inline-block;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}



.btn-link a:hover {
    opacity: 0.4;
}

.btn-link a:hover::before {
    opacity: 0;
}

/* 電話ボタン */
.btn-tel {
    display: none;
}

/* ボタン背景サイズ調整 */
.btn-internal a, .btn-anchor a, .btn-web a {
    background-size: auto 1em;
}

/* =====================================================================
  フッター
===================================================================== */
/* フッターエリア */
/*---------------------------------------------
  footer
*/
.footer-area {
    padding: var(--s5) 0 0;
    background: var(--c1);
    /* margin-top: var(--s14); */
    position: relative;
}

.footer-area-logo {
    width: 23rem;
    max-width: 100%;
    margin: 0 0 var(--s5);
}

.footer-area-logo a {
    display: block;
}

.footer-main {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--s3);
    padding-left: var(--s3);
    box-sizing: content-box;
}

.footer-bottom {
    padding: var(--s1) 0;
    background: #333333;
    color: var(--white);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-box + .footer-box {
    margin-top: var(--s5);
}

.footer-menu-title {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
    line-height: 1.3;
    border-bottom: 0.1rem solid var(--ln);
}

.footer-menu-title__link {
    padding: var(--s1);
    display: block;
    text-decoration: none;
    FONT-WEIGHT: 700;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
}

.footer-menu__item {
    width: calc((100% - var(--s2) * 3) / 4);
    font-size: 1.3rem;
    line-height: 1.3;
}

.footer-menu__item::before {
    display: none;
}

.footer-menu__link {
    padding: var(--s1);
    display: block;
    text-decoration: none;
}

.footer-menu-sub {
    margin-left: var(--s1);
}

.footer-menu-sub__item {
    font-size: 1.2rem;
    line-height: 1.6;
}

.footer-menu-sub__item::before {
    display: none;
}

.footer-menu-sub__link {
    padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
    display: block;
    text-decoration: none;
    position: relative;
}

.footer-menu-sub__link::before {
    content: "└";
    position: absolute;
    top: var(--s-2);
    left: 0;
}

.footer-disclaimer {
    margin: var(--s5) 10px;
    /* background: var(--white); */
    font-size: 1.3rem;
    line-height: 1.5;
}

.footer-disclaimer__label {
    display: inline;
}

.footer-disclaimer__text {
    display: inline;
}

.footer-nocopy {
    margin: var(--s5) 1rem;
    font-size: 1.2rem;
    /* text-align: center; */
}

.footer-copyright {
    font-size: 1.2rem;
}

.footer-copyright__link {
    color: var(--white);
    text-decoration: none;
}

.footer-sitemap {
    font-size: 1.2rem;
}

.footer-sitemap__link {
    padding: 0 1.2em 0 0;
    background: url("./img/arrow-s-wh.svg") no-repeat center right/auto 0.8em;
    color: var(--white);
    text-decoration: none;
}

/* =====================================================================
  ページトップボタン
===================================================================== */
.page-top {
    width: 6.4rem;
    height: 6.4rem;
    position: fixed;
    right: 1rem;
    bottom: var(--s7);
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-top.js-show {
    opacity: 1;
}

.page-top__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* =====================================================================
  レスポンシブデザイン
===================================================================== */
@media screen and (max-width: 767px) {
    /* ベース設定 */ :root {
        font-size: 2.6666666667vw;
    }

    body {
        min-width: auto;
        font-size: 1.4rem;
    }

    .sp_br {
        display: inline;
    }

    .pc_br, .for-pc {
        display: none;
    }

    /* レイアウト調整 */
    .l-center, .l-container, .c-card .pad-xl {
        padding-right: var(--s2);
        padding-left: var(--s2);
        box-sizing: border-box;
    }

    .l-cluster {
        gap: var(--s1);
        flex-flow: column;
    }

    .l-column {
        gap: var(--s2);
    }

    .l-column__side, .l-column__main {
        width: 100%;
    }

    /* トグルコンテンツ */
    .toggle-sp-content {
        display: none;
    }

    /* フロート調整 */
    .l-float__left-pc, .l-float__right-pc, .l-float__center {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        float: none;
    }

    .l-float__left {
        width: 45%;
        margin-right: var(--s2);
        margin-bottom: var(--s1);
    }

    .l-float__right {
        width: 45%;
        margin-left: var(--s2);
        margin-bottom: var(--s1);
    }

    .l-center-img, .l-left-img, .l-right-img {
        width: 100%;
    }

    /* スクロール調整 */
    .l-scroll-x-sp {
        width: 100%;
        padding-bottom: 0.6rem;
        overflow: hidden;
        overflow-x: scroll;
        overflow-y: visible;
    }

    .l-scroll-x-sp::-webkit-scrollbar {
        height: 0.6rem;
    }

    .l-scroll-x-sp::-webkit-scrollbar-track {
        background: var(--lig);
    }

    .l-scroll-x-sp::-webkit-scrollbar-thumb {
        background: var(--acc);
    }

    /* ヒーロー調整 */
    .c-hero__inner {
        grid-template-columns: 1fr;
    }

    /* パンくずリスト調整 */
    #pankuzuWrap {
        position: relative;
        overflow: auto;
        margin: 0 auto var(--s3);
        padding: var(--s1) 0;
        white-space: nowrap;
    }

    #pankuzu {
        padding: var(--s-2) 0;
        letter-spacing: 0.05em;
        font-size: 1.1rem;
        line-height: 1.2;
    }

    #pankuzu a {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }

    #pankuzu span:last-child {
        margin-right: calc(var(--s1) + var(--s-2));
    }

    #pankuzu a span:last-child {
        margin-right: 0;
    }

    /* 見出し調整 */
    #low-page h1:not([class]) {
        padding: var(--s2);
        font-size: 2.4rem;
        line-height: 1.5;
        margin: var(--s6) auto;
    }

    #low-page h1:not([class])::before {
        /* font-size: 1.8rem; */
        /* padding-left: var(--s1); */
    }

    #low-page h1:not([class])::after {
        /* top: 0.9em; */
        /* width: 0.8rem; */
        /* height: 0.8rem; */
    }

    #low-page h2:not([class]) {
        font-size: 2.1rem;
        margin-block: var(--s10) var(--s3);
    }

    #low-page h3:not([class]) {
        font-size: 2.1rem;
        /* border-bottom: 3px solid var(--gray-medium); */
        background: url(./img/icon-tit2.svg) no-repeat left 0.5rem center / var(--s4) auto, var(--c0);
        margin-block: var(--s5) var(--s2);
    }

    #low-page h4:not([class]) {
        font-size: 1.8rem;
        padding: var(--s1) var(--s1) var(--s1) var(--s7);
    }

    #low-page h5:not([class]) {
        font-size: 1.8rem;
        padding: var(--s1) var(--s1) var(--s1) var(--s2);
    }

    /* 画像調整 */
    .low-center-img {
        max-width: 100%;
    }

    .low-center-img iframe {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
    }

    .low-left-img, .low-right-img {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: var(--s2);
        float: inherit;
        text-align: center;
    }

    /* テーブル調整 */
    .sp-table-vertical th, .sp-table-vertical td {
        width: 100%;
        display: block;
    }

    .table-label thead {
        display: none;
    }

    .table-label tbody th {
        background: var(--c0);
    }

    .table-label td {
        padding: 0;
        display: flex;
        position: relative;
    }

    .table-label td::before {
        content: attr(data-label);
        width: 7em;
        background: var(--lig);
        border-right: solid 1px var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-weight: 700;
        text-align: center;
    }

    .table-label__cell {
        padding: var(--s1) var(--s2);
    }

    .l-scroll-x table thead, .l-scroll-x-sp table thead {
        display: table-header-group;
    }

    .l-scroll-x table tbody, .l-scroll-x-sp table tbody {
        display: table-row-group;
    }

    .l-scroll-x table tr, .l-scroll-x-sp table tr {
        display: table-row;
    }

    .l-scroll-x table th, .l-scroll-x table td, .l-scroll-x-sp table th, .l-scroll-x-sp table td {
        width: inherit;
        min-width: 15rem;
        display: table-cell;
    }

    .l-scroll-x-sp table {
        width: inherit;
    }

    /* ボタン調整 */
    .btn-internal, .btn-anchor, .btn-web {
        margin: var(--s3) auto;
    }

    .btn-internal:hover a, .btn-anchor:hover a, .btn-web:hover a {
        transform: none;
    }

    .btn-anchor a {
        padding: var(--s2) var(--s3) var(--s2) var(--s1);
        background: var(--gray-medium) url("./img/arrow-wh-down.svg") no-repeat center right 0.8rem / auto 0.8em;
    }

    /* リンクボタン調整 */
    .btn-link {
        width: 95%;
        margin: var(--s1) auto;
    }

    .btn-link a {
        border-radius: var(--r-xl);
        padding: var(--s2) var(--s5);
        border: 1px solid var(--black);
        background: url("./img/arrow-right.svg") no-repeat 95% center/auto 0.6em;
        text-align: center;
        line-height: 1.5;
        display: block;
        text-decoration: none;
    }

    .btn-link a:hover {
        opacity: 1;
    }

    .btn-link:hover a {
        transform: none;
    }

    /* 電話ボタン調整 */
    .btn-tel {
        margin: var(--s3) auto;
        display: block;
        position: relative;
    }

    .btn-tel a {
        width: 100%;
        margin: 0 auto;
        background: var(--acc) url(./img/icon-tel.svg) no-repeat center right 1em / auto 1em;
        color: var(--txt);
        display: block;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-decoration: none;
        transition: transform 0.3s;
    }

    .btn-tel:hover a {
        transform: none;
    }

    /* フッター調整 */
    .footer-area {
        padding: var(--s3) 0 0;
        margin-block: 10rem 0;
    }

    .footer-area-logo {
        width: 60%;
        margin: 0 15px var(--s5);
    }

    .footer-main {
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }

    .footer-bottom {
        padding: var(--s1) 0;
    }

    .footer-logo {
        margin: var(--s3) var(--s1);
        font-size: 1.8rem;
    }

    .footer-box + .footer-box {
        margin-top: var(--s2);
    }

    .footer-menu-title {
        margin-bottom: 0;
    }

    .footer-menu-title__link {
        padding: var(--s1) var(--s4) var(--s1) var(--s2);
        position: relative;
    }

    .footer-menu-title__link::after {
        content: "";
        width: var(--s3);
        height: 100%;
        background: url("./img/arrow-s-down.svg") no-repeat center/0.6em;
        position: absolute;
        top: 0;
        right: var(--s2);
        transform: rotate(0);
        transition: transform 0.3s;
    }

    .footer-menu-title__link.is-open::after {
        transform: rotate(180deg);
    }

    .footer-menu-title__link--not-toggle::after {
        background: url("./img/arrow-s.svg") no-repeat center/auto 0.7em;
    }

    .footer-menu {
        padding: var(--s1) 0;
        background: rgba(255, 255, 255, 0.8);
        gap: 0;
    }

    .footer-menu__item {
        width: 100%;
    }

    .footer-menu__link {
        padding: var(--s1) var(--s5) var(--s1) var(--s2);
        background: url("./img/arrow-s.svg") no-repeat 95% center/auto 0.8em;
    }

    .footer-menu-sub {
        margin-left: var(--s2);
    }

    .footer-menu-sub__link {
        padding: var(--s1) var(--s2) var(--s1) 1.1em;
    }

    .footer-menu-sub__link::before {
        top: var(--s1);
    }

    .footer-disclaimer {
        width: calc(100% - var(--s2));
        margin: var(--s2) auto;
        padding: var(--s1) var(--s1);
    }

    .footer-nocopy {
        margin: var(--s2) var(--s2);
        font-size: 1rem;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .footer-sitemap {
        display: none;
    }

    /* ページトップ調整 */
    .page-top {
        width: 5.4rem;
        height: 5.4rem;
        right: var(--s1);
        bottom: var(--s3);
    }

    .page-top__link {
        background-size: 1.5rem auto;
    }
}

/*------------------------------------------
    Slider settings
*/
.onb-txtSlider-area {
    position: relative;
}

.swiper.onb-txtSlider {
    width: calc(100% + 22.4rem);
    height: auto;
    /* margin-left: -11.2rem; */
}

.slide-text-img img {
    width: auto;
    max-height: 32rem;
}
.slide-text-img {
    margin: auto;
    text-align: center;
    width: 51rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 35rem;
    justify-content: center;
}
.slide-text-box {
    padding: 1.6rem 2rem;
}

.slide-text-box p {
    line-height: 1.5;
}

.box-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.onb-txtSlider .swiper-pagination-fraction {
    width: 5em;
    padding: 0 var(--s1);
    background-color: #fff;
    display: inline-block;
    bottom: inherit;
    top: 0;
    left: inherit;
    right: 16.7%;
    z-index: 5;
}

.onb-txtSlider-area .swiper-button-next, .onb-txtSlider-area .swiper-button-prev {
    width: 5rem;
    height: 5rem;
    top: 40%;
}

.onb-txtSlider-area .swiper-button-prev {
    left: 12%;
}

.onb-txtSlider-area .swiper-button-next {
    right: 12%;
}

.onb-txtSlider-area .swiper-button-next:hover, .onb-txtSlider-area .swiper-button-prev:hover {
    opacity: .6;
}

.onb-txtSlider-area .swiper-button-next:after, .onb-txtSlider .swiper-rtl .swiper-button-prev:after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url("./img/slider-arrow-right.svg") no-repeat center center;
    background-size: contain;
}

.onb-txtSlider-area .swiper-button-prev:after, .onb-txtSlider .swiper-rtl .swiper-button-next:after {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url("./img/slider-arrow-left.svg") no-repeat center center;
    background-size: contain;
}

.onb-txtSlider .swiper-slide-prev .slide-text-img, .onb-txtSlider .swiper-slide-next .slide-text-img {
    background-color: #fff;
}

.onb-txtSlider .swiper-slide-prev .slide-text-img img, .onb-txtSlider .swiper-slide-next .slide-text-img img {
    opacity: .7;
}

.onb-txtSlider .swiper-slide-prev .slide-text-img .caption, .onb-txtSlider .swiper-slide-next .slide-text-img .caption, .onb-txtSlider .swiper-slide-prev .slide-text-box, .onb-txtSlider .swiper-slide-next .slide-text-box {
    display: none;
}

.onb-txtSlider .swiper-slide-active .slide-text-box {
    display: table-cell;
}

/*------------------------------------------------------------
  SP settings
*/
@media screen and (max-width: 767px) {
    .swiper.onb-txtSlider {
        width: calc(100% + var(--s4));
        height: auto;
        /* margin-left: calc(var(--s2) * -1); */
    }

    .onb-txtSlider .swiper-slide {
        width: 100% !important;
    }

    .onb-txtSlider .swiper-pagination-fraction {
        width: 5.5em;
        font-size: 1.3rem;
        right: 0;
        left: 0;
        margin: auto;
        padding: var(--s2) var(--s1);
        top: auto;
        bottom: -1rem;
    }

    .onb-txtSlider .swiper-slide-active .slide-text-box {
    padding: 1.6rem 0 6rem;
}

.box-title {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide-text-img {
    width: 100%;
    min-height: auto;
    padding-top: 0;
    justify-content: flex-start;
}
.onb-txtSlider-area .swiper-button-prev {
    left: 0%;
}

.onb-txtSlider-area .swiper-button-next {
    right: 0;
}
    
    .onb-txtSlider-area .swiper-button-next, .onb-txtSlider-area .swiper-button-prev {
        width: 3rem;
        height: 3rem;
        top: auto;
        bottom: 0;
    }

    .onb-txtSlider-area .swiper-button-prev {
        left: 0;
    }

    .onb-txtSlider-area .swiper-button-next {
        right: 0;
    }
}

.onb-index01-frame {
    width: 100%;
    background-color: var(--site-color09);
    margin-block: 0 5rem;
}
.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) 0;
    /* border: solid 0.1rem #D0D3E0; */
    background-color: transparent;
    position: relative;
    border-radius: var(--r-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    width: 80%;
    background: var(--c1);
}
.onb-index01-title {
    padding: var(--s2);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    /* background: url("./img/dummy-icon.png") no-repeat left center; */
    background-size: 4rem auto;
    position: relative;
    cursor: pointer;
}

.onb-index01-title span {
    font-size: 1.3rem;
}

.onb-index01-title::before {
    content: "";
    width: 1.5rem;
    height: 0.1rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2.2rem;
    transform: translate(0, -50%);
}
.onb-index01-title::after {
    content: "";
    width: 0.1rem;
    height: 1.5rem;
    background: #333;
    position: absolute;
    top: 50%;
    right: 2.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}
.onb-index01-title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}
.onb-index01-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}
.onb-index01-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}
.onb-index01-chapter-h a {
    display: block;
    text-decoration: none;
}
.onb-index01-chapter-h a:hover {
    opacity: .6;
}
.onb-index01-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}
.onb-index01-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}
.onb-index01-chapter-h-two::before,
.onb-index01-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}
.onb-index01-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: #eb5505;
    transform: translateY(-50%);
    top: .8em;
}
.onb-index01-chapter-h-three::before {
    content: "└";
}
.more-content {
    display: none;
}
.onb-index01-content {
    /* background-color: #fff; */
}


/*------------------------------------------
    1box column settings
*/
.column-medium {
    padding: var(--s4);
    border: 1px solid var(--site-color09);
}
.onb-box-full {
    width: calc(100% + var(--s8));
    margin-left: calc(var(--s4) * -1);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .column-medium {
        padding: var(--s2);
    }
    .onb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }
}

.icon-head01 {
	margin-top: var(--s4);
	margin-bottom: var(--s4);
	margin-left: var(--s4);
	padding: var(--s2) var(--s2) var(--s2) var(--s6);
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 700;
	background-color: var(--c1);
	/* border: 1px solid #AFAFAF; */
	position: relative;
	border-radius: var(--r-sm);
}
.icon-head01::before {
	content: "";
	width: 7rem;
	height: 7rem;
	background: url('./img/check-icon.svg') no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.icon-head01 {
		margin-left: var(--s4);
		padding: var(--s1) var(--s1) var(--s1) var(--s4);
		font-size: 1.8rem;
	}
	.icon-head01::before {
		content: "";
		width: 5rem;
		height: 5rem;
		left: -3.2rem;
	}
}

.icon-head02 {
	margin-top: var(--s4);
	margin-bottom: var(--s4);
	margin-left: var(--s4);
	padding: var(--s2) var(--s2) var(--s2) var(--s6);
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 700;
	background-color: var(--c1);
	position: relative;
	border-radius: var(--r-sm);
}
.icon-head02::before {
	content: "";
	width: 7rem;
	height: 7rem;
	background: url('./img/point-icon.svg') no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.icon-head02 {
		margin-left: var(--s4);
		padding: var(--s1) var(--s1) var(--s1) var(--s4);
		font-size: 1.8rem;
	}
	.icon-head02::before {
		content: "";
		width: 5rem;
		height: 5rem;
		left: -3.2rem;
	}
}

.pc-fix-banner04 {
    width: 18rem;
    right: 5px;
    bottom: 20%;
    z-index: 50;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.pc-fix-banner04-color1 {
    background-color: var(--site-color01);
}
.pc-fix-banner04-color2 {
    background-color: var(--site-color02);
}
.pc-fix-banner04-text {
    padding: var(--s6) var(--s1) var(--s2);
    color: #eb5507;
    position: relative;
    background: var(--c1);
}


.pc-fix-banner04-text::before {
    content: "";
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 11rem;
    height: 9rem;
    background-image: url(/wp/wp-content/uploads/za-nac-00000714_01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 10;
}




.pc-fix-banner04-text::after {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
    border-top: .5rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid #0068b7;
    border-bottom: .5rem solid #0068b7;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}
.pc-fix-banner04-text a {
    color: #333333;
    text-decoration: none;
    display: block;
    FONT-WEIGHT: 700;
}
.pc-fix-banner04-text a:hover {
    opacity: .7;
}
.pc-fix-banner04-text p {
    margin: 0;
    font-size: 1.7rem;
    text-align: center;
    color: #0068b7;
    line-height: 1.3;
}
.pc-fix-banner04-text .text-small {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #333333;
}



.pc-fix-banner04.is-show {
  opacity: 1;
  visibility: visible;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner04 {
        /* display: none; */
        width: 81vw;
        right: auto;
        left: 0;
        top: auto;
        bottom: 30px;
        border-radius: 0 1rem 1rem 0 !important;
    }

.header-area-upper {
    text-align: center;
    padding-left: 3rem;
}

a.gnavi-list__link.gnavi-list__link--toggle.js-toggle-btn {
    padding: var(--s1) var(--s6) var(--s1) var(--s2);
    font-size: 1.6rem;
}

.related-article01-frame {padding: var(--s2);width: 100%;}

.pc-fix-banner04-text p {
    line-height: 1.4;
    text-align: left;
}

    .pc-fix-banner04-text p br {
    display: none;
}
    
.pc-fix-banner04-text a {
    text-align: left;
}

.pc-fix-banner04-text .text-small {
    text-align: left;
}

.pc-fix-banner04-text {
    border-radius: 0 1rem 1rem 0 !important;
    padding: var(--s2) var(--s1) var(--s2) 7rem;
}

.pc-fix-banner04-text::before {
    top: -1rem;
    left: 11%;
    width: 5rem;
    height: 6rem;
}


#section-detail-feature .l-container {
    gap: 5rem;
}

.c-detail-card__product {
    margin-block: 1rem 2rem;
}

.onb-txtSlider-area {
    /* padding-bottom: 3rem; */
}

    
}