@charset "utf-8";

html,
body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 2;
  font-style: normal;
  letter-spacing: 0.1em;
  overflow-x: clip;
  color: #1a1a2e;
}

.bg-fix {
  background-image: url("../images/bg-yellow.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(253, 245, 230);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100vh;
}

h1 {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: normal;
  font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "kaisei-tokumin", sans-serif;
  font-weight: bold;
  font-style: normal;
}

a {
  color: #1a1a2e;
  text-decoration: none !important;
}

a:hover {
  color: #e43905;
  cursor: pointer;
}

/* フォント */
.toppan {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
}

.kaisei {
  font-family: "kaisei-tokumin", sans-serif;
}

.tsuku {
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

.fc-white {
  color: #fff !important;
}

.fc-black {
  color: #1a1a2e !important;
}

.fc-red {
  color: #ad0f0f !important;
}

.fc-orange {
  color: #eead00 !important;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-red {
  background-color: #ad0f0f;
}

.bg-orange {
  background-color: #eead00;
}

.bg-navy {
  background-color: #1a1a2e;
}

/*罫線*/
.b-navy {
  border: 2px solid #1a1a2e;
}

.bl-navy {
  border-left: 2px solid #1a1a2e;
}

.br-navy {
  border-right: 2px solid #1a1a2e;
}

.bb-navy {
  border-bottom: 2px solid #1a1a2e;
}

.bt-navy {
  border-top: 2px solid #1a1a2e;
}

.b-red {
  border: 2px solid #ad0f0f;
}

.bl-red {
  border-left: 2px solid #ad0f0f;
}

.br-red {
  border-right: 2px solid #ad0f0f;
}

.bb-red {
  border-bottom: 2px solid #ad0f0f;
}

.bt-red {
  border-top: 2px solid #ad0f0f;
}

.b-white {
  border: 2px solid #fdf5e6;
}

/*行間*/

.gyo1 {
  line-height: 30px;
}

.gyo2 {
  line-height: 40px;
}

.gyo3 {
  line-height: 50px;
}

/* ボタン */
.button {
  position: relative;
  display: inline-flex !important;
  background-color: #ad0f0f;
  color: #fff;
  width: 200px;
  height: 45px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.button::after {
  content: "";
  width: 24px;
  height: 8px;
  background-image: url(../images/arrow.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: absolute;
  top: 50%;
  right: 8px;
  border-radius: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.button:hover {
  background-color: #1a1a2e;
}

.button:hover::after {
  right: 6px;
}

.button p {
  color: #fff9ec;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.2rem;
}

.button.is-free {
  width: auto;
  padding: 0 36px;
}

/* ナビ */

.a-nav {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 900;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s;
  background-image: url("../images/header-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a-nav.edit {
  display: flex;
  opacity: 1;
}

.a-nav a p {
  color: #fff9ec;
  transition: all 0.3s ease;
}

.a-nav a:hover p {
  color: #e43905;
}

.top-logo {
  max-width: 180px;
}

.a-nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 800;
  padding: 10px;
  background-image: url("../images/header-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.sp-top-logo {
  max-width: 120px;
  height: auto;
}

.nav-logo {
  max-width: 160px;
}

.menu-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-box > a:not(:last-child) {
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .nav-logo {
    max-width: 160px;
  }

  .a-nav {
    display: flex;
    flex-direction: row;
    opacity: 1;
    height: auto;
    padding: 28px 46px;
  }

  .a-nav a {
    color: #fff;
  }

  .a-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .menu-box {
    display: block;
  }

  .menu-box > a:not(:last-child) {
    margin-bottom: 0;
    margin-right: 12px;
  }
}

.reserve-button {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 142px;
  transition: all 0.3s;
  transform-origin: right;
  z-index: 700;
}

.reserve-button:hover {
  transform: scale(1.05);
}

.a-burger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1100;
  border: 1px solid #fff;
  border-radius: 22px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
}

.a-burger div {
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  left: 11px;
  transform-origin: center;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
  min-height: 2px !important;
}

.a-burger div:nth-child(1) {
  top: 23px;
}

.a-burger div:nth-child(2) {
  bottom: 23px;
}

.a-burger.is-active div:nth-child(1) {
  transform: rotate(-45deg);
  top: 20px;
}

.a-burger.is-active div:nth-child(2) {
  transform: rotate(45deg);
  bottom: 20px;
}

@media (min-width: 992px) {
  .a-burger {
    display: none;
  }

  .reserve-button {
    width: 186px;
  }
}

.nav-tel-link {
  max-width: 200px;
}

/* フッター */

.foot-logo {
  max-width: 220px;
}

.foot-insta {
  width: 26px;
}

@media (min-width: 768px) {
  .foot-logo {
    max-width: 250px;
  }
}

/* News表示 */

/* News表示 画像あり版 */
.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list .webgene-item {
  width: 100%;
}

@media (min-width: 768px) {
  .news-list .webgene-item {
    width: 48%;
  }
}
/* ページネーション共通 */
/* .webgene-pagination {
    width: 100%;
}
 
.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5rem;
}
 
.webgene-pagination ul li,
.pagelink p {
    padding: 0 1rem;
}
.webgene-pagination ul li a,
.pagelink p a {
    display: inline-flex !important;
    font-family: "hiragino-mincho-pron", serif;
    width: 230px;
    height: 50px;
    padding: 15px 22px !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid #FFF;
}
.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.20)
}
  */
/* Nextボタン */
/* .webgene-pagination li.next a::after,
.pagelink p.next a::after {
    content: "";
    display: block;
    width: 33px;
    height: 7px;
    background-image: url("../images/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
    transform: translateX(2px);
} */

/* Prevボタン */
/* .webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
    content: "";
    display: block;
    width: 33px;
    height: 7px;
    background-image: url("../images/arrow-prev.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::after {
    transform: translateX(-2px);
} */

/* フォーム */
.formInput,
.formTextArea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
  margin-bottom: 2rem;
}

.formTextArea {
  height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
}
.zipInput {
  width: 6rem;
}
@media (min-width: 768px) {
  .formTh {
    padding-left: 2rem;
  }
}

.requiredText {
  background-color: #a3987c;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 1rem;
}
.privacyformError {
  padding-top: 25px;
}
@media (min-width: 768px) {
  .privacyformError {
    padding-top: 0;
  }
}
/* ページ共通設定 */

.fv {
  height: calc(100vh - 64px);
  margin-top: 64px;
}

@media (min-width: 992px) {
  .fv {
    height: calc(100vh - 102px);
    margin-top: 102px;
  }
}

.fv-sub {
  height: calc(80vh - 64px);
  margin-top: 64px;
}

@media (min-width: 992px) {
  .fv-sub {
    height: calc(80vh - 102px);
    margin-top: 102px;
  }
}
/* プラシバシーポリシー */
.policy-box {
  overflow-y: scroll;
  height: 400px;
  border-radius: 30px;
}

/* TOP */

.KV-top {
  height: 100vh;
}

.logo-top {
  width: 750px;
  padding-top: 300px;
}

/* About */

.about-text {
  margin-bottom: -50px;
  position: relative;
  z-index: 5;
}

.about-kushi {
  margin-top: -50px;
  margin-left: -70px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-kushi {
    margin-top: -100px;
    margin-left: -70px;
  }
}

.about-kanpai {
  width: 300px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-kanpai {
    width: 473px;
  }
}

.about-text2 {
  font-size: 20px;
  line-height: 50px;
}

@media (min-width: 768px) {
  .about-text2 {
    font-size: 25px;
    line-height: 70px;
  }
}

.about-people {
  margin-right: -150px;
}

.about-col {
  margin-left: 0 auto;
}

.about-text3 {
  margin-top: 30px;
  max-width: 750px;
  line-height: 2;
  margin-left: 30px;
}

@media (min-width: 768px) {
  .about-text3 {
    margin-top: 100px;
    max-width: 750px;
    line-height: 2;
    margin-left: 200px;
  }
}

/* Food */

.food-img {
  height: 430px;
  position: relative;
  border: 2px solid #1a1a2e;
}

.food-img-area {
  position: absolute;
  top: -30px;
  right: -30px;
  left: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 395px;
  border-radius: 0px;
  border: 2px solid #1a1a2e;
}

.food-text {
  line-height: 30px;
}

.menu-link {
  width: 100vw;
  height: 240px;
}

.btn-course,
.btn-food,
.btn-drink {
  height: 240px;
}

.course-link {
  width: 100vw;
  height: 240px;
}

.food-link,
.drink-link {
  width: 50vw;
  height: 240px;
}

/* Info */

.shop-title-sp {
  display: block;
  line-height: 1.5;
}

.shop-title-pc {
  display: none;
}

@media (min-width: 1200px) {
  .shop-title-sp {
    display: none;
  }

  .shop-title-pc {
    display: block;
  }
}

.shop-text {
  margin-top: -20px;
}

@media (min-width: 768px) {
  .shop-text {
    margin-top: -70px;
  }
}

.a-burger .header-sub {
  width: 650px;
  margin-top: -30px;
}

.header-sub-title {
  padding-bottom: 20px;
  padding-left: 40px;
  margin-bottom: -40px;
  font-size: 30px;
}

@media (min-width: 768px) {
  .header-sub-title {
    padding-bottom: 0px;
    padding-left: 200px;
    margin-bottom: -70px;
    font-size: 40px;
  }
}

.fit {
  width: fit-content;
}

/* KODAWARI */

.kodawari-title-pc {
  display: none;
}

.kodawari-title-sp {
  display: block;
}

@media (min-width: 576px) {
  .kodawari-title-pc {
    display: block;
  }

  .kodawari-title-sp {
    display: none;
  }
}

.subpage-bg {
  flex-grow: 1;
  height: 660px;
}

.subtitle-kushi {
  width: 55px;
}

@media (min-width: 768px) {
  .subtitle-kushi {
    width: 86px;
  }
}

.kodawari-text {
  max-width: 1000px;
}

.kodawari-kazari {
  width: 50px;
  margin-left: auto;
}

.kodawari-frame {
  justify-content: center;
}

@media (min-width: 768px) {
  .kodawari-frame {
    justify-content: flex-end;
  }
}

.kodawari-point {
  width: 150px;
  height: 150px;
  align-items: center;
}

.illust-kushi {
  width: 200px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .illust-kushi {
    width: 400px;
    margin-top: 300px;
  }
}

.kodawari-frame2 {
  justify-content: center;
}

@media (min-width: 768px) {
  .kodawari-frame2 {
    justify-content: flex-start;
  }
}

.kodawari-title2 {
  justify-content: center;
}

@media (min-width: 768px) {
  .kodawari-title2 {
    justify-content: flex-end;
  }
}

.illust-izakaya-frame {
  justify-content: flex-end;
}

.illust-izakaya {
  width: 200px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .illust-izakaya {
    width: 400px;
    margin-top: 300px;
  }
}

.kodawari-title1,
.kodawari-title3 {
  justify-content: center;
}

@media (min-width: 768px) {
  .kodawari-title1,
  .kodawari-title3 {
    justify-content: flex-start;
  }
}

.kodawari-kazari2 {
  width: 50px;
}

.kodawari-text2 {
  padding-top: 50px;
  max-width: 370px;
}

@media (min-width: 768px) {
  .kodawari-text2 {
    max-width: 500px;
  }
}

.appeal1,
.appeal3 {
  margin-top: -50px;
}

.appeal2 {
  margin-top: 0px;
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .appeal2 {
    margin-top: -100px;
    padding-bottom: 0px;
  }
}

/* FOOD */

.illust-dish {
  width: 680px;
}

.food-title {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000,
    -1px -1px 0 #000;

  margin-top: -150px;
}

@media (min-width: 768px) {
  .food-title {
    margin-top: -270px;
  }
}

.food-menu-title {
  max-width: 200px;
}

.food-menu-img {
  height: 430px;
  position: relative;
  border: 2px solid #1a1a2e;
}

.food-menu-img-area {
  position: absolute;
  top: -30px;
  right: -30px;
  left: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 395px;
  border-radius: 0px;
  border: 2px solid #1a1a2e;
}

.food-menu-text {
  line-height: 30px;
}

.illust-kushis {
  margin-top: -10px;
}

@media (min-width: 768px) {
  .illust-kushis {
    margin-top: -70px;
  }
}

.kushi-all-menu {
  display: flex;
  justify-content: center;
}

.kushi-menu {
  width: 450px;
}

.kushi-menu2 {
  width: 400px;
}

.price-frame {
  justify-content: flex-end;
}

.illust-tebasaki {
  width: 650px;
  margin-top: -40px;
}

@media (min-width: 768px) {
  .illust-tebasaki {
    width: 650px;
    margin-top: -200px;
  }
}

.food-title2 {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000,
    -1px -1px 0 #000;

  margin-top: -150px;
}

@media (min-width: 768px) {
  .food-title2 {
    margin-top: -250px;
  }
}

/* DRINK */

.drink-menu-title {
  max-width: 600px;
}

.drink-title {
  align-items: center;
  justify-content: center;
}

.drink-title2 {
  width: 370px;
  transform: rotate(-20deg);
}

.drink-kazari {
  width: 50px;
}

.icon-check {
  width: 30px;
  height: 30px;
}

/* INFORMATION */

.info-title {
  max-width: 300px;
}

@media (min-width: 768px) {
  .info-title {
    max-width: 500px;
  }
}

.info-sub {
  margin-left: -12px;
}

.info-text {
  max-width: 900px;
}

.info-text-auto {
  margin-left: auto;
}

.info-image {
  max-width: 900px;
  margin-top: -150px;
  padding-right: 30px;
  padding-left: 30px;
}

.info-copy {
  max-width: 500px;
  display: flex;
}

@media (min-width: 768px) {
  .info-copy {
    max-width: 500px;
    display: flex;
    margin-left: auto;
  }
}

.info-button {
  max-width: 600px;
}

/* SHOP */

.kumo-frame {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.seat-title {
  width: 600px;
  margin-left: -20px;
}

.seat-center {
  display: flex;
  justify-content: center;
}

.seat-title-text {
  margin-top: -110px;
}

@media (min-width: 768px) {
  .seat-title-text {
    margin-top: -200px;
  }
}

.seat-photo {
  width: 380px;
}

@media (min-width: 768px) {
  .seat-photo {
    width: 480px;
  }
}

/* ACCESS */

.access-title {
  align-items: center;
  justify-content: center;
}

.access-title2 {
  transform: rotate(-20deg);
}

.access-kazari {
  width: 50px;
  margin-left: auto;
}

.map-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.icon {
  width: 50px;
  height: 50px;
}

@media (min-width: 768px) {
  .icon {
    width: 80px;
    height: 80px;
    margin-left: auto;
  }
}

.access-frame {
  flex-direction: row;
}

/* NEWS */
