@import url("https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&family=Hina+Mincho&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hina Mincho", serif;
  position: relative;
  background-color: #091337;
  color: #fdfdfd;
  padding: 100px 20px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("../img/background-pattern.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: 800px auto;
  pointer-events: none;
  opacity: 0.3;
}
body > * {
  position: relative;
  z-index: 1;
}

@keyframes random-text-fade {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.random_fade {
  color: #fdfdfd;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  text-shadow: 5px 5px 10px rgba(17, 17, 17, 0.8);
}
.random_fade span {
  display: inline-block;
  opacity: 0;
  animation: random-text-fade 1.5s ease forwards;
}

.txt_area {
  background: rgba(253, 253, 253, 0.1);
  backdrop-filter: blur(2px);
  border: solid 1px #fdfdfd;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.5);
  text-align: center;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.separator img {
  width: 100px;
}
.separator::after, .separator::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #fdfdfd;
}

.mask {
  max-width: 500px;
  margin: 0 auto;
  padding: 100px 20px;
}
.mask .watercolor-reveal {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.linkbtn {
  text-align: center;
}
.linkbtn ticket-button {
  display: contents;
}
.linkbtn ticket-button .button {
  position: relative;
  display: block;
  font-size: 18px;
  padding: 2em 3em;
  color: #111;
}
.linkbtn ticket-button .button .sub {
  display: block;
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-bottom: 0.4em;
}
.linkbtn ticket-button .button .main {
  letter-spacing: 0.15em;
  font-size: 1em;
}
.linkbtn ticket-button .button .bg {
  inset: 0;
}
.linkbtn ticket-button .button .bg,
.linkbtn ticket-button .button .fill,
.linkbtn ticket-button .button .corner {
  position: absolute;
  pointer-events: none;
}
.linkbtn ticket-button .button .fill {
  background: #fdfdfd;
}
.linkbtn ticket-button .button .fill.is-center {
  inset: 20px;
}
.linkbtn ticket-button .button .fill.is-top, .linkbtn ticket-button .button .fill.is-bottom {
  right: 20px;
  left: 20px;
  height: 20px;
}
.linkbtn ticket-button .button .fill.is-left, .linkbtn ticket-button .button .fill.is-right {
  top: 20px;
  bottom: 20px;
  width: 20px;
}
.linkbtn ticket-button .button .corner {
  width: 20px;
  height: 20px;
  fill: #fdfdfd;
}
.linkbtn ticket-button .button .corner.is-bottom-left {
  transform: rotate(180deg);
}
.linkbtn ticket-button .button .corner.is-bottom-right {
  transform: scaleY(-1);
}
.linkbtn ticket-button .button .corner.is-top-left {
  transform: scaleX(-1);
}
.linkbtn ticket-button .button .text {
  position: relative;
}
.linkbtn ticket-button .button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 6px;
}
.linkbtn ticket-button .button .is-top,
.linkbtn ticket-button .button .is-top-left,
.linkbtn ticket-button .button .is-top-right {
  top: 0;
}
.linkbtn ticket-button .button .is-bottom,
.linkbtn ticket-button .button .is-bottom-left,
.linkbtn ticket-button .button .is-bottom-right {
  bottom: 0;
}
.linkbtn ticket-button .button .is-left,
.linkbtn ticket-button .button .is-top-left,
.linkbtn ticket-button .button .is-bottom-left {
  left: 0;
}
.linkbtn ticket-button .button .is-right,
.linkbtn ticket-button .button .is-top-right,
.linkbtn ticket-button .button .is-bottom-right {
  right: 0;
}
.linkbtn a {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.linkbtn a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 253, 253, 0.5);
  filter: blur(20px);
  border-radius: 20px;
  transition: 0.8s;
}
.linkbtn a:hover:before {
  background: rgba(253, 253, 253, 0.8);
  filter: blur(30px);
}

.heading_1 .en {
  font-size: 24px;
  font-weight: 700;
  color: #fdfdfd;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.heading_1 .en img {
  width: 300px;
  position: absolute;
  inset: 0;
  margin: auto;
  filter: drop-shadow(5px 5px 10px rgba(17, 17, 17, 0.8));
}
.heading_1 .en span {
  font-family: "Goudy Bookletter 1911", serif;
  opacity: 0.5;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-shadow: 5px 5px 10px rgba(17, 17, 17, 0.8);
}
.heading_1 h2 {
  text-shadow: 5px 5px 10px rgba(17, 17, 17, 0.8);
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.25em;
  font-weight: 400;
  color: #fdfdfd;
}

.heading_2 {
  padding: 40px 0;
}/*# sourceMappingURL=style.css.map */