/*============================
header
============================*/
header{
    position: sticky;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    z-index: 999;
    background: #fff;
    border-bottom:1px solid #43a66b;
}
/* top --------------- */
.header-top{
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.header-ttl{
    font-size: 2.0rem;
    color:#fff;
    background:#43a66b;
    display: inline-block;
	padding: .6em 5% .6em 5%;
    clip-path: polygon(0 0,100% 0,calc(100% - 20px) 100%,0 100%);
}
.header-cta{
    display: flex;
    margin-right:3%;
}
.header-btn+.header-btn{
    margin-left:10px;
}
.header-btn{
    display: block;
    padding:.3em 1.6em;
    border-radius:0 0 15px 15px;
}
.header-btn.contact{
    font-size: 2.0rem;
    border:2px solid #e4644c;
    color:#e4644c;
    display: flex;
    align-items: center;
}
.header-btn.tel{
    border:2px solid #43a66b;
    background: #43a66b;
    color:#fff;
    text-align: center;
    font-size: 1.3rem;
}
.header-btn.tel span{
    display: block;
    font-family: "Roboto Condensed", sans-serif;
    font-weight:700;
    font-size: 3.5rem;
    line-height: 1;
}
/* bottom --------------- */
.header-bottom{
    width:90%;
    height:80px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header-logo{
    flex: 0 0 175px;
}
/* gnav --------------- */
.gnav-wrap{
    flex: 1 1 auto;
}
.gnav{
    display: flex;
    justify-content: flex-end;
    width:100%;
}
.gnav-item a{
    font-size: 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
}
.gnav-item+.gnav-item{
    margin-left:3%;
}
.gnav-item a::after{
    content: '';
    display: inline-block;
    width:13px;
    height:7px;
    background:url(../../img/icon_arrow_gr.svg) no-repeat;
    background-size: 100%;
    margin-left:.3em;
}
@media (max-width: 1200px){
    /* top --------------- */
    .header-ttl{
        padding: .6em 3% .6em 3%;
    }
    .header-cta{
        margin-right:2%;
    }
    .header-btn{
        padding:.3em 1em;
    }
    /* bottom --------------- */
    .header-bottom{
        width:95%;
    }
    .header-logo{
        flex: 0 0 14.583vw;
    }
    /* gnav --------------- */
    .gnav-item a{
        font-size: 1.333vw;
    }
    .gnav-item a::after{
        width:1.083vw;
        height:0.583vw;
    }
}
@media (max-width: 1040px){
    /* top --------------- */
    .header-ttl{
        font-size: 1.923vw;
    }
    .header-btn+.header-btn{
        margin-left:0.962vw;
    }
    .header-btn{
        border-radius:0 0 1.442vw 1.442vw;
    }
    .header-btn.contact{
        font-size: 1.923vw;
    }
    .header-btn.tel{
        font-size: 1.25vw;
    }
    .header-btn.tel span{
        font-size: 3.365vw;
    }
}
@media (max-width: 960px){
    .sp-menu-trigger {
        display: none;
    }
}
@media (max-width: 960px){
    /* bottom --------------- */
    .header-bottom{
        width:95%;
        height:60px;
    }
    .header-logo{
        flex: 0 0 155px;
    }
    /* gnav --------------- */
    .gnav-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
    }
    .gnav-wrap.is-active {
        opacity: 1;
        visibility: visible;
    }
    .gnav {
        display: block;
        width: 80%;
        text-align: center;
        margin:0 auto;
    }
    .gnav-item{
        border-bottom:1px solid #dadada;
    }
    .gnav-item:first-of-type{
        border-top:1px solid #dadada;
    }
    .gnav-item a {
        font-size: 1.6rem;
        justify-content: center;
        padding:1em 0;
    }
    .gnav-item a::after {
        width:13px;
        height:7px;
    }
    .gnav-item+.gnav-item{
        margin-left: 0;
    }
    /* hamburger --------------- */
    .sp-menu-trigger {
        display: block;
        position: absolute;
        top:0;
        bottom:0;
        margin:auto;
        right: -1vw;
        z-index: 1001;
        width: 44px;
        height: 44px;
        cursor: pointer;
    }
    .sp-menu-btn {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .sp-menu-btn span {
        display: block;
        position: absolute;
        left: 10px;
        width: 22px;
        height: 2px;
        background-color: #43a66b;
        transition: all 0.4s;
    }
    .sp-menu-btn span:nth-child(1) { top: 13px; }
    .sp-menu-btn span:nth-child(2) { top: 21px; }
    .sp-menu-btn span:nth-child(3) { top: 29px; }
    .sp-menu-trigger.is-active span:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
    }
    .sp-menu-trigger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .sp-menu-trigger.is-active span:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
    }
}
@media (max-width: 768px){
    /* top → footer固定 --------------- */
    .header-top{
        margin:0 auto;
        display: initial;
        position: fixed;
        bottom:0;
        left:0;
        background: #fff;
        width:100%;
        z-index: 1000;
        border-top:1px solid #fff;
        height:15vw;
    }
    .header-ttl{
        display: none;
    }
    .header-cta{
        margin-right:0;
        height:100%;
    }
    .header-btn{
        padding:.3em .3em;
        border-radius:0;
        flex: 1;
    }
    .header-btn+.header-btn{
        margin-left:0;
    }
    .header-btn.contact{
        font-size: 4.3vw;
        background: #e4644c;
        color:#fff;
        justify-content: center;
    }
    .header-btn.tel{
        font-size: 2.7vw;
        line-height: 1.2;
    }
    .header-btn.tel span{
        font-size: 5.9vw;
    }
    /* bottom --------------- */
    .header-bottom{
        height: 12vw;
    }
    .header-logo{
        flex: 0 0 30vw;
    }
    /* gnav --------------- */
    .gnav-item a{
        font-size: 4.3vw;
    }
    .gnav-item a::after{
        width:3.467vw;
        height:1.867vw;
    }
    /* hamburger --------------- */
    .sp-menu-trigger{
        width:12vw;
        height:12vw;
    }
    .sp-menu-btn span{
        left:3vw;
        width:6vw;
        height:2px;
    }
    .sp-menu-btn span:nth-child(1){
        top:3vw;
    }
    .sp-menu-btn span:nth-child(2){
        top:5.5vw;
    }
    .sp-menu-btn span:nth-child(3){
        top:8vw;
    }
    .sp-menu-trigger.is-active span:nth-child(1){
        top:5.5vw;
    }
    .sp-menu-trigger.is-active span:nth-child(3){
        top:5.5vw;
    }
}

/*============================
コンテナ
============================*/
.l-wrap{
    position: relative;
}
.cont-inn{
    width:90%;
    max-width:1296px;
    margin:0 auto;
}
.cont-inn-s{
    width:85%;
    max-width:1224px;
    margin:0 auto;
}
section{
    margin-top:100px;
}
@media (max-width: 768px){
    .l-wrap{
        position: relative;
    }
    .cont-inn{
        max-width:initial;
    }
    .cont-inn-s{
        width:90%;
        max-width:initial;
    }
    section{
        margin-top:15vw;
    }
}

/*============================
btn
============================*/
.btn-cta{
    display: block;
    width:100%;
    max-width:520px;
    background: #e4644c;
    height:90px;
    line-height: 90px;
    font-size: 2.6rem;
    color: #fff;
    border-radius:999px;
    text-align: center;
    position: relative;
}
a.btn-cta{
	color: #fff;
}
.btn-cta::after{
    content:'';
    position: absolute;
    width:10px;
    height:20px;
    background:url(../../img/icon_arrow_w.svg) no-repeat;
    background-size: 100%;
    right:1em;
    top:0;
    bottom:0;
    margin:auto;
}
.btn-link{
    display: block;
    width:100%;
    max-width: 380px;
    height:62px;
    line-height: 62px;
    font-size: 2.2rem;
    color: #fff;
    border-radius:999px;
    text-align: center;
    position: relative;
    margin:0 auto;
    background:#e4644c;
}
a.btn-link{
	color: #fff;
}
.btn-link::after{
    content:'';
    position: absolute;
    width:8px;
    height:14px;
    background:url(../../img/icon_arrow_w.svg) no-repeat;
    background-size: 100%;
    right:1em;
    top:0;
    bottom:0;
    margin:auto;
    transform: rotate(90deg);
}
@media (max-width: 1024px){
    .btn-cta{
        max-width:50.781vw;
        height:8.789vw;
        line-height: 8.789vw;
        font-size: 2.539vw;
    }
    .btn-cta::after{
        width:0.977vw;
        height:1.953vw;
    }
    .btn-link{
        max-width: 37.109vw;
        height:6.055vw;
        line-height: 6.055vw;
        font-size: 1.953vw;
    }
    .btn-link::after{
        width:0.781vw;
        height:1.367vw;
    }
}
@media (max-width: 768px){
    .btn-cta{
        max-width:80vw;
        height:14vw;
        line-height: 14vw;
        font-size: 5.3vw;
    }
    .btn-cta::after{
        width:2.1vw;
        height:3.7vw;
    }
    .btn-link{
        max-width:80vw;
        height:14vw;
        line-height: 14vw;
        font-size: 4.8vw;
    }
    .btn-link::after{
        width:2.1vw;
        height:3.7vw;
    }
}

/*============================
FL cta
============================*/
a.fl-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background: #e4644c;
    width: 60px;
    padding: 1.5em 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}
a.fl-btn p {
    writing-mode: horizontal-tb;
    width: 1em;
    margin: 0 auto;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.1;
    word-break: break-all;
}
a.fl-btn p span {
    display: block;
    width: 100%;
    text-align: center;
}
@media (max-width: 768px){
    a.fl-btn{
        display: none;
    }
}

/*============================
ttl
============================*/
.sec-ttl{
    font-size: 5.4rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom:50px;
}
@media (max-width: 1024px){
    .sec-ttl{
        font-size: 5.3vw;
        margin-bottom:7vw;
    }
}
@media (max-width: 768px){
    .sec-ttl{
        font-size: 8vw;
        margin-bottom:7vw;
    }
}

/*============================
txt
============================*/
.note {
    font-size: 0.6em;
}
.txt-note{
    font-size: 1.3rem;
    padding-left: 1em;
    text-indent: -1em;
    font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px){
    .txt-note{
        font-size: 3.2vw;
    }
}

/*============================
color
============================*/
.col-gr{
    color: #43a66b;
}
.col-pk{
    color: #d974a9;
}
.bg-gr{
    background: #43a66b;
}
.bg-pk{
    background:#d974a9;
}
.bg-or{
    background: #e4644c;
}

/*============================
footer
============================*/
footer .cont-inn{
    padding:100px 0;
}
footer .cont-inn >*+*{
    margin-top:50px;
}
.footer-txt{
    color: #005e15;
    font-size: 1.8rem;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}
.footer-logo{
    width:226px;
    margin:0 auto
}
.footer-link{
    display: flex;
    justify-content: center;
}
.footer-link a{
    text-align: center;
    display: block;
    border-radius: 15px;
    font-size: 1.8rem;
    color: #fff;
    flex: 1 1 190px;
	max-width: 190px;
    padding:.5em 1em;
    line-height: 1.4;
}
.footer-link a+a{
    margin-left:20px;
}
.footer-copy{
    background: #43a66b;
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    padding:1em;
    font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px){
    footer .cont-inn{
        padding:15vw 0 7vw;
    }
    footer .cont-inn >*+*{
        margin-top:7vw;
    }
    .footer-txt{
        font-size: 4.8vw;
    }
    .footer-logo{
        width:60vw;
    }
    .footer-link a{
        border-radius: 4vw;
        font-size: 4vw;
        flex: 1 1 50vw;
        max-width: 50vw;
        padding:.5em .3em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-link a+a{
        margin-left:3vw;
    }
    .footer-copy{
        font-size: 2.7vw;
        padding:.5em;
        margin-bottom:15vw;
    }
}
