@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;
}

/*---------------------------------------------
    base settings
*/
:root {
    font-size: 62.5%;
    --color-midnight: #050a14;
    --color-white: #ffffff;
    --color-ink: #333;
    --color-cyan: #18e6ff;
    --color-cyan-soft: #d9f7ff;
    --color-navy: #0b1324;
    --color-slate: #1a2436;
    --color-light: #f1f4f8;
    --site-color01: #050a14;
    --site-color02: #ecf300;
    --site-color03: #0b1324;
    --site-color04: #12cfe0;
    --site-color06: #606060;
    --site-color09: #f1f4f8;
    --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);
    /* Color settings */
    /* Primary Colors（メインカラー:サイトの印象を決める色） */
    --pri-dark: #1b2a4e;
    /* メインの濃い色 */
    --pri: #3e527c;
    /* メインの明るめの色 */
    /* Secondary Colors（サブカラー:サイトの印象を決める色） */
    --sec-dark: #7a7169;
    /* サブの濃い色 */
    --sec: #bdb5ad;
    /* サブの明るい色 */
    /* Accent Colors（アクセントカラー:CV要素の強調） */
    --acc-dark: #b34a00;
    /* アクセントの濃い色 */
    --acc: #ff6f1f;
    /* アクセントの明るい色 */
    /* Background Colors（背景色） */
    --bg-base: #f9f9f7;
    /* 最も広い面積に使用 */
    --bg-pri: #e8ebf1;
    /* メイン近似の背景色 */
    --bg-sec: #f3efe8;
    /* サブ近似の背景色 */
    --bg-sub: #faf7f2;
    /* 補助用の背景色 */
    --bg-emp: #162f61;
    /* 文字色反転用背景 */
    /* Text Colors（文字色） */
    --txt-main: #333;
    /* 本文 */
    --txt-sub: #999;
    /* 注釈・キャプション用 */
    --txt-emp: #1b2a4e;
    /* 強調用 */
    --txt-white: #f2f2f2;
    /* 文字色反転用 */
    /* Border Colors */
    --line: #cccccc;
    /* 罫線 */
    /* Base Colors */
    --black: #333;
    --white: #fff;
    --gray: #999;
    --shadow: rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1000px) {
    :root {
        font-size: 1vw;
        --s1: 0.6rem;
    }
}

:root {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--color-white);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--color-ink);
    min-width: 1100px;
    word-break: break-word;
}

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;
    line-height: 1.4;
    position: relative;
}

ul:not([class]) li {
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

ul:not([class]) li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background-color: #326598;
    position: absolute;
    top: 0.6rem;
    left: 0;
}

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

ol:not([class]) li::before {
    content: counter(number);
    width: 1.6rem;
    color: #fff;
    background-color: #30bec7;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    position: absolute;
    top: 0.3em;
    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: #333;
    transition: opacity 0.6s ease, color 0.6s ease;
}

a:active, a:hover {
    text-decoration: none;
}

strong {
    font-weight: 700;
}

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

small {
    font-size: 80%;
}

p:not([class]) {
    line-height: 1.8;
}

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

* {
    box-sizing: border-box;
}

.u-slash-bg {
    position: relative;
    overflow: hidden;
}

.u-slash-bg::before {
    content: "";
    width: 70%;
    height: 200%;
    position: absolute;
    top: -50%;
    right: -20%;
    background: linear-gradient(135deg, transparent 0 40%, rgba(5, 10, 20, 0.06) 40% 46%, transparent 46% 100%);
    transform: rotate(-8deg);
    pointer-events: none;
}

.u-slash-accent {
    position: relative;
}

.u-slash-accent::after {
    content: "";
    width: 14rem;
    height: 1rem;
    position: absolute;
    left: 0;
    bottom: -1rem;
    background: linear-gradient(90deg, var(--color-cyan) 0%, #63f3ff 100%);
}

.u-slope-top, .u-slope-bottom {
    position: relative;
    overflow: hidden;
}

.u-slope-top::before {
    content: "";
    position: absolute;
    top: -4rem;
    left: 0;
    width: 100%;
    height: 4rem;
    background: linear-gradient(135deg, transparent 49%, var(--color-white) 50%);
}

.u-slope-bottom::after {
    content: "";
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 100%;
    height: 4rem;
    background: linear-gradient(315deg, transparent 49%, var(--color-white) 50%);
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

@media screen and (min-width: 768px) {
    .for-sp {
        display: none;
    }
}

/*---------------------------------------------
    Emphasize 
*/
.marker {
    font-weight: 700;
    background-color: #AAA;
    background: none;
    color: #ecf300;
    padding: 2px 4px 2px;
}

.txt_bold {
    font-weight: 700;
    background: linear-gradient(315deg, #321970 0%, #326598 70%, #06888d 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*---------------------------------------------
    layout center
*/
.l-center {
    max-width: 100rem;
    margin-right: auto;
    margin-left: auto;
    /* padding-right: var(--s3); */
    /* padding-left: var(--s3); */
    box-sizing: content-box;
    /* background: #fff; */
}

/*---------------------------------------------
    layout stack
*/
.l-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s4);
    align-items: stretch;
}

.l-stack-small {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s2);
}

.l-stack-xsmall {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s1);
}

.l-stack-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s6);
}

.l-stack-xlarge {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--s8);
}

/*---------------------------------------------
    layout cluster
*/
.l-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
}

/*---------------------------------------------
    layout grid
*/
.l-grid-two, .l-grid-two-flex {
    --minimum: calc((100% - var(--s2)) / 2);
    display: grid;
    grid-gap: var(--s2);
}

.l-grid-two-large {
    --minimum: calc((100% - var(--s4)) / 2);
    display: grid;
    grid-gap: var(--s4);
}

.l-grid-three, .l-grid-three-flex {
    --minimum: calc((100% - var(--s2) * 2) / 3);
    display: grid;
    grid-gap: var(--s2);
}

.l-grid-four, .l-grid-four-flex {
    --minimum: calc((100% - var(--s2) * 3) / 4);
    display: grid;
    grid-gap: var(--s2);
}

@supports (width: min(var(--minimum), 100%)) {
    .l-grid-two, .l-grid-two-flex, .l-grid-two-large, .l-grid-three, .l-grid-three-flex, .l-grid-four, .l-grid-four-flex {
        grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
    }
}

/*---------------------------------------------
    layout column
*/
.l-column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s5);
}

.l-column__side {
    width: calc((100% - var(--s5)) * 0.4);
}

.l-column__main {
    width: calc((100% - var(--s5)) * 0.6);
}

.l-column--row-reverse {
    flex-direction: row-reverse;
}

/*---------------------------------------------
    layout float
*/
.l-float {
    display: flow-root;
}

.l-float__left-pc {
    width: 40rem;
    margin-right: var(--s5);
    margin-bottom: var(--s2);
    float: left;
}

.l-float__right-pc {
    width: 40rem;
    margin-left: var(--s5);
    margin-bottom: var(--s2);
    float: right;
}

.l-float__center {
    width: 64rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--s2);
}

.l-float__left {
    width: 40rem;
    margin-right: var(--s5);
    margin-bottom: var(--s2);
    float: left;
}

.l-float__right {
    width: 40rem;
    margin-left: var(--s5);
    margin-bottom: var(--s2);
    float: right;
}

/*---------------------------------------------
    layout scroll x
*/
.l-scroll-x {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

/* chrome safari */
.l-scroll-x::-webkit-scrollbar {
    height: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
}

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

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

/*---------------------------------------------
    layout header
*/
.l-header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*---------------------------------------------
    layout gnavi
*/
.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;
}

/*---------------------------------------------
    toggle sp
*/
.toggle-sp-content {
    display: block;
}

/*---------------------------------------------
    pankuzu
*/
#pankuzuWrap {
    margin: 0;
}

#pankuzu {
    font-size: 1.2rem;
    padding: 0 0 1.2rem;
    line-height: 1.2;
    text-align: center;
}

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

#pankuzu a:hover {
    text-decoration: none;
}

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

/*---------------------------------------------
    low-page common heading
*/
#low-page h1:not([class]) {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    background-color: #EBEBEB;
    position: relative;
    margin: 3rem auto 2rem;
    background: linear-gradient( 315deg, #321970 0%, #326598 50%, #30c6cb 100% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;
    line-height: 1.5;
}

#low-page h1::before {
    content: "";
    position: absolute;
    top: -20rem;
    left: -25rem;
    width: 20rem;
    height: 24rem;
    background: url(img/cont-dec01.svg) no-repeat center / cover;
    z-index: 3;
}

#low-page .pr-text {
    text-align: center;
    margin-bottom: 5rem;
}

#low-page h2:not([class]) {
    width: 100%;
    margin-block: 7rem 2rem;
    padding: var(--s3) var(--s1);
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
}

#low-page h2:not([class])::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -30vw;
    bottom: 0;
    background: #dde4e9;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 3rem) 100%, 0 100%);
    pointer-events: none;
    display: block;
    width: 85vw;
}

#low-page h2:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('img/arrow-01-black-right.svg') no-repeat center right / auto 2rem;
}

#low-page h2:not([class]) a:hover {
    opacity: .6;
}

#low-page h3:not([class]) {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    padding: 0 0 var( --s2) 0;
    background: linear-gradient( 315deg, #321970 0%, #326598 50%, #30c6cb 100%);
    padding: 2.5rem 2rem;
    margin-block: 5rem 1rem; }

#low-page h3:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('img/arrow-01-wht-right.svg') no-repeat center right / auto 2rem;
    color: #ffffff;
}

#low-page h3:not([class]) a:hover {
    opacity: .6;
}

#low-page h4:not([class]) {
    width: 100%;
    margin-block: 3rem 1rem;
    padding: var(--s1) 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid #333;
}

#low-page h4:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('img/arrow-01-black-right.svg') no-repeat center right / auto 2rem;
}

#low-page h4:not([class]) a:hover {
    opacity: .6;
}

#low-page h5:not([class]) {
    width: 100%;
    margin-block: 2rem 1rem; padding: 0 var(--s1);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #326598;
}

#low-page h5:not([class]) a {
    display: block;
    padding-right: var(--s4);
    text-decoration: none;
    background: url('img/arrow-01-black-right.svg') no-repeat center right / auto 2rem;
}

#low-page h5:not([class]) a:hover {
    opacity: .6;
}

iframe {
    margin: auto;
    display: block;
}

/*---------------------------------------------
center-img
*/
.low-center-img-box {
    display: flow-root;
    margin-block: 4rem; }

.low-center-img {
    max-width: 60%;
    margin: 0 auto;
    padding-bottom: var(--s2);
    text-align: center;
}

.low-center-img-catch {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    background: linear-gradient(315deg, #321970 0%, #326598 50%, #30c6cb 100% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/*---------------------------------------------
left-img
*/
.low-left-img-box {
    display: flow-root;
    margin-block: 4rem; }

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

.low-left-img-catch {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    background: linear-gradient(315deg, #321970 0%, #326598 50%, #30c6cb 100% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*---------------------------------------------
right-img
*/
.low-right-img-box {
    display: flow-root;
    margin-block: 4rem; }

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

.low-right-img-catch {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    background: linear-gradient(315deg, #321970 0%, #326598 50%, #30c6cb 100% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*---------------------------------------------
    Caption settings
*/
.caption {
    margin-top: 0.8em;
    color: var(--site-color06);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-all;
}

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

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

.caption-scroll {
    margin-top: 0.8em;
    color: #999;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    /* chrome safari */
}

.caption-scroll a {
    color: #999;
}

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

.caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
}

.caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
}

/*---------------------------------------------
    Table settings
*/
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

table th, table td {
    padding: var(--s1);
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    word-break: break-word;
}

table th {
    background-color: #f7f7f7;
    text-align: left;
    width: 30%;
}

/*---------------------------------------------
    low-page table
*/
#low-page table {
    margin-block: 4rem; }

/*---------------------------------------------
    low-page list
*/
#low-page ul:not([class]), #low-page ol:not([class]) {
    margin-block: 3rem 4rem;
    margin-left: 2rem;
    }

/*---------------------------------------------
    Button Internal settings
*/
.btn-internal {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto 10rem;
    position: relative;
    /* box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3); */
}

.btn-internal a {
    width: 100%;
    margin: 0;
    padding: var(--s4) var(--s2) var(--s8) var(--s2);
    background: url(img/arrow-btn-01-right.svg) no-repeat bottom 2rem center / auto 1.5em, linear-gradient(315deg, #321970 0%, #326598 70%, #06888d 100%);
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    font-size: 2rem;
    width: 100%;
    margin: 0;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
}

.btn-internal:hover a {
    transform: translate(0.8rem, 0.8rem);
}

/*---------------------------------------------
    Button Ancher settings
*/
.btn-ancher {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

.btn-ancher a {
    width: 100%;
    margin: 0;
    padding: var(--s2) var(--s6) var(--s2) var(--s5);
    background: var(--site-color01) url("img/arrow-01-wht-down.svg") no-repeat center right 2rem/auto 0.8em;
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    font-size: 1.8rem;
}

.btn-ancher::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.8rem, 0.8rem);
}

.btn-ancher:hover a {
    transform: translate(0.8rem, 0.8rem);
}

/*---------------------------------------------
    Button Web settings
*/
.btn-web {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
    z-index: 5;
}

.btn-web a {
    width: 100%;
    margin: 0;
    padding: var(--s4) var(--s2) var(--s8) var(--s2);
    background: var(--site-color02) url("img/arrow-btn-01-black-right.svg") no-repeat bottom 2rem center/auto 1.5em;
    display: block;
    color: #333;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
    font-size: 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
}

.btn-web:hover a {
    transform: translate(0.8rem, 0.8rem);
}

/*---------------------------------------------
    Text Link settings
*/
.btn-link {
    text-align: right;
}

.btn-link a {
    margin: 0;
    padding: 1rem 2rem 1rem 0;
    background: url("img/arrow-01-black-right.svg") no-repeat center right/auto 1em;
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: underline;
}

.btn-link a:hover {
    text-decoration: none;
    opacity: 0.6;
}

/*---------------------------------------------
    Tel Link settings
*/
.btn-tel {
    display: none;
}

/*---------------------------------------------
  footer
*/
.footer-area {
    padding: var(--s5) 0 0;
    /* background: var(--site-color06); */
    margin-top: var(--s14);
    position: relative;
}

.footer-area::after {
    content: "";
    position: absolute;
    bottom: 10rem;
    right: 10rem;
    width: 20rem;
    height: 25rem;
    background: url(img/bg-dec01.svg) no-repeat center / cover;
    z-index: -1;
}

.footer-area a:hover {
    opacity: .6;
    transition: .2s;
}

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

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

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

.footer-bottom {
    padding: var(--s2) 0;
    background: #333;
    color: #FFF;
}

.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.6;
    border-bottom: 1px solid #f3f3f3;
}

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

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

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

.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 {
    width: 70rem;
    margin: var(--s5) auto;
    padding: var(--s2) var(--s4);
    background: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-disclaimer__label {
    display: inline;
}

.footer-disclaimer__text {
    display: inline;
}

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

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

.footer-copyright__link {
    color: #FFF;
    text-decoration: none;
}

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

.footer-sitemap__link {
    padding: 0 1.2em 0 0;
    background: url("img/arrow-01-right.svg") no-repeat center right/auto 1em;
    color: #FFF;
    text-decoration: none;
}

/*---------------------------------------------
  Page top Button
*/
.page-top {
    width: 6rem;
    height: 6rem;
    border-radius: 10rem;
    position: fixed;
    right: var(--s2);
    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) {
    /*---------------------------------------------
      sp base settings
  */:root {
        font-size: 2.6666666667vw;
    }

    body {
        min-width: auto;
    }

    .sp_br {
        display: inline;
    }

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

    /*---------------------------------------------
      sp layout center
  */
    .l-center {
        padding-right: calc(var(--s1) + var(--s-2));
        padding-left: calc(var(--s1) + var(--s-2));
        box-sizing: border-box;
    }

    /*---------------------------------------------
      sp layout stack
  */
    .l-stack {
        gap: var(--s2);
    }

    /*---------------------------------------------
      sp layout cluster
  */
    .l-cluster {
        gap: var(--s1);
    }

    /*---------------------------------------------
      sp layout grid
  */
    .l-grid-two, .l-grid-two-large {
        grid-template-columns: 100%;
    }

    .l-grid-three {
        grid-template-columns: 100%;
    }

    .l-grid-four {
        grid-template-columns: 100%;
    }

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

    /*---------------------------------------------
      sp toggle sp
  */
    .toggle-sp-content {
        display: none;
    }

    /*---------------------------------------------
      sp layout column
  */
    .l-column {
        gap: var(--s2);
    }

    .l-column__side {
        width: 100%;
    }

    .l-column__main {
        width: 100%;
    }

    /*---------------------------------------------
      sp layout float
  */
    .l-float__left-pc {
        width: 100%;
        margin-right: 0;
        float: none;
    }

    .l-float__right-pc {
        width: 100%;
        margin-left: 0;
        float: none;
    }

    .l-float__center {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .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);
    }

    /*---------------------------------------------
      sp layout scroll
  */
    .l-scroll-x-sp {
        width: 100%;
        padding-bottom: 0.6rem;
        overflow: hidden;
        overflow-x: scroll;
        overflow-y: visible;
        /* chrome safari */
    }

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

    .l-scroll-x-sp::-webkit-scrollbar-track {
        border-radius: 0.3rem;
        background: #eee;
    }

    .l-scroll-x-sp::-webkit-scrollbar-thumb {
        border-radius: 0.3rem;
        background: #ddd;
    }

    /*---------------------------------------------
    pankuzu
  */
    #pankuzuWrap {
        position: relative;
        overflow: auto;
        margin: 0 auto var(--s3);
        padding: 1.0rem 0;
        white-space: nowrap;
    }

    #pankuzu {
        padding: 0.7rem 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 a:hover {
        text-decoration: underline;
    }

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

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

    /*---------------------------------------------
    low-page common heading
  */
    #low-page h1:not([class]) {
        padding: var(--s2);
        font-size: 2.4rem;
        line-height: 1.5;
        margin: 5rem auto;
    }

    #low-page h1:not([class])::before, #low-page h1:not([class])::after {
        width: 6rem;
        height: 6rem;
    }

    #low-page h1:not([class])::before {
        top: -4rem;
    }

    #low-page h1:not([class])::after {
        bottom: -4rem;
    }

    #low-page h2:not([class]) {
        font-size: 6vw;
        margin-block: 10rem 3rem;
    }

    #low-page h3:not([class]) {
        font-size: 5vw;
        /* border-bottom: 3px solid #818181; */
        line-height: 1.3;
    }

    #low-page h4:not([class]) {
        font-size: 5vw;
    }

    #low-page h5:not([class]) {
        font-size: 4.5vw;
        padding: 0 var(--s2);
    }

    /*---------------------------------------------
  center-img
  */
    .low-center-img {
        max-width: 100%;
    }

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

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

    /*---------------------------------------------
      sp table
  */
    .sp-table-vertical th, .sp-table-vertical td {
        width: 100%;
        display: block;
    }

    .table-label thead {
        display: none;
    }

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

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

    .table-label td::before {
        content: attr(data-label);
        width: 7em;
        background: #efefef;
        border-right: solid 1px #333;
        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;
    }

    /*---------------------------------------------
      Button Internal settings
  */
    .btn-internal {
        margin: var(--s3) auto;
    }

    .btn-internal a {
        /* padding: var(--s2) var(--s3) var(--s2) var(--s1); */
        /* background: #818181 url("img/arrow-01-wht-right.svg") no-repeat center right 1rem/auto 1em; */
        background: url(img/arrow-btn-01-right.svg) no-repeat bottom 1.5rem center / auto 1em, linear-gradient(315deg, #321970 0%, #326598 50%, #30c6cb 100%);
    }

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

    /*---------------------------------------------
      Button Ancher settings
  */
    .btn-ancher {
        margin: var(--s3) auto;
    }

    .btn-ancher a {
        padding: var(--s2) var(--s3) var(--s2) var(--s1);
        background: #818181 url("img/arrow-01-wht-down.svg") no-repeat center right 0.8rem/auto 0.8em;
    }

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

    /*---------------------------------------------
      Button Web settings
  */
    .btn-web {
        margin: var(--s3) auto;
    }

    .btn-web a {
        background: var(--site-color02) url(img/arrow-btn-01-black-right.svg) no-repeat right 1.5rem center / auto 1em;
        padding: var(--s3) var(--s6) var(--s3) var(--s2);
    }

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

    /*---------------------------------------------
  	Btn Link settings
  */
    .btn-link {
        margin: var(--s1) auto;
    }

    .btn-link a {
        padding: var(--s2) var(--s4);
        border: 1px solid #333;
        background: url("img/arrow-01-black-right.svg") no-repeat 97% center/auto 1em #f7f9fc;
        text-align: left;
        line-height: 1.5;
        display: block;
        text-decoration: none;
    }

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

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

    /*---------------------------------------------
  	Button Tel settings
  */
    .btn-tel {
        margin: var(--s3) auto;
        display: block;
        position: relative;
    }

    .btn-tel a {
        width: 100%;
        margin: 0 auto;
        padding: 1.4rem 4rem;
        background: var(--site-color04) url("img/icon-tel.svg") no-repeat center left 1rem/auto 1.5em;
        color: #fff;
        display: block;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-decoration: none;
        transition: transform 0.3s;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
        font-size: 2rem;
    }

    .btn-tel:hover a {
        transform: translate(0.8rem, 0.8rem);
    }

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

    .contents-area {
        padding-bottom: 10rem;
    }

    /*---------------------------------------------
  	footer
  */
    .footer-area {
        padding: var(--s5) 0 0;
        margin-top: 0;
    }

    .footer-area a:hover {
        opacity: 1;
        transition: unset;
    }

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

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

    .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(--s6) var(--s1) var(--s2);
        position: relative;
        FONT-WEIGHT: 700;
    }

    .footer-menu-title__link::after {
        content: "";
        width: var(--s2);
        height: 100%;
        background: url("img/arrow-01-black-down.svg") no-repeat center/100%;
        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-01-black-right.svg") no-repeat center/auto 1em;
    }

    .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(--s6) var(--s1) var(--s2);
        background: url("img/arrow-01-black-right.svg") no-repeat 96% center/auto 1em;
    }

    .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(--s2);
    }

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

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

    .footer-sitemap {
        display: none;
    }

    .page-top {
        width: 12vw;
        height: 12vw;
        /* right: var(--s1); */
        bottom: var(--s3);
    }

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

.pc-fix-banner04 {
    width: 22rem;
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 50;
    background: url("img/reason04.jpg") no-repeat;
    background-size: cover;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.pc-fix-banner04 a {
    text-decoration: none;
}

.pc-fix-banner04::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    background-size: cover;
    background-position: center;
}

.pc-fix-banner04:hover {
    opacity: 0.7;
}

.pc-fix-banner04-color1 {
    background-color: var(--site-color01);
}

.pc-fix-banner04-color2 {
    background-color: var(--site-color02);
}

.pc-fix-banner04-text {
    padding: var(--s5) var(--s1) var(--s5) 0;
    color: #fff;
    position: relative;
    background: linear-gradient(315deg, rgb(50 25 112 / 0.7) 0%, rgb(50 101 152 / 0.7) 50%, rgb(48 198 203 / 0.7) 100%);
}

.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 #fff;
    border-bottom: .5rem solid #fff;
    position: absolute;
    right: .5rem;
    bottom: .5rem;
}

.pc-fix-banner04-text a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.pc-fix-banner04-text a:hover {
    opacity: .7;
}

.pc-fix-banner04-text p {
    margin: 0;
    font-size: 1.8rem;
    /* text-align: center; */
    FONT-WEIGHT: 900;
}

.pc-fix-banner04-text p span {
    font-size: 3rem;
    background: var(--site-color02);
    color: #333;
    line-height: 2.3;
    padding-left: 1.5rem;
    padding-right: 0.5rem;
}

.pc-fix-banner04-text .text-small {
    font-size: 1.6rem;
    line-height: 0.3;
    FONT-WEIGHT: 900;
    padding-left: 1.5rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .pc-fix-banner04 {
        width: 80%;
        position: fixed;
        right: auto;
        left: 0;
        bottom: 0;
    }

    .pc-fix-banner04:hover {
        opacity: 1;
    }

    .pc-fix-banner04-text {
        padding: var(--s3) 0 0 0;
    }

    .pc-fix-banner04-text .text-small {
        font-size: 4vw;
    }

    .pc-fix-banner04-text p {
        font-size: 5vw;
    }

    .pc-fix-banner04-text p span {
        font-size: 6vw;
    }
}

.profile-area {
    padding: var(--s4) var(--s4) var(--s4);
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-areas: "img catch" "img text" "btn text";
    gap: var(--s4);
    background-color: #F3F3F3;
    position: relative;
}

.profile-area::before {
    content: "Sponsored by";
    padding: var(--s2) var(--s6) var(--s2) var(--s2);
    font-size: 1.8rem;
    FONT-WEIGHT: 700;
    line-height: 1;
    background-color: #818181;
    position: absolute;
    top: 0;
    left: 0;
    background: #e9f100;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 3rem) 100%, 0 100%);
}

.profile-img-area {
    grid-area: img;
    margin-block: 2rem 0;
}

.profile-text-area {
    grid-area: text;
}

.profile-btn-area {
    gap: 3rem;
    grid-area: btn;
    position: relative;
    z-index: 5;
    display: flex;
}

.profile-caption {
    margin-top: var(--s1);
    text-align: center;
}

.profile-catch {
    padding-bottom: var(--s2);
    border-bottom: 4px solid #333;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    grid-area: catch;
}

.profile-catch span {
    font-size: 1.8rem;
    display: block;
}

.profile-detail {
    padding: var(--s1) var(--s1) var(--s1) var(--s3);
    font-size: 1.8rem;
    border-left: 6px solid #818181;
}

.profile-box {
    padding: var(--s2);
    background-color: #fff;
}

.profile-box-ttl {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
    .profile-area {
        padding: var(--s2);
        grid-template-columns: none;
        grid-template-areas: inherit;
        gap: var(--s2);
    }


                .profile-area .btn-link {
        margin: var(--s1) var(--s1) var(--s1) auto;
    }

    
            .profile-area .btn-link a {
        padding: var(--s1) var(--s4);
        border: 0px solid #333;
        background: url(img/arrow-01-black-right.svg) no-repeat 97% center / auto 1em;
        line-height: 0.3;
    }
    

    .profile-area::before {
        font-size: 1.4rem;
    }

    .profile-img-area, .profile-text-area, .profile-btn-area, .profile-catch {
        grid-area: inherit;
    }

    .profile-img-area {
        display: flex;
        align-items: center;
        gap: var(--s2)
    }

    .profile-img {
        width: calc((100% - var(--s2))*0.5);
    }
}

#supervision {
    margin-block: 10rem; }

#supervision ul:not([class]) {
    margin-block: 0; }

#method.section-block.section-supervision.matome .supervision-wrapper {
    grid-template-columns: 1fr;
}

#method.section-block.section-supervision.matome .section-block__inner {
    margin: 0;
}

#method.section-block.section-supervision.matome .supervision-title__lead {
    width: 15rem;
    padding: 1rem 2rem 1rem 3rem;
    font-size: 2rem;
    position: absolute;
    top: -5.2rem;
    left: -3.2rem;
}

#method.section-block.section-supervision.matome .supervision-content {
    padding: var(--s9) var(--s4) var(--s6);
}

#method.section-block.section-supervision.matome .section-block__inner::after {
    display: none;
}

/*
---------------------------------------------
    navigation01 ※TOP、下層共通
*/
.header-area-upper {
    padding: var(--s1);
    text-align: right;
}

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

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

.header-title a:hover {
    text-decoration: underline;
}

.gnavi-ctrl {
    display: none;
}

.gnavi-btn {
    display: none;
}

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

.gnavi-area {
    display: none;
}

.toggle-content {
    display: none;
}

/*------------------------------------------
 Global menu settings
*/
.navigation01-menu {
    display: flex;
    background-color: #fff;
    justify-content: center;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 100;
}

.navigation01-menu li::before {
    display: none;
}

.navigation01-menu li a {
    padding: var(--s2) var(--s1);
    display: block;
    text-decoration: none;
}

.navigation01-menu li a:hover {
    opacity: .6;
}

/*
---------------------------------------------
    sp settings
*/
@media screen and (max-width: 767px) {
    .gnavi-ctrl {
        display: block;
        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: var(--s7);
        height: var(--s6);
        background: #333;
        display: block;
        position: fixed;
        top: var(--s3);
        right: 0;
        z-index: 200;
        cursor: pointer;
    }

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

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

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

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

    .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);
    }

    .gnavi-btn-close {
        width: 80%;
        margin: 0 auto;
        padding: var(--s2);
        background: #333;
        display: block;
        text-align: center;
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .gnavi-btn-close__inner {
        padding: 0 0 0 var(--s3);
        display: inline-block;
        color: #fff;
        font-weight: 700;
        position: relative;
    }

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

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

    .gnavi-area {
        width: 100%;
        height: 100vh;
        padding: var(--s3) var(--s1) var(--s10);
        display: block;
        background: #F5F5F5;
        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 {
        min-height: var(--s6);
        margin: 0 var(--s8);
        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 #333; */
        position: relative;
    }

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

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

    .gnavi-list__link {
        width: 100%;
        margin: 0 auto;
        padding: var(--s2) var(--s4) var(--s2) var(--s2);
        border-top: none;
        display: block;
        font-weight: 700;
        line-height: 2;
        text-decoration: none;
        position: relative;
    }

    .gnavi-list__link::after {
        content: "";
        width: 1.4rem;
        height: 1.4rem;
        background: url("img/arrow-01-black-right.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-01-black-down.svg");
    }

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

    .gnavi-list__sub {
        width: 100%;
        background: #fff;
    }

    .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);
        top: 0;
        height: 100%;
        padding: var(--s10) var(--s1) 2rem;
    }

    /*------------------------------------------
	Global menu settings
	*/
    .navigation01-menu-area {
        display: none;
    }

    #low-page h2:not([class])::after {
        width: 120vw;
    }

    .profile-btn-area {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-area::after {
        width: 10rem;
        height: 12rem;
    }

    #method.section-block.section-supervision.matome .supervision-title__lead {
        padding: 1rem 2rem 1rem 1.3rem;
        top: -5rem;
        left: 0;
    }

    table th {
        width: 30%;
    }

#low-page ul:not([class]), #low-page ol:not([class]) {
    margin-left: 1rem;
}

ul:not([class]) li {
    padding-left: 1em;
}

    iframe {
    width: 100%;
    /* height: 100vw; */
}
}

.pr-text {
    /* margin-bottom: var(--s5); */
    font-size: 1.2rem;
    color: #999;
}
