@charset "UTF-8";
/* ===========================================
 * 関数
 * ===========================================
*/
/* -------------------------------------------
 * breakpoint
*/
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* -------------------------------------------
 * font-size
*/
/* $base-font-sizeを基準に$sizeを%で指定 */
/* $base-font-sizeを基準に$sizeをremで指定 */
/* $base-font-sizeを基準に$sizeをpxで指定 */
/* $base-font-sizeを基準に$sizeをemで指定 */
/* $base-font-sizeを基準に$sizeをvwで指定 */
/* $base-font-sizeを基準に$sizeをvhで指定 */
/* ===========================================
 * 変数
 * ===========================================
*/
/* ===========================================
 * style
 * ===========================================
*/
body {
  font-family: "Noto Snas JP", sans-serif;
  margin: 0;
  padding: 0;
  color: #3C3C3C;
  text-align: center;
}

section {
  width: 92%;
  margin: 0 auto;
}

p {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

h2 {
  font-weight: bold;
  margin-bottom: 24px;
}

.splide__track {
  border-radius: 8px;
}

/* -------------------------------------------
 * container-md
*/
.content-contaier {
  position: relative;
  width: 100vw;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  box-shadow: 0 8px 8px #666666;
}

/* -------------------------------------------
 * nav
*/
.navbar {
  padding: 0;
}
.navbar .navbar-brand {
  margin: 0;
  padding: 0;
  height: 56px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.75);
}
.navbar .navbar-brand__img {
  display: inline-block;
  margin: 2%;
  height: 40px;
  width: auto;
}
.navbar .navbar-brand__text {
  font-size: 12px;
  margin-left: 4%;
}
.navbar .navSpBtn {
  display: block;
  position: fixed;
  width: 56px;
  height: 56px;
  top: 0;
  right: 0;
  background-color: #D5E8F2;
  cursor: pointer;
  z-index: 12;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -ms-transition-duration: 0.4s;
  -ms-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-duration: 0.4s;
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.navbar .navSpBtn span {
  display: block;
  background: none;
  position: absolute;
  width: 13px;
  height: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.navbar .navSpBtn span:before, .navbar .navSpBtn span:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3C3C3C;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -ms-transition-duration: 0.4s;
  -ms-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-duration: 0.4s;
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.navbar .navSpBtn span:before {
  transform: translateY(-3px);
}
.navbar .navSpBtn span:after {
  transform: translateY(3px);
}
.navbar .navbar-collapse {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #D5E8F2;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -ms-transition-duration: 0.4s;
  -ms-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-duration: 0.4s;
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.navbar .navbar-collapse .navbar-nav {
  position: absolute;
  width: 270px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 46%;
  display: block;
  text-align: center;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -ms-transition-duration: 0.4s;
  -ms-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-duration: 0.4s;
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.navbar .navbar-collapse .navbar-nav li {
  margin: 13px 0;
  opacity: 0;
  transform: translateY(15px);
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition-duration: 0.6s;
  -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition-duration: 0.6s;
  -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
  font-weight: bold;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(1) {
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(2) {
  transition-delay: 0.15s;
  -webkit-transition-delay: 0.15s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(3) {
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(4) {
  transition-delay: 0.25s;
  -webkit-transition-delay: 0.25s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(5) {
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(6) {
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(7) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.navbar .navbar-collapse .navbar-nav li:nth-child(8) {
  transition-delay: 0.45s;
  -webkit-transition-delay: 0.45s;
}
.navbar .navbar-collapse .navbar-nav li span {
  font-size: 18px;
  line-height: 40px;
  color: #3C3C3C;
  line-height: 1.2;
}

.show .navSpBtn {
  display: block;
  background-color: #FFFFFF;
}
.show .navSpBtn span.navbar-toggler-icon {
  color: #D5E8F2;
}
.show .navSpBtn span.navbar-toggler-icon:before {
  transform: translateY(0) rotate(45deg);
}
.show .navSpBtn span.navbar-toggler-icon:after {
  transform: translateY(0) rotate(-45deg);
}
.show .navbar-collapse {
  opacity: 1;
  visibility: visible;
}
.show .navbar-collapse .navbar-nav > li {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------
 * nav-container
*/
.nav-container {
  padding: 0 20px;
}
.nav-container .nav-content__message {
  line-height: 2;
  margin-top: 64px;
}
.nav-container .nav .nav-item {
  margin: 0 4px;
}
.nav-container .nav .nav-item .nav-link {
  color: #FFFFFF;
  background-color: #D5E8F2;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  cursor: pointer;
}

/* -------------------------------------------
 * header
*/
.header {
  position: relative;
  overflow-x: hidden;
}
.header__img {
  margin: 0;
  width: 100%;
}
.header .__icon {
  width: 24%;
  height: 24%;
  position: absolute;
  bottom: 18%;
  right: 0.5rem;
  z-index: 1;
  border-radius: 100%;
  animation: spin 10s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* -------------------------------------------
 * modal
*/
.modal .modal-dialog .modal-content .modal-header,
.modal .modal-dialog .modal-content .modal-footer {
  background-color: #4CC764;
  color: #FFF;
}
.modal .modal-dialog .modal-content .modal-body .copy-text {
  width: 90%;
  font-size: 14px;
}
.modal .modal-dialog .modal-content .modal-body .btn-copy {
  width: 90%;
  padding: 0.5rem 0;
  font-size: 13px;
}
.modal .modal-dialog .modal-content .modal-body .copy-notice {
  font-size: 12px;
}
.modal .modal-dialog .modal-content .modal-body .text-notice {
  font-size: 12px;
}

/* -------------------------------------------
 * section-cv
*/
.section-cv {
  position: relative;
  margin-top: -40%;
  padding-bottom: 20%;
}
.section-cv .cv-container {
  position: relative;
}
.section-cv .cv-container__01 {
  width: 100%;
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
}
.section-cv .cv-container__04 {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.section-cv .cv-container__05 {
  width: 90%;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

/* -------------------------------------------
 * section-plan
*/
.section-plan {
  width: 100% !important;
  padding: 8% 0;
}
.section-plan .__inner {
  position: relative;
}
.section-plan .__option {
  width: 92%;
  margin: 0 auto;
}

/* -------------------------------------------
 * section-gallery
*/
.section-gallery {
  padding-top: 20%;
}

/* -------------------------------------------
 * section-point
*/
.section-point {
  padding-top: 20%;
}
.section-point img {
  margin-bottom: 16%;
}
.section-point .__img--last {
  margin-bottom: 0;
}

/* -------------------------------------------
 * section-faq
*/
.section-faq {
  padding-top: 20%;
}
.section-faq .accordion-body {
  text-align: left;
}

/* -------------------------------------------
 * section-shop
*/
.section-shop {
  padding-top: 20%;
}
.section-shop__title {
  padding-left: 1rem;
  line-height: 2;
  text-align: left;
  border-left: 8px solid #004681;
}
.section-shop .accordion .accordion-item {
  border-radius: 12px;
  margin-bottom: 2rem;
}
.section-shop .accordion .accordion-item .accordion-header button {
  background-color: #004681;
  color: #FFF;
  font-weight: bold;
  justify-content: center;
  border-radius: 12px;
}
.section-shop .accordion .accordion-item .accordion-header button::after {
  display: none;
}
.section-shop .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: #ececec;
  border-radius: 0 0 12px 12px;
  text-align: left;
}
.section-shop img {
  margin-bottom: 16%;
}
.section-shop .__img--last {
  margin-bottom: 0;
}

/* -------------------------------------------
 * section-hp
*/
.section-hp {
  padding: 20% 0;
}

/* -------------------------------------------
 * footer
*/
/* footer nav */
.footer-nav__container {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  max-width: 768px;
}
.footer-nav__container .navbar-nav {
  padding-bottom: 16px;
}
.footer-nav__container .navbar-nav .nav-link {
  display: block;
  width: 92%;
  margin: 12px auto;
  padding: 0;
}
.footer-nav__container .navbar-nav:hover {
  color: #3C3C3C;
}

.footer {
  background-color: #D5E8F2;
  text-align: center;
  padding: 40px 0;
  margin-top: 24vw;
}
@media screen and (min-width: 768px) {
  .footer { /* 640px以下のとき */
    margin-top: 160px;
  }
}
.footer__pageTop {
  position: relative;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.1em;
  padding-top: 31px;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.footer__pageTop span {
  position: absolute;
  width: 100%;
  height: 17px;
  top: 0;
  left: 0;
  background-image: url("/module/images/event/pageTop--arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.footer__logo {
  width: 120px;
  margin: 0 auto;
}
.footer__copy {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  margin: 0;
  padding: 0;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  /* 640px以下のとき */
}/*# sourceMappingURL=753-2026.css.map */