@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scrollbar-width: none;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  color: #4C4336;
  opacity: 0;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 600px) {
  a:hover {
    opacity: 0.6;
  }
}

.l-bg {
  position: relative;
}

.l-bg__layer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100svh;
  position: absolute;
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 600px) {
  .l-bg__layer {
    position: fixed;
  }
}

.l-bg__top {
  background-image: url(../images/common/bg-top.png);
  opacity: 1;
}

.l-bg__bottom {
  background-image: url(../images/common/bg-bottom.png);
  opacity: 0;
}

.l-bg__steps {
  bottom: -100vh;
  height: 30svh;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 600px) {
  .l-bg__steps {
    bottom: 0;
    height: 30vh;
    position: fixed;
  }
}

.l-bg__steps img {
  aspect-ratio: 1280/275;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
}

.l-bg__tamaboke {
  mix-blend-mode: screen;
  opacity: 1;
  overflow: hidden;
  z-index: 101;
}

.l-bg__tamaboke img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.l-bg__train {
  bottom: 0;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 102;
}
@media screen and (min-width: 600px) {
  .l-bg__train {
    bottom: 0;
    overflow: auto;
  }
}

.l-bg__train > * {
  left: 50%;
  height: 300%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
}
@media screen and (min-width: 600px) {
  .l-bg__train > * {
    position: fixed;
  }
}
@media screen and (min-width: 768px) {
  .l-bg__train > * {
    height: 100%;
    width: 100%;
  }
}

.l-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.l-footer {
  bottom: 0;
  position: absolute;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .l-main {
    padding-inline: 8px;
  }
}

.l-wrap {
  margin-inline: auto;
  max-width: 406px;
  opacity: 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 406px) {
  .l-wrap:before,
  .l-wrap:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 8px;
    z-index: 3;
  }
}

.l-wrap:before {
  background: url(../images/common/bg-line-left.png) no-repeat top center/cover;
  left: 0;
}

.l-wrap:after {
  background: url(../images/common/bg-line-right.png) no-repeat top center/cover;
  right: 0;
}

.c-modal {
  align-items: center;
  background: rgba(123, 123, 123, 0.6);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100svw;
  z-index: 100;
}

.c-modal__wrap {
  background: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  left: 50%;
  max-height: 560px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 370px;
}
@media screen and (min-width: 768px) {
  .c-modal__wrap {
    width: 390px;
  }
}

.c-modal__inner {
  padding: 23px 20px 46px;
  width: 100%;
}

.c-modal__head {
  padding-top: 30px;
  position: relative;
  width: 100%;
}

.c-modal__head:before {
  background: url(../images/common/modal-top-bg.svg) no-repeat top center/contain;
  content: "";
  display: block;
  height: 65px;
  position: absolute;
  top: 0;
  width: 100%;
}

.c-modal--silver .c-modal__head:before {
  background-image: url(../images/common/modal-top-bg-silver.svg);
}

.c-modal__body {
  margin-top: 25px;
  max-height: 303px;
  overflow-y: auto;
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .c-modal__body {
    padding-inline: 40px;
  }
}

.c-modal__content p {
  background: url(../images/common/text-bg.png) repeat-y center bottom/100%;
  color: #54290E;
  font-size: 14px;
  line-height: 1.65;
  text-box-trim: trim-start;
}

.c-modal__closeWrap {
  margin-top: 40px;
  position: relative;
}

.c-modal__closeWrap:before {
  background: url(../images/common/modal-bottom-bg.svg) no-repeat top center/contain;
  bottom: -20px;
  content: "";
  display: block;
  height: 65px;
  position: absolute;
  width: 100%;
}

.c-modal--silver .c-modal__closeWrap:before {
  background-image: url(../images/common/modal-bottom-bg-silver.svg);
}

.c-modal__close {
  background: url(../images/common/modal-close.svg) no-repeat center/100%;
  display: block;
  height: 33px;
  margin-inline: auto;
  position: relative;
  width: 33px;
}

.c-modal--silver .c-modal__close {
  background-image: url(../images/common/modal-close-silver.svg);
}

.simplebar-track.simplebar-vertical {
  width: 8px;
}

.simplebar-track .simplebar-scrollbar::before {
  background: #F9CE9B;
  border-radius: 100vmax;
  left: 0;
  top: 0 !important;
  width: 100%;
}

.c-modal--silver .simplebar-track .simplebar-scrollbar::before {
  background: #ccc;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track {
  background: #fff;
  border: 1px solid #E7B875;
  border-radius: 100vmax;
}

.c-modal--silver .simplebar-track {
  border-color: #ccc;
}

.c-slider, .c-slider__list {
  display: flex;
}

.c-slider--left {
  animation: scroll-left 40s infinite linear;
}

.c-slider--right {
  animation: scroll-right 40s infinite linear;
}

.c-slider__item {
  width: 265px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.c-title {
  background: url(../images/common/title-bg.svg) no-repeat center/cover;
  height: 100px;
  padding-top: 45px;
}

.c-title h2 {
  height: 59px;
}

.c-title img {
  height: 100%;
  margin-inline: auto;
}

.p-character {
  background: url(../images/common/bottom-bg.png) no-repeat top center/cover;
}

.p-character__inner {
  padding-bottom: 560px;
  padding-top: 45px;
}

.p-character__wrap {
  background: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 40px 16px 46px;
}

.p-character__list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.p-character-modal__back {
  left: 0;
  position: absolute;
  top: 10px;
  width: 370px;
  z-index: -1;
}

.p-character-modal__head {
  height: 80px;
}

.p-character-modal__head img {
  height: 100%;
  margin-inline: auto;
}

.p-character-modal__body .c-modal__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.p-character-modal__body .c-modal__content p {
  background: url(../images/common/text-bg.png) repeat-y center bottom/100%;
}

.p-footer {
  color: #4C4336;
  width: 100%;
}

.p-footer__inner {
  padding: 0 15px 60px;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 0 20px 60px;
  }
}

.p-footer__logo-link-wrap {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.p-footer__logo-link {
  width: -moz-fit-content;
  width: fit-content;
}

.p-footer__list-wrap,
.p-footer__image-list-wrap {
  margin-top: 30px;
}

.p-footer__list,
.p-footer__image-list {
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-footer__image-list {
  gap: 7px;
}

.p-footer__item:not(:last-child) {
  border-right: 1px solid #ccc;
  line-height: 1;
  padding-right: 8px;
}

.p-footer__item:not(:first-child) {
  padding-left: 8px;
}

.p-footer__image-item {
  background: url(../images/common/footer_image-list-bg.png) no-repeat center/100% 100%;
  height: 95px;
  padding: 9px 7px;
  width: 115px;
}
@media screen and (min-width: 768px) {
  .p-footer__image-item {
    background-size: cover;
  }
}

.p-footer__image-text {
  height: 22px;
}

.p-footer__image-text svg {
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.p-footer__image-link-wrap {
  align-items: center;
  display: flex;
  gap: 11px;
  justify-content: center;
  margin-top: 10px;
}

.p-footer__image-link {
  width: 43px;
}

.p-footer__link {
  font-size: 14px;
}

.p-footer__text {
  font-size: 12px;
  margin-top: 3px;
  text-align: center;
}

.p-footer__copyright {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
}

.p-loading {
  height: calc(100svh - 13.5%);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.p-loading.is-scrolled {
  height: 100svh;
}

.p-loading__curtain img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-loading__curtainTop,
.p-loading__curtainFrontTop,
.p-loading__curtainBackTop {
  height: 100%;
  position: absolute;
  width: 100%;
}

.p-loading__curtainFrontTop {
  z-index: 101;
}

.p-loading__curtainBackTop {
  z-index: 100;
}

.p-loading__curtainFrontTop img,
.p-loading__curtainBackTop img {
  -o-object-position: center top;
     object-position: center top;
}

.p-loading__curtainClose,
.p-loading__curtainOpen {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 99;
}

.p-loading__curtainClose {
  opacity: 1;
}

.p-loading__curtainOpen {
  display: flex;
  opacity: 0;
}

.p-loading__curtainOpen-left,
.p-loading__curtainOpen-right {
  flex-shrink: 0;
  width: 50%;
}

.p-loading__curtainOpen-left img {
  -o-object-position: right center;
     object-position: right center;
}

.p-loading__curtainOpen-right img {
  -o-object-position: left center;
     object-position: left center;
}

.p-message {
  opacity: 0;
  position: relative;
  z-index: 1;
}

.p-message__listWrap {
  background: url(../images/common/message-bg.png) no-repeat center/cover;
  padding-bottom: 30px;
  padding-top: 40px;
  width: 100%;
}

.p-message__item {
  width: 100%;
}

.p-message__prevBtn {
  bottom: 18px;
  height: 32px;
  position: relative;
  width: 32px;
}

.p-message__prevBtn:after {
  content: "";
}

.p-message__prevBtn img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv {
  height: 100vh;
  max-height: 800px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100svh;
  }
}

.p-mv:before {
  background: url(../images/common/mv-curtain.png) no-repeat top center/100% 100%;
  content: "";
  display: block;
  height: 70svh;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv:before {
    background-size: cover;
    height: 530px;
  }
}

.p-mv__character {
  left: calc(50% - 15px);
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  width: 570px;
  z-index: 2;
}

.p-mv__character--black {
  max-width: 85svh;
  padding-top: 110px;
  width: 570px;
}
@media screen and (min-width: 768px) {
  .p-mv__character--black {
    max-width: none;
    padding-top: 185px;
    width: 570px;
  }
}

.p-mv__character--white {
  max-width: 75svh;
  padding-top: 78px;
  width: 570px;
}
@media screen and (min-width: 768px) {
  .p-mv__character--white {
    max-width: none;
  }
}

.p-mv__logo {
  left: 50%;
  opacity: 0;
  padding-top: min(70svh, 610px);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-mv__logo {
    padding-top: 610px;
    width: 400px;
  }
}

.p-news {
  background: url(../images/common/news-bg.png) no-repeat center/cover;
}

.p-news__inner {
  padding-block: 45px;
}

.p-news__wrap {
  background: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 23px 16px 46px;
}

.p-news__listWrap {
  margin-top: 36px;
  padding-inline: 6px;
}

.p-news__item {
  position: relative;
}

.p-news__item:not(:first-child) {
  margin-top: 9.5px;
}

.p-news__item.is-hidden {
  height: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
}

.p-news__article {
  align-items: center;
  display: grid;
  font-weight: 700;
  grid-template-columns: 40px 235px 35px;
  justify-content: space-between;
}

.p-news__date {
  color: #54290E;
  flex-shrink: 0;
  font-family: "Prata", serif;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 6px;
  text-align: center;
  width: 40px;
}

.p-news__dateYear {
  font-size: 11px;
}

.p-news__articleTitle {
  background: url(../images/common/news-title-bg.png) repeat-y center -1px/100%;
  color: #4C4336;
  font-size: 14px;
  letter-spacing: 0.18px;
  line-height: 1.75;
  text-box-trim: trim-start;
}

.p-news__link {
  background: url(../images/common/news-btn.svg) no-repeat center/100%;
  display: block;
  height: 24px;
  margin-right: auto;
  width: 34px;
}

.p-news__moreBtn {
  cursor: pointer;
  display: block;
  margin: 18px auto 0;
  width: 100px;
}

.p-news-modal__head {
  text-align: center;
}

.p-news-modal__date {
  color: #54290E;
  font-family: "Prata", serif;
  font-size: 12px;
}

.p-news-modal__title {
  color: #4C4336;
  font-size: 14px;
  font-weight: 700;
  padding-inline: 50px;
}
/*# sourceMappingURL=style.css.map */
