
:root {
    /* 文字サイズ */
    --fs-45rem: 4.5rem;
    --fs-40rem: 4rem;
    --fs-30rem: 3rem;
    --fs-28rem: 2.8rem;
    --fs-26rem: 2.6rem;
    --fs-25rem: 2.5rem;
    --fs-24rem: 2.4rem;
    --fs-22rem: 2.2rem;
    --fs-20rem: 2rem;
    --fs-18rem: 1.8rem;
    --fs-17rem: 1.7rem;
    --fs-16rem: 1.6rem;
    --fs-15rem: 1.5rem;
    --fs-14rem: 1.4rem;
    --fs-13rem: 1.3rem;
    --fs-12rem: 1.2rem;
    /* 文字間 */
    --lsp-80: 0.08em;
    --lsp-60: 0.06em;
    --lsp-40: 0.04em;
    --lsp-30: 0.03em;
    --lsp-20: 0.02em;
    --lsp-10: 0.01em;
    --lsp-m20: -0.02em;
    /* 行送り */
    --lh-30: 3;
    --lh-28: 2.8;
    --lh-20: 2;
    --lh-18: 1.8;
    --lh-16: 1.6;
    /* 太さ */
    --fw-900: 900;
    --fw-800: 800;
    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;
    /* カラー */
    --m-blue: #87D2E9;
    --m-pink: #E6007D;
    --bg-pink: #F09B8C;
    --l-yellow: #FFF032;
    --bg-yellow: #FFFCD1;
    --bg-green: #C8D71E;
    --f-green: #00AF9B;
    --f-gray: #A0A0A0;
    --bg-black: #231919;
    /* フォント（Lato） */
    --ff-noto: "Noto Sans JP", sans-serif;
    --ff-mplus: "M PLUS Rounded 1c", sans-serif;
}


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: var(--fs-18rem);
    font-family: var(--ff-noto);
    letter-spacing: var(--lsp-30);
    background-color: var(--m-blue);
    position: relative;
}

a {
    display: block;
}

img {
    display: block;
    max-width: 100%;
}

.fc-pink {
    color: var(--m-pink);
}

.sp-view {
    display: none;
}

.l-btn {
    background-color: var(--m-pink);
    border-radius: 90px;
    transition: 0.5s;
    border: 5px solid var(--m-pink);
}

.l-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-25rem);
    font-family: var(--ff-mplus);
    font-weight: var(--fw-800);
    color: #fff;
    padding: 40px 0;
    transition: 0.5s;
}

.l-btn:hover {
    transition: 0.5s;
    background-color: #fff;
    border: 5px solid var(--m-pink);
}

.l-btn:hover a {
    color: var(--m-pink);
}

.l-btn a img {
    width: 40px;
    margin-left: 20px;
    filter: invert(99%) sepia(0%) saturate(3396%) hue-rotate(149deg) brightness(116%) contrast(100%);
}

.l-btn:hover a img {
    filter: invert(21%) sepia(91%) saturate(6891%) hue-rotate(316deg) brightness(85%) contrast(118%);
}

.p-btn {
    width: 28.5vw;
    min-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.p-btn a {
    letter-spacing: var(--lsp-20);
}

.c-btn {
    width: 26vw;
    min-width: 350px;
}

.c-btn a {
    letter-spacing: var(--lsp-40);
}

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

    html {
        font-size: 57.5%;
    }

}

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

    html {
        font-size: 52.5%;
    }

    .l-btn a img {
        width: 25px;
    }
}

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

    html {
        font-size: 62.5%;
    }

    .pc-view {
        display: none;
    }

    .sp-view {
        display: block;
    }

    .l-btn a {
        font-size: var(--fs-14rem);
        padding: 17px;
    }

    .l-btn a img {
        margin-left: 10px;
        width: 20px;
    }

    .l-btn:hover {
        background-color: var(--m-pink);
        border: 5px solid var(--m-pink);
    }
    
    .l-btn:hover a {
        color: #fff
    }
    
    .l-btn:hover a img {
        filter: invert(99%) sepia(0%) saturate(3396%) hue-rotate(149deg) brightness(116%) contrast(100%);
    }

    .p-btn {
        width: 72vw;
        min-width: 280px;
    }

    .c-btn {
        width: 43vw;
        min-width: 170px;
    }

}

/* 雲の装飾 共通 */
body::before,
body::after {
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
}

/* 雲の装飾 左 */
body::before {
    width: 46vw;
    height: 28.5vw;
    background-image: url(../images/cloud-left.png);
    left: 0;
    animation: cloudLeft 12s ease-in-out alternate infinite;
}

@keyframes cloudLeft {
    0% {
        top: 17.5vw;
    }

    25% {
        top: 19.5vw;
    }

    50% {
        top: 17.5vw;
    }

    75% {
        top: 15.5vw;
    }

    100% {
        top: 17.5vw;
    }
}

/* 雲の装飾 右 */
body::after {
    width: 41vw;
    height: 28.5vw;
    background-image: url(../images/cloud-right.png);
    right: 0;
    z-index: -1;
    animation: cloudRight 12s 2s ease-in-out alternate infinite;
}

@keyframes cloudRight {
    0% {
        top: 5vw;
    }

    25% {
        top: 4vw;
    }

    50% {
        top: 5vw;
    }

    75% {
        top: 7vw;
    }

    100% {
        top: 5vw;
    }
}

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

    body::before {
        animation: cloudLeft 12s ease-in-out alternate infinite;
    }

    @keyframes cloudLeft {
        0% {
            top: 50.5vw;
        }
    
        25% {
            top: 52.5vw;
        }
    
        50% {
            top: 50.5vw;
        }
    
        75% {
            top: 48.5vw;
        }
    
        100% {
            top: 50.5vw;
        }
    }

    body::after {
        animation: cloudRight 12s 2s ease-in-out alternate infinite;
    }

    @keyframes cloudRight {
        0% {
            top: 10vw;
        }
    
        25% {
            top: 9vw;
        }
    
        50% {
            top: 10vw;
        }
    
        75% {
            top: 12vw;
        }
    
        100% {
            top: 10vw;
        }
    }

}




/* header */

header {
    position: relative;
    z-index: 20;
    background-image: url(../images/mvbg_pc.png);
    background-repeat: no-repeat;
    background-size: 100%;
    /* height: 100vh; */
    height: 1080px;
}

header h1 {
    width: 245px;
    background-color: #fff;
    border-radius: 0 0 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

header h1 a {
    display: block;
    width: 100%;
    padding: 8.3% 20.4%;
}

header h1 a img {
    width: 100%;
}

.bg-wave {
    position: absolute;
    left: 0;
    top: 34vw;
    width: 100%;
}

.bg-wave::after {
    content: "";
    display: block;
    background-image: url(../images/mv-wave_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    width: 100%;
    height: 340px;
    bottom: -180px;
    z-index: -1;
}

.bg-white {
    overflow: hidden;
}

.mv {
    background-color: #fff;
    text-align: center;
    padding-top: 70px;
    border-top-left-radius: 1920px 350px;
    border-top-right-radius: 1920px 350px;
    margin-left: -200px;
    margin-right: -200px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.mv-contents {
    width: 68%;
    margin-left: auto;
    margin-inline-end: auto;
}



.mv-contents_logo {
    width: 58%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.mv-contents_logo img {
    width: 100%;
}

.mv-contents_desc {
    font-size: var(--fs-22rem);
    font-weight: var(--fw-700);
    letter-spacing: var(--lsp-30);
    line-height: var(--lh-28);
    margin-bottom: 35px;
}

.mv-contents_copy {
    font-size: var(--fs-28rem);
    letter-spacing: var(--lsp-10);
    font-family: var(--ff-mplus);
    font-weight: var(--fw-900);
    line-height: var(--lh-20);
}

.mv-contents_copy span {
    font-size: var(--fs-40rem);
}

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

    .bg-wave::after {
        background-image: url(../images/mv-wave_sp.png);
        height: 38vw;
        background-size: contain;
        bottom: -130px;
    }

    .mv-contents {
        width: 87vw;
    }

    .mv-contents_logo {
        width: 100%;
    }

    .mv-contents_desc {
        font-size: var(--fs-16rem);
        text-align: left;
        margin-bottom: 15px;
    }

    .mv-contents_copy {
        font-size: var(--fs-20rem);
    }

    .mv-contents_copy span {
        font-size: var(--fs-28rem);
    }

}

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

    .bg-wave::after {
        height: 45vw;
    }

}

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

    .mv-contents_copy span {
        font-size: var(--fs-26rem);
    }

}

/* main */

main {
    /* padding-top: calc(10vw + 340px); */
    padding-top: 26vw;
    margin-bottom: 12.5vw;
    position: relative;
    z-index: 10;
}

.l-section {
    position: relative;
}

.m-section {
    margin-top: 10vw;
    padding-left: 16vw;
    padding-right: 16vw;
}

.w-section {
    margin-top: 12.5vw;
    padding-left: 16vw;
    padding-right: 16vw;
    background-color: #fff;
    position: relative;
    margin-bottom: 340px;
    border-radius: 40px 40px 0 0;
}

.w-section::after {
    content: "";
    display: block;
    background-image: url(../images/mv-wave_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    width: 100%;
    height: 340px;
    bottom: -200px;
    z-index: -1;
}

.l-section h2 {
    position: absolute;
    top: -3vw;
    left: 50%;
    transform: translateX(-50%);
}

.l-section h2 img {
    margin-left: auto;
    margin-right: auto;
}

.l-section__desc {
    background-color: #fff;
    padding: 9vw 6vw 7vw;
    border-radius: 40px;
    font-size: var(--fs-18rem);
    line-height: var(--lh-28);
    font-weight: var(--fw-600);
}

.w-section__desc {
    padding: 9vw 0vw 7vw;
    letter-spacing: 0;
}

.bg-yellow {
    position: relative;
    background: linear-gradient(transparent 30%, #FFF032 80%);
}

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

    main {
        padding-top: 20vw;
    }

    .l-section__desc {
        padding: 12vw 6vw 7vw;
    }

    .w-section__desc {
        padding: 12vw 0 7vw;
    }

}

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

    main {
        /* padding-top: 38vw; */
        padding-top: 22vw;
    }

}

@media screen and (max-width:1400px) {
    main {
        padding-top: 16vw;
    }
}

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

    header {
        background-image: url(../images/mvbg_sp.png);
    }

    .bg-wave {
        top: 85vw;
    }

    main {
        padding-top: 110vw;
        margin-bottom: 30vw;
    }

    .m-section {
        padding-left: 0;
        padding-right: 0;
    }

    .l-section__desc {
        border-radius: 20px;
        font-size: var(--fs-14rem);
    }

    .l-section h2 {
        top: -7vw;
    }

    .l-section__desc {
        padding: 80px 6vw 80px;
    }

    .w-section {
        margin-top: 30vw;
        padding-left: 6.5vw;
        padding-right: 6.5vw;
    }

    .w-section__desc {
        padding: 80px 0vw 80px;
    }

    .w-section {
        margin-bottom: 64vw;
    }

    .w-section::after {
        background-image: url(../images/mv-wave_sp.png);
        height: 38vw;
        background-size: contain;
        bottom: -130px;
    }

}

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

    header h1 {
        width: 130px;
        border-radius: 0 0 15px 0;
    }

    main {
        /* padding-top: 125vw; */
        padding-top: 80vw;
    }
    

}

@media screen and (max-width:400px) {
    main {
        /* padding-top: 150vw; */
        padding-top: 95vw;
    }
} 

@media screen and (max-width:350px) {
    main {
        padding-top: 125vw;
    }
} 


#mitsui .l-section__desc {
    margin-bottom: 7.3vw;
}

.members {
    margin-bottom: 7.3vw;
}

.members-img {
    position: relative;
    margin-bottom: 80px;
}

.members-img__pic {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.members-img__desc {
    color: #fff;
    border-radius: 20px;
    position: absolute;
}

.members-img__desc dl {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.members-img__desc dl dt {
    font-size: var(--fs-17rem);
    font-weight: var(--fw-900);
    margin-right: 10px;
}

.members-img__desc dl dd {
    font-size: var(--fs-25rem);
    font-weight: var(--fw-900);
}

.members-img__desc dl dd rt {
    font-size: var(--fs-13rem);
    font-weight: 500;
    margin-bottom: 2px;
}

.member-desc {
    font-size: var(--fs-16rem);
    font-weight: var(--fw-600);
    line-height: var(--lh-18);
}

.members-img__desc2 {
    background-color: var(--bg-pink);
    width: 355px;
    padding: 30px 45px 45px;
    bottom: 50px;
    left: 0%;
}

.members-img__desc1 {
    background-color: var(--bg-green);
    width: 365px;
    padding: 30px 25px 55px 45px;
    bottom: 135px;
    right: 3%;
}

.members-text {
    width: 80%;
    font-size: var(--fs-18rem);
    font-weight: var(--fw-600);
    line-height: var(--lh-20);
    margin-left: auto;
    margin-right: auto;
}

.visionhub {
    background-color: #fff;
    border-radius: 40px;
    padding: 5vw 5.2vw 6vw;
}

.visionhub .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.visionhub .wrap .tmb {
    width: 39%;
    border-radius: 20px;
    overflow: hidden;
}

.visionhub .wrap .tmb img {
    width: 100%;
}

.visionhub .wrap .inner {
    width: 49%;
}

.visionhub .wrap .inner .logoes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.visionhub .wrap .inner .logoes p {
    width: 30%;
    min-width: 70px;
    margin-right: 25px;
}

.visionhub .wrap .inner .logoes p img {
    width: 100%;
}

.visionhub .wrap .inner .logoes h3 {
    font-size: var(--fs-26rem);
    font-weight: var(--fw-900);
    line-height: var(--lh-18);
}

.visionhub .wrap .inner .inner-desc {
    font-size: var(--fs-16rem);
    line-height: var(--lh-30);
    font-weight: var(--fw-700);
}

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

    .members-img__desc2 {
        bottom: -2vw;
    }

    .members-img__desc1 {
        right: 0;
        bottom: 2vw;
    }

}

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

    .members-img__desc2,
    .members-img__desc1 {
        width: 40%;
        padding: 15px;
    }

    .members-img__desc dl {
        flex-direction: column;
        align-items: flex-start;
    }

    .members-img__desc dl dt {
        margin-bottom: 10px;
    }


} 

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

    #mitsui h2 {
        width: 71.5%;
    }

    #mitsui .l-section__desc {
        margin-bottom: 25.5vw;
    }

    .members {
        margin-bottom: 26vw;
    }

    .members-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .members-img__desc {
        position: relative;
        width: 87%;
        margin-left: auto;
        margin-right: auto;
    }

    .members-img__pic {
        margin-bottom: 80px;
    }

    .members-img__desc2, .members-img__desc1 {
        padding: 50px 30px 40px;
    }

    .members-img__desc1 {
        margin-bottom: 45px;
    }

    .sp-tmb {
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
    }
    .sp-tmb img {
        width: 100%;
    }

    .members-img__desc dl {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
    }

    .members-img__desc dl dt {
        margin-bottom: 0;
        font-size: var(--fs-14rem);
    }

    .members-img__desc dl dd {
        font-size: var(--fs-18rem);
    }

    .members-img__desc dl dd rt {
        font-size: var(--fs-12rem);
    }

    .member-desc {
        text-align: center;
    }

    .members-text {
        font-size: var(--fs-13rem);
    }
    
    .visionhub {
        width: 87%;
        margin-left: auto;
        margin-right: auto;
        padding: 40px 30px 80px;
        border-radius: 20px;
    }

    .visionhub .wrap {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .visionhub .wrap .tmb {
        width: 100%;
        margin-bottom: 40px;
    }

    .visionhub .wrap .inner {
        width: 100%;
    }

    .visionhub .wrap .inner .logoes {
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .visionhub .wrap .inner .logoes p {
        min-width: 100px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .visionhub .wrap .inner .logoes h3 {
        font-size: var(--fs-16rem);
    }

    .visionhub .wrap .inner .inner-desc {
        font-size: var(--fs-14rem);
    }

}

/* should */

.images .images-pic {
    margin-bottom: 80px;
}

.images .text {
    font-size: var(--fs-18rem);
    line-height: var(--lh-20);
    font-weight: var(--fw-600);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

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

    #should h2 {
        width: 66%;
    }

    .images .images-pic {
        margin-bottom: 50px;
    }

    .images .text {
        font-size: var(--fs-13rem);
        width: 100%;
        font-weight: var(--fw-500);
    }

}

/* ideal */

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

    #ideal h2 {
        width: 67%;
    }

}

/* future-project */

#future .wrap {
    padding-top: 10vw;
}

#future .wrap .description {
    font-size: var(--fs-18rem);
    font-weight: var(--fw-700);
    line-height: var(--lh-28);
    margin-bottom: 80px;
}

#future .wrap .inner dl {
    margin-bottom: 80px;
}

#future .wrap .inner dl:last-child {
    margin-bottom: 0;
}

#future .wrap .inner dl dt {
    font-size: var(--fs-25rem);
    font-weight: var(--fw-900);
    color: var(--f-green);
    letter-spacing: var(--lsp-80);
    margin-bottom: 30px;
    position: relative;
    padding-left: 35px;
}

#future .wrap .inner dl dt::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: var(--f-green);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#future .wrap .inner dl dd {
    font-size: var(--fs-18rem);
    line-height: var(--lh-20);
    font-weight: var(--fw-600);
}

#future .wrap .inner dl.entry dd .entry-cont {
    margin-bottom: 30px;
}

#future .wrap .inner dl.entry dd ol {
    margin-bottom: 30px;
}

#future .wrap .inner dl.entry dd ol li {
    margin-bottom: 20px;
}

#future .wrap .inner dl.entry dd ol li:last-child {
    margin-bottom: 0;
}

#future .wrap .inner dl.entry dd .capt {
    color: var(--f-gray);
    font-weight: var(--fw-600);
    font-size: var(--fs-16rem);
}

#future .wrap .inner dl.attention dd ul li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 22px;
}

#future .wrap .inner dl.attention dd ul li:last-child {
    margin-bottom: 0;
}

#future .wrap .inner dl.attention dd ul li::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bg-black);
    position: absolute;
    left: 0;
    top: 13px;
}

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

    #future {
        margin-top: 55vw;
    }

    #future h2 {
        width: 70%;
        top: -23vw;
    }

    #future .wrap {
        padding-top: 20vw;
    }

    #future .wrap .description {
        font-size: var(--fs-14rem);
        margin-bottom: 60px;
    }

    #future .wrap .inner dl {
        margin-bottom: 50px;
    }

    #future .wrap .inner dl dt {
        font-size: var(--fs-20rem);
        margin-bottom: 20px;
    }

    #future .wrap .inner dl dd {
        font-size: var(--fs-14rem);
    }
    
    #future .wrap .inner dl.entry dd .capt {
        font-size: var(--fs-13rem);
    }

    #future .wrap .inner dl.attention dd ul li::before {
        top: 8px;
    }

}

/* gift */

#gift .l-section__desc {
    text-align: center;
    margin-bottom: 7.3vw;
}

#gift .l-section__desc p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#gift .l-section__desc span {
    font-size: var(--fs-24rem);
    font-weight: var(--fw-900);
}

#gift .l-section__desc .fc-pink {
    margin: 0 5px;
}

#gift .l-section__desc .bigger {
    font-size: var(--fs-45rem);
    letter-spacing: var(--lsp-m20);
    line-height: 0;
}

#gift .wrap {
    margin-bottom: 7.3vw;
}

#gift .wrap .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

#gift .wrap .inner:last-child {
    margin-bottom: 0;
}

#gift .wrap .inner:nth-child(2) {
    flex-direction: row-reverse;
}

#gift .wrap .inner .tmb {
    width: 45%;
}

#gift .wrap .inner .contents {
    width: 51%;
}

#gift .wrap .inner .contents h3 {
    margin-bottom: 40px;
}

#gift .wrap .inner .contents p {
    font-size: var(--fs-18rem);
    line-height: var(--lh-28);
    font-weight: var(--fw-700);
}

.molp {
    background-color: #fff;
    padding: 5vw 70px 6vw;
    border-radius: 40px;
}

.molp .bg-cloud {
    background-image: url(../images/molp-bg_pc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 50px center;
}

.molp .bg-cloud h3 {
    font-size: var(--fs-25rem);
    font-weight: var(--fw-900);
    margin-bottom: 30px;
    width: 55vw;
    margin-left: 2vw;
}

.molp .bg-cloud p {
    font-size: var(--fs-18rem);
    font-weight: var(--fw-700);
    line-height: var(--lh-28);
    margin-bottom: 80px;
    width: 55vw;
    margin-left: 2vw;
}

.molp .bg-cloud p span {
    background-color: #fff;
    border: 5px solid #fff;
}

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

    .molp .bg-cloud h3 {
        margin-left: 0;
        width: 100%;
    }

    .molp .bg-cloud p {
        width: 100%;
        margin-left: 0;
    }

}

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

    #gift h2 {
        width: 48%;
        top: -10vw;
    }

    #gift .l-section__desc {
        margin-bottom: 25vw;
    }

    #gift .l-section__desc p {
        width: 100%;
    }

    #gift .wrap {
        padding-left: 6vw;
        padding-right: 6vw;
        margin-bottom: 25vw;
    }

    #gift .wrap .inner {
        flex-direction: column;
        margin-bottom: 80px;
    }

    #gift .wrap .inner:nth-child(2) {
        flex-direction: column;
    }

    #gift .wrap .inner .tmb {
        width: 100%;
        margin-bottom: 50px;
    }

    #gift .wrap .inner .contents {
        width: 100%;
    }

    #gift .wrap .inner:nth-of-type(1) .contents h3 {
        width: 53%;
    }
    #gift .wrap .inner:nth-of-type(2) .contents h3 {
        width: 83%;
    }
    #gift .wrap .inner:nth-of-type(3) .contents h3 {
        width: 53%;
    }

    #gift .wrap .inner .contents h3 {
        margin-bottom: 20px;
    }

    #gift .wrap .inner .contents h3 img {
        width: 100%;
    }

    #gift .wrap .inner .contents p {
        font-size: var(--fs-14rem);
    }

    .molp {
        width: 87%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 25px 0;
    }

    .molp .bg-cloud {
        background-image: url(../images/molp-bg_sp.png);
        background-position: top 35px center;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .molp .bg-cloud h3 {
        font-size: var(--fs-16rem);
        margin-bottom: 20px;
    }

    .molp .bg-cloud p {
        font-size: var(--fs-14rem);
        margin-bottom: 50px;
    }

    .molp .bg-cloud p span {
        border: 0;
    }


}

/* footer */

footer {
    position: relative;
    z-index: 10;
    margin-bottom: 180px;
}

.menu-wrap {
    background-color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.menu-wrap ul li {
    margin-left: 20px;
    margin-right: 20px;
    font-size: var(--fs-18rem);
    letter-spacing: var(--lsp-40);
    font-weight: var(--fw-700);
    line-height: var(--lh-16);
}

.menu-wrap ul li a {
    color: var(--f-gray);
    text-decoration: underline;
    transition: 0.5s;
}

.menu-wrap ul li a:hover {
    transition: 0.5s;
    opacity: 0.7;
}

footer p {
    background-color: var(--bg-black);
    padding: 18px 0;
    font-size: var(--fs-16rem);
    color: #fff;
    font-weight: var(--fw-700);
    letter-spacing: var(--lsp-40);
    text-align: center;
}

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

    footer {
        margin-bottom: 140px;
    }

    .menu-wrap {
        align-items: flex-start;
        justify-content: space-between;
        padding: 40px 0;
    }

    .menu-wrap ul {
        flex-direction: column;
        align-items: flex-start; 
    }

    .menu-wrap ul li {
        margin-bottom: 20px;
        font-size: var(--fs-15rem);
        letter-spacing: var(--lsp-60);
    }

    .menu-wrap ul li:last-child {
        margin-bottom: 0;
    }

    footer p {
        font-size: var(--fs-14rem);
        padding: 10px 0;
    }

}

/* cta */


.cta {
    background-color: var(--bg-yellow);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 40px 40px 0 0;
    opacity: 1;
}

.cta.none {
    opacity: 0;
}

.cta p {
    font-size: var(--fs-30rem);
    font-family: var(--ff-mplus);
    font-weight: var(--fw-900);
    margin-right: 50px;
}

.cta p .fc-pink {
    margin-left: 10px;
    margin-right: 10px;
}

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

    .cta {
        border-radius: 20px 20px 0 0;
        padding: 18px 23px;
    }

    .cta p {
        font-size: var(--fs-14rem);
        line-height: var(--lh-20);
        margin-right: 10px;
    }

    .cta p .fc-pink {
        margin-left: 0;
        margin-right: 0;
    }

}




