@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: 9vw;
    padding: 0% 1%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 100;
}

h1 {
    width: 20%;
    margin-left: 5%;

}

h1 img {
    width: 100%;
}

.header-flexbox nav {
    width: 55%;
    margin-top: 3.5%;
    margin-left: 13%;
}

.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;
    line-height: 1.5;
    font-family: Chathura;
    font-size: 3.8vw;
    color: #333;
    transition: 0.5s;
}

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

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


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

/* トップに戻る */
#page-top {
    display:none;    
}


/* メイン */

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

main section h3 {
    width: fit-content; 
    margin-top: 7%;
    margin-left: 7%;
    letter-spacing: 0.2em;
    font-family: Noto_Sans_JP;
    font-size: 1.9vw;
    font-weight: 100;
    color: #505050;
}


/* ふわっと出す */
.box {
    opacity: 0;/* ふわっと出てくるときに透明から→可視化したいので最初は透明 */
    transition: 1s;/* 時間をかけてフワッと出てきてほしいので時間指定している */
    transform: translateY(40px);
}

.isAnimate {
    opacity: 1;/*elemというクラス名を付けた要素が画面内に入ったときに可視化する */
    transform: translateY(0px);/* elemというクラス名を付けた要素が画面内に入ったときに
    下から上に少し移動させている */
  }


main section .style-box {
    display: flex;
    gap: 3%;
    width: 85%;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
    
}


main section .style-box .staffbox {
    width: 25%;
}

main section .style-box .staffbox img {
    width: 100%;
}

.style-box .staffbox h4 {
    width: fit-content; 
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: Noto_Sans_JP;
    font-weight: 300;
    font-size: 1.1vw;
    color: #505050;
}

.style-box .staffbox p {
    width: fit-content; 
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: Noto_Sans_JP;
    font-weight: 100;
    font-size: 1.8vw;
    color: #505050;
}

.style-box .staffbox p span {
    letter-spacing: 0.3em;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 01.3vw;
    color: #858484;
}

main section .box:nth-of-type(3) {
    margin-bottom: 10%;
}


/* 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%); }
  } */