@charset "UTF-8";
/* ---- reset ----- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html,
body,
main,
header,
section,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  color: #333;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #333;
  display: block;
  text-decoration: none;
  transition: all ease 0.5s;
}

p {
  font-size: 0.875rem;
  line-height: 1.8;
}

button {
  transition: all ease 0.5s;
}

img {
  width: 100%;
  pointer-events: none;
}

main {
  display: block;
}

@media screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.7;
  }
  p {
    font-size: 1rem;
  }
}
/* ---- reset end ----- */
main {
  min-height: 100vh;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.main {
  opacity: 0;
}
.main.is-shown {
  animation: fadein ease-in-out 2s forwards;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  display: block; /* 常時表示でOK（透明） */
}

footer {
  position: relative;
  z-index: 2;
}

.pc {
  display: none;
}

[data-js-owl-fadein-effect] {
  opacity: 0;
  transform: translateY(50px);
}

[data-js-owl-fadein-effect].is-shown {
  animation: fadein-slide ease 0.7s forwards;
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
/* ----- keyframes ----- */
@keyframes top-slide {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout-canvas {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.9;
  }
}
@keyframes fadeoutTop {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadein-slide {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein-slideTop {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flowerPop {
  0% {
    transform: scale(0.2) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(180deg);
    opacity: 1;
  }
}
@keyframes textFill {
  0% {
    opacity: 0;
    transform: translateX(100px) rotateY(-360deg);
  }
  80% {
    transform: translateX(0px) rotateY(0deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotateY(0deg);
  }
}
@keyframes textFill-C {
  0% {
    opacity: 0;
    transform: translateX(50px) rotateY(-180deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotateY(0deg);
  }
}
/* ----- keyframes end ----- */
/* top */
.top {
  opacity: 0;
  position: relative;
}
.top .hero {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top .heroMain {
  width: 100%;
  margin: 0 0 15vh;
}
.top .heroImg {
  width: 75%;
  margin: 0 auto 1.25rem;
}
.top .heroText {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9em;
  text-align: center;
  letter-spacing: 1px;
}

.content {
  padding: 3.125rem 0 12.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.content p {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: 90%;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  padding: 2.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 600px) {
  .top .heroMain {
    margin: 0 0 16vh;
  }
  .top .heroImg {
    max-width: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .top .heroMain {
    margin: 0 0 2vh;
  }
  .top .heroImg {
    width: 30%;
    max-width: 340px;
  }
  .top .heroText {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1800px) {
  .top .heroImg {
    max-width: 100%;
    width: 25%;
  }
}/*# sourceMappingURL=style.css.map */