/* ---- 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 ----- */
/* ----- keyframes ----- */
@keyframes text-shine {
  0% {
    background-position: 100% 50%;
    opacity: 0;
  }
  50% {
    background-position: 50% 50%;
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 1;
  }
}
@keyframes text-shinePC {
  0% {
    background-position: 100% 50%;
    opacity: 0;
    background-size: 200% 100%;
  }
  50% {
    background-position: 50% 50%;
    opacity: 0.8;
    background-size: 200% 100%;
  }
  100% {
    background-position: 0% 50%;
    opacity: 1;
    background-size: 300% 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----- keyframes end ----- */
main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg {
  background-image: url(../images/light_bg.jpg);
  background-position: top right 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero {
  position: relative;
  z-index: 100;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.heroText {
  padding: 0 0 0 5%;
  margin: 0 0 10vh;
}
.heroText .eng {
  font-size: 3.75rem;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 2px;
  line-height: 1.3;
  background: linear-gradient(90deg, #766045, #fffbdd, #a89176);
  opacity: 0;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 3s ease-in forwards;
}
.heroText .jp {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 1px;
  line-height: 1;
  margin: 1.25rem 0 0;
}
.heroText .jp span {
  display: inline-block;
  opacity: 0;
  color: #948484;
  transform: translateY(-12px);
  transition: opacity 1s ease, transform 1s ease;
}
.heroText .jp span.is-show {
  opacity: 0.8;
  transform: translateY(0);
}

.content {
  padding: 3.125rem 0 12.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.contentText {
  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);
}
.content .link {
  margin: 3.125rem auto 0;
}
.content .linkText {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.content .linkBtn {
  width: 90%;
  max-width: 250px;
  margin: 1.25rem auto 0;
}
.content .linkBtn a {
  background-color: #fff;
  text-align: center;
  font-family: "Cormorant Infant", serif;
  font-size: 1.4375rem;
  line-height: 1;
  border: 1px solid #eee;
  padding: 0.875rem 0;
}

@media screen and (min-width: 1025px) {
  main {
    background-position: top right;
  }
  .heroText {
    margin: 0 0 1.875rem;
  }
  .heroText .eng {
    font-size: 5rem;
    animation: text-shinePC 3s ease-in-out forwards;
  }
  .heroText .jp {
    font-size: 1.875rem;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */