@charset "UTF-8";
/* ------------------------default */
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%; /* 1rem = 10px, デフォルト16pxを基準にリセット */
  /* scroll-behavior: smooth; */
}

/* --------------
reset
-------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

body,
div,
dl,
dt,
dd,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
header,
footer,
figure,
figcaption,
details,
summary,
menu {
  margin: 0;
  padding: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

ol,
ul,
menu {
  list-style: none;
}

/* -----------table */
table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

th,
td {
  border: 1px solid #cfcfcf;
  padding: 1em;
  text-align: left;
}

/* -----------img */
img,
video {
  max-width: 100%;
  height: auto;
}

/* --------------
base
-------------- */
body {
  width: 100%;
  font-size: 1.6rem; /* 16px */
  color: #333;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  text-align: left;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------
flex
-------------- */
.flex-column--0 {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.flex-column--1 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.flex-column--2 {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.flex {
  display: flex;
  justify-content: center;
  gap: 2em;
}

/* --------------
Link
-------------- */
a {
  text-decoration: none;
  color: #ff0019;
}

a:hover {
  color: #fff;
}

a:hover img {
  opacity: 0.6;
}

/* ---------- align */
.alc {
  text-align: center;
}

.alr {
  text-align: right;
}

.all {
  text-align: left;
}

.alt {
  vertical-align: top;
}

.alb {
  text-align: bottom;
}

/* ---------- margin,padding */
.m-auto {
  margin: 0 auto;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.pb20 {
  padding-bottom: 20px;
}

.bold {
  font-weight: bold;
}

.normal {
  font-size: 1.6rem;
}

/*------title */
h2,
h3,
h4 {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

.ttl--h2 {
  position: relative;
  font-size: 5rem;
  color: #fff;
  z-index: 1;
  margin-bottom: 2em;
  border-bottom: 1px solid #fff;
  display: block;
  padding-left: 2em;
}

.ttl--h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 172px;
  background-color: rgba(191, 167, 134, 0.9607843137);
  position: absolute;
  top: -25px;
  left: 68px;
  z-index: -1;
}

.ttl--h3 {
  font-size: 3rem;
}

.ttl--h4 {
  font-size: 2rem;
}

/*------color */
.color--white {
  color: #fff;
}

.underline--yellow {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(252, 245, 145, 0.6784313725) 70%);
}

/*-------- back color */
.back--black_gradient {
  background: linear-gradient(45deg, black, #676767);
}

.back--black {
  background-color: #2c2c2c;
}

.back--gray {
  background-color: #f2f2f2;
}

.back--white {
  background-color: #fff;
  padding: 2em;
  border-radius: 16px;
}

.back--photo::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/back_dinner.webp) no-repeat center center;
  background-size: cover;
  z-index: -1;
}

/* --------------fadein */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(100px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------------button----------- */
/* --------------Top-------------- */
main {
  flex-grow: 1;
}

.contents {
  padding: min(10vw, 72px) min(5vw, 50px);
}

.header__nav--item {
  font-size: 2rem;
  color: #636363;
}

.header__nav--item a {
  color: #fff;
  font-size: 2rem;
}

.header__nav--list {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

.main-visual {
  position: relative;
  background-color: #040000;
}
.main-visual__content {
  color: #fff;
}

/*--------- button */
.button--black {
  background-color: #a70f1e;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.8em 0.5em;
  text-align: center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 300px;
  margin: 0.5em auto;
}

.button--black:hover {
  transform: translateY(3px);
  transition: transform 0.2s ease, filter 0.2s ease;
  background-color: #800e1a;
  box-shadow: none;
}

/*--------- tab */
.tab-buttons {
  display: flex;
  gap: 10px;
}

.tab-buttons button {
  padding: 8px 16px;
  width: 24%;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #f7f7f7;
  cursor: pointer;
  font-family: inherit;
}

.tab-buttons button.active {
  background: #a70f1e;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ---------- trigger -------------*/
.js-trigger {
  position: relative;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5em;
  cursor: pointer;
}

.trigger__txt {
  color: #fff;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trigger__txt li {
  margin-bottom: 0.5em;
}

.trigger__txt.open {
  visibility: visible;
  opacity: 1;
  max-height: 1200px;
  padding: 1em 0;
}

.btn--plus {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transform-origin: center center;
  transition: transform 0.3s;
}

.btn--plus::before,
.btn--plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform-origin: center center;
}

.btn--plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.btn--plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ----------is-active */
.btn--plus.is-active::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.btn--plus.is-active {
  transform: translateY(-50%) rotate(180deg);
}

/* ---------- dinner */
.dinner {
  font-size: 2rem;
  padding-top: 5em;
}

.dinner img {
  width: 72%;
  margin: 0 auto;
}

.osaka {
  font-size: 2rem;
}

/* ----------introduction */
.introduction__txt {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}

/* ----------profile common*/
.profile__wrap {
  position: relative;
}
.profile__wrap .txt_nakamori {
  position: absolute;
  right: 0;
  z-index: 1;
}
.profile__wrap .profile__text {
  background-color: rgba(91, 91, 91, 0.87);
  color: #fff;
  padding: 2em;
  line-height: 2;
}

.profile__wrap--02 {
  position: relative;
  margin-top: 8em;
}
.profile__wrap--02 .txt_kaga {
  position: absolute;
  left: 0;
  z-index: 1;
}
.profile__wrap--02 .profile__text {
  background-color: rgba(91, 91, 91, 0.87);
  color: #fff;
  padding: 2em;
  line-height: 2;
}
.profile__wrap--02 > img:first-of-type {
  width: 46%;
  margin-left: auto;
}

/* ----------information */
.information__wrap {
  background-color: rgba(0, 0, 0, 0.74);
  border: 1px solid #ccc;
  border-radius: 0 16px 16px 16px;
  padding: 1em;
}

.dl__wrap {
  padding: 2em 4em;
  color: #fff;
}
.dl__wrap dl {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 1em;
}
.dl__wrap dt {
  width: 10em;
  flex-shrink: 0;
  font-weight: bold;
}

/* ------ ticket */
/* ------ goods */
.goods__item {
  background-color: rgba(91, 91, 91, 0.87);
  padding: 2em 4em;
  border-radius: 16px;
}

.goods__price {
  font-size: 2rem;
  margin-top: 1em;
}

/* ------ special */
.special__txt {
  font-size: 2rem;
  line-height: 2;
}

/* ------------- footer ------------- */
.footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2em;
}

.footer-logo {
  width: 250px;
}

.footer {
  width: 100%;
  color: #fff;
  background: linear-gradient(180deg, #414141, #222222);
}

.footer .footer__below-copy {
  font-size: 1.4rem;
}

/* -----バナー右下固定------- */
.banner {
  position: fixed;
  bottom: 6.5em;
  right: 1em;
  z-index: 999;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.banner.show {
  opacity: 1;
  visibility: visible;
}

/* -----top ボタン------- */
.upto_button {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 999;
  text-align: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background: #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.upto_button.show {
  opacity: 1;
  visibility: visible;
}

.upto_button a {
  display: block;
  width: 100%;
  height: 100%;
  color: #2c2c2c;
  line-height: 0;
  transition: all 0.3s ease;
}

.upto_button a::before {
  content: "";
  background: url(../img/arrow.png) no-repeat center;
  background-size: contain;
  width: 40px;
  height: 40px;
  display: block;
  margin: 0.5em auto;
}

@media screen and (min-width: 768px) {
  /* pcで非表示 */
  .ifsp {
    display: none;
  }
  .pc-flex--2 {
    display: flex;
    justify-content: center;
    gap: 2em;
  }
  .pc-grid--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
  .pc-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
  .pc-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5em;
  }
  .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  /* --------- header */
  .header__inner {
    width: 100%;
    max-width: none;
    padding: 0 44px;
  }
  /*------title */
  .ttl--h2 {
    letter-spacing: 8px;
  }
  /* ---------table pc*/
  th,
  td {
    font-size: 1.8rem;
  }
  .header {
    height: 88px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #040000;
    box-shadow: 0px 6px 3px -3px rgba(0, 0, 0, 0.1);
  }
  /* ----------main-visual  pc*/
  .main-visual {
    margin-top: 80px;
  }
  /* ----------photo */
  .photo_02 {
    width: 64%;
    margin-left: auto;
  }
  .photo_03 {
    width: 64%;
  }
  /* ----------profile  pc*/
  .profile {
    padding-bottom: 12em;
  }
  .profile__wrap .profile__img {
    width: 46%;
  }
  .profile__wrap .txt_nakamori {
    bottom: 16em;
    width: 30%;
  }
  .profile__wrap .profile__text {
    position: absolute;
    bottom: -7em;
    right: 0%;
    margin-left: 13em;
  }
  .profile__wrap--02 .profile__text {
    position: absolute;
    bottom: -6em;
    left: 0%;
  }
  .profile__wrap--02 .txt_kaga {
    bottom: 10em;
    width: 30%;
  }
  .profile__wrap--02 img {
    width: 50%;
    margin-left: auto;
  }
  /* ------ ticket */
  .acrylic__img {
    width: 50%;
  }
  /* ------ special */
  .special__wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .special__title {
    font-size: 4rem;
  }
  /* ------ hamburger menu */
  .header__nav--list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0.5em;
  }
  .border--brown {
    padding: 2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .profile__wrap .profile__text {
    position: relative;
    margin-left: 0;
    bottom: 0;
  }
  .profile__wrap .txt_nakamori {
    top: 22em;
  }
  .profile__wrap--02 .profile__text {
    position: relative;
    bottom: 0;
  }
  .profile__wrap--02 .txt_kaga {
    bottom: 20em;
  }
  .sp-column--2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  /* ------ hamburger menu */
  .sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(191, 167, 134, 0.9607843137);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-x: hidden;
  }
  .header__hamburger {
    height: 48px;
    width: 48px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: fixed;
    right: 2%;
    top: 2%;
    z-index: 1000;
    background-color: #040000;
    border-radius: 4px;
  }
  .header__menu--border {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    position: relative;
  }
  .header__hamburger--line {
    background-color: #fff;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__nav--list {
    align-items: center;
    margin-top: 6em;
  }
  .header__nav--list a {
    font-size: 2rem;
  }
  /* ------ hamburger menu active */
  .sp-nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
}
@media screen and (max-width: 767px) {
  /* spで非表示 */
  .ifpc {
    display: none;
  }
  html {
    -webkit-text-size-adjust: 100%;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
  }
  body {
    font-size: 1.4rem;
    overflow-x: hidden;
  }
  .inner {
    width: 98%;
    margin-right: auto;
    margin-left: auto;
  }
  /*------title sp*/
  h2 {
    font-size: 1.8rem;
  }
  .ttl--h2 {
    font-size: 3.5rem;
    padding-left: 0;
  }
  .ttl--h2::after {
    width: 64px;
    height: 128px;
    left: 20px;
  }
  .ttl--h3 {
    font-size: 1.8rem;
  }
  .ttl--h4 {
    font-size: 1.8rem;
  }
  .sp-column--1 {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .sp-column--2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  /* ---------table sp*/
  th,
  td {
    font-size: 1.6rem;
    padding: 1.5em 0.5em;
    background-color: #f2f2f2;
  }
  .dl__wrap {
    padding: 1em;
  }
  .dl__wrap dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 1.6rem;
  }
  .dl__wrap dd {
    font-size: 1.8rem;
  }
  /* ----------tab sp*/
  .tab-buttons button {
    width: 46%;
  }
  /* ----------trigger sp*/
  .btn--plus {
    width: 18px;
    height: 18px;
  }
  /* ----------up to button sp*/
  .upto_button {
    width: 64px;
    height: 64px;
  }
  .upto_button a::before {
    width: 32px;
    height: 32px;
  }
  /* ----------banner sp*/
  .banner {
    width: 140px;
  }
  /* ------ introduction sp*/
  .introduction__txt {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
  }
  /* ----------photo */
  .photo_02 {
    width: 80%;
    margin-left: auto;
  }
  .photo_03 {
    width: 80%;
  }
  /* ----------profile sp*/
  .profile__wrap .profile__img {
    width: 70%;
  }
  .profile__wrap .txt_nakamori {
    top: 220px;
    width: 50%;
  }
  .profile__wrap--02 {
    margin-top: 2em;
  }
  .profile__wrap--02 > img:first-of-type {
    width: 60%;
  }
  .txt_kaga {
    top: 13em;
    width: 48%;
  }
  /* ------ goods */
  .goods__item {
    padding: 2em;
  }
  /* ------ special sp*/
  .special__txt {
    font-size: 1.6rem;
  }
  .special__title {
    font-size: 2rem;
  }
  /* ------ hamburger menu */
  .sp-nav {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(191, 167, 134, 0.9607843137);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .header__hamburger {
    height: 48px;
    width: 48px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: fixed;
    right: 2%;
    top: 2%;
    z-index: 1000;
    background-color: #040000;
    border-radius: 4px;
  }
  .header__menu--border {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    position: relative;
  }
  .header__hamburger--line {
    background-color: #fff;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__nav--list {
    align-items: center;
    margin-top: 6em;
  }
  .header__nav--list a {
    font-size: 2rem;
  }
  /* ------ hamburger menu active */
  .sp-nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
}
@media screen and (max-width: 468px) {
  .dinner__text {
    font-size: 1.6rem;
  }
  .dinner img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */