@charset "utf-8";

@font-face {
    font-family: "M PLUS 1p";
    src:
        url("../font/MPLUS1-ExtraBold.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "M PLUS 1p";
    src:
        url("../font/MPLUS1-Bold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "M PLUS 1p";
    src:
        url("../font/MPLUS1-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "M PLUS 1p";
    src:
        url("../font/MPLUS1-Medium.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "M PLUS 1p";
    src:
        url("../font/MPLUS1-Regular.ttf.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "M PLUS 1p";
    src:
        url("../font/MPLUS1-Light.ttf") format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: "inter";
    src:
        url("../font/Inter_28pt-Regular.ttf") format("truetype");
    font-weight: 400;
}








/* 文字 */
body {
    color: #0F1419;
    font-family:
        'M PLUS 1p', sans-serif;
    line-height: calc(40/22);
    font-weight: 400;
    overflow-x: hidden;
    width: 100vw;
    padding-top: 100px;
}

/* 画像 */
img {
    width: 100%;
    height: auto;
}

/* リンク */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: 0.7;
    cursor: pointer;

}

/* 画面幅 */
.container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
}

.onlyPC {
    display: block;
}

.onlySP {
    display: none;
}

@media screen and (max-width:920px) {
    body {
        padding-top: 70px;
    }

    .onlyPC {
        display: none;
    }

    .onlySP {
        display: block;
    }
}

.loading {
    width: 100vw;
    height: 120vh;
    top: 0;
    left: 0;
    background: #fff;
    position: fixed;
    z-index: 1000;
}

.loading.loaded {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0;
    visibility: hidden;
}

/* ==========================
ヘッダー
 ========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1280px;
    margin: auto;
    padding-top: 10px;
    width: 92%;
}

.header-logo {
    width: 273px;
    padding-left: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right-contact {
    position: relative;
    color: #fff;
    background: #DBBD8E;
    font-size: 20px;
    padding: 8px 27px 11px 76px;
    border-radius: 38px;
    margin-right: 49px;
}

.header-right-contact::before {
    content: "";
    background: url(../img/mail.png)no-repeat center center/contain;
    position: absolute;
    top: 50%;
    left: 33px;
    transform: translate(0, -50%);
    width: 26px;
    height: 21px;
}

.header-right-gap {
    width: 1px;
    height: 38px;
    background: #815D2B;
}

.header-right-link {
    position: relative;
    color: #707070;
    padding-left: 36px;
    padding-right: 40px;
    margin-left: 45px;
    font-size: 16px;
}

.header-right-link::before {
    position: absolute;
    width: 26px;
    height: 26px;
    top: 2px;
    left: 0;
    content: "";
    background: url(../img/earth.png)no-repeat center center/contain;
}

.header-right-link::after {
    position: absolute;
    width: 26px;
    height: 24px;
    top: 2px;
    right: 0;
    content: "";
    background: url(../img/link.png)no-repeat center center/contain;
}

.header-right-link>span {
    display: block;
    font-size: 14px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}


@media screen and (max-width:920px) {
    .header {
        height: 70px;
    }

    .header-inner {
        height: 70px;
    }

    .header-logo {
        width: 170px;
        padding-left: 0;
    }

    .header-right-contact {
        font-size: 12px;
        padding: 4px 18px 5px 40px;
        border-radius: 20px;
        margin-right: 20px;
    }

    .header-right-contact::before {
        left: 15px;
        width: 16px;
    }


    .header-right-link {
        margin-left: 20px;
        font-size: 12px;
        padding-left: 30px;
        padding-right: 32px;
    }

    .header-right-link::before {
        width: 22px;
        height: 22px;
    }

    .header-right-link::after {
        width: 22px;
        height: 20px;
    }

    .header-right-link>span {
        font-size: 10px;
    }
}

@media screen and (max-width:600px) {
    .header-right-contact {
        display: none;
    }

    .header-right-gap {
        display: none;
    }

    .header-right-link {
        padding-left: 28px;
        margin-left: 0;
        padding-right: 28px;
    }


    .header-right-link {
        font-size: 11px;
    }

    .header-right-link>span {
        font-size: 9px;
    }

}



/* ==========================
メインビジュアル
 ========================== */

.mv-scroll {
    position: absolute;
    right: 4%;
    bottom: 50px;
    transform: rotate(-90deg);
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.mv-scroll::after {
    position: absolute;
    width: 80px;
    height: 1px;
    right: 60px;
    bottom: calc(4% + 12px);
    content: "";
    background: #fff;
}

@media screen and (max-width:600px) {
    .mv-scroll {
        font-size: 12px;
    }

    .mv-scroll::after {
        bottom: calc(4% + 8px);
        right: 40px;
    }
}

.mv {
    position: relative;
    height: 690px;
    width: 100%;
}

.mv::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: url(../img/mfv\ 1.png)no-repeat center center / cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 780px;
}

.mv-inner {
    position: absolute;
    width: 100%;
    top: 9%;
}

h1 {
    font-size: 67px;
    font-weight: 300;
    width: 100%;
    color: #050505;
    font-weight: 400;
    line-height: 1.4;
}

h1>span {
    font-size: 64px;
    font-weight: 400;
    display: block;
    margin-left: 30px;
}

.mv-sub {
    color: #050505;
    font-size: 26px;
    margin-left: 30px;
    font-weight: 300;
    font-family: inter, sans-serif;
    margin-bottom: 39px;
    gap: 1%;
}

.mv-flex {
    display: flex;
    justify-content: space-between;
    max-width: 1005px;
    align-items: center;
}

.mv-flex-box {
    background: rgba(255, 255, 255, 0.7);
    color: #707070;
    max-width: 315px;
    width: 32%;
    aspect-ratio: 1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mv-flex-subttl {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.mv-flex-box h3 {
    font-size: 40px;
    font-weight: 600;
}

.mv-flex-box p {
    font-size: 16px;
    line-height: 1.3;
}

@media screen and (max-width:1000px) {
    .mv-flex-subttl {
        font-size: 18px;
    }

    .mv-flex-box h3 {
        font-size: 38px;
    }

    .mv-flex-box p {
        font-size: 14px;
    }
}

@media screen and (max-width:920px) {

    .mv {
        height: 600px;
    }

    .mv::after {
        filter: brightness(0.9);
        background: url(../img/mfv1\ 1.png)no-repeat right 27% center / cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 600px;
    }

    .mv-inner {
        top: 10%;
    }

    h1 {
        font-size: 37px;
    }

    h1>span {
        font-size: 39px;
        margin-left: 18px;
        margin-bottom: 12px;
        margin-bottom: 3px;
    }

    .mv-sub {
        font-size: 13px;
        margin-left: 18px;
        margin-bottom: 16px;
    }

    .mv-flex {
        gap: 0px 10px;
        width: 350px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mv-flex-box {
        width: 160px;
        height: 160px;
    }

    .mv-flex-subttl {
        font-size: 10px;
        text-align: center;
    }

    .mv-flex-box h3 {
        font-size: 20px;
        text-align: center;
    }

    .mv-flex-box p {
        font-size: 10px;
        text-align: center;
        font-weight: 300;
    }
}


/* ==========================
ポイント
 ========================== */
.point {
    padding-top: 150px;
}

.point-inner {
    display: flex;
    gap: 60px;
}

.point-inner-left {
    width: 45%;
    position: relative;
}

.point-inner-left::after {
    position: absolute;
    content: "";
    right: 0;
    top: -25%;
    width: 50vw;
    height: 600px;
    background: url(../img/point1.png)no-repeat center center/contain;
}

.point-inner-right {
    min-width: 540px;
    width: 55%;
}

.point-catch {
    color: #DBBD8E;
    font-size: 82px;
    font-weight: 600;
    line-height: 90px;
    margin-bottom: 16px;
}

.point-catch-small {
    color: #C1C1C1;
    font-size: 18px;
    font-weight: 400;
}

@media screen and (max-width:920px) {
    .point {
        padding-top: 40px;
    }

    .point-inner {
        gap: 40px;
    }

    .point-inner-left::after {
        top: 0;
        width: 50vw;
        height: 280px;
    }

    .point-inner-right {
        min-width: 0;
        text-align: left;
        min-width: fit-content;
    }

    .point-catch {
        font-size: 50px;
        line-height: 1.1;
    }

    .point-catch-small {
        font-size: 10px;
    }
}



@media screen and (max-width:600px) {
    .point-inner {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }

    .point-inner-left {
        width: 40%;
        height: 100px;
    }

    .point-inner-left::after {
        top: -10px;
        width: 45vw;
        height: 170px;
    }

    .point-inner-right {
        min-width: 0;
        text-align: center;
        width: 100%;
    }

    .point-catch {
        font-size: 48px;
    }
}


.point-inner2 {
    display: flex;
    justify-content: right;
    padding-top: 116px;
    padding-bottom: 78px;
    border-bottom: 1px solid rgba(219, 189, 142, 0.35);

}

.point-inner2-left {
    width: 65%;
    max-width: 760px;
}

.point-inner2-left-img {
    width: 250px;
}

.point-inner2-left-ttl {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 35px;
}

.point-inner2-left-ttl span {
    display: block;
    font-size: 20px;
    color: #C1C1C1;
}

.point-inner2-left-subttl {
    color: #815D2B;
    font-size: 33px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.point-inner2-left p {
    font-size: 22px;
    line-height: calc(40/22);
}

.point-inner2-right {
    width: 35%;
    max-width: 380px;
}

@media screen and (max-width:920px) {
    .point-inner2 {
        padding-bottom: 34px;
    }

    .point-inner2-left {
        width: 100%;
        max-width: max-content;
        padding-top: 10px;
    }

    .point-inner2-left-img {
        width: 170px;
    }

    .point-inner2-left-ttl {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .point-inner2-left-ttl span {
        font-size: 10px;
    }

    .point-inner2-left-subttl {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .point-inner2-left p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .point-inner2-right {
        position: absolute;
        width: 28%;
        max-width: 190px;
        z-index: -1;
    }
}

@media screen and (max-width:600px) {
    .point-inner2 {
        flex-direction: column-reverse;
        padding-top: 30px;
    }

    .point-inner2-left-ttl {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .point-inner2-left-subttl {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .point-inner2-left p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .point-inner2-right {
        position: initial;
        width: 130px;
        margin: auto;
    }
}

.point-inner3 {
    padding-top: 78px;
    margin-bottom: 40px;
}

@media screen and (max-width:920px) {

    .point-inner3 {
        padding-top: 20px;
        margin-bottom: 10px;
    }
}

.point-inner4 {
    padding-top: 100px;
    padding-bottom: 70px;
    background: rgba(219, 189, 142, 0.3);
}

@media screen and (max-width:920px) {

    .point-inner4 {
        padding-top: 35px;
        padding-bottom: 30px;
    }
}

.goal {
    padding-top: 75px;
    padding-bottom: 47px;
    border-bottom: 4px solid rgba(219, 189, 142, 0.7);
    margin-bottom: 140px;
}

.goal-txt {
    margin-bottom: 28px;
    font-size: 28px;
}

.goal-inner {
    display: flex;
    gap: 3%;
}

.goal-logo {
    width: 60%;
}

.goal-right {
    display: flex;
    width: 40%;
    gap: 6%;
}

@media screen and (max-width:920px) {
    .goal {
        margin-bottom: 20px;
        padding-top: 40px;
    }

    .goal-txt {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .goal-logo {
        width: 100%;
        margin-bottom: 6px;
    }
}

@media screen and (max-width:600px) {
    .goal-txt {
        font-size: 16px;
    }

    .goal-inner {
        display: flex;
        flex-direction: column;
    }

    .goal-right {
        width: 80%;
        gap: 6%;
        margin: auto;
    }
}

/* ==========================
システム
 ========================== */
.system {
    overflow-x: hidden;
}

.system-ttl {
    padding-top: 137px;
    position: relative;
}

.system-ttl::after {
    position: absolute;
    content: "";
    background: url(../img/system.png)no-repeat center center /contain;
    width: 30%;
    max-width: 379px;
    height: 795px;
    right: 0;
    top: 0;
    z-index: -1;
}

.system-logo {
    width: 305px;
}

.system-ttl>h2 {
    font-size: 42px;
    color: #815D2B;
}

.system-bg {
    font-size: 179px;
    color: rgba(219, 189, 142, 0.14);
    font-weight: 900;
    line-height: 1;
    position: relative;
    padding-bottom: 74px;
    border-bottom: 1px solid #C7C7C7;
    width: 90%;
}

@media screen and (max-width:920px) {
    .system-ttl {
        padding-top: 70px;
    }

    .system-ttl::after {
        width: 35%;
        height: 60vw;
        top: 0px;
    }

    .system-logo {
        width: 170px;
    }

    .system-ttl>h2 {
        font-size: 26px;
    }

    .system-bg {
        font-size: 90px;
        padding-bottom: 36px;
    }
}

@media screen and (max-width:600px) {
    .system-ttl::after {
        width: 133px;
        height: 278px;
        left: 73%;
    }

    .system-ttl>h2 {
        font-size: 24px;
    }

    .system-bg {
        font-size: 80px;
        width: 100%;
    }
}

.system1 {
    padding-top: 88px;
}

.system1-ttl {
    display: flex;
    margin-bottom: 38px;
}

.system1-ttl-num {
    color: #DBBD8E;
    font-size: 141px;
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-right: 20px;
    font-family: din-condensed, sans-serif;
}

.system1-ttl-num>span {
    font-size: 20px;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 100;
    padding-left: 4px;
}

.system1-ttl-txt {
    font-size: 34px;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.system1-ttl-txt>span {
    font-size: 16px;
    color: #C1C1C1;
    opacity: 0.6;
    padding-top: 10px;
}

.system1-box {
    display: flex;
    gap: 30px;
    padding: 50px 0 41px;
    position: relative;
    justify-content: space-between;
}

.system1-box::before {
    position: absolute;
    background: rgba(219, 189, 142, 0.3);
    width: 100vw;
    height: 100%;
    top: 0;
    right: 120px;
    content: "";
    border-radius: 14px;
    z-index: -1;
}

.system1-box h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.system1-box>ul,
.system1-box>ul>p {
    font-size: 20px;
}

.system1-box-txt {
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
    padding-top: 12px;
    font-size: 20px;
}

.system1-box-txt::before {
    content: "・";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 12px;
    left: 0;
}

.system1-box-right {
    width: 536px;
}


@media screen and (max-width:920px) {
    .system1 {
        padding-top: 40px;
    }

    .system1-ttl {
        margin-bottom: 20px;
    }

    .system1-ttl-num {
        font-size: 66px;
    }

    .system1-ttl-num>span {
        font-size: 12px;
    }

    .system1-ttl-txt {
        font-size: 24px;
    }

    .system1-ttl-txt>span {
        font-size: 10px;
        padding-top: 6px;
    }

    .system1-box {
        flex-direction: column;
        gap: 20px;
        padding: 40px 0 30px;
    }

    .system1-box::before {
        right: 90px;
        height: 70%;
    }

    .system1-box h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .system1-box ul,
    .system1-box ul>p {
        font-size: 16px;
    }

    .system1-box-left {
        margin-right: 110px;
    }

    .system1-box-txt {
        padding-left: 20px;
        padding-top: 6px;
        font-size: 14px;
        margin-right: 40px;
    }

    .system1-box-right {
        max-width: 100%;
        margin: auto;
    }
}



@media screen and (max-width:600px) {

    .system1-ttl-num {
        font-size: 44px;
        margin-right: 14px;
    }

    .system1-ttl-num>span {
        font-size: 10px;
    }

    .system1-ttl-txt {
        font-size: 18px;
    }

    .system1-ttl-txt>span {
        font-size: 8px;
        padding-top: 6px;
    }

    .system1-box {
        padding: 24px 0 30px;
    }

    .system1-box::before {
        right: 34px;
        top: 0;
    }

    .system1-box h4 {
        font-size: 16px;
    }

    .system1-box ul,
    .system1-box ul>p {
        font-size: 14px;
    }

    .system1-box-left {
        margin-right: 50px;
    }

    .system1-box-left .onlyPC {
        display: block;
    }

    .system1-box-txt::before {
        content: "・";
        position: absolute;
        width: 10px;
        height: 10px;
        top: 12px;
        left: 0;
    }

    .system1-box-right {
        width: 536px;
    }
}







.system2 {
    padding-top: 88px;
    overflow-x: hidden;
}

.system2-ttl {
    display: flex;
    margin-bottom: 38px;
}

.system2-ttl-num {
    color: #DBBD8E;
    font-size: 141px;
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-right: 20px;
    font-family: din-condensed, sans-serif;
}

.system2-ttl-num>span {
    font-size: 20px;
    font-weight: 100;
    padding-left: 4px;
    font-family:
        'M PLUS 1p', sans-serif;
}

.system2-ttl-txt {
    font-size: 34px;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.system2-ttl-txt>span {
    font-size: 16px;
    color: #C1C1C1;
    opacity: 0.6;
    padding-top: 10px;
}

.system2-inner {
    display: flex;
    gap: 6%;
}

.system2-box-right-outer {
    flex: 1;
}

.system2-box-right {
    padding: 50px 0 41px;
    position: relative;
    justify-content: space-between;
}

.system2-box-right::before {
    position: absolute;
    background: rgba(219, 189, 142, 0.3);
    width: 100vw;
    height: 100%;
    top: 0;
    left: -434px;
    content: "";
    border-radius: 14px;
    z-index: -1;
}

.system2-box-txt {
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
    padding-top: 12px;
    font-size: 20px;
}

.system2-box-txt::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    left: 0;
    background: #DBBD8E;
    border-radius: 100%;
}

.system2-box-right-cloud {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    line-height: 1.6;
    padding: 39px 0 0;
    font-size: 16px;
    border-top: 1px solid #DBBD8E;
    margin-top: 37px;
}

.system2-box-right-cloud h5 {
    color: #DBBD8E;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.system2-box-left {
    max-width: 536px;
    padding-top: 100px;
    width: 45%;
}


@media screen and (max-width:1100px) {
    .system2-ttl {
        margin-bottom: 0;
        margin-left: 94px;
        align-items: center;
    }

    .system2-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }

    .system2-box-right {
        padding: 20px 0 20px;
        margin-top: 20px;
        padding-left: 30px;
        margin-left: 90px;
    }

    .system2-box-right::before {
        height: 130%;
        left: 0px;
    }

    .system2-box-txt {
        padding-left: 26px;
    }

    .system2-box-txt::before {
        width: 10px;
        height: 10px;
        top: 26px;
    }

    .system2-box-right-cloud {
        gap: 14px;
        padding: 20px 0 0;
        margin-top: 20px;
    }

    .system2-box-left {
        padding-top: 10px;
        width: 100%;
    }
}

@media screen and (max-width:920px) {
    .system2 {
        padding-top: 40px;
    }

    .system2-ttl {
        display: flex;
    }

    .system2-ttl-num {
        font-size: 66px;
    }

    .system2-ttl-num>span {
        font-size: 12px;
    }

    .system2-ttl-txt {
        font-size: 24px;
    }

    .system2-ttl-txt>span {
        font-size: 10px;
        padding-top: 6px;
    }

    .system2-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }

    .system2-box-right {
        padding: 20px 0 20px;
        margin-top: 20px;
        padding-left: 30px;
        margin-left: 90px;
    }

    .system2-box-txt {
        padding-top: 12px;
        font-size: 16px;
    }

    .system2-box-txt::before {
        top: 20px;
        left: 0;
    }

    .system2-box-right-cloud {
        font-size: 14px;
    }

    .system2-box-right-cloud h5 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .system2-box-left {
        max-width: 536px;
    }
}


@media screen and (max-width:600px) {
    .system2-ttl {
        margin-bottom: 0;
        margin-left: 34px;
    }

    .system2-ttl-num {
        font-size: 44px;
        margin-right: 14px;
    }

    .system2-ttl-num>span {
        font-size: 10px;
    }

    .system2-ttl-txt {
        font-size: 18px;
    }

    .system2-ttl-txt>span {
        font-size: 8px;
        padding-top: 4px;
    }

    .system2-box-right {
        padding: 14px 0 20px;
        padding-left: 24px;
        margin-left: 30px;
    }

    .system2-box-right::before {
        position: absolute;
        background: rgba(219, 189, 142, 0.3);
        width: 100vw;
        height: 130%;
        top: 0;
        left: 0px;
        content: "";
        border-radius: 14px;
        z-index: -1;
    }


    .system2-box-txt {
        padding-left: 20px;
        font-size: 14px;
    }

    .system2-box-txt::before {
        width: 10px;
        height: 10px;
    }

    .system2-box-right-cloud {
        gap: 14px;
        padding: 20px 0 0;
        font-size: 12px;
        margin-top: 20px;
    }

    .system2-box-right-cloud h5 {
        font-size: 14px;
    }

    .system2-box-left {
        padding-top: 10px;
        width: 100%;
    }
}





.system3 {
    padding-top: 88px;
    overflow-x: hidden;
    margin-bottom: 80px;
}

.system3-ttl {
    display: flex;
    margin-bottom: 38px;
    align-items: center;
}

.system3-ttl-num {
    color: #DBBD8E;
    font-size: 141px;
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-right: 20px;
    font-family:
        'din-condensed', sans-serif;
}

.system3-ttl-num>span {
    font-size: 20px;
    padding-left: 4px;
    font-weight: 100;
    font-family:
        'M PLUS 1p', sans-serif;
}

.system3-ttl-txt {
    font-size: 34px;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.system3-ttl-txt>span {
    font-size: 16px;
    color: #C1C1C1;
    opacity: 0.6;
    padding-top: 10px;
}

.system3-box {
    display: flex;
    gap: 30px;
    padding: 50px 0 41px;
    justify-content: space-between;
    align-items: end;
    padding: 50px 0 41px;
}

.system3-box {
    position: relative;
}

.system3-box::before {
    position: absolute;
    background: rgba(219, 189, 142, 0.3);
    width: 100vw;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    content: "";
    border-radius: 14px;
    z-index: -1;
}

.system3-box-left {
    width: 49%;
}

.system3-box>ul,
.system3-box>ul>p {
    font-size: 20px;
}

.system3-box-txt {
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
    padding-top: 12px;
    font-size: 20px;
}

.system3-box-txt::before {
    content: "・";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 12px;
    left: 0;
}

.system3-box-right {
    max-width: 536px;
    position: absolute;
    right: 4%;
    width: 45%;
}

@media screen and (max-width:920px) {
    .system3 {
        padding-top: 40px;
        margin-bottom: 40px;
    }

    .system3-ttl {
        margin-bottom: 20px;
    }

    .system3-ttl-num {
        font-size: 66px;
    }

    .system3-ttl-num>span {
        font-size: 12px;
    }

    .system3-ttl-txt {
        font-size: 24px;
    }

    .system3-ttl-txt>span {
        font-size: 10px;
        padding-top: 6px;
    }

    .system3-box {
        flex-direction: column;
        padding: 20px 0 30px;
        gap: 0;
    }


    .system3-box::before {
        right: 90px;
        height: 60%;
        top: 0;
        transform: translate(0, 0);
    }

    .system3-box-left {
        width: 100%;
        padding-right: 114px;
        margin-bottom: 30px;
    }


    .system3-box-right {
        position: inherit;
        right: 0%;
        width: 100%;
    }
}


@media screen and (max-width:600px) {
    .system3-ttl-num {
        font-size: 44px;
        margin-right: 14px;
    }

    .system3-ttl-num>span {
        font-size: 10px;
    }

    .system3-ttl-txt {
        font-size: 18px;
    }

    .system3-ttl-txt>span {
        font-size: 8px;
        padding-top: 4px;
    }

    .system3-box {
        padding: 14px 0 30px;
    }

    .system3-box::before {
        right: 30px;
    }

    .system3-box-left {
        padding-right: 50px;
        margin-bottom: 30px;
    }

    .system3-box-right {
        max-width: 536px;
    }
}




/* ==========================
ソリューション
 ========================== */

.solution {
    border-bottom: 1px solid #DBBD8E;
}

.solution-ttl {
    padding-top: 137px;
    position: relative;
}

.solution-ttl::after {
    position: absolute;
    content: "";
    background: url(../img/solution.png)no-repeat center center /contain;
    width: 518px;
    height: 375px;
    left: 500px;
    top: -30px;
    z-index: -1;
}

.solution-logo {
    width: 305px;
}

.solution-ttl>h2 {
    font-size: 42px;
    color: #815D2B;
    margin-bottom: 20px;
}

.solution-bg {
    font-size: 179px;
    color: rgba(219, 189, 142, 0.14);
    font-weight: 900;
    line-height: 1;
    position: relative;
    padding-bottom: 74px;
}

.solution-subttl {
    font-size: 36px;
    margin-bottom: 53px;
}

.solution-subttl>span {
    color: rgba(193, 193, 193, 0.7);
    font-size: 20px;
    display: block;
}

.solution-box-wrapper {
    position: relative;
    margin-bottom: 210px;
}

.solution-box-wrapper::after {
    position: absolute;
    top: 200px;
    left: 720px;
    content: "";
    background: url(../img/solution2.png)no-repeat center center /contain;
    width: 40%;
    height: 601px;
}

.solution-box-wrapper::before {
    position: absolute;
    bottom: -145px;
    left: 40%;
    transform: translate(-50%, 0);
    content: "";
    background: url(../img/solution3.png)no-repeat center center /contain;
    width: 110px;
    height: 55px;
}

.solution-box {
    color: #fff;
    background: #DBBD8E;
    font-size: 24px;
    padding: 42px 0 37px 51px;
    border-radius: 25px;
    margin-bottom: 43px;
    width: 80%;
    line-height: 1.5;
}

.solution-ttl2 {
    display: flex;
    font-size: 46px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.solution-ttl2>div {
    width: 331px;
    padding-top: 10px;
    padding-right: 10px;

}

.solution-bg2 {
    font-size: 114px;
    color: rgba(219, 189, 142, 0.14);
    font-weight: 900;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 83px;
    text-align: center;

}

@media screen and (max-width:1100px) {

    .solution-bg {
        font-size: 160px;
    }

    .solution-box {
        padding: 42px 40px 37px 40px;
        width: 100%;
        font-size: 22px;
    }

    .solution-ttl::after {
        right: 3%;
        left: auto;
    }

    .solution-box-wrapper::after {
        top: auto;
        bottom: -350px;
        left: auto;
        right: 0;
        width: 27%;
    }

    .solution-box-wrapper::before {
        left: 48%;
    }

    .solution-ttl2 {
        font-size: 40px;
    }

    .solution-bg2 {
        font-size: 90px;
    }
}

@media screen and (max-width:920px) {
    .solution-ttl {
        padding-top: 60px;
    }

    .solution-ttl::after {
        width: 50%;
        height: 230px;
        top: -28px;
        left: 230px;
    }

    .solution-logo {
        width: 170px;
    }

    .solution-ttl>h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .solution-bg {
        font-size: 90px;
        padding-bottom: 36px;
        width: 100%;
    }

    .solution-subttl {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .solution-subttl>span {
        font-size: 10px;
    }

    .solution-box-wrapper {
        margin-bottom: 120px;
    }

    .solution-box-wrapper::after {
        bottom: -180px;
        width: 22%;
        height: 320px;
    }

    .solution-box-wrapper::before {
        bottom: -70px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 55px;
        height: 26px;
    }

    .solution-box {
        font-size: 16px;
        padding: 21px 25px 18px 25px;
        border-radius: 13px;
        margin-bottom: 14px;
        width: 90%;
    }

    .solution-ttl2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.5;
    }

    .solution-ttl2>div {
        width: 200px;
    }

    .solution-bg2 {
        font-size: 55px;
        margin-top: 18px;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media screen and (max-width:600px) {
    .solution-ttl {
        padding-top: 49px;
    }

    .solution-ttl::after {
        width: 40%;
        height: 138px;
        top: 0px;
        left: 200px;
    }


    .solution-ttl>h2 {
        font-size: 24px;
    }

    .solution-bg {
        font-size: 60px;
    }

    .solution-subttl {
        font-size: 18px;
    }

    .solution-box-wrapper::after {
        top: auto;
        bottom: -150px;
        left: auto;
        right: 0;
        width: 26%;
        height: 170px;
    }

    .solution-box {
        font-size: 14px;
        width: 100%;
    }

    .solution-ttl2 {
        font-size: 18px;
    }

    .solution-ttl2>div {
        width: 160px;
        padding-top: 10px;
        padding-right: 10px;
    }

    .solution-bg2 {
        font-size: 40px;
    }
}

/* ==========================
フロー
 ========================== */
.flow {
    overflow-x: hidden;
    padding-bottom: 136px;
    border-bottom: 1px solid #DBBD8E;
}

.flow-ttl {
    position: relative;
    margin-left: auto;
    text-align: right;
    padding-top: 180px;
    margin-top: 200px;
}

.flow-ttl::after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 50%;
    height: 500px;
    left: -20%;
    bottom: -20%;
    background: url(../img/flow.png)no-repeat center center/contain;
}

.flow-ttl>h2 {
    font-size: 36px;
}

.flow-ttl>h2>span {
    font-size: 20px;
    color: rgba(193, 193, 193, 0.6);
    display: block;
}

.flow-bg {
    font-size: 179px;
    color: rgba(219, 189, 142, 0.14);
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 90%;
}

.flow-inner {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}

.flow-arrow {
    width: 25px;
    margin-top: 90px;
}


.flow-circle {
    background: rgb(219, 189, 142);
    width: 224px;
    height: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 100%;
    color: #fff;
    font-size: 26px;
}

.flow-circle span {
    font-size: 16px;
    font-weight: 300;
}

.flow-inner p {
    font-size: 18px;
    margin-top: 37px;
    text-align: center;
    margin-bottom: 36px;
}

.flow-span {
    position: relative;
    height: 63px;
    width: calc(100% - 105px);
    background: rgba(219, 189, 142, 0.424);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    border-radius: 37px 0 0 37px;

}

.flow-span::after {
    position: absolute;
    top: 0;
    right: -105px;
    background: url(../img/flow3.png)no-repeat center center /contain;
    content: "";
    width: 105px;
    height: 63px;
}

@media screen and (max-width:1180px) {
    .flow-inner {
        gap: 2px;
    }

    .flow-circle {
        width: 200px;
        height: 200px;
    }

}

@media screen and (max-width:920px) {
    .flow {
        padding-bottom: 70px;
        border-bottom: 1px solid #DBBD8E;
        position: relative;
    }

    .flow-ttl {
        margin-top: 100px;
        padding-top: 90px;
    }

    .flow-ttl::after {
        left: -60px;
        top: -50%;
        height: 250px;
    }

    .flow-ttl>h2 {
        font-size: 30px;
    }

    .flow-ttl>h2>span {
        font-size: 10px;
    }

    .flow-bg {
        font-size: 90px;
    }

    .flow-inner {
        gap: 0px;
    }

    .flow-list {
        width: 22%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        margin-bottom: 30px;
    }

    .flow-arrow {
        width: 18px;
        margin: 0;
        margin: 50px 0 auto;
    }

    .flow-circle {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .flow-circle span {
        font-size: 14px;
    }

    .flow-inner p {
        font-size: 14px;
        text-align: left;
        margin: 0;
    }

    .flow-span {
        font-size: 18px;
        height: 40px;
        width: calc(100% - 50px);
    }

    .flow-span::after {
        right: -50px;
        height: 40px;
    }
}

@media screen and (max-width:600px) {
    .flow-ttl {
        margin-top: 80px;
        padding-top: 74px;
    }

    .flow-ttl::after {
        left: auto;
        right: 270px;
        top: -60%;
    }

    .flow-ttl>h2 {
        font-size: 24px;
    }

    .flow-ttl>h2>span {
        font-size: 10px;
    }

    .flow-bg {
        font-size: 70px;
    }

    .flow-inner {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .flow-list {
        flex-direction: row;
        margin-bottom: 0;
        gap: 14px;
        width: calc(100% - 54px);
    }

    .flow-arrow {
        width: 25px;
        height: 20px;
        transform: rotate(90deg)translateY(-45vw);
        margin: auto 0;
    }

    .flow-circle {
        margin: 0;
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
        font-size: 16px;
    }

    .flow-circle span {
        font-size: 12px;
    }

    .flow-inner p {
        margin: auto;
    }

    .flow-span {
        border-radius: 37px 37px 0 0;
        text-combine-upright: all;
        height: 450px;
        width: 40px;
        position: absolute;
        flex-direction: column;
        top: 300px;
        right: 4%;
        font-size: 16px;
        text-align: center;
        padding: 10px;
    }

    .flow-span span {
        transform: rotate(90deg);
    }

    .flow-span::after {
        height: 40px;
        top: 450px;
        transform: rotate(90deg);
        right: -32px;
    }
}

/* ==========================
導入企業
 ========================== */

.results {
    padding-top: 120px;
    padding-bottom: 165px;
    border-bottom: 1px solid #DBBD8E;
    position: relative;
    overflow-x: hidden;
}

.results::after {
    position: absolute;
    right: 0;
    width: 238px;
    height: 678px;
    content: "";
    top: 0;
    background: url(../img/results.png) no-repeat center center/contain;
}

.results-bg {
    color: rgba(219, 189, 142, 0.14);
    font-size: 179px;
    font-weight: 900;
    margin-bottom: 70px;
    line-height: 1;
}

.results-ttl {
    margin-bottom: 90px;
}

.results-ttl h2 {
    font-size: 36px;
}

.results-ttl h2>span {
    font-size: 20px;
    color: rgba(193, 193, 193, 0.6);
    display: block;
}

.results-list {
    position: relative;
    padding-left: 45px;
    line-height: 1.3;
    font-size: 28px;
}

.results-list::before {
    content: "";
    background: #DBBD8E;
    width: 31px;
    height: 31px;
    border-radius: 100%;
    position: absolute;
    top: 4px;
    left: 0;

}

@media screen and (max-width:1100px) {
    .results-bg {
        font-size: 150px;
    }
}

@media screen and (max-width:920px) {
    .results {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .results::after {
        width: 158px;
        height: 410px;
    }

    .results-bg {
        font-size: 90px;
        margin-bottom: 20px;
    }

    .results-ttl {
        margin-bottom: 40px;
    }

    .results-ttl h2 {
        font-size: 30px;
    }

    .results-ttl h2>span {
        font-size: 10px;
    }

    .results-list {
        padding-left: 35px;
        font-size: 16px;
    }

    .results-list::before {
        width: 18px;
        height: 18px;
        top: 2px;
        left: 0;
    }
}

@media screen and (max-width:600px) {
    .results::after {
        width: 100px;
        height: 270px;
    }

    .results-bg {
        font-size: 60px;
    }

    .results-ttl h2 {
        font-size: 24px;
    }

}

/* ==========================
お問い合わせ
 ========================== */

.inquiry {
    padding-top: 90px;
    padding-bottom: 25px;
    text-align: center;
}

.inquiry-bg {
    color: rgba(219, 189, 142, 0.14);
    font-size: 179px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1;
}

.inquiry-ttl {
    margin-bottom: 70px;
}

.inquiry-ttl h2 {
    font-size: 36px;
}

.inquiry-ttl h2>span {
    font-size: 20px;
    color: rgba(193, 193, 193, 0.6);
    display: block;
}

.inquiry-btn {
    background: #DBBD8E;
    border: none;
    width: 522px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 26px;
    color: #fff;
    border-radius: 38px;
    margin: auto;
    cursor: pointer;
    margin-bottom: 27px;
}

.page-top {
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    color: #DBBD8E;
    font-size: 18px;
    margin-left: auto;
    width: fit-content;
}

.page-top-img {
    width: 32px;
    height: 16px;
}

@media screen and (max-width:920px) {
    .inquiry {
        padding-top: 45px;
        padding-bottom: 20px;
    }

    .inquiry-bg {
        font-size: 90px;
        margin-bottom: 16px;
    }

    .inquiry-ttl {
        margin-bottom: 35px;
    }

    .inquiry-ttl h2 {
        font-size: 30px;
    }

    .inquiry-ttl h2>span {
        font-size: 10px;
    }

    .inquiry-btn {
        width: 400px;
        height: 60px;
        font-size: 20px;
        color: #fff;
    }

    .page-top {
        font-size: 12px;
    }

    .page-top-img {
        width: 30px;
        height: 14px;
    }
}

@media screen and (max-width:600px) {
    .inquiry-bg {
        font-size: 60px;
    }

    .inquiry-ttl h2 {
        font-size: 24px;
    }

    .inquiry-btn {
        width: 300px;
        height: 50px;
        font-size: 16px;
        color: #fff;
    }

}



/* ==========================
フッター
 ========================== */
footer {
    background: rgba(219, 189, 142, 0.06);

}

.footer-inner {
    border-top: 29px solid rgba(219, 189, 142, 0.16);
    border-bottom: 1px solid rgb(219, 189, 142);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    padding-top: 84px;
    width: 92%;
    margin: auto;
    padding-bottom: 90px;
}

.footer-copy {
    background: rgba(219, 189, 142, 0.06);
}

.footer-logo {
    width: 280px;
}

.footer-left h2 {
    font-size: 36px;
}

.footer-subttl {
    font-size: 18px;
    color: #DBBD8E;
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer-subttl-ber {
    margin: 0 22px;
    display: inline-block;
    height: 22px;
    width: 1px;
    background: #707070;
}

.footer-right {
    font-size: 18px;
    display: flex;
}

.footer-right li {
    padding-right: 70px;
    position: relative;
    padding-left: 28px;
}

.footer-right li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #DBBD8E;
}

.footer-link {
    position: relative;
}

.footer-link::before {
    position: absolute;
    content: "";
    top: 2px;
    right: 30px;
    width: 28px;
    height: 27px;
    background: url(../img/link.png)no-repeat center center/contain;

}

.footer-copy-outer {
    max-width: 1280px;
    margin: auto;
    width: 92%;
}

.footer-copy {
    font-size: 14px;
    padding: 22px 0;
    display: flex;
    gap: 20px;
    color: #DBBD8E;
}

@media screen and (max-width:1100px) {

    .footer-right {
        font-size: 14px;
    }

    .footer-right li {
        padding-right: 40px;
    }

    .footer-right li::after {
        top: 7px;
    }

    .footer-link::before {
        top: 4px;
        right: 12px;
        width: 20px;
        height: 18px;
    }
}

@media screen and (max-width:920px) {
    .footer-inner {
        border-top: 14px solid rgba(219, 189, 142, 0.16);
    }

    .footer-flex {
        padding-top: 42px;
        padding-bottom: 45px;
    }


    .footer-logo {
        width: 170px;
    }

    .footer-left h2 {
        font-size: 24px;
    }

    .footer-subttl {
        font-size: 10px;
    }

    .footer-subttl-ber {
        margin: 0 10px;
        height: 10px;
    }

    .footer-right {
        font-size: 12px;
    }

    .footer-right li {
        padding: 2px 26px 2px 15px;
        position: relative;
    }

    .footer-right li::after {
        top: 7px;
        width: 10px;
        height: 10px;
    }

    .footer-link::before {
        top: 2px;
        right: 0px;
        width: 20px;
        height: 18px;
    }

    .footer-copy {
        font-size: 12px;
        padding: 12px 0;
    }
}

@media screen and (max-width:600px) {
    .footer-subttl {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-left h2 {
        font-size: 20px;
    }

    .footer-subttl-ber {
        display: none;
    }

    .footer-right {
        flex-direction: column;
        font-size: 11px;
    }

    .footer-right li {
        padding: 2px 36px 2px 15px;
        position: relative;
    }

    .footer-right li::after {
        top: 9px;
        width: 8px;
        height: 8px;
    }


    .footer-link::before {
        right: 21px;
    }

    .footer-copy {
        display: flex;
        gap: 10px;
        font-size: 9px;
    }
}



.fix-contact {
    position: fixed;
    bottom: 30px;
    right: 0;
    writing-mode: vertical-rl;
    font-size: 20px;
    padding: 73px 14px 37px;
    background: #DBBD8E;
    color: #fff;
    border-radius: 13px 0 0 13px;

}

.fix-contact::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/mail.png)no-repeat center center /contain;
    width: 26px;
    height: 21px;
}

@media screen and (max-width:920px) {

    .fix-contact {
        font-size: 14px;
        padding: 55px 12px 30px;
    }

    .fix-contact::before {
        top: 30px;
        width: 22px;
        height: 18px;
    }

}

@media screen and (max-width:600px) {
    .fix-contact {
        font-size: 12px;
        padding: 40px 10px 20px;
    }

    .fix-contact::before {
        top: 20px;
        width: 20px;
        height: 16px;
    }
}