@charset "utf-8";

:root {
    /* color */
    --color-main: #20569d;
    --color-main-pale: #b2bece;
    --color-base: #191919;
    --color-gray: #f8f8f8;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg: #f7f7f8;
    --color-yellow: #f2e270;

    /* font-size */
    --fs-12: 1.2rem;
    --fs-14: 13px;
    --fs-16: 14px;
    --fs-18: 15px;
    --fs-20: 16px;
    --fs-23: 18px;
    --fs-25: 20px;
    --fs-30: 21px;
    --fs-35: 22px;
    --fs-36: 22px;
    --fs-38: 23px;
    --fs-40: 24px;
    --fs-45: 26px;

    /* font */
    --ff-ja: "Noto Sans JP", sans-serif;
    --ff-en: "Barlow", sans-serif;
    --ff-mix: "Barlow", "Noto Sans JP", sans-serif;
    --ff-awesome: "Font Awesome 6 Free";
    --ls-base: 0.1em;

    /* other */
    --header-height: 50px;
    --fix-contact: 50px;
    --border-solid: 1px solid var(--color-gray);
    --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (min-width: 768px) {
    :root {
        /* font-size */
        --fs-14: 14px;
        --fs-16: 16px;
        --fs-18: 18px;
        --fs-20: 2rem;
        --fs-23: 2.3rem;
        --fs-25: 2.5rem;
        --fs-30: 3rem;
        --fs-35: 3.5rem;
        --fs-36: 3.6rem;
        --fs-38: 3.8rem;
        --fs-40: 4rem;
        --fs-45: 4.5rem;

        --header-height: 90px;
    }
}
@media (min-width: 992px) {
}
body,
input,
textarea,
select,
option {
    font-family: var(--ff-ja);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--color-base);
    font-size: var(--fs-16);
    line-height: 1.575;
    letter-spacing: var(--ls-base);
}
body {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}
li {
    position: relative;
}
figcaption {
    text-align: center;
}
a,
a::before,
a::after {
    transition: 0.5s;
}
a:hover {
    opacity: 0.7;
}

.ff-en {
    font-family: var(--ff-en);
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: var(--ls-base);
}
.fs-12 {
    font-size: var(--fs-12);
    letter-spacing: var(--ls-base);
}
.fs-14 {
    font-size: var(--fs-14);
    letter-spacing: var(--ls-base);
}
.fs-16 {
    font-size: var(--fs-16);
    letter-spacing: var(--ls-base);
}
.fs-20 {
    font-size: var(--fs-20);
    letter-spacing: var(--ls-base);
}
.fs-23 {
    font-size: var(--fs-23);
    letter-spacing: var(--ls-base);
}
.fw-bold {
    font-weight: bold;
}
.fw-medium {
    font-weight: 400;
}
.color-main {
    color: var(--color-main);
}

/**************************************
/*  header
/**************************************/
.common-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: var(--header-height);
    box-shadow: 0 0 5px rgba(0, 3, 6, 0.16);
    background-color: var(--color-white);
    line-height: 1;
    overflow: hidden;
}
.common-main {
    margin-top: var(--header-height);
}

/* header mainarea */
.common-header > .container {
    display: flex;
    align-items: center;
    height: 100%;
}
.header-other {
    display: none;
}

@media (min-width: 1200px) {
    .header-logo {
        width: 251px;
    }
    .common-navi {
        width: 490px;
        height: 100%;
        margin-left: auto;
    }
    .navi-list,
    .navi-list .navi-item {
        height: 100%;
    }
    .navi-list .navi-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-other {
        display: flex;
        align-items: center;
        width: 380px;
        margin-left: 20px;
    }
    .header-other .commonp-tel-box {
        width: 180px;
        padding-right: 15px;
    }
    .header-other .commonp-tel {
        margin-bottom: 5px;
        font-size: 2rem;
        letter-spacing: var(--ls-base);
    }
    .header-other .commonp-tel img {
        width: 15px;
        margin-right: 5px;
    }
    .header-other .commonp-tel span {
        margin-right: calc(-1 * var(--ls-base));
    }
    .header-other .commonp-tel-box p {
        line-height: 1.416666666666667;
    }
    .header-other .commonp-contact-box {
        width: 200px;
        font-size: var(--fs-14);
        letter-spacing: 0.05em;
        font-weight: 400;
    }
    .header-other .commonp-mail {
        margin-bottom: 5px;
        padding: 8px 10px;
    }
    .header-other .commonp-line {
        box-shadow: none;
        padding: 5px 10px;
    }
    .header-other .commonp-mail img {
        width: 16px;
        margin-right: 8px;
        filter: brightness(0) saturate(100%) invert(28%) sepia(80%) saturate(785%)
            hue-rotate(180deg) brightness(93%) contrast(93%);
    }
    .header-other .commonp-line img {
        width: 20px;
        margin-right: 8px;
    }
}

/* header-navi */
.navi-item {
    font-size: 14px;
    letter-spacing: var(--ls-base);
    line-height: 1;
    font-weight: bold;
}
.navi-parent .navi-link {
    display: flex;
    align-items: center;
}
.navi-parent .navi-link::after {
    content: "\f078";
    display: inline-block;
    margin-left: 10px;
    font-family: var(--ff-awesome);
    color: var(--color-main);
    font-weight: bold;
    font-size: 10px;
}
.child-open .navi-parent .navi-link::after {
    content: "\f077";
}
.navi-child-list {
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}
.child-open .navi-child-list {
    height: auto !important;
    overflow: visible !important;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -7px -10px;
}
.navi-child-item {
    margin-bottom: 10px;
    padding-left: 22px;
    padding-right: 7px;
}
.navi-child-item::before {
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
    font-family: var(--ff-awesome);
    color: var(--color-main);
    font-weight: bold;
    font-size: 10px;
}
.navi-child-item a {
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
}
.common-navi .navi-child-item::before {
    content: "\f054";
}
@media (min-width: 1200px) {
    .navi-list {
        display: flex;
        justify-content: flex-end;
    }
    .navi-item {
        text-align: center;
        line-height: 1.2;
    }
    .navi-list .navi-item + .navi-item {
        margin-left: 1.5rem;
    }
    .navi-list .navi-child-list-wrap {
        position: fixed;
        top: var(--header-height);
        left: 0;
        z-index: 998;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);

        height: 0;
        overflow: hidden;
        transition: 0.5s;
    }
    .navi-list .navi-child-list {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: var(--container);
        height: auto;
        margin-right: auto;
        margin-left: auto;
        overflow: visible;
    }
    .navi-list .navi-parent:hover .navi-child-list-wrap {
        height: auto;
        overflow: visible;

        padding-top: 30px;
        padding-bottom: 30px;
    }
    .navi-list .navi-child-item {
        margin-bottom: 0;
        padding: 0 15px;
    }
    .navi-list .navi-child-item::before {
        left: 0;
    }
}

@media (max-width: 1199px) {
    .common-navi {
        position: fixed;
        bottom: var(--fix-contact);
        right: 0;
        z-index: 999;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 0;
        background-color: var(--color-white);
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
        transition: 0.5s;
    }
    .navi-open .common-navi {
        height: auto;
        padding-top: 20px;
        padding-bottom: 30px;
        overflow: visible;
    }
    .common-navi .navi-item {
        border-bottom: 1px solid var(--color-main-pale);
    }
    .common-navi .navi-link {
        position: relative;
        display: block;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .common-navi :not(.navi-parent) .navi-link::after {
        content: "\f054";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        font-family: var(--ff-awesome);
        color: var(--color-main);
        font-size: 10px;
    }
    .common-navi .navi-parent {
        padding-bottom: 15px;
    }
    .common-navi .navi-parent .navi-link {
        border-bottom: 1px solid var(--color-main);
        padding-top: 0;
        padding-bottom: 1rem;
    }
    .common-navi .navi-parent .navi-link::after {
        content: none;
    }
    .common-navi .navi-child-list {
        height: auto;
        overflow: visible;
    }
    .common-navi .navi-child-item {
        margin-top: 15px;
        margin-bottom: 0;
        padding-left: 15px;
        padding-right: 0;
    }
    .common-navi .navi-child-item::before {
        left: 0;
    }
    .common-navi .navi-child-item a {
        padding: 0;
    }
}

/* スマホ時　ナビ下固定 */
@media (max-width: 1199px) {
    .header-bottom-fixed {
        position: fixed;
        top: calc(100dvh - var(--fix-contact));
        left: 0;
        z-index: 999;
        display: flex;
        width: 100%;
        height: var(--fix-contact);
        box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
        background-color: var(--color-bg);
    }
    .header-bottom-button {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 25%;
        height: 100%;
        border-left: 1px solid var(--color-main-pale);
    }
    .header-bottom-button img {
        width: 25px;
    }
    .hamburger .line,
    .hamburger .line::before,
    .hamburger .line::after {
        position: absolute;
        left: calc(50% - 12.5px);
        display: block;
        width: 25px;
        height: 1px;
        background-color: var(--color-main);
        transition: 0.5s;
    }
    .hamburger .line {
        top: 50%;
    }
    .hamburger .line::before,
    .hamburger .line::after {
        content: "";
    }
    .hamburger .line::before {
        top: calc(50% - 10px);
    }
    .hamburger .line::after {
        top: calc(50% + 9px);
    }
    .navi-open .hamburger .line {
        background-color: transparent;
    }
    .navi-open .hamburger .line::before {
        top: 50%;
        transform: rotate(45deg);
    }
    .navi-open .hamburger .line::after {
        top: 50%;
        transform: rotate(-45deg);
    }
}

@media (min-width: 1200px) {
    .header-bottom-fixed,
    .hamburger {
        display: none;
    }
}

/**************************************
/*  page-header
/**************************************/
/* small */
.main-header-sm .header-bg {
    min-height: 150px;
    height: 12.5vw;
    max-height: 250px;
    margin-bottom: 2rem;
    background-color: var(--color-bg);
    padding: 20px 0;
    color: var(--color-main);
}
.main-header-sm .header-bg .container {
    display: flex;
    align-items: center;
    height: 100%;
}
.main-header-sm .page-title {
    display: flex;
    align-items: center;
    font-size: var(--fs-40);
    font-weight: bold;
    letter-spacing: var(--ls-base);
}
.main-header-sm .page-title::before {
    content: "";
    width: 4rem;
    height: 1px;
    margin-right: 2rem;
    background-color: var(--color-main);
}
@media (min-width: 768px) {
    .title-page {
        font-size: 4rem;
    }
}

/* large */
.main-header-lg {
    height: calc(100dvh - var(--header-height) - var(--fix-contact));
    max-height: 450px;
    background-color: var(--color-bg);
}
.main-header-lg .container {
    display: flex;
    align-items: center;
    height: 100%;
}
.main-header-lg-title.marker {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.main-header-lg .text-marker-white {
    display: inline-block;
    margin-right: calc(-1 * var(--ls-base));
    background-color: var(--color-white);
    padding: 5px 10px;
    font-size: 22px;
    letter-spacing: var(--ls-base);
    font-weight: 400;
}
.main-header-lg .text-marker-white + .text-marker-white {
    margin-top: 10px;
}
.main-header-lg .text-marker-white .fs-lg {
    font-size: 28px;
    letter-spacing: var(--ls-base);
}
.main-header-lg .text-marker-white .fs-lg .ff-en {
    display: inline-block;
    position: relative;
    top: 0.1em;
    font-size: 34px;
    line-height: 0;
}
.main-header-lg-subtitle {
    position: relative;
    margin-bottom: 15px;
    padding-left: 4.5rem;
    font-size: 14px;
    letter-spacing: var(--ls-base);
}
.main-header-lg-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--color-main-pale);
}
.main-header-lg-subtitle .fs-large .ff-en {
    font-size: var(--fs-36);
}

.text-marker-border {
    border-bottom: 3px solid var(--color-main);
    font-size: 16px;
    letter-spacing: var(--ls-base);
}
.text-marker-border .fs-lg {
    font-size: 18px;
    letter-spacing: var(--ls-base);
}

.main-header-lg-title .upper-title {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

@media (min-width: 576px) {
    .main-header-lg {
        max-height: 600px;
    }
    .main-header-lg-title.marker {
        align-items: flex-start;
    }
    .main-header-lg .text-marker-white {
        font-size: 30px;
        padding: 10px 2rem;
    }
    .main-header-lg .text-marker-white + .text-marker-white {
        margin-top: 15px;
    }
    .main-header-lg .text-marker-white .fs-lg,
    .text-marker-border .fs-lg {
        font-size: 35px;
    }
    .main-header-lg .text-marker-white .fs-lg .ff-en {
        font-size: 65px;
    }
    .text-marker-border {
        font-size: 30px;
    }
    .main-header-lg-subtitle {
        font-size: var(--fs-23);
    }
    .main-header-lg-subtitle .fs-large {
        font-size: var(--fs-25);
    }
    .main-header-lg-title .upper-title {
        font-size: 2.7rem;
    }
    .main-header-lg-title .upper-title .fs-lg {
        font-size: 3.2rem;
    }
}
@media (min-width: 992px) {
    .main-header-sm .header-bg {
        height: 250px;
    }
    .main-header-lg {
        height: 660px;
    }
    .main-header-lg .text-marker-white,
    .text-marker-border {
        font-size: 40px;
    }
    .main-header-lg .text-marker-white .fs-lg,
    .text-marker-border .fs-lg {
        font-size: 45px;
    }
    .main-header-lg .text-marker-white .fs-lg .ff-en {
        font-size: 85px;
    }
}

/* bread */
.page-bread {
    font-size: var(--fs-14);
}
.page-bread > span {
    display: inline-block;
}

/**************************************
/*  footer contents
/**************************************/
.common-contact {
    background: url(../images/contact-bg.webp) no-repeat left center / cover;
}
.common-contact-member img {
    width: 100px;
}
.common-contact .fs-20 {
    line-height: 2;
}
.common-contact-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.common-contact-button-wrap .commonp-tel-box {
    margin-bottom: 3rem;
    text-align: center;
}
.common-contact-button-wrap .commonp-tel {
    justify-content: center;
    font-size: 4rem;
    letter-spacing: var(--ls-base);
    line-height: 1;
}
.common-contact-button-wrap .commonp-tel img {
    width: 3.5rem;
    margin-right: 1.5rem;
}
.commonp-contact-box {
    width: 100%;
    max-width: 470px;
    font-size: var(--fs-23);
    letter-spacing: var(--ls-base);
}
.common-contact-button-wrap .commonp-mail {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
}
@media (min-width: 576px) {
    .common-contact-button-wrap .commonp-tel {
        font-size: 5rem;
    }
}
@media (min-width: 992px) {
    .common-contact-button-wrap {
        flex-direction: row;
        justify-content: center;
    }
    .common-contact-button-wrap .commonp-tel-box,
    .common-contact-button-wrap .commonp-contact-box {
        width: 50%;
        padding: 0 2.5rem;
    }
    .common-contact-button-wrap .commonp-tel-box {
        margin-bottom: 0;
    }
    .common-contact-button-wrap .commonp-tel {
        justify-content: flex-start;
    }
}
@media (min-width: 1200px) {
    .common-contact-button-wrap .commonp-tel-box {
        width: auto;
    }
    .common-contact-button-wrap .commonp-contact-box {
        width: calc(470px + 5rem);
        max-width: none;
    }
}

/**************************************
/*  footer
/**************************************/
.common-footer {
    position: relative;
    padding-top: 5rem;
    padding-bottom: calc(5rem + var(--fix-contact));
}
.footer-logo-wrap {
    position: static !important;
}
.footer-logo img {
    width: 251px;
}

.footer-sitemap {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.footer-sitemap .navi-parent {
    margin-bottom: 12px;
}
.footer-sitemap .navi-parent .navi-link:hover {
    cursor: pointer;
}
.footer-sitemap .navi-child-list {
    margin-bottom: 10px;
    margin-left: -7px;
    margin-right: -7px;
    transition: 0.5s;
}
.footer-sitemap .navi-child-item {
    width: 100%;
    padding-right: 3px;
}
.footer-sitemap .navi-child-item::before {
    content: "\f138";
}

.footer-sitemap {
    font-size: var(--fs-14);
    letter-spacing: var(--ls-base);
}
.sitemap-list-bottom {
    border-top: 1px solid var(--color-main-pale);
    padding-top: 2rem;
}
.sitemap-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -15px;
}
.sitemap-list .navi-item {
    margin-bottom: 15px;
    padding: 0 15px;
    text-align: center;
    line-height: 1;
}
.navi-sns {
    display: flex;
}
.navi-sns > * {
    width: 20px;
}
.navi-sns > * + * {
    margin-left: 20px;
}

@media (min-width: 576px) {
    .footer-sitemap {
        max-width: 560px;
    }
    .footer-sitemap .navi-child-item {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .footer-sitemap {
        max-width: none;
        margin-right: 0;
    }
}
@media (min-width: 1200px) {
    .common-footer {
        padding-bottom: 5rem;
    }
    .sitemap-list {
        margin-left: -3.5rem;
        margin-right: -3.5rem;
    }
    .sitemap-list .navi-item {
        padding: 0 3.5rem;
    }
}

@media (max-width: 991px) {
    .common-footer {
        padding-bottom: calc(5rem + 1em + 30px + var(--fix-contact));
    }
    .copyright {
        position: absolute;
        bottom: calc(5rem + var(--fix-contact) - 15px);
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px;
        text-align: center;
    }
}
@media (max-width: 575px) {
    .sitemap-list .navi-item {
        width: calc(100% / 2);
        text-align: left;
    }
}
@media (max-width: 370px) {
    .sitemap-list .navi-item {
        width: 100%;
    }
}

/**************************************
/*  parts
/**************************************/
/* title */
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    letter-spacing: var(--ls-base);
    font-weight: 700;
}

.title-section {
    position: relative;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    text-align: center;
    color: var(--color-main);
}
.title-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12rem;
    height: 5px;
    background-color: var(--color-main);
}
.title-section > * {
    display: block;
}
.title-section .text-en {
    margin-bottom: 10px;
    font-size: var(--fs-18);
    letter-spacing: var(--ls-base);
    line-height: 1;
}
.title-section .text-ja {
    font-size: var(--fs-38);
    line-height: 1.347368421052632;
    letter-spacing: var(--ls-base);
}
.title-section + .title-section-lead {
    margin-top: -1rem;
}
.title-section-lead {
    text-align: center;
}

.title-borderb,
.editor-content h2,
.strength-title {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-main);
    padding-bottom: 1rem;
    color: var(--color-main);
    line-height: 1.656;
    letter-spacing: var(--ls-base);
}
.title-borderb,
.editor-content h2 {
    font-size: var(--fs-25);
}

.title-bgbox {
    margin-bottom: 3rem;
    background-color: var(--color-main);
    padding: 1.5rem 2rem;
    color: var(--color-white);
    font-size: var(--fs-30);
    line-height: 1.38;
}

.title-wborder {
    margin-bottom: 3rem;
    text-align: center;
    overflow: hidden;
}
.title-wborder .text-ja {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    color: var(--color-main);
    font-size: var(--fs-25);
    letter-spacing: var(--ls-base);
}
.title-wborder .text-ja::before,
.title-wborder .text-ja::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    height: 1px;
    background-color: var(--color-main-pale);
}
.title-wborder .text-ja::before {
    right: 100%;
}
.title-wborder .text-ja::after {
    left: 100%;
}

/* ナンバリング title */
section {
    counter-reset: title-number;
}
.title-borderb.number,
.strength-title {
    display: flex;
    align-items: center;
}
.title-borderb.number::before,
.strength-title::before {
    font-family: var(--ff-en);
    white-space: nowrap;
}

.title-borderb.number::before {
    counter-increment: title-number;
    content: counter(title-number) ".";
    padding-right: 10px;
}

ul,
ol {
    counter-reset: li-number;
}
.strength-title {
    font-size: var(--fs-23);
    line-height: 1.643478260869565;
}
.strength-title::before {
    counter-increment: li-number;
    content: counter(li-number, decimal-leading-zero);
    padding-right: 2.5rem;
    font-size: var(--fs-45);
    font-weight: 600;
}

/* button */
.button-common {
    position: relative;
    display: block;
    width: 100%;
    max-width: 57rem;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50vw;
    background-color: var(--color-main);
    padding: 15px 4rem;
    text-align: center;
    color: var(--color-white);
    font-size: var(--fs-20);
    line-height: 1.5;
    font-weight: bold;
    transition: 0.5s;
}
.button-common:hover {
    cursor: pointer;
}
.button-common::after {
    content: "\f054";
    position: absolute;
    right: 15px;
    top: 50%;
    font-family: var(--ff-awesome);
    transform: translateY(-50%);
}
.button-common.arrow-down::after {
    content: "\f078";
}
@media (min-width: 576px) {
    .button-common {
        padding: 3rem 7rem;
    }
    .button-common::after {
        right: 3rem;
    }
}

/* tel / contact / line */
.commonp-tel {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: var(--ls-base);
    font-weight: 600;
}
.commonp-tel-text .ff-en {
    font-size: var(--fs-18);
    font-weight: 500;
}

.commonp-mail,
.commonp-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 50vw;
    padding: 15px 3rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: var(--ls-base);
}
.commonp-mail {
    background-color: var(--color-yellow);
    color: var(--color-main);
}
.commonp-mail img {
    width: 28px;
    margin-right: 1.5rem;
    filter: brightness(0) saturate(100%) invert(28%) sepia(80%) saturate(785%) hue-rotate(180deg)
        brightness(93%) contrast(93%);
}

.commonp-line {
    box-shadow: var(--box-shadow);
    background-color: #f2f2f2;
}
.commonp-line img {
    width: 30px;
    margin-right: 1.5rem;
}

/* background / border */
.bg-color {
    background-color: var(--color-bg) !important;
}
.bg-color.bg-arrow {
    position: relative;
    margin-bottom: 6rem;
}
.bg-color.bg-arrow::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 18.5rem solid transparent;
    border-left: 18.5rem solid transparent;
    border-top: 6rem solid var(--color-bg);
    border-bottom: 0;
}

/* table */
.table-scroll-wrap {
    overflow-x: auto;
}
.table-scroll-wrap table th,
.table-scroll-wrap table td {
    white-space: nowrap;
}
@media (max-width: 991px) {
    .table-scroll-wrap table {
        width: auto;
        min-width: 100%;
    }
}
@media (max-width: 575px) {
    .table-sp-block th,
    .table-sp-block td {
        display: block;
        border-bottom: 0;
        padding: 1rem;
    }
    .table-sp-block td {
        padding: 1;
    }
}

/* table tr 下線のみ */
.table-borderb tr {
    border-bottom: 1px solid var(--color-main-pale);
}
.table-borderb tr:last-child {
    border: 0;
}
.table-borderb th {
    padding: 1rem 0;
    color: var(--color-main);
    text-align: left;
    white-space: nowrap;
}
.table-borderb td {
    padding: 1rem 1rem 1rem 2rem;
}
@media (max-width: 575px) {
    .table-sp-block.table-borderb th {
        padding-bottom: 0;
    }
    .table-sp-block.table-borderb td {
        padding-top: 5px;
        padding-left: 0;
    }
}

/* table th 横 */
.table-th-row {
    table-layout: fixed;
}
.table-th-row th,
.table-th-row td {
    padding: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.table-th-row th {
    background-color: var(--color-main);
    color: var(--color-white);
    font-size: var(--fs-18);
    letter-spacing: var(--ls-base);
    font-weight: bold;
}
.table-th-row th + th {
    border-left: 1px solid var(--color-white);
}
.table-th-row td {
    border: 1px solid var(--color-main-pale);
    background-color: var(--color-white);
}

/* table th 縦 */
.table-th-column th,
.table-th-column td {
    padding: 1.5rem;
}
.table-th-column th {
    background-color: var(--color-main);
    color: var(--color-white);
    font-weight: 400;
    text-align: left;
}
.table-th-column tr + tr th {
    border-top: 1px solid var(--color-white);
}
.table-th-column td {
    border: 1px solid var(--color-main-pale);
    background-color: var(--color-white);
}
@media (max-width: 575px) {
    .table-th-column.table-sp-block th {
        border: 0;
    }
}

/* table th 縦横 */
.table-th-xy {
    table-layout: fixed;
}
.table-th-xy th,
.table-th-xy thead th:first-child {
    background-color: var(--color-main-pale);
}
.table-th-xy th,
.table-th-xy td {
    vertical-align: middle;
}
.table-th-xy th {
    padding: 1.5rem;
    color: var(--color-white);
    text-align: left;
}
.table-th-xy thead th {
    border-right: 1px solid var(--color-white);
    background-color: var(--color-main);
    font-size: var(--fs-18);
    font-weight: bold;
    text-align: center;
}
.table-th-xy thead th:first-child,
.table-th-xy thead th:last-child {
    border-right: 0;
}
.table-th-xy tbody th {
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
}
.table-th-xy td {
    border: 1px solid var(--color-main-pale);
    background-color: var(--color-white);
    padding: 1.5rem;
    text-align: center;
}

/* タブ切替 */
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}

/* strength */
.strength-item + .strength-item {
    margin-top: 5rem;
}
.strength-text {
    margin-bottom: 3rem;
}
.strength-border {
    margin-top: 3rem;
    border: 1px solid var(--color-main-pale);
    padding: 3rem 1.5rem;
}
.strength-border-text {
    padding: 0 15px;
}
.strength-border-text + .strength-border-text {
    margin-top: 10px;
}
.strength-border-title {
    font-weight: bold;
    color: var(--color-main);
}
.strength-border-title::before {
    content: "\f111";
    font-family: var(--ff-awesome);
}
@media (min-width: 992px) {
    .strength-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 -15px;
    }
    .strength-item:nth-child(2n-1) {
        flex-direction: row-reverse;
    }
    .strength-item + .strength-item {
        margin-top: 7rem;
    }
    .strength-text {
        width: calc(7 / 12 * 100%);
        margin-bottom: 0;
        padding: 0 15px;
    }
    .strength-img {
        width: calc(5 / 12 * 100%);
        padding: 0 15px;
    }
    .strength-border {
        display: flex;
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    .strength-border-text {
        width: 100%;
        padding: 0 15px;
    }
    .strength-border-text + .strength-border-text {
        margin-top: 0;
    }
}

/* flow */
.flow-list .reason-box {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: var(--fs-14);
    letter-spacing: var(--ls-base);
}
.flow-list .reason-box::after {
    content: "";
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    display: block;
    width: 1rem;
    height: 2.5rem;
    background: url(../images/common/icon-triangle.svg) no-repeat center / contain;
}
.flow-list li:last-child .reason-box::after {
    content: none;
}
.flow-list.reason-img {
    margin-bottom: 2rem;
}
.flow-list .reason-img img {
    height: 45px;
}
@media (min-width: 576px) {
    .flow-list .reason-box::after {
        top: 50%;
        left: calc(100% + 1.5rem);
        transform: translate(-50%, -50%) rotate(0);
    }
}

/**************************************
/*  editor-textarea
/**************************************/
.editor-textarea > * + * {
    margin-top: 15px;
}

/**************************************
/*  editor
/**************************************/
.editor-content {
    font-size: var(--fs-14);
    letter-spacing: var(--ls-base);
    line-height: 1.714285714285714;
}
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    margin-bottom: 0;
    letter-spacing: var(--ls-base);
    line-height: 1.5;
}
.editor-content h2 {
    border-bottom: 1px solid var(--color-main);
    padding-bottom: 1rem;
    font-size: var(--fs-25);
    color: var(--color-main);
}
.editor-content h3 {
    border-left: 5px solid var(--color-main);
    padding-left: 1.5rem;
    font-size: var(--fs-25);
    color: var(--color-main);
}
.editor-content h4 {
    border-bottom: 1px solid var(--color-main-pale);
    padding-bottom: 1rem;
    font-size: var(--fs-20);
    color: var(--color-main);
}
.editor-content h5 {
    background-color: var(--color-main-pale);
    padding: 1rem 1.5rem;
    font-size: var(--fs-20);
    color: var(--color-white);
}
.editor-content h6 {
    font-size: var(--fs-18);
    color: var(--color-main);
}

.editor-content > * + * {
    margin-top: 1.5em;
}
.editor-content * + h2 {
    margin-top: 1.5em;
}
.editor-content h3 + * {
    margin-top: 1.5em;
}
.editor-content h4 + *,
.editor-content h5 + * {
    margin-top: 1em;
}
.editor-content h6 + * {
    margin-top: 10px;
}
@media (min-width: 768px) {
    .editor-content > * + * {
        margin-top: 2em;
    }
    .editor-content * + h4 {
        margin-top: 1.5em;
    }
}

.editor-content a,
.editor-textarea a {
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-all;
    color: var(--color-main);
    font-weight: bold;
}
.editor-content sub,
.editor-content sup {
    position: relative;
    font-size: 0.75em;
    line-height: 1;
}
.editor-content sub {
    bottom: -0.25em;
}
.editor-content sup {
    top: -0.5em;
}

.editor-content table {
    table-layout: fixed;
}
.editor-content table th,
.editor-content table td {
    border: 1px solid var(--color-main-pale);
    padding: 1rem 1.5rem;
    line-height: 1.5;
    text-align: left;
    vertical-align: middle;
}
.editor-content table th {
    background-color: var(--color-bg);
    font-weight: 400;
}

.editor-content ul,
.editor-textarea ul {
    padding-left: 1.5em;
}
.editor-content ul > li,
.editor-textarea ul > li {
    list-style: disc;
}
.editor-content li,
.editor-textarea li {
    margin-bottom: 5px;
}
.editor-content li:last-child,
.editor-textarea li:last-child {
    margin-bottom: 0;
}
.editor-content ol > li {
    padding-left: 1.5em;
}
.editor-content ol > li::before {
    counter-increment: li-number;
    content: counter(li-number) ") ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
.editor-content .aligncenter {
    text-align: center;
}
.editor-content .alignright {
    text-align: right;
}
.editor-content figcaption {
    margin-top: 5px;
}
.editor-content .size-full img {
    width: 100%;
    height: auto;
}

/* カラム */
.wp-block-columns {
    display: flex;
    flex-direction: column;
    margin-left: -15px;
    margin-right: -15px;
}
.wp-block-columns .wp-block-column + .wp-block-column {
    margin-top: 3rem;
    padding-left: 15px;
    padding-right: 15px;
}
.wp-block-columns .wp-block-column img {
    height: auto;
}

@media (min-width: 768px) {
    .wp-block-columns {
        flex-direction: row;
        align-items: flex-start;
    }
    .editor-content .wp-block-columns + .wp-block-columns {
        margin-top: 5rem;
    }
    .wp-block-columns .wp-block-column {
        width: 100%;
    }
    .wp-block-columns .wp-block-column + .wp-block-column {
        margin-top: 0;
    }
}

.grecaptcha-badge {
    bottom: calc(var(--fix-contact) + 10px) !important;
    z-index: 1;
}
