@charset "utf-8";

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@100..900&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

html,
body {
  margin: 0px;
  height: 100%;
}

body {
  font-family: "Zen Old Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

section {
  margin: 60px 0;
  overflow: hidden;
}

@media (max-width: 1000px) {
  section {
    padding: 0 5%;
  }
}

@media (max-width: 767px) {
  section {
    margin: 40px 0;
  }
}

.sec-block {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #222;
}

p {
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' 0,
  'opsz' 24
}

.large {
  font-size: 1.2em;
}

.small {
  font-size: 0.9em;
}

@media (max-width: 767px) {
  .pc-disp {
    display: none;
  }
}

.bg {
  background: url("../images/bg.jpg") no-repeat center / cover;
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0 auto;
  color: #222;
}

.bg-dark {
  background-color: #222;
  background: url("../images/bg-dark.jpg") no-repeat center / cover;
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0;
  color: #fff !important;
}

.bg-black {
  background-color: #000;
  margin: 0;
  color: #fff !important;
}

.bg-dark a,
.bg-black a {
  color: #fff !important;
}

@media (max-width: 767px) {
  .bg,
  .bg-dark,
  .bg-draw {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* btn
---------------------------------------- */
.btn-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.btn {
  text-align: center;
}

.btn a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  padding: 0.8em 0 0.8em 1.8em;
  white-space: nowrap;
  transition: .4s ease-out;
  cursor: pointer;
  min-width: 160px;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn a::after {
  content: "";
  width: 30px;
  height: 0.5px;
  background-color: currentColor;
  transition: .4s ease-out;
  margin-left: 10px;
}

.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform .4s ease-out;
  z-index: -1;
}

/* btn-link */
.btn-link a {
  background: transparent;
  border: 1px solid #222;
}

.btn-link a::before {
  background: #222;
  transform: scaleX(0);
  transform-origin: left;
}

.btn-link a:hover::before {
  transform: scaleX(1);
}

.btn-link a:hover {
  color: #fff !important;
}

/* btn-white */
.btn-white a {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

.btn-white a::before {
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}

.btn-white a:hover::before {
  transform: scaleX(1);
}

.btn-white a:hover {
  color: #222 !important;
}

/* btn-black */
.btn-black a {
  color: #fff;
  background: transparent;
  border: 1px solid #222;
}

.btn-black a::before {
  background: #222;
  transform: scaleX(1);
  transform-origin: right;
}

.btn-black a:hover::before {
  transform: scaleX(0);
}

.btn-black a:hover {
  color: #222;
}

/* btn-red */
.btn-red a {
  color: #fff;
  background: transparent;
  border: 1px solid #8A0016;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.btn-red a::before {
  background: #8A0016;
  transform: scaleX(1);
  transform-origin: right;
}

.btn-red a:hover::before {
  transform: scaleX(0);
}

.btn-red a:hover {
  color: #8A0016;
  border: 1px solid #fff;
}

/* btn-reserve */
.btn-reserve a {
  min-width: initial;
  writing-mode: vertical-rl;
  position: fixed;
  top: 15vh;
  right: 0;
  z-index: 999;
  padding: 1.5em 0;
  width: 50px;
  font-size: 18px;
  letter-spacing: 0.1em;
  background: #8A0016;
  border: 1px solid #8A0016;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all .4s ease;
}

.btn-reserve.is-show a {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-reserve a::before {
  display: none;
}

.btn-reserve a::after {
  display: none;
}

.btn-reserve a:hover {
  background: #8A0016;
  border: 1px solid #8A0016;
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  transform: translateX(0) translateY(-2px);
}

/* fade
---------------------------------------- */
.fadeTrigger {
  opacity: 0;
  animation-name: fadeAnime;
  animation-duration: 3.0s;
  animation-fill-mode: forwards;
}

@keyframes fadeAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* fadeUp
---------------------------------------- */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}