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

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

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #222;
}

body.bg-lower {
    background: url(img/bg-2tone.png) no-repeat center top/100% auto;
}

body.bg-lower:before {
    content: "";
    width: 27.7rem;
    height: 27.5rem;
    background: url(img/mv-pic-lower.png) no-repeat center bottom/contain;
    position: absolute;
    right: 32rem;
    top: -50px;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    clear: both;
}

ul, ol, dl, p, img, form, dt, dd, figure {
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    font-size: 1.5rem;
    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: #222;
    transition: opacity 0.6s ease, color 0.6s ease, background 0.6s ease;
    outline: none;
}

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

strong {
    font-weight: 700;
}

span.marker {
    background: #ffffffb3;
    font-weight: 700;
}

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

span.txt_strong {
    font-weight: 700;
}

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

small {
    font-size: 80%;
}

p {
    line-height: 2;
}

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

* {
    box-sizing: border-box;
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

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

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

/*
---------------------------------------------

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

/*
---------------------------------------------

    layout stack

*/
.l-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--s6);
}

.l-stack > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.l-stack--between {
    justify-content: space-between;
}

.l-stack-small {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--s3);
}

.l-stack-small > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

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

.l-stack-large > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/*
---------------------------------------------

    layout cluster

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

/*
---------------------------------------------

    layout grid

*/
.l-grid {
    --minmum: calc((100% - var(--s4)) / 2);
    display: grid;
    grid-gap: var(--s5) var(--s4);
}

.l-grid-large {
    --minmum: calc((100% - var(--s6)) / 2);
    display: grid;
    grid-gap: var(--s6);
}

.l-grid-small {
    --minmum: calc((100% - var(--s2)) / 2);
    display: grid;
    grid-gap: var(--s2);
}

.l-grid-three {
    --minmum: calc((100% - var(--s5) * 2) / 3);
    display: grid;
    grid-gap: var(--s5);
}

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

.l-grid-four {
    --minmum: calc((100% - var(--s1) * 3) / 4);
    display: grid;
    grid-gap: var(--s1);
}

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

    .l-column__main .l-grid {
        grid-template-columns: none;
    }
}

/*
---------------------------------------------

    layout sidebar

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

.l-sidebar__side {
    width: 25rem;
    padding-bottom: 8rem;
}

.l-sidebar__main {
    flex: 1;
    padding-bottom: 8rem;
}

/*
---------------------------------------------

    layout column

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

.l-column__side {
    width: 33rem;
    position: relative;
}

.lower-common .l-column__side {
    width: 50rem;
}

.bg-gray--pdtop-small .l-column__side {
    width: 55rem;
}

.l-column__side02 {
    width: 34.5rem;
}

.l-column__side03 {
    width: 14rem;
}

.l-column__side04 {
    width: 21rem;
}

.l-column__main {
    flex: 1;
}

.l-column--align-center {
    align-items: center;
}

.l-column--bottom {
    align-items: flex-end;
}

.l-column__side .common-title-en img {
    display: block;
    height: 6rem;
    width: auto;
}

.lower-common .l-column__side .common-title-en {
    top: -11.5rem;
}

.l-column__side .common-title-en {
    margin-bottom: 1rem;
    position: absolute;
    top: -10.5rem;
    left: -45px;
}

/*
---------------------------------------------

    layout float

*/
.l-float::before, .l-float::after {
    content: " ";
    display: table;
}

.l-float::after {
    clear: both;
}

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

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

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

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

.l-float__left.small {
    width: 16.5rem;
}

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

/*
---------------------------------------------

    layout scroll x

*/
.l-scroll-x {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    /* 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;
}

/*
---------------------------------------------

    list

*/
.main-area ul {
    margin: var(--s4) 0;
}

.main-area ul li {
    padding: 0 0 0 1.3em;
    font-size: 100%;
    position: relative;
}

.main-area ul li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background: #9DD1A8;
    border-radius: 50%;
    position: absolute;
    top: 0.4em;
    left: 0;
}

.main-area ul li + li {
    margin-top: 0.8em;
}

.main-area ol {
    counter-reset: number;
}

.main-area ol li {
    padding: 0 0 0 2em;
    font-size: 100%;
    position: relative;
    counter-increment: number;
}

.main-area ol li::before {
    content: counter(number);
    width: 1.6em;
    height: 1.6em;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.main-area ol li + li {
    margin-top: 0.8em;
}

/*
---------------------------------------------

    btn

*/
.btn-internal {
    max-width: 42rem;
    margin: var(--s4) auto;
    position: relative;
}

.btn-internal a {
    width: 100%;
    min-height: 6.2rem;
    margin: 0;
    padding: 1.6rem 5.5rem;
    background: #fff041 url(img/arrow-01-black-right.png) no-repeat center right 2.8rem/1.5rem auto;
    border-radius: 5rem;
    border: solid 1px #ffc414;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.btn-internal:hover a {
    transform: translate(0.4rem, 0.4rem);
    box-shadow: none;
}

.btn-internal--down a {
    background-image: url(img/arrow-01-black-down.png);
}

.btn-internal--short {
    margin: var(--s3) auto;
    max-width: 86%;
}

.btn-web {
    max-width: 42rem;
    margin: var(--s4) auto;
    position: relative;
}

.btn-web a {
    width: 100%;
    min-height: 6.2rem;
    margin: 0;
    padding: 1.6rem 5.5rem;
    background: #dc3514 url(img/arrow-01-white-right.png) no-repeat center right 2.8rem/1.5rem auto;
    border-radius: 5rem;
    border: solid 1px #950000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.btn-web:hover a {
    transform: translate(0.4rem, 0.4rem);
    box-shadow: none;
}

.btn-web--short {
    margin: var(--s3) auto;
    max-width: 86%;
}

.btn-link {
    margin: var(--s2) auto;
    text-align: right;
}

.btn-link a {
    margin: 0;
    padding: 0 2.8rem 0 0;
    background: url("img/arrow-01-black-right.png") no-repeat center right/1.4rem auto;
    display: inline-block;
    font-weight: 700;
    text-decoration: underline;
}

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

.btn-tel {
    display: none;
}

.btn-internal a, .btn-web a {
    line-height: 1.3;
}

/*
---------------------------------------------

    table

*/
table {
    width: 100%;
    margin: var(--s5) 0;
    border-collapse: collapse;
}

th, td {
    padding: var(--s2);
    border: solid 1px #C7C7C7;
    word-break: break-all;
}

th {
    background: #F5F7F7;
}

td {
    vertical-align: top;
    background: #fff;
}

tbody th {
    background: #F5F7F7;
}

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

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

/*
---------------------------------------------

    caption

*/
.caption {
    margin-top: 0.8em;
    display: block;
    color: #999;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
    word-break: break-all;
}

.caption a {
    color: #999;
}

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

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

.caption--white {
    color: #fff;
}

.caption-scroll {
    margin-top: 0.8em;
    color: #999;
    font-size: 1.2rem;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    /* 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;
}

/*
---------------------------------------------

	pankuzu

*/
#pankuzu {
    width: calc(100% - 63rem);
    margin: var(--s1) auto var(--s6) 0;
    padding: var(--s1);
    color: #222;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

#pankuzu > span {
    color: #222;
}

/*
---------------------------------------------

    toc

*/
.toc-wrap {
    margin: var(--s8) auto var(--s6);
    padding: var(--s2);
    background: #FFCBCC;
    position: relative;
}

.toc-wrap__title {
    display: block;
    padding: var(--s2);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    position: relative;
}

.toc-wrap__title span {
    padding: var(--s1) var(--s1) var(--s1) 12rem;
    background: url(img/txt-index.png) no-repeat center left/10rem auto;
}

.toc-wrap__title.js-more-btn::before {
    content: "";
    width: 2.5rem;
    height: 0.5rem;
    background: #0F3D81;
    position: absolute;
    top: 50%;
    right: 2.3rem;
    transform: translate(0, -50%);
}

.toc-wrap__title.js-more-btn::after {
    content: "";
    width: 0.5rem;
    height: 2.5rem;
    background: #0F3D81;
    position: absolute;
    top: 50%;
    right: 3.3rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.toc-wrap__title:hover {
    opacity: 0.6;
}

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

.toc-wrap__main {
    padding: var(--s2);
}

.toc-wrap--relations .toc-wrap__title span {
    background-image: url(img/txt-links.png);
    background-size: 9.9rem;
}

.toc-wrap--relations .toc-wrap__title:before, .toc-wrap--relations .toc-wrap__title:after {
    content: none;
}

.toc-wrap ul {
    margin: 0;
    padding: 0;
}

.toc-wrap ul li {
    padding-left: 1.6em;
    font-weight: 700;
}

.toc-wrap ul li:before {
    width: 1.5rem;
    height: 1.4rem;
    left: 0;
    top: 0.3em;
}

.toc-wrap ul li.chapter-h-two {
    padding-left: 2.6em;
    counter-increment: number;
}

.toc-wrap ul li.chapter-h-two:before {
    content: counter(number, decimal-leading-zero);
    width: 1.6em;
    height: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0F3D81;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: -0.2em;
    left: 0;
}

.toc-wrap ul li.chapter-h-three {
    margin: 0.8rem 0 0.4rem 4.5rem;
    padding: 0 0 0 1em;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.toc-wrap ul li.chapter-h-three:before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    background: url(img/list_icon_l.png) no-repeat center/contain;
    border: none;
    border-radius: 0;
    left: 0;
    top: 0.3em;
}

.toc-wrap ul li.chapter-h-three a {
    background: none;
}

.toc-wrap a {
    display: block;
    text-decoration: none;
}

.toc-wrap a:hover {
    text-decoration: underline;
}

/*
---------------------------------------------

    footer

*/
.footer-area {
    padding: var(--s10) 0 0;
    background: url(img/bg-footer.png) no-repeat center bottom/100% 100%;
}

.footer-area-logo {
    width: 28rem;
    margin: 0 auto var(--s5);
}

.footer-area-logo a:hover {
    opacity: 0.6;
}

.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: 1rem 0;
    background: #222;
    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.4rem;
    font-weight: 700;
    border-bottom: 1px solid #222;
}

.footer-menu-title__link {
    padding: 0 0 0.5rem 0;
    display: block;
    text-decoration: none;
}

.footer-menu-title__link:hover {
    opacity: 0.6;
}

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

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

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

.footer-menu__link:hover {
    opacity: 0.6;
}

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

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

.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: 85rem;
    margin: var(--s5) auto;
    padding: var(--s2) 5rem;
    font-size: 1.2rem;
}

.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-copyright__link:hover {
    color: #FFF;
    opacity: 0.6;
}

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

.footer-sitemap__link {
    padding: 0 1.2em 0 0;
    color: #FFF;
    text-decoration: none;
}

.footer-sitemap__link:hover {
    color: #FFF;
    opacity: 0.6;
}

/*
---------------------------------------------

	gnavi

*/
.gnavi-btn {
    width: 6rem;
    height: 6rem;
    background: #fff;
    border: solid 0.2rem #4C4948;
    border-radius: var(--s-2);
    display: block;
    position: fixed;
    top: var(--s1);
    right: var(--s1);
    z-index: 200;
    cursor: pointer;
}

.gnavi-btn span {
    width: 3.6rem;
    height: 0.3rem;
    display: inline-block;
    border-radius: var(--s1);
    background: #4C4948;
    position: absolute;
    left: 1rem;
    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.8rem;
}

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

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

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

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

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

.gnavi-area-logo {
    display: block;
    width: 16rem;
    margin: 0 auto var(--s3);
}

.gnavi-list {
    padding-bottom: 10rem;
    position: relative;
    transition: transform 0.8s ease;
}

.gnavi-list__item + .gnavi-list__item {
    margin-top: var(--s1);
}

.gnavi-list__link {
    width: 90%;
    margin: 0 auto;
    padding: 1rem 4rem 1rem 1.5rem;
    display: block;
    font-weight: 700;
    text-decoration: none;
    background: #fff url("img/arrow-01-black-right.png") no-repeat right 1.5rem center/auto 1.4rem;
}

.gnavi-list__link--menu {
    background-image: url("img/icon-more.svg");
    background-position: right 1.5rem center;
    background-size: 1.5rem auto;
}

.gnavi-list__link--back {
    padding: 1rem 1.5rem 1rem 4rem;
    background-image: url("img/arrow-01-black-left.png");
    background-position: left 1.5rem center;
}

.gnavi-list__sub {
    width: 100%;
    padding-bottom: 10rem;
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    transform: translate(0, 0);
    transition: transform 0.8s ease;
}

.gnavi-list__sub.is-show {
    display: block;
}

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

/*
---------------------------------------------

    page

*/
.page-top {
    width: 7rem;
    height: 7rem;
    position: fixed;
    right: -1px;
    bottom: var(--s2);
    z-index: 10;
}

.page-top__link {
    width: 100%;
    height: 100%;
}

.page-top__link:hover {
    opacity: 0.6;
}

/*
---------------------------------------------

    toggle sp

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

/*
---------------------------------------------

    通常　more

*/
.more-btn {
    width: 32rem;
    margin: var(--s5) auto;
    padding: var(--s2) 6rem;
    background: url(img/btn-more-icon.png) no-repeat right 1.6rem center/2.6rem auto, #fff;
    border: 0.2rem solid #0F3D81;
    border-radius: var(--s1);
    box-shadow: 0.2rem 0.8rem 1.5rem rgba(240, 131, 0, 0.25);
    color: #0F3D81;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
}

.more-btn::before {
    content: "";
    width: 1.2rem;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 2.3rem;
    transform: translate(0, -50%);
}

.more-btn::after {
    content: "";
    width: 0.2rem;
    height: 1.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 2.8rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.more-btn:hover {
    box-shadow: none;
    transform: translate(0.4rem, 0.4rem);
}

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

.more-content {
    display: none;
}

.more-content.sp-only {
    display: block;
}

/*  inView */
.bgswap {
    transition: all 6.4s ease;
}

.bgswap.animated {
    background-color: #fff;
}

.main-area h1, .main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
    font-weight: 700;
}

.main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
    margin: var(--s5) auto var(--s3);
    font-weight: 700;
    line-height: 1.5;
}

.main-area--low h1 a, .main-area--low h2 a, .main-area--low h3 a, .main-area--low h4 a, .main-area--low h5 a, .main-area--low h6 a {
    display: block;
    padding-right: 2rem;
    text-decoration: none;
}

.main-area--low h1 a:hover, .main-area--low h2 a:hover, .main-area--low h3 a:hover, .main-area--low h4 a:hover, .main-area--low h5 a:hover, .main-area--low h6 a:hover {
    opacity: 0.6;
}

.main-area--low h1 {
    margin: 0 auto 0 0;
    padding: 4rem 0 0 0;
    background: url(img/txt-car.png) no-repeat left top/40rem auto;
    font-size: 3.8rem;
    font-weight: 700;
    position: relative;
}

.main-area--low h1:before {
    content: "";
    width: 23.4rem;
    height: 18.8rem;
    background: url(img/mv-pic1.png) no-repeat center/contain;
    position: absolute;
    left: -26rem;
    top: var(--s10);
}

.main-area--low .sponsored {
    font-size: 1.2rem;
    color: #828282;
    margin-bottom: 4rem;
    line-height: 1.4;
}

.main-area--low h2 {
    padding: 0 0 0 var(--s3);
    font-size: 2.6rem;
    position: relative;
    pointer-events: none;
}

.main-area--low h2:before {
    content: "";
    width: 0.6rem;
    height: 100%;
    background: #FFF57F;
    border: solid 1px #222;
    position: absolute;
    left: 0;
    top: 0;
}

.main-area--low h2:hover {
    opacity: 0.6;
}

.main-area--low h2 a {
    background: url(img/arrow-01-black-right.png) no-repeat right center;
    background-size: 1.5rem auto;
    pointer-events: auto;
}

.main-area--low h3 {
    padding: var(--s1) 0;
    border-bottom: solid 1px #0F3D81;
    font-size: 2.4rem;
    color: #0F3D81;
    position: relative;
}

.main-area--low h3 a {
    background: url(img/arrow-01-black-right.png) no-repeat right center;
    background-size: 1.5rem auto;
    color: #0F3D81;
}

.main-area--low h4, .main-area--low h5 {
    font-size: 1.8rem;
    color: #D35238;
}

.main-area--low h4 a, .main-area--low h5 a {
    background: url(img/arrow-01-black-right.png) no-repeat right center;
    background-size: 1.5rem auto;
    color: #D35238;
}

section.bg-yellow.attention {
    background: #FAC400;
    padding: 4rem 0;
}

section.bg-yellow.attention .l-center:before {
    display: none;
}

section.bg-yellow.attention .title-column {
    margin-bottom: var(--s6);
    display: block;
}

section.bg-yellow.attention .box-summary02 {
    margin: var(--s2) auto var(--s5);
    padding: 0;
    background: none;
    border: none;
}

section.bg-yellow.attention .box-fkds {
    margin: 0 auto 2rem;
    background: #FFFBD1;
    text-align: center;
    font-size: 3rem;
    display: block;
    width: 37rem;
}

section.bg-yellow.attention .title-column .common-title {
    margin: 0 auto;
    text-align: center;
    font-size: 5rem;
}

section.bg-yellow.attention {
    background: #FAC400;
    padding: 4rem 0;
    transform: skewY(20deg);
    margin-bottom: -8rem;
}

section.bg-yellow.attention .l-center {
    position: relative;
    transform: skewY(-20deg);
}

section.bg-yellow.attention .l-center:before {
}

section.bg-yellow.attention .title-column {
    margin-bottom: var(--s6);
    display: block;
}

section.bg-yellow.attention .box-summary02 {
    margin: var(--s2) auto var(--s5);
    padding: 0;
    background: none;
    border: none;
}

section.bg-yellow.attention .box-fkds {
    margin: -8rem auto 2rem;
    background: #FFFBD1;
    text-align: center;
    font-size: 3rem;
    display: block;
    width: 37rem;
}

section.bg-yellow.attention .title-column .common-title {
    margin: 0 auto;
    text-align: center;
    font-size: 4rem;
}

section.bg-yellow.attention .title-column .common-title:before {
    content: "";
    width: 6rem;
    height: 6.7rem;
    background: url(/wp/wp-content/uploads/attention.png) no-repeat center/contain;
    position: absolute;
    left: -29px;
    right: 0;
    top: -14.4rem;
    margin: auto;
    z-index: 1;
}

/*
---------------------------------------------

    TOP

*/
.header-area {
    width: 100%;
    padding: var(--s1);
    padding-right: 8rem;
    /* display: flex; */
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 101;
}

h1.header-area-name, div.header-area-name {
    font-size: 1.2rem;
    text-align: right;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    position: absolute;
    top: 1.3rem;
    right: 7.5rem;
}

p.header-area-name {
    font-size: 1.2rem;
    text-align: right;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    position: absolute;
    top: 3rem;
    right: 7.5rem;
}

.header-area-name a {
    text-decoration: none;
}

.header-area-name a:hover {
    opacity: 0.6;
}

.header-area--low {
    position: static;
    justify-content: space-between;
    position: relative;
}

.header-area-logo {
    width: 18rem;
    margin: 10px 0 0 10px;
}

.header-area-logo a:hover {
    opacity: 0.6;
}

.mainvisual {
    margin-bottom: var(--s6);
    padding: 4.5rem 0 20rem;
    background: url(img/mv-bg.png) no-repeat center top/cover;
    overflow: clip;
    position: relative;
    z-index: 0;
}

.mainvisual-logo {
    width: 28rem;
    margin: 0 auto var(--s4) 0;
}

.mainvisual-logo a:hover {
    opacity: 0.6;
}

.mainvisual-inner {
    max-width: 71rem;
    margin: 0 auto 0 0;
    padding: var(--s5) var(--s4) var(--s1);
    border: solid 0.3rem #4C4948;
    border-bottom: none;
    box-shadow: 1rem 0.7rem 0 #9FCFEF;
    background: #fff;
    position: relative;
}

.mainvisual-inner:before {
    content: "";
    width: 25.3rem;
    height: 30rem;
    background: url(img/mv-pic1.png) no-repeat center/contain;
    position: absolute;
    left: -20rem;
    bottom: -18rem;
    z-index: 1;
}

.mainvisual-inner:after {
    content: "";
    width: calc(100% + 1.6rem);
    height: 7.1rem;
    background: url(img/bg-corner-blue-btm.png) no-repeat right top/100% 100%;
    position: absolute;
    left: -0.3rem;
    top: 100%;
    box-sizing: border-box;
}

.mainvisual-inner .btn-internal {
    margin: var(--s8) auto var(--s-2);
}

.mainvisual-title {
    margin-bottom: var(--s6);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
}

.mainvisual-title span.title-marker {
    background: linear-gradient(transparent 55%, #FAC400 55%);
}

.mainvisual-catch {
    margin-bottom: var(--s3);
    font-size: 2.6rem;
    font-weight: 700;
    color: #0F3D81;
}

.mainvisual-lead {
    padding-left: 1rem;
    font-size: 1.8rem;
}

.mainvisual-pic02 {
    width: 39.8rem;
    height: 34.6rem;
    position: absolute;
    right: -10.5rem;
    top: 7.5rem;
    z-index: -1;
}

.mainvisual-pic03 {
    width: 51.6rem;
    height: 49.4rem;
    position: absolute;
    right: -24rem;
    top: 37.5rem;
}

.mainvisual p {
    line-height: 1.5;
}

.mainvisual .l-center {
    position: relative;
}

.main-area {
    overflow: clip;
}

.main-area--low {
    padding-bottom: 8rem;
}

.main-area--low .l-center {
    max-width: 85rem;
}

.toc_parts {
    position: fixed;
    top: 38rem;
    left: 0;
    width: 26rem;
    z-index: 1;
    transition: all 0.5s ease;
    transform: translateX(-100%);
    z-index: 99;
}

.toc_parts .toc_ttl {
    display: block;
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    background: #D8EEFF;
    width: 6rem;
    box-sizing: border-box;
    padding: var(--s1) var(--s2) var(--s4);
    border: solid 1px #C1C1C1;
    border-radius: 0 var(--s1) var(--s1) 0;
    border-left: none;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #4C4948;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 100;
}

.toc_parts .toc_ttl::before {
    content: "";
    width: 1.2rem;
    height: 0.2rem;
    background: #4C4948;
    position: absolute;
    top: 80%;
    right: 2.3rem;
    transform: translate(0, -50%);
}

.toc_parts .toc_ttl::after {
    content: "";
    width: 0.2rem;
    height: 1.2rem;
    background: #4C4948;
    position: absolute;
    top: 80%;
    right: 2.8rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.toc_parts .toc_block {
    position: fixed;
    top: 0;
    right: 0;
    background: #D8EEFF;
    width: 100%;
    height: auto;
    padding: var(--s2) var(--s1);
    border: solid 1px #C1C1C1;
    border-left: none;
    box-sizing: border-box;
}

.toc_parts .toc-scroll {
    height: 42rem;
    padding-right: var(--s1);
    overflow-x: hidden;
    overflow-y: auto;
    /* chrome safari */
}

.toc_parts .toc-scroll::-webkit-scrollbar {
    width: 0.4rem;
}

.toc_parts .toc-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
    background: #D8EEFF;
}

.toc_parts .toc-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
    background: #ccc;
}

.toc_parts.is-open {
    transform: translateX(0);
    transform: translateZ(0);
}

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

.toc_parts ul.chapter li.chapter-h + li.chapter-h {
    margin-top: var(--s2);
}

.toc_parts ul.chapter li.chapter-h a {
    display: block;
    text-decoration: none;
}

.toc_parts ul li.chapter-h-two {
    padding-left: 2.6em;
    position: relative;
    counter-increment: number;
}

.toc_parts ul li.chapter-h-two:before {
    content: counter(number, decimal-leading-zero);
    width: 1.6em;
    height: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF57F;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: -0.2em;
    left: 0;
}

.toc_parts ul li.chapter-h-three {
    padding-left: 3.8em;
    position: relative;
}

.toc_parts ul li.chapter-h-three:before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    background: url(img/list_icon_l.png) no-repeat center/contain;
    position: absolute;
    left: 4.4rem;
    top: 0.3em;
}

.toc_parts ul a:hover {
    opacity: 0.5;
}

/*
---------------------------------------------

    lower Parts

*/
.lower-sv {
    margin: var(--s8) auto;
}

.lower-sv__pic {
    position: relative;
}

.lower-sv__pic span.sm {
    font-size: 1.3rem;
}

.lower-sv__tag {
    padding: 0.4rem 1.4rem;
    background: #4C4948;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 30px;
    top: -1.7rem;
}

.lower-sv__title {
    margin-bottom: var(--s2);
    font-size: 2.1rem;
    font-weight: 700;
}

.lower-sv__btns {
    padding: 0 var(--s4);
}

.lower-sv .btn-internal, .lower-sv .btn-web {
    margin: var(--s3) 0;
}

.box-relations {
    padding: var(--s3) var(--s8);
    border: solid 1px #4C4948;
    position: relative;
}

.box-relations:before {
    content: "";
    width: 1.8rem;
    height: 6.1rem;
    background: url(img/deco-ribbon.png) no-repeat center/contain;
    position: absolute;
    left: var(--s3);
    top: -0.4rem;
}

.box-relations__title {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
    font-weight: 700;
}

.box-relations ul {
    margin: 0;
}

.box-relations ul li {
    padding-left: var(--s3);
}

.box-relations ul li:before {
    width: 1.5rem;
    height: 1.4rem;
    background: url(img/arrow-01-green-right.png) no-repeat center/contain;
    top: 0.3em;
}

.box-relations ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
}

.box-comment {
    margin: var(--s10) auto;
    padding: var(--s7) var(--s5) var(--s5);
    position: relative;
}

.box-comment:before {
    content: "";
    width: 26.7rem;
    height: 6.7rem;
    background: url(img/txt-comment.png) no-repeat center/contain;
    position: absolute;
    left: var(--s5);
    top: -4rem;
}

.box-comment__title {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
    font-weight: 700;
    color: #0F3D81;
}

.box-comment__btns {
    padding: 0 var(--s5);
}

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

.box-comment .l-column {
    margin-bottom: var(--s3);
}

.box-comment.box-comment--pink .l-column {
    /* display: block; */
    gap: inherit;
    column-gap: var(--s4);
}

.box-comment .btn-internal, .box-comment .btn-web {
    margin: var(--s3) 0;
}

.box-comment--yellow {
    background: #FFFBD1;
}

.box-comment--pink {
    border: solid 1px #4C4948;
    background: #ffecec;
}

.lower-common {
    margin-top: 8rem;
}

/*
---------------------------------------------

    TOP common

*/
section {
    padding: 10rem 0;
}

.common-title-en {
    margin-bottom: 1rem;
}

.common-title-en img {
    display: block;
    height: 6.7rem;
    width: auto;
}

.common-title {
    margin: 0 auto var(--s4) 0;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
}

.common-title span.st {
    font-size: 3.6rem;
    color: #D35238;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

.common-title span.st.st-yellow {
    margin: 0 0.4rem;
    font-size: 4.6rem;
    color: #FAC400;
}

.common-title span.sm {
    font-size: 2.4rem;
    display: block;
}

.common-title--height {
    line-height: 1.2;
}

.common-title a {
    text-decoration: none;
    padding: 0 15rem 0 0;
    background: url(img/btn-detail.png) no-repeat bottom 0.1rem right/13.1rem auto;
}

.common-title a:hover {
    opacity: 0.6;
}

.section-catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #D35238;
}

.section-catch--nomargin {
    margin-bottom: 0;
}

p.section-catch {
    line-height: 1.8;
}

.common-lead {
    margin: 0 auto var(--s2);
}

.common-lead--white {
    color: #fff;
}

.banner {
    width: 18rem;
    height: 25rem;
    /* padding: 1rem; */
    /* background: #FFF57F; */
    font-size: 1.3rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    bottom: 11rem;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
}

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

/*
---------------------------------------------

    TOP parts

*/
.bg-helf {
    background: linear-gradient(153deg, #fff 0, #fff 51.5%, #EAEFF3 51.5%, #EAEFF3 100%);
}

.card-sec01 {
    margin-bottom: 2.4rem;
    padding: var(--s2) var(--s1) 0;
    border: solid 1px #222;
    border-bottom: none;
    box-shadow: 4px 4px 0 #D5D5D5;
    background: #FFFBD1;
    position: relative;
}

.card-sec01:before {
    content: "";
    width: calc(100% + 6px);
    height: 2.4rem;
    background: url(img/bg-corner-btm.png) no-repeat left bottom/100% 105%;
    position: absolute;
    left: -1px;
    top: 100%;
}

.card-sec01__title {
    font-size: 1.07em;
}

.card-sec01__pic {
    margin-bottom: var(--s1);
    /* height: 10rem; */
}

.sec01-pic {
    width: 29.5rem;
    margin: var(--s5) auto 0;
}

.bg-gray {
    background: #EAEFF3;
}

.bg-gray--pdnone {
    padding-bottom: 0;
}

.bg-gray--pdtop-small {
    padding-top: var(--s3);
}

.bg-gray--pdtop-small .l-column__side .common-title-en {
    top: -11.5rem;
}

.box-summary {
    max-width: 76%;
    margin: var(--s4) auto 2.6rem;
    padding: var(--s3) var(--s4) var(--s1);
    border: solid 1px #4C4948;
    border-bottom: none;
    background: #fff;
    box-shadow: 5px 5px 0 #FFCBCC;
    text-align: center;
    position: relative;
}

.box-summary:before {
    content: "";
    width: calc(100% + 7px);
    height: 2.6rem;
    background: url(img/bg-corner-pink-btm.png) no-repeat left bottom/100% 101%;
    position: absolute;
    left: -1px;
    top: 100%;
}

.box-summary:after {
    content: "";
    width: 34.5rem;
    height: 27.3rem;
    background: url(img/sec02-pic1.png) no-repeat left bottom/contain;
    position: absolute;
    right: -12rem;
    top: -20rem;
}

.box-summary__catch {
    width: 70%;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
}

.box-summary__title {
    margin-top: var(--s2);
    font-size: 3rem;
    font-weight: 700;
}

.summary-arrow {
    width: 12.8rem;
    margin: var(--s8) auto 0;
}

.box-fkds {
    width: fit-content;
    max-width: 75rem;
    margin: 0 auto -4rem;
    padding: var(--s2) var(--s5);
    border: solid 1px #222;
    background: #FFFBD1;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.box-fkds:after {
    content: "";
    width: 3rem;
    height: 1.7rem;
    background: url(img/fkds-btm.png) no-repeat center top/100% 100%;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.card-sv {
    margin-bottom: 3.4rem;
    padding: var(--s4) var(--s4);
    border: solid 1px #222;
    /* border-bottom: none; */
    box-shadow: 4px 4px 0 #A5A5A5;
    background: #fff;
    position: relative;
}

.card-sv:before {
    /* content: ""; */
    width: calc(100% + 6px);
    height: 3.4rem;
    background: url(img/bg-corner-gray-btm.png) no-repeat left bottom/100% 100%;
    position: absolute;
    left: -1px;
    top: 100%;
}

.card-sv__pic {
    width: 14rem;
    margin: 0 auto var(--s1);
}

.card-sv__name {
    margin-bottom: var(--s2);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.card-sv p {
    line-height: 1.5;
}

.sv-title {
    display: flex;
    align-items: center;
}

.sv-title__tag {
    margin-right: var(--s1);
    padding: var(--s-2) var(--s2);
    background: #4C4948;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.bg-pink {
    padding: 8rem 0 var(--s4);
    position: relative;
    z-index: 0;
}

.bg-pink:before {
    content: "";
    width: 100vw;
    height: 100%;
    background: #ffecec;
    position: absolute;
    left: -4rem;
    top: 0;
    z-index: -1;
    border: solid 1px #4C4948;
}

.title-column {
    display: flex;
    margin-bottom: var(--s6);
}

.title-column .common-title-en {
    width: 32rem;
    margin-bottom: 0;
    background: url(img/dot-line-y.png) repeat-y right top 1rem/0.3rem auto;
}

.title-column .common-title-en--02 {
    width: 25.5rem;
}

.title-column .common-title {
    margin: 0 auto var(--s-2) var(--s8);
    flex: 1;
}

.l-tab {
    margin: var(--s7) auto 0;
    position: relative;
    z-index: 0;
}

.l-tab--low {
    margin: 8rem auto;
}

.l-tab__btn {
    width: 94%;
    margin: 0 auto 2.5rem;
    padding: 0.5rem;
    border: solid 1px #4C4948;
    border-radius: var(--s6);
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-2);
    position: sticky;
    top: 0;
    z-index: 2;
}

.l-tab__btn__item {
    width: calc((100% - var(--s-2) * 3) / 4);
    padding: 1.4rem var(--s1);
    background: #fff;
    border-radius: var(--s6);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-tab__btn__item:hover {
    background: #f1f1f1;
    cursor: pointer;
}

.l-tab__btn__item.is-active {
    background: #FAC400;
    position: relative;
}

.l-tab__btn__item.is-active:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.7rem 1.5rem 0 1.5rem;
    border-color: #FAC400 transparent transparent transparent;
    position: absolute;
    left: 50%;
    top: calc(100% + 1rem);
    transform: translateX(-50%);
    z-index: 1;
}

.l-tab__content {
    margin: -7rem 0 0;
    padding: 8rem var(--s4) var(--s4);
    display: none;
    border: solid 1px #4C4948;
    background: #fff;
    position: relative;
}

.l-tab__content.is-active {
    display: block;
}

.subtitle {
    margin-bottom: var(--s2);
    font-weight: 700;
    color: #0F3D81;
}

.box-flow {
    margin: var(--s7) auto var(--s6);
    display: flex;
    gap: var(--s5);
}

.box-flow__side {
    width: 37rem;
    padding: var(--s4);
    background: #F8F8F8;
    position: relative;
}

.box-flow__side:before {
    content: "";
    width: 7.6rem;
    height: 12.8rem;
    background: url(img/arrow-yellow.png) no-repeat center/contain;
    position: absolute;
    left: calc(100% - 2rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.box-flow__main {
    flex: 1;
    padding: var(--s4) var(--s5);
    background: #D8EEFF;
    position: relative;
}

.box-flow__main:before {
    content: "";
    width: 16rem;
    height: 4.4rem;
    background: url(img/txt-measureplan.png) no-repeat center/contain;
    position: absolute;
    left: var(--s4);
    top: -2.4rem;
}

.box-flow__main:after {
    content: "";
    width: 5rem;
    height: 12.5rem;
    background: url(img/illust-man1.png) no-repeat center/contain;
    position: absolute;
    right: -0.6rem;
    bottom: -6rem;
}

.box-flow .inner-title {
    margin-bottom: var(--s2);
    font-size: 2rem;
    font-weight: 700;
}

.box-subsummary {
    margin-top: var(--s8);
    padding: var(--s4) var(--s5);
    border: solid 1px #4C4948;
}

.box-subsummary__title {
    margin: -5rem auto var(--s2) 0;
    padding: var(--s1) var(--s3);
    width: fit-content;
    border: solid 1px #4C4948;
    background: #FFF57F;
    font-size: 1.8rem;
    font-weight: 700;
}

.box-subsummary .btn-link {
    margin-bottom: 0;
}

.box-summary02 {
    margin: var(--s9) auto var(--s5);
    padding: var(--s6) var(--s5) var(--s5);
    background: #ffecec;
    border: solid 1px #4C4948;
}

.box-summary02__title {
    margin: -7.4rem auto var(--s5) 0;
    padding: var(--s1) var(--s3);
    width: fit-content;
    background: #4C4948;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

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

.box-summary02__catch span.marker-white {
    background: linear-gradient(transparent 65%, #ffffff 65%);
    font-size: 2.5rem;
}

.box-summary02 .name {
    margin-top: var(--s1);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.box-summary02 .name span.sm {
    font-size: 1.3rem;
    font-weight: 400;
}

.box-summary02 p.box-summary02__catch {
    line-height: 1.5;
}

.box-summary02 .l-column {
    margin-bottom: var(--s5);
}

.box-summary02 .l-float__left-pc {
    width: 29rem;
}

.card-faq + .card-faq {
    margin-top: var(--s8);
}

.card-faq__title {
    margin-bottom: var(--s3);
    margin-left: var(--s3);
    padding: var(--s3) var(--s4) 2rem 3.8rem;
    background: #D8EEFF;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

.card-faq__title:before {
    content: "";
    width: 4.5rem;
    height: 5rem;
    background: url(img/txt-q.png) no-repeat center/contain;
    position: absolute;
    left: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
}

.card-faq__body {
    padding-left: 5.8rem;
}

.card-faq__answer {
    margin-bottom: var(--s3);
    padding: var(--s1) 8rem var(--s2) 3rem;
    background: url(img/dot-line-x.png) repeat-x left bottom/4rem auto;
    min-height: 5.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

.card-faq__answer:before {
    content: "";
    width: 2.5rem;
    height: 5.4rem;
    background: url(img/txt-a.png) no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 0;
}

.card-faq__answer span.st {
    font-size: 2.5rem;
    color: #D35238;
}

.card-faq__answer.js-more-btn:hover {
    opacity: 0.6;
    cursor: pointer;
}

.card-faq__answer.js-more-btn:after {
    content: "";
    width: 5rem;
    height: 4rem;
    background: url(img/more-icon.png) no-repeat center/contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-65%);
}

.card-faq__answer.js-more-btn.is-open:after {
    background-image: url(img/more-icon-close.png);
}

.bg-gray02 {
    background: #EFEFEF;
}

.bg-gray02 .l-center {
    position: relative;
}

.bg-gray02 .l-center:before {
    content: "";
    width: 37.5rem;
    height: 22.9rem;
    background: url(img/illust-police.png) no-repeat center/contain;
    position: absolute;
    right: 0;
    top: -12rem;
}

.card-corner {
    display: block;
    padding: var(--s3);
    background: #fff;
    border: solid 1px #000;
    text-decoration: none;
    box-shadow: 0.4rem 0.4rem 0 #FAC400;
    position: relative;
}

.card-corner:before {
    content: "";
    width: 3.75rem;
    height: 3.75rem;
    background: url(img/deco-corner-yellow.png) no-repeat center/contain;
    position: absolute;
    right: calc(0.5rem * -1);
    bottom: calc(0.5rem * -1);
}

.card-corner:hover {
    background-color: #FFFBD1;
    cursor: pointer;
}

.card-corner__en {
    font-weight: 700;
    color: #FAC400;
}

.card-corner__title {
    margin-bottom: var(--s2);
    font-size: 2.4rem;
    font-weight: 700;
}

.card-corner--blue {
    box-shadow: 0.4rem 0.4rem 0 #D8EEFF;
}

.card-corner--blue:before {
    background-image: url(img/deco-corner-blue.png);
}

.card-corner--blue .card-corner__en {
    color: #9FCFEF;
}

.card-corner--blue:hover {
    background-color: #EBF6FF;
}

.btn-detail {
    margin: var(--s2) 0 0 auto;
    padding: 0.6rem 0;
    width: 13.1rem;
    border-radius: var(--s6);
    border: solid 1px #4C4948;
    background: url(img/arrow-02-black-right.svg) no-repeat right 1rem center/1rem auto;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.btn-detail--yellow {
    background-color: #FFF57F;
}

.btn-detail--green {
    background-color: #C5EFCE;
}

.btn-detail--blue {
    background-color: #D8EEFF;
}

.card-security {
    display: block;
    text-decoration: none;
    position: relative;
}

.card-security:hover {
    opacity: 0.6;
    cursor: pointer;
}

.card-security__pic {
    margin-bottom: var(--s3);
    position: relative;
}

.card-security__pic:before {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    background: url(img/deco-corner-small.png) no-repeat center/contain;
    position: absolute;
    right: calc(0.4rem * -1);
    bottom: calc(0.4rem * -1);
}

.card-security__pic img {
    display: block;
    box-shadow: 0.4rem 0.4rem 0 #9DD1A8;
}

.card-security__title {
    margin-bottom: var(--s3);
    padding: 0 0 var(--s2);
    font-size: 2.2rem;
    background: url(img/dot-line-x.png) repeat-x left bottom/4rem auto;
}

.bg-yellow {
    background: #FFFBD1;
    margin-top: 10rem;
}

.bg-yellow .l-center {
    position: relative;
}

.bg-yellow .l-center:before {
    content: "";
    width: 30.3rem;
    height: 20rem;
    background: url(img/illust-house.png) no-repeat center/contain;
    position: absolute;
    right: 0;
    top: -16rem;
}

.card-column {
    display: block;
    padding: var(--s4);
    border: solid 1px #000;
    background: #fff;
    text-decoration: none;
}

.card-column:hover {
    background-color: #FFFEF4;
    cursor: pointer;
}

.card-column__pic {
    margin: 0 auto var(--s3);
    width: 300px;
}

.card-column__pic img {
    display: block;
    /* box-shadow: 0.4rem 0.4rem 0 #FAC400; */
}

.card-column__title {
    margin-bottom: var(--s3);
    padding: 0 0 var(--s2);
    font-size: 2.2rem;
    background: url(img/dot-line-x.png) repeat-x left bottom/4rem auto;
}

.box-scroll {
    /* height: 12.5rem; */
    overflow: auto;
    /* padding-right: var(--s3); */
}

.host-title {
    margin-bottom: var(--s2);
    padding-bottom: var(--s2);
    background: url(img/dot-line-x.png) repeat-x left bottom/4rem auto;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

.host-title:before {
    content: "";
    width: 10.7rem;
    height: 7rem;
    background: url(img/illust-house2.png) no-repeat center/contain;
    position: absolute;
    right: 0;
    bottom: var(--s2);
}

.host-body {
    padding: 0 var(--s5);
}

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

      sp base settings

  */:root {
        font-size: 2.6666666667vw;
    }

    body {
        font-size: 1.4rem;
    }

    body.bg-lower:before {
        content: none;
    }

    .sp_br {
        display: inline;
    }

    .pc_br {
        display: none;
    }
}

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

      sp layout center

  */.l-center, .l-center-narrow {
        padding-right: var(--s2);
        padding-left: var(--s2);
        box-sizing: border-box;
        min-width: inherit;
        width: 100%;
    }

    .l-center--wide {
        min-width: inherit;
    }

    /*
  ---------------------------------------------

      sp layout stack

  */
    .l-stack {
        gap: var(--s4);
    }

    .l-stack-large {
        gap: var(--s5);
    }

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

    /*
  ---------------------------------------------

      sp layout cluster

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

    /*
  ---------------------------------------------

      sp layout grid

  */
    .l-grid {
        grid-template-columns: 100%;
        grid-gap: var(--s3);
    }

    .l-grid-large {
        grid-template-columns: 100%;
        grid-gap: var(--s4);
    }

    .l-grid-three {
        grid-template-columns: 100%;
        grid-gap: var(--s4);
    }

    .l-grid-three-small {
        --minmum: calc((100% - var(--s2)) / 2);
        display: grid;
        grid-gap: var(--s2);
    }

    .l-grid-four {
        --minmum: calc((100% - var(--s1)) / 2);
        display: grid;
        grid-gap: var(--s1);
    }

    /*
  ---------------------------------------------

      sp layout sidebar

  */
    .l-sidebar__side {
        display: none;
    }

    .l-sidebar__main {
        width: 100%;
    }

    /*
  ---------------------------------------------

      sp layout column

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

    .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04 {
        width: 100%;
    }

    .l-column__main {
        width: 100%;
    }

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

    /*
  ---------------------------------------------

      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__left.small {
        width: 45%;
    }

    .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-x: auto;
        overflow-y: hidden;
        /* chrome safari */
    }

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

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

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

      list

  */.main-area ul li:before {
        width: 0.8rem;
        height: 0.8rem;
        top: 0.5em;
        left: 0.2em;
    }

    /*
  ---------------------------------------------

      sp btn

  */
    .btn-internal, .btn-web {
        width: 90%;
        margin: var(--s3) auto;
    }

    .btn-internal a, .btn-web a {
        padding: 1.6rem 4rem;
        min-height: initial;
        background-position: right 2rem center;
    }

    .btn-internal:hover a, .btn-web:hover a {
        transform: translate(0, 0);
    }

    .btn-web a {
        padding: 1.6rem 3.5rem;
    }

    .btn-link {
        margin: var(--s2) auto;
    }

    .btn-link a {
        padding: 0.5rem 3.2rem 0.5rem 0;
        line-height: 1.4;
    }

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

    .btn-tel {
        width: 90%;
        margin: var(--s3) auto;
        display: block;
        position: relative;
    }

    .btn-tel a {
        width: 100%;
        margin: 0 auto;
        padding: 1.6rem 4rem;
        background: #9DD1A8 url("img/icon-tel.png") no-repeat center left 1.5rem/2.8rem auto;
        border-radius: 5rem;
        border: solid 1px #222;
        display: block;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        color: #222;
    }

    /*
  ---------------------------------------------

      sp table

  */
    table {
        border-top: 1px solid #C7C7C7;
        border-left: 1px solid #C7C7C7;
    }

    thead, tbody, tr {
        display: block;
    }

    th, td {
        width: 100%;
        padding: var(--s1);
        border: none;
        border-bottom: 1px solid #C7C7C7;
        border-right: 1px solid #C7C7C7;
        display: block;
    }

    .table-label thead {
        display: none;
    }

    .table-label tbody th {
        background: #ccc;
    }

    .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 #000;
        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: 8rem;
        display: table-cell;
    }

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

    /*
  ---------------------------------------------

      sp caption

  */
    .caption {
        font-size: 0.9rem;
    }

    .caption-scroll {
        font-size: 0.9rem;
        /*chrome safari*/
    }

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

    .caption-scroll::-webkit-scrollbar-track {
        border-radius: 0.2rem;
    }

    .caption-scroll::-webkit-scrollbar-thumb {
        border-radius: 0.2rem;
    }

    /*
  ---------------------------------------------

  	sp pankuzu

  */
    #pankuzu {
        width: 96%;
        margin: 0 auto var(--s3);
    }

    /*
  ---------------------------------------------

      sp footer

  */
    .footer-area {
        padding: var(--s3) 0 0;
        background: url(img/bg-footer-sp.png) no-repeat center top/100% auto;
    }

    .footer-area-logo {
        margin-bottom: var(--s3);
        width: 17rem;
    }

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

    .footer-bottom {
        padding: var(--s1) 0 11rem;
        background: #0F3D81;
    }

    .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: 1.2rem;
        height: 1.4rem;
        background: url("img/arrow-01-black-down.png") no-repeat center/contain;
        position: absolute;
        top: 50%;
        right: var(--s2);
        transform: translate(0, -50%) rotate(0);
        transition: transform 0.3s;
    }

    .footer-menu-title__link.is-open::after {
        transform: translate(0, -50%) rotate(180deg);
    }

    .footer-menu-title__link--not-toggle::after {
        background: url("img/arrow-01-black-right.png") no-repeat center/contain;
    }

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

    .footer-menu__item {
        width: 100%;
    }

    .footer-menu__link {
        padding: var(--s1) var(--s2);
    }

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

    .footer-sitemap {
        display: none;
    }

    /*
  ---------------------------------------------

  	sp gnavi

  */
    .gnavi-btn {
        width: 4.8rem;
        height: 4.8rem;
        top: var(--s-2);
        right: var(--s-2);
    }

    .gnavi-btn span {
        width: 2.4rem;
        height: 0.3rem;
        left: 1rem;
    }

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

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

    .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(3) {
        transform: translateY(-0.9rem) rotate(45deg);
    }

    .gnavi-area {
        width: 100%;
        padding-top: 3rem;
    }

    /*
  ---------------------------------------------

      sp page

  */
    .page-top {
        width: 5.5rem;
        height: 5.5rem;
        bottom: 13rem;
    }

    .page-top__link:hover {
        opacity: 1;
    }

    /*
  ---------------------------------------------

       sp toggle sp

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

    /*
  ---------------------------------------------

      sp more

  */
    .more-btn {
        width: 90%;
        margin: var(--s3) auto;
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .more-btn:hover {
        transform: translate(0, 0);
        box-shadow: 0.2rem 0.8rem 1.5rem rgba(240, 131, 0, 0.25);
    }

    .more-content {
        padding-bottom: var(--s2);
    }

    .more-content.sp-only {
        display: none;
    }

    /*
  ---------------------------------------------

      toc

  */
    .toc-wrap {
        margin: var(--s5) 0;
        padding: 0;
    }

    .toc-wrap__title {
        padding: var(--s3) var(--s2);
        font-size: 1.5rem;
    }

    .toc-wrap__title span {
        padding-top: var(--s1);
        padding-bottom: var(--s1);
        padding-left: 10rem;
        background-size: auto 2.8rem;
        background-position: center left;
    }

    .toc-wrap__title.js-more-btn::before {
        height: 0.4rem;
        width: 2rem;
    }

    .toc-wrap__title.js-more-btn::after {
        width: 0.4rem;
        height: 2rem;
        right: 3.1rem;
    }

    .toc-wrap__main {
        padding-top: 0;
    }

    .toc-wrap ul {
        margin: 0;
    }

    .toc-wrap ul li:before {
        top: 0.3em;
        width: 1.2rem;
        height: 1.2rem;
    }

    .toc-wrap ul li.chapter-h-two:before {
        font-size: 1.5rem;
        top: -0.1em;
    }

    .toc-wrap--relations ul li {
        width: 100%;
        font-size: 1.5rem;
    }

    .toc-wrap--relations .toc-wrap__title {
        font-size: 1.5rem;
    }

    .toc-wrap--relations .toc-wrap__title span {
        background-size: auto 2.8rem;
    }

    .main-area h2 {
        font-size: 2rem;
        margin: 10px auto var(--s4) 0;
    }

    .main-area h3 {
        font-size: 1.9rem;
    }

    .main-area h4 {
        font-size: 1.7rem;
    }

    .main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
        margin: var(--s4) auto var(--s2);
    }

    .main-area--low h1 {
        margin: var(--s4) auto 15px;
        padding-top: 2rem;
        background-size: auto 2.6rem;
        font-size: 2.6rem;
        line-height: 1.4;
    }

    .main-area--low h1:before {
        width: 8rem;
        height: 6.4rem;
        left: auto;
        right: -1rem;
        top: -3.9rem;
    }

    .main-area--low h2 {
        padding-left: var(--s2);
    }

    .main-area--low h2 a {
        background-size: 1.3rem auto;
    }

    .main-area--low h3:before {
        width: 4rem;
        top: -1rem;
    }

    .main-area--low h3 a {
        background-size: 1.3rem auto;
        background-position: right center;
    }

    .main-area--low h3.icon-title {
        padding-left: 9rem;
    }

    .main-area--low h3.icon-title .icon-title__tag {
        width: 8rem;
        height: 8rem;
        font-size: 1.4rem;
    }

    .main-area--low h3.icon-title .icon-title__tag span.st {
        font-size: 2rem;
    }

    .main-area--low h3.icon-title span.small {
        font-size: 1.5rem;
    }

    .main-area--low h4 a {
        background-size: 1.3rem auto;
        background-position: right center;
    }

    .main-area--low h5 {
        font-size: 1.6rem;
    }

    .main-area--low h5 a {
        background-size: 1.3rem auto;
        background-position: right center;
    }
}

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

      sp Header

  */.header-area {
        width: 100%;
        height: auto;
        padding: var(--s1);
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .header-area-logo {
        margin: 0 auto;
        width: 17rem;
        min-width: initial;
        position: absolute;
        top: 6rem;
    }

    .header-area-name {
        width: 100%;
        margin-bottom: var(--s2);
        font-size: 1.1rem;
        line-height: 1.2;
        text-align: center;
    }

    h1.header-area-name, div.header-area-name {
        font-size: 1.2rem;
        text-align: left;
        line-height: 1.4;
        margin-bottom: 0.3rem;
        position: absolute;
        top: 3vw;
        right: auto;
        left: 0;
        padding-left: 0.5rem;
    }

    p.header-area-name {
        font-size: 1.1rem;
        text-align: left;
        line-height: 1.3;
        margin-bottom: 0.3rem;
        position: absolute;
        top: 8.5vw;
        left: 0;
        padding-left: 0.5rem;
    }

    .header-area-name span.st {
        font-size: 1.5rem;
    }

    .header-area-nav {
        display: none;
    }

    .header-area__inner {
        padding-right: 5rem;
    }

    .header-area__inner--low {
        background-position: center right 190%;
    }

    .mainvisual {
        margin-bottom: 0;
        padding-bottom: 12rem;
        padding: 9.5rem 0 12rem;
    }

    .mainvisual-logo {
        width: 19rem;
        /* margin: 0 auto; */
    }

    .mainvisual-inner {
        margin-top: 13rem;
        padding: var(--s7) var(--s1) var(--s2);
        border-width: 0.15rem;
        box-shadow: 0.5rem 0.5rem 0 #9FCFEF;
    }

    .mainvisual-inner:after {
        width: calc(100% + 0.8rem);
        height: 3.6rem;
        left: -0.15rem;
    }

    .mainvisual-inner:before {
        width: 15rem;
        height: 13rem;
        left: 0;
        bottom: -11rem;
    }

    .mainvisual-inner .btn-internal {
        margin-top: var(--s3);
    }

    .mainvisual-title {
        margin-bottom: var(--s2);
        font-size: 2.2rem;
    }

    .mainvisual-lead {
        padding: 0;
        font-size: 1.5rem;
    }

    .mainvisual-catch {
        font-size: 1.8rem;
    }

    .mainvisual-pic02 {
        width: 13rem;
        height: 12rem;
        left: var(--s2);
        top: 10rem;
    }

    .mainvisual-pic03 {
        width: 21rem;
        height: 21.5rem;
        right: -11px;
        top: 6.5rem;
    }

    .main-area--low {
        padding-bottom: 6rem;
        margin-top: 12rem;
    }

    .toc_parts {
        transform: translateY(100%);
        left: 0;
        top: auto;
        bottom: 0;
        height: 45rem;
    }

    .toc_parts .toc_ttl {
        width: 6.2rem;
        height: 5.2rem;
        padding: 0.5rem var(--s1);
        border-radius: 0 var(--s1) 0 0;
        right: auto;
        left: 0;
        top: auto;
        bottom: calc(100% - 1px);
        border-bottom: none;
        font-size: 1.6rem;
    }

    .toc_parts .toc_ttl:before {
        right: 2.5rem;
        top: 75%;
    }

    .toc_parts .toc_ttl:after {
        right: 3rem;
        top: 75%;
    }

    .toc_parts .toc_block {
        padding-right: var(--s2);
        padding-bottom: var(--s7);
        border-bottom: none;
    }

    .lower-sv__pic {
        width: 75%;
        margin: 0 auto var(--s2);
        text-align: center;
    }

    .lower-sv__pic img {
        width: 50%;
        margin: 0 auto var(--s2);
    }

    .lower-sv__btns {
        margin-top: var(--s2);
        padding: 0;
    }

    .lower-sv .btn-internal, .lower-sv .btn-web {
        margin: 0 auto;
    }

    section {
        padding: var(--s6) 0;
    }

    .common-title {
        margin-bottom: var(--s2);
    }

    .common-title:before {
        height: 0.4rem;
        width: 6rem;
    }

    .common-title span.st {
        font-size: 2.6rem;
    }

    .common-title span.st.st-yellow {
        font-size: 2.8rem;
    }

    .common-title a {
        padding-right: 9.2rem;
        background-size: 8.4rem auto;
        background-position: right bottom 0.15em;
    }

    .common-title-en img {
        height: 3.6rem;
    }

    .common-lead {
        max-width: 100%;
        margin-bottom: var(--s2);
    }

    .section-catch {
        font-size: 1.7rem;
    }

    p.section-catch {
        line-height: 1.6;
    }

    .section-inner {
        padding: 0;
    }

    .banner {
        width: 23rem;
        height: 5rem;
        bottom: 0;
        right: 6.5rem;
        z-index: 10;
    }

    .banner img {
        width: 23rem;
        height: auto;
        bottom: -2px;
        right: -17.3vw;
        position: absolute;
    }

    .box-relations {
        padding: var(--s3);
    }

    .box-relations:before {
        left: var(--s1);
    }

    .box-relations__title {
        padding-left: var(--s2);
        font-size: 2rem;
    }

    .box-relations ul li:before {
        width: 1.4rem;
        height: 1.3rem;
        top: 0.3em;
    }

    .box-comment {
        padding: var(--s4) var(--s3) var(--s2);
    }

    .box-comment:before {
        width: 15rem;
        height: 3.7rem;
        top: -2rem;
        left: var(--s1);
    }

    .box-comment__pic {
        width: 70%;
        margin: 0 auto;
    }

    .box-comment__title {
        margin-bottom: var(--s2);
        font-size: 1.8rem;
    }

    .box-comment .l-column__main {
        display: contents;
    }

    .box-comment .l-column__main .box-comment__title {
        margin-bottom: 0;
        order: 1;
    }

    .box-comment .l-column__main p {
        order: 3;
    }

    .box-comment .l-column__side04 {
        order: 2;
    }

    .l-column__side .common-title-en {
        margin-bottom: 1rem;
        position: absolute;
        top: -4.5rem;
        left: 0;
    }

    .bg-pink .l-column__side .common-title-en {
        top: 4.5rem;
        left: 0;
    }

    .box-comment__btns {
        margin-top: var(--s3);
        padding: 0;
    }

    .box-comment .btn-web, .box-comment .btn-internal {
        margin: 0 auto;
    }

    .sec01-pic {
        width: 20rem;
        margin: 0 0 0 auto;
    }

    .bg-helf {
        background: linear-gradient(151deg, #fff 0, #fff 43.5%, #EAEFF3 43.5%, #EAEFF3 100%);
    }

    h3.card-sec01__title {
        font-size: 1.5rem;
    }

    .box-summary {
        max-width: 100%;
        padding: var(--s2) var(--s2) var(--s2);
    }

    .box-summary:before {
        width: calc(100% + 6px);
        background-image: url(img/bg-corner-pink-btm-sp.png);
    }

    .box-summary:after {
        width: 13rem;
        height: 10rem;
        right: -1rem;
        top: auto;
        bottom: -8rem;
    }

    .box-summary__catch {
        width: 100%;
        font-size: 1.6rem;
    }

    .box-summary__title {
        font-size: 1.9rem;
    }

    .box-fkds {
        padding: var(--s2) var(--s3);
        font-size: 2rem;
    }

    .bg-pink {
        gap: 0;
    }

    .bg-pink .l-column__main {
        order: 1;
    }

    .bg-pink .l-column__side {
        display: contents;
    }

    .l-column__side .common-title-en img {
        /* display: none; */
        height: 3.6rem;
    }

    .bg-pink .l-column__side .btn-web, .bg-pink .l-column__side .btn-internal {
        order: 3;
        margin: var(--s3) auto 0;
    }

    .bg-pink .l-column__side .btn-link {
        order: 3;
        margin-right: 0;
    }

    .bg-pink:before {
        left: calc(var(--s2) * -1);
    }

    .bg-gray--pdtop-small {
        padding-bottom: 0;
    }

    .title-column {
        margin-bottom: var(--s3);
        flex-wrap: wrap;
    }

    .title-column .common-title {
        width: 100%;
        margin: 0 auto 0 0;
        flex: none;
    }

    .title-column .common-title-en {
        background: none;
    }

    .l-tab {
        margin-top: var(--s3);
    }

    .l-tab__btn {
        width: calc(100% + 2rem);
        margin-left: -1rem;
        border-radius: 2.2rem;
        flex-wrap: wrap;
        gap: var(--s1) var(--s-2);
        top: var(--s3);
    }

    .l-tab__btn__item {
        padding: var(--s1) var(--s-2);
        border-radius: var(--s2);
        width: calc((100% - var(--s-2)) / 2);
        font-size: 1.4rem;
    }

    .l-tab__btn__item.is-active:after {
        border-width: 0.8rem 0.6rem 0 0.6rem;
        bottom: auto;
        top: 99.5%;
    }

    .l-tab__content {
        padding-right: var(--s2);
        padding-left: var(--s2);
    }

    .box-flow {
        margin-top: var(--s4);
        flex-wrap: wrap;
        gap: 6rem;
    }

    .box-flow__side {
        width: 100%;
        padding: var(--s3);
    }

    .box-flow__side:before {
        width: 4.7rem;
        height: 7.8rem;
        left: 50%;
        bottom: -5rem;
        top: auto;
        transform: translateX(-50%) rotate(90deg);
    }

    .box-flow__main {
        width: 100%;
        padding: var(--s3);
    }

    .box-flow__main:before {
        width: 13.8rem;
        left: var(--s2);
    }

    .box-flow__main:after {
        height: 9rem;
        width: 3.5rem;
        bottom: -4rem;
    }

    .box-subsummary {
        padding: var(--s3);
    }

    .box-summary02 {
        margin-top: var(--s7);
        padding: var(--s3);
    }

    .box-summary02__title {
        font-size: 1.8rem;
        margin: -4.4rem auto var(--s1) 0;
    }

    .box-summary02 .l-column {
        flex-direction: column-reverse;
    }

    .box-summary02 .l-column__side03 {
        display: flex;
        align-items: center;
        gap: var(--s2);
    }

    .box-summary02 .l-column__side03 img {
        display: block;
        width: 40%;
    }

    .box-summary02 .l-float__left-pc {
        width: 100%;
    }

    .card-faq + .card-faq {
        margin-top: var(--s6);
    }

    .card-faq__title {
        margin-left: var(--s2);
        margin-bottom: var(--s2);
        padding: var(--s2) var(--s1) var(--s2) var(--s4);
    }

    .card-faq__title:before {
        width: 3rem;
        height: 3.5rem;
        left: -1.5rem;
    }

    .card-faq__body {
        padding-left: var(--s2);
    }

    .card-faq__answer {
        padding: var(--s1) 5.5rem var(--s2) 3rem;
        font-size: 1.6rem;
    }

    .card-faq__answer:before {
        width: 2rem;
        height: 3.5rem;
    }

    .card-faq__answer span.st {
        font-size: 2rem;
    }

    .bg-gray02 .l-center:before {
        width: 17rem;
        height: 11rem;
        top: -9rem;
        right: var(--s1);
    }

    .bg-yellow .l-center:before {
        width: 17rem;
        height: 11rem;
        right: var(--s1);
        top: -6rem;
    }

    .card-column {
        padding: var(--s3);
    }

    .box-scroll {
        /* padding-right: var(--s2); */
        height: auto;
        overflow: inherit;
    }

    .host-title {
        padding-right: 30%;
    }

    .host-title:before {
        width: 9.7rem;
        height: 6rem;
    }

    .host-body {
        padding: 0;
    }
	
	section.bg-yellow.attention {
    margin-bottom: 0;
}

section.bg-yellow.attention .box-fkds {
    font-size: 6vw;
    width: 70%;
}

section.bg-yellow.attention .title-column .common-title:before {
    top: -13.4rem;
}

section.bg-yellow.attention .title-column .common-title {
    font-size: 2rem;
}

section.bg-yellow.attention .title-column {
    margin-bottom: var(--s2);
}

.box-summary02__catch span.marker-white {
    font-size: 1.8rem;
}
	
}
