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

/* =========================================
   Base & Reset
   ========================================= */
:root {
  --hover-opacity: 0.6;
  --transition: .5s;
  --main-color: #6C9BD2;
  --sub-color: #6C9BD2;
  --menu-color: #6C9BD2;
  --font-color: #555;
  --leading-trim: calc((1em - 1lh) / 2);
}

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

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

body {
  color: #000;
  background-color: #6C9BD2;
  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: 1000px) {
  #wrapper .appCam {
    padding-top: 0;
  }
}

/* @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;
}

.fix_contents_left_image_bg {
  background-color: #9070AF;
  padding: 5px 5%;
}

.fix_contents_left_image.upside {
  background-color: #9070AF;
  margin-inline: auto;
  padding-block: 3px;
}

.fix_contents_left_image.upside img {
  width: 90%;  
  margin-inline: auto;
}

.fix_contents_left_image.upside {
  /* background-color: transparent;  */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.fix_contents_left_image.upside img {
  width: 90%;  
  margin-inline: auto;
}















.appCam_title .bg-span {
  background-color: #9070AF;
}

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

.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;
  margin-block: 20px 10px;
  position: relative;
}

.discription__image {
  position: relative;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}

.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-inline: 20px;
}

.sp-header__logo a {
  display: block;
  flex: 0 1 auto;
  max-width: 50%; 
}

.sp-header__logo img {
  max-width: 100%;
  height: auto;
}

.sp-header__logo > img {
  max-width: 45%; 
}

.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;
    right: -0.5%;
    bottom: 20%;
    width: clamp(80px, 10vw, 100px);    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);
}

























/*  モールフィルター
----------------------------------------*/
.sc_list:after, .clearfix:after {
  content: "";
  display: block;
  clear: both;
}


.content2_top img {
  position: relative;
  z-index: 1;
}

/*  イベント項目
----------------------------------------*/
.event {
  background-color: #6C9BD2;
  /* padding-top: 60px; */
  padding-bottom: 40px;
  width: 90%;
  margin-inline: auto;
}

.event .inner {
  width: 100%;
  position: relative;
  margin: 0 auto;
  /* padding: 0 25px; */
}
.event .inner .content_ttl {
  margin-bottom: 15px;
}
.event .content_ttl_sub {
  margin: 40px 0 20px;
}

.event .sub-text {
  font-size: 18px;
  color: #000;
  text-align: center;
  line-height: 30px;
  letter-spacing: 0.9px;
  font-weight: bold;
  margin-top: -25%;
}


.event_wrap {
  background-color: #FFFDE4;
  border-radius: 0;
  /* margin: 0 4%; */
  padding-bottom: 40px;
  overflow: hidden;
}

.content1_tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #6C9BD2;
}

.content1_tab li {
  text-align: center;
  padding: 10.9% 0;
  font-size: clamp(18px, 5.217vw, 30px);
  font-weight: bold;
  color: #818181;
  cursor: pointer;
  background-color: #D5D5D5;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.06666em;
}

.content1_tab li.current {
  background-color: #FFFDE4;
  color: #6C9BD2;
}

.event .area_content {
  /* margin-top: 35px; */
}

.event_date {
  display: none;
}

/* main */
.events_main {
  padding: 12px 20px 0;
  margin: 15px auto 0;
}

/* description */
.events_description {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.7px;
  margin-top: 10px;
}

/* content */
.dotted_line {
  width: 100%;
  border-top: 1px dotted #000;
  margin: 15px 0;
}
.events_content {
  color: #000;
  font-size: 12px;
}

.events_content u:hover,
.events_content a:hover {
  text-decoration: none;
}

/* detail */
.events_detail {
  color: #ff7a7a;
  text-align: center;
  margin: 30px 20px 0;
}

.events_detail_link {
  color: #e50011;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
}

.events_detail_link:hover {
  text-decoration: none;
}

/* メッセージ */
.events_message {
  padding: 50px 0;
  color: #0F779D;
  border: solid 1px #0F779D;
  background-color: #fff;
  border-radius: 10px;
  font-weight: bold;
  font-size: 115%;
  text-align: center;
  margin: 0 20px 20px;
}

/* ローディング */
.events_message.o-loading {
  color: #ffae00;
}

/* エラーメッセージ */
.events_message.o-error {
  color: #0F779D;
}

.event_date {
  color: #de0245;
  text-align: center;
  padding: 30px 0;
}
.event_date_text {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
  color: #fff;
}
.event_date_text2{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}
.event_date_select {
  padding-top: 18px;
}
.event_date_picker {
  display: inline-block;
  font-size: 18px;
  border: 1px solid #de0245;
  padding: 10px 0;
  width: 100%;
  border-radius: 5px;
  padding-left: 15px;
  color: #707070;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}
.event_date_picker_wrapper:before {
  content: '';
  width: 38px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  background-color: #de0245;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  pointer-events: none;
}
.event_date_mark {
  display: block;
  width: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  writing-mode: tb-rl;
  margin: 0 auto;
}
.event_date_picker_wrapper:after {
  content: '';
  width: 16px;
  height: 10px;
  background: url(../img/ico-down_white.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: 16px;
  right: 10px;
  pointer-events: none;
}
.event_date_picker_wrapper {
  position: relative;
  width: 70%;
  margin: 10px 0;
  display: inline-block;
}

.event_select_title {
  margin: 30px 0 25px 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.33;
  font-weight: bold;
  color: #5b5b5b;
}

.event_results {
  padding-top: 30px;
}

/*  イベント項目
----------------------------------------*/
.events {
  overflow: hidden;
}

.events_mall {
  display: inline;
  font-size: 14px;
  font-weight: bold;
  color: #0075BA;
  padding: 4px 7px;
  border: 2px solid #0075BA;
  border-radius: 5px;
}

.events_title {
  font-size: 20px;
  font-weight: bold;
  color: #DC007B;
  line-height: 28px;
  margin-top: 10px;
}

.events_item {
  float: none;
  width: auto;
  background-color: #fff;
  margin: 0 0 30px 0;
  padding: 0;
  border-radius: 5px;
  font-size: 13px;
  box-sizing: border-box;
}
.events_item:last-child {
  margin-bottom: 20px;
}

.events_content_inner{
  width: 100%;
  font-size: 14px;
  padding: 20px 0 25px;
  box-sizing: border-box;
}
.events_content_inner:first-child {
  padding-top: 0;
}
.events_content_inner .event_main_img {
  border: 2px solid #ED6A02;
}

.js-tabs_content {
  display: none;
}

/* メッセージ */
.events_message {
  padding: 30px 0;
}
/* .sc_list {
  margin: 0 20px;
} */
/* .sc_list li {
  width: 100%;
  float: left;
  line-height: 26px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: 0;
  margin-bottom: 20px;
} */

.sc_list li.o-left {
  margin-left: 21px;
  clear: left;
}
.sc_list li p:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/bg-nocheck.svg);
  box-sizing: border-box;
  margin-right: 12px;
  top: 3px;
  left: 0;
}
.sc_list .mall_list li a {
  font-size: min(3.6vw, 14px);
}
.sc_list .mall_list li a span {
  font-size: min(2vw, 12px);
}
.sc_list li p[aria-checked="true"]:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/bg-check.svg);
  border: none;
  margin-right: 12px;
}
.sc_list p {
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  padding-left: 26px;
}
.sc_list.o-campaign p {
  color: #fff;
  text-decoration: underline;
}
.sc_list.o-campaign li p:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 0;
  box-sizing: border-box;
  margin-right: 12px;
  background-color: #fff;
}
.sc_list p:hover {
  text-decoration: none;
}


/*  .fix-nav
----------------------------------------*/
.fix-nav{
  bottom: 0;
  /* left: 0; */
  width: 100%;
  height: auto;
}
@media screen and (max-width: 720px) {
  .fix-nav {
    left: 0;
  }
}

.fix-nav.is-fixed{
  position: fixed;
  z-index: 101;
  max-width: 718px;
  margin: 0 auto;
  width: 100%;
}

.fix-nav ul{
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.fix-nav ul li a img:hover{
  opacity: 1;
}

/* campaign banner部分 */
.campaign_banner {
  background-color: #D1F4FF;
  border-radius: 10px;
  margin: 10px 20px 0;
}
.campaign_banner_item {
  display: none;
  padding-bottom: 27.5px;
}
.campaign_banner_item.active {
  display: block;
}
.campaign_banner_content {
  margin: 20px 17.5px 0;
}
.feature-bnr-area {
  margin: 0 20px;
}
.feature-bnr-area a:hover {
  opacity: .7;
}
.wrapper .feature-bnr-area-title {
  margin: 16px auto 24px;
  width: 100%;
}
.wrapper .feature-bnr-sc-title {
  margin: 24px auto;
  width: 100%;
  padding: 0 20px;
}
.wrapper .feature-bnr-area-bnr {
  width: 95%;
  margin: 0 auto;
}
























/* event area */
/* chiba info　area */
.chiba_info_area {
  padding: 30px 0 0;
}

.chiba_info_list {
  padding: 20px 20px 0;
}
/* chiba info　area ここまで */


/* kids club */
.kids_club_area {
  padding: 30px 0 0;
}

.kids_club_contents {
  padding: 15px 20px 0;
}

.kids_club_contents a:hover {
  opacity: 0.7;
}
/* kids club ここまで */


/* event area */

section.event_area {
  padding: 0;
}

.event_item {
  margin-top: 30px;
  text-align: left;
}
.event_item_each {
  padding: 0 30px 46.5px;
}

/* .event_item_each:last-child {
  padding-bottom: 30px;
} */

.event_item_ttl {
  color: #FFFF00;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 30px;
}

.event_item_info_detail, .event_item_info_txt {
  font-size: 0.875rem;
  line-height: 26px;
}

.event_item_info_detail {
  margin-top: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid #fff;
}

.event_item_info_txt {
  padding-top: 13px;
}


.event_area .btn_show_detail {
  padding: 0 20px 48px;
}

/* event area ここまで */


.mall_info_title {

}

.mall_list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 15px;
}

.mall_list li {
  width: 47.04225%;
  background-color: #555555;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-right: 3.09859%;
  filter: drop-shadow(0 1px 6px #00000029);
}

.mall_list li:hover {
  opacity: 0.8;
}

.mall_list li:nth-child(2n) {
  margin-right: 0;
}

.mall_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px 13px;
  width: 100%;
  height: 100%;
  color: #fff;
  flex-wrap: wrap;
  white-space: nowrap;
  font-size: min(4.27vw, 14px);
  line-height: 1em;
}

.mall_list li a span.aeonmall_txt {
  font-size: min(3.2vw, 12px);
  width: 100%;
  text-align: center;
}

.mall_list li a.small,
.sc_list .mall_list li a.small {
  font-size: min(2.2vw, 14px);
}

.mall_list_chiba li {
  background-color: #555555;
}
.mall_list_ibaraki li {
  background-color: #555555;
}




















.rally_wrapper {
  background-color: #FFFDE4;
}

.rally_inner {
  width: 90%;
  margin-inline: auto;
}

.rally_ttl {
  margin-bottom: 20px;
}

.present_wrapper {
  background-color: #FFFDE4;
}

.present_inner {
  width: 90%;
  margin-inline: auto;
}

.panel_wrapper {
  background-color: #FFFDE4;
}

.panel_inner {
  width: 90%;
  margin-inline: auto;
}


/* bg */
.bg-upside,
.bg-under {
  position: relative;
}

/* --- 上のライン（before） --- */
.bg-upside {
  /* padding-top: 50px;  */
  margin-top: 100px;
}

.bg-upside::before {
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 70px; /* 上ライン画像の高さ */
  background-image: url('../img/bg-upside.png'); /* 上ライン画像のパス */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto; /* または cover / auto など */
}

/* --- 下のライン（after） --- */
.bg-under {
  padding-bottom: 0; /* 画像の高さ + コンテンツまでの余白 */
  margin-bottom: 150px; /* 画像の高さ + コンテンツまでの余白 */
}

.bg-under::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -62px;
  left: 0;
  width: 100%;
  height: 70px; /* 下ライン画像の高さ */
  background-image: url('../img/bg-under.png'); /* 下ライン画像のパス */
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto; /* または cover / auto など */
}


.middle_text_wrapper {
  margin-block: 20px;
}

.middle_text {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.6;
}

.middle_caution {
  margin-top: 10px;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  font-size: 0.8rem;

}

.middle_text_inner {
  margin-bottom: 32px;
}

/* 【配布時間】などの各項目に対する設定 */
.middle_text.indent {
  padding-left: 6.35em; 
  text-indent: -6.35em; 
}

.middle_text.indent.rally_period {
  margin-top: 32px;
}

.middle_caution.indent {
  padding-left: 1em;  
  text-indent: -1em; 
  margin-top: 0px;
}

.middle_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* 左右の線を作る擬似要素 */
.middle_ttl::before,
.middle_ttl::after {
  content: "";
  flex-grow: 1;      
  height: 1px;        
  background-color: #555; 
}

/* 文字と線の間に隙間を作る */
.middle_ttl::before {
  margin-right: 1rem;
}

.middle_ttl::after {
  margin-left: 1rem; 
}

.font-bold {
  font-weight: bold;
}

.middle_text_wrapper,
.middle_text,
.middle_caution {
  color: #555555;
}


@media screen and (min-width: 1001px) {
  .appCam_title {
  margin-top: 60px;
}
}@media screen and (max-width: 767px) {
  .appCam_title {
  margin-top: 60px;
}
}

@media screen and (max-width: 1000px) {
  
  /* --- 親要素の余白も画像と一緒に拡縮させる --- */
  .bg-upside {
    /* 480px時の100pxを比率に変換（100÷480×100 = 約20.8vw） */
    margin-top: 20.8vw; 
    
    /* ※もし中の「文字」に画像が被る場合は、ここに padding-top: 5vw; などを足して内側も守ります */
  }

  .bg-under {
    /* 480px時の150pxを比率に変換（150÷480×100 = 約31.2vw） */
    margin-bottom: 31.2vw;
    
    padding-bottom: 5vw;
  }

  /* --- 上のライン（before） --- */
  .bg-upside::before {
    height: 13.33vw; 
    top: -11.4vw; 
    background-size: 100% 100%;
  }

  /* --- 下のライン（after） --- */
  .bg-under::after {
    height: 13.33vw;
    bottom: -12.1vw; 
    background-size: 100% 100%;
  }
}