@charset "UTF-8";
/* CSS Document */

/* =========================================
   Base & Reset
   ========================================= */
:root {
  --hover-opacity: 0.6;
  --transition: .5s;
  --main-color: #85C9B5;
  --sub-color: #3AB893;
  --menu-color: #299595;
  --font-color: #000;
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

html {
  overflow: -moz-scrollbars-vertical;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'MS PGothic', sans-serif;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.appCam *,
.appCam *:before,
.appCam *:after {
  box-sizing: border-box;
}

button:hover {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: var(--hover-opacity);
    transition: var(--transition);
    text-decoration: none;
  }
}


/* =========================================
   Layout & Wrappers
   ========================================= */
body {
  font-size: 12px;
}

#wrapper #main {
  padding-top: 0;
  background: var(--main-color);
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
}
@media screen and (max-width: 768px) {
  body {
    font-size: min(12px, 2.6666vw);
  }

  #wrapper #main {
    padding-top: 0;
    background: var(--main-color);
    border-left: none;
    border-right: none;
  }
}

.contents_inner {
  overflow: hidden;
}

#wrapper .appCam {
  padding-top: 30px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper .appCam {
    padding-top: 65px;
  }
}

#contents {
  max-width: none;
  margin-bottom: 0;
  opacity: 0;
  transition: var(--transition);
}

#main {
  margin: 0;
  padding: 0;
  border: none;
}

#contInner {
  position: relative;
  max-width: min(510px, 31.87499999999vw);
  min-width: 500px;
  width: 100%;
  margin: 0 auto 0 min(510px, 31.87499999999vw);
}

/* Fix Area (Left/Right Sidebars) */
.fix_contents_left {
  position: fixed;
  width: min(510px, 31.87499999999vw);
  display: flex;
  align-items: center;
  height: calc(100vh - 60px);
  background: var(--main-color);
}

.fix_contents_left_image {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-height: 660px) {
  .fix_contents_left_image {
    width: min(100vh, 100vw);
  }
}

.fix_contents_right {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100vw - min(510px, 31.87499999999vw) - min(500px, 50rem));
  height: 100vh;
  background: var(--main-color);
  background-position: top right;
  box-sizing: border-box;
}

/* Scroll Area */
#contentsArea {
  width: 100%;
  margin: 0 auto;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  overflow-y: scroll;
  scrollbar-width: auto;
  scrollbar-color: var(--sub-color) #E2E2E2;
}

@media screen and (max-width: 767px) {
  #contentsArea {
    height: 100vh;
    height: 100dvh;
  }
}

/* Scrollbar Customization (PC) */
@media screen and (min-width: 768px) {
  #contentsArea {
    scrollbar-width: auto;
    scrollbar-color: var(--sub-color) #E2E2E2;
  }
  .scroll_bar::-webkit-scrollbar {
    width: 10px;
  }
  .scroll_bar::-webkit-scrollbar-track {
    background-color: #E2E2E2;
    border: 4px solid #ffffff;
    border-right: none;
  }
  .scroll_bar::-webkit-scrollbar-thumb {
    background-color: var(--sub-color);
    border: 4px solid #ffffff;
    border-right: none;
  }
}

/* =========================================
   fade in
   ========================================= */
/* fade in normal*/
.fade-in-normal {
  opacity: 0;
  /* transform: translateY(0); // Y軸アニメーション */
  transition: opacity 1.5s ease-out;
  will-change: opacity, transform;
}

.fade-in-normal.is-visible {
  opacity: 1;
  /* transform: translateY(0); // Y軸アニメーション */
}

/* fade in right*/
.fade-in-right {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* fade in left*/
.fade-in-left {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   ico animation
   ========================================= */
@keyframes top_arrow {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 44px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

@-webkit-keyframes top_arrow {
  0% {
    -webkit-transform: translate(-50%, 0);
  }

  50% {
    -webkit-transform: translate(-50%, 44px);
  }

  100% {
    -webkit-transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 767px) {
  #scroll-btn::after {
    height: 40px;
  }

  @keyframes top_arrow {
    0% {
      transform: translate(-50%, 0);
    }

    50% {
      transform: translate(-50%, 44px);
    }

    100% {
      transform: translate(-50%, 0);
    }
  }

  @-webkit-keyframes top_arrow {
    0% {
      -webkit-transform: translate(-50%, 0);
    }

    50% {
      -webkit-transform: translate(-50%, 44px);
    }

    100% {
      -webkit-transform: translate(-50%, 0);
    }
  }
}

@keyframes leaf_floating {
  0% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(15px) rotate(3deg);
  }

  100% {
    transform: translateY(0) rotate(-3deg);
  }
}

@-webkit-keyframes leaf_floating {
  0% {
    -webkit-transform: translateY(0) rotate(-3deg);
  }

  50% {
    -webkit-transform: translateY(15px) rotate(3deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(-3deg);
  }
}

@keyframes photo_floating {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes photo_floating {
  0% {
    -webkit-transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 5px);
  }

  100% {
    -webkit-transform: translate(0, 0);
  }
}


/* =========================================
   Main Visual
   ========================================= */
.mainvisual {
  width: 100%;
  background: var(--main-color);
  display: none; /* Default hidden on PC if covered by fax area? (from old CSS) */
  padding-bottom: calc(15 / 335 * 100%);
}

.mainvisual_inner {
  width: 100%;
  align-items: center;
}

/* =========================================
   Content section
   ========================================= */
.main-content {
  text-align: center;
  padding-block-end: calc( 40 / 375 * 100% );
  overflow: hidden;
}

.main-content.cont_1{
  position: relative;
}

.main-content__inner {
  position: relative;
}

.main-content.cont_1,
.main-content.cont_1 .main-content__inner{
  text-align: center;
  background: linear-gradient(to bottom, #FFEE50, #FFCE2D)
}

.main-content.cont_2,
.main-content.cont_2 .main-content__inner{
  text-align: center;
  background: linear-gradient(to bottom, #CAF185, #AAE640)
}

.main-content.cont_3,
.main-content.cont_3 .main-content__inner{
  text-align: center;
  background: linear-gradient(to bottom, #B9E5E7, #6ADADF)
}

.main-content.cont_4,
.main-content.cont_4 .main-content__inner{
  text-align: center;
  background: linear-gradient(to bottom, #F8CED1, #F49DA4)
}

.main-content__section-border {
  position: relative;
}

.cont_1 .main-content__section-border::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(75 / 375 * 100%);
  aspect-ratio: 75 / 92;
  background: url('../img/ico-leaf_1.png') no-repeat center / contain;
  right: 2%;
  bottom: -60%;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite;
  will-change: transform;
}

.cont_2 .main-content__section-border::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(64 / 375 * 100%);
  aspect-ratio: 64/74;
  background: url('../img/ico-leaf_4.png') no-repeat center / contain;
  left: 2%;
  top: -40%;
  z-index: 3;
  animation: leaf_floating 2.8s ease-in-out infinite 0.4s;
  will-change: transform;
}

.cont_2 .main-content__section-border::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(132 / 375 * 100%);
  aspect-ratio: 132/56;
  background: url('../img/ico-leaf_3.png') no-repeat center / contain;
  right: 0;
  bottom: -10%;
  z-index: 3;
  animation: leaf_floating 5s ease-in-out infinite 2s;
  will-change: transform;
}

.cont_3 .main-content__section-border::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(79 / 375 * 100%);
  aspect-ratio: 79/92;
  background: url('../img/ico-leaf_2.png') no-repeat center / contain;
  right: 4%;
  top: 30%;
  z-index: 3;
  animation: leaf_floating 5s ease-in-out infinite 0.2s;
  will-change: transform;
}

.cont_4 .main-content__section-border::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(64 / 375 * 100%);
  aspect-ratio: 64/74;
  background: url('../img/ico-leaf_2.png') no-repeat center / contain;
  left: 2%;
  top: -50%;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite 0.6s;
  will-change: transform;
}

.cont_4 .main-content__section-border::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(132 / 375 * 100%);
  aspect-ratio: 132/56;
  background: url('../img/ico-leaf_3.png') no-repeat center / contain;
  right: 0;
  bottom: -3%;
  z-index: 3;
  animation: leaf_floating 3.8s ease-in-out infinite 1.2s;
  will-change: transform;
}

.cont_4 .main-content__section-border::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(64 / 375 * 100%);
  aspect-ratio: 64/74;
  background: url('../img/ico-leaf_4.png') no-repeat center / contain;
  left: 4%;
  top: -30%;
  z-index: 3;
  animation: leaf_floating 5s ease-in-out infinite 0.2s;
  will-change: transform;
}


.main-content__title {
  width: 100%;
  margin-inline: auto;
  margin-block-end: calc( 15 / 375 * 100% );
}

.main-content__txt {
  width: calc( 335 / 375 * 100% );
  margin-inline: auto;
  margin-block-end: calc( 42 / 375 * 100% );
}

.main-content__image {
  width: calc( 240 / 375 * 100% );
  margin-inline: auto;
  margin-block-end: calc( 25 / 375 * 100% );
}

.main-content__btn {
  display: block;
  width: calc( 335 / 375 * 100% );
  margin-inline: auto;
}

.main-content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-block-end: calc( 60 / 375 * 100% );
}

.main-content__item {
  position: relative;
}

.cont_1 .main-content__item:nth-of-type(2) {
  margin-block-start: calc( 57 / 375 * 100% );
}

.cont_1 .main-content__item:nth-of-type(3) {
  margin-block-start: calc( 13 / 375 * 100% );
}

.cont_1 .main-content__item:nth-of-type(1)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(64 / 375 * 100%);
  aspect-ratio: 64/74;
  background: url('../img/ico-leaf_6.png') no-repeat center / contain;
  left: 0;
  top: -7%;
  z-index: 3;
  animation: leaf_floating 3.8s ease-in-out infinite 1.2s;
  will-change: transform; 
}

.cont_1 .main-content__item:nth-of-type(3)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(60 / 375 * 100%);
  aspect-ratio: 60/70;
  background: url('../img/ico-leaf_7.png') no-repeat center / contain;
  right: 0;
  bottom: 15%;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite 2s;
  will-change: transform; 
}

.cont_2 .main-content__item:nth-of-type(2) {
  margin-block-start: calc( 25 / 375 * 100% );
}

.cont_2 .main-content__item:nth-of-type(3) {
  margin-block-start: calc( 19 / 375 * 100% );
}

.cont_2 .main-content__item:nth-of-type(2)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(79 / 375 * 100%);
  aspect-ratio: 79/92;
  background: url('../img/ico-leaf_2.png') no-repeat center / contain;
  right: 4%;
  top: -7%;
  z-index: 3;
  animation: leaf_floating 3.8s ease-in-out infinite 1.2s;
  will-change: transform; 
}

.cont_2 .main-content__item:nth-of-type(3)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(96 / 375 * 100%);
  aspect-ratio: 96/66;
  background: url('../img/ico-leaf_12.png') no-repeat center / contain;
  left: 0;
  top: 0;
  z-index: 3;
  animation: leaf_floating 4s ease-in-out infinite 2s;
  will-change: transform; 
}

.cont_3 .main-content__item:nth-of-type(2) {
  margin-block-start: calc( 60 / 375 * 100% );
}

.cont_3 .main-content__item:nth-of-type(3) {
  margin-block-start: calc( 33 / 375 * 100% );
}

.cont_3 .main-content__item:nth-of-type(1)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(98 / 375 * 100%);
  aspect-ratio: 98/41;
  background: url('../img/ico-leaf_13.png') no-repeat center / contain;
  right: 2%;
  top: -7%;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite 1.5s;
  will-change: transform; 
}

.cont_3 .main-content__item:nth-of-type(3)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(60 / 375 * 100%);
  aspect-ratio: 60/70;
  background: url('../img/ico-leaf_7.png') no-repeat center / contain;
  right: 2%;
  top: -8%;
  z-index: 3;
  animation: leaf_floating 4s ease-in-out infinite 2s;
  will-change: transform; 
}

.cont_4 .main-content__item:nth-of-type(2) {
  margin-block-start: calc( 60 / 375 * 100% );
}

.cont_4 .main-content__item:nth-of-type(3) {
  margin-block-start: calc( 37 / 375 * 100% );
}

.cont_4 .main-content__item:nth-of-type(1)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(96 / 375 * 100%);
  aspect-ratio: 96/66;
  background: url('../img/ico-leaf_12.png') no-repeat center / contain;
  left: 2%;
  top: -14%;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite 1.3s;
  will-change: transform; 
}

.cont_4 .main-content__item:nth-of-type(1)::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(79 / 375 * 100%);
  aspect-ratio: 79/92;
  background: url('../img/ico-leaf_2.png') no-repeat center / contain;
  right: -3%;
  bottom: 10%;
  z-index: 3;
  animation: leaf_floating 4.2s ease-in-out infinite 0.5s;
  will-change: transform; 
}

.cont_4 .main-content__item:nth-of-type(3)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(104 / 375 * 100%);
  aspect-ratio: 104/52;
  background: url('../img/ico-leaf_5.png') no-repeat center / contain;
  left: 1%;
  top: 1%;
  z-index: 3;
  animation: leaf_floating 3.5s ease-in-out infinite 2s;
  will-change: transform; 
}

.cont_4 .main-content__item:nth-of-type(3)::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(96 / 375 * 100%);
  aspect-ratio: 96/66;
  background: url('../img/ico-leaf_14.png') no-repeat center / contain;
  right: 0;
  bottom: 12%;
  z-index: 3;
  animation: leaf_floating 4.2s ease-in-out infinite 0.5s;
  will-change: transform; 
}


/* =========================================
  scroll-btn
   ========================================= */
.scroll_btn_outer {
  position: relative;
  text-align: center;
  padding-block-end: calc( 58 / 375 * 100%);
}

.scroll_btn_outer::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(79 / 375 * 100%);
  aspect-ratio: 79/92;
  background: url('../img/ico-leaf_1.png') no-repeat center / contain;
  right: 5%;
  top: 0;
  z-index: 3;
  animation: leaf_floating 3.8s ease-in-out infinite 1.2s;
  will-change: transform;
}

.scroll_btn_outer::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(77 / 375 * 100%);
  aspect-ratio: 77/60;
  background: url('../img/ico-leaf_10.png') no-repeat center / contain;
  left: 2%;
  bottom: 10%;
  z-index: 3;
  animation: leaf_floating 3.1s ease-in-out infinite 0.2s;
  will-change: transform;
}

@media screen and (max-width: 767px) {
  .scroll_btn_outer {
    text-align: center;
    padding-block-end: calc( 80 / 375 * 100%);
  }
}

#scroll-btn {
  width: 40px;
  position: relative;
  left: 50%;
  top: 10px;
  padding-bottom: 1%;
}

.scroll-btn {
  position: relative;
  writing-mode: horizontal-tb;
  display: block;
  width: calc( 58 / 335 * 100% );
  margin-inline: auto;
  color: #fff;
  margin-top: 1px;
}

#scroll-btn::after {
  content: '';
  position: absolute;
  width: 2px;
  background: #fff;
  height: 40px;
  transform: translateX(-50%);
  left: 0;
  top: 0;
}

#scroll-btn::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #FFDC00;
  border-radius: 50%;
  transform: translateX(-50%);
  left: 0px;
  bottom: 0;
  animation: top_arrow infinite 5s;
  z-index: 10;
}

/* =========================================
   discription
   ========================================= */
.discription {
  overflow: hidden;
}
.discription__main {
  width: calc( 335 / 375 * 100% );
  margin-inline: auto;
  position: relative;
}

.discription__image {
  position: relative;
}

.discription__image::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(64 / 375 * 100%);
  aspect-ratio: 64/74;
  background: url('../img/ico-leaf_5.png') no-repeat center / contain;
  left: -6%;
  bottom: -5%;
  z-index: 3;
  animation: leaf_floating 3.8s ease-in-out infinite 1.2s;
  will-change: transform;
}

.discription__image::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(43 / 375 * 100%);
  aspect-ratio: 43/44;
  background: url('../img/ico-leaf_11.png') no-repeat center / contain;
  left: 44%;
  bottom: -26%;
  z-index: 3;
  animation: leaf_floating 3.8s ease-in-out infinite 1.2s;
  will-change: transform;
}


.discription__image--list {
  position: relative;
  padding-block-end: calc( 195 / 375 * 100% );
}

.discription__image--item {
  position: absolute;
}

.discription__image--item:nth-of-type(1) {
  width: calc( 156 / 335 * 100% );
  top: 10%;
  left: -10%;
  animation: photo_floating 2.6s ease-in-out infinite 0.2s;
  will-change: transform;
  z-index: 1;
}

.discription__image--item:nth-of-type(2) {
  width: calc( 163 / 335 * 100% );
  bottom: -5%;
  left: 25%;
  animation: photo_floating 2s ease-in-out infinite 0.6s;
  will-change: transform;
  z-index: 2;
}

.discription__image--item:nth-of-type(3) {
  width: calc( 167 / 335 * 100% );
  top: 10%;
  right: -10%;
  animation: photo_floating 2.3s ease-in-out infinite 0.3s;
  will-change: transform;
  z-index: 3;
}

/* =========================================
   Event Info
   ========================================= */
.event-info {
  text-align: center;
  color: #fff;
  position: relative;
  margin-block-end: calc( 25 / 375 * 100% );
}

.event-content__title {
  /* width: calc( 335 / 375 * 100% ); */
  margin-inline: auto;
  margin-block-end: calc( 15 / 375 * 100% );
}

.event-content__txt {
  width: calc( 335 / 375 * 100% );
  margin-inline: auto;
  margin-block-end: calc( 20 / 375 * 100% );
}

.event-info__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: calc( 335 / 375 * 100% );
  margin-inline: auto;
  margin-block-end: calc( 30 / 375 * 100% );
}

.event-info__item:not(:first-child) {
  margin-block-start: calc( 20 / 335 * 100% );
}

/* .event-info__btn--event {
  background: #FEAFAB;
  color: #fff;
  border-bottom: 6px solid #F6807A;
}

.event-info__btn--event::after {
  border-color: transparent transparent transparent #fff;
}

.event-info__btn--mall {
  background: #FFF08F;
  color: #EA554F;
  border-bottom: 6px solid #E8BD4B;
}

.event-info__btn--mall::after {
  border-color: transparent transparent transparent #EA554F;
} */

/* =========================================
   page-nav
   ========================================= */
.page-nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-block-end: calc( 39 / 375 * 100% );
}

.page-nav__item:not(:first-child) {
  margin-block-start: calc( 17 / 375 * 100% );
}

.page_nav_osusume:nth-of-type(1)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(57 / 375 * 100%);
  aspect-ratio: 57/66;
  background: url('../img/ico-leaf_7.png') no-repeat center / contain;
  left: 0;
  top: 0;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite 1.3s;
  will-change: transform; 
}

.page_nav_osusume:nth-of-type(1)::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(98 / 375 * 100%);
  aspect-ratio: 99/41;
  background: url('../img/ico-leaf_13.png') no-repeat center / contain;
  right: 0;
  bottom: -5%;
  z-index: 3;
  animation: leaf_floating 4.2s ease-in-out infinite 0.5s;
  will-change: transform; 
}

.page_nav_umie_navi:nth-of-type(1)::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(57 / 375 * 100%);
  aspect-ratio: 57/66;
  background: url('../img/ico-leaf_7.png') no-repeat center / contain;
  right: 0;
  top: -3%;
  z-index: 3;
  animation: leaf_floating 3s ease-in-out infinite 1.3s;
  will-change: transform; 
}

.page_nav_umie_navi:nth-of-type(1)::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(98 / 375 * 100%);
  aspect-ratio: 99/41;
  background: url('../img/ico-leaf_5.png') no-repeat center / contain;
  left: 0;
  bottom: 0;
  z-index: 3;
  animation: leaf_floating 4.2s ease-in-out infinite 0.5s;
  will-change: transform; 
}


/* =========================================
   SNS
   ========================================= */
.sns {
  overflow: hidden;
}

.sns-content {
  position: relative;
  padding-block-start: calc( 30 / 375 * 100% );
  padding-block-end: calc( 30 / 375 * 100% );
}

.sns__inner {
  width: calc( 335 / 375 * 100% );
  margin-inline: auto;
  margin-block-start: calc( 26 / 375 * 100% );
}

.sns-content__title {
  position: relative;
  width: calc( 232 / 335 * 100% );
  margin-inline: auto;
  margin-block-end: calc( 18 / 375 * 100% );
}

.sns-content__title.w-max {
  width: 100%;
}

.sns-content.leaf_1::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(64 / 375 * 100%);
  aspect-ratio: 64/74;
  background: url('../img/ico-leaf_4.png') no-repeat center / contain;
  left: -3%;
  top: -3%;
  z-index: 3;
  animation: leaf_floating 2.8s ease-in-out infinite 0.4s;
  will-change: transform;
}

.sns-content.leaf_1::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(68 / 375 * 100%);
  aspect-ratio: 68/79;
  background: url('../img/ico-leaf_1.png') no-repeat center / contain;
  right: -8%;
  top: -3%;
  z-index: 3;
  animation: leaf_floating 5s ease-in-out infinite 2s;
  will-change: transform;
}

.sns-content.leaf_2::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(50 / 375 * 100%);
  aspect-ratio: 50/58;
  background: url('../img/ico-leaf_15.png') no-repeat center / contain;
  left: -3%;
  top: -1%;
  z-index: 3;
  animation: leaf_floating 5s ease-in-out infinite 1s;
  will-change: transform;
}

.sns-content.leaf_2::after {
  position: absolute;
  content: '';
  display: block;
  width: calc(69 / 375 * 100%);
  aspect-ratio: 69/78;
  background: url('../img/ico-leaf_8.png') no-repeat center / contain;
  right: -8%;
  top: -3%;
  z-index: 3;
  animation: leaf_floating 4s ease-in-out infinite 1.5s;
  will-change: transform;
}


/* 
.sns-content__title span {
  position: relative;
  color: #fff;
  background: var(--main-color);
  z-index: 2;
  display: inline-block;
  max-width: 90%;
  padding-inline: calc(15 / 375 * 100%);
} */

/* .sns-content__title::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 0;
  right: 0;
  margin-inline: auto;
  transform: translateY(-50%);
} */

.sns__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  column-gap: calc( 19 / 335 * 100% );
  margin-block-start: calc( 31 / 335 * 100% );
}

.sns__item {
  width: 100%;
}

.sns-app__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  column-gap: calc( 15 / 335 * 100% );
  margin-block: calc(31 / 335 * 100%) calc(20 / 335 * 100%);
}

.sns-app__item:first-child {
  width: calc( 151 / 335 * 100% );
}

.sns-app__item:last-child {
  width: calc( 168 / 335 * 100% );
}

.sns-app__note {
  font-size: 1.4em;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: calc(21 / 14);
}

.otoku__list {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: calc( 20 / 375 * 100% );
}

.otoku__item {
  display: flex;
  align-items: flex-start;
  gap: calc( 10 / 335 * 100% );
  line-height: calc(27 / 18);
}

.otoku__item:not(:first-child) {
  margin-block-start: calc( 12 / 335 * 100% );
}

.otoku__item::before {
  content: '';
  display: block;
  width: calc( 20 / 335 * 100% );
  aspect-ratio: 1 / 1;
  background: url('../img/ico-arrow.png') no-repeat center / contain;
  flex-shrink: 0;
  margin-block-start: 5px;
}

.otoku__item a {
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  text-decoration: none;
}

/* =========================================
   Floating Filter
   ========================================= */
.floating-filter {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1000;
  transition: all 1s;
}
.floating-filter.is-open{
    transition: all 1s;
}

/* =========================================
   Media Queries
   ========================================= */

/* Max Width 1000px */
@media screen and (max-width: 1000px) {
  #contInner {
    position: relative;
    max-width: 100%;
    min-width: 300px;
    width: 100%;
    margin: 0 auto 0 min(510px, 31.87499999999vw);
  }
  .mainvisual {
    display: block;
  }
  .modal-body {
    width: 95%;
  }
  .modal-content {
    padding: 20px;
  }
}

/* Max Width 767px (SP Layout) */
@media screen and (max-width: 767px) {
  /* Layout */
  #contentsArea {
    width: 100%;
  }
  #contInner {
    margin: 0 0 0 auto;
  }
  .fix_contents_right {
    width: 0;
  }
  /* .fix_contents_left {
    width: calc(100vw - min(786px, 40vw));
  } */
  #footerInfo {
    padding: 0;
  }
  #footerInfo .infoWrap {
    padding: 5% 5% 0;
  }

  /* Modal SP */
  .modal-body {
    width: 100%;
  }
  .modal-content {
    padding: 0 20px 20px;
  }
}

.disclaimer{
  text-align: center;
  margin: 20px 0 10px;
  color: #fff;
  font-size: 1.3em;
  line-height: 1.6;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: #000;
  padding-block: min(10px, calc(10 / 375 * 100%)) min(15px, calc(15 / 375 * 100%));
}

.footer__copyright {
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.6;
}

/* =============================================
   SP Header
============================================= */
.sp-header {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .sp-header {
    position: fixed;
  }
}

.sp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 15px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  height: 60px;
}

.sp-header__logo img {
  height: 50px;
  width: auto;
}

.sp-header__hamburger {
  width: 60px;
  height: 100%;
  background: #FFEE50;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.sp-header__hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--menu-color);
  transition: 0.3s;
}

.sp-header__hamburger.is-active .sp-header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sp-header__hamburger.is-active .sp-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.sp-header__hamburger.is-active .sp-header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SP Menu */
.sp-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFEE50;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  border: 2px solid #fff;
}

.sp-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}

.sp-menu__inner {
  padding: 20px 30px 30px;
}

.sp-menu__title {
  text-align: left;
  margin-bottom: 20px;
  width: 60%;
}

.sp-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-menu__link {
  display: block;
  padding-inline: calc(28 / 375 * 100%);
  padding-block: calc(12 / 375 * 100%);
  color: var(--menu-color);
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}


@media screen and (max-width: 767px) {
  .sp-menu__link img{
    width: 58%;
  }
}

.sp-menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(20 / 375 * 100%);
  aspect-ratio: 1 / 1;
  background: url(../img/ico-arrow.png) no-repeat center / contain;
  transform: translateY(-50%);
}

.sp-menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.sp-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   PC Fixed Navigation
============================================= */
.pc-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.pc-nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.pc-fixed-nav {
  position: fixed;
  bottom: 80px;
  right: 0;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 70px;
}

.pc-fixed-nav.is-visible {
  opacity: 1;
  visibility: visible;
}

.pc-nav {
  position: relative;
}

.pc-nav__toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFEE50;
  border: none;
  width: 100%;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  padding-inline: 19px;
  padding-block: 21px;
  transition: 0.3s;
  border: 2px solid #fff;
  border-right: none;
}

@media (hover: hover) and (pointer: fine) {
  .pc-nav__toggle:hover {
    opacity: 0.9;
  }
}

.pc-nav__toggle.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pc-nav__toggle-icon {
  display: block;
  width: 30px;
  height: 25px;
  position: relative;
  border-top: 3px solid var(--menu-color);
  border-bottom: 3px solid var(--menu-color);
}

.pc-nav__toggle-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--menu-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.pc-nav__toggle-text {
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.pc-nav__menu {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #FFEE50;
  border-radius: 10px 0 0 10px;
  padding: 15px 15px 15px 20px;
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0.3) scaleY(0.5);
  transform-origin: right bottom;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, min-width 0.3s;
  border: 2px solid #fff;
  border-right: none;
}

.pc-nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1) scaleY(1);
  min-width: 500px;
}

.pc-nav__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .pc-nav__close:hover {
    opacity: 0.8;
  }
}

.pc-nav__title {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--menu-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-nav__title-icon {
  width: 0.8em;
  height: auto;
}

.pc-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}

.pc-nav__item {
  position: relative;
}

.pc-nav__link {
  display: block;
  color: var(--menu-color);
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  padding: 5px 0 5px 27px;
  transition: 0.3s;
  white-space: nowrap;
}

.pc-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  background: url(../img/ico-arrow.png) no-repeat center / contain;
  transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .pc-nav__link:hover {
    opacity: 0.7;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pc-top__btn:hover {
    transform: scale(1.05);
    opacity: 1;
  }
}

.pc-top__icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 6px;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .sp-header {
    display: block;
  }
  .sp-menu {
    display: block;
  }
  .sp-menu__overlay {
    display: block;
  }
  .pc-fixed-nav {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-header {
    display: block;
  }
  .sp-header__hamburger {
    display: none;
  }
  .sp-menu {
    display: none;
  }
  .sp-menu__overlay {
    display: none;
  }
  .pc-fixed-nav {
    display: flex;
  }
}

.btn_pagetop_area {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 10;
    transition: all 0.5s;
    opacity: 0;
}

/* =========================================
   SP 追従ページトップナビ
   ========================================= */
.sp-page-top {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-page-top {
    display: block;
    position: fixed;
    left: -1%;
    bottom: 20%;
    width: calc( 68 / 375 * 100%);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
  }
  .sp-page-top__link {
    display: block;
  }
  .sp-page-top__link img {
    width: 100%;
    height: auto;
  }
  .sp-page-top.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .sp-page-top.is-scrolling {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.btn_pagetop {
    position: relative;
    width: 50px;
    height: 47px;
    background-color: #000;
    box-shadow: 0px 0px 6px #00000066;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    opacity: 0.5;
}

.btn_pagetop::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

