@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');


:root{
    --primary-color: #81df03;
    --primary-color-bg: #f0fbf0;
}

/* Reset */
html{font-size: 62.5%; -webkit-font-feature-settings: 'palt' 1; font-feature-settings: 'palt' 1;}
body{color: #222222; line-height: 1.7; word-spacing: 0; font-size: 1.6rem; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -moz-text-size-adjust: 100%; font-family: 'Noto Sans JP', sans-serif; position: relative; overflow-x: hidden;}

*{margin: 0; padding: 0; box-sizing: border-box; border: 0;}
h1, h2, h3, h4, h5, h6{font-size: 100%; font-weight: bold;}
ol, ul{list-style: none;}
table{border-collapse: collapse; border-spacing: 0;}
th{text-align: left; font-weight: normal;}
a{color: inherit; text-decoration: none;}
img{vertical-align: bottom; max-width: 100%; height: auto;}


a:focus-visible {
    outline: 0.1em solid var(--primary-color);
}



.cap,
[class*="cap-"]{font-size: 1rem; line-height: 1.4;}
.cap-abs_right{position: absolute; bottom: 7px; right: 7px; text-align: right;}
.cap-abs_left{position: absolute; bottom: 7px; left: 7px;}
.cap-right{padding-top: 5px; text-align: right;}
.cap-left{padding-top: 5px;}
.shadow{color: #fff; text-shadow: 0 0 1px rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.8), 0 0 3px rgba(0,0,0,.8), 0 0 4px rgba(0,0,0,.8), 0 0 5px rgba(0,0,0,.8), 0 0 6px rgba(0,0,0,.8), 0 0 7px rgba(0,0,0,.8), 0 0 8px rgba(0,0,0,.8), 0 0 9px rgba(0,0,0,.8), 0 0 10px rgba(0,0,0,.8);}

.center{text-align: center !important;}
.left{text-align: left !important;}
.right{text-align: right !important;}
.bold{font-weight: bold;}
.container{margin: 0 auto; max-width: 1400px; width: calc(100% - 60px);}
.container1080 {margin: 0 auto; max-width: 1080px; width: calc(100% - 40px);}
img.img-full{width: 100%;}
.exlink{text-decoration: underline; color: #0097da;}
.exlink:hover{opacity: .8;}

@media (min-width: 768px){
    a[href^="tel:"]{pointer-events: none;}
    .only-sp{display: none;}    
}

@media (max-width: 767px){
    .only-pc{display: none;}
    .container{width: calc(100% - 40px);}
}

@media print {
    body{color-adjust: exact; -webkit-print-color-adjust: exact; print-color-adjust: exact;}
}

/* Header */
header {
    width: 100%;
    padding: 20px 30px;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: all 0.6s ease;
    background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

header.is-scroll {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    transition: all 0.6s ease;
}

header h1 {
    line-height: 1;
}

@media (max-width: 1201px) and (min-width: 768px){
    header h1 {
        max-width: 33vw;
    }
}

@media (max-width: 1200px){
    header h1 img {
        max-width: 70%;
    }
}

@media (max-width: 767px){
    header {
        padding: 20px;
    }
    header h1 {
        position: relative;
        z-index: 999;
    }
}

/* Menu */
.menu {
    flex: 1;
}

.menu .button {
    background: var(--primary-color);
    border-radius: 100px;
    padding: 9px 33px;
}

.menu .is-active,
.menu a:hover {
    color: var(--primary-color);
}

.menu .button:hover {
    opacity: 0.8;
    color: #ffffff;
}

.menu .button:hover::after {
    content: none;
}

.menu a {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

@media (min-width: 768px){
    .menu .menu-wrap {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .menu li:not(:last-child) {
        margin-right: 30px;
    }

    .menu a.is-active::after,
    .menu a:hover::after {
        content: '\2022';
        position: absolute;
        bottom: -16px;
        left: 50%;
        display: block;
        color: var(--primary-color);
    }

    #btn-menu{display: none;}
}

@media (max-width: 1201px) and (min-width: 768px){
    .menu li:not(:last-child) {
        margin-right: 2%;
    }
}

@media (max-width: 991px) and (min-width: 768px){
    .menu a {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px){
    #btn-menu{position: relative; height: 30px; width: 30px; z-index: 996; cursor: pointer; display: block;}
    #btn-menu span{display: block; position: absolute; left: 0; width: 100%; height: 2px; background: #ffffff; transition: transform .3s;}
    #btn-menu span:nth-of-type(1){top: 5px;}
    #btn-menu span:nth-of-type(2){top: 14px;}
    #btn-menu span:nth-of-type(3){top: 24px;}
    
    #btn-menu.is-open span:nth-of-type(1){top: 14px; transform: rotate(45deg);}
    #btn-menu.is-open span:nth-of-type(2){opacity: 0;}
    #btn-menu.is-open span:nth-of-type(3){top: 14px; transform: rotate(-45deg);}

    .menu{position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: auto; background: rgba(0, 0, 0, 0.8); opacity: 0; visibility: hidden; pointer-events: none; transition: .3s; z-index: 995;}
    .menu-wrap{padding: 20% 0 30px;}
    .menu li{text-align: center; margin: 0 0 20px; overflow: hidden;}
    .menu a{padding: 10px 20px; display: inline-block; transform: translateY(100%); -webkit-transform: translateY(100%);}
    .menu.is-open{opacity: 1; visibility: visible; pointer-events: auto;}
    .menu.is-open a{transform: translateY(0); -webkit-transform: translateY(0);}

    .menu .button {
        width: 100%;
        max-width: 300px;
        padding: 13px 33px;
    }
}

@media (max-width: 992px){
    
}

/* Main */
.main {
}

.m-title {
    font-family: "Barlow", sans-serif;
    font-size: 8rem;
    line-height: 6rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.m-sub-title {
    font-size: 3.6rem;
    line-height: 5.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}

.m-desc {
    font-size: 1.6rem;
    line-height: 3.2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.ui-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff;
    font-size: 1.6rem;    
    padding: 13px 2%;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.ui-button::after {
    content: url(../img/common/arrow-left.svg);
    margin-left: 1.6rem;
    line-height: 1;
    transition: transform .3s ease-in-out;
}

.ui-button::before {
    position: absolute;
    top: 0;
    left: 0;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0, 1);
    transform-origin: right top;
    z-index: 1;
}

.ui-button:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}

.ui-button:hover::after {
    transform: translateX(8px);
}

@media (min-width: 1201px){
    .ui-button {
        max-width: 350px;
        padding: 16px 2%;
    }
}

@media (max-width: 1200px){
    .m-title {
        font-size: 4.2rem;
    }

    .m-sub-title {
        font-size: 2rem;
        line-height: 3rem;
    }

    .m-desc {
        font-size: 1.4rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 991px){
    .m-title {
        margin-bottom: 1rem;
    }

    .m-sub-title,
    .m-desc {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 350px){
    .m-title {
        letter-spacing: 0.02em;
    }
}


/* ADD NEW */
.lh2 {
    line-height: 2;
}

.exLink {
    display: block;
    border-radius: 100px;
    line-height: 1;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    background: var(--primary-color);
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}
.exLink::before {
    position: absolute;
    top: 0;
    left: 0;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0, 1);
    transform-origin: right top;
    z-index: 1;
}

.exLink:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}

.exLink span::after {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-left: 2rem;
    background: url(../img/common/external-link.svg) no-repeat top left / 100% 100%;
}

.txtGreen {
    color: var(--primary-color);
}

.mv340 {
    height: 340px;
    position: relative;
}

.mv340 h2 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
}

.mv340 h2 span {
    display: block;
    line-height: 1;
}

.mv340 h2 span:nth-child(1) {
    font-size: min(4vw, 8rem);
    margin-bottom: 1rem;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.06em;
}

.mv340 h2 span:nth-child(2) {
    font-size: min(2vw, 2.8rem);
}

.titSub {
    line-height: 1;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: bold;
}

.titSub.left {
    text-align: left;
}

.titSub span {
    color: var(--primary-color);
    font-size: 1.6rem;
    display: block;
    margin-bottom: 1.5rem;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.06em;
}

.titSub h3 {
    font-size: min(2.8vw, 3.6rem);
    letter-spacing: 0;
}

@media (max-width: 767px){
    .commonTxt {
        font-size: 1.4rem;
    }

    .titSub {
        margin-bottom: 3rem;
    }

    .titSub span {
        font-size: min(3.5vw, 1.6rem);
    }

    .titSub h3 {
        font-size: min(6vw, 3.6rem);
        line-height: 1.4;
    }

    .mv340 {
        height: 240px;
    }

    .mv340 h2 span:nth-child(1) {
        font-size: min(8vw, 8rem);
    }

    .mv340 h2 span:nth-child(2) {
        font-size: min(4vw, 2.8rem);
    }


}


/* Footer */
footer .container {
    max-width: 1760px;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
}

.footer__info-contact {
    text-align: center;
}

.footer__info-contact p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer__info-contact .ui-button {
    margin: 0 auto;
    padding: 12px 2%;
    max-width: 340px;
    font-size: 1.8rem;
    font-weight: bold;
}

.footer__info-cr {
    width: 100%;
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    color: var(--primary-color);
    margin-top: 50px;
}

.footer__menu li:not(:last-child) {
    margin-bottom: 1rem;
}

.footer__menu a {
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: block;
    text-align: right;
}

.footer__menu a.policy{
    font-family: メイリオ, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 1.4rem;
}

/*.footer__menu a:hover {
    text-decoration: underline;
    text-underline-offset: 5px
}*/

.footer__menu a:hover,
.footer__menu a.is-active {
    color: var(--primary-color);
}

#pagetop {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: fixed;
    z-index: 996;
    right: 20px;
    bottom: 20px;
    background: var(--primary-color);
    display: none;
    cursor: pointer;
}

#pagetop::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(../img/common/arrow-top.png);
    background-size: cover;
    top: 35%;
    left: 37%;
}

@media (min-width: 992px){
    .footer__info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer__info-contact {
        border-left: 1px solid #d4ebd4;
        padding-left: 5%;
        margin-left: 5%;
    }
}

@media (max-width: 991px){
    .footer__wrap {
        padding: 40px 0 20px;
        justify-content: center;
    }

    .footer__info-cr {
        text-align: center;
        margin-top: 110px;
    }

    .footer__info-logo {
        margin-bottom: 20px;
    }

    .footer__info-contact p {
        margin-bottom: 20px;
    }

    .footer__menu {
        display: none;
    }

    #pagetop {
        bottom: 50px;
    }
}

/* Animate */
.fade-in{opacity: 0; transition: all 2s ease;}
.fade-in.is-view{opacity: 1;}

.fade-up{opacity: 0; transform: translateY(80px); -webkit-transform: translateY(80px); filter: blur(5px) brightness(105%); transition: all 1s ease;}
.fade-up.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.fade-down{opacity: 0; transform: translateY(-80px); -webkit-transform: translateY(-80px); filter: blur(5px) brightness(105%); transition: all 1s ease;}
.fade-down.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.fade-left{opacity: 0; transform: translateX(-80px); -webkit-transform: translateX(-80px); filter: blur(5px) brightness(105%); transition: all 1s ease;}
.fade-left.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.fade-right{opacity: 0; transform: translateX(80px); -webkit-transform: translateX(80px); filter: blur(5px) brightness(105%); transition: all 1s ease;}
.fade-right.is-view{opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); filter: blur(0) brightness(100%);}

.zoom-in{opacity: 0; overflow: hidden; transform: scale(0.7,0.7); -webkit-transform: scale(0.7,0.7); transition: all 1s ease;}
.zoom-in.is-view{opacity: 1; transform: scale(1,1); -webkit-transform: scale(1,1);}

.zoom-out{opacity: 0; overflow: hidden; transform: scale(1.3,1.3); -webkit-transform: scale(1.3,1.3); transition: all 1s ease;}
.zoom-out.is-view{opacity: 1; transform: scale(1,1); -webkit-transform: scale(1,1);}

@media (min-width: 768px){
    .delay1{transition-delay: .2s;}
    .delay2{transition-delay: .4s;}
    .delay3{transition-delay: .6s;}
    .delay4{transition-delay: .8s;}
    .delay5{transition-delay: 1s;}
    .delay6{transition-delay: 1.2s;}
    .delay7{transition-delay: 1.4s;}
}