* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
body {
  font-family: "Noto Serif JP", serif;
  background-color: #000;
  color: #fff;
}
.section-bg {
  position: fixed;
  top: 0;
  z-index: -1;
  opacity: 0.7;
  display: block;
  width: 100%;
}
.inline {
  display: inline-block;
}
/*header*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  color: #fff;
}
.header-inner {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
}
.header-nav {
  width: fit-content;
  display: flex;
  align-items: center;
}
.header-nav ul {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.header-nav li + li {
  margin-left: 2rem;
}
/*fv*/
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
}
.fv-img {
  position: relative;
  height: 100%;
}
.fv-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.fv-logo img {
  width: 30vw;
  min-width: 200px;
}
.fv-logo h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 4px;
}
/*==================================================
スライダーのためのcss
===================================*/
.fv-sliderwrap {
  position: relative;
}
.fv-sliderwrap::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #000;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.fv-slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.fv-slider .slider-item01 {
  background: url(../img/fv.jpg);
}

.fv-slider .slider-item02 {
  background: url(../img/gallery03.jpg);
}

.fv-slider .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*section*/
section {
  padding: 4rem 0;
}
/*about*/
.about {
  padding-top: 10rem;
}
.about-top {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
.about-top-main {
  font-size: 1.75rem;
}
.about-top-text {
  margin-top: 3rem;
  font-size: 1.2rem;
}
.about-top-text p {
  line-height: 1.7;
}
.mt2 {
  margin-top: 2rem;
}
/*gallery*/

.gallery-top {
  text-align: center;
  font-size: 1.2rem;
}
.gallery-top h2 {
  font-size: 1.5rem;
}
.gallery-top-text {
  margin-top: 1rem;
}
.gallery-slider {
  margin-top: 1rem;
}
/*==================================================
  スライダーのためのcss
  ===================================*/
.gallery-slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
  border-radius: 1rem;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.gallery-slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}

/*about-shop*/
.about-shop {
  background: #502200;
}
.about-shop-contents {
  display: flex;
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 0;
  flex-wrap: wrap;
}
.about-shop-item {
  width: calc((100% - 6rem) / 3);
  margin: 1rem;
}
.about-shop-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5/1;
  object-fit: cover;
}
.about-shop-item h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.about-shop-item h3 span {
  display: block;
  font-size: 1rem;
  margin-top: 0.15rem;
}
.about-shop-bottom {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  width: 90%;
  margin: 4rem auto 0;
}

/*middle-img*/

.middle-img {
  background: url("../img/fv.jpg") no-repeat center / cover;
  height: 300px;
  width: 100%;
  margin-left: auto;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*section-title*/
.section-title {
  text-align: center;
  font-size: 2rem;
}

/*shop-info*/
.shop-info {
  padding-top: 0;
}
.shop-info-contents {
  display: flex;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 6rem;
}
.shop-info-textwrap {
  width: 50%;
}
.shop-info-table th,
.shop-info-table td {
  padding: 1rem;
  font-size: 1.1rem;
  vertical-align: top;
  text-align: left;
}
.shop-info-table th {
  width: 150px;
}
.shop-info-table td {
  width: calc(100% - 150px);
}
.shop-info-map {
  padding: 1rem;
  width: 50%;
  aspect-ratio: 1.3/1;
}
.shop-info-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*recruit-contents*/
.recruit-contents {
  display: flex;
  position: relative;
}
.recruit-img {
  width: 50%;
}
.recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-textwrap {
  background-color: #232323;
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.recruit-textwrap p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 3rem;
}
.recruit-more {
  margin-top: 4rem;
}
.recruit-more a {
  border: 1px solid #fff;
  padding: 1rem 3rem;
  display: block;
}

/*footer*/
footer {
  background: #000;
  padding: 4rem 0;
}
.footer-inner {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.footer-logo img {
  width: 150px;
}
.footer-shop {
  border-right: 1px solid #fff;
  width: 45%;
}
.footer-shop-table {
  margin-top: 1rem;
  width: 100%;
  text-align: left;
}
.footer-shop-table th {
  padding: 0.5rem;
  width: 100px;
}
.footer-shop-table td {
  padding: 0.5rem;
  width: calc(100% - 100px);
}
.footer-map {
  width: 55%;
  margin-left: 2rem;
  aspect-ratio: 2/1;
}
.footer-map iframe {
  width: 100%;
  display: block;
  height: 100%;
}

.footer-nav {
  margin-top: 4rem;
}
.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav li {
  margin: 0 1.5rem;
}
.footer-nav a {
  text-transform: uppercase;
}

/*アニメーション*/
.trigger {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transform: translateY(10px);
}
.trigger-ready {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transition-delay: 1s; /* 動きを滑らかに */
  transform: translateY(10px);
}
/* フェードイン用のクラス */
.fadein {
  opacity: 1;
  transform: translateY(0);
}

/*under*/
.u-fv {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.u-recruit-item + .u-recruit-item {
  margin-top: 10rem;
}
.u-recruit-item h2 {
  text-align: center;
}
.u-recruit-contents {
  width: 95%;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.u-recruit-des li {
  display: flex;
  background-color: #201a17;
  padding: 2rem;
}
.u-recruit-des li + li {
  margin-top: 1rem;
}

.u-recruit-contents h3 {
  width: 300px;
  font-size: 1.05rem;
}
.u-recruit-contents p {
  width: calc(100% - 300px);
}

.recruit-entry {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.recruit-entry a {
  padding: 1rem 3rem;
  border: 1px solid #fff;
  display: block;
  width: fit-content;
  margin: 0 1rem;
}

.u-recruit-top {
  text-align: center;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.u-recruit-top li {
  margin: 0.25rem;
}
/*qa*/
.qa-lists {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.qa-1 {
  margin-bottom: 7px;
  background-color: #201a17;
  color: #fff;
  border-radius: 5px;
}

.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 1em;
  font-weight: 600;
  cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  transition: transform 0.5s;
}

.qa-1[open] summary::after {
  transform: rotate(225deg);
}

.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em 1.5em;
  transition: transform 0.5s, opacity 0.5s;
}

.qa-1[open] p {
  transform: none;
  opacity: 1;
} /*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #fff;
  position: relative;
  display: none;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  background: #000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
