@charset "UTF-8";

/*================================================
ブレイクポイント
================================================*/
/*================================================
カラー
================================================*/
:root {
    --primary: #52b4a7;
    --secondary: #73d1c0;
    --btn: #ff9c1b;
    --accent-red: #f55870;
    --accent-yellow: #ffe768;
    --text: #504f4f;
}

/*================================================
フォント情報
================================================*/
:root {
    --font: "Zen Kaku Gothic New", serif;
    --font-num: "Oswald", sans-serif;
}

html {
    font-size: 4.2666666667vw;
}

@media screen and (min-width: 751px) {
    html {
        font-size: 16px;
    }
}

/*================================================
変数
================================================*/
/* 基本設定
===================================== */
body {
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
}

.wrapper {
    overflow: hidden;
    max-width: 46.875rem;
    margin-inline: auto;
    width: 100%;
}

/* link
===================================== */
a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    opacity: 0.7;
}

@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}

.btn-1 {
    display: inline-block;
    width: 19.6875rem;
    height: 3.125rem;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 3.125rem;
    border-radius: 1.5625rem;
    background: var(--btn);
}

@media screen and (min-width: 751px) {
    .btn-1 {
        width: 39.375rem;
        height: 6.25rem;
        font-size: 2rem;
        line-height: 6.25rem;
        border-radius: 3.125rem;
    }
}

@-webkit-keyframes fadeUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUp {
    -webkit-animation: fadeUp 0.5s ease;
    animation: fadeUp 0.5s ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fade {
    opacity: 0;
    transform: translateY(2rem);
}

/* mv
===================================== */
.mv {
    width: 100%;
    height: 33rem;
    /* height: 38.875rem; */
    padding-top: 2.875rem;
    background: url(../img/fv1.webp) no-repeat top center/contain;
}

@media screen and (min-width: 751px) {
    .mv {
        height: 65.75rem;
        padding-top: 5.75rem;
    }
}

.mv__text {
    text-align: center;
    color: var(--primary);
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.4545454545;
}

@media screen and (min-width: 751px) {
    .mv__text {
        font-size: 2.75rem;
    }
}

.mv__img {
    width: 10.8125rem;
    margin-inline: auto;
    margin-top: 0.875rem;
}

@media screen and (min-width: 751px) {
    .mv__img {
        width: 21.625rem;
        margin-top: 1.75rem;
    }
}

.mv__title {
    margin-top: 3.1875rem;
}

@media screen and (min-width: 751px) {
    .mv__title {
        margin-top: 6.375rem;
    }
}

.mv__title-box {
    margin-inline: auto;
    padding-block: 0.625rem 0.5625rem;
    width: 21.5625rem;
    height: 2.75rem;
    border: 0.125rem solid #fff;
    position: relative;
}

@media screen and (min-width: 751px) {
    .mv__title-box {
        padding-block: 1.25rem 1.125rem;
        width: 43.125rem;
        height: 5.5rem;
        border-width: 0.25rem;
    }
}

.mv__title-box::before {
    content: "";
    position: absolute;
    top: -3.3125rem;
    left: 0;
    width: 3.6875rem;
    height: 3.25rem;
    background: url(../img/mv-home-1.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .mv__title-box::before {
        top: -6.625rem;
        width: 7.375rem;
        height: 6.5rem;
    }
}

.mv__title-box::after {
    content: "";
    position: absolute;
    top: -3.3125rem;
    right: 0;
    width: 3.375rem;
    height: 3.25rem;
    background: url(../img/mv-home-2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .mv__title-box::after {
        top: -6.625rem;
        width: 6.75rem;
        height: 6.5rem;
    }
}

.mv__title-text {
    text-align: center;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 1.4705882353;
}

@media screen and (min-width: 751px) {
    .mv__title-text {
        font-size: 2.125rem;
    }
}

.mv__title-text .dots {
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 1.4705882353;
    position: relative;
}

@media screen and (min-width: 751px) {
    .mv__title-text .dots {
        font-size: 2.125rem;
    }
}

.mv__title-text .dots::after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.25rem;
    height: 0.25rem;
    background: var(--accent-yellow);
    border-radius: 50%;
}

@media screen and (min-width: 751px) {
    .mv__title-text .dots::after {
        top: -0.25rem;
        width: 0.5rem;
        height: 0.5rem;
    }
}

.mv__logo {
    width: 20.6875rem;
    margin-top: -0.625rem;
    margin-inline: auto;
}

@media screen and (min-width: 751px) {
    .mv__logo {
        width: 21.625rem;
        margin-top: -1.25rem;
    }
}

.mv__img-2 {
    margin-top: -0.875rem;
}

@media screen and (min-width: 751px) {
    .mv__img-2 {
        margin-top: -1.75rem;
    }
}

.mv__btn {
    margin-top: 25rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .mv__btn {
        margin-top: 50rem;
    }
}

/* problem
===================================== */
.problem__top {
    padding-top: 3.75rem;
    width: 100%;
    height: 30.0625rem;
    background: url(../img/problem-bg.webp) no-repeat top -0.625rem center/contain;
}

@media screen and (min-width: 751px) {
    .problem__top {
        padding-top: 7.5rem;
        height: 60.125rem;
        background-position: top -1.25rem center;
    }
}

.problem__top-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
}

@media screen and (min-width: 751px) {
    .problem__top-title {
        font-size: 2.25rem;
    }
}

.problem__list {
    margin-top: 1.875rem;
    padding-inline: 0.9375rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .problem__list {
        margin-top: 3.75rem;
        padding-inline: 1.875rem;
        gap: 3rem;
    }
}

.problem__list::after {
    content: "";
    position: absolute;
    bottom: -3.6875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.4375rem;
    height: 1.8125rem;
    background: url(../img/problem-arrow.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .problem__list::after {
        bottom: -7.375rem;
        width: 6.875rem;
        height: 3.625rem;
    }
}

.problem__item {
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media screen and (min-width: 751px) {
    .problem__item {
        gap: 6rem;
    }
}

.problem__item--reverse {
    flex-direction: row-reverse;
}

.problem__item--reverse .problem__item-box::after {
    content: "";
    position: absolute;
    top: 1.6875rem;
    left: -2.3125rem;
    width: 2.125rem;
    height: 1.1875rem;
    background: url(../img/problem-fukidashi-icon.webp) no-repeat center/contain;
    transform: scaleX(-1);
}

@media screen and (min-width: 751px) {
    .problem__item--reverse .problem__item-box::after {
        top: 3.375rem;
        left: -4.625rem;
        width: 4.25rem;
        height: 2.375rem;
    }
}

.problem__item-box {
    width: 12rem;
    height: 4.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: #8e8b8b;
    position: relative;
}

@media screen and (min-width: 751px) {
    .problem__item-box {
        width: 24rem;
        height: 8.375rem;
        border-radius: 1.25rem;
    }
}

.problem__item-box::after {
    content: "";
    position: absolute;
    top: 1.6875rem;
    right: -2.3125rem;
    width: 2.125rem;
    height: 1.1875rem;
    background: url(../img/problem-fukidashi-icon.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .problem__item-box::after {
        top: 3.375rem;
        right: -4.625rem;
        width: 4.25rem;
        height: 2.375rem;
    }
}

.problem__item-text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .problem__item-text {
        font-size: 1.75rem;
    }
}

.problem__item-icon img {
    width: auto;
    height: 4.1875rem;
}

@media screen and (min-width: 751px) {
    .problem__item-icon img {
        height: 8.375rem;
    }
}

.problem__need {
    padding-block: 1.875rem;
    background: var(--primary);
}

@media screen and (min-width: 751px) {
    .problem__need {
        padding-block: 3.75rem;
    }
}

.problem__need-text {
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .problem__need-text {
        font-size: 1.75rem;
    }
}

.problem__need-text .large {
    display: inline-block;
    margin-block: 0.5625rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
}

@media screen and (min-width: 751px) {
    .problem__need-text .large {
        margin-block: 1.125rem;
        font-size: 3rem;
    }
}

.problem__need-text .dot {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.4583333333;
    letter-spacing: -0.1em;
    position: relative;
}

@media screen and (min-width: 751px) {
    .problem__need-text .dot {
        font-size: 3rem;
    }
}

.problem__need-text .dot::after {
    content: "";
    position: absolute;
    top: 0.125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.1875rem;
    height: 0.1875rem;
    background: var(--accent-yellow);
    border-radius: 50%;
}

@media screen and (min-width: 751px) {
    .problem__need-text .dot::after {
        top: 0.25rem;
        width: 0.375rem;
        height: 0.375rem;
    }
}

.problem__need-text .line {
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
    background: linear-gradient(180deg, transparent 0%, transparent 75%, var(--accent-yellow) 75%, var(--accent-yellow) 100%);
}

@media screen and (min-width: 751px) {
    .problem__need-text .line {
        font-size: 2.25rem;
    }
}

.problem__bottom {
    padding-top: 3.0625rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .problem__bottom {
        padding-top: 6.125rem;
    }
}

.problem__bottom::after {
    content: "";
    position: absolute;
    bottom: -3.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3.8125rem;
    background: #fff;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

@media screen and (min-width: 751px) {
    .problem__bottom::after {
        bottom: -7.5rem;
        height: 7.625rem;
    }
}

.problem__bottom-deco1 {
    position: absolute;
    bottom: 0;
    left: 1.6875rem;
    width: 3.6875rem;
    height: 4.9375rem;
    rotate: -9deg;
    background: url(../img/problem-deco-1.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .problem__bottom-deco1 {
        left: 3.375rem;
        width: 7.375rem;
        height: 9.875rem;
        rotate: -9deg;
    }
}

.problem__bottom-deco2 {
    position: absolute;
    bottom: 0.875rem;
    right: 1.5625rem;
    width: 4.25rem;
    height: 3.5rem;
    rotate: 7deg;
    background: url(../img/problem-deco-2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .problem__bottom-deco2 {
        bottom: 1.75rem;
        right: 3.125rem;
        width: 8.5rem;
        height: 7rem;
        rotate: 7deg;
    }
}

.problem__bottom-text {
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .problem__bottom-text {
        font-size: 1.75rem;
    }
}

.problem__bottom-text img {
    width: 9.0625rem;
    margin-bottom: 2.1875rem;
}

@media screen and (min-width: 751px) {
    .problem__bottom-text img {
        width: 18.125rem;
        margin-bottom: 4.375rem;
    }
}

.problem__bottom-text span {
    display: inline;
    margin-top: -1.4375rem;
}

@media screen and (min-width: 751px) {
    .problem__bottom-text span {
        margin-top: -2.875rem;
    }
}

.problem__bottom-text-2 {
    margin-top: -1.4375rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .problem__bottom-text-2 {
        margin-top: -2.875rem;
        font-size: 1.75rem;
    }
}

.problem__bottom-text-2 .line {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
    position: relative;
}

@media screen and (min-width: 751px) {
    .problem__bottom-text-2 .line {
        font-size: 1.75rem;
    }
}

.problem__bottom-text-2 .line::after {
    content: "";
    position: absolute;
    bottom: -0.0625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.25rem;
    background: var(--primary);
}

@media screen and (min-width: 751px) {
    .problem__bottom-text-2 .line::after {
        bottom: -0.125rem;
        height: 0.5rem;
    }
}

.problem__bottom-text-3 {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .problem__bottom-text-3 {
        margin-top: 3.75rem;
        font-size: 1.75rem;
    }
}

/* about
===================================== */
.about__top {
    padding-top: 5.6875rem;
    width: 100%;
    height: 55.625rem;
    background: url(../img/about-head-bg2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .about__top {
        padding-top: 11.375rem;
        height: 111.375rem;
    }
}

.about__top-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4375rem;
}

@media screen and (min-width: 751px) {
    .about__top-title {
        gap: 0.875rem;
    }
}

.about__top-title span {
    font-size: 1.8125rem;
    font-weight: bold;
    line-height: 1.4482758621;
}

@media screen and (min-width: 751px) {
    .about__top-title span {
        font-size: 3.625rem;
    }
}

.about__top-title .icon {
    font-size: 1.6875rem;
    font-weight: bold;
    line-height: 1.4444444444;
    padding-right: 2.5rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .about__top-title .icon {
        font-size: 3.375rem;
        padding-right: 5rem;
    }
}

.about__top-title .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.4375rem;
    background: url(../img/about-title-icon.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .about__top-title .icon::after {
        width: 4.5rem;
        height: 4.875rem;
    }
}

.about__top-title .orange {
    color: #ff9c1b;
    font-size: 2.6875rem;
    font-weight: bold;
    line-height: 1.4418604651;
}

@media screen and (min-width: 751px) {
    .about__top-title .orange {
        font-size: 5.375rem;
    }
}

.about__top-container {
    margin-top: 1.875rem;
    margin-inline: auto;
    text-align: center;
    width: 21.5625rem;
    padding: 2.1875rem 0.9375rem 1.625rem;
    border-radius: 10.8125rem;
    background: #fff;
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 751px) {
    .about__top-container {
        margin-top: 3.75rem;
        width: 43.125rem;
        padding: 4.375rem 1.875rem 3.25rem;
        border-radius: 21.6875rem;
    }
}

.about__top-subtitle img {
    width: 7.5625rem;
}

@media screen and (min-width: 751px) {
    .about__top-subtitle img {
        width: 15.125rem;
    }
}

.about__top-logo {
    margin-top: 0.5rem;
}

@media screen and (min-width: 751px) {
    .about__top-logo {
        margin-top: 1rem;
    }
}

.about__top-logo img {
    width: 14.1875rem;
    image-rendering: crisp-edges;
}

@media screen and (min-width: 751px) {
    .about__top-logo img {
        width: 28.375rem;
    }
}

.about__top-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .about__top-text {
        margin-top: 2rem;
        font-size: 1.75rem;
    }
}

.about__top-box {
    margin-top: 1rem;
    width: 19.6875rem;
    height: 6.6875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 0.75rem;
}

@media screen and (min-width: 751px) {
    .about__top-box {
        margin-top: 2rem;
        width: 39.375rem;
        height: 13.375rem;
        border-radius: 1.5rem;
    }
}

.about__top-box-text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .about__top-box-text {
        font-size: 1.75rem;
    }
}

.about__top-box-img {
    margin-top: -2.5rem;
}

@media screen and (min-width: 751px) {
    .about__top-box-img {
        margin-top: -5rem;
    }
}

.about__top-box-img img {
    width: 11.25rem;
}

@media screen and (min-width: 751px) {
    .about__top-box-img img {
        width: 22.5rem;
    }
}

.about__bottom {
    width: 100%;
    height: 102.3125rem;
    background: url(../img/about-list-bg2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .about__bottom {
        height: 202.625rem;
    }
}

.about__bottom-head {
    padding-top: 1.1875rem;
    width: 100%;
    height: 8.8125rem;
    background: url(../img/about-bottom-head-bg.webp) no-repeat center/contain;
    -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
    position: relative;
}

@media screen and (min-width: 751px) {
    .about__bottom-head {
        padding-top: 2.375rem;
        height: 17.625rem;
        -webkit-filter: drop-shadow(0 0.375rem 0.75rem rgba(0, 0, 0, 0.16));
        filter: drop-shadow(0 0.375rem 0.75rem rgba(0, 0, 0, 0.16));
    }
}

.about__bottom-head::before {
    content: "";
    position: absolute;
    top: -0.1875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.25rem;
    background: var(--accent-yellow);
}

@media screen and (min-width: 751px) {
    .about__bottom-head::before {
        top: -0.375rem;
        height: 0.5rem;
    }
}

.about__bottom-head::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 3.625rem;
    background: url(../img/about-arrow.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .about__bottom-head::after {
        bottom: -4rem;
        width: 1rem;
        height: 7.25rem;
    }
}

.about__bottom-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media screen and (min-width: 751px) {
    .about__bottom-title {
        gap: 1.5rem;
    }
}

.about__bottom-title img {
    width: 11.9375rem;
}

@media screen and (min-width: 751px) {
    .about__bottom-title img {
        width: 23.875rem;
    }
}

.about__bottom-title span {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .about__bottom-title span {
        font-size: 2rem;
    }
}

.about__bottom-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

@media screen and (min-width: 751px) {
    .about__bottom-list {
        margin-top: 2.5rem;
        gap: 1.75rem;
    }
}

.about__bottom-item:nth-of-type(2) .about__bottom-item-num {
    position: absolute;
    bottom: 1.875rem;
    left: auto;
    right: 0.375rem;
}

@media screen and (min-width: 751px) {
    .about__bottom-item:nth-of-type(2) .about__bottom-item-num {
        bottom: 3.75rem;
        right: 0.75rem;
    }
}

.about__bottom-item-img {
    margin-inline: auto;
    width: 20.75rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .about__bottom-item-img {
        width: 41.5rem;
    }
}

.about__bottom-item-num {
    color: var(--accent-yellow);
    position: absolute;
    bottom: 2rem;
    left: 0.9375rem;
    font-family: var(--font-num);
    font-size: 3.9375rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 751px) {
    .about__bottom-item-num {
        bottom: 4rem;
        left: 1.875rem;
        font-size: 7.875rem;
        text-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
    }
}

.about__bottom-item-title {
    margin-top: -0.625rem;
    padding-inline: 1.875rem;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.45;
}

@media screen and (min-width: 751px) {
    .about__bottom-item-title {
        margin-top: -1.25rem;
        padding-inline: 3.75rem;
        font-size: 2.5rem;
    }
}

.about__bottom-item-text {
    margin-top: 0.5rem;
    padding-inline: 1.875rem 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .about__bottom-item-text {
        margin-top: 1rem;
        padding-inline: 3.75rem 1rem;
        font-size: 1.5rem;
    }
}

.about__btn {
    text-align: center;
    margin-top: 2rem;
}

@media screen and (min-width: 751px) {
    .about__btn {
        margin-top: 3.75rem;
    }
}

.about__btn2 {
    text-align: center;
    margin-top: 3rem;
}

@media screen and (min-width: 751px) {
    .about__btn2 {
        margin-top: 5.75rem;
    }
}

/* service
===================================== */
.service__top {
    padding-bottom: 1.5rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .service__top {
        padding-bottom: 3rem;
    }
}

.service__title-box {
    margin: -2.3125rem auto 0;
    width: 19.6875rem;
    height: 5.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}

@media screen and (min-width: 751px) {
    .service__title-box {
        margin: -4.625rem auto 0;
        width: 39.375rem;
        height: 10.125rem;
    }
}

.service__title-box::after {
    content: "";
    position: absolute;
    top: 0.125rem;
    left: 0.1875rem;
    width: 100%;
    height: 100%;
    border: 0.0625rem solid var(--primary);
}

@media screen and (min-width: 751px) {
    .service__title-box::after {
        top: 0.25rem;
        left: 0.375rem;
        border: 0.125rem solid var(--primary);
    }
}

.service__title {
    display: flex;
    align-items: flex-end;
    gap: 0.4375rem;
}

@media screen and (min-width: 751px) {
    .service__title {
        gap: 0.875rem;
    }
}

.service__title img {
    width: 11.9375rem;
}

@media screen and (min-width: 751px) {
    .service__title img {
        width: 23.875rem;
    }
}

.service__title span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .service__title span {
        font-size: 2rem;
    }
}

.service__top-fukidashi {
    margin: 1.875rem auto 0;
    padding-top: 0.4375rem;
    width: 21.5625rem;
    height: 7rem;
    display: flex;
    justify-content: center;
    background: url(../img/service-fukidashi.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .service__top-fukidashi {
        margin: 3.75rem auto 0;
        padding-top: 0.875rem;
        width: 43.125rem;
        height: 14rem;
    }
}

.service__top-fukidashi-text {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .service__top-fukidashi-text {
        font-size: 2rem;
    }
}

.service__top-fukidashi-text span {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.4666666667;
}

@media screen and (min-width: 751px) {
    .service__top-fukidashi-text span {
        font-size: 3.75rem;
    }
}

.service__top-logo {
    margin-top: 0.8125rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .service__top-logo {
        margin-top: 1.625rem;
    }
}

.service__top-logo img {
    width: 15.375rem;
}

@media screen and (min-width: 751px) {
    .service__top-logo img {
        width: 30.75rem;
    }
}

.service__top-text {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .service__top-text {
        margin-top: 2rem;
        font-size: 1.5rem;
    }
}

.service__bottom {
    padding-top: 3.5rem;
    width: 100%;
    height: 45.4375rem;
    background: url(../img/service-bottom-bg.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .service__bottom {
        padding-top: 7rem;
        height: 90.875rem;
    }
}

.service__bottom-title {
    padding-left: 0.8125rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

@media screen and (min-width: 751px) {
    .service__bottom-title {
        padding-left: 1.625rem;
        gap: 1.25rem;
    }
}

.service__bottom-title img {
    width: 12.0625rem;
}

@media screen and (min-width: 751px) {
    .service__bottom-title img {
        width: 24.125rem;
    }
}

.service__bottom-title .wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .service__bottom-title .wrap {
        gap: 0.75rem;
        font-size: 1.75rem;
    }
}

.service__bottom-title strong {
    display: inline-block;
    padding-left: 1.0625rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .service__bottom-title strong {
        padding-left: 2.125rem;
        font-size: 1.75rem;
    }
}

.service__bottom-title .large {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4583333333;
}

@media screen and (min-width: 751px) {
    .service__bottom-title .large {
        font-size: 3rem;
    }
}

.service__bottom-list {
    margin-top: 1.875rem;
    margin-left: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .service__bottom-list {
        margin-top: 3.75rem;
        margin-left: 3.75rem;
        gap: 3.75rem;
    }
}

.service__bottom-list::before {
    content: "";
    position: absolute;
    top: -9.6875rem;
    right: 0.9375rem;
    width: 9.0625rem;
    height: 9.6875rem;
    background: url(../img/service-img.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .service__bottom-list::before {
        top: -19.375rem;
        right: 1.875rem;
        width: 18.125rem;
        height: 19.375rem;
    }
}

.service__bottom-item {
    width: 100%;
    padding: 0.625rem 0.75rem 0.625rem 0.625rem;
    background: #fff;
    border-radius: 0.625rem 0 0 0.625rem;
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 751px) {
    .service__bottom-item {
        padding: 1.25rem 1.25rem 1.25rem 1.25rem;
        border-radius: 1.25rem 0 0 1.25rem;
        box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
    }
}

.service__bottom-item-point {
    padding-right: 15.625rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .service__bottom-item-point {
        padding-right: 31.25rem;
    }
}

.service__bottom-item-point::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15.3125rem;
    height: 0.0625rem;
    background: var(--secondary);
}

@media screen and (min-width: 751px) {
    .service__bottom-item-point::after {
        width: 30.625rem;
    }
}

.service__bottom-item-point img {
    width: 4.3125rem;
}

@media screen and (min-width: 751px) {
    .service__bottom-item-point img {
        width: 8.625rem;
    }
}

.service__bottom-item-wrap {
    margin-top: 0.3125rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

@media screen and (min-width: 751px) {
    .service__bottom-item-wrap {
        margin-top: 0.625rem;
        gap: 1.25rem;
    }
}

.service__bottom-item-img {
    width: 5.3125rem;
    padding-left: 0.625rem;
}

@media screen and (min-width: 751px) {
    .service__bottom-item-img {
        width: 10.625rem;
        padding-left: 1.25rem;
    }
}

.service__bottom-item-img img {
    width: 4.6875rem;
}

@media screen and (min-width: 751px) {
    .service__bottom-item-img img {
        width: 9.375rem;
    }
}

.service__bottom-item-text {
    width: calc(100% - 5rem - 0.625rem);
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .service__bottom-item-text {
        width: calc(100% - 10rem - 1.25rem);
        font-size: 1.625rem;
    }
}

/* benefit
===================================== */
.benefit__head {
    position: relative;
}

.benefit__head::after {
    content: "";
    position: absolute;
    bottom: -4.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3.9375rem;
    background: #fff;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

@media screen and (min-width: 751px) {
    .benefit__head::after {
        bottom: -8.5rem;
        height: 7.875rem;
    }
}

.benefit__head-box {
    margin: 1.5rem 0.9375rem 0.375rem;
    padding-top: 2.25rem;
    width: 21.5625rem;
    height: 11rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8125rem;
    background: url(../img/benefit-head-bg.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .benefit__head-box {
        margin: 3rem 1.875rem 0.75rem;
        padding-top: 4.5rem;
        width: 43.125rem;
        height: 22rem;
        gap: 1.625rem;
    }
}

.benefit__head-text {
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .benefit__head-text {
        font-size: 1.5rem;
    }
}

.benefit__head-text span {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.625;
}

@media screen and (min-width: 751px) {
    .benefit__head-text span {
        font-size: 2rem;
    }
}

.benefit__body {
    padding-top: 5.75rem;
    /* padding-bottom: 3.75rem; */
    background: var(--primary);
}

@media screen and (min-width: 751px) {
    .benefit__body {
        padding-top: 11.5rem;
        /* padding-bottom: 7.5rem; */
    }
}

.benefit__body-wrap {
    display: flex;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
    gap: 0.8125rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__body-wrap {
        gap: 1.625rem;
    }
}

.benefit__body-wrap::after {
    content: "";
    position: absolute;
    bottom: -2.8125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.4375rem;
    height: 1.8125rem;
    background: url(../img/benefit-arrow.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .benefit__body-wrap::after {
        bottom: -5.625rem;
        width: 6.875rem;
        height: 3.625rem;
    }
}

.benefit__body-wrap img {
    width: 14.375rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
}

@media screen and (min-width: 751px) {
    .benefit__body-wrap img {
        width: 18.75rem;
        background: rgba(255, 255, 255, 0.8);
        padding: 10px;
    }
}

.benefit__body-wrap2 {
    display: flex;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
    gap: 0.8125rem;
    position: relative;
    margin-top: 3.8125rem;
    margin-inline: 0.9375rem;
}

@media screen and (min-width: 751px) {
    .benefit__body-wrap2 {
        margin-top: 7.625rem;
        margin-inline: 1.875rem;
        gap: 1.625rem;
    }
}

.benefit__body-wrap2::after {
    content: "";
    position: absolute;
    bottom: -2.8125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.4375rem;
    height: 1.8125rem;
    background: url(../img/benefit-arrow.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .benefit__body-wrap2::after {
        bottom: -5.625rem;
        width: 6.875rem;
        height: 3.625rem;
    }
}

.benefit__body-wrap2 img {
    width: 14.375rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
}

@media screen and (min-width: 751px) {
    .benefit__body-wrap2 img {
        width: 18.75rem;
        background: rgba(255, 255, 255, 0.8);
        padding: 10px;
    }
}

.benefit__body-text_box {
    display: flex;
    align-items: end;
}

@media screen and (min-width: 751px) {
    .benefit__body-text_box {
        
    }
}

.benefit__body-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4583333333;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__body-text {
        font-size: 2rem;
    }
}

.benefit__body-text2 {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4583333333;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__body-text2 {
        font-size: 2rem;
    }
}

.benefit__body-text.under_line {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4583333333;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__body-text.under_line {
        font-size: 3rem;
    }
}

.benefit__body-text.under_line {
    display: block;
}

.benefit__body-text.under_line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1875rem;
    background: var(--accent-yellow);
}

@media screen and (min-width: 751px) {
    .benefit__body-text.under_line::after {
        height: 0.375rem;
    }
}

.benefit__body-text span {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .benefit__body-text span {
        font-size: 1.75rem;
    }
}

.benefit__body-result {
    margin-top: 3.8125rem;
    margin-inline: 0.9375rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .benefit__body-result {
        margin-top: 7.625rem;
        margin-inline: 1.875rem;
    }
}

.benefit__body-result-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4583333333;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__body-result-text {
        font-size: 3rem;
    }
}

.benefit__body-result-text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.4375rem;
    height: 3.9375rem;
    background: url(../img/benefit-deco-left.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .benefit__body-result-text::before {
        width: 2.875rem;
        height: 7.875rem;
    }
}

.benefit__body-result-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.4375rem;
    height: 3.9375rem;
    background: url(../img/benefit-deco-right.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .benefit__body-result-text::after {
        width: 2.875rem;
        height: 7.875rem;
    }
}

.benefit__body-result-text .dots {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4583333333;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__body-result-text .dots {
        font-size: 3rem;
    }
}

.benefit__body-result-text .dots::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.1875rem;
    height: 0.1875rem;
    background: var(--accent-yellow);
    border-radius: 50%;
}

@media screen and (min-width: 751px) {
    .benefit__body-result-text .dots::after {
        width: 0.375rem;
        height: 0.375rem;
    }
}

.benefit__bottom {
    padding-block: 1.875rem;
}

@media screen and (min-width: 751px) {
    .benefit__bottom {
        padding-block: 3.75rem;
    }
}

.benefit__bottom-text {
    padding-inline: 0.9375rem 1.875rem;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text {
        padding-inline: 1.875rem 3.75rem;
    }
}

.benefit__bottom-text .left {
    display: flex;
    align-items: flex-end;
    gap: 0.1875rem;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .left {
        gap: 0.375rem;
    }
}

.benefit__bottom-text .left img {
    width: 11.375rem;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .left img {
        width: 22.75rem;
    }
}

.benefit__bottom-text .right {
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0.1875rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .right {
        margin-top: 2rem;
        gap: 0.375rem;
        font-size: 1.75rem;
    }
}

.benefit__bottom-text .right img {
    width: 11.9375rem;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .right img {
        width: 23.875rem;
    }
}

.benefit__bottom-text .center {
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .center {
        margin-top: 2rem;
        font-size: 2rem;
    }
}

.benefit__bottom-text .small {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .small {
        font-size: 1.75rem;
    }
}

.benefit__bottom-text .line {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.45;
    position: relative;
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .line {
        font-size: 2.5rem;
    }
}

.benefit__bottom-text .line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: var(--accent-yellow);
}

@media screen and (min-width: 751px) {
    .benefit__bottom-text .line::after {
        height: 0.25rem;
    }
}

/* price
===================================== */
.price__head {
    margin-inline: auto;
    width: 4.6875rem;
    height: 4.6875rem;
    text-align: center;
    padding-top: 0.4375rem;
    background: var(--accent-red);
    border-radius: 50%;
}

@media screen and (min-width: 751px) {
    .price__head {
        width: 9.375rem;
        height: 9.375rem;
        padding-top: 0.875rem;
    }
}

.price__head span {
    color: #fff;
    font-size: 2.0625rem;
    font-weight: 900;
    line-height: 1.4545454545;
}

@media screen and (min-width: 751px) {
    .price__head span {
        font-size: 4.125rem;
    }
}

.price__body {
    margin-top: 1.25rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .price__body {
        margin-top: 2.5rem;
    }
}

.price__body::before {
    content: "";
    position: absolute;
    top: -3.3125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3.3125rem;
    background: var(--accent-red);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: -1;
}

.benefit .price__body {
    margin-top: 5.25rem;
    background-color: #fff;
    z-index: 1;
}
@media screen and (min-width: 751px) {
    .benefit .price__body {
        margin-top: 10.5rem;
    }
}

.benefit .price__body::before {
    z-index: 1;
}

@media screen and (min-width: 751px) {
    .price__body::before {
        top: -6.625rem;
        height: 6.625rem;
    }
}

.price__body-box {
    margin-top: 0.3125rem;
    padding: 1rem 0.75rem 3.75rem 0.9375rem;
    border: 0.3125rem solid var(--accent-red);
}

@media screen and (min-width: 751px) {
    .price__body-box {
        margin-top: 0.625rem;
        padding: 2rem 1.5rem 7.5rem 1.875rem;
        border: 0.625rem solid var(--accent-red);
    }
}

.price__body-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
}

@media screen and (min-width: 751px) {
    .price__body-title {
        gap: 1.25rem;
    }
}

.price__body-title span {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.375rem;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
}

@media screen and (min-width: 751px) {
    .price__body-title span {
        gap: 0.75rem;
        font-size: 2.25rem;
    }
}

.price__body-title span img {
    width: 11.9375rem;
}

@media screen and (min-width: 751px) {
    .price__body-title span img {
        width: 15.875rem;
    }
}

.price__body-title .small {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .price__body-title .small {
        font-size: 2rem;
    }
}

.price__body-price-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.375rem;
}

@media screen and (min-width: 751px) {
    .price__body-price-wrap {
        gap: 2.75rem;
    }
}

.price__body-price-text {
    padding-top: 3.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

@media screen and (min-width: 751px) {
    .price__body-price-text {
        padding-top: 6.25rem;
        gap: 0.875rem;
    }
}

.price__body-price-text span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4583333333;
    position: relative;
}

@media screen and (min-width: 751px) {
    .price__body-price-text span {
        font-size: 3rem;
    }
}

.price__body-price-text span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: var(--accent-yellow);
}

@media screen and (min-width: 751px) {
    .price__body-price-text span::after {
        height: 0.25rem;
    }
}

.price__body-price {
    color: var(--btn);
    font-size: 2.625rem;
    font-weight: 500;
    line-height: 1.4761904762;
}

@media screen and (min-width: 751px) {
    .price__body-price {
        font-size: 5.25rem;
    }
}

.price__body-price .num {
    color: var(--btn);
    font-family: var(--font-num);
    font-size: 13rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0.125rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 751px) {
    .price__body-price .num {
        font-size: 26rem;
        text-shadow: 0.25rem 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
    }
}

.price__body-text {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4166666667;
}

@media screen and (min-width: 751px) {
    .price__body-text {
        margin-top: 1.25rem;
        font-size: 1.5rem;
    }
}

.price__body-text-lg {
    text-align: center;
    margin-top: 0.625rem;
    font-size: 1.13rem;
    font-weight: bold;
    line-height: 1.4166666667;
}

@media screen and (min-width: 751px) {
    .price__body-text-lg {
        margin-top: 2.5rem;
        font-size: 2rem;
    }
}

.price__body-fee {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
}

@media screen and (min-width: 751px) {
    .price__body-fee {
        margin-top: 2rem;
        font-size: 2.25rem;
    }
}

.price__body-btn {
    margin-top: 1.875rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .price__body-btn {
        margin-top: 3.75rem;
    }
}

/* support
===================================== */
.support__top {
    padding-block: 3.75rem;
    width: 100%;
    height: 36.2rem;
    background: url(../img/support-bg2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .support__top {
        padding-block: 7.5rem;
        height: 71.5rem;
    }
}

.support__top-title {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
    text-shadow: 0.0625rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
    padding-bottom: 0.3125rem;
    position: relative;
}

@media screen and (min-width: 751px) {
    .support__top-title {
        font-size: 2.25rem;
        text-shadow: 0.125rem 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
        padding-bottom: 0.625rem;
    }
}

.support__top-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.0625rem;
    background: #fff;
}

@media screen and (min-width: 751px) {
    .support__top-title::after {
        height: 0.125rem;
    }
}

.support__top-list {
    margin-top: 1.875rem;
    margin-bottom: 2.25rem;
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

@media screen and (min-width: 751px) {
    .support__top-list {
        margin-top: 3.75rem;
        margin-bottom: 4.5rem;
        gap: 1.25rem;
    }
}

.support__top-item {
    width: 7rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .support__top-item {
        width: 14rem;
    }
}

.support__top-item img {
    width: 6.3125rem;
}

@media screen and (min-width: 751px) {
    .support__top-item img {
        width: 12.625rem;
    }
}

.support__top-item p {
    margin-top: 0.4375rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2857142857;
}

@media screen and (min-width: 751px) {
    .support__top-item p {
        margin-top: 0.875rem;
        font-size: 1.75rem;
    }
}

.support__top-apeal-list {
    margin-top: 1.875rem;
    display: flex;
    justify-content: center;
    gap: 0.3125rem;
}

@media screen and (min-width: 751px) {
    .support__top-apeal-list {
        margin-top: 3.75rem;
        gap: 0.625rem;
    }
}

.support__top-apeal {
    width: 5.3125rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .support__top-apeal {
        width: 10.625rem;
    }
}

.support__top-apeal img {
    width: 4.6875rem;
}

@media screen and (min-width: 751px) {
    .support__top-apeal img {
        width: 9.375rem;
    }
}

.support__top-apeal p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .support__top-apeal p {
        margin-top: 1rem;
        font-size: 1.75rem;
    }
}

.support__bottom {
    padding-block: 3.75rem;
}

@media screen and (min-width: 751px) {
    .support__bottom {
        padding-block: 7.5rem;
    }
}

.support__bottom-title {
    margin-inline: auto;
    width: 21.5625rem;
    height: 4.1875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
    background: var(--primary);
    box-shadow: 0.1875rem 0.1875rem 0 var(--secondary);
}

@media screen and (min-width: 751px) {
    .support__bottom-title {
        width: 43.125rem;
        height: 8.375rem;
        font-size: 2.25rem;
        box-shadow: 0.375rem 0.375rem 0 var(--secondary);
    }
}

.support__bottom-container1 {
    margin-top: 2.5rem;
}

@media screen and (min-width: 751px) {
    .support__bottom-container1 {
        margin-top: 5rem;
    }
}

.support__bottom-wrap {
    padding-inline: 0.9375rem;
    display: flex;
}

@media screen and (min-width: 751px) {
    .support__bottom-wrap {
        padding-inline: 1.875rem;
    }
}

.support__bottom-wrap img {
    width: 5.3125rem;
}

@media screen and (min-width: 751px) {
    .support__bottom-wrap img {
        width: 10.625rem;
    }
}

.support__bottom-fukidashi-1 {
    margin-left: -0.5rem;
    padding-top: 0.625rem;
    padding-left: 2.875rem;
    width: 16.75rem;
    height: 4.9375rem;
    background: url(../img/support-fukidashi-1.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .support__bottom-fukidashi-1 {
        margin-left: -1rem;
        padding-top: 1.25rem;
        padding-left: 5.75rem;
        width: 33.5rem;
        height: 9.875rem;
    }
}

.support__bottom-fukidashi-text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .support__bottom-fukidashi-text {
        font-size: 1.75rem;
    }
}

.support__bottom-container2 {
    margin-top: 1.875rem;
}

@media screen and (min-width: 751px) {
    .support__bottom-container2 {
        margin-top: 3.75rem;
    }
}

.support__bottom-fukidashi-2 {
    margin-right: -0.125rem;
    padding-top: 0.625rem;
    padding-left: 2.1875rem;
    width: 16.375rem;
    height: 6.5rem;
    background: url(../img/support-fukidashi-2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .support__bottom-fukidashi-2 {
        margin-right: -0.25rem;
        padding-top: 1.25rem;
        padding-left: 4.375rem;
        width: 32.75rem;
        height: 13rem;
    }
}

/* copy
===================================== */
.copy {
    padding-block: 1.6875rem 2rem;
    background: rgba(115, 209, 192, 0.65);
}

@media screen and (min-width: 751px) {
    .copy {
        padding-block: 3.375rem 4rem;
    }
}

.copy__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}

.copy__text span {
    display: flex;
    align-items: flex-end;
    gap: 0.375rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.9444444444;
}

@media screen and (min-width: 751px) {
    .copy__text span {
        gap: 0.75rem;
        font-size: 2.25rem;
    }
}

.copy__text-shukyaku {
    width: 9.875rem;
}

@media screen and (min-width: 751px) {
    .copy__text-shukyaku {
        width: 19.75rem;
    }
}

.copy__text-kakushinn {
    width: 9.8125rem;
}

@media screen and (min-width: 751px) {
    .copy__text-kakushinn {
        width: 19.625rem;
    }
}

.copy__text-kyouka {
    width: 6.375rem;
}

@media screen and (min-width: 751px) {
    .copy__text-kyouka {
        width: 12.75rem;
    }
}

/* flow
===================================== */
.flow {
    width: 100%;
    height: 58.2rem;
    padding: 2.75rem 0.9375rem;
    background: url(../img/flow-bg2.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .flow {
        height: 116.5rem;
        padding: 3.5rem 1.875rem;
    }
}

.flow__fukidashi {
    width: 100%;
    height: 3.0625rem;
    padding-top: 0.5rem;
    text-align: center;
    background: url(../img/flow-fukidashi.webp) no-repeat center/contain;
    -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16));
}

@media screen and (min-width: 751px) {
    .flow__fukidashi {
        height: 6.125rem;
        padding-top: 1rem;
        -webkit-filter: drop-shadow(0 0.375rem 0.75rem rgba(0, 0, 0, 0.16));
        filter: drop-shadow(0 0.375rem 0.75rem rgba(0, 0, 0, 0.16));
    }
}

.flow__fukidashi-text {
    color: var(--primary);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (min-width: 751px) {
    .flow__fukidashi-text {
        font-size: 2rem;
    }
}

.flow__title {
    margin-top: 1rem;
    text-align: center;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4444444444;
    text-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 751px) {
    .flow__title {
        margin-top: 2rem;
        font-size: 2.25rem;
        text-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
    }
}

.flow__steps {
    margin-top: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

@media screen and (min-width: 751px) {
    .flow__steps {
        margin-top: 3.75rem;
        gap: 6.25rem;
    }
}

.flow__step {
    position: relative;
}

.flow__step:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: -2.6875rem;
    left: 2.8125rem;
    width: 0.4375rem;
    height: 2.1875rem;
    background: url(../img/flow-arrow_black.webp) no-repeat center/contain;
}

@media screen and (min-width: 751px) {
    .flow__step:not(:last-child):before {
        bottom: -5.375rem;
        left: 5.625rem;
        width: 0.875rem;
        height: 4.375rem;
    }
}

.flow__step-box {
    padding: 0.6875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 3.25rem;
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 751px) {
    .flow__step-box {
        padding: 1.375rem;
        gap: 2rem;
        border-radius: 6.5rem;
        box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
    }
}

.flow__step-num {
    width: 5.125rem;
    height: 5.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25;
    background: var(--primary);
    border-radius: 50%;
}

@media screen and (min-width: 751px) {
    .flow__step-num {
        width: 10.25rem;
        height: 10.25rem;
        font-size: 2rem;
    }
}

.flow__step-text {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .flow__step-text {
        font-size: 1.75rem;
    }
}

.flow__step-note {
    position: absolute;
    bottom: -1.875rem;
    left: 3.75rem;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.4166666667;
}

@media screen and (min-width: 751px) {
    .flow__step-note {
        bottom: -3.75rem;
        left: 7.5rem;
        font-size: 1.5rem;
    }
}

.flow__btn {
    margin-top: 1.875rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .flow__btn {
        margin-top: 3.75rem;
    }
}

/* footer
===================================== */
.footer {
    padding-block: 1.875rem;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .footer {
        padding-block: 3.75rem;
    }
}

.footer__logo a {
    display: inline-block;
    width: 11.9375rem;
}

@media screen and (min-width: 751px) {
    .footer__logo a {
        width: 23.875rem;
    }
}

.footer__nav {
    margin-top: 1.875rem;
}

.footer__list {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

@media screen and (min-width: 751px) {
    .footer__list {
        gap: 1.25rem;
    }
}

.footer__item {
    position: relative;
}

.footer__item:not(:last-child)::after {
    content: "|";
    position: absolute;
    top: 50%;
    right: -0.4375rem;
    transform: translateY(-50%);
    font-size: 0.625rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .footer__item:not(:last-child)::after {
        right: -0.875rem;
        font-size: 1.25rem;
    }
}

.footer__item a {
    font-size: 0.625rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .footer__item a {
        font-size: 1.25rem;
    }
}

.footer_text {
    font-size: 0.88rem;
    font-weight: bold;
    line-height: 1.4285714286;
}

@media screen and (min-width: 751px) {
    .footer_text {
        font-size: 1.75rem;
    }
}
