@charset "utf-8";

body {
  font-family: "Helvetica Neue", "Arial", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  font-size: 8px;
  padding: 10px 0;
}

a {
  text-decoration: none;
}

header {
  height: 100vh;
  background-image: url(img/mainvisual.jpg);
  background-size: cover;
  position: relative;
  width: 100%;
  background-position: center;
}

li {
  list-style: none;
}

h2 {
  font-size: 72px;
  height: 300px;
  align-content: center;
}

.header__wrapper ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 20px 40px 0 0;
}

.header__wrapper li {
  list-style-type: none;
}

.header__wrapper a {
  font-weight: bold;
  transition: 0.25s;
  filter: drop-shadow(2px 2px 6px black);
}

.header__wrapper a:hover {
  color: var(--red);
  transition: 2s;
}

.header__wrapper a {
  text-decoration: none;
  color: var(--wht);
}

.header__wrapper h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg {
  background-attachment: fixed;
  text-align: center;
  align-content: center;
  color: var(--wht);
  margin-bottom: var(--xl);
}

.menu .bg {
  background-image: url(img/menu.jpg);
  background-size: cover;
  height: var(--bg-h);
  margin-top: 40px;
}

.menu__inner {
  display: flex;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.menu__list--item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.menu__list--item p {
  border-bottom: 1px dotted #000;
  width: 87%;
}

.menu__list--item span {
  width: 13%;
}

h3 {
  font-size: 40px;
  padding-bottom: 20px;
  border-bottom: solid 6px var(--red);
  display: inline-block;
  margin-bottom: 70px;
}

.left,
.right {
  width: 50%;
  padding: 0 45px;
}

.left {
  border-right: 1px solid;
}

.inner {
  padding: 90px 0 170px 0;
}

.food {
  margin-bottom: 80px;
}

.about .bg {
  background-image: url(img/about.jpg);
  background-size: cover;
  height: var(--bg-h);
  margin-top: 40px;
}

.inner__title {
  text-align: center;
}

.about__text {
  margin-bottom: 60px;
}

.about__text ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.about__text li {
  width: 50%;
  padding: 2%;
}

.location .bg {
  background-image: url(img/location.jpg);
  background-size: cover;
  height: var(--bg-h);
  margin-top: 40px;
}

.location iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%);
}

.readmore {
  text-align: center;
}

.btn {
  width: 160px;
  height: 50px;
  line-height: 3.5;
  display: inline-block;
  color: #000;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
/*
.btn::before 右の赤線
.btn::after 下の赤線
.btn span::before 左の赤線
.btn span::after 上の赤線
*/
.btn::before,
.btn::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #e03131;
  transition: all 0.3s ease;
}
.btn span::before,
.btn span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #e03131;
  transition: all 0.3s ease;
}
.btn::before,
.btn span::before {
  width: 2px;
  height: 50%;
}
.btn::after,
.btn span::after {
  width: 20%;
  height: 2px;
}
/*
ホバー時の縦の動作
右の赤線と左の赤線の高さを100%にする
*/
.btn:hover::before,
.btn span:hover::before {
  height: 100%;
}
/*
ホバー時の横の動作
下の赤線と上の赤線の横幅を100%にする
*/
.btn:hover::after,
.btn span:hover::after {
  width: 100%;
}

.location iframe {
  margin-bottom: 20px;
}

.address,
.time {
  margin-bottom: 10px;
}

@media screen and (max-width: 968px) {
  header img {
    max-width: 95vw;
  }

  h2 {
    font-size: 32px;
    height: 96px;
  }

  .inner {
    max-width: 90%;
    margin: 0 auto;
    padding: 30px 0 100px 0;
  }

  .bg {
    background-attachment: scroll;
  }

  .menu .bg {
    margin-top: 10px;
  }

  .menu__inner {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
    padding: 0;
  }

  .left {
    border: none;
  }

  .menu__list--item span {
    width: auto;
  }

  h3 {
    font-size: 20px;
    padding-bottom: 0;
    margin: 35px 0 25px;
  }

  .about__text ul {
    flex-direction: column;
  }

  .about__text li {
    width: 100%;
  }

  .address {
    white-space: nowrap;
  }
}
