@charset "utf-8";

/*===========
common
=============*/
:root{
    --primary-Black:#231815;
    --primary-Darkgrey:#6A6666;
    --primary-Lgrey:#9C9999;
    --primary-orange:#F64E28;
    --primary-yellow:#F9B42C;
    --primary-offwhite:#F6F4EA;
    --primary-white:#fbfbfb;
}

html{
    font-size: 62.5%;
}

body{
    font-family:Montserrat, IBM Plex Sans JP, sans-serif;
    font-style: normal;
    color: #231815;
    background-color:#F6F4EA ;
    line-height: 1.5;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img{
    max-width: 100%;
    height: auto;
}

.ttl{
    font-family: Montserrat;
    font-size: 6.4rem;
    font-weight: 900;
}

/*==テロップ==*/
.menu-banner {
  overflow: hidden;
  height: 64px;
  width: 100%;
  background-color: #fff; /* 一旦 var を外して白に固定 */
  border-top: 3px solid var(--primary-Black);
  border-bottom: 3px solid var(--primary-Black);
  position: relative;
}

.menu-banner__track-wrapper {
  display: flex;
  width: fit-content;
  animation: scroll-menu 15s linear infinite;
}

.menu-banner__content {
  display: flex;
  white-space: nowrap;
}

.menu-banner__content span {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 64px;
  color: #231815;
  padding-right: 4rem;
}

@keyframes scroll-menu {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*common pc*/
@media screen and (min-width:769px) {
    .ttl{
        font-size: 10.4rem;
    }

     /*==テロップ==*/
     .menu-banner {
        height: 136px;
        }

        .menu-banner__content span {
        font-size: 3.6rem;
        line-height: 136px;
        }
}/*pc769px*/


/*===========
header
=============*/
.header{
    padding: 19px 4.2%;
    background-color: var(--primary-white);
    border-top: 2px solid var(--primary-Black);
    border-bottom: 2px solid var(--primary-Black);
    position: fixed;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header__area{
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
}

.header__logo{
    width: 220px;
}

.header__btn{
    display: block;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 4.2%;
    cursor: pointer;
}

@media screen and (min-width:769px) {
    .header{
        padding: 10px 11.1%;
         height: 67px;
         top: 0; /* ← これが無いと意図せぬ位置に配置されることがあります */
    }

    .header__logo{
        width:  280px;
        height: auto;
    }
    
    .header__btn{
        width: 44px;
        height: auto;
        position: absolute;
        top: 18px;
        right: 11.1%;
    }
}

@media screen and (min-width:1024px) {
    .header{
        padding: 14px 11.1%;
        height: 67px;
    }

    .header__logo{
        width:  300px;
        height: auto;
    }
    
    .header__btn{
        width: 50px;
        height: auto;
        position: absolute;
        top: 14px;
        right: 11.1%;
    }
}/*pc769px*/

/*===========
navの初期表示
=============*/
.nav{
    background-color: var(--primary-white);
    border-top: 2px solid var(--primary-Black);
    border-bottom: 2px solid var(--primary-Black);
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translate(-100%);
    transition: 0.4s;
}

.nav.active {
    transform: translate(0);
  }

.nav__header{
    padding: 19px 4.2%;
    background-color: var(--primary-white);
   /* border-top: 2px solid var(--primary-Black);*/
    border-bottom: 2px solid var(--primary-Black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-close-btn{
    width: 28px;
}


.nav__area{
    background-image: url(../images/bg-yellow-sp.svg);
    padding: 16px 4.2%;
    position: relative;
}

.nav__group{
    background-color:var(--primary-offwhite) ;
    border-radius: 16px;
    border: 2px solid var(--primary-Black);
    padding: 28px 0 47px 12.2%;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
}

.nav__item{
    color: var(--primary-Black);
    text-align: left;
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 900;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__top{
    margin-top: 0;
}

.nav__item::before{
    content: "";
    display: inline-block;
    width: 40px;
    height: 6px;
    background-color: var(--primary-orange);

}

.nav__item-p{
    color:var(--primary-Black);
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 20px 0 0 10.7%;
}

.nav__group::after{
    display: inline-block;
    content: '';
    position: absolute;
    background-image: url(../images/mitake.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    width: 100px;
    height: 142px;
    bottom: 75px;
    right: 5%;
}

/*ホバーしたら文字が大きくなる*/
.nav__item a,
.nav__item-p a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav__item a:hover,
.nav__item-p a:hover {
  transform: scale(1.1);
}

@media screen and (min-width:769px) {
    .nav__header{
        padding: 16px 11.1%;
    }

    .header-close-btn{
        width: 44px;
        height: 32px;
        position: absolute;
        top: 17px;
        right: 11.1%;
    }
}

@media screen and (min-width:769px) {
    .nav__header{
        padding: 10px 11.1%;
    }

    .header-close-btn{
        position: absolute;
        top: 10px;
        right: 11.1%; 
        width: 32px;
        height: auto;
    }

    .nav__area{
        background-image: url(../images/bg-yellow-pc.jpg);
        padding:  45px 11.1%;
    }

    .nav__group{
        background-color:var(--primary-offwhite) ;
        border-radius: 16px;
        border: 2px solid var(--primary-Black);
        padding: 30px 5.4%;
        max-width: 808px;
        height: auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 22%;
    }

    .nav__item{
        font-size: 3.0rem;
        margin-top: 54px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .nav__top,.nav__aboutmore{
        margin-top: 0;
    }
    
    .nav__item-p{
        font-size: 2.0rem;
        margin: 40px 0 0 44%;
    }

    .nav__group::after{
        width: 20%;
        height: 16vw;
        bottom: 15px;
        right: 1%;
    }

}/*pc769px*/



/*=====================================
footer
=========================================*/
.footer{
    background-image: url(../images/bg-yellow-sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-top: 2px solid var(--primary-Black);
}

.footer__group__sp{
    padding: 66px 11.7% 105px;
}

.footer__group__pc{
    display: none;
}

.footer__topic{
    width: 250px;
    height: 128px;
    margin: 0 auto;
}

.address{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 32px;
    text-align: center;
}

.map{
    width: 228px;
    border-radius: 16px;
    border: 4px solid var(--primary-Black);
    margin: 0 auto;
    display: block;
    filter: grayscale(100%);
}

.address__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    width: 253px;
    margin: 4px auto 0;
}

.train{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.open-date{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 32px auto 0;
    width: 194px;
}

.sns{
    margin-top: 43px;
    display: flex;
    justify-content: center;
    gap: 0 40px;
}

.sns__item{
    width: 40px;
    height: 40px;
}

.copy{
    background-color: var(--primary-white);
    border-top: 2px solid var(--primary-Black);
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
    height: 34px;
    text-align: center;
    padding: 8px 0;
}

.small{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

@media screen and (min-width:769px) {
    .footer{
        background-image: url(../images/bg-yellow-pc.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-top: 2px solid var(--primary-Black);
    }

    .footer__group__pc{
        padding: 130px 4.2% 147px;
        max-width: 900px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 0 10%;
    }

    .footer__group__sp{
        display: none;
    }

    .map__content,
    .footer__content {
         width: 320px;
    }


    .map{
        width: 320px;
        height: 320px;
        filter: grayscale(100%);
    }

    .footer__topic{
        margin-left: 0 ;
    }

    .address{
        font-size: 2.4rem;
        margin-top: 18px;
        text-align: left;
    }
    
    .address__txt{
        font-size: 2.4rem;
        margin-top: 10px ;
        width: 340px;
    }
    
    .train{
        font-size: 2rem;
    }
    
    .open-date{
        font-size: 2.4rem;
        margin-top: 32px ;
        width: 328px;
    }
    
    .sns{
        margin-top: 18px;
        gap: 0 40px;
        justify-content: flex-start;
    }
    
    .copy{
        border-top: 2px solid var(--primary-Black);
        height: 57px;
        padding: 16px 0;
    }
    
    .small{
        font-size: 1.6rem;
    }

}/*pc768px*/
