/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(-5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes bounceScale {
  0% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-30px) scale(0.95);
  }
  50% {
    transform: translateY(0) scale(1.05);
  }
  75% {
    transform: translateY(-15px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes floatAway {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) translateX(5px);
  }
  100% {
    transform: translateY(-50px) translateX(-5px);
    opacity: 0.6;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
@keyframes sway {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(10px) rotate(2deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(-10px) rotate(-2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes jelly {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  25% {
    transform: scaleY(1.2) scaleX(0.9);
  }
  50% {
    transform: scaleY(0.95) scaleX(1.05);
  }
  75% {
    transform: scaleY(1.1) scaleX(0.95);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}
@keyframes highJump {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-60px);
  }
  50% {
    transform: translateY(-80px);
  }
  65% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes gentleBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes quickBounce {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-25px);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-12px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    transform: skewX(0deg) translateX(0);
  }
  25% {
    transform: skewX(5deg) translateX(5px);
  }
  50% {
    transform: skewX(0deg) translateX(0);
  }
  75% {
    transform: skewX(-5deg) translateX(-5px);
  }
  100% {
    transform: skewX(0deg) translateX(0);
  }
}
@keyframes spiralBounce {
  0% {
    transform: translateY(0) rotateZ(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-30px) rotateZ(90deg) rotateX(10deg);
  }
  50% {
    transform: translateY(0) rotateZ(180deg) rotateX(0deg);
  }
  75% {
    transform: translateY(-15px) rotateZ(270deg) rotateX(-10deg);
  }
  100% {
    transform: translateY(0) rotateZ(360deg) rotateX(0deg);
  }
}
@keyframes wave {
  0% {
    transform: rotateZ(0deg);
  }
  50% {
    transform: rotateZ(25deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
@keyframes trampoline {
  0% {
    transform: translateY(0) scaleY(1);
  }
  20% {
    transform: translateY(-40px) scaleY(0.95);
  }
  50% {
    transform: translateY(0) scaleY(1.1);
  }
  70% {
    transform: translateY(-25px) scaleY(0.97);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  15% {
    transform: translateX(-8px) rotate(-3deg);
  }
  30% {
    transform: translateX(8px) rotate(3deg);
  }
  45% {
    transform: translateX(-6px) rotate(-2deg);
  }
  60% {
    transform: translateX(4px) rotate(2deg);
  }
  75% {
    transform: translateX(-2px) rotate(-1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes poyoyon {
  0% {
    transform: translateX(140px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
  20%, 100% {
    opacity: 1;
  }
}
@keyframes poyoyon2 {
  0% {
    transform: scale(1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
@keyframes poyoyon3 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
html {
  font-size: 4.1vw;
  scroll-behavior: smooth;
  scroll-padding-top: 15.4vw;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: 2.25;
  color: #8A7869;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: text-bottom;
}

header {
  padding: 1rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(../img/orn_upper.png) repeat-x center top;
  background-size: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .logo {
  font-size: 1.5rem;
}
header nav .nav-links {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #F5F1D4;
  padding: 1rem;
  list-style: none;
  margin: 0;
}
header nav .nav-links li {
  padding: 0 1rem;
}
header nav .nav-links a {
  color: white;
  text-decoration: none;
}
header nav .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
header nav .hamburger button {
  display: block;
  width: 12.8vw;
  height: 12.8vw;
  background: url(../img/icon_menu.png) no-repeat center center;
  background-size: contain;
}
header nav .hamburger.active button {
  background: url(../img/icon_close.png) no-repeat center center;
  background-size: contain;
}

main {
  overflow: hidden;
  background: #FFFEF8;
}
main .splide {
  margin: 2rem 0;
}
main .splide .splide__slide img {
  width: 100%;
  height: auto;
}

section {
  margin: 2rem 0;
}
section h2 {
  margin-bottom: 2.5rem;
  line-height: 1;
}
section h2 .en {
  display: block;
  margin-top: 0.5rem;
}

footer {
  position: relative;
  background-color: #8A7869;
  color: white;
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30.8vw;
  height: 20.5vw;
  background: url(../img/pukupupu_3.webp) no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -72%);
}
footer .footer-logo {
  width: 53.8vw;
  margin: 0 auto;
}
footer .sns-menu {
  width: 32%;
  margin: 1rem auto;
}
footer small {
  font-size: 2.6vw;
}

.container {
  padding: 0 1rem;
}

.sns-menu {
  width: 27.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9%;
}
.sns-menu a {
  display: block;
}

.to-top {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  width: 19.2vw;
  height: 19.2vw;
  z-index: 99;
  display: none;
  animation: gentleBounce 5s ease-in-out infinite;
}
.to-top a {
  display: block;
  transition: 1s;
}
.to-top a:hover {
  scale: 0.95;
}

#mainvisual {
  background-color: #F5F1D4;
  background-image: url(../img/orn_circle.png);
  background-size: 88.5vw;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 25.6vw;
  height: 96.2vw;
}
#mainvisual h1 {
  width: 71.8vw;
  margin: 0 auto 2rem;
  animation: poyoyon2 0.6s 1s ease-in-out forwards;
}
#mainvisual figure {
  width: 53.8vw;
  margin: 0 auto;
}

#intro {
  text-align: center;
  padding-top: 6.5rem;
  padding-bottom: 8rem;
}
#intro h2 {
  width: 69.2vw;
  margin: 0 auto 2.5rem;
}
#intro h2 .en {
  width: 34.9vw;
  margin: 0.5rem auto 0 auto;
}
#intro hr.silhouette {
  width: 7rem;
  height: 2rem;
  background: url(../img/silhouette.png) no-repeat center center;
  background-size: contain;
  margin: 2rem auto;
  border: none;
  outline: none;
}

#profile {
  margin-bottom: 10rem;
}
#profile .tab-container {
  padding: 4rem 1rem 6rem;
  background: #FAF1E0;
  border-radius: 50vw;
  text-align: center;
  position: relative;
}
#profile .tab-container .tab-content {
  position: relative;
  min-height: 170vw;
}
#profile .tab-container .tab-pane {
  position: absolute;
  width: 100%;
  transition: opacity 0.3s;
}
#profile .tab-container .tab-buttons {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#profile .tab-container .tab-buttons .tab-button {
  width: 25.6vw;
  border-radius: 100%;
  background: radial-gradient(circle at center, #FFF 0%, #FFF 60%, #FAF1E0 60%, #FAF1E0 100%);
  box-shadow: #EADCCF 0px 1.3vw 0px;
}
#profile .tab-container .tab-buttons .tab-button.active {
  background: #FAF1E0;
  box-shadow: none;
}
#profile .tab-container .character {
  width: 48.7vw;
  margin: 0 auto;
}
#profile .tab-container h3 {
  width: 36.9vw;
  margin: 1rem auto 2.5rem;
}

#story {
  position: relative;
  background: #F5F1ED;
  margin-bottom: 0;
  padding-top: 8.5rem;
  padding-bottom: 10.5rem;
}
#story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11vw;
  background: #fff url(../img/orn_story.png) no-repeat center bottom;
  background-size: contain;
}
#story .book {
  position: relative;
}
#story .book .page {
  border: solid 0.8vw #E0D4BB;
}
#story .book .splide__arrow {
  width: 12.8vw;
  height: 12.8vw;
  top: 115%;
  background: url(../img/icon_next.png) no-repeat center center;
  background-size: contain;
  transition: opacity 0.3s;
}
#story .book .splide__arrow svg {
  display: none;
}
#story .book .splide__arrow:disabled {
  opacity: 0;
}
#story .book .splide__arrow--prev {
  background: url(../img/icon_prev.png) no-repeat center center;
  background-size: contain;
}
#story .book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 25.6vw;
  height: calc(100% - 1.5vw);
  background: #FCF8EF;
  border: solid 0.8vw #E0D4BB;
}
#story .book::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 120%;
  height: 5.1vw;
  background: #E0D4BB;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 54%);
}

#gallery {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8rem;
  background: url(../img/bg.webp) no-repeat center top;
  background-size: 120%;
}
#gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11vw;
  background: url(../img/orn_story.png) no-repeat center bottom;
  background-size: contain;
  transform: rotate(180deg);
}
#gallery .sns-menu {
  width: 50%;
  margin: 1rem auto;
}
#gallery .bnr {
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 5rem;
}
#gallery .bnr ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#gallery .gallery a {
  display: block;
  border: solid 2px #8A7869;
  position: relative;
}
#gallery .gallery a::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_blank.png) no-repeat center center;
  background-size: contain;
}

@media (min-width: 769px) {
  html {
    font-size: 20px;
    scroll-padding-top: 60px;
  }
  footer {
    padding-top: 5rem;
    padding-bottom: 1rem;
  }
  footer::before {
    width: 200px;
    height: 135px;
  }
  footer .footer-logo {
    width: 410px;
  }
  footer .sns-menu {
    width: 220px;
  }
  footer small {
    font-size: 12px;
  }
  header {
    width: 100%;
    height: 140px;
    background: url(../img/orn_upper.png) repeat-x center top;
    background-size: 400px;
  }
  header nav .nav-links {
    width: 300px;
  }
  header nav .hamburger button {
    width: 60px;
    height: 60px;
  }
  section h2 {
    width: 700px;
    margin: 0 auto 2.5rem;
  }
  .sns-menu {
    width: 180px;
  }
  .spbr {
    display: none;
  }
  .to-top {
    width: 158px;
    height: 158px;
  }
  #mainvisual {
    background-image: url(../img/orn_circle.png);
    background-size: 980px;
    padding-top: 100px;
    height: 776px;
  }
  #mainvisual h1 {
    width: 460px;
    margin: 0 auto 2rem;
  }
  #mainvisual figure {
    width: 460px;
    margin: 0 auto;
  }
  #intro h2 {
    width: 575px;
  }
  #intro h2 .en {
    width: 294px;
  }
  #intro hr.silhouette {
    width: 7rem;
    height: 2rem;
    background: url(../img/silhouette.png) no-repeat center center;
    background-size: contain;
    margin: 2rem auto;
    border: none;
    outline: none;
  }
  #profile {
    margin-bottom: 10rem;
  }
  #profile .tab-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 360px;
  }
  #profile .tab-container .tab-content {
    min-height: 806px;
  }
  #profile .tab-container .tab-pane {
    display: flex;
    flex-direction: column;
  }
  #profile .tab-container .tab-buttons .tab-button {
    width: 200px;
  }
  #profile .tab-container .character {
    width: 300px;
  }
  #profile .tab-container h3 {
    width: 286px;
    margin: 0 auto;
  }
  #profile .tab-container #tab1 h3 {
    transform: translate(-32px);
  }
  #story .book {
    max-width: 500px;
    margin: 0 auto;
  }
  #story .book .splide__arrow {
    width: 60px;
    height: 60px;
  }
  #story .book::after {
    width: 200%;
    height: 60px;
    clip-path: polygon(100% 0, 0 0, 50% 39%);
  }
  #gallery {
    background: url(../img/bg_pc.webp) repeat center top;
    background-size: 100%;
  }
  #gallery::before {
    height: 74px;
    background: url(../img/orn_story.png) repeat-x center bottom;
    background-size: 740px;
    transform: rotate(180deg);
  }
  #gallery .gallery {
    margin-bottom: 4rem;
  }
  #gallery .sns {
    text-align: center;
  }
  #gallery .sns-menu {
    width: 400px;
  }
  #gallery .bnr {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 6rem;
    margin-bottom: 0;
    padding-bottom: 10rem;
  }
  #gallery .bnr ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #gallery .gallery a {
    border: solid 3px #8A7869;
  }
}
@media (min-width: 1024px) {
  header {
    position: absolute;
    width: 100%;
    height: 140px;
    background: url(../img/orn_upper.png) repeat-x center top;
    background-size: 740px;
  }
  header nav .nav-links {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 1rem;
    list-style: none;
    margin: 0;
  }
  header nav .nav-links li {
    position: absolute;
    left: 50%;
    padding: 0;
  }
  header nav .nav-links a {
    display: block;
    width: 300px;
    height: 316px;
  }
  header nav .nav-links a img {
    display: none;
  }
  header nav .nav-links a {
    transition: 0.2s ease-in-out;
  }
  header nav .nav-links a:hover {
    transform: scale(0.95);
  }
  header nav .nav-links li:nth-child(1) {
    top: 100px;
    margin-left: -600px;
  }
  header nav .nav-links li:nth-child(1) a {
    background: url(../img/nav_01_baloon.png) no-repeat center center;
    background-size: contain;
  }
  header nav .nav-links li:nth-child(1) {
    animation: wobble 8s 0s linear infinite;
  }
  header nav .nav-links li:nth-child(2) {
    top: 100px;
    margin-left: 300px;
  }
  header nav .nav-links li:nth-child(2) a {
    background: url(../img/nav_03_baloon.png) no-repeat center center;
    background-size: contain;
  }
  header nav .nav-links li:nth-child(2) {
    animation: wobble 10s linear infinite;
  }
  header nav .nav-links li:nth-child(3) {
    top: 400px;
    margin-left: -700px;
  }
  header nav .nav-links li:nth-child(3) a {
    background: url(../img/nav_02_baloon.png) no-repeat center center;
    background-size: contain;
  }
  header nav .nav-links li:nth-child(3) {
    animation: wobble 9s linear infinite;
  }
  header nav .nav-links li:nth-child(4) {
    top: 400px;
    margin-left: 400px;
  }
  header nav .nav-links li:nth-child(4) a {
    background: url(../img/nav_04_baloon.png) no-repeat center center;
    background-size: contain;
  }
  header nav .nav-links li:nth-child(4) {
    animation: wobble 8.5s linear infinite;
  }
  header nav .hamburger {
    display: none;
  }
  #profile {
    margin-bottom: 10rem;
  }
  #profile .tab-container {
    max-width: 1310px;
    margin: 0 auto;
    border-radius: 360px;
  }
  #profile .tab-container .tab-content {
    min-height: 506px;
  }
  #profile .tab-container .tab-pane {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
  #profile .tab-container .tab-pane:nth-child(2) {
    flex-direction: row-reverse;
  }
  #profile .tab-container .tab-buttons .tab-button {
    width: 200px;
  }
  #profile .tab-container .character {
    width: 420px;
    margin: 0;
  }
  #profile .tab-container h3 {
    width: 286px;
    margin: 0 0 2.5rem;
  }
  #profile .tab-container #tab1 h3 {
    transform: translate(-32px);
  }
  #story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    background: #fff url(../img/orn_story.png) repeat-x center bottom;
    background-size: 740px;
  }
  #story .book {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
  }
  #story .book .page {
    border: solid 6px #E0D4BB;
  }
  #story .book .splide__arrow {
    width: 60px;
    height: 60px;
    top: 50%;
  }
  #story .book .splide__arrow--prev {
    left: -4rem;
  }
  #story .book .splide__arrow--next {
    right: -4rem;
  }
  #story .book::before {
    content: none;
  }
  #story .book::after {
    width: 100%;
    height: 45px;
    clip-path: polygon(100% 0, 0 0, 50% 39%);
  }
  #gallery .sns {
    text-align: center;
  }
  #gallery .sns p {
    width: 908px;
    height: 58px;
    background: url(../img/text_01_pc.png) no-repeat center center;
    background-size: 100%;
    margin: 0 auto 2.5rem;
  }
  #gallery .sns p img {
    display: none;
  }
  #gallery .bnr {
    max-width: 1024px;
  }
}
.fade-in-element {
  opacity: 0;
  transform: translate(0, 40px) scale(1, 0.95);
  transition: 0.5s ease-in-out;
}
.fade-in-element.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1, 1);
}/*# sourceMappingURL=style.css.map */