@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Chathura;
    src: url(../font/Chathura/Chathura-Bold.ttf);
}

@font-face {
    font-family: Noto_Sans_JP;
    src: url(../font/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

body {
    background-color: rgb(238, 250, 215);
}

.header-flexbox {
    display: flex;
    width: 100%;
    height: 3.4vw;
    padding: 1.8% 3%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 100;
}

h1 {
    width: 14%;
}

h1 img {
    width: 100%;
}

.header-flexbox nav {
    width: 37%;
    margin-left: auto;
}

.header-flexbox nav ul {
    display: flex;
    list-style-type: none;
}

.header-flexbox nav ul li {
    margin-right: 5%;
}
.header-flexbox nav ul li a {
    width: fit-content;
    display: block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: Chathura;
    font-size: 2.2vw;
    color: #333;
    transition: 0.5s;
}

.header-flexbox nav ul li a:hover {
    color: #b9b9b9;
    transition: 0.5s;
}

header .sns-icon {
    width: 5%;
    margin-top: 0.7%;
    margin-right: 2.5%;
}

header .fa-instagram {
    color: #333;
    font-size: 1.8vw;
    transition: 0.5s;
}

header .fa-instagram:hover {
    color: #b9b9b9;
    transition: 0.5s;
}

.topvisual {
    background-image: url(../images/recruit.jpeg);
    background-size: cover;
    width: 100%;
    height: 30vw;
    margin-bottom: 5%;
}

/* トップに戻る */
#page-top {
    position: fixed;
    /* bottom: 80vw; */
    right: 1%;
    font-size: 77%;
    z-index: 100;
}
#page-top a {
    display: block;
    width: 100px;
    height: 100px;
    color: #4b4a4a;
}

#page-top a:hover {
    opacity: 0.5;
}

#page-top img {
    width: 50%;
    animation: fluffy 3s infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}



/* メイン */

main h2 {
    width: fit-content; 
    margin-left: 10%;
    margin-bottom: 10%;
    letter-spacing: 0.2em;
    font-family: Chathura;
    font-size: 5vw;
    color: #505050;
}

/* STAFF */
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
    }
    .scroll-infinity__wrap {
      display: none;
    }

.staff-box {
    @keyframes infinity-scroll-left {
        from {
            transform: translateX(0);
        }
            to {
            transform: translateX(-100%);
        }
        }
        .scroll-infinity__wrap {
            display: flex;
            overflow: hidden;
        }
    
        .scroll-infinity__list {
            display: flex;
            gap: 1%;
            margin-left: 1%;
            list-style: none;
            padding: 0
        }
        .scroll-infinity__list--left {
            animation: infinity-scroll-left 40s infinite linear 0.6s both;
        }
        .scroll-infinity__item {
            width: calc(100vw / 4.5);
        }
        .scroll-infinity__item>img {
            width: 20vw;
            height: 20vw;
            border-radius: 10vw;
        }
    
}






main section h3 {
    width: 90%;
    margin-bottom: 7%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 5;
    font-family: Noto_Sans_JP;
    font-size: 1.6vw;
    font-weight: 200;
    color: #505050;
    border-bottom: solid 0.5px  #666666;
}

.recruit-wrap {
    background-color: rgba(255, 255, 255, 0.7);
    width: 70%;
    margin-top: 10%;
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
    padding: 5% 5%;
}

.recruit-wrap .recruit-box p  {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: dashed 0.5px #a0a0a0;
    letter-spacing: 0.1em;
    line-height: 5;
    font-family: Noto_Sans_JP;
    font-weight: 100;
    font-size: 1.15vw;
    color: #505050;
}

.recruit-wrap .recruit-box span {
    display: inline-block;
    width: 20%;
    margin-left: 6em;
    margin-right: 5%;
    font-weight: 100;
}


/* entry */
main .entry-box {
    width: 40%;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}

main .entry-box p {
    display: block;
    width: 90%;
}

main .entry-box p a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 4;
    font-family: Noto_Sans_JP;
    font-weight: 400;
    font-size: 1.1vw;
    background-color: #535252;
    color: #fffefe;
    transition: 0.5s;
}

main .entry-box p a:hover {
    border: solid 0.2px #717171;
    background-color: rgba(255, 255, 255, 0.7);
    color: #222222;
    transition: 0.5s;
}



/* hooter */
footer {
    width: 100%;
    /* height: 30vw; */
    padding: 8% auto;
    background-color: #4b4a4a;
}

footer .logo {
    width: 15%;
    padding-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

footer .logo img {
    width: 100%;  
    margin-bottom: 2%; 
}

footer .logo p {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    line-height: 1.5;
    font-family: Chathura;
    font-weight: 400;
    font-size: 1.8vw;
    color: #ffffff;
}


/* snsアイコン */
footer .sns-icon {
    display: block;
    width: 10%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto; 
}


footer .sns-icon .fa-instagram {
    font-size: 1.8vw;
    color: #ffffff;
    margin-left: 2%;
}

footer .sns-icon .fa-facebook {
    font-size: 1.8vw;
    color: #ffffff;
    margin-left: 16%;
    margin-right: 16%;
}

footer .sns-icon .fa-square-x-twitter {
    font-size: 1.8vw;
    color: #ffffff;
}

.footer-line {
    width: 90%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: solid 0.5px #ffffff ;
}

/* フッターナビ */
.footer-flexbox nav {
    width: 39%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
}

.footer-flexbox nav ul {
    display: flex;
    gap: 7%;
    list-style-type: none;
}

.footer-flexbox nav ul li a {
    width: fit-content;
    display: block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: Chathura;
    font-size: 2.2vw;
    color: #ffffff;
    transition: 0.5s;
}

.footer-flexbox nav ul li a:hover {
    color: #999898;
    transition: 0.5s;
}


/* 予約・採用 */
.reserve-box {
    display: flex;
    gap: 5%;
    width: 50%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}

.reserve-box p {
    display: block;
    width: 90%;
}

.reserve-box p a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 3;
    font-family: Noto_Sans_JP;
    font-weight: 400;
    font-size: 1.1vw;
    border: solid 0.2px #ffffff;
    color: #fffefe;
    transition: 0.5s;
}

.reserve-box p a:hover {
    background-color: #ffffff;
    color: #222222;
    transition: 0.5s;
}





footer p small {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3%;
    letter-spacing: 0.2em;
    line-height: 1.5;
    font-size: 1vw;
    color: #ffffff;
}

   /* スライドライン */
   /* .bbs{
    align-items: center;
    color: #fff;
    display: flex;
    height: 20vw;
    line-height: 1;
    overflow:hidden;
    width: 100%;
    white-space:nowrap;
    margin-top: 10%;
    z-index: 1;
  }
  .bbs ul {
    animation: flowing 200s linear infinite;
    font-size: 20vw;
    transform:translateX(100%);
    margin: 0;
    padding: 0;
  }
  .bbs ul li{
    display: inline-block;
    padding-right: 1%;
    font-family: Chathura;
    letter-spacing: 0.07em;
    filter: opacity(60%);
  }
  @keyframes flowing {
    0% { transform:translateX(-100%); }
    100% { transform:translateX(0%); }
  } */