@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
}
body{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-style: normal;
    color: #2f2f2f;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 150%;
    background-color: #ffffff;
}
body * {
    box-sizing: border-box;
}
img{
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;

}

/*  common PC */
@media screen and (min-width:769px){
body{
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 300%;
}
}

/* humbgr */
.humberger {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.hmbgr01, .hmbgr02, .hmbgr03 {
    background-color: #FDBF1E; 
    border-radius: 3px;
    height: 3px; 
    width: 20px; 
    transition: all 0.3s ease; 
    position: relative;
}
.hmbgr02{
    background-color: #F78E25;
}
.hmbgr03{
    background-color: #1370A4;
}

/* 線同士の間隔を設定 */
.hmbgr02 {
    margin-top: 4px;
    margin-bottom: 4px;
}

/* メニューがアクティブ状態（menuOn）になった時の動き */
.hmbgr01.menuOn {
    transform: translateY(7px) rotate(45deg);
}

.hmbgr03.menuOn {
    transform: translateY(-7px) rotate(-45deg);
}

.hmbgr02.menuOn {
    opacity: 0; 
}
.humberger::after{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(../img/0_common/navBack__plus.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 17px;
    z-index: -1;
    display: none;
}
.humberger{
    position: relative;
}
.humberger.menuOn::after{
    display: block;
}


/* -- nav -- */

    .headerForPc{
        display: none;
    }

    /* article__header */
    .mainImg__logo{
        width: 37px;
        max-width: 70px;
        margin-top: 3px;
    }
    .humberger{
        min-width: 20px;
        position: fixed;
        right: 5.3%;
        z-index: 100;
    }
    .article__header{
        padding-inline: 5.3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
        height: 70px;
        background-color: #E25D20;
    }


    /* navの基本設定 */

    .navOne{
        display: inline;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.5; 
        list-style: none;
    }
    .navOne:nth-of-type(1):after{
        content: '';
        display: inline-block;
        width: 3.5px;
        height: 12.5px;
        background-image: url(../img/0_common/nav_srash.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-left: 10px;
    }
    .navOne--particuler::after{
        content: '';
        display: inline-block;
        width: 7.6px;
        height: 10px;
        background-image: url(../img/0_common/nav__arrow--black.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-left: 5px;
    }
    .navBox{
        display: flex;
        padding: 10px 15px;
        align-items: center;
        gap: 10px;
        border-radius: 50px;
        border: 0.3px solid #000;
        background: #FFF;
        margin-top: 10px;
        width: fit-content;
        margin-inline: auto;
    }
    .navBox:nth-of-type(1){
        margin-top: 20px;
    }

    .nav__logo{
        width: 45px;
        height: 45px;
    }
    .nav__insta{
        width: 30px;
        height: 30px;
    }
    .navBox__icon{
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    /* 背景の設定 */
.nav{
    width: 100%;
    flex-shrink: 0;
    margin-inline:auto 0;
    position: relative;
}

/* 背景内での位置の調整 */
.kakomi1{
    margin-inline: auto;
    padding-block: 100px;
    background-image: url(../img/0_common/navBack.png);
    background-position: calc(50% + 30px) 0%;
    background-repeat: no-repeat;
    background-size: 400px;
}


/* navのnav設定 */
.nav{
    position: fixed;
    width: 100%;
    top: 10px;
    right: 0;
    z-index: 50;
    opacity: 0;
    transition: all 1s;
    pointer-events: none;
}
.nav.active{
    opacity: 1;
    animation: float3 2.5s linear infinite;
    pointer-events: unset;
}
.nav.fade-out {
    opacity: 0;
}

@keyframes float3 {
    0% {
      transform: translateY(0)
    }
    50% {
      transform: translateY(-6px)
      
    }
    
    100% { transform: translateY(0px)
    }
  }



/* --  nav PC =header -- */
@media screen and (min-width:769px){
    .nav{
        display: none;
    }
    .article__header{
        display: none;
    }

    /* ヘッダーの設定 */
    .headerForPc{
        padding: 50px 2%;
        display: block;
        display: flex;
        justify-content: space-between;
        background-image: url(../img/0_common/headerBackForPc.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 320px;
    }
    .header__region{
        width: 200px;
    }
    .menuOne{
        width: fit-content;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 100%; 
    }
    .menuOne::after{
        content: '';
        display: inline-block;
        width: 3.5px;
        height: 12.5px;
        background-image: url(../img/0_common/nav_srash.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-left: 10px;
    }
    .menuOne:nth-of-type(5)::after{
        display: none;
    }
    .menuOne--particuler::after{
        content: '';
        display: inline-block;
        width: 7.6px;
        height: 10px;
        background-image: url(../img/0_common/nav__arrow--black.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .menu__ue{
        display: flex;
        padding: 12px 30px;
        align-items: center;
        gap: 20px;
        align-self: stretch;
        list-style: none;
        background-color: #ffffff;
        border-radius: 50px;
    }
    .menuOne--particuler{
        width: fit-content;
        margin-top: 20px;
        padding: 12px 30px;
        background-color: #ffffff;
        border-radius: 50px;
        text-align: right;
    }
    .menuOne--particuler:hover{
        opacity: unset;
    }
    .menuOne--particuler a{
        opacity: 0.8;
    }

    .menu__shita{
        width: fit-content;
        margin-inline: auto 0;
    }

}



/*  --  footer -- */  

    .footerForPc{
        display: none;
    }
    .footerImgForSp{
        display: block;
    }
    .footerImgForSp__large{
        display: none;
    }

    /* kakomiの文字設定 */

    .footer__logo img{
        display: block;
        width: 45px;
        height: 45px;
    }
    .footer__logo a{
        display: block;
    }
    .footer__insta img{
        display: block;
        width: 30px;
        height: 30px;
    }
    .footer__icon{
        display: flex;
        align-items: center;
        gap:15px;
    }
    .footer__icon a{
        display: block;
    }
    .footer__one{
        font-size: 1.1rem;
        text-align: center;
        line-height: 100%;
        list-style: none;
    }
    .footer__ue{
        display: flex;
        gap: 10px;
        border-radius: 50px;
        background: #FFF;
        padding: 10px 15px;
        margin-top: 10px;
        width: fit-content;
        align-items: baseline;
    }
    .footer__one::before{
        content: '';
        display: inline-block;
        width: 3.5px;
        height: 12.5px;
        background-image: url(../img/0_common/nav_srash.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-right: 10px;
    }
    .footer__one--particuler::after{
        content: '';
        display: inline-block;
        width: 7.6px;
        height: 12.5px;
        background-image: url(../img/0_common/nav__arrow--black.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-left: 5px;
    }
    .footer__one:nth-of-type(1)::before{
        display: none;
    }
    .footer__shita--left{
        display: flex;
        border-radius: 50px;
        background: #FFF;
        padding: 10px 15px;
        width: fit-content;
        gap: 10px;
        align-items: baseline;
    }
    .footer__shita--right{
        display: flex; 
        border-radius: 50px;
        background: #FFF;
        padding: 10px 15px;
        align-items: center;
    }

    .footer__shita{
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
    }
    .footer__region{
        display: block;
        width: 65%;
        margin-inline: auto;
        margin-top: 30px;
    }

    /* menu部分の位置調整 */
    .footer__kakomi1{
        width: 100%;
        padding-inline: 5.3%;
        position: absolute;
        margin: 0 auto;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);

    }
    

    .kakomi1__inner{
        width: fit-content;
        max-width: 500px;
        margin: 0 auto;  
    }
    .footerForSp{
        position: relative;
        background-color: #F4F8E6;
    }

    /* copyright */
    .copy{
    color:#21A469;
    text-align: center;
    padding-bottom: 20px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}






    /* --  footer -- */
    @media screen and (min-width:540px) {
        .footerImg{
            display: none;
        }
        .footerImgForSp__large{
            display: block;
        }
        .footer__kakomi1{
            top: 12%;
        } 
    }
    @media screen and (min-width:769px) {

    .footerForSp{
        display: none;
    }
    .footerForPc{
        display: block;
    }
    .footerForPc{
        background-color: #F4F8E6;
    }

    .footer_region{
        display: block;
        width: 200px;
        margin-inline: unset;
        margin-top: 0px;
    }
    .menu__ue{
        width: fit-content;
        white-space: nowrap;
        margin-inline: auto 0;
    }

    .footer__iconForPc{
        text-align: end;
        display: flex;
        gap: 15px;
        width: fit-content;
        margin-inline: auto 0;
        align-items: center;
        margin-top: 20px;
    }
    
    /* menuの位置調整 */
    .footerForPc{
        position: relative;
        
    }
    .footer__kakomi2{
        width: 100%;
        padding-inline: 30px;
        position: absolute;
        top:17%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1440px;
    }

    /* max-widthの指定 */
    .inner__footerForPc{
        display: flex;
        justify-content: space-between;
        max-width: 1440px;
        width: 100%;

    }

}

/* btn:hover */
/* headerのhoevr */
.menuOne:hover{
    opacity: 0.5;
    transition: 0.1s;
}
.navOne:hover{
    opacity: 0.5;
    transition: 0.1s;
}
.footer__one:hover{
    opacity: 0.5;
    transition: 0.1s;
}
.menuOne--particuler:hover{
    opacity: unset;
}
.menuOne--particuler a:hover{
    opacity: 0.5;
}