@charset "utf-8";
/*共通設定*/
    /*<a class="line-btn">*/
.line-btn-wrap {
    position: relative;
    max-width: 360px;
    width: 100%;
    margin: 24px auto 0 auto;
}

.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #4CC764;
    padding: 12px 8px;
    border-radius: 50vh;
    border: solid 1px #fff;
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 4px rgba(0,0,0,0.25);
    background: linear-gradient(90deg,
        #37ECBA 0%,
        #72AFD3 100%
    );
    font-weight: 600;
}


    /*<div class="h2-title-wrap">*/
.h2-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.h2-txt {
    position: relative;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 56px;
    text-shadow: 0 0 20px #57E9F2;
}

.h2-txt::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-bottom: solid 2px #f1f1f1;
    width: 50px;
    height: 2px;
}

.h2-title-wrap h2 {
    font-size: 20px;
    color: #f1f1f1;
}


    /* ぼかしアニメーション*/
.inview-blur {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    /* blur が付いたらぼかし解除*/
.blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: 0.8s;
}

    /* ぼかし keyframes*/
@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

    /*方向フェードイン */
.inview-anim {
    opacity: 0;
    filter: blur(15px);
    transition: 0.8s ease;
}

    /* 下から */
.fade-up {
    transform: translateY(30px);
}

.fade-up.blur {
    transform: translateY(0);
}

    /* 上から */
.fade-down {
    transform: translateY(-30px);
}

.fade-down.blur {
    transform: translateY(0);
}

    /* 左から */
.fade-left {
    transform: translateX(-30px);
}

.fade-left.blur {
    transform: translateX(0);
}

    /* 右から */
.fade-right {
    transform: translateX(30px);
}

.fade-right.blur {
    transform: translateX(0);
}

    /*下からふわっとアニメーション*/
.scr-target {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 1s ease, transform 1s ease;
}

.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

    /*スクロールフェードイン*/
.js-fadeLeft {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(-16px); /* 下に100pxの位置から */
    transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeLeft.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.2s; /* フェード開始を0.2秒遅らせる */
}

.js-fadeRight {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(16px); /* 下に100pxの位置から */
    transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeRight.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.2s; /* フェード開始を0.2秒遅らせる */
}
/*終わり*/  


/*<section class="bg">*/
.bg {
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-in {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bg-l {
    width: calc(50% - 300px);
    height: 100%;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.bg-ul {
    font-family: "Montserrat", sans-serif;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
}

.bg-ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bg-ul li::before {
    content: "";
    border-bottom: solid 1px #BDBDBD;
    width: 20px;
    height: 1px;
}

.bg-line-btn-wrap {
    margin: 0 auto 0 0;
}

.bg-r {
    position: relative;
    width: calc(50% - 300px);
    height: 100%;
    padding-left: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.bg-logo {
    max-width: 240px;
    width: 100%;
}
/*終わり*/


/*<div class="lp-wrap">*/
.lp-wrap {
    position: relative;
    background-color: #FFF;
    overflow: hidden;
    z-index: 2;
}
/*終わり*/


/*<div class="fv">*/
.fv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
/*終わり*/


/*<section class="birth">*/
.birth {
    position: relative;
    background-image: url(../img/birth_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.birth::before {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 80%;
}

.birth::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 70%;
}

.birth-h2-wrap {
    margin: 40px 0;
    position: relative;
}

.birth-h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #f1f1f1;
    padding: 24px 0;
    text-shadow: 0 0 24px #57E9F2;
    line-height: 1.3;
}

.birth-h2-line-01 {
    position: absolute;
    top: 0;
    left: -40px;
    width: max-content;
}

.birth-h2-line-02 {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: max-content;
}

.birth-txt {
    text-align: center;
    color: #fff;
    font-size: 20px;
}

.birth-img-wrap {
    position: relative;
    width: 85%;
    margin: 64px auto 24px;
}

.birth-img-txt {
    text-align: center;
    position: absolute;
    top: -16px;
    right: -8px;
    z-index: 2;
    background: linear-gradient(90deg,
        #37ECBA 0%,
        #72AFD3 100%
    );
    font-weight: 800;
    padding: 8px;
}

.thailand-icon {
    max-width: 20px;
    width: 100%;
}

.birth-name {
    position: absolute;
    bottom: -8px;
    left: -8px;
    background: linear-gradient(90deg,
        #37ECBA 0%,
        #72AFD3 100%
    );
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0 16px;
    font-size: 36px;
}
/*終わり*/


/*<section class="about">*/
.about {
    position: relative;
    background-image: url(../img/about_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about::before {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 80%;
}

.about::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 70%;
}

.about-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-logo-wrap {
    position: relative;
    text-align: center;
}

.about-logo {
    position: relative;
    max-width: 240px;
    width: 100%;
    z-index: 2;
}

.about-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}

.about-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #f1f1f1;
    font-weight: 600;
}
/*終わり*/


/*<section class="company">*/
.company {
    background-image: url(../img/company_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.company-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-logo-wrap {
    text-align: center;
}

.company-logo {
    max-width: 320px;
    width: 100%;
}

.company-txt-01 {
    color: #f1f1f1;
    text-align: center;
    font-weight: 600;
}

.company-h3-wrap {
    margin: 40px 0;
    position: relative;
}

.company-h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #f1f1f1;
    padding: 24px 0;
    text-shadow: 0 0 24px #57E9F2;
}

.company-h3-line-01 {
    position: absolute;
    top: 0;
    left: -40px;
    width: max-content;
}

.company-h3-line-02 {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: max-content;
}

.company-swiper {
    margin: 40px -40px;
}

.company-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.company-swiper .swiper-box {
    position: relative;
}

.company-swiper-name {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg,
        #37ECBA 0%,
        #72AFD3 100%
    );
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0 16px;
    font-size: 20px;
}

.company-txt-02 {
    text-align: center;
    color: #f1f1f1;
    font-weight: 600;
}
/*終わり*/


/*<section class="benefit">*/
.benefit {
    background-image: url(../img/benefit_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.benefit-flex {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.benefit-con {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-img-wrap {
    margin: 0 -40px;
    position: relative;
}

.benefit-img-wrap-r {
    text-align: right;
}

.benefit-img {
    width: 90%;
}

.benefit-h3 {
    position: absolute;
    bottom: -8px;
    right: 0;
    width: max-content;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(90deg,
        #37ECBA 0%,
        #72AFD3 100%
    );
    clip-path: polygon(
        5% 0,      /* 左上：まっすぐ */
        100% 0,   /* 右上：そのまま */
        100% 100%, /* 右下：左に寄せて斜め */
        0 100%    /* 左下：まっすぐ */
    );
    font-size: 32px;
    padding: 0 24px 0 40px;
}

.benefit-h3-r {
    left: 0;
    clip-path: polygon(
        0 0,      /* 左上：まっすぐ */
        100% 0,   /* 右上：そのまま */
        95% 100%, /* 右下：左に寄せて斜め */
        0 100%    /* 左下：まっすぐ */
    );
    padding: 0 40px 0 24px;
}

.benefit-h3 span {
    font-size: 40px;
}

.benefit-txt {
    font-size: 20px;
}
/*終わり*/


/*<section class="flow">*/
.flow {
    background-image: url(../img/flow_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flow-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-con {
    padding: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -24px;
}

.flow-num {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    padding: 0 16px;
    font-weight: 600;
    background: linear-gradient(90deg,
        #ACEAF9 0%,
        #D5B7EB 100%
    );
    clip-path: polygon(
        0 0,      /* 左上：まっすぐ */
        100% 0,   /* 右上：そのまま */
        95% 100%, /* 右下：左に寄せて斜め */
        0 100%    /* 左下：まっすぐ */
    );
}

.flow-h3 {
    font-size: 24px;
    font-weight: 700;
}

.flow-img-wrap {
    margin: 0 -24px;
}

.flow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-txt {
    text-align: center;
}

.flow-arrow {
    max-width: 40px;
    width: 100%;
    margin: 0 auto;
}
/*終わり*/


/*<section class="cta">*/
.cta {
    background-image: url(../img/cta_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-h2-wrap {
    margin: 40px 0;
    position: relative;
}

.cta-h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #f1f1f1;
    padding: 24px 0;
    text-shadow: 0 0 24px #57E9F2;
    line-height: 1.5;
}

.cta-h2-line-01 {
    position: absolute;
    top: 0;
    left: -40px;
    width: max-content;
}

.cta-h2-line-02 {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: max-content;
}

.cta-swiper {
    margin: 40px -40px;
}

.cta-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.cta-swiper .swiper-slide-up {
    padding-top: 40px;
}

.cta-swiper-img {
    border-radius: 8px;
    border: solid 1px #fff;
    box-shadow: 0 4px 4px rgba(0,0,0,0.15);
}
/*終わり*/


/*<section class="entry">*/
.entry {
    position: relative;
    background-image: url(../img/entry_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.entry::before {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 80%;
}

.entry::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 70%;
}

.entry-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.entry-con {
    width: 48%;
    background-color: #222;
    border: solid 1px #fff;
    box-shadow: 0 0 8px #57E9F2;
    margin-bottom: 4%;
    color: #f1f1f1;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.entry-icon-wrap {
    text-align: center;
}

.entry-icon {
    height: 56px;
}

.entry-txt {
    text-align: center;
    font-size: 16px;
}
/*終わり*/


/*<section class="faq">*/
.faq {
    position: relative;
    background-image: url(../img/faq_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq::before {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 80%;
}

.faq::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 70%;
}

.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-con:hover {
    cursor: pointer;
}

.nav-open {
    position: relative;
    background-color: #3F3F3F;
    padding: 16px;
    border-radius: 4px;
}

.nav-open.active {
    border-radius: 4px 4px 0 0;
}

.q-txt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-right: 40px;
    color: #fafafa;
}

.plus-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(90deg,
        #37ECBA 0%,
        #72AFD3 100%
    );
    border-radius: 50%;
}

.plus-icon::before,
.plus-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #595858;
}

.plus-icon::before {
    width: 40%;
    height: 2px;
}

.plus-icon::after {
    width: 2px;
    height: 40%;
}

.faq-txt {
    display: none;
    padding: 16px;
    background-color: #F6F6F6;
    border-radius: 0 0 4px 4px;
}

.nav-open.active .plus-icon::after {
    display: none;
}
/*終わり*/


/*<section class="notice">*/
.notice {
    position: relative;
    background-image: url(../img/notice_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.notice::before {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 80%;
}

.notice::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: solid 1px #f1f1f1;
    width: 70%;
}

.notice-wrap {
    background-color: #fff;
    padding: 32px 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.notice-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-check {
    max-width: 12px;
    width: 100%;
}
/*終わり*/


/*<section class="privacy">*/
.privacy {
    background-image: url(../img/privacy_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.privacy-txt {
    color: #f1f1f1;
}
/*終わり*/


/*1500px ~ 1025px*/
@media (max-width: 1400px) {
/*<section class="bg">*/
    .bg-l,
    .bg-r {
        display: none;
    }
/*終わり*/
}


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    /*<a class="line-btn">*/
    .line-btn {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    /*<div class="h2-title-wrap">*/
    .h2-txt {
        font-size: clamp(32px, 56vw / 5.99, 56px);
    }

    .h2-title-wrap h2 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }
/*終わり*/


/*<div class="fv">*/
/*終わり*/


/*<section class="birth">*/
    .birth-h2 {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

    .birth-txt {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

    .birth-img-wrap {
        margin: 64px auto 24px;
    }

    .birth-img-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .thailand-icon {
        max-width: clamp(14px, 20vw / 5.99, 20px);
    }

    .birth-name {
        font-size: clamp(24px, 36vw / 5.99, 36px);
    }
/*終わり*/


/*<section class="about">*/
    .about-logo {
        max-width: clamp(160px, 240vw / 5.99, 240px);
    }
/*終わり*/


/*<section class="company">*/
    .company-logo {
        max-width: clamp(200px, 320vw / 5.99, 320px);
    }

    .company-h3 {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

    .company-swiper-name {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }
/*終わり*/


/*<section class="benefit">*/
    .benefit-img-wrap {
        margin: 0 -3vw;
    }

    .benefit-h3 {
        font-size: clamp(20px, 32vw / 5.99, 32px);
        padding: 0 24px 0 clamp(32px, 40vw / 5.99, 40px);
    }

    .benefit-h3-r {
        padding: 0 clamp(32px, 40vw / 5.99, 40px) 0 24px;
    }

    .benefit-h3 span {
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }

    .benefit-txt {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }
/*終わり*/


/*<section class="flow">*/
    .flow-con {
        padding: 24px clamp(16px, 24vw / 5.99, 24px);
    }

    .flow-title-wrap {
        margin-left: clamp(-16px, -24vw / 5.99, -24px);
    }

    .flow-h3 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .flow-img-wrap {
        margin: 0 clamp(-16px, -24vw / 5.99, -24px);
    }

    .flow-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="cta">*/
    .cta-h2 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }
/*終わり*/


/*<section class="entry">*/
    .entry-con {
        width: 49%;
        padding: 24px clamp(8px, 12vw / 5.99, 12px);
    }

    .entry-txt {
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="faq">*/
    .nav-open {
        padding-right: clamp(8px, 16vw / 5.99, 16px);
    }

    .q-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
        padding-right: clamp(32px, 40vw / 5.99, 40px);
    }

    .plus-icon {
        right: clamp(8px, 16vw / 5.99, 16px);
    }

    .faq-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="notice">*/
    .notice-wrap {
        padding: clamp(24px, 32vw / 5.99, 32px) clamp(16px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="privacy">*/
/*終わり*/
}
