/*------------------------------------------
共通
------------------------------------------*/

h2.line {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    padding: 0 calc(var(--h2-line-width) + var(--h2-line-margin));

    color: #7a4d34;
    font-family: var(--font-mincho);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: 1.8px;
    text-align: center;
}

h2.line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: var(--h2-line-width);
    background: linear-gradient(91deg, #C78A03 -38.07%, #E5C05E -3.17%, #F4DB8C 14.28%, #EFCA84 42.84%, #C78A03 88.85%);
}

h2.line::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 2px;
    width: var(--h2-line-width);
    background: linear-gradient(91deg, #C78A03 -38.07%, #E5C05E -3.17%, #F4DB8C 14.28%, #EFCA84 42.84%, #C78A03 88.85%);
}

@media screen and (max-width: 767px) {
    h2.line {
        padding: 0 40px;
        font-size: 1.6rem;
        line-height: 2rem;
    }

    h2.line::before {
        left: 0;
        width: var(--sp-h2-line-width);
    }

    h2.line::after {
        right: 0;
        width: var(--sp-h2-line-width);
    }
}

h3.underline {
    color: #7a4d34;
    font-family: var(--font-mincho);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
}

h3.underline::after {
    content: "";
    display: block;
    width: 98px;
    height: 2px;
    background: linear-gradient(91deg, #C78A03 -38.07%, #E5C05E -3.17%, #F4DB8C 14.28%, #EFCA84 42.84%, #C78A03 88.85%);
    margin: 30px auto 0;
}

@media screen and (max-width: 767px) {
    h3.underline {
        font-size: 1.6rem;
        text-align: center;
        letter-spacing: unset;
    }

    h3.underline::after {
        width: 4rem;
    }
}

/*------------------------------------------
CTAバナー
------------------------------------------*/

.cta-banner-wrapper > .text,
.cta-banner-wrapper > .button {
    display: none;
}

.cta-banner {
    display: block;
    max-width: 565px;
    margin: 0 auto;
    width: 564.619px;
    height: 284.482px;
    aspect-ratio: 564.62/284.48;
    background: url(../img/front_page/cta_banner.png) no-repeat center / contain;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-banner:hover {
    opacity: .8;
}

.cta-banner .due-date {
    padding-top: 43px;
    color: #7a4d34;
    font-family: var(--font-gothic);
    font-size: 12.773px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.16px;
    letter-spacing: 0.639px;
}

.cta-banner .due-date strong {
    color: #ea6f0b;
    font-family: var(--font-gothic);
    font-size: 21.897px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.16px;
    letter-spacing: -0.219px;
}

.cta-banner .title {
    padding-top: 5px;
    color: #7a4d34;
    font-family: var(--font-gothic);
    font-size: 21.897px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.095px;
}

.cta-banner .campaign {
    margin-top: -15px;
    color: #ea6f0b;
    font-family: var(--font-gothic);
    font-size: 45.717px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.2px;
}

.cta-banner .campaign strong {
    font-size: 61.618px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 1.232px;
}

.cta-banner .campaign .note {
    font-size: 13px;
}

.cta-banner .text {
    margin-top: -5px;
    color: #7a4d34;
    font-family: var(--font-gothic);
    font-size: 10.949px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.547px;
    letter-spacing: 0.876px;
}

.cta-banner .button {
    margin: 0 auto;
    display: flex;
    width: 215.108px;
    height: 43.566px;
    justify-content: center;
    align-items: center;
    border-radius: 70.453px;
    background: #edbf00;
    color: #fff;
    font-family: var(--font-gothic);
    font-size: 14.976px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.749px;
    position: relative;
}

.cta-banner .button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
}

@media (max-width: 1024px) {
    .cta-banner-wrapper {
        width: 100%;
    }

    .cta-banner {
        padding: 1rem;
        width: 100%;
        height: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: url(../img/front_page/cta_banner.png) no-repeat top / contain
    }

    .cta-banner .due-date {
        padding-top: unset;
    }

    .cta-banner .title {
        font-size: unset;
    }

    .cta-banner .campaign {
        margin-top: 0;
        font-size: 1.2rem;
    }

    .cta-banner .campaign strong {
        font-size: 3rem;
    }

    .cta-banner .text,
    .cta-banner .button {
        display: none;
    }

    .cta-banner-wrapper > .text,
    .cta-banner-wrapper > .button {
        display: block;
    }

    .cta-banner-wrapper > .text {
        margin: .3rem auto 1.3rem;
        color: #7a4d34;
        font-family: var(--font-gothic);
        font-size: .7rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1rem;
        letter-spacing: 0.876px;
        text-align: center;
    }

    .cta-banner-wrapper > .button {
        margin: 0 auto;
        display: flex;
        width: 215.108px;
        height: 43.566px;
        justify-content: center;
        align-items: center;
        border-radius: 70.453px;
        background: #edbf00;
        color: #fff;
        font-family: var(--font-gothic);
        font-size: 14.976px;
        font-style: normal;
        font-weight: 700;
        letter-spacing: 0.749px;
        text-decoration: none;
        position: relative;
    }

    .cta-banner-wrapper > .button::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%) rotate(45deg);
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-top: 2px solid #fff;
    }
}

/*------------------------------------------
main-visual
------------------------------------------*/

.main-visual {
    background: url(../img/front_page/main_visual_bg.png) no-repeat top / cover;
}

.main-visual .content-block {
    position: relative;
}

.main-visual h1 {
    margin-bottom: 50px;
}

.main-visual ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-visual ul li {
    max-width: 185px;
}

.main-visual ul li img {
    width: 100%;
}

.main-visual .floating-banner-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 1024px) {
    .main-visual {
        background-position: 64% top;
    }
}

@media (max-width: 835px) {
    .main-visual ul {
        max-width: 540px;
    }
}

@media screen and (max-width: 767px) {
    .main-visual {
        padding-top: 16px;
        background: url(../img/front_page/sp_main_visual_bg.png) no-repeat center / cover;
    }

    .main-visual h1 {
        margin-bottom: 65px;
    }

    .main-visual ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 255px;
        row-gap: 0;
    }

    .main-visual ul li:nth-child(1) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .main-visual ul li:nth-child(2) {
        grid-column: 1 / 2;
        justify-self: center;
    }

    .main-visual ul li:nth-child(3) {
        grid-column: 2 / 3;
        justify-self: center;
    }

    .main-visual ul li img {
        width: 122px;
    }
}

/*------------------------------------------
about
------------------------------------------*/

.about .wrapper {
    max-width: 1054px;
}

.about .text-image {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about .text-image p {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.8px;
}

.about .text-image .image-box {
    max-width: 424px;
}

.about .cta-banner-wrapper {
    margin-bottom: 90px;
}

.about .problem-list {
    margin-bottom: 90px;
}

.about .problem-list,
.about .feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 60px;
}

.about .problem-list .problem-item .image-box,
.about .feature-list .feature-item .image-box {
    max-width: 196px;
    margin: 0 auto;
}

.about .problem-list .problem-item .small-text,
.about .feature-list .feature-item .small-text {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.8px;
    white-space: nowrap;
}

.about .problem-list .problem-item .bold-text,
.about .feature-list .feature-item .bold-text {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 2.4px;
}

.about .problem-arrow {
    max-width: 177px;
    margin: 0 auto 90px;
}

.about .image-list {
    margin: 90px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.about .image-list .image-box {
    max-width: 228px;
}

.about .image-list .check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about .image-list .check-list .check-item {
    padding-left: 60px;
    position: relative;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
}

.about .image-list .check-list .check-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../img/front_page/check_icon.png) no-repeat center / contain;
}

@media (max-width: 1024px) {
    .about .problem-list .problem-item .small-text,
    .about .feature-list .feature-item .small-text {
        white-space: unset;
    }
}

@media screen and (max-width: 767px) {
    .about .text-image {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about .text-image p {
        grid-row: 2;
        font-size: 1rem;
    }

    .about .text-image .image-box {
        grid-row: 1;
        max-width: 240px;
        margin: 0 auto;
    }

    .about .problem-list,
    .about .feature-list {
        grid-template-columns: 1fr;
    }

    .about .problem-list .problem-item .small-text,
    .about .feature-list .feature-item .small-text {
        font-size: .9rem;
    }

    .about .problem-list .problem-item .bold-text,
    .about .feature-list .feature-item .bold-text {
        font-size: 1.4rem;
    }

    .about .image-list {
        margin-top: 0;
        flex-direction: column;
    }

    .about .image-list .image-box {
        max-width: unset;
    }

    .about .image-list .check-list .check-item {
        padding-left: 40px;
        font-size: 1rem;
    }

    .about .image-list .check-list .check-item::before {
        width: 30px;
        height: 30px;
    }
}

/*------------------------------------------
usecase
------------------------------------------*/

.usecase ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.usecase ul li {
    display: grid;
    grid-template-columns: 162px 1fr;
    gap: 30px;
}

.usecase ul li .image-box {
    max-width: 162px;
}

.usecase ul li .image-box img {
    width: 100%;
}

.usecase ul li .image-box p {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
}

.usecase ul li .text-box h4 {
    margin-bottom: 10px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.usecase ul li .text-box p {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.6px;
}

@media screen and (max-width: 767px) {
    .usecase ul {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .usecase ul li {
        grid-template-columns: 1fr;
        gap: .4rem;
    }

    .usecase ul li .image-box {
        margin: 0 auto;
    }

    .usecase ul li .image-box img {
        border-radius: 10px;
    }
}

/*------------------------------------------
cta
------------------------------------------*/

.cta {
    background: url(../img/front_page/cta_bg.png) no-repeat center / cover;
}

.cta .flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

.cta .flex-box .image-box {
    max-width: 552px;
}

.cta .flex-box .image-box img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .cta {
        padding: 2rem 0;
    }

    .cta .flex-box {
        flex-direction: column;
        gap: 2rem;
    }

    .cta .flex-box img {
        width: 90%;
    }
}

/*------------------------------------------
custom-made
------------------------------------------*/

.custom-made .wrapper {
    max-width: 1080px;
}

.custom-made .card-list {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.custom-made .card-list .card {
    padding: 50px 53px;
    background: #fff;
    box-shadow: 0 0 15px 5px rgba(223, 223, 223, 0.60);
}

.custom-made .card-list .card .flex-box {
    display: flex;
    gap: 50px;
}

.custom-made .card-list .card .flex-box .left .image-box {
    max-width: 300px;
    margin: 0 auto;
}

.custom-made .card-list .card .flex-box .left p {
    margin-top: 15px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.85px;
}

.custom-made .card-list .card .flex-box .right .graph-text {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.custom-made .card-list .card .flex-box .right .graph-text .image-box {
    max-width: 176px;
}

.custom-made .card-list .card .flex-box .right .graph-text .text-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.custom-made .card-list .card .flex-box .right .graph-text .text-box h4 {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.3px;
}

.custom-made .card-list .card .flex-box .right .graph-text .text-box .description {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.8px;
}

.custom-made .card-list .card .flex-box .right .graph-text .text-box h5 {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.8px;
}

.custom-made .card-list .card .flex-box .right .graph-text .text-box .request-list .request {
    padding-left: 16px;
    position: relative;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.8px;
}

.custom-made .card-list .card .flex-box .right .graph-text .text-box .request-list .request::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

.custom-made .card-list .card .flex-box .right > .image-box {
    max-width: 624px;
    margin-top: 24px;
}

.custom-made .card-list .card .tag-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.custom-made .card-list .card .tag-list span {
    display: flex;
    height: 34px;
    padding: 11px 23px;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    border: 1px solid #cacaca;
    background: #fff;
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.custom-made .card-list .card .introduction {
    margin-top: 30px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.85px;
}

.custom-made .card-list .card .introduction strong {
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .custom-made .card-list {
        gap: 2rem;
    }

    .custom-made .card-list .card {
        padding: 1.5rem 1rem;
    }

    .custom-made .card-list .card .flex-box {
        flex-direction: column;
        gap: 1rem;
    }

    .custom-made .card-list .card .flex-box .left p {
        margin-top: .1rem;
        font-size: .9rem;
    }

    .custom-made .card-list .card .flex-box .right .graph-text {
        flex-direction: column;
    }

    .custom-made .card-list .card .flex-box .right .graph-text .image-box {
        display: none;
    }

    .custom-made .card-list .card .flex-box .right .graph-text .text-box h4 {
        font-size: 1.4rem;
    }

    .custom-made .card-list .card .tag-list span {
        height: 28px;
        padding: 7px 18px;
        font-size: .8rem;
    }

    .custom-made .card-list .card .introduction {
        font-size: 1rem;
    }

    .custom-made .card-list .card .introduction strong {
        display: block;
    }
}

/*------------------------------------------
service
------------------------------------------*/

.service .wrapper {
    max-width: 980px;
}

.service .description {
    margin-bottom: 60px;
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.6px;
}

.service ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 60px;
}

.service ul li img {
    max-width: 140px;
}

.service ul li p {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

@media screen and (max-width: 767px) {
    .service .description {
        margin-bottom: 2rem;
    }

    .service ul {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: unset;
        row-gap: 1rem;
    }

    .service ul li {
        justify-self: center;
    }

    .service ul li p {
        margin-top: -10px;
        font-size: .9rem;
    }
}

/*------------------------------------------
not-supported
------------------------------------------*/

.not-supported .wrapper {
    max-width: 926px;
}

.not-supported p {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.6px;
}

@media screen and (max-width: 767px) {
    .not-supported p {
        font-size: .8rem;
        line-height: 1.8;
        letter-spacing: 1.2px;
    }
}

/*------------------------------------------
reason
------------------------------------------*/

.reason .wrapper {
    max-width: 1080px;
}

.reason ol {
    margin-bottom: 90px;
    counter-reset: number;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.reason ol li {
    counter-increment: number;
    position: relative;
    display: flex;
    gap: 50px;
}

.reason ol li:nth-child(1):before {
    content: "";
    position: absolute;
    top: -24px;
    left: 34px;
    width: 33px;
    height: 48px;
    background: url(../img/front_page/reason_before1.png) no-repeat center / contain;
}

.reason ol li:nth-child(2):before {
    content: "";
    position: absolute;
    top: -24px;
    left: 34px;
    width: 38px;
    height: 48px;
    background: url(../img/front_page/reason_before2.png) no-repeat center / contain;
}

.reason ol li:nth-child(3):before {
    content: "";
    position: absolute;
    top: -24px;
    left: 34px;
    width: 38px;
    height: 48px;
    background: url(../img/front_page/reason_before3.png) no-repeat center / contain;
}

.reason ol li .image-box {
    flex-shrink: 0;
    max-width: 391px;
}

.reason ol li .text-box h3 {
    margin-bottom: 30px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: 1.5px;
}

.reason ol li .text-box p {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.6px;
}

.reason .voice-list {
    margin-bottom: 90px;
    display: flex;
    justify-content: center;
    gap: 90px;
}

.reason .voice-list .voice {
    display: grid;
    grid-template-columns: 1fr;
    align-content: baseline;
    gap: 20px;
}

.reason .voice-list .voice .image-box {
    max-width: 196px;
    margin: 0 auto;
}

.reason .voice-list .voice .target {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.6px;
}

.reason .voice-list .voice h4 {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 2.4px;
}

.reason .voice-list .voice .text {
    max-width: 266px;
    margin: 0 auto;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.6px;
}

.reason .security-box {
    display: flex;
    justify-content: center;
    gap: 56px;
}

.reason .security-box .image-box {
    max-width: 230px;
    margin-top: 8px;
}

.reason .security-box .text-box .security-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.reason .security-box .text-box .security-list .security-item {
    padding-left: 61.5px;
    position: relative;
}

.reason .security-box .text-box .security-list .security-item::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 43px;
    height: 43px;
    background: url(../img/front_page/check_icon.png) no-repeat center / contain;
}

.reason .security-box .text-box .security-list .security-item h4 {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.reason .security-box .text-box .security-list .security-item p {
    max-width: 730px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.44px;
}

@media screen and (max-width: 767px) {
    .reason .hedding-block {
        margin-bottom: 4rem;
    }

    .reason ol li {
        flex-direction: column;
        gap: 2rem;
    }

    .reason ol li .text-box h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .reason .voice-list {
        flex-direction: column;
    }

    .reason .voice-list .voice .text {
        max-width: unset;
    }

    .reason .voice-list .voice .target {
        font-size: .9rem;
    }

    .reason .security-box {
        flex-direction: column;
    }

    .reason .security-box .image-box {
        margin: 0 auto;
    }

    .reason .security-box .text-box .security-list .security-item {
        padding-left: 40px;
    }

    .reason .security-box .text-box .security-list .security-item::before {
        width: 30px;
        height: 30px;
        top: 2px;
    }

    .reason .security-box .text-box .security-list .security-item h4 {
        margin-bottom: .5rem;
        font-size: 1.3rem;
    }
}

/*------------------------------------------
flow
------------------------------------------*/

.flow ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 122px;
}

.flow ol li {
    display: grid;
    grid-template-columns: 101px 151px 1fr;
    gap: 50px;
}

.flow ol li .step p {
    background: linear-gradient(91deg, #C78A03 -38.07%, #E5C05E -3.17%, #F4DB8C 14.28%, #EFCA84 42.84%, #C78A03 88.85%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-mincho);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 1.073px;
}

.flow ol li .step p strong {
    display: block;
    background: linear-gradient(91deg, #C78A03 -38.07%, #E5C05E -3.17%, #F4DB8C 14.28%, #EFCA84 42.84%, #C78A03 88.85%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-mincho);
    font-size: 77px;
    font-style: normal;
    font-weight: 600;
    line-height: 78px;
    letter-spacing: 0;
}

.flow ol li .image-box {
    position: relative;
}

.flow ol li .image-box::after {
    content: "";
    position: absolute;
    top: calc(100% + 14px);
    left: 8px;
    width: 4px;
    height: 83px;
    background: #d9d9d9;
}

.flow ol li:last-child .image-box::after {
    display: none;
}

.flow ol li .text-box h3 {
    margin-bottom: 4px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.flow ol li .text-box p {
    max-width: 730px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.44px;
}

@media screen and (max-width: 767px) {
    .flow ol {
        gap: 4rem;
    }
    
    .flow ol li {
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 
            "item1 item2"
            "item3 item3";
        gap: 1rem;
        row-gap: 2rem;
    }

    .flow ol li .step {
        grid-area: item1;
    }

    .flow ol li .image-box {
        grid-area: item2;
        width: 100%;
        height: 150px;
        overflow: hidden;
    }

    .flow ol li .text-box {
        grid-area: item3;
    }
    
    .flow ol li .image-box::after {
        display: none;
    }

    .flow ol li .text-box h3 {
        font-size: 1.4rem;
    }
}

/*------------------------------------------
price
------------------------------------------*/

.price {
    background: #f6f5e3;
}

.price .wrapper {
    max-width: 970px;
}

.price h3 {
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 2.4px;
}

.price .description {
    margin-bottom: 60px;
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.8px;
}

.price .note {
    color: #444;
    text-align: right;
    font-family: var(--font-gothic);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
}

.price table {
    border-collapse: collapse;
    border-spacing: 0;
}

.price table tr th,
.price table tr td {
    width: 194px;
    height: 51px;
    border: 1px solid #444;
}

.price table thead tr th {
    background: #ffe781;
}

.price table tbody tr th {
    background: #fff7d5;
}

.price table tr td {
    text-align: center;
    background: #fff;
    letter-spacing: 2px;
}

.price .footnote {
    margin: 14px 0 60px;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    .price h3 {
        font-size: 1.4rem;
    }

    .price .description {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .price .scroll {
        overflow-x: scroll;
    }

    .price table {
        width: 700px;
    }
}

/*------------------------------------------
area
------------------------------------------*/

.area .description {
    margin-bottom: 60px;
    color: #444;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.8px;
}

.area .image-box {
    max-width: 617px;
    margin: 0 auto 60px;
}

.area .cta-button {
    display: flex;
    width: 392px;
    height: 52px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    border-radius: 85px;
    background: #edbf00;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-gothic);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.9px;
    transition: all 0.3s;
    position :relative;
}

.area .cta-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
}

.area .cta-button:hover {
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .area .description {
        font-size: 1rem;
    }

    .area .cta-button {
        width: 100%;
    }

    .area .cta-button::after {
        right: 18px;
    }
}

/*------------------------------------------
faq
------------------------------------------*/

.faq {
    background: #f6f5e3;
}

.faq .wrapper {
    max-width: 923px;
}

.faq .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.faq .faq-list .faq-item {
    padding: 49px 49px 49px 60px;
    background: #fff;
    border: 1px solid #edbf00;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.faq .faq-list .faq-item .question {
    padding-left: 63px;
    padding-right: 30px;
    position: relative;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.2px;
}

.faq .faq-list .faq-item .question::before {
    content: "Q";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #444;
    font-family: var(--font-mincho);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 4px;
}

.faq .faq-list .faq-item .question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(135deg);
    width: 18px;
    height: 18px;
    border-top: 2px solid #444;
    border-right: 2px solid #444;
    transition: all 0.3s;
}

.faq .faq-list .faq-item .answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    padding-left: 63px;
    position: relative;
    color: #444;
    font-family: var(--font-gothic);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.44px;
}

.faq .faq-list .faq-item .answer::before {
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(91deg, #C78A03 -38.07%, #E5C05E -3.17%, #F4DB8C 14.28%, #EFCA84 42.84%, #C78A03 88.85%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-mincho);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.faq .faq-list .faq-item.open .answer {
    max-height: 500px;
    margin-top: 38px;
    opacity: 1;
}

.faq .faq-list .faq-item.open .question::after {
    transform: rotate(-45deg);
}

.faq .faq-toggle {
    width: 200px;
    height: 40px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #edbf00;
    border-radius: 25px;
    background: #fff;
    color: #444;
    cursor: pointer;
    transition: all 0.3s;
}

.faq .faq-toggle:hover {
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .faq .faq-list .faq-item {
        padding: 1rem;
    }

    .faq .faq-list .faq-item .question {
        padding-left: 2.5rem;
        padding-right: 1rem;
        font-size: 1rem;
    }

    .faq .faq-list .faq-item .question::before,
    .faq .faq-list .faq-item .answer::before {
        font-size: 2rem;
    }

    .faq .faq-list .faq-item .question::after {
        width: 12px;
        height: 12px;
        right: -3px;
    }

    .faq .faq-list .faq-item .answer {
        padding-left: 2.5rem;
        font-size: 1rem;
    }
}

/*------------------------------------------
company
------------------------------------------*/

.company .wrapper {
    max-width: 996px;
}

.company .image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.company .image-text .image-box {
    max-width: 496px;
}

.company .image-text ul {
    border-top: 1px solid #dfdfdf;
}

.company .image-text ul li {
    padding: 23px 0;
    display: flex;
    align-items: center;
    gap: 60px;
    border-bottom: 1px solid #dfdfdf;
}

.company .image-text ul li p,
.company .image-text ul li a {
    color: #444;
    font-family: var(--font-gothic);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.7px;
}

.company .image-text ul li .title {
    width: 75px;
}

@media (max-width: 1024px) {
    .company .image-text ul li {
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    .company .image-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company .image-text ul li {
        gap: 1rem;
    }
}

/*------------------------------------------
floating-banner
------------------------------------------*/

.floating-banner {
    width: 178px;
    height: 178px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    background: url(../img/front_page/floating_cta_bg.png) no-repeat center / contain;
    text-align: center;
    text-decoration: none;
}

.floating-banner:hover {
    opacity: .8;
}

.floating-banner.is-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.floating-banner .due-date {
    color: #7a4d34;
    text-shadow:
        2px 2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        -2px -2px 0 #fff;
    font-family: var(--font-gothic);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.677px;
}

.floating-banner .due-date strong {
    color: #ea6f0b;    
    font-family: var(--font-gothic);
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 20.318px;
    letter-spacing: 1.161px;
}

.floating-banner .due-date .orange {
    color: #ea6f0b;
}

.floating-banner .title {
    color: #7a4d34;
    text-shadow:
        2px 2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        -2px -2px 0 #fff;
    font-family: var(--font-gothic);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.677px;
}

.floating-banner .campaign {
    color: #ea6f0b;
    text-shadow:
        2px 2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        -2px -2px 0 #fff;
    font-family: var(--font-gothic);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 1.536px;
}

.floating-banner .campaign strong {
    font-size: 40px;
}

.floating-banner .campaign .note {
    display: block;
    text-shadow: none;
    font-size: 12px;
}

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