@charset "UTF-8";

/*--- base ---*/
html {
    width: 100%;
    overflow: hidden;
}
body {
    position: relative;
    width: 100%;
    margin: 0;
    font-family: "Bodoni Moda", "Shippori Mincho", serif;
    font-weight: 400;
    color: #000;
    overflow: hidden;
}
* {
    box-sizing: border-box;
    overflow-wrap: break-word;
}
img {
    width: 100%;
}
a {
    color: #000;
}
a:link,
a:visited,
a:active,
a:hover {
    overflow: hidden;
    outline: none;
}
a:hover {
    cursor: pointer;
}
/*.pc-only {
    display: none;
}
.sp-only {
    display: inline;
}*/

/* video - common */
.video-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-content {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}
/* video-op */
#video-op {
  transition: 0.5s;
}
#video-op.hidden {
  visibility: hidden;
  opacity: 0;
}
.fade-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}
.fade-overlay.active {
  animation: fadeWhiteToOut 3s forwards;
}
@keyframes fadeWhiteToOut {
  0% {
    background: #fff;
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* video-bg */
#video-bg {
  z-index: -999;
}
#video-bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
/* enter-wrapper */
.enter-wrapper {
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.enter-wrapper * {
    text-align: center;
}
.enter-wrapper.visible {
    visibility: visible;
    opacity: 1;
}
.enter-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0 32px;
    min-height: 100vh;
    transform-origin: center top;
    transform: scale(1);
    transition: transform 0.5s ease-out;
}
h1.enter-logo {
    width: min(41.02%, 160px);
    margin: 0 auto clamp(32px, calc(32px + (48 - 32) * ((100vw - 390px) / (1280 - 390))), 48px);
    line-height: 0;
}
.enter-img {
    width: min(56%, 192px);
    margin: 0 auto clamp(32px, calc(32px + (48 - 32) * ((100vw - 390px) / (1280 - 390))), 48px);
}
.enter-img img {
    line-height: 0;
}
h2.enter-catch {
    font-size: clamp(20px, calc(20px + (30 - 20) * ((100vw - 390px) / (1280 - 390))), 30px);
    margin-bottom: clamp(32px, calc(32px + (48 - 32) * ((100vw - 390px) / (1280 - 390))), 48px);
    font-weight: 400;
    letter-spacing: 1.2px;
}
.enter-btn-wrapper {
    width: min(320px, 82.05%);
    margin: 0 auto;
}
.enter-btn {
    display: block;
    font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 390px) / (1280 - 390))), 24px);
    padding: 0.75em;
    line-height: 1.4;
    letter-spacing: 0.9px;
    background: #E0CCA9;
}
.enter-btn span {
    display: block;
    font-size: 0.8em;
}
/*.enter-btn-wrapper {
    width: calc(100% - 32px);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: clamp(16px, calc(16px + (24 - 16) * ((100vw - 390px) / (1280 - 390))), 24px);
}
.enter-btn {
    width: 50%;
    font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 390px) / (1280 - 390))), 24px);
    padding: 1.25em;
    line-height: 1;
    letter-spacing: 0.9px;
}
.enter-btn-male {
    background: #E0CCA9;
}
.enter-btn-female {
    background: #950825;
    color: #fff;
}*/

/* PC */
@media print, screen and (min-width: 769px) {
    /*.pc-only {
        display: inline;
    }
    .sp-only {
        display: none;
    }
    a[href^="tel"] {
        display: inline-block;
        pointer-events: none;
        vertical-align: top;
    }*/
    .enter-btn {
        transition: opacity 0.5s ease;
    }
    .enter-btn:hover {
        opacity: 0.5;
    }
}