@charset "utf-8";

/* common
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.font18{
    font-size: 1.8rem;
}

@media screen and (max-width: 1080px) {
    body.active {
        height: 100%;
        overflow: hidden;
    }
}
.txt-bold{
    font-weight: 600;
}
figure .img-wrap img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure.is-show .img-wrap img{
    opacity: 0;
    animation: left_to_right_animation_opacity 1s ease-out 0.5s forwards;
}
figure .img-wrap{
    display: block;
    overflow: hidden;
}
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.sec-gray{
    background: #f4f4f4;
}

/* header
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

#header {
    display: block;
    width:240px;
    height: 100vh;
    max-height: 100%;
    background: rgba(46,46,46,.85);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}
@media screen and (max-width: 1080px) {
    #header{
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        position: fixed;
        opacity: 0;
        visibility: hidden;
        /*transform: translateX(100%);*/
        transition: all 0.3s ease;
    }
    #header.active{
        left:0;
        opacity: 1;
        visibility: visible;
        z-index: 10001;
        /*transform: translateX(0);*/
    }
}
#header .logo {
    width: 100%;
    height: 136px;
    background: #fff;
    text-align: center;
}
@media screen and (max-width: 1080px) {
    #header .logo {
        height: 17vw;
        display: block;
        text-align: left;
        padding: 5% 5%;
    }

}
#header .logo a {
    display: block;
}
@media screen and (max-width: 1080px) {
    #header .logo a{
        width: 27.5%;
    }
}
#header .nav{
    overflow-y: auto;
    height: calc(100% - 136px - 55px);
}
#header .nav .menu{
    padding: 55px 0;
}
#header .nav li{
    font-size: 1.3rem;
    margin: 0 0 1.2em;
}
#header .nav li a{  
  color: #fff;
}
#header .nav li a:hover{  
  color: #00AE91;
}
@media screen and (max-width: 1080px) {
    .pc-display{
        display: none;
    }
}
@media screen and (min-width: 1081px) {
    .drawer-btn{
        display: none;
    }
}
.drawer-btn {
    z-index: 10101;
    position: fixed;
    top: 4.8vw;
    right: 3vw;
    width: 2.2em;
    height: 1em;
    font-size: 3.2vw;
    cursor: pointer;
}
.drawer-btn:after {
    content: "MENU";
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    position: absolute;
    top: 100%;
    left: -7%;
    width: 114%;
    font-size: clamp(1rem,2.5vw,1.4rem);
    white-space: nowrap;
    text-align: center;
    letter-spacing: .05em;
}
.drawer-btn > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: black;
    transform: translateX(-50%);
}
.drawer-btn > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5em));
    transition: transform 0.3s ease;
}
.drawer-btn > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
.drawer-btn > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5em));
    transition: transform 0.3s ease;
}
.drawer-btn.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer-btn.active > span:nth-child(2) {
    opacity: 0;
}
.drawer-btn.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 1081px) {
    .drawer-nav{
        display: none;
    }
}
.drawer-nav {
    position: relative;
    width: 100%;
    height: calc(100% - 17vw - 12vw);
    padding: 11.5vw 5%;
    margin: 0 0 0 auto;
    overflow: scroll;
}
.drawer-nav li {
    list-style: none;
    padding-left: 0;
}
.drawer-nav li a {
    display: block;
    color: black;
    text-decoration: none;
    padding: .6em 2em;
    color: #fff !important;
    text-indent: -.6em;
}

/* footer
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

#footer {
    position: relative;
    background: #F4F4F4;
    border-top: 1px solid #2E2E2E;
}
#footer .inner-box{
}
#footer .info-wrap{
    text-align: right;
    width: 92.8%;
    padding: 124px 0;
}
@media screen and (max-width: 767px) {
    #footer .info-wrap {
        text-align: left;
        width: 92%;
        padding: 30vw 0 30vw 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}
#footer .info-wrap dl {
    margin-bottom: 3.3em;
}

@media screen and (max-width: 767px) {
    #footer .info-wrap dl {
        margin-bottom: 1.8em;
        margin-right: 10%;
    }
}

@media screen and (max-width: 767px) {
    div, p, dt, dd, li {
        letter-spacing: 0em!important;
    }
    .pc-only{
        display: none;
    }
}

#footer .info-wrap dl dd{
    margin-bottom: 1.9em;
}
#footer .info-wrap * {
    font-size: 1.2rem;
    letter-spacing: .055em;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    #footer .info-wrap * {
        font-size: 1rem;
        font-size: clamp(1rem,2.5vw,2rem);
        letter-spacing: 0;
    }
}
#footer .info-wrap .copy{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@media screen and (max-width: 767px) {
    #footer .info-wrap .copy{
        font-size: 1.3rem;
        font-size: clamp(1.3rem,3.46vw,2.6rem);
        margin-right: 10%;
        letter-spacing: -.03em;
    }
}

/* section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.sec-st{
    padding: 112px 0 102px;
}

@media screen and (max-width: 767px) {
    .sec-st {
        padding: 18% 0 15.5%;
    }
}

.sec-inner_l{
    position: relative;
}
@media screen and (min-width: 768px){
    .sec-inner_l{
        padding-left: 105px;
    }
}
@media screen and (min-width: 768px){
    .sec_voice.sec-inner_l{
        overflow: hidden;
        min-width: 1120px;
    }
}
@media screen and (min-width: 1081px) and (max-width: 1439px) {
    .sec_voice.sec-inner_l{
        min-width: 120%;
    }
}
.ttl-inner_l {
    position: absolute;
    left: -5px;
    bottom: 100%;
    width: 100%;
    transform: rotate(90deg);
    transform-origin: bottom left;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #015749;
    opacity: .26;
    font-size: 6.5rem;
    line-height: 1.1;
    letter-spacing: .045em;
    white-space: nowrap
}
@media screen and (max-width: 767px) {
    .ttl-inner_l {
        transform: unset;
        position: relative;
        left: inherit;
        bottom: inherit;
        font-size: 3.6rem;

    }
}

/* Title - 見出し -
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.heading-green{
    color:#00AE91;
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 .7em;
}

@media screen and (max-width: 767px) {
   .heading-green{
        font-size: 3rem;
        font-size: clamp(3rem,8vw,6rem);
        line-height: 1.5;
        letter-spacing: -.07em;
        margin: 0 0 .3em;
   }
}

.heading-green .en{
    font-size: 6rem;
    font-family: "Lato", sans-serif;
    line-height: 1.3;
    letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
    .heading-green .en{
        font-size: 3.6rem;
        font-size: clamp(3.6rem,9.6vw,7.2rem);
        letter-spacing: .05em;
    }
}

.heading-common{
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 .93em;
    width: 92.8%;
    text-align: center;
}

@media screen and (max-width: 767px) {
   .heading-common{
        font-size: 2.4rem;
        font-size: clamp(2.4rem,6.4vw,4.8rem);
        margin: 0 0 1.45em;
        letter-spacing: -.07em;
        width: 100%;
   }
}

.heading-common .en{
    color:#00AE91;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Lato", sans-serif;
    display: block;
    margin: .75em 0 0;
}

@media screen and (max-width: 767px) {
   .heading-common .en{
        font-size: 1.2rem;
        font-size: clamp(1.2rem,3.2vw,2.4rem);
        margin: 1.2em 0 0;
        letter-spacing: -.04em;
   }
}

.heading-bold{
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
}

@media screen and (max-width: 767px) {
   .heading-bold{
        font-size: 1.8rem;
        font-size: clamp(1.8rem,4.8vw,3.6rem);
        letter-spacing: -.07em;
   }
}

.heading-box-bk{
    background: #2E2E2E;
    color:#fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    padding: .9em 1.1em;
}

@media screen and (max-width: 767px) {
    .heading-box-bk{
        font-size: 1.3rem;
        font-size: clamp(1.3rem,3.46vw,2.6rem);
        padding: 1.45em;
        letter-spacing: -.05em;
    }
}

/* Table
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.tbl-wrap{
    overflow-x: auto;
    padding: 0 10px 10px 0;
}
.tbl-bk,
.tbl-bk th,
.tbl-bk td{
    border: 1px solid #B3B3B3;
}
.tbl-bk{
    table-layout: fixed;
}
.tbl-bk thead th{
    font-size: 1.6rem;
    padding: .3em;
    color: #fff;
    background: #2E2E2E;
    text-align: center;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .tbl-bk thead th {
        font-size: 1.5rem;
        font-size:clamp(1rem,2.8vw,3rem);
        padding: .5em .3em;
    }
}

.tbl-bk tbody th,
.tbl-bk tbody td{
    font-size: 1.5rem;
    padding: .3em;
}


@media screen and (max-width: 767px) {
    .tbl-bk tbody th,
    .tbl-bk tbody td {
        font-size: 1.3rem;
        font-size: clamp(1rem,2.2vw,2.6rem);
        padding: .3em .5em;
        letter-spacing: -.02em;
    }
}

.tbl-bk tbody th{
    text-align: center;
}
.tbl-bk tbody td{
    text-align: right;
    font-weight: 600;
}

/* Btn
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.question-title{
    font-size: 1.5rem;
    font-weight: 800;
    border-left: 6px solid #00AE91;
    background: #F4F4F4;
    display: block;
    text-align: left;
    padding: 1.5em;
    margin-top: 40px;
    line-height:1.5em
}

@media screen and (max-width: 767px) {
    
.question-title{
        font-size: clamp(1.3rem,3.46vw,2.6rem);
    }
}


.question-answer{
    margin-top: 20px;
    margin-left: 2em;
    text-align: justify;
}


.btn-tabs {
    font-size: 1.8rem;
    font-weight: 600;
    border-left: 3px solid #00AE91;
    background: #F4F4F4;
    display: block;
    text-align: center;
    padding: 1em;
    cursor: pointer;
    transition: all .2s;
}
.btn-tabs:hover {
    color: #00AE91;
}

@media screen and (max-width: 767px) {
    .btn-tabs {
        font-size: 1.3rem;
        font-size: clamp(1.3rem,3.46vw,2.6rem);
    }
}

.btn-tabs:after {
    content: "";
    width: .5em;
    height: .5em;
    display: inline-block;
    border-top: 1px solid #00AE91;
    border-right: 1px solid #00AE91;
    transform: rotate(45deg);
    margin: 0 .5em 0 .9em;
}

@media screen and (max-width: 767px) {
    .btn-tabs:after {
        width: .55em;
        height: .55em;
        border-top: 2px solid #00AE91;
        border-right: 2px solid #00AE91;
        margin: -.3em .2em 0 1.3em;
        vertical-align: middle;
    }
}
.entry-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .entry-btn {
        position: fixed;
        z-index: 10001;
    }
}
.entry-btn a{
    width: 100%;
    height:71px;
    background: linear-gradient(90deg, rgba(209, 196, 255, 1) 0%, rgba(87, 239, 255, 1) 50%, rgba(0, 219, 183, 1) 100%);
    color: #2E2E2E;
    font-size: 1.6rem;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .entry-btn a{
        height: 15vw;
        font-size: 1.5rem;
        font-size: clamp(1.5rem,4vw,3rem);
        line-height: 1.2;
    }
}
.entry-btn a .en{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@media screen and (max-width: 767px) {
    .entry-btn a .en{
        font-size: 1rem;
        font-size: clamp(1rem,2.67vw,2rem);
        letter-spacing: .08em;
    }
}



.entry-btn-footer {
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .entry-btn-footer {
        margin-top: 40px;
    }
}
.entry-btn-footer a{
    width: 100%;
    height:80px;
    background: linear-gradient(90deg, rgba(209, 196, 255, 1) 0%, rgba(87, 239, 255, 1) 50%, rgba(0, 219, 183, 1) 100%);
    color: #2E2E2E;
    font-size: 1.8rem;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .entry-btn-footer a{
        height: 15vw;
        font-size: 1.5rem;
        font-size: clamp(1.5rem,4vw,3rem);
        line-height: 1.2;
    }
}
.entry-btn-footer a .en{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@media screen and (max-width: 767px) {
    .entry-btn-footer a .en{
        font-size: 1rem;
        font-size: clamp(1rem,2.67vw,2rem);
        letter-spacing: .08em;
    }
}


.picture-footer{
    max-width: 80%;
}

.form_submit{
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 71px;
    background: #00AE91;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .form_submit{
        height: 18vw;
        magin:2.5em auto;
    }
}
.form_submit *{
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left:0;
}
.form_submit:before{
    content: "CONFIRM";
    display: block;
    color: #fff;
    position: absolute;
    top: calc(50% - 1.9rem);
    left: 0;
    width: 100%;
    height:1.2em;
    text-align: center;
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .1em;
}
.form_submit:after {
    content: "内容を確認する";
    display: block;
    color: #fff;
    position: absolute;
    top: calc(50% - .2rem);
    left: 0;
    width: 100%;
    height: 1.3em;
    line-height: 1.3;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .05em;
}
.form_back button{
    background: #ccc;
    border: none;
    width: 100%;
    margin: 1em 0;
    padding: 1em;
    cursor: pointer;
}
.mw_wp_form_confirm .form_submit:before{
    content: "SUBMIT";
}
.mw_wp_form_confirm .form_submit:after {
    content: "送信する";
}
.form_submit input[type="submit"],
.form_submit button{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border:none;
    color: transparent;
    padding:0;
    z-index: 1;
}

/* box
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.box-lines .box{
    background: #fff;
    border-left: 5px solid #00AE91;
    padding: 35px;
    margin-right: 40px;
}

.box-lines .box .ttl{
    margin: 0 0 .75em;
}
.txt-box p {
    margin-bottom: 1.3em;
}
@media screen and (max-width: 767px) {
    .txt-box p {
        margin-bottom: 1.4em;
        text-align: center;
    }
}
.pp-box{
    width: 100%;
    height: 200px;
    padding: 1em;
    margin: 40px auto 20px;
    border: 1px solid #9D9D9E;
}

.pp-box .box-inner{
    width: 100%;
    height: 100%;
    padding-right:1em;
    overflow-y: auto;
}

.pp-box .ttl{
    font-size: 1.5rem;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .pp-box .ttl{
        font-size: 1.3rem;
        font-size: clamp(1.3rem,3.46vw,2.6rem);
    }
}
.pp-box p{
    margin:0 0 1em;
}
@media screen and (max-width: 767px) {
    .pp-box p{
        font-size:1rem;
        font-size: clamp(1.1rem,2.93vw,2.2rem);
    }
}
.pp-box dd{
    margin:0 0 1em;
}
@media screen and (max-width: 767px) {
    .pp-box dt,
    .pp-box dd{
        font-size:1rem;
        font-size: clamp(1.1rem,2.93vw,2.2rem);
    }
}

/* Main View
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

#mv{
    position: relative;
    height: 100vh;
    background: #000 url(../images/img-mv@2x.jpg) no-repeat 50% 50%;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    #mv{
        background-image:url(../images/img-mv_sp@2x.jpg);
        min-height: 120vw;
    }
}
#mv .inner-box{
    height: 100%;
}

@media screen and (max-width: 767px) {
    #mv .inner-box{
        width: 90%;
    }
}

#mv .catch{
    color: #fff;
    font-size: 7rem;
    line-height: 1.3;
    font-weight: 800;
    padding: 15vh 9vw 0 9vw;
}

@media screen and (max-width: 767px) {
    #mv .catch{
        padding: 35vh 0vw 0vw 0vw;
    }
}

#mv .catch i{
    font-size: 2.2rem;
    display: block;
    font-style: normal;
}
@media screen and (max-width: 767px) {
    #mv .catch i{
        font-size: 1.5rem;
        font-size: clamp(1.5rem,4vw,3rem);
        margin: 0 0 .25em;
        letter-spacing: -.07em;
    }
}

.ttl-wrap.js-animation{
    position: relative;
    display: inline-block;
    overflow: hidden;
    transform: unset;
    opacity: 1;
    visibility: visible;
}
.ttl-wrap.js-animation.is-show:before {
    animation: left_to_right_animation 1s ease-out 0.5s forwards;
}
.ttl-wrap.js-animation:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00AE91;
    z-index: 1;
}
.ttl-wrap.js-animation.is-show span {
    opacity: 0;
    animation: left_to_right_animation_opacity 1s ease-out 0.5s forwards;
}
.ttl-wrap.js-animation span {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 800px;
}
.scroll {
    color: #fff;
    position: absolute;
    right: 100%;
    bottom: 0;
    transform: rotate(90deg);
    transform-origin: bottom right;
    height: 1.6em;
    width: calc(4em + 182px);
    font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
    .scroll {
        height: 1.4em;
        width: calc(4em + 38vw);
        font-size: 1.1rem;
        font-size: clamp(1.1rem,2.93vw,2.2rem);
    }
}
.scroll::before {
    content: "";
    animation: scroll 2s linear infinite;
    position: absolute;
    bottom: calc(50% - .3em);
    right: 0;
    background: #fff;
    width: 160px;
    height: 1px;
}
@media screen and (max-width: 767px) {
    .scroll::before {
        bottom: 0;
        width:25.25vw;
    }
}
.scroll .en{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .08em;
}
@media screen and (max-width: 767px) {
    .scroll .en{
        letter-spacing: .08em;
    }
}
@keyframes scroll {
  0% {
    width: 160px;
  }/*
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }*/
  100% {
    width:0;
  }
}

@media screen and (max-width: 767px) {
    @keyframes scroll {
      0% {
        width: 38vw;
      }/*
      50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
      }
      51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
      }*/
      100% {
        width:0;
      }
    }
}

/* introduction
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.sec_introduction{
    position: relative;
    z-index: 2;
}

.sec_introduction:before {
    content: "";
    position: absolute;
    bottom: -19px;
    right: 0;
    width: 70%;
    max-width: 848px;
    height: 100%;
    max-height: 109px;
    background: url(../images/bg-introduction@2x.png) no-repeat 100% 100%;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .sec_introduction:before {
        background-image: url(../images/bg-introduction_sp@2x.png);
        bottom: -21.5%;
        width: 43vw;
        max-width: 340px;
        height: 35vw;
        max-height: 140px;
    }
}
.sec_introduction > *{
    position: relative;
    z-index: 1;
}

/* policy
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (max-width: 767px) {
    .sec_our_policy .txt-box{
        width:93%;
    }
}

.sec-policy_list {
    margin: 40px 0 20px;
    position: relative;
}


@media screen and (max-width: 767px) {
    .sec-policy_list {
        margin: 26.5% 0 5%;
    }
}

.slider-policy{
    overflow-x: hidden;
}

.slider-policy > .box:not(:first-child){
    display:none;
}

.slider-policy .slick-track {
  display: flex;
}

@media screen and (min-width: 1441px) {
    .slider-policy .slick-track {
        max-width:100%;
    }
}

.slider-policy .box{
    width: 400px;
    min-height: 380px;
    height: auto !important;
}

@media screen and (max-width: 767px) {
    .slider-policy .box{
        width: 85vw;
        padding: 9.5vw 9vw;
        margin-right: 8vw;
        min-height: 360px;
    }
}


@media screen and (min-width: 1441px) {
    .slider-policy .box:last-child{
        margin-right:0;
    }
}

@media screen and (max-width: 767px) {
    .slider-policy .txt-box{
        width: 95%;
    }
}

.box-arrow-list {
    position: absolute;
    right: 7.2%;
    top: -81px;
    width: 100px;
    height: 40px;
}

@media screen and (max-width: 767px) {
    .box-arrow-list {
        position: absolute;
        right: 8.5%;
        top: calc( -40px - 5.5%);
        width: 100px;
        height: 40px;
    }
}
.box-arrow-list .slick-arrow{
    width:40px;
    height:40px;
    border: 1px solid #00AE91;
    border-radius: 100%;
    position: absolute;
    top: 0;
    transition: all .2s;
}
.box-arrow-list .slick-arrow.slick-disabled{
    opacity: .3;
}
.box-arrow-list .slick-prev{
    right: 60px;
}
.box-arrow-list .slick-next{
    right:0;
}

.box-arrow-list .slick-arrow:before{
    content: "";
    width:8.51px;
    height: 8.51px;
    position: absolute;
    top: calc(50% - 4.255px);
    transform: rotate(45deg);
}
.box-arrow-list .slick-prev:before{
    border-left: 1px solid #00AE91;
    border-bottom: 1px solid #00AE91;
    left: calc(50% - 3.255px);
}
.box-arrow-list .slick-next:before{
    border-right: 1px solid #00AE91;
    border-top: 1px solid #00AE91;
    right: calc(50% - 3.255px);
}

/* guideline
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (min-width: 768px) {
    .sec_guideline .sec-inner{
        width: 92.8%;
        text-align: center;
    }
}

.sec_guideline .sec-inner .ttl{
    margin: 0 0 .65em;
}

/* occupation
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (min-width: 768px) {
    .sec_occupation .sec-inner{
        width: 92.8%;
        text-align: center;
    }
}

.sec_occupation .sec-inner .ttl{
    margin: 0 0 .65em;
}

/* requirement
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (min-width: 768px) {
    .sec_requirement .sec-inner{
        width: 92.8%;
        text-align: center;
    }
}

.sec_requirement .sec-inner .ttl{
    margin: 0 0 .65em;
}

#requirement-box{
    display: -ms-inline-grid;
    display: inline-grid;

}
  ul.check-list{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:18px;
  }

  li.check-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
  }

  .checkicon{
    width:28px;
    height:28px;
    flex:0 0 28px;
    margin-top:3px;
  }

  .title{
    font-weight:800;
    margin-bottom:6px;
    text-align: left;
  }

  .note{
    line-height:1.6;
    text-align: left;
  }

  .subbox{
    border:1px solid #2E2E2E;
    border-radius:8px;
    padding:20px;
    margin-top:10px;
  }

  .subbox p{
    text-align: left;
  }

/* aboutpayment
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (min-width: 768px) {
    .sec_aboutpayment .sec-inner{
        width: 92.8%;
        text-align: center;
    }
}

.sec_aboutpayment .sec-inner .ttl{
    margin: 0 0 .65em;
}

/* qanda
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (min-width: 768px) {
    .sec_qanda .sec-inner{
        width: 92.8%;
    }
}

.sec_qanda .sec-inner .ttl{
    margin: 0 0 .65em;
}

.qanda-h2{
    color: #00AE91!important;
    text-align: left!important;
    font-family: "Lato", sans-serif!important;
    letter-spacing: 0.2em;
}

.green-txt{
    color: #00AE91;
}

.bold-text{
    font-weight: 800;
}



/* benefits
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.slider-wrap {
    padding: 40px 0 3px;
}

.slider-wrap .slick-slide {
    display: block;
    margin-left: 20px;
}
@media screen and (max-width: 767px) {
    .slider-wrap .slick-slide img{
        width: 200px;
    }
}

/* guidelines
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@media screen and (min-width: 768px) {
    .sec_guidelines .sec-inner{
        width: 92.8%;
    }
}
.box-guidelines.box-in-02{
    justify-content: flex-start;
    margin: 0 0 1.5em;
}
.box-guidelines.box-in-02 > *{
    width: 48.5%;
    margin: 0 3% 1.2em 0;
}
@media screen and (max-width: 767px) {
    .box-guidelines.box-in-02 > * {
        width: 100%;
        margin: 0 0 1.45em 0;
    }
}
.box-guidelines.box-in-02 > *:nth-child(even){
    margin-right: 0;
}
.info-guidelines{
    padding: 2.2em 2.7em;
    background: #f8f8f8;
}

@media screen and (max-width: 767px) {
    .info-guidelines {
        padding: .9em 1.4em;
    }
}

.info-guidelines dt{
    font-size: 1.8rem;
    color: #00AE91;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .info-guidelines dt{
        font-size: 1.5rem;
        font-size: clamp(1.5rem,4vw,3rem);
    }
}

.info-guidelines dd li span{
    font-weight: 600;
}

.info-guidelines dd,
.info-guidelines dd li{
    margin: 0 0 .8em;
}

@media screen and (max-width: 767px) {
    .info-guidelines dd,
    .info-guidelines dd li{
        margin: 0 0 1em;
    }
}
.info-guidelines dd ol{
    counter-reset: num;
    list-style: none;
}
.info-guidelines dd ul{
    margin: .8em 0 0;
}
.info-guidelines dd ul:first-child{
    margin-top:0;
}
.info-guidelines dd ol li{
    margin:0;
}

@media screen and (max-width: 767px) {
    .info-guidelines dd ol li{
        font-size: 1.3rem;
        font-size: clamp(1.3rem,3.46vw,2.6rem);
    }
}
.info-guidelines dd ol li::before{
    counter-increment: num;
    content: counter(num)".";
}
.info-guidelines dd .small{
    font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
    .info-guidelines dd .small{
        font-size: 1rem;
        font-size: clamp(1rem,2.67vw,2rem);
    }
}
.box-buidelines-inner {
    margin: 0 0 15px;
}


/* entry
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/


@media screen and (max-width: 767px) {
    .sec_entry .txt-box {
        margin-top: 2.3em;
    }
}

.form-wrap{
    width: 92.8%;
    max-width: 800px;
    margin: 32px 0;
}
@media screen and (max-width: 767px) {
    .form-wrap {
        width: 100%;
    }
}
.form__group {
    margin: 0 0 2.2em;
}
@media screen and (max-width: 767px) {
    .form__group {
        margin:0 0 1.85em
    }
}
.form__group label{
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .form__group .flex-box {
        display: block;
    }
}
.form__group .box-2-input span {
    max-width: 390px;
    width: 48.6%;
} 

@media screen and (max-width: 767px) {
    .form__group .box-2-input span {
        max-width: 400px;
        width: 100%;
        display: block;
    }
}
/* チェックボックスの枠 */
.mwform-checkbox-field-text::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #777;
}

.pp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mwform-checkbox-field-text {
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 2.6em;
    position: relative;
    font-weight: 600;
}
.mwform-checkbox-field-text::before {
    content: '';
    display: block;
    width: 1.35em;
    height: 1.35em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 2px solid #00AE91;
    border-radius: 3px;
}
.mwform-checkbox-field-text::after {
    content: "";
    display: block;
    width: .4em;
    height: .9em;
    position: absolute;
    top: calc( 50%);
    left: 0;
    border-right: 2px solid #00AE91;
    border-bottom: 2px solid #00AE91;
    opacity: 0;
    transform: rotate(45deg) translateY(-60%);
    transform-origin: center right;
}
/* チェックされた時 */
input[type=checkbox]:checked+.mwform-checkbox-field-text::after{
  opacity: 1;
}

/* slick
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

.slick-list{
    overflow: visible;
}
.slick-slider{
  display: none;
}
.slick-slider.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}



/* staff voice
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

@keyframes left_to_right_animation_opacity {
  0% {
    opacity: 0;
  }
    50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }

}
@keyframes left_to_right_animation {
  0% {
    width: 0;
    left:-100%;
  }
  50% {
    width:100%;
    left: 0;
  }
  100% {
    left: 100%;
  }
}