/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
    --base-width: 375;
}

@media (min-width: 768px) {
    :root {
        --base-width: 1440;
    }
}
:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #FF7945;
    --second: #053749;
    --text-body: #053749;
}
.h-staff__item--body ul, .h-data__top ul, .h-intro__inner ul, .h-scroll__inner {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container, .container-fluid {
    width: 100%;
    max-width: 940px;
    padding-inline: 20px;
    margin-inline: auto;
}

.container-fluid {
    max-width: 1200px;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--text-body);
    font-size: 18px;
}
@media only screen and (min-width: 768px) {
    .section-heading {
        margin-bottom: 48px;
        font-size: 20px;
        line-height: 1.83;
    }
}
@media only screen and (min-width: 992px) {
    .section-heading {
        font-size: 24px;
    }
}
.section-heading h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0 0 8px;
    color: var(--text-body);
}
@media only screen and (min-width: 768px) {
    .section-heading h3 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 992px) {
    .section-heading h3 {
        font-size: 34px;
    }
}
.section-heading h3 strong {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0.06em;
    line-height: 1;
}
@media only screen and (min-width: 768px) {
    .section-heading h3 strong {
        font-size: 50px;
    }
}
@media only screen and (min-width: 992px) {
    .section-heading h3 strong {
        font-size: 62px;
    }
}
.section-heading h2 {
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--text-body);
    margin: 0 0 6px;
    font-size: 34px;
}
@media only screen and (min-width: 768px) {
    .section-heading h2 {
        font-size: 42px;
    }
}
@media only screen and (min-width: 992px) {
    .section-heading h2 {
        font-size: 56px;
    }
}
.section-heading h2 mark {
    background: url("../img/res/heading-line.png") repeat-x 0 100%/auto 12px;
    padding-bottom: 3px;
    color: #a78c3c;
}
.section-heading p {
    margin: 0;
}
.section-heading p small {
    font-size: 12px;
}
@media only screen and (min-width: 768px) {
    .section-heading p small {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .section-heading p small {
        font-size: 22px;
    }
}
.section-heading--margin-min {
    margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
    .section-heading--margin-min {
        margin-bottom: 20px;
    }
}

.btn, .btn--mutil, .btn--check, .btn--arrow {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    border-radius: 18px;
    min-height: 92px;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 440px;
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s;
}
.btn img, .btn--mutil img, .btn--check img, .btn--arrow img {
    max-width: 40px;
}
.btn--arrow {
    gap: 8px;
    padding: 10px 30px 10px 15px;
}
@media only screen and (min-width: 768px) {
    .btn--arrow {
        padding: 10px 40px 10px 32px;
    }
}
.btn--arrow::after {
    content: "";
    width: 8px;
    height: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/res/arrow-white-right.svg") no-repeat 0 0/100%;
    right: 15px;
}
@media only screen and (min-width: 768px) {
    .btn--arrow::after {
        right: 20px;
    }
}
.btn--arrow.btn--lg::after {
    right: 17px;
}
@media only screen and (min-width: 768px) {
    .btn--arrow.btn--lg::after {
        right: 32px;
    }
}
.btn--lg {
    min-height: 74px;
    letter-spacing: -0.03em;
    font-size: 26px;
}
@media only screen and (min-width: 768px) {
    .btn--lg {
        font-size: 34px;
        max-width: 434px;
        min-height: 95px;
    }
}
.btn--lg img {
    max-width: 49px;
}
.btn--check {
    border: 1px solid var(--white);
}
.btn--check::after {
    content: "";
    background: url("../img/res/check-icon.svg") no-repeat 0 0/100%;
    width: 34px;
    height: 34px;
    left: calc(50% - 17px);
    top: -17px;
    position: absolute;
}
.btn:hover, .btn--arrow:hover, .btn--check:hover, .btn--mutil:hover {
    background: #FEAE7C;
}

.h-bg--1 {
    padding-bottom: calc(150 / var(--base-width) * 100vw);
    background: url("../img/res/bg-1-sp.png") no-repeat 0 0/100% #F0F2F8;
}
@media only screen and (min-width: 768px) {
    .h-bg--1 {
        padding-bottom: calc(300 / var(--base-width) * 100vw);
        background-image: url("../img/res/bg-1.png");
    }
}

.h-bg--2 {
    background: #F0F2F8;
}
@media only screen and (min-width: 768px) {
    .h-bg--2 {
        background: url("../img/res/bg-2.png") no-repeat 0 0/100% #F0F2F8;
    }
}

.h-bg--3 {
    background: url("../img/res/bg-3-sp.png") no-repeat 0 0/100% #dde6ee;
    padding-block: 32px;
}
@media only screen and (min-width: 768px) {
    .h-bg--3 {
        background-image: url("../img/res/bg-3.png");
        padding-block: 88px;
    }
}

@media only screen and (min-width: 768px) {
    .hide-pc {
        display: none;
    }
}

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

.slick-arrows .slick-arrow, .slick-arrows--white .slick-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0px 5px 15px 0px #002131;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
    font-size: 0;
}
@media only screen and (min-width: 768px) {
    .slick-arrows .slick-arrow, .slick-arrows--white .slick-arrow {
        width: 45px;
        height: 45px;
    }
}
.slick-arrows .slick-arrow::before, .slick-arrows--white .slick-arrow::before, .slick-arrows .slick-arrow::after, .slick-arrows--white .slick-arrow::after {
    display: none;
}
.slick-arrows .slick-arrow.slick-prev, .slick-arrows--white .slick-arrow.slick-prev {
    background: url("../img/res/arrow-white-left.svg") no-repeat 50% 50%/8px var(--second);
    left: 15px;
}
.slick-arrows .slick-arrow.slick-next, .slick-arrows--white .slick-arrow.slick-next {
    background: url("../img/res/arrow-white-right.svg") no-repeat 50% 50%/8px var(--second);
    right: 15px;
}
.slick-arrows--white .slick-arrow.slick-prev {
    background: url("../img/res/arrow-blue-left.svg") no-repeat 50% 50%/8px var(--white);
    left: 15px;
}
.slick-arrows--white .slick-arrow.slick-next {
    background: url("../img/res/arrow-blue-right.svg") no-repeat 50% 50%/8px var(--white);
    right: 15px;
}

.slick-nav .slick-dots, .slick-nav--white .slick-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.slick-nav .slick-dots li, .slick-nav--white .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}
.slick-nav .slick-dots li button, .slick-nav--white .slick-dots li button {
    background: rgba(5, 55, 73, 0.3);
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}
@media only screen and (min-width: 768px) {
    .slick-nav .slick-dots li button, .slick-nav--white .slick-dots li button {
        width: 35px;
        height: 35px;
    }
}
.slick-nav .slick-dots li button::before, .slick-nav--white .slick-dots li button::before {
    display: none;
}
.slick-nav .slick-dots li.slick-active button, .slick-nav--white .slick-dots li.slick-active button {
    background: var(--second);
}
.slick-nav--white .slick-dots li button {
    background: url(../img/res/slick-nav.svg) no-repeat;
    color: var(--second);
    width: 46px;
    height: 40px;
}
.slick-nav--white .slick-dots li:first-child {
    background: url(../img/res/slick-nav-first.svg) no-repeat;
    width: 47px;
}
.slick-nav--white .slick-dots li:first-child.slick-active button {
    background: url(../img/res/slick-nav-first-active.svg) no-repeat;
}
.slick-nav--white .slick-dots li.slick-active button {
    background: url(../img/res/slick-nav-active.svg) no-repeat;
}

.slick-nav-line .slick-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .slick-nav-line .slick-dots {
        gap: 20px;
    }
}
.slick-nav-line .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}
.slick-nav-line .slick-dots li button {
    background: #c6d1d7;
    font-weight: 500;
    font-size: 0;
    line-height: 1;
    height: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 50px;
}
@media only screen and (min-width: 768px) {
    .slick-nav-line .slick-dots li button {
        width: 80px;
    }
}
.slick-nav-line .slick-dots li button::before {
    display: none;
}
.slick-nav-line .slick-dots li.slick-active button {
    background: #5B829E;
}

.slick-style--1 {
    padding-block: 96px 40px;
    margin: 0;
}
@media only screen and (min-width: 768px) {
    .slick-style--1 {
        padding-block: 91px 85px;
    }
}
.slick-style--1 .slick-dots {
    top: 0;
    bottom: auto;
}
.slick-style--1 .slick-arrow {
    top: auto;
    bottom: 0;
    transform: none;
}
.slick-style--1 .slick-arrow.slick-prev {
    left: auto;
    right: 48px;
}
@media only screen and (min-width: 768px) {
    .slick-style--1 .slick-arrow.slick-prev {
        right: auto;
        left: 50%;
        transform: translateX(-70px);
    }
}
.slick-style--1 .slick-arrow.slick-next {
    right: 4px;
}
@media only screen and (min-width: 768px) {
    .slick-style--1 .slick-arrow.slick-next {
        right: 50%;
        transform: translateX(70px);
    }
}
.slick-style--2 {
    margin: 0;
    padding-top: 20px;
}
@media only screen and (min-width: 768px) {
    .slick-style--2 {
        padding-top: 37px;
    }
}
.slick-style--2 .slick-dots {
    top: 0;
    bottom: auto;
}

.h-banner {
    position: relative;
}
.h-banner > picture {
    display: block;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .h-banner > picture {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
.h-banner > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h-banner__inner {
    z-index: 1;
}
@media only screen and (min-width: 768px) {
    .h-banner__inner {
        padding-block: 77px 63px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media only screen and (max-width: 767px) {
    .h-banner__inner {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-block: 44px;
    }
}
.h-banner__inner picture {
    display: none;
    margin-bottom: 35px;
    display: none;
    margin-left: -50px;
}
@media only screen and (min-width: 768px) {
    .h-banner__inner picture {
        display: block;
    }
}
.h-banner__inner picture img {
    width: 100%;
    max-width: 400px;
}
@media only screen and (min-width: 992px) {
    .h-banner__inner picture img {
        max-width: 520px;
    }
}
@media only screen and (min-width: 1200px) {
    .h-banner__inner picture img {
        max-width: 628px;
    }
}
.h-banner__button {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media only screen and (min-width: 768px) {
    .h-banner__button {
        align-items: flex-start;
    }
}
.h-banner__button h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 -8px 0;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 200px;
    padding: 8px 22px;
    background: var(--white);
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .h-banner__button h4 {
        font-size: 16px;
        min-height: 40px;
    }
}
.h-banner__button .btn--arrow {
    background: linear-gradient(57.4deg, #FF7945 27.99%, #FFA070 72.01%);
    box-shadow: 0px 5px 10px 0px #838487, 1px 2px 1px 0px #FFFFFF4D inset, -2px -3px 1px 0px #D35727 inset;
}
@media only screen and (min-width: 768px) {
    .h-banner__button .btn--arrow {
        margin-left: 8px;
    }
}
.h-banner__button .btn--arrow:hover {
    box-shadow: 0px 1px 4px 0px #002131, 1px 2px 1px 0px #FFFFFF4D inset, -2px -3px 1px 0px #F9946C inset;
    background: linear-gradient(57.4deg, #FEAE7C 27.99%, #FEAE7C 72.01%);
}

@media only screen and (min-width: 768px) {
    .h-scroll {
        padding-block: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .h-scroll .container {
        padding-inline: 0;
    }
}
.h-scroll__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 768px) {
    .h-scroll__inner {
        grid-template-columns: 1fr 1fr 1.5fr;
        gap: 20px 80px;
    }
}
@media only screen and (min-width: 992px) {
    .h-scroll__inner {
        gap: 32px 80px;
    }
}
.h-scroll__inner a {
    font-weight: 700;
    line-height: 1.1875;
    color: var(--text-body);
    background: url("../img/res/arrow-blue-right.svg") no-repeat 24px 50%/8px;
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 5px 20px 5px 40px;
    min-height: 56px;
    display: flex;
    align-items: center;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .h-scroll__inner a {
        letter-spacing: 0;
        font-size: 18px;
        background-position: 0 50%;
        padding: 0 0 0 24px;
        min-height: auto;
    }
}
@media only screen and (min-width: 1200px) {
    .h-scroll__inner a {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .h-scroll__inner a {
        border: 1px solid #D8E5EB;
    }
}
@media only screen and (min-width: 768px) {
    .h-scroll__inner a::before {
        content: "";
        border-left: 1.5px solid #D8E5EB;
        position: absolute;
        left: -40px;
        top: 50%;
        transform: translateY(-50%);
        height: 24px;
    }
}
.h-scroll__inner a:nth-child(3n+1)::before {
    display: none;
}

.h-intro {
    background: linear-gradient(180deg, #053749 0%, #D8E5EB 100%);
    padding-block: 32px 25px;
}
@media only screen and (min-width: 768px) {
    .h-intro {
        padding-block: 64px;
    }
}
.h-intro h2 {
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.23;
    letter-spacing: 0.02em;
    margin: 0 0 16px;
}
@media only screen and (min-width: 768px) {
    .h-intro h2 {
        font-size: 26px;
        margin: 0 0 30px;
    }
}
@media only screen and (min-width: 992px) {
    .h-intro h2 {
        font-size: 30px;
        margin: 0 0 40px;
    }
}
@media only screen and (max-width: 767px) {
    .h-intro h2 {
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
.h-intro h2 span {
    background: var(--white);
    font-size: 16px;
    letter-spacing: 0;
    color: var(--text-body);
    padding: 10px 20px;
    border-radius: 100px;
}
@media only screen and (min-width: 768px) {
    .h-intro h2 span {
        font-size: 18px;
        padding: 5px 20px;
        margin-right: 8px;
        vertical-align: middle;
    }
}
@media only screen and (min-width: 992px) {
    .h-intro h2 span {
        font-size: 20px;
    }
}
.h-intro__inner {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(244, 246, 247, 0.7) 70%, rgba(216, 229, 235, 0) 93%);
    border-radius: 18px;
    padding: 8px 24px;
}
@media only screen and (min-width: 768px) {
    .h-intro__inner {
        padding: 12px 40px 52px;
    }
}
.h-intro__inner ul {
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--text-body);
    font-size: 16px;
}
@media only screen and (min-width: 768px) {
    .h-intro__inner ul {
        font-size: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .h-intro__inner ul {
        font-size: 26px;
    }
}
.h-intro__inner ul li {
    padding-block: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
@media only screen and (min-width: 768px) {
    .h-intro__inner ul li {
        gap: 16px;
        padding-block: 22px;
        align-items: center;
    }
}
@media only screen and (min-width: 992px) {
    .h-intro__inner ul li {
        padding-block: 28px;
    }
}
.h-intro__inner ul li + li {
    border-top: 1px dashed #053749;
}
.h-intro__inner ul li::before {
    content: "";
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: url("../img/res/comment.svg") no-repeat 0 0/100%;
}
@media only screen and (min-width: 768px) {
    .h-intro__inner ul li::before {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}

.h-img-full {
    position: relative;
    z-index: 5;
    display: block;
}
.h-img-full img {
    width: 100%;
}
.h-img-full--1 {
    margin-top: calc(-64 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
    .h-img-full--1 {
        margin-top: calc(-150 / var(--base-width) * 100vw);
    }
}
.h-img-full--2 {
    margin-block: calc(-75 / var(--base-width) * 100vw) calc(-100 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
    .h-img-full--2 {
        margin-block: calc(-240 / var(--base-width) * 100vw);
    }
}

.h-trust {
    display: flex;
    padding-top: calc(40 / var(--base-width) * 100vw);
    margin-top: calc(-73 / var(--base-width) * 100vw);
    justify-content: center;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .h-trust {
        margin-top: calc(-180 / var(--base-width) * 100vw);
        padding-top: calc(104 / var(--base-width) * 100vw);
        margin-bottom: 10px;
    }
}
.h-trust figure {
    position: relative;
    z-index: 10;
    margin: 0;
    width: 110px;
}
@media only screen and (min-width: 768px) {
    .h-trust figure {
        width: 220px;
    }
}
@media only screen and (min-width: 992px) {
    .h-trust figure {
        width: 290px;
    }
}
.h-trust__content {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5B829E;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 235px;
    width: calc(100% - 110px);
    font-size: 14px;
    line-height: 1.428;
    padding-left: 15px;
    padding-bottom: 20px;
}
.h-trust__content img{
    width: 100%;
    height: auto;
}
@media only screen and (min-width: 768px) {
    .h-trust__content {
        width: calc(100% - 220px);
        max-width: 100%;
        line-height: 1.42;
        padding-left: 0;
        font-size: 26px;
    }
}
@media only screen and (min-width: 992px) {
    .h-trust__content {
        width: calc(100% - 290px);
        font-size: 38px;
    }
}
.h-trust__content::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: url("../img/res/thing.png") no-repeat 0 100%/100%;
    left: -5px;
    height: 125px;
    width: calc(100% + 15px);
    bottom: -2px;
    display: none;
}
@media only screen and (min-width: 768px) {
    .h-trust__content::before {
        height: 404px;
        width: calc(100% + 35px);
        bottom: -12px;
        left: -35px;
    }
}
@media only screen and (min-width: 992px) {
    .h-trust__content::before {
        bottom: -10px;
        left: -46px;
        width: calc(100% + 75px);
    }
}
.h-trust__content p {
    margin: 0;
}

.h-units-managed {
    margin-bottom: 82px;
}
@media only screen and (min-width: 768px) {
    .h-units-managed {
        margin-bottom: 88px;
    }
}
.h-units-managed picture {
    display: block;
}
.h-units-managed picture img {
    width: 100%;
}
.h-units-managed__content {
    font-weight: 700;
    line-height: 1.69;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-body);
    margin-top: 16px;
    font-size: 18px;
}
@media only screen and (min-width: 768px) {
    .h-units-managed__content {
        font-size: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .h-units-managed__content {
        font-size: 26px;
    }
}
.h-units-managed__content mark {
    background: var(--white);
}
.h-units-managed__button {
    margin-top: 33px;
    display: flex;
    gap: 6px;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .h-units-managed__button {
        gap: 16px;
    }
}
.h-units-managed__button a {
    text-align: left;
    font-size: 14px;
    pointer-events: none;
}
@media only screen and (min-width: 768px) {
    .h-units-managed__button a {
        font-size: 18px;
    }
}
@media only screen and (min-width: 992px) {
    .h-units-managed__button a {
        font-size: 20px;
    }
}
@media only screen and (min-width: 1200px) {
    .h-units-managed__button a {
        font-size: 24px;
    }
}
@media only screen and (max-width: 768px) {
    .h-units-managed__button a {
        line-height: 1.285;
        gap: 8px;
        padding: 22px 9px;
    }
    .h-units-managed__button a img {
        max-width: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .h-why-choose .section-heading h3 {
        font-size: 20px;
    }
}
.h-why-choose__item {
    position: relative;
}
.h-why-choose__item + .h-why-choose__item {
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item + .h-why-choose__item {
        margin-top: 30px;
    }
}
.h-why-choose__item picture {
    position: absolute;
    top: -20px;
    right: -15px;
    z-index: 6;
    width: 90px;
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item picture {
        width: 190px;
        top: -15px;
        right: -30px;
    }
}
.h-why-choose__item picture img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    filter: drop-shadow(0px 0px 15px #FFFFFF);
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item picture img {
        filter: drop-shadow(0px 0px 30px #FFFFFF);
    }
}
.h-why-choose__item--body {
    border: 1.5px solid #A78C3C;
    border-radius: 18px;
    padding: 24px 32px 28px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-body);
    background: var(--white);
    position: relative;
    box-shadow: 0px 5px 10px 0px #ABBDD3;
    font-size: 14px;
    line-height: 1.714;
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item--body {
        padding: 48px 160px 48px 56px;
        font-size: 16px;
        line-height: 1.5;
    }
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item--body {
        font-size: 20px;
    }
}
.h-why-choose__item--body h6 {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    background: #A78C3C;
    color: var(--white);
    border-radius: 0 100px 100px 0;
    position: absolute;
    z-index: 2;
    top: -8px;
    left: -12.5px;
    width: 53px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item--body h6 {
        width: 68px;
        height: 48px;
        font-size: 24px;
        left: -16px;
    }
}
@media only screen and (min-width: 992px) {
    .h-why-choose__item--body h6 {
        width: 78px;
        height: 60px;
        font-size: 36px;
        left: -16px;
    }
}
.h-why-choose__item--body h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--text-body);
    margin: 0 0 16px;
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item--body h3 {
        font-size: 28px;
        margin: 0 0 24px;
    }
}
@media only screen and (min-width: 992px) {
    .h-why-choose__item--body h3 {
        font-size: 32px;
    }
}
.h-why-choose__item--body p:last-of-type {
    margin: 0;
}
.h-why-choose__item--body figure {
    max-width: 290px;
    width: 100%;
    margin: 16px 0 0;
}
@media only screen and (min-width: 768px) {
    .h-why-choose__item--body figure {
        margin: 24px 0 0;
    }
}

@media only screen and (max-width: 767px){
    #section-3{
        margin-top: 86px;
    }
    #section-5{
        padding-block: 82px;
    }
}
.h-data {
    padding-block: calc(100 / var(--base-width) * 100vw) 1px;
}
@media only screen and (min-width: 768px) {
    .h-data {
        padding-block: calc(300 / var(--base-width) * 100vw) 40px;
    }
}
.h-data__top {
    text-align: center;
    margin-bottom: 90px;
}
@media only screen and (min-width: 768px) {
    .h-data__top {
        margin-bottom: 64px;
    }
}
.h-data__top ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    justify-content: center;
    margin-bottom: 4px;
}
@media only screen and (min-width: 768px) {
    .h-data__top ul {
        font-size: 20px;
        line-height: 1.69;
    }
}
@media only screen and (min-width: 992px) {
    .h-data__top ul {
        font-size: 26px;
    }
}
.h-data__top ul li {
    background: #053749;
    color: var(--white);
    padding: 1px 12px;
    border-radius: 100px;
}
@media only screen and (min-width: 768px) {
    .h-data__top ul li {
        border-radius: 15px;
        padding: 4px 12px;
    }
}
.h-data__top ul li span {
    font-size: 10px;
}
@media only screen and (min-width: 768px) {
    .h-data__top ul li span {
        font-size: 14px;
    }
}
@media only screen and (min-width: 992px) {
    .h-data__top ul li span {
        font-size: 18px;
    }
}
.h-data__top ul li small {
    font-size: 10px;
}
@media only screen and (min-width: 768px) {
    .h-data__top ul li small {
        font-size: 12px;
    }
}
@media only screen and (min-width: 992px) {
    .h-data__top ul li small {
        font-size: 16px;
    }
}
.h-data__top h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-body);
}
@media only screen and (min-width: 768px) {
    .h-data__top h2 {
        font-size: 20px;
        line-height: 1.69;
    }
}
@media only screen and (min-width: 992px) {
    .h-data__top h2 {
        font-size: 26px;
    }
}
.h-data figure {
    display: block;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #5B829E;
    margin: 0 0 36px;
}
.h-data figure:last-child{
    margin-bottom: 86px;
}
@media only screen and (min-width: 768px) {
    .h-data figure {
        margin: 0 0 48px;
        font-size: 14px;
    }
    .h-data figure:last-child{
        margin-bottom: 48px;
    }
}
.h-data figure picture {
    display: block;
}
.h-data figure figcaption {
    margin: 4px 0 0;
}
@media only screen and (min-width: 768px) {
    .h-data figure figcaption {
        margin: 12px 0 0;
    }
}

.ht-use {
    padding-block: 32px;
    background: var(--second);
    color: var(--white);
}
@media only screen and (min-width: 768px) {
    .ht-use {
        padding-block: 56px 104px;
    }
}
@media only screen and (max-width: 767px) {
    .ht-use .container {
        padding-inline: 44px;
    }
}
.ht-use h2 {
    color: var(--white);
    margin: 0 0 24px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
@media only screen and (min-width: 768px) {
    .ht-use h2 {
        margin: 0 0 32px;
        font-size: 24px;
    }
}
@media only screen and (min-width: 992px) {
    .ht-use h2 {
        margin: 0 0 56px;
        font-size: 34px;
    }
}
@media only screen and (min-width: 768px) {
    .ht-use__item {
        display: flex !important;
        gap: 40px 80px;
    }
}
.ht-use__item figure {
    margin: 0 0 24px;
}
@media only screen and (min-width: 768px) {
    .ht-use__item figure {
        width: 40%;
        margin: 0;
    }
}
.ht-use__item figure img {
    border-radius: 18px;
    width: 100%;
}
.ht-use__item--body {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0.02em;
    color: var(--white);
}
@media only screen and (min-width: 768px) {
    .ht-use__item--body {
        width: calc(60% - 80px);
        font-size: 20px;
        line-height: 1.64;
    }
}
@media only screen and (min-width: 992px) {
    .ht-use__item--body {
        font-size: 28px;
    }
}
.ht-use__item--body h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--white);
    position: relative;
    margin: 0 0 12px;
}
@media only screen and (min-width: 768px) {
    .ht-use__item--body h3 {
        font-size: 30px;
        margin: 0 0 24px;
    }
}
@media only screen and (min-width: 992px) {
    .ht-use__item--body h3 {
        font-size: 38px;
    }
}
.ht-use__item--body h3 span {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    margin-right: 8px;
}
@media only screen and (min-width: 768px) {
    .ht-use__item--body h3 span {
        position: absolute;
        width: 35px;
        text-align: center;
        left: -43px;
        top: 0;
        font-size: 34px;
        margin: 0;
    }
}
@media only screen and (min-width: 992px) {
    .ht-use__item--body h3 span {
        font-size: 42px;
    }
}
.ht-use__item--body p:last-of-type {
    margin: 0;
}

.h-owner-comments.slick-slider {
    margin-bottom: 48px;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments.slick-slider {
        margin-bottom: 75px;
    }
}
.h-owner-comments .slick-list {
    padding-inline: 30px;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments .slick-list {
        padding-inline: 60px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments .slick-list {
        padding-inline: 100px;
    }
}
@media only screen and (min-width: 940px) {
    .h-owner-comments .slick-list {
        padding-inline: calc(50vw - 474px);
    }
}
.h-owner-comments .slick-list .slick-slide {
    margin: 10px 4px;
    height: auto;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments .slick-list .slick-slide {
        margin: 15px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments .slick-list .slick-slide {
        margin: 15px 24px;
    }
}
.h-owner-comments .slick-list .slick-slide > div {
    height: 100%;
}
.h-owner-comments .slick-list .slick-track {
    display: flex;
}
.h-owner-comments__item {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0px 5px 10px 0px #ABBDD3;
    height: 100%;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item {
        box-shadow: 0px 5px 15px 0px #ABBDD3;
    }
}
.h-owner-comments__item--top {
    background: #5B829E;
    color: var(--white);
    border-radius: 18px 18px 0 0;
    padding: 28px 28px 24px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item--top {
        padding: 32px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments__item--top {
        padding: 44px 64px 32px;
    }
}
.h-owner-comments__item--top figure {
    min-width: 88px;
    width: 88px;
    margin: 0;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item--top figure {
        min-width: 80px;
        width: 80px;
    }
}
.h-owner-comments__item--top figure img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 50%;
}
.h-owner-comments__item--info {
    flex-basis: 0;
    flex-grow: 1;
}
.h-owner-comments__item--info h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    padding-bottom: 6px;
    position: relative;
    margin: 0 0 6px;
    font-size: 14px;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item--info h4 {
        font-size: 20px;
        padding-bottom: 10px;
        margin: 0 0 10px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments__item--info h4 {
        font-size: 26px;
    }
}
.h-owner-comments__item--info h4::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 150px;
    border-bottom: 1px solid var(--white);
    left: 0;
    bottom: 0;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item--info h4::before {
        max-width: 200px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments__item--info h4::before {
        max-width: 250px;
    }
}
.h-owner-comments__item--info h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item--info h3 {
        font-size: 26px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments__item--info h3 {
        font-size: 34px;
    }
}
.h-owner-comments__item--body {
    padding: 24px 28px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #5B829E;
}
@media only screen and (min-width: 768px) {
    .h-owner-comments__item--body {
        padding: 32px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .h-owner-comments__item--body {
        padding: 32px 64px 40px;
        font-size: 20px;
    }
}

.h-faq {
    margin: 0 -20px 32px;
}
@media only screen and (min-width: 768px) {
    .h-faq {
        margin: 0 0 60px;
    }
}
@media only screen and (min-width: 992px) {
    .h-faq {
        margin-bottom: 88px;
    }
}
.h-faq__item {
    border-bottom: 1px solid #5B829E;
    background: var(--white);
}
.h-faq__item h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-body);
    position: relative;
    padding: 10px 45px 10px 68px;
    min-height: 75px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
@media only screen and (min-width: 768px) {
    .h-faq__item h3 {
        font-size: 18px;
        min-height: 85px;
    }
}
@media only screen and (min-width: 992px) {
    .h-faq__item h3 {
        font-size: 22px;
    }
}
.h-faq__item h3::before {
    content: "Q";
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #5B829E;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #5B829E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h-faq__item h3::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    right: 24px;
    top: calc(50% - 4px);
    transition: all 0.3s;
    background: url("../img/res/arrow-blue-light-down.svg") no-repeat 0 0/100%;
    transform: rotate(0);
}
.h-faq__item--body {
    background: #F4F6F7;
    padding: 16px 24px 16px 68px;
    position: relative;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--text-body);
    display: none;
}
@media only screen and (min-width: 768px) {
    .h-faq__item--body {
        font-size: 16px;
        padding: 24px 24px 24px 68px;
    }
}
@media only screen and (min-width: 992px) {
    .h-faq__item--body {
        font-size: 20px;
    }
}
.h-faq__item--body::before {
    content: "A";
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    width: 32px;
    height: 32px;
    background: #5B829E;
    border-radius: 50%;
    position: absolute;
    left: 24px;
    top: 17px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .h-faq__item--body::before {
        top: 22px;
    }
}
.h-faq__item.show h3::after {
    transform: rotate(180deg);
}

.h-asset-value {
    margin: 0 -12px 32px;
    position: relative;
}
.h-asset-value:before{background: #F0F2F8;content: "";position: absolute;left: 0;right: 0;top: 0;bottom: -32px;}
@media only screen and (min-width: 768px) {
    .h-asset-value {
        margin: 0 0 60px;
    }
    .h-asset-value:before{bottom: -60px;}
}
@media only screen and (min-width: 992px) {
    .h-asset-value {
        margin-bottom: 88px;
    }
    .h-asset-value:before{bottom: -88px;}
}
.h-asset-value > picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.h-asset-value > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.h-asset-value__inner {
    padding: 16px 0;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media only screen and (min-width: 768px) {
    .h-asset-value__inner {
        padding: 40px;
        align-items: flex-start;
    }
}
.h-asset-value__inner picture {
    display: block;
    margin-bottom: 80px;
}
@media only screen and (min-width: 768px) {
    .h-asset-value__inner picture {
        margin-bottom: 38px;
        margin-left: -14px;
    }
}
.h-asset-value__inner picture img {
    width: 100%;
    max-width: 472px;
}
.h-asset-value .btn--mutil {
    background: linear-gradient(57.4deg, #FF7945 27.99%, #FFA070 72.01%);
    box-shadow: 0px 5px 10px 0px #838487, 1px 2px 1px 0px #FFFFFF4D inset, -2px -3px 1px 0px #D35727 inset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 0;
    min-height: 80px;
    max-width: 357px;
    padding: 5px 10px;
}
@media only screen and (min-width: 768px) {
    .h-asset-value .btn--mutil {
        min-height: 88px;
    }
}
.h-asset-value .btn--mutil span {
    display: flex;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    gap: 4px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.h-asset-value .btn--mutil span img {
    max-width: 20px;
}
.h-asset-value .btn--mutil span::after {
    content: "";
    width: 8px;
    height: 12px;
    background: url("../img/res/arrow-white-right.svg") no-repeat 0 0/100%;
}
.h-asset-value .btn--mutil:hover {
    box-shadow: 0px 1px 4px 0px #002131, 1px 2px 1px 0px #FFFFFF4D inset, -2px -3px 1px 0px #F9946C inset;
    background: linear-gradient(57.4deg, #FEAE7C 27.99%, #FEAE7C 72.01%);
}

.ht-staff {
    padding-block: 50px 82px;
}
@media only screen and (min-width: 768px) {
    .ht-staff {
        padding-top: 0;
        padding-bottom: 60px;
    }
}
@media only screen and (min-width: 992px) {
    .ht-staff {
        padding-top: 0;
        padding-bottom: 88px;
    }
}
.h-staff__thumb {
    display: flex;
    justify-content: center;
    gap: 4px 7px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
    .h-staff__thumb {
        margin-bottom: 32px;
        gap: 4px 16px;
    }
}
.h-staff__thumb figure {
    width: 55px;
    margin: 0;
    cursor: pointer;
}
@media only screen and (min-width: 768px) {
    .h-staff__thumb figure {
        width: 75px;
    }
}
@media only screen and (min-width: 992px) {
    .h-staff__thumb figure {
        width: 85px;
    }
}
.h-staff__thumb figure img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    border: 2px solid #fff;
    border-radius: 50%;
}
.h-staff__thumb figure.active img{
    border-color: #002131;
}
@media only screen and (min-width: 768px) {
    .h-staff__item {
        display: flex !important;
        gap: 24px;
        align-items: flex-end;
    }
}
.h-staff__item figure {
    margin: 0 0 8px;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .h-staff__item figure {
        width: 32.4%;
        margin: 0;
    }
}
.h-staff__item figure img {
    width: 100%;
    border-radius: 0 0 300px 300px;
    aspect-ratio: 0.8981;
    object-fit: cover;
    max-width: 232px;
    display: inline-block;
}
@media only screen and (min-width: 768px) {
    .h-staff__item figure img {
        max-width: 100%;
    }
}
.h-staff__item--body {
    background: linear-gradient(180deg, #5B829E 20%, #476C86 50%, #002131 100%);
    border-radius: 18px;
    padding: 24px 24px 28px;
    color: #FBFCFF;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.44;
    letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--body {
        width: calc(67.6% - 24px);
        padding: 32px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .h-staff__item--body {
        padding: 40px;
        font-size: 18px;
    }
}
.h-staff__item--body h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
    color: #FBFCFF;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--body h4 {
        font-size: 18px;
        margin: 0 0 12px;
    }
}
@media only screen and (min-width: 992px) {
    .h-staff__item--body h4 {
        font-size: 22px;
    }
}
.h-staff__item--body h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #FBFCFF;
    margin: 0 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--body h3 {
        font-size: 28px;
        margin: 0 0 16px;
    }
}
@media only screen and (min-width: 992px) {
    .h-staff__item--body h3 {
        font-size: 32px;
    }
}
.h-staff__item--body h3 small {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--body h3 small {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .h-staff__item--body h3 small {
        font-size: 20px;
    }
}
.h-staff__item--body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #002131;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--body ul {
        font-size: 16px;
        margin-bottom: 16px;
    }
}
.h-staff__item--body ul li {
    border-radius: 100px;
    background: var(--white);
    padding: 1.5px 6px;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--body ul li {
        padding: 3px 12px;
    }
}
.h-staff__item--more {
    margin-top: 16px;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .h-staff__item--more {
        text-align: left;
    }
}
.h-staff__item--more a {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    width: auto;
}
.h-staff__item--more a::before {
    content: "";
    width: 8px;
    height: 12px;
    background: url("../img/res/arrow-white-right.svg") no-repeat 0 0/100%;
}
@media only screen and (max-width: 767px) {
    .h-asset-value .container-fluid{padding-inline: 10px;}
    .h-asset-value {margin: 30px 7.5px;}
    .h-asset-value:before{background: #F0F2F8;content: "";position: absolute;left: -7.5px;right: -7.5px;top: -30px;bottom: -30px;}
    .slick-style--1 {padding-block: 60px 40px;}
    .slick-nav--white .slick-dots {gap: 0;}
    .slick-nav--white .slick-dots li {margin: 0 -1px;}
    .slick-nav--white .slick-dots li:first-child {width: 37px;height: 32px;background-size: contain;}
    .slick-nav--white .slick-dots li button {width: 37px;height: 32px;background-size: contain !important;}
}
@media only screen and (max-width: 767px){
    .sp2x{
        width: 200vw;
        max-width: 747px;
        padding-right: 20px;
    }
    .page-id-6192 img,
    .page-id-298 img{
        max-width: 100%;
        height: auto;
    }
}

.member-link{
    margin-top: 15px;
}
.member-link a{
    position: relative;
    color: var(--text-body);
    padding-left: 10px;
    display: inline;
}
.member-link a:before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    border-left: 6px solid var(--text-body);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}