@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 {
    display: block;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
}
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-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;
    height: 100dvh;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.enter-wrapper * {
    text-align: center;
}
.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(16px, calc(16px + (24 - 16) * ((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;
}
/* PC */
@media print, screen and (min-width: 769px) {
    .enter-btn {
        transition: opacity 0.5s ease;
    }
    .enter-btn:hover {
        opacity: 0.5;
    }
}

.chatch-text {
	font-size: clamp(12px, calc(12px + (24 - 12) * ((100vw - 390px) / (1280 - 390))), 24px);
    margin-bottom: clamp(32px, calc(32px + (48 - 32) * ((100vw - 390px) / (1280 - 390))), 48px);
    font-weight: 400;
    letter-spacing: 1.2px;
}