.no-link {
  opacity: 0.3;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.75em;
  z-index: 1200;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1024px) {
  .header {
    height: 3.75em;
  }
}
.header.is-open .header__menu,
.header.is-open .header__btn {
  opacity: 0.3;
  pointer-events: none;
}
.header__inner {
  height: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 1em;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo img {
  height: 2.5em;
  width: auto;
}
@media (max-width: 1024px) {
  .header__logo img {
    height: 2em;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.375em;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 1.75em;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__menu-link {
  position: relative;
  font-size: 0.9375em;
  color: #231815;
  padding-left: 1.125em;
  transition: opacity 0.2s ease;
}
.header__menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625em;
  height: 0.625em;
  background: url("../images/common/exyajirushi-01.svg") no-repeat center/contain;
}
.header__menu-link:hover {
  opacity: 0.6;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.875em;
  height: 2.125em;
  color: #fff;
  font-size: 0.875em;
  letter-spacing: 0.01em;
  padding: 0 1.25em;
  border-radius: 0;
  transition: opacity 0.2s ease;
}
@media (max-width: 1024px) {
  .header__btn {
    display: none;
  }
}
.header__btn--entry {
  background-color: #a04e3f;
  margin-left: 0.75em;
}
.header__btn--visit {
  background-color: #2a3a68;
}
.header__btn:hover {
  opacity: 0.85;
}
.header__menu-btn {
  display: block;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  flex-shrink: 0;
  cursor: pointer;
}
.header__menu-btn span {
  position: absolute;
  left: 50%;
  width: 1.625em;
  height: 2px;
  background-color: #231815;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__menu-btn span:nth-child(1) {
  top: 0.75em;
}
.header__menu-btn span:nth-child(2) {
  top: 1.1875em;
}
.header__menu-btn span:nth-child(3) {
  top: 1.625em;
}
.header__menu-btn.is-open span:nth-child(1) {
  top: 1.1875em;
  transform: translateX(-50%) rotate(45deg);
}
.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.is-open span:nth-child(3) {
  top: 1.1875em;
  transform: translateX(-50%) rotate(-45deg);
}
@media (min-width: 1025px) {
  .header__menu-btn {
    width: 3.75em;
    height: 3.75em;
  }
  .header__menu-btn span {
    width: 2.5em;
    height: 3px;
  }
  .header__menu-btn span:nth-child(1) {
    top: 1.1875em;
  }
  .header__menu-btn span:nth-child(2) {
    top: 1.8125em;
  }
  .header__menu-btn span:nth-child(3) {
    top: 2.4375em;
  }
  .header__menu-btn.is-open span:nth-child(1) {
    top: 1.8125em;
  }
  .header__menu-btn.is-open span:nth-child(3) {
    top: 1.8125em;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 31.25em;
  max-width: 100%;
  height: 100%;
  z-index: 1100;
  background-color: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  visibility: hidden;
}
@media (max-width: 1024px) {
  .drawer {
    width: 100%;
  }
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.drawer__inner {
  padding: 5.75em 3em 3em;
}
@media (max-width: 1024px) {
  .drawer__inner {
    padding: 5em 1.75em 2.5em;
  }
}
.drawer__heading {
  text-align: center;
  font-size: 0.9375em;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: #231815;
  margin-bottom: 0.5em;
}
.drawer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5em;
}
.drawer__item {
  border-bottom: 1px solid #231815;
}
.drawer__item:last-child {
  border-bottom: none;
}
.drawer__item a {
  display: block;
  padding: 0.9375em 0.25em;
  color: #231815;
  transition: opacity 0.2s ease;
}
.drawer__item a:hover {
  opacity: 0.55;
}
.drawer__en {
  display: block;
  font-size: 1em;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
.drawer__ja {
  display: block;
  margin-top: 0.25em;
  font-size: 0.6875em;
  color: #231815;
  letter-spacing: 0.04em;
}
.drawer__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5em;
  margin-top: 1.875em;
}
@media (max-width: 768px) {
  .drawer__sub {
    margin-top: 1.25em;
  }
}
.drawer__sub-link {
  text-align: center;
  padding: 0.75em 0;
  font-size: 0.875em;
  letter-spacing: 0.08em;
  color: #231815;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  transition: opacity 0.2s ease;
}
.drawer__sub-link:hover {
  opacity: 0.6;
}
.drawer__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin-top: 1.75em;
}
.drawer__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5em;
  color: #fff;
  font-size: 0.9375em;
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.drawer__btn::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.875em;
  background: url("../images/common/exyajirushi-02.svg") no-repeat center/contain;
}
.drawer__btn:hover {
  opacity: 0.88;
}
.drawer__btn--entry {
  background-color: #a04e3f;
}
.drawer__btn--visit {
  background-color: #2a3a68;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.notes {
  max-width: 50em;
  margin: 0 auto;
  padding: 3.125em 0em 4.375em;
  letter-spacing: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .notes {
    max-width: 22.5em;
  }
}
.notes__inner p {
  font-size: 0.625em;
  line-height: 1.9;
  letter-spacing: 0;
}

.cta {
  padding-bottom: 1.25em;
}
.cta__inner {
  max-width: 46.875em;
  margin: 0 auto;
  padding: 0 0em;
  display: flex;
  gap: 2.5em;
}
@media (max-width: 1024px) {
  .cta__inner {
    flex-direction: column;
    gap: 1em;
  }
}
@media (max-width: 768px) {
  .cta__inner {
    max-width: 22.5em;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta__btn {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75em;
  color: #fff;
  font-size: 1.25em;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}
@media (max-width: 1024px) {
  .cta__btn {
    height: auto;
    padding: 1.25em 0em;
  }
}
.cta__btn::after {
  content: "";
  position: absolute;
  right: 1.75em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5625em;
  height: 1em;
  background: url("../images/common/exyajirushi-02.svg") no-repeat center/contain;
}
.cta__btn:hover {
  opacity: 0.88;
}
.cta__btn--entry {
  background-color: #a04e3f;
}
.cta__btn--visit {
  background-color: #2a3a68;
}
@media (max-width: 1024px) {
  .cta__btn {
    height: 4.375em;
    font-size: 1.125em;
  }
}

.lineup {
  max-width: none;
  margin: 3.125em auto 0;
  padding: 2.1875em 1.5em 2.5em;
  border-top: 1px solid #221714;
}
.lineup__head {
  text-align: center;
}
.lineup__title {
  font-size: 1.5em;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  padding-bottom: 1.375em;
}
.lineup__lead {
  margin-top: 1.375em;
  font-size: 1em;
  letter-spacing: 0.1em;
}

.footer {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .footer {
    padding-bottom: 4em;
  }
}
.footer__main {
  max-width: 75em;
  margin: 0 auto;
  padding: 3.75em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5em;
}
@media (max-width: 1024px) {
  .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2em;
    padding: 3.125em 1.5em;
  }
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 1.5em;
  text-align: left;
}
@media (max-width: 1024px) {
  .footer__contact {
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
  }
}
.footer__contact-label {
  font-size: 0.8125em;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.footer__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.875em;
  color: #231815;
  flex-shrink: 0;
}
.footer__tel-icon {
  width: 2.875em;
  height: auto;
  flex-shrink: 0;
}
.footer__tel-num {
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .footer__tel-num {
    font-size: 1.75em;
  }
}
.footer__note {
  font-size: 0.75em;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0;
}
.footer__note p {
  margin: 0;
}
.footer__seller {
  display: flex;
  align-items: center;
  gap: 0.75em;
  flex-shrink: 0;
}
.footer__seller-label {
  font-size: 0.875em;
  flex-shrink: 0;
}
.footer__seller-logo {
  width: 10em;
  height: auto;
}
.footer__copyright {
  border-top: 1px solid #e3ded7;
  color: #000000;
  text-align: center;
  font-size: 0.75em;
  padding: 1.125em 1em;
  letter-spacing: 0.06em;
  background: #e5e5e5;
}
@media (max-width: 1024px) {
  .footer__copyright {
    padding: 1em;
  }
}

.fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4em;
  z-index: 900;
}
@media (max-width: 1024px) {
  .fixed-bar {
    display: block;
  }
}
.fixed-bar__list {
  display: flex;
  height: 100%;
  background: #fff;
}
.fixed-bar__item {
  flex: 1 1 25%;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.fixed-bar__item:nth-child(1) {
  background-color: #a04e3f;
}
.fixed-bar__item:nth-child(2) {
  background-color: #2c2c77;
  opacity: 0.5;
}
.fixed-bar__item:nth-child(2) a.no-link {
  opacity: 1;
}
.fixed-bar__item:nth-child(2) a.no-link img {
  opacity: 0.5;
}
.fixed-bar__item:nth-child(2) a.no-link span {
  opacity: 0.5;
}
.fixed-bar__item:nth-child(3) {
  background-color: #333333;
}
.fixed-bar__item:last-child {
  background-color: #333333;
}
.fixed-bar__item:first-child {
  border-left: none;
}
.fixed-bar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125em;
  height: 100%;
  color: #fff;
  text-align: center;
}
.fixed-bar__icon {
  width: auto;
  height: 1.5em;
}
.fixed-bar__label {
  font-size: 0.625em;
  line-height: 1;
}
@media (max-width: 480px) {
  .fixed-bar__label {
    font-size: 0.5625em;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(2.4em);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .drawer,
  .drawer-overlay,
  .header__menu,
  .header__menu-btn span,
  .header__menu-link,
  .header__btn {
    transition: none !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
main {
  padding-top: 4.0625em;
}
@media (max-width: 1024px) {
  main {
    padding-top: 3.125em;
  }
}

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

.sp {
  display: none;
}
@media (max-width: 1024px) {
  .sp {
    display: block;
  }
}

html {
  overflow-x: clip;
}

@media (max-width: 768px) {
  body {
    font-size: 4.06vw;
  }
}
