@charset "utf-8";
html,body{
    font-size: 62.5%;
    scroll-behavior: smooth;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
}
.fadein {
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .fadein.animated {
    opacity: 1;
  }

:root{
    --primary-fontsize16px: clamp(0.1rem, 4.27vw, 1.6rem);
    --primary-fonts1: "Noto Sans JP", sans-serif;
    --primary-fonts2: Arial;
    --primary-orange:#F5BC39;
    --primary-red:#CA2E22;
    --primary-green:#007559;
    --primary-footerglay:#f7f5f0;
    --primary-glay:#f5f5f5;
    --primary-white:#ffffff;
    --primary-black:#555555;
    --primary-margin25pxsp: 6.7vw;
    --primary-margin140pxpc: 9.72vw;
}
/* ======header====== */
.header{
    display: flex;
    margin: 15px var(--primary-margin25pxsp);
    justify-content: space-between;
}
.header__logo{
    width: 30px;
    height: 20px;
}

.header__logo img{
    width: 100%;
}

/* nav */
.nav{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.4s;
    padding: 15px var(--primary-margin25pxsp);
    background-color: var(--primary-white);
    box-sizing: border-box;
}
.nav.active {
    transform: translateX(0);
}

.header__close{
    margin-left: auto;
    z-index: 250;
}
.header__close,
.header__btn{
    background-color: var(--primary-glay);
    width: 50px;
    height: 30px;
    position: relative;
    border-radius: 30px;
}

.header__close1,
.header__close2,
.header__btn1,
.header__btn2{
    width: 20px;
    height: 1px;
    display: block;
    background-color: var(--primary-orange);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.header__close1{
    transform: translate(-50%,-50%) rotate(45deg);
}

.header__close2{
    transform: translate(-50%,-50%) rotate(-45deg);
}

.header__btn1{
    top: 12px;
}

.header__btn2{
    top: 19px;
}

.nav__list{
    width: 86.67vw;
}
.nav__item1{
    margin-top: 50px;
}
.nav__item1,
.nav__item2,
.nav__item3,
.nav__item4{
    margin-top: 20px;
    font-size: 1.6rem;
    width: 86.67vw;
}
.nav__item1 a,
.nav__item2 a,
.nav__item3 a,
.nav__item4 a{
    position: relative;
    cursor: pointer;
}
.nav__item1 a::before,
.nav__item2 a::before,
.nav__item3 a::before,
.nav__item4 a::before{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    left: 80vw;
    background-image: url(../img/item/nav__arrow.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.nav__item1 a::after,
.nav__item2 a::after,
.nav__item3 a::after,
.nav__item4 a::after{
    content: "";
    position: absolute;
    width: 86.67vw;
    left: 0;
    right: 0;
    bottom: -10px; /* テキストの下から10px離す */
    border-bottom: 1px dashed #ccc; /* 点線の下線 */
}
.nav__item1,
.nav__item2,
.nav__item3,
.nav__item4{
    white-space: nowrap;
}
/* pc */
@media screen and (min-width:769px){
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        position: static;
        transform: translate(0);
        padding: 0;
    }

    .header__btn,
    .header__close{
        display: none;
    }

    .header{
        justify-content: center;
        gap: 10px;
        margin-top: 32px;
        margin-bottom: 0px;
    }

    .header__logo{
        width: 52px;
        height: 52px;
    }

    .nav__list{
        gap: 20px;
        width: 100%;
        height: 43px;
        padding: 5px 20px;
        font-size: 1.4rem;
        display: flex;
        background-color: var(--primary-glay);
        border-radius: 30px;
    }
    
    .nav__item1 a,
    .nav__item2 a,
    .nav__item3 a,
    .nav__item4 a{
        text-align: center;
        padding: 5px;
    }
    .nav__item1 a::after,
    .nav__item2 a::after,
    .nav__item3 a::after,
    .nav__item4 a::after,
    .nav__item1 a::before,
    .nav__item2 a::before,
    .nav__item3 a::before,
    .nav__item4 a::before{
        display: none;
    }

}

/* =====main===== */
.fixed__contact{
    background-color: var(--primary-orange);
    width: 70px;
    height: 70px;
    border-radius:10px 10px 0px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    z-index: 100;
    bottom: 0px;
    right: 25px;
}

.fixed__contact__img img{
    width: 15px;
    height: 15px;
}

.fixed__contact__en,
.fixed__contact__ja{
    color: var(--primary-white);
    font-weight: 300;
}

.fixed__contact__en{
    display: none;
}

.fixed__contact__ja{
    font-family: var(--primary-fonts1);
    font-size: 1rem;
}
/* pc */
@media screen and (min-width:769px){
    .fixed__contact{
        width: 100px;
        height: 100px;
        border-radius: 0 0 30px 30px;
        gap: 5px;
        top: 0px;
        right: 80px;
    }
    
    .fixed__contact__img img{
        width: 24px;
        height: 24px;
    }
    
    .fixed__contact__en,
    .fixed__contact__ja{
        color: var(--primary-white);
        font-weight: 300;
    }
    
    .fixed__contact__en{
        display: block;
        font-family: var(--primary-fonts2);
        font-size: 1.3rem;
    }
    
    .fixed__contact__ja{
        font-family: var(--primary-fonts1);
        font-size: 1.3rem;
    }
}
/* =====footer===== */
footer{
    background-color: var(--primary-footerglay);
    padding: 0px var(--primary-margin25pxsp);
}
.footer__title{
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    color: var(--primary-orange);
    position: relative;
    padding-top: 30px;
}

.footer__title::after{
    content: '-Partner';
    display: inline-block;
    width: 62px;
    height: 24px;
    font-size: 1.4rem;
    font-weight: lighter;
    color: var(--primary-black);
    position: absolute;
    left: 110px;
    top: 32px;
}

.partner__logo{
    margin-top: 15px;
}
.partner__txt1,
.partner__txt2 a{
    font-size: 1.6rem;
}
.partner__txt2 a{
    margin-top: 10px;
    cursor: pointer;              
    display: inline-block;      
    position: relative;
}
.partner__txt2 a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;                 /* 文字の下に少し余白 */
    width: 100%;
    height: 2px;
    background: var(--primary-black);          /* 線の色（自由に変更） */
    transform: scaleX(0);         /* 初期は線が非表示 */
    transform-origin: left;
    transition: transform 0.3s ease;
}
.partner__txt2 a:hover::after{
    transform: scaleX(1);
}

/* .partner__logo1{
    width: 60px;
    height: 30px;
}

.partner__logo1 img{
    width: 100%;
} */

.footer__logo{
    width: 32px;
    height: 32px;
    margin-top: 20px;
}

.footer__logo img{
    width: 100%;
}

.footer__list,
.footer__sns{
    display: flex;
}

.footer__group{
    position: relative;
}

.footer__list{
    background-color: var(--primary-white);
    border-radius: 30px;
    color: var(--primary-black);
    width: 264px;
    height: 30px;
    padding: 5px 5px;
    font-size: 1.3rem;
    align-items: center;
    position: absolute;
    right: 0px;
    justify-content: space-evenly;
}

.footer__insta img,
.footer__x img,
.footer__tiktok img{
    width: 20px;
    height: 20px;
}

.footer__sns{
    margin-top: 15px;
    justify-content: flex-end;
    gap:10px;
}

.copy{
    text-align: center;
    padding: 10px 0px;
    font-size: 1.0rem;
}
/* pc */
@media screen and (min-width:769px){
    footer{
        padding: 0px var(--primary-margin140pxpc);
    }
    .footer__title{
        font-size: 3.2rem;
        padding-top: 50px;
    }
    
    .footer__title::after{
        width: 88px;
        height: 20px;
        font-size: 2rem;
        left: 180px;
        top: 62px;
    }
    .partner__txt1{
        margin-top: 25px;
    }
    /* .partner__logo{
        margin-top: 20px;
    } */
    
    .partner__logo1{
        width: 200px;
        height: 100px;
    }
    
    .footer__group{
        display: flex;
        margin-top: 40px;
        justify-content: space-between;
        position: unset;
    }
    
    .footer__logo{
        width: 90px;
        height: 90px;
    }

    .footer__sns{
        gap: 30px;
    }
    
    .footer__listsns{
        display: flex;
        gap: 50px;
    }
    
    .footer__list{
        width: 300px;
        height: 43px;
        padding: 5px 5px;
        font-size: 1.4rem;
        position: unset;
    }
    
    .footer__insta img,
    .footer__x img,
    .footer__tiktok img{
        width: 32px;
        height: 32px;
    }

    .footer__sns{
        margin-top: 0px;
        justify-content: unset;
    }
    
    .copy{
        padding:0px 0px 20px 0px;
        font-size: 1.2rem;
    }
}

/* ３７５以下 */
@media screen and (max-width:374px){
    .footer__list{
        width: 244px;
    }
}