@charset "UTF-8";
/* 画面を覆うレイヤー */
.anb-enter {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 2s ease 1s;
  cursor: pointer;
}

.anb-enter__content {
  text-align: center;
}

/* ボタン */
.anb-enter__btn {
  font-family: inherit;
  letter-spacing: 0.2em;
  font-size: clamp(16px, 2.2vw, 22px);
  color: #c49202;
  background: transparent;
  border: 1px solid #c49202;
  padding: 0.9em 1.6em;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 10000;
}

.anb-enter__btn:hover {
  transform: translateY(-2px);
  background: #c49202;
  color: #0b0b0b;
}

.anb-enter-btn-logo {
  position: relative;
  z-index: 10000;
  margin-bottom: 20px;
}
.anb-enter-btn-logo img {
  width: 500px;
  max-width: 90%;
}

.anb-enter-btn-text {
  color: #fff;
  position: relative;
  z-index: 10000;
  margin-top: 20px;
}

/* ドア（左右に開く板） */
.anb-door {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: radial-gradient(120% 120% at 50% 100%, #1a1a1a 0%, #0b0b0b 60%, #000 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
  will-change: transform;
  transition: transform 3s cubic-bezier(0.8, 0, 0.2, 1);
}

.anb-door--left {
  left: 0;
  transform: translateX(0%);
}

.anb-door--right {
  right: 0;
  transform: translateX(0%);
}

/* 開始時はスクロール不可にする */
html.anb-lock, body.anb-lock {
  overflow: hidden;
}

/* 開くアニメーション */
.anb-enter.is-opening .anb-door--left {
  transform: translateX(-100%);
}

.anb-enter.is-opening .anb-door--right {
  transform: translateX(100%);
}

/* アニメ完了でフェードアウト（任意） */
.anb-enter.is-fadeout {
  opacity: 0;
  pointer-events: none;
}

/* アニメを避けたい人向け（OS設定の尊重） */
@media (prefers-reduced-motion: reduce) {
  .anb-door,
  .anb-enter__btn {
    transition: none !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Libertinus Serif", "Shippori Mincho", serif;
  font-size: 18px;
  pointer-events: all;
}
body.loading {
  pointer-events: none;
}

ul, ol {
  list-style: none;
}

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

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

h1 {
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px 0 0 30px;
  z-index: 80;
}
h1 img {
  width: 600px;
}

#menu_btn {
  width: 50px;
  height: 16px;
  cursor: pointer;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 110;
}
#menu_btn span {
  position: absolute;
  display: block;
  background: #fff;
  height: 1px;
  right: 0;
  transition: 0.3s;
}
#menu_btn span:nth-child(1) {
  width: 50px;
  top: 0;
}
#menu_btn span:nth-child(2) {
  width: 25px;
  top: 15px;
}
#menu_btn.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
#menu_btn.open span:nth-child(2) {
  top: 8px;
  transform: rotate(-45deg);
  width: 50px;
}

#global_menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
}
#global_menu nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#global_menu nav ul li a {
  font-size: 22px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
#global_menu nav ul li a::before, #global_menu nav ul li a::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #c49202;
  opacity: 0;
  transition: 0.3s;
}
#global_menu nav ul li a:hover {
  opacity: 1;
  color: #c49202;
}
#global_menu nav ul li a:hover::before, #global_menu nav ul li a:hover::after {
  opacity: 1;
}
#global_menu nav ul li:not(:last-child) {
  margin-bottom: 60px;
}

.grecaptcha-badge {
  display: none;
}

#page_sec {
  padding: 200px 0;
}
#page_sec .inner {
  color: #fff;
  text-align: center;
  line-height: 2.4;
}
#page_sec .inner .page_ttl {
  margin-bottom: 40px;
  font-size: 30px;
}
#page_sec .inner .wp-block-separator {
  margin-top: 100px;
  border-width: 1px;
  margin-bottom: 100px;
}

@media (max-width: 1000px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  #page_sec {
    padding: 110px 0;
  }
  #page_sec .inner {
    line-height: 2;
  }
  #page_sec .inner .page_ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
  #page_sec .inner .wp-block-separator {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.wrapper {
  background: url(../img/main_bg.png) fixed no-repeat center/cover;
  position: relative;
}
.wrapper#top {
  height: 100vh;
}

.slick-arrow {
  cursor: pointer;
}

#unmute {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8000;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
  cursor: pointer;
}
#unmute .txt {
  font-size: 30px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#unmute .txt span {
  color: #c49202;
}
#unmute.show {
  opacity: 1;
  pointer-events: all;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.08);
  }
}
.ttl_slider_wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 500px;
  padding: 50px 0;
  z-index: 2;
}
.ttl_slider_wrap .ttl_slider .slide {
  color: #fff;
  font-size: 20px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.ttl_slider_wrap .ttl_slider .slide.slick-current {
  font-weight: bold;
  color: #c49202;
  font-size: 25px;
}
.ttl_slider_wrap .ttl_slider .slide.slick-current::before, .ttl_slider_wrap .ttl_slider .slide.slick-current::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #c49202;
}
.ttl_slider_wrap .ttl_slider .slick-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 25px;
  background: no-repeat center/contain;
  font-size: 0;
}
.ttl_slider_wrap .ttl_slider .slick-arrow.slick-prev {
  top: -50px;
  background-image: url(../img/arrow_prev.svg);
}
.ttl_slider_wrap .ttl_slider .slick-arrow.slick-next {
  bottom: -50px;
  background-image: url(../img/arrow_next.svg);
}

.whiskey_slider_wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 500px);
  z-index: 2;
}
.whiskey_slider_wrap::before {
  content: "";
  display: block;
  width: 470px;
  height: 500px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  z-index: -1;
}
.whiskey_slider_wrap::after {
  content: "";
  display: block;
  width: 450px;
  height: 480px;
  background: url(../img/frame.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.whiskey_slider_wrap .whiskey_slider .slide {
  display: flex;
  align-items: center;
}
.whiskey_slider_wrap .whiskey_slider .slide img {
  max-width: 350px;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  margin: auto;
}

.record_slider_wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 120vh;
  aspect-ratio: 1/1;
  z-index: 1;
}
.record_slider_wrap .record_slider .slide {
  animation: 1.81s linear infinite rotation;
  animation-play-state: paused;
}
.record_slider_wrap .record_slider .slide img {
  width: 100%;
}
.record_slider_wrap .record_slider .slide.playing {
  animation-play-state: running;
}

.controls {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 120px;
  z-index: 2;
}
.controls .bgmPlayer #bgmPlayer {
  display: block;
  margin: 0 auto;
}
.controls #ambienceControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.controls #ambienceControls .item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.controls #ambienceControls .item input[type=checkbox] {
  width: 0;
}
.controls #ambienceControls .item input[type=checkbox] + label {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  gap: 6px;
  cursor: pointer;
}
.controls #ambienceControls .item input[type=checkbox] + label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}
.controls #ambienceControls .item input[type=checkbox] + label::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #c49202;
  border-left: 2px solid #c49202;
  transform: rotate(-45deg);
  position: absolute;
  top: 4px;
  left: 2px;
  opacity: 0;
  transition: 0.3s;
}
.controls #ambienceControls .item input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.controls #ambienceControls .item input {
  width: 120px;
  background: linear-gradient(to bottom, transparent 50%, #fff calc(50% + 1px), transparent calc(50% + 1px));
}

.notice {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  z-index: 2;
}
.notice p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
.notice p #fullscreenBtn {
  text-decoration: underline;
  color: #c49202;
  cursor: pointer;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-height: 820px) {
  .wrapper#top {
    height: 820px;
  }
  .record_slider_wrap {
    width: 984px;
  }
}
@media (max-width: 1000px) {
  .wrapper#top {
    height: 1060px;
  }
  h1 img {
    width: 350px;
  }
  #unmute {
    top: 310px;
    left: 0;
    width: 100%;
    text-align: center;
    transform: none;
  }
  .whiskey_slider_wrap {
    top: 150px;
    width: 100%;
    transform: none;
  }
  .whiskey_slider_wrap::before {
    width: 350px;
    height: 350px;
  }
  .whiskey_slider_wrap::after {
    width: 350px;
    height: 350px;
  }
  .whiskey_slider_wrap .whiskey_slider {
    position: relative;
  }
  .whiskey_slider_wrap .whiskey_slider .slide img {
    width: 270px;
    height: 270px;
  }
  .ttl_slider_wrap {
    max-width: 100%;
    top: 480px;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px 0;
  }
  .ttl_slider_wrap .ttl_slider .slick-arrow.slick-prev {
    top: -25px;
  }
  .ttl_slider_wrap .ttl_slider .slick-arrow.slick-next {
    bottom: -25px;
  }
  .record_slider_wrap {
    width: 400px;
    top: 410px;
    right: 40px;
    transform: translateX(50%);
  }
  .controls {
    bottom: unset;
    top: 830px;
    width: 100%;
  }
  .notice p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .wrapper#top {
    height: 880px;
  }
  h1 {
    padding: 15px 0 0 15px;
  }
  h1 img {
    width: 240px;
  }
  #menu_btn {
    top: 30px;
    right: 20px;
  }
  .whiskey_slider_wrap {
    top: 135px;
  }
  .whiskey_slider_wrap::before {
    width: 250px;
    height: 280px;
  }
  .whiskey_slider_wrap::after {
    width: 280px;
    height: 280px;
  }
  .whiskey_slider_wrap .whiskey_slider .slide img {
    width: 200px;
    height: 200px;
  }
  .ttl_slider_wrap {
    top: 390px;
    padding: 15px 0;
  }
  .ttl_slider_wrap .ttl_slider .slide {
    gap: 8px;
    font-size: 16px;
    height: 37px;
  }
  .ttl_slider_wrap .ttl_slider .slide.slick-current {
    font-size: 19px;
  }
  .ttl_slider_wrap .ttl_slider .slide.slick-current::before, .ttl_slider_wrap .ttl_slider .slide.slick-current::after {
    width: 25px;
  }
  .ttl_slider_wrap .ttl_slider .slick-arrow {
    width: 30px;
    height: 18px;
  }
  .ttl_slider_wrap .ttl_slider .slick-arrow.slick-prev {
    top: -15px;
  }
  .ttl_slider_wrap .ttl_slider .slick-arrow.slick-next {
    bottom: -15px;
  }
  .record_slider_wrap {
    right: 0;
    top: 360px;
    width: 300px;
  }
  .controls {
    top: 660px;
  }
  .controls #ambienceControls .item input {
    width: 90px;
  }
  .controls #ambienceControls .item input[type=checkbox] + label {
    font-size: 14px;
  }
  .notice {
    background: linear-gradient(to top, black 30%, transparent);
    width: 100%;
  }
  .notice p {
    font-size: 15px;
  }
}
#contact #page_sec .inner {
  max-width: 500px;
}
#contact #page_sec .inner p {
  text-align: left;
}
#contact #page_sec .inner p:not(:last-child) {
  margin-bottom: 40px;
}
#contact #page_sec .inner .required {
  color: rgb(245, 69, 69);
}
#contact #page_sec .inner .wpcf7-form-control {
  background: rgba(255, 255, 255, 0.25);
  padding: 5px 10px;
  width: 100%;
}
#contact #page_sec .inner textarea {
  height: 200px;
}
#contact #page_sec .inner .wpcf7-submit {
  background: rgba(163, 148, 122, 0.8);
}/*# sourceMappingURL=style.css.map */