@charset "UTF-8";
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/* mediaquery */
/* color */
/* font */
/* vw */
/* clampVw */
/*line-height*/
/*---------------------------------------------------------------
common
-------------------------------------------------------------- */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

i {
  margin: auto 20px;
}

.wf-loading {
  opacity: 0;
}

html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 50px;
}

body {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  line-height: 180%;
  color: #8A675D;
  background: #FFFDED;
  background-size: cover;
  background-position: center center;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

a,
a:hover,
a:visited {
  color: #8A675D;
  text-decoration: none;
}

.fade-in {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}

.fade-in2 {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

video {
  display: block;
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#load {
  background: #D4ECEA;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

#load figure {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 100px;
}

.btn {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: clamp(1.6rem, 1.5625vw, 2.4rem) clamp(2.4rem, 2.34375vw, 3.6rem);
  background: #D4ECEA;
  border: dashed 1px;
  font-size: clamp(1.4rem, 1.171875vw, 1.6rem);
  font-weight: 700;
  font-family: "zen-maru-gothic", sans-serif;
  line-height: 150%;
  letter-spacing: 0;
  color: #8A675D;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100vh;
  box-shadow: 2px 2px 0px 0px rgb(138, 103, 93);
  white-space: nowrap;
  cursor: pointer;
}
.btn:after {
  font-family: "Material Icons";
  content: "\e5c8";
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  margin-left: 0.3em;
  display: inline-block;
  line-height: 1;
}
.btn:hover {
  background: #FFF9BC;
}

/* --------------------------------------------
 ポップアップ
-------------------------------------------- */
/* モーダルの背景 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 249, 188, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 5555;
}

/* 表示時のクラス */
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* モーダル本体 */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  border: solid 2px #8A675D;
  max-width: 560px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 表示時アニメーション */
.modal-overlay.show .modal-content {
  opacity: 1;
  transform: translateY(0);
}

/* 閉じるボタン */
.close-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2.4rem;
  background: #8A675D;
  color: #fff;
  border: none;
  border-radius: 100vh;
  cursor: pointer;
}

.modal-content {
  padding: 50px 20px;
  text-align: center;
}
.modal-content h2 {
  margin-bottom: 30px;
  font-size: 2.8rem;
}
.modal-content p {
  margin-bottom: 30px;
  font-size: 1.6rem;
  line-height: 1.75;
}
.modal-content p .strong-1 {
  margin-top: 3px;
  padding: 0 5px 0 10px;
  color: #fff;
  background: #F3A183;
  display: inline-block;
}
.modal-content p .strong-2 {
  color: #F3A183;
  border-bottom: dotted 1px;
}
.modal-content .btn {
  max-width: 400px;
}

/*---------------------------------------------------------------
navi
-------------------------------------------------------------- */
#toggle {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 2.6666666667vw;
  right: 2.6666666667vw;
  background: #D4ECEA;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #toggle {
    top: 50px;
    right: 50px;
  }
}

#toggle-box {
  margin-top: -4px;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #8A675D;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}

#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  top: 100%;
  transform: translatey(-50%);
}

#toggle-box > p {
  color: #8A675D;
  font-size: 10px;
  margin-top: 8px;
  text-align: center;
}

#toggle {
  z-index: 999;
}

#nav-content {
  z-index: 99;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #D4ECEA;
  color: #8A675D;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #nav-content {
    width: 50%;
    max-width: 800px;
    border-left: solid 1px #B4D8D5;
  }
}
#nav-content nav {
  width: 80%;
  padding: 13.3333333333vw 10%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  #nav-content nav {
    padding: 80px 10%;
  }
}
#nav-content nav ul {
  list-style: none;
}
#nav-content nav ul li {
  margin-bottom: 48px;
}
#nav-content nav ul li a {
  display: block;
  color: #8A675D;
  text-decoration: none;
  text-align: center;
}
#nav-content nav ul li a .en {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 1.796875vw, 2.4rem);
  font-weight: 700;
  line-height: 100%;
}
#nav-content nav ul li a .jp {
  font-size: clamp(1.2rem, 1.015625vw, 1.4rem);
  font-weight: 700;
  line-height: 100%;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #8A675D;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #toggle-box > p {
  display: none;
}

.is-open #nav-content {
  z-index: 99;
  transform: translateX(0);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

.sp_none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp_none {
    display: block;
  }
}

/*-------------------------------
main_area
--------------------------------- */
.main_area {
  width: 100%;
  background: #FFF9BC;
}
.main_area .container {
  width: 100%;
  padding-top: 165.3333333333%;
  position: relative;
  z-index: 1;
  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
}
@media screen and (min-width: 768px) {
  .main_area .container {
    padding-top: 58.3333333333%;
  }
}
.main_area .container .logo_pokemon {
  width: 32vw;
  position: absolute;
  top: 8vw;
  left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .main_area .container .logo_pokemon {
    width: 13.8888888889%;
    top: 5.9523809524%;
    left: 3.4722222222%;
  }
}
.main_area .container .box {
  width: 66.6666666667%;
  margin-top: 1.6129032258%;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main_area .container .box {
    width: 34.7222222222%;
    margin-top: 0;
  }
}
.main_area .container .box h1.title {
  width: 80%;
  margin: 0 auto 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .main_area .container .box h1.title {
    margin: 0 auto 9.5238095238%;
  }
}
.main_area .container .box .main_img {
  width: 100%;
}
.main_area .container .deco {
  position: absolute;
}
.main_area .container .deco_01 {
  width: 9.0666666667%;
  left: 23.2%;
  top: 85.3225806452%;
  animation-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_01 {
    width: 5.5555555556%;
    left: 75.6944444444%;
    top: 6.9047619048%;
  }
}
.main_area .container .deco_02 {
  width: 5.3333333333%;
  left: 63.2%;
  top: 90.6451612903%;
  position: absolute;
  animation-delay: 1s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_02 {
    width: 3.3333333333%;
    left: 75%;
    top: 87.5%;
  }
}
.main_area .container .deco_03 {
  width: 8.2666666667%;
  left: 20.8%;
  top: 13.8709677419%;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_03 {
    width: 5.2083333333%;
    left: 23.75%;
    top: 14.7619047619%;
  }
}
.main_area .container .deco_04 {
  width: 11.2%;
  left: 7.7333333333%;
  top: 40.1612903226%;
  animation-delay: 1s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_04 {
    width: 6.9444444444%;
    left: 23.9583333333%;
    top: 43.6904761905%;
  }
}
.main_area .container .deco_05 {
  width: 8.8%;
  left: 81.0666666667%;
  top: 16.4516129032%;
  animation-delay: 1s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_05 {
    width: 5.4861111111%;
    left: 90.8333333333%;
    top: 28.3333333333%;
  }
}
.main_area .container .deco_06 {
  width: 8.8%;
  left: 49.8666666667%;
  top: 6.7741935484%;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_06 {
    width: 5.4861111111%;
    left: 21.0416666667%;
    top: 81.6666666667%;
  }
}
.main_area .container .deco_07 {
  width: 7.2%;
  left: 0.5333333333%;
  top: 53.3870967742%;
  animation-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_07 {
    width: 4.4444444444%;
    left: 10.4166666667%;
    top: 57.1428571429%;
  }
}
.main_area .container .deco_08 {
  width: 9.3333333333%;
  left: 1.3333333333%;
  top: 21.6129032258%;
  animation-delay: 1s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_08 {
    width: 5.7638888889%;
    left: 0.6944444444%;
    top: 22.2619047619%;
  }
}
.main_area .container .deco_09 {
  width: 8.8%;
  left: 89.3333333333%;
  top: 64.1935483871%;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_09 {
    width: 5.4861111111%;
    left: 93.0555555556%;
    top: 81.6666666667%;
  }
}
.main_area .container .deco_10 {
  width: 6.4%;
  left: 60.5333333333%;
  top: 33.8709677419%;
  animation-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_10 {
    width: 4.0277777778%;
    left: 81.25%;
    top: 53.0952380952%;
  }
}
.main_area .container .deco_11 {
  width: 8.2666666667%;
  left: 89.8666666667%;
  top: 43.8709677419%;
  animation-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .main_area .container .deco_11 {
    width: 5.1388888889%;
    left: 67.8472222222%;
    top: 37.619047619%;
  }
}
.main_area .container small {
  font-size: clamp(0.8rem, 0.78125vw, 1.2rem);
  letter-spacing: 0;
  position: absolute;
  bottom: clamp(2rem, 1.953125vw, 3rem);
  left: clamp(2rem, 1.953125vw, 3rem);
}
.main_area .container .scroll_down {
  position: absolute;
  bottom: clamp(2rem, 13.28125vw, 32rem);
  right: clamp(2rem, 4.6875vw, 10rem);
  z-index: 9;
}
.main_area .container .scroll_down a {
  position: absolute;
  left: clamp(-1.2rem, -1.171875vw, -1.8rem);
  bottom: clamp(11rem, 10.703125vw, 16.5rem);
  color: #8A675D;
  font-size: clamp(1.2rem, 1.09375vw, 1.6rem);
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
.main_area .container .scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8A675D;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 100px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.main_area .container .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1px;
  width: 1px;
  height: clamp(10rem, 9.765625vw, 15rem);
  background: #8A675D;
}

/*-------------------------------
date_area
--------------------------------- */
.date_area {
  padding: clamp(3.2rem, 3.125vw, 4.8rem) clamp(2.4rem, 2.1875vw, 3.2rem);
  background: #D4ECEA;
  text-align: center;
  border-bottom: solid 1px #B4D8D5;
}
.date_area .title {
  margin-bottom: clamp(0.8rem, 0.78125vw, 1.2rem);
  padding: clamp(0.8rem, 0.78125vw, 1.2rem) clamp(1.6rem, 1.5625vw, 2.4rem);
  font-size: clamp(1.2rem, 1.171875vw, 1.8rem);
  font-weight: 700;
  line-height: 100%;
  background: #FFF9BC;
  border-radius: 100vh;
  display: inline-block;
}
.date_area .date {
  font-size: clamp(3.2rem, 3.125vw, 4.8rem);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #FFF9BC;
  text-shadow: 1px 1px 0 #8A675D, -1px 1px 0 #8A675D, 1px -1px 0 #8A675D, -1px -1px 0 #8A675D;
}
.date_area .date span {
  margin: 0 clamp(0.4rem, 0.46875vw, 0.8rem);
  font-size: clamp(2.4rem, 2.34375vw, 3.6rem);
}

/*-------------------------------
notice_area
--------------------------------- */
.notice_area {
  width: 100%;
  background: url("../images/bg_dot.png") #D4ECEA;
  background-size: 200px;
}
.notice_area .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(9.6rem, 11.25vw, 19.2rem) clamp(2.4rem, 7.1875vw, 16rem);
}
.notice_area .container h2 {
  margin-bottom: clamp(4.2rem, 4.140625vw, 6.4rem);
  margin-right: clamp(1.6rem, 1.5625vw, 2.4rem);
  font-size: clamp(4rem, 3.90625vw, 6rem);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #FFFDED;
  text-align: center;
  text-shadow: 1px 1px 0 #8A675D, -1px 1px 0 #8A675D, 1px -1px 0 #8A675D, -1px -1px 0 #8A675D;
}
.notice_area .container h2 span {
  margin: clamp(1.6rem, 1.5625vw, 2.4rem) auto 0;
  font-size: clamp(1.4rem, 1.328125vw, 2.1rem);
  color: #8A675D;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: none;
  display: block;
  line-height: 100%;
}
.notice_area .container ul.notice_box {
  max-width: 1000px;
  margin: 0 auto clamp(4rem, 3.90625vw, 6rem);
  background: #FFFDED;
  border-radius: 20px;
  position: relative;
}
.notice_area .container ul.notice_box > li {
  padding: clamp(5.6rem, 5.46875vw, 8.4rem) clamp(2.4rem, 5.625vw, 12rem);
  border-bottom: solid 1px #D4ECEA;
}
@media screen and (min-width: 768px) {
  .notice_area .container ul.notice_box > li {
    text-align: center;
  }
}
.notice_area .container ul.notice_box > li h3 {
  margin-bottom: clamp(2.4rem, 2.34375vw, 3.6rem);
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .notice_area .container ul.notice_box > li h3 {
    justify-content: center;
  }
}
.notice_area .container ul.notice_box > li h3 span {
  width: clamp(2.4rem, 2.1875vw, 3.6rem);
  height: clamp(2.4rem, 2.1875vw, 3.6rem);
  margin-right: clamp(0.8rem, 0.78125vw, 1.2rem);
  background: #D4ECEA;
  border-radius: 100vh;
  font-size: clamp(1.4rem, 1.328125vw, 2.1rem);
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice_area .container ul.notice_box > li p {
  font-size: clamp(1.4rem, 1.171875vw, 1.6rem);
  line-height: 1.7142857143;
  letter-spacing: 0;
}
.notice_area .container ul.notice_box > li p span {
  color: #EA4F25;
}
.notice_area .container ul.notice_box > li ul.notice_list {
  padding-top: 20px;
  font-size: clamp(1.2rem, 1.015625vw, 1.4rem);
  line-height: 1.5;
  border-top: dotted 1px;
}
@media screen and (min-width: 768px) {
  .notice_area .container ul.notice_box > li ul.notice_list {
    text-align: left;
  }
}
.notice_area .container ul.notice_box > li ul.notice_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.notice_area .container ul.notice_box > li .btn {
  margin: clamp(2.4rem, 2.34375vw, 3.6rem) auto;
  max-width: 350px;
}
.notice_area .container ul.notice_box .chara_3 {
  width: clamp(8.8rem, 10.3125vw, 17.6rem);
  bottom: calc(100% + clamp(2.4rem, 2.8125vw, 4.8rem));
  right: clamp(-4.8rem, -2.5vw, -1.6rem);
  position: absolute;
}
.notice_area .container ul.notice_box .chara_3 img {
  width: 100%;
}
.notice_area .container .scroll-wrapper {
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.notice_area .container .scroll-container {
  display: flex;
  animation: scroll-left 20s linear infinite;
}
@media screen and (min-width: 768px) {
  .notice_area .container .scroll-container {
    animation: scroll-left 40s linear infinite;
  }
}
.notice_area .container .scroll-container .img {
  flex-shrink: 0;
  width: clamp(10rem, 11.71875vw, 20rem);
  margin-right: clamp(1.6rem, 1.875vw, 3.2rem);
}
.notice_area .container .scroll-container .img img {
  width: 100%;
  display: block;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*-------------------------------
item_area
--------------------------------- */
.item_area {
  position: relative;
}
.item_area .ball-sticky {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, 10%);
  width: clamp(40rem, 46.875vw, 80rem);
  z-index: 0;
  pointer-events: none;
  transition: top 0.2s ease;
}
.item_area .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(8rem, 9.375vw, 16rem) clamp(2.4rem, 7.1875vw, 16rem) clamp(11.2rem, 13.125vw, 22.4rem);
}
.item_area .container h2 {
  font-size: clamp(5.6rem, 5.46875vw, 8.4rem);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #D4ECEA;
  text-align: center;
  text-shadow: 1px 1px 0 #8A675D, -1px 1px 0 #8A675D, 1px -1px 0 #8A675D, -1px -1px 0 #8A675D;
}
.item_area .container .owabi {
  width: 100%;
  margin: clamp(7.2rem, 8.4375vw, 14.4rem) auto 0;
  padding: clamp(3.2rem, 3.125vw, 4.8rem) clamp(2.4rem, 5.625vw, 12rem);
  border: dotted 1px;
  text-align: center;
}
.item_area .container .owabi h3 {
  margin: 0 auto clamp(1.6rem, 1.5625vw, 2.4rem);
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .item_area .container .owabi h3 {
    justify-content: center;
  }
}
.item_area .container .owabi p {
  font-size: clamp(1.3rem, 1.09375vw, 1.5rem);
  line-height: 1.7142857143;
  letter-spacing: 0;
  text-align: left;
}
.item_area .container .owabi p span {
  color: #EA4F25;
}
@media screen and (min-width: 768px) {
  .item_area .container .owabi p {
    text-align: center;
  }
}
.item_area .container .owabi h4 {
  margin: clamp(2.4rem, 2.34375vw, 3.6rem) auto clamp(0.8rem, 0.78125vw, 1.2rem);
}
.item_area .container .owabi figure {
  max-width: 600px;
  margin: 0 auto;
}
.item_area .container .owabi .credit {
  text-align: center;
}
.item_area .container .item {
  max-width: 1000px;
  margin: clamp(7.2rem, 8.4375vw, 14.4rem) auto 0;
  position: relative;
  text-align: center;
}
.item_area .container .item .chara_1 {
  width: clamp(9.8rem, 11.484375vw, 19.6rem);
  position: absolute;
  bottom: calc(100% - clamp(6rem, 9.375vw, 18rem));
  left: clamp(-12.8rem, -5.625vw, -1.6rem);
}
.item_area .container .item .chara_6 {
  width: clamp(7rem, 8.203125vw, 14rem);
  position: absolute;
  bottom: calc(100% - clamp(6rem, 9.375vw, 18rem));
  right: clamp(-6.4rem, -2.8125vw, -0.8rem);
  animation-delay: 0.5s;
}
.item_area .container .item .chara_7 {
  width: clamp(11.2rem, 13.125vw, 22.4rem);
  position: absolute;
  bottom: calc(100% - clamp(3.2rem, 5vw, 9.6rem));
  left: clamp(-12.8rem, -5.625vw, -1.6rem);
}
.item_area .container .item .chara_2 {
  width: clamp(8.8rem, 10.3125vw, 17.6rem);
  position: absolute;
  bottom: calc(100% - clamp(6rem, 9.375vw, 18rem));
  right: clamp(-6.4rem, -2.8125vw, -0.8rem);
  animation-delay: 0.5s;
}
.item_area .container .item h3 {
  margin: 0 auto clamp(5.6rem, 5.46875vw, 8.4rem);
  padding-bottom: clamp(1.2rem, 1.171875vw, 1.8rem);
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  display: inline-block;
  border-bottom: dotted 1px;
  letter-spacing: 0.05em;
}
.item_area .container .item h3 .baloon {
  margin: 0 auto clamp(2rem, 1.953125vw, 3rem);
  padding: clamp(0.8rem, 0.78125vw, 1.2rem) clamp(1.6rem, 1.5625vw, 2.4rem);
  background: #DEDBEE;
  border-radius: 100vh;
  font-size: clamp(1.4rem, 1.328125vw, 2.1rem);
  line-height: 100%;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
}
.item_area .container .item h3 .baloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: clamp(-0.4rem, -0.390625vw, -0.6rem);
  border-left: clamp(0.4rem, 0.390625vw, 0.6rem) solid transparent;
  border-right: clamp(0.4rem, 0.390625vw, 0.6rem) solid transparent;
  border-top: clamp(1.2rem, 1.171875vw, 1.8rem) solid #DEDBEE;
}
.item_area .container .item .more-items {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.item_area .container .item .more-items.open {
  max-height: 3000px;
}
.item_area .container .item .toggle-button::after {
  font-family: "Material Icons";
  content: "\e5db";
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  margin-left: 0.3em;
  display: inline-block;
  line-height: 1;
  transition: transform 0.3s ease;
}
.item_area .container .item .toggle-button.open::after {
  content: "\e5d8";
}
.item_area .container .item .item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item_area .container .item .item_list > li {
  width: 45%;
  margin-bottom: clamp(4rem, 3.90625vw, 6rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .item_area .container .item .item_list > li {
    width: 29%;
  }
}
.item_area .container .item .item_list > li a {
  display: block;
  line-height: 100%;
}
.item_area .container .item .item_list > li a .box {
  position: relative;
}
.item_area .container .item .item_list > li a .box ul.item_slider {
  width: 100%;
  border-radius: 26.6666666667vw 26.6666666667vw 5.3333333333vw 5.3333333333vw;
  border: dashed 1px;
  display: block;
  overflow: hidden;
  background: #fff;
}
.item_area .container .item .item_list > li a .box ul.item_slider li.img {
  width: 100%;
  padding: clamp(1.6rem, 1.5625vw, 2.4rem) 0 clamp(2rem, 1.953125vw, 3rem);
  background: #fff;
}
.item_area .container .item .item_list > li a .box ul.item_slider li.img img {
  width: 100%;
}
.item_area .container .item .item_list > li a .box ul.item_slider li.img.padding_none {
  width: 100%;
  padding: 0 0 clamp(3.6rem, 3.515625vw, 5.4rem);
  background: #fff;
}
.item_area .container .item .item_list > li a .box ul.item_slider li.img.padding_none img {
  width: 100%;
}
.item_area .container .item .item_list > li a .box .slick-dots {
  position: absolute;
  bottom: clamp(2rem, 1.875vw, 2.8rem);
  display: block;
  z-index: 9;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 100%;
}
.item_area .container .item .item_list > li a .box .slick-dots li {
  position: relative;
  display: inline-block;
  width: clamp(1.4rem, 1.40625vw, 2.2rem);
  height: clamp(1.4rem, 1.40625vw, 2.2rem);
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.item_area .container .item .item_list > li a .box .slick-dots > li:first-child:last-child {
  display: none;
}
.item_area .container .item .item_list > li a .box .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.item_area .container .item .item_list > li a .box .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.item_area .container .item .item_list > li a .box .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: clamp(0.8rem, 0.78125vw, 1.2rem) clamp(2.4rem, 2.34375vw, 3.6rem);
  font-size: clamp(1.1rem, 0.9765625vw, 1.4rem);
}
.item_area .container .item .item_list > li a .box .btn:after {
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  margin-left: 0.3em;
}
.item_area .container .item .item_list > li a .name {
  margin: clamp(3.2rem, 3.125vw, 4.8rem) 0 clamp(0.8rem, 0.78125vw, 1.2rem);
  font-size: clamp(1.2rem, 1.171875vw, 1.8rem);
  letter-spacing: 0;
  line-height: 1.5;
}
.item_area .container .item .item_list > li a .price {
  margin-bottom: clamp(0.8rem, 0.78125vw, 1.2rem);
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  letter-spacing: 0;
  font-weight: 600;
}
.item_area .container .item .item_list > li a .price span {
  margin-left: clamp(0.4rem, 0.390625vw, 0.6rem);
  font-size: clamp(1.2rem, 1.171875vw, 1.8rem);
}
.item_area .container .item .item_list > li a .size {
  font-size: clamp(1rem, 1.015625vw, 1.5rem);
}
.item_area .container .more {
  width: 80%;
  max-width: 350px;
}

/*-------------------------------
information_area
--------------------------------- */
.information_area {
  padding: clamp(9.6rem, 11.25vw, 19.2rem) clamp(2.4rem, 7.1875vw, 16rem) clamp(13.6rem, 15.9375vw, 27.2rem);
  background: #FFF9BC;
}
.information_area .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(5.6rem, 5.46875vw, 8.4rem) clamp(2.4rem, 5.625vw, 12rem);
  background: #FFFDED;
  border-radius: 20px;
  position: relative;
  border: dotted 1px;
}
.information_area .container h2 {
  font-size: clamp(3.2rem, 3.75vw, 6.4rem);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-bottom: clamp(4.2rem, 4.140625vw, 6.4rem);
  color: #FFF9BC;
  text-align: center;
  text-shadow: 1px 1px 0 #8A675D, -1px 1px 0 #8A675D, 1px -1px 0 #8A675D, -1px -1px 0 #8A675D;
}
.information_area .container ul.info_box > li {
  margin-bottom: clamp(4rem, 3.90625vw, 6rem);
}
.information_area .container ul.info_box > li h3 {
  margin-bottom: clamp(2.4rem, 2.34375vw, 3.6rem);
  padding-bottom: clamp(0.8rem, 0.9375vw, 1.6rem);
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: dashed 1px;
  text-align: center;
}
.information_area .container ul.info_box > li ul.info_list {
  font-size: clamp(1.2rem, 1.015625vw, 1.4rem);
  line-height: 1.5;
}
.information_area .container ul.info_box > li ul.info_list > li {
  margin-bottom: clamp(1.6rem, 1.5625vw, 2.4rem);
  padding-left: 1em;
  text-indent: -1em;
}
.information_area .container ul.info_box > li .btn {
  margin: clamp(2rem, 1.953125vw, 3rem) auto;
  max-width: 400px;
}
.information_area .container ul.info_box > li:last-child {
  margin-bottom: 0;
}
.information_area .container .chara_8 {
  width: clamp(9.5rem, 11.1328125vw, 19rem);
  position: absolute;
  z-index: 2;
  bottom: calc(100% + clamp(0.8rem, 0.9375vw, 1.6rem));
  left: clamp(1.6rem, 2.5vw, 4.8rem);
}
.information_area .container .chara_5 {
  width: clamp(6.2rem, 7.265625vw, 12.4rem);
  position: absolute;
  z-index: 2;
  bottom: calc(100% + clamp(4rem, 4.6875vw, 8rem));
  left: clamp(11.2rem, 17.5vw, 33.6rem);
  animation-delay: 0.5s;
}
.information_area .container .chara_4 {
  width: clamp(13rem, 15.234375vw, 26rem);
  position: absolute;
  z-index: 2;
  top: calc(100% + clamp(1.6rem, 1.5625vw, 2.4rem));
  right: clamp(-4.8rem, -2.5vw, -1.6rem);
  animation-delay: 0.5s;
}

/*-------------------------------
about_area
--------------------------------- */
.about_area {
  background: #D4ECEA;
}
.about_area .container {
  margin: 0 auto;
  padding: clamp(9.6rem, 11.25vw, 19.2rem) clamp(2.4rem, 7.1875vw, 16rem) 0;
}
@media screen and (min-width: 768px) {
  .about_area .container {
    max-width: 1440px;
    display: flex;
  }
}
.about_area .container figure {
  width: 75%;
  margin: 0 auto clamp(3.2rem, 3.125vw, 4.8rem);
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .about_area .container figure {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .about_area .container .box {
    width: 50%;
  }
}
.about_area .container .box h2 {
  margin-bottom: clamp(4.2rem, 4.140625vw, 6.4rem);
  font-size: clamp(4.2rem, 4.140625vw, 6.4rem);
  color: #FFFDED;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 1px 1px 0 #8A675D, -1px 1px 0 #8A675D, 1px -1px 0 #8A675D, -1px -1px 0 #8A675D;
}
.about_area .container .box h2 span {
  margin: clamp(1.6rem, 1.5625vw, 2.4rem) auto 0;
  font-size: clamp(1.6rem, 1.5625vw, 2.4rem);
  color: #8A675D;
  text-shadow: none;
  display: block;
  line-height: 100%;
}
.about_area .container .box p {
  margin-bottom: clamp(3.2rem, 3.125vw, 4.8rem);
  font-size: clamp(1.4rem, 1.171875vw, 1.6rem);
  line-height: 2;
  text-align: center;
}
.about_area .container .box .btn {
  background: #FFF9BC;
}

/*-----------------------------
 footer
------------------------------------ */
footer {
  width: 90%;
  margin: 0 auto;
  padding: clamp(8rem, 7.03125vw, 10rem) 0;
  text-align: center;
}
footer .f_logo {
  width: clamp(16rem, 15.625vw, 24rem);
  max-width: 200px;
  margin: 0 auto clamp(3.2rem, 3.125vw, 4.8rem);
}
footer .f_logo a,
footer .f_logo li {
  margin: 0 auto;
  padding: 0;
  display: block;
}
footer .f_logo a img,
footer .f_logo li img {
  vertical-align: bottom;
}
footer .f_icon {
  margin: 0 auto clamp(1.6rem, 1.5625vw, 2.4rem);
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .f_icon li {
  margin: 0 clamp(1.6rem, 1.5625vw, 2.4rem);
  padding: 0;
}
footer .f_icon li i {
  margin: 0;
  font-size: clamp(2.4rem, 2.34375vw, 3.6rem);
}
footer small {
  text-align: center;
  font-size: clamp(1rem, 0.9375vw, 1.4rem);
  letter-spacing: 0;
  line-height: 200%;
  display: block;
}

#floating_banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 350px;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: transform 0.5s ease;
  transform: translateY(100%);
  z-index: 90;
}
@media screen and (min-width: 768px) {
  #floating_banner {
    left: clamp(1rem, 2.34375vw, 5rem);
    right: auto;
  }
}

#floating_banner.show {
  transform: translateY(0);
}

#floating_banner.hide {
  transform: translateY(60%);
  /* 見切れてボタンだけ残る位置 */
}

#floating_banner img {
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#toggle_button {
  position: absolute;
  top: -25px;
  left: 5px;
  width: 50px;
  height: 25px;
  border: none;
  background: #8A675D;
  color: #FFFDED;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  line-height: 100%;
  padding-top: 3px;
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.gelatine {
  animation: gelatine 2s infinite;
}

@keyframes gelatine {
  0% {
    transform: scale(1, 1);
  }
  10% {
    transform: scale(0.85, 1.15);
  }
  20% {
    transform: scale(1.15, 0.85);
  }
  30% {
    transform: scale(0.9, 1.1);
  }
  40% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.float-img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(10%);
  }
}
.bounce-img {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.swing-img {
  animation: swing 3s ease-in-out infinite;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.heartbeat-img {
  animation: heartbeat 4s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/*-----------------------------
line
------------------------------------ */
.line_moku {
  position: relative;
  overflow: visible;
}

.line_moku::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 100.86/4.15;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.86 4.15" preserveAspectRatio="none"><path fill="black" d="M0 0v3.5a9.07 9.07 0 0 0 9.37-1.67 9.07 9.07 0 0 0 12.1 0 9.07 9.07 0 0 0 12.11 0 9.07 9.07 0 0 0 12.06 0 9.07 9.07 0 0 0 12.11 0 9.07 9.07 0 0 0 12.08 0 9.07 9.07 0 0 0 12.09 0 9.07 9.07 0 0 0 12.08 0 9.07 9.07 0 0 0 6.86 2.28V.01z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100.86 4.15" preserveAspectRatio="none"><path fill="black" d="M0 0v3.5a9.07 9.07 0 0 0 9.37-1.67 9.07 9.07 0 0 0 12.1 0 9.07 9.07 0 0 0 12.11 0 9.07 9.07 0 0 0 12.06 0 9.07 9.07 0 0 0 12.11 0 9.07 9.07 0 0 0 12.08 0 9.07 9.07 0 0 0 12.09 0 9.07 9.07 0 0 0 12.08 0 9.07 9.07 0 0 0 6.86 2.28V.01z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: cover;
  z-index: 1;
  transform: scaleY(-1);
  transform-origin: top;
}

.item_area.line_moku::after {
  background-color: #FFFDED;
}

.information_area.line_moku::after {
  background-color: #FFF9BC;
}

.about_area.line_moku::after {
  background-color: #D4ECEA;
}/*# sourceMappingURL=style.css.map */