@charset "UTF-8";

/* ===============================================### 
初期設定
###=============================================== */
.SE241101FES{
  --font-ja: "Hiragino Kaku Gothic ProN", "Hiragino Sans", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-en01: "futura-pt-bold", sans-serif;
  --font-en02: "futura-pt", sans-serif;
  overflow: hidden;
}

html{
  scroll-behavior: auto;
}

#header,
#footer{
  display: none;
}

.wrapBottom{
  padding-top: 0;
}

.SE241101FES img,
.SE241101FES svg{
  width: 100%;
  height: auto;
}

.SE241101FES p{
  font-family: var(--font-ja);
  color: #000;
}


/* ===============================================### 
PC版用設定
###=============================================== */
@media screen and (min-width: 768px) {
  .SE241101FES .pc-visible{
    display: block;
  }

  .SE241101FES .sp-visible{
    display: none;
  }
}

/* ===============================================### 
SP版用設定
###=============================================== */
@media screen and (max-width: 767px) {
  .main-area{
    padding-top: 0;
  }

  .SE241101FES .pc-visible{
    display: none;
  }

  .SE241101FES .sp-visible{
    display: block;
  }
}


/* ===============================================### 
ヘッダー
###=============================================== */
.SE241101FES .lp_header{
  position: fixed;
  width: 100%;
  height: 11.1rem;
  background-color: #FFFD9C;
  z-index: 99;
}

.SE241101FES .header-inner{
  position: relative;
  margin: 1.3rem 5rem;
}

.SE241101FES .header__item.item02{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

/************** image **************/
.SE241101FES .header__logo{
  width: 13.5rem;
  margin-inline: auto;
}

/************** menu **************/
.SE241101FES .header__menu{
  position: fixed;
  width: 59rem;
  height: 100vh;
  visibility: hidden;
  background-color: #FFDADB;
  box-sizing: border-box;
  opacity: 0;
  transition-duration: .6s;
  z-index: 99;
}

.SE241101FES .header__menu{
  top: 0;
  right: -100%;
}

.SE241101FES .header__menu.open{
  right: 0;
  visibility: visible;
  opacity: 1;
}

.SE241101FES .menu__button{
  position: relative;
  width: 4rem;
  height: 3.6rem;
  cursor: pointer;
}

.SE241101FES .menu__button span{
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  display: inline-block;
  background-color: #000;
  border-radius: 20px;
  transition: .5s;
}

.SE241101FES .menu__button span:nth-of-type(1){
  top: 0;
}

.SE241101FES .menu__button span:nth-of-type(2){
  top: 50%;
  transform: translateY(-50%);
}

.SE241101FES .menu__button span:nth-of-type(3){
  bottom: 0;
}

.SE241101FES .menu__button.open span:nth-of-type(1){
  transform: rotate(45deg) translate(3px, -1px);
  transform-origin: left;
}


@media screen and (min-width: 768px) and (max-width: 1200px){
  .SE241101FES .menu__button.open span:nth-of-type(1){
    transform: rotate(45deg) translate(2px, -3px);
    /* transform: rotate(45deg) translate(0.3rem, -0.2rem); */
    transform-origin: left;
  }
}

@media screen and (min-width: 1600px) {
  .SE241101FES .menu__button.open span:nth-of-type(1){
    transform: rotate(45deg) translate(5px, -1px);
    transform-origin: left;
  }
}

.SE241101FES .menu__button.open span:nth-of-type(2){
  opacity: 0;
}

.SE241101FES .menu__button.open span:nth-of-type(3){
  transform: rotate(-45deg) translate(4px, 1px);
  /* transform: rotate(-45deg) translate(0.5rem, 0); */
  transform-origin: left;
}

.SE241101FES .nav__content {
  /* width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; 
  z-index: 99;
  background: #fff;
  transition: .5s; */
  position: relative;
  /* height: 100%; */

  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 9.2rem;
  padding-left: 10rem;
  padding-right: 10rem;
  /* height: 100%; */
  transition-duration: .4s;
}

.SE241101FES .menu__list{
  /* width: 40rem; */
}

.SE241101FES .menu__list li{
  padding: 1.5rem 0;
  font-family: var(--font-en01);
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
  color: #6E4200;
  border-bottom: 0.1rem solid #6E4200;
}

.SE241101FES .menu__list li:nth-of-type(4){
  /* font-size: 2.7rem; */
}

.SE241101FES .menu__list li.select{
  color: #AAAAAA;
}

.SE241101FES .menu__list li span{
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 400;
}

.SE241101FES .sns-wrapper{
  width: 16.4rem;
  margin-top: 5rem;
  padding-left: 10rem;
}

.SE241101FES .sns-wrapper ul{
  display: flex;
  justify-content: space-between;
}

.SE241101FES .sns-wrapper li{
  width: 3.1rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .lp_header{
    height: calc(111 * (100vw / 750));
  }

  .SE241101FES .header-inner{
    margin: calc(13 * (100vw / 750)) calc(50 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .header__logo{
    width: calc(130 * (100vw / 750));
  }

  /************** menu **************/
  .SE241101FES .header__menu{
    width: calc(590 * (100vw / 750));
    height: calc(1200 * (100vw / 750));
  }

  .SE241101FES .menu__button{
    width: calc(40 * (100vw / 750));
    height: calc(27 * (100vw / 750));
  }

  .SE241101FES .menu__button span{
    height: calc(3 * (100vw / 750));
  }

  .SE241101FES .menu__button.open span:nth-of-type(1){
    /* transform: rotate(45deg) translate(-1px, -3px); */
    transform: rotate(45deg) translate(-1px, -4px);
    transform-origin: left;
  }

  .SE241101FES .menu__button.open span:nth-of-type(3){
    /* transform: rotate(-45deg) translate(2px, 0px); */
    transform: rotate(-45deg) translate(2px, 1px);
    transform-origin: left;
  }

  .SE241101FES .nav__content {
    gap: calc(25 * (100vw / 750));
    padding-top: calc(90 * (100vw / 750));
    padding-inline: calc(100 * (100vw / 750));
  }

  .SE241101FES .menu__list li{
    padding: calc(20 * (100vw / 750)) 0;
    font-size: calc(40 * (100vw / 750));
    border-bottom: calc(1 * (100vw / 750)) solid #6E4200;
  }

  .SE241101FES .menu__list li:nth-of-type(4){
    font-size: calc(33 * (100vw / 750));
  }

  .SE241101FES .menu__list li span{
    font-size: calc(18 * (100vw / 750));
  }

  .SE241101FES .sns-wrapper{
    width: calc(164 * (100vw / 750));
    margin-top: calc(50 * (100vw / 750));
    padding-left: calc(100 * (100vw / 750));
  }

  .SE241101FES .sns-wrapper li{
    width: calc(39 * (100vw / 750));
  }
}


/* ===============================================### 
アニメーション設定
###=============================================== */
.SE241101FES .js-fade-mv{
  opacity: 0;
  transition: opacity, 1s;
}

/* .SE241101FES .js-fade-in{
  opacity: 0;
  transition: opacity 1.2s;
} */

.SE241101FES .js-fade-mv.show{
  opacity: 1;  
}


/* ===============================================### 
ガーランド共通設定
###=============================================== */
.SE241101FES .garland{
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.SE241101FES .js-garland-anime{
  position: relative;
}

@media screen and (min-width: 768px) {
  .SE241101FES .garland__image{
    /* width: 68.5rem; */
    width: 98rem;
  }
}

@media screen and (max-width: 767px) {
  .SE241101FES .garland__image{
    /* width: calc(842 * (100vw / 750)); */
    width: calc(773 * (100vw / 750));
  }
}



/* ===============================================### 
セクション共通設定
###=============================================== */
.SE241101FES .lp__container{
  position: relative;
  width: 76rem;
  margin-top: 11.1rem;
  margin-inline: auto;
  background-color: #fff;
}

.SE241101FES .image-wrapper{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.SE241101FES .shape__image{
  position: absolute;
}

.SE241101FES .section01{
  z-index: 8;
}
.SE241101FES .section02{
  z-index: 7;
}
.SE241101FES .section03{
  z-index: 6;
}
.SE241101FES .section04{
  z-index: 5;
}
.SE241101FES .section05{
  z-index: 4;
}
.SE241101FES .section06{
  z-index: 3;
}
.SE241101FES .section07{
  z-index: 2;
}
.SE241101FES .section08{
  z-index: 1;
}

.SE241101FES .section-wrapper{
  position: relative;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .lp__container{
    width: calc(750 * (100vw / 750));
    margin-top: calc(110 * (100vw / 750));
  }
}



/* ===============================================### 
タイトル箇所
###=============================================== */
.SE241101FES .title__logo{
  position: relative;
  width: 65.2rem;
  padding-top: 13.9rem;
  margin-inline: auto;
  z-index: 3;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .title__logo{
    width: calc(647 * (100vw / 750));
    padding-top: calc(140 * (100vw / 750));
  }
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .garland.garland01{
    top: -6rem;
    left: -88.6rem;
  }

  .SE241101FES .garland.garland02{
    top: -25rem;
    right: -83rem;
  }
}

@media screen and (max-width: 767px) {
  .SE241101FES .sp-garland{
    z-index: 2;
  }

  .SE241101FES .garland.garland03{
    top: calc(-112 * (100vw / 750));
    right: calc(-6 * (100vw / 750));
  }

  /* .SE241101FES .garland.garland04{
    top: calc(100 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  } */
}




/* ===============================================### 
セクション01
###=============================================== */
.SE241101FES .section01{
  position: relative;
  width: 67.8rem;
  margin-inline: auto;
  background-color: #fff;
  /* z-index: 2; */
}

.SE241101FES .section01 .section__item::after{
  content: '';
  position: absolute;
  /* top: 32.8rem; */
  top: -10.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 68.7rem;
  height: 141.5rem;
  background-image: url("../img/section01_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.4rem;
  z-index: -1;
}

.SE241101FES .section01 .section-inner{
  /* padding: 10rem 5rem; */
}

.SE241101FES .section01 .image-wrapper{
  margin-top: 1.3rem;
  position: relative;
  z-index: 3;
}

.SE241101FES .section01 .section__item{
  position: relative;
  margin-top: 3.9rem;
  padding: 0 8.7rem;
  /* z-index: 1; */
}

/************** text **************/
.SE241101FES .section01 .section__text{
  margin-top: 5.7rem;
  font-family: var(--font-ja);
  /* font-size: 2.4rem; */
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  text-align: center;
  color: #000;
}

.SE241101FES .section01 .section__text span{
  font-weight: 600;
}

.SE241101FES .section01 .section__text.text02{
  margin-top: 4rem;
}

.SE241101FES .section01 .section__text.text02 .point__text{
  color: #EE9612;
}

.SE241101FES .section01 .section__text.text03{
  margin-top: 3.7rem;
  letter-spacing: 0.2em;
}

.SE241101FES .section01 .section__text.text04{
  margin-top: 2.4rem;
  line-height: 1.7;
  text-align: left;
}

/************** image **************/
.SE241101FES .section01 .character__image{
  position: relative;
  width: 54.9rem;
  margin-inline: auto;
  /* z-index: 2; */
}

.SE241101FES .section01 .shape__image.image01{
  top: 2.9rem;
  left: 10rem;
  width: 6.1rem;
}

.SE241101FES .section01 .shape__image.image02{
  top: 13rem;
  left: 2rem;
  width: 5.5rem;
}

.SE241101FES .section01 .shape__image.image03{
  bottom: 12.3rem;
  left: 4.6rem;
  width: 4.5rem;
}

.SE241101FES .section01 .shape__image.image04{
  top: -0.6rem;
  right: 10.8rem;
  width: 5.4rem;
}

.SE241101FES .section01 .shape__image.image05{
  top: 8.5rem;
  right: 0.6rem;
  width: 6rem;
}

.SE241101FES .section01 .shape__image.image06{
  bottom: 18.9rem;
  right: 3.8rem;
  width: 8.3rem;
}

.SE241101FES .section01 .section__title.title01{
  width: 21.6rem;
  margin-inline: auto;
}

.SE241101FES .section01 .section__title.title02{
  width: 49.6rem;
  margin-top: 5.3rem;
  margin-inline: auto;
}

.SE241101FES .section01 .section__title.title03{
  width: 50rem;
  margin-top: 7.9rem;
  margin-inline: auto;
}

.SE241101FES .section01 .logo__image {
  width: 18.1rem;
  margin-top: 4.2rem;
  margin-inline: auto;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section01 .garland.garland01{
    /* top: -85.4rem;
    left: -80rem; */
    top: 10rem;
    left: -89rem;
  }

  .SE241101FES .section01 .garland.garland02{
    /* top: -10rem;
    left: -69rem; */
    top: 80rem;
    left: -75rem;
  }

  .SE241101FES .section01 .garland.garland03{
    /* top: -27rem; */
    top: 45rem;
    right: -88rem;
  }

  .SE241101FES .section01 .garland.garland04{
    /* top: 21rem; */
    top: 98rem;
    right: -81rem;
  }

  .SE241101FES .section01 .garland.garland05{
    /* top: 39rem; */
    top: 109rem;
    left: -89rem;
  }

  .SE241101FES .section01 .garland.garland06{
    /* top: 120rem; */
    top: 185rem;
    left: -79rem;
  }

  .SE241101FES .section01 .garland.garland07{
    top: 133rem;
    right: -60rem;
  }

  .SE241101FES .section01 .garland.garland08{
    top: 163rem;
    right: -60rem;
  }
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section01{
    width: calc(678 * (100vw / 750));
    background-color: transparent;
  }

  .SE241101FES .section01 .section__item::after{
    /* top: calc(321 * (100vw / 750)); */
    top: calc(-107 * (100vw / 750));
    width: calc(678 * (100vw / 750));
    height: calc(1398 * (100vw / 750));
    margin-left: 0;
  }

  .SE241101FES .section01 .image-wrapper{
    margin-top: calc(11 * (100vw / 750));
  }

  .SE241101FES .section01 .section__item{
    margin-top: calc(37 * (100vw / 750));
    padding: 0 calc(85 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section01 .section__text{
    margin-top: calc(60 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  .SE241101FES .section01 .section__text.text02{
    margin-top: calc(33 * (100vw / 750));
  }


  .SE241101FES .section01 .section__text.text03{
    margin-top: calc(35 * (100vw / 750));
  }

  .SE241101FES .section01 .section__text.text04{
    margin-top: calc(25 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section01 .character__image{
    width: calc(543 * (100vw / 750));
  }

  .SE241101FES .section01 .shape__image.image01{
    top: calc(30 * (100vw / 750));
    left: calc(100 * (100vw / 750));
    width: calc(56 * (100vw / 750));
  }

  .SE241101FES .section01 .shape__image.image02{
    top: calc(126 * (100vw / 750));
    left: calc(17 * (100vw / 750));
    width: calc(52 * (100vw / 750));
  }

  .SE241101FES .section01 .shape__image.image03{
    bottom: calc(128 * (100vw / 750));
    left: calc(45 * (100vw / 750));
    width: calc(40 * (100vw / 750));
  }

  .SE241101FES .section01 .shape__image.image04{
    top: calc(-2 * (100vw / 750));
    right: calc(110 * (100vw / 750));
    width: calc(48 * (100vw / 750));
  }

  .SE241101FES .section01 .shape__image.image05{
    top: calc(89 * (100vw / 750));
    right: calc(15 * (100vw / 750));
    width: calc(45 * (100vw / 750));
  }

  .SE241101FES .section01 .shape__image.image06{
    bottom: calc(192 * (100vw / 750));
    right: calc(44 * (100vw / 750));
    width: calc(76 * (100vw / 750));
  }

  .SE241101FES .section01 .section__title.title01{
    width: calc(216 * (100vw / 750));
  }

  .SE241101FES .section01 .section__title.title02{
    width: calc(500 * (100vw / 750));
    margin-top: calc(50 * (100vw / 750));
  }

  .SE241101FES .section01 .section__title.title03{
    width: calc(500 * (100vw / 750));
    margin-top: calc(78 * (100vw / 750));
  }

  .SE241101FES .section01 .logo__image {
    width: calc(181 * (100vw / 750));
    margin-top: calc(40 * (100vw / 750));
  }

  /************** ガーランド **************/
  .SE241101FES .section01 .garland.garland09{
    top: calc(-358 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  }

  .SE241101FES .section01 .garland.garland10{
    top: calc(1220 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  }
}



/* ===============================================### 
セクション02
###=============================================== */
.SE241101FES .section02{
  position: relative;
  width: 100%;
  /* margin-top: 23rem; */
  margin-top: 18rem;
  background-color: #FFDCA5;
  /* z-index: 2; */
}

.SE241101FES .section02 .section-inner{
  width: 62rem;
  padding-top: 12.1rem;
  padding-bottom: 12.5rem;
  margin-inline: auto;
}

.SE241101FES .section02 .section__item01{
  width: fit-content;
  margin-top: 3rem;
  margin-inline: auto;
}

.SE241101FES .section02 .section__item02{
  width: fit-content;
  margin-top: 9.9rem;
  margin-inline: auto;
}

.SE241101FES .section02 .grid-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  column-gap: 3.9rem;
  row-gap: 5rem;
  margin-top: 4.7rem;
}

/************** text **************/
.SE241101FES .section02 .caution__text{
  margin-top: 2.8rem;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  color: #000;
}

.SE241101FES .section02 .artist__name{
  margin-top: 2.8rem;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #000;
}

/************** image **************/
.SE241101FES .section02 .section__title{
  width: 21.2rem;
  margin-inline: auto;
}

.SE241101FES .section02 .shape__image.image01{
  top: -5.5rem;
  left: -6.9rem;
  width: 5.5rem;
}

.SE241101FES .section02 .shape__image.image02{
  bottom: -6rem;
  left: -10rem;
  width: 5.4rem;
}

.SE241101FES .section02 .shape__image.image03{
  top: -4.7rem;
  right: -11.6rem;
  width: 5.5rem;
}

.SE241101FES .section02 .shape__image.image04{
  bottom: -4.5rem;
  right: -9.5rem;
  width: 5.4rem;
}

.SE241101FES .section02 .section__item01 .date__text{
  width: 15.9rem;
  margin-top: 5rem;
  margin-inline: auto;
}

.SE241101FES .section02 .section__item02 .date__text{
  width: 52.1rem;
  margin-inline: auto;
}

.SE241101FES .section02 .section__image{
  width: 29.3rem;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section02 .garland.garland01{
    top: -30rem;
    left: -88rem;
  }

  .SE241101FES .section02 .garland.garland02{
    top: 50rem;
    left: -81rem;
  }

  .SE241101FES .section02 .garland.garland03{
    top: 31rem;
    right: -78rem;
  }

  .SE241101FES .section02 .garland.garland04{
    top: 71rem;
    right: -76rem;
  }

  .SE241101FES .section02 .garland.garland05{
    top: 119rem;
    left: -79rem;
  }

  .SE241101FES .section02 .garland.garland06{
    top: 189rem;
    left: -77rem;
  }

  .SE241101FES .section02 .garland.garland07{
    top: 94rem;
    right: -80rem;
  }

  .SE241101FES .section02 .garland.garland08{
    top: 133rem;
    right: -70rem;
  }
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section02{
    margin-top: calc(225 * (100vw / 750));
  }

  .SE241101FES .section02 .section-inner{
    width: calc(620 * (100vw / 750));
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(118 * (100vw / 750));
  }

  .SE241101FES .section02 .section__item01{
    position: relative;
    margin-top: calc(30 * (100vw / 750));
    z-index: 1;
  }

  .SE241101FES .section02 .section__item02{
    position: relative;
    margin-top: calc(99 * (100vw / 750));
    z-index: 1;
  }

  .SE241101FES .section02 .grid-wrapper{
    column-gap: calc(34 * (100vw / 750));
    row-gap: calc(50 * (100vw / 750));
    margin-top: calc(43 * (100vw / 750));
  }

  .SE241101FES .section02 .section__item02 .grid-wrapper{
    margin-top: calc(45 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section02 .caution__text{
    position: relative;
    margin-top: calc(26 * (100vw / 750));
    font-size: calc(14 * (100vw / 750));
    z-index: 1;
  }

  .SE241101FES .section02 .artist__name{
    margin-top: calc(30 * (100vw / 750));
    font-size: calc(18 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section02 .section__title{
    width: calc(209 * (100vw / 750));
  }

  .SE241101FES .section02 .shape__image.image01{
    top: calc(-53 * (100vw / 750));
    left: calc(-70 * (100vw / 750));
    width: calc(51 * (100vw / 750));
  }

  .SE241101FES .section02 .shape__image.image02{
    bottom: calc(-60 * (100vw / 750));
    left: calc(-100 * (100vw / 750));
    width: calc(54 * (100vw / 750));
  }

  .SE241101FES .section02 .shape__image.image03{
    top: calc(-50 * (100vw / 750));
    right: calc(-109 * (100vw / 750));
    width: calc(53 * (100vw / 750));
  }

  .SE241101FES .section02 .shape__image.image04{
    bottom: calc(-42 * (100vw / 750));
    right: calc(-90 * (100vw / 750));
    width: calc(54 * (100vw / 750));
  }

  .SE241101FES .section02 .section__item01 .date__text{
    width: calc(156 * (100vw / 750));
    margin-top: calc(49 * (100vw / 750));
  }

  .SE241101FES .section02 .section__item02 .date__text{
    width: calc(518 * (100vw / 750));
  }

  .SE241101FES .section02 .section__image{
    width: calc(293 * (100vw / 750));
  }

  /************** ガーランド **************/
  .SE241101FES .section02 .garland.garland07{
    top: calc(393 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .SE241101FES .section02 .garland.garland08{
    top: calc(1270 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}


/* ===============================================### 
セクション03
###=============================================== */
.SE241101FES .section03{
  position: relative;
  width: 100%;
  background-color: #EDFFA5;
}

.SE241101FES .section03 .section-inner{
  width: fit-content;
  margin-inline: auto;
  padding-top: 12.2rem;
  padding-bottom: 10.5rem;
}

.SE241101FES .section03 .section__item01{
  margin-top: 6.4rem;
}

.SE241101FES .section03 .section__item02{
  margin-top: 12.3rem;
}


/************** text **************/
.SE241101FES .section03 .section__text{
  font-family: var(--font-ja);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #6E4200;
}

.SE241101FES .section03 .caution__text{
  margin-top: 3.2rem;
  padding-left: 5.9rem;
  font-family: var(--font-ja);
  font-size: 1.4rem;
}

.SE241101FES .section03 .section__item02 .caution__text{
  margin-top: 3.5rem;
}

/************** image **************/
.SE241101FES .section03 .section__title{
  width: 34.8rem;
  margin-inline: auto;
}

.SE241101FES .section03 .shape__image.image01{
  top: -6.2rem;
  left: -4.7rem;
  width: 4.2rem;
}

.SE241101FES .section03 .shape__image.image02{
  bottom: -1.5rem;
  left: -8.6rem;
  width: 4.9rem;
}

.SE241101FES .section03 .shape__image.image03{
  top: -5.1rem;
  right: -6.2rem;
  width: 4.6rem;
}

.SE241101FES .section03 .shape__image.image04{
  bottom: -1.3rem;
  right: -8.2rem;
  width: 4.5rem;
}

.SE241101FES .section03 .section__item01 .section__image{
  width: 65.5rem;
  margin-top: 4.5rem;
  margin-left: -1rem;
}

.SE241101FES .section03 .section__item02 .section__image{
  width: 65rem;
  margin-top: 5rem;
  margin-left: -0.7rem;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section03 .garland.garland01{
    top: -25.4rem;
    left: -78rem;
  }

  .SE241101FES .section03 .garland.garland02{
    top: 40rem;
    left: -73rem;
  }

  .SE241101FES .section03 .garland.garland03{
    top: -3rem;
    right: -78rem;
  }

  .SE241101FES .section03 .garland.garland04{
    top: 37rem;
    right: -78rem;
  }

  .SE241101FES .section03 .garland.garland05{
    top: 70rem;
    left: -89rem;
  }

  .SE241101FES .section03 .garland.garland06{
    top: 151rem;
    left: -80rem;
  }

  .SE241101FES .section03 .garland.garland07{
    top: 90rem;
    right: -60rem;
  }

  .SE241101FES .section03 .garland.garland08{
    top: 120rem;
    right: -60rem;
  }
}



/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section03 .section-inner{
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(105 * (100vw / 750));
  }

  .SE241101FES .section03 .section__item01{
    margin-top: calc(63 * (100vw / 750));
  }

  .SE241101FES .section03 .section__item02{
    margin-top: calc(120 * (100vw / 750));
  }


  /************** text **************/
  .SE241101FES .section03 .section__text{
    position: relative;
    font-size: calc(30 * (100vw / 750));
    z-index: 1;
  }

  .SE241101FES .section03 .caution__text{
    position: relative;
    margin-top: calc(30 * (100vw / 750));
    padding-left: calc(55 * (100vw / 750));
    font-size: calc(14 * (100vw / 750));
    z-index: 1;
  }

  .SE241101FES .section03 .section__item02 .caution__text{
    margin-top: calc(31 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section03 .section__title{
    width: calc(348 * (100vw / 750));
  }

  .SE241101FES .section03 .shape__image.image01{
    top: calc(-60 * (100vw / 750));
    left: calc(-50 * (100vw / 750));
    width: calc(34 * (100vw / 750));
  }

  .SE241101FES .section03 .shape__image.image02{
    bottom: calc(-15 * (100vw / 750));
    left: calc(-90 * (100vw / 750));
    width: calc(49 * (100vw / 750));
  }

  .SE241101FES .section03 .shape__image.image03{
    top: calc(-50 * (100vw / 750));
    right: calc(-60 * (100vw / 750));
    width: calc(46 * (100vw / 750));
  }

  .SE241101FES .section03 .shape__image.image04{
    bottom: calc(-13 * (100vw / 750));
    right: calc(-80 * (100vw / 750));
    width: calc(31 * (100vw / 750));
  }

  .SE241101FES .section03 .section__item01 .section__image{
    width: calc(648 * (100vw / 750));
    margin-top: calc(45 * (100vw / 750));
    margin-left: calc(-10 * (100vw / 750));
  }

  .SE241101FES .section03 .section__item02 .section__image{
    width: calc(648 * (100vw / 750));
    margin-top: calc(50 * (100vw / 750));
    margin-left: calc(-10 * (100vw / 750));
  }

  /************** ガーランド **************/
  .SE241101FES .section03 .garland.garland09{
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
  }

  .SE241101FES .section03 .garland.garland10{
    top: calc(1395 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}



/* ===============================================### 
セクション04
###=============================================== */
.SE241101FES .section04{
  position: relative;
  width: 100%;
  background-color: #EED7F8;
}

.SE241101FES .section04 .section-inner{
  position: relative;
  width: 68.7rem;
  margin-inline: auto;
  padding-top: 12.3rem;
  padding-bottom: 13rem;
}

.SE241101FES .section04 .section__item::after{
  content: '';
  position: absolute;
  /* top: 23.8rem; */
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 68.4rem;
  height: 55rem;
  background-image: url("../img/section04_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.SE241101FES .section04 .image-wrapper{
}

.SE241101FES .section04 .section__item{
  position: relative;
  margin-top: 15.5rem;
  margin-bottom: 11rem;
  z-index: 2;
}


/************** text **************/
.SE241101FES .section04 .section__title{
  font-family: var(--font-ja);
  font-size: 5.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-align: center;
  color: #00A041;
}

.SE241101FES .section04 .section__text{
  font-family: var(--font-ja);
  font-size: 2.2rem;
  text-align: center;
  color: #6E4200;
}

.SE241101FES .section04 .section__text.text01{
  line-height: 1.8;
  font-weight: 600;
}

.SE241101FES .section04 .section__text.text02{
  margin-top: 2.6rem;
  line-height: 2;
  font-size: 2rem;
}

.SE241101FES .section04 .section__text.text02 span{
  font-weight: 600;
}

.SE241101FES .section04 .section__text.text02 span:nth-of-type(2n){
  color: #FF717C;
}


/************** image **************/
.SE241101FES .section04 .character__image.image01{
  position: absolute;
  bottom: -2.3rem;
  left: -3.4rem;
  width: 24.7rem;
  z-index: 3;
}

.SE241101FES .section04 .character__image.image02{
  position: absolute;
  bottom: 6.5rem;
  right: -2.3rem;
  width: 14.5rem;
  z-index: 3;
}

.SE241101FES .section04 .shape__image.image01{
  top: -5.6rem;
  left: -6.8rem;
  width: 5rem;
}

.SE241101FES .section04 .shape__image.image02{
  bottom: -3.2rem;
  left: -10.4rem;
  width: 5.4rem;
}

.SE241101FES .section04 .shape__image.image03{
  top: -7.3rem;
  right: -8rem;
  width: 6.5rem;
}

.SE241101FES .section04 .shape__image.image04{
  bottom: -3.5rem;
  right: -10.4rem;
  width: 6.7rem;
}

.SE241101FES .section04 .shape__image.image05{
  bottom: 33.5rem;
  left: 12rem;
  width: 5.1rem;
  z-index: 3;
}

.SE241101FES .section04 .shape__image.image06{
  bottom: 28.4rem;
  right: 10.5rem;
  width: 3.7rem;
  z-index: 3;
}

.SE241101FES .section04 .shape__image.image07{
  bottom: 22.6rem;
  right: 3rem;
  width: 5.9rem;
  z-index: 3;
}

.SE241101FES .section04 .shape__image.image08{
  bottom: 19.4rem;
  right: 11.3rem;
  width: 4.9rem;
  z-index: 3;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section04 .garland.garland01{
    top: 24.4rem;
    left: -81rem;
  }

  .SE241101FES .section04 .garland.garland02{
    top: 95rem;
    left: -76rem;
  }

  .SE241101FES .section04 .garland.garland03{
    top: -64rem;
    right: -87rem;
  }

  .SE241101FES .section04 .garland.garland04{
    top: -26rem;
    right: -71rem;
  }

  .SE241101FES .section04 .garland.garland05{
    top: 79rem;
    left: -59rem;
  }

  .SE241101FES .section04 .garland.garland06{
    top: 120rem;
    left: -50rem;
  }

  .SE241101FES .section04 .garland.garland07{
    top: 133rem;
    right: -60rem;
  }

  .SE241101FES .section04 .garland.garland08{
    top: 163rem;
    right: -60rem;
  }
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section04 .section-inner{
    width: calc(678 * (100vw / 750));
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(100 * (100vw / 750));
  }

  .SE241101FES .section04 .section__item::after{
    /* top: calc(235 * (100vw / 750)); */
    top: calc(-100 * (100vw / 750));
    width: calc(678 * (100vw / 750));
    height: calc(544 * (100vw / 750));
  }

  .SE241101FES .section04 .section__item{
    margin-top: calc(150 * (100vw / 750));
    margin-bottom: calc(110 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section04 .section__title{
    font-size: calc(56 * (100vw / 750));
  }

  .SE241101FES .section04 .section__text{
    font-size: calc(22 * (100vw / 750));
  }

  .SE241101FES .section04 .section__text.text02{
    margin-top: calc(25 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section04 .character__image.image01{
    bottom: calc(-24 * (100vw / 750));
    left: calc(-35 * (100vw / 750));
    width: calc(241 * (100vw / 750));
  }

  .SE241101FES .section04 .character__image.image02{
    bottom: calc(35 * (100vw / 750));
    right: calc(-23 * (100vw / 750));
    width: calc(145 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image01{
    top: calc(-55 * (100vw / 750));
    left: calc(-70 * (100vw / 750));
    width: calc(50 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image02{
    bottom: calc(-28 * (100vw / 750));
    left: calc(-104 * (100vw / 750));
    width: calc(49 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image03{
    /* top: calc(-70 * (100vw / 750));
    right: calc(-74 * (100vw / 750)); */
    top: calc(-60 * (100vw / 750));
    right: calc(-60 * (100vw / 750));
    width: calc(59 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image04{
    bottom: calc(-34 * (100vw / 750));
    right: calc(-100 * (100vw / 750));
    width: calc(67 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image05{
    bottom: calc(305 * (100vw / 750));
    left: calc(117 * (100vw / 750));
    width: calc(48 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image06{
    bottom: calc(255 * (100vw / 750));
    right: calc(105 * (100vw / 750));
    width: calc(38 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image07{
    bottom: calc(200 * (100vw / 750));
    right: calc(30 * (100vw / 750));
    width: calc(55 * (100vw / 750));
  }

  .SE241101FES .section04 .shape__image.image08{
    bottom: calc(166 * (100vw / 750));
    right: calc(115 * (100vw / 750));
    width: calc(45 * (100vw / 750));
  }

  /************** ガーランド **************/
  .SE241101FES .section04 .garland.garland09{
    /* top: calc(505 * (100vw / 750)); */
    top: calc(455 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  }
}




/* ===============================================### 
セクション05
###=============================================== */
.SE241101FES .section05{
  position: relative;
  width: 100%;
  background-color: #FED4E6;
}

.SE241101FES .section05 .section-inner{
  position: relative;
  width: 68.4rem;
  margin-inline: auto;
  padding-top: 13rem;
}

.SE241101FES .section05 .section__item::after{
  content: '';
  position: absolute;
  top: -8rem;
  /* top: 24.2rem; */
  left: 50%;
  transform: translateX(-50%);
  width: 68.6rem;
  height: 60.1rem;
  background-image: url("../img/section05_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.SE241101FES .section05 .image-wrapper{
}

.SE241101FES .section05 .image-wrapper.wrap02{
  margin-top: -23rem;
  z-index: 3;
}

.SE241101FES .section05 .section__item{
  position: relative;
  /* width: 56.5rem; */
  width: fit-content;
  margin-top: 13.4rem;
  margin-bottom: 20.2rem;
  margin-inline: auto;
  z-index: 2;
}

/************** text **************/
.SE241101FES .section05 .section__text{
  font-family: var(--font-ja);
  font-weight: 600;
  color: #6E4200;
}

.SE241101FES .section05 .section__text.text01{
  font-size: 2.4rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

.SE241101FES .section05 .section__text.text02{
  margin-top: 4.2rem;
  margin-left: 5.5rem;
  line-height: 1.95;
}

.SE241101FES .section05 .section__text.text02 li{
  position: relative;
  font-size: 1.9rem;
}

.SE241101FES .section05 .section__text.text02 li span{
  font-size: 1.6rem;
}

.SE241101FES .section05 .section__text.text02 li::before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3rem;
  width: 2.5rem;
  height: 2.6rem;
  /* display: inline-block; */
  /* margin-right: 1rem; */
}

.SE241101FES .section05 .section__text.text02 li:nth-of-type(1)::before{
  background-image: url("../img/section05_list01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  /* width: 1.6rem; */
  /* height: 1.5rem; */
}

.SE241101FES .section05 .section__text.text02 li:nth-of-type(2)::before{
  top: 2rem;
  background-image: url("../img/section05_list02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  /* width: 1.6rem; */
  /* height: 1.5rem; */
}

.SE241101FES .section05 .section__text.text02 li:nth-of-type(3)::before{
  background-image: url("../img/section05_list03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  /* width: 1.6rem; */
  /* height: 1.5rem; */
}

.SE241101FES .section05 .section__text.text03{
  position: absolute;
  bottom: 21.4rem;
  left: 14.5rem;
  font-size: 1.9rem;
  line-height: 1.9;
  text-align: center;
  z-index: 2;
}

.SE241101FES .section05 .section__text.text03 p{
  font-weight: 600;
  color: #6E4200;
}

/************** image **************/
.SE241101FES .section05 .section__title{
  width: 37rem;
}

.SE241101FES .section05 .character__image{
  width: 24.1rem;
  margin-left: 10.4rem;
}

.SE241101FES .section05 .shape__image.image01{
  top: -6.7rem;
  left: -6rem;
  width: 5rem;
}

.SE241101FES .section05 .shape__image.image02{
  bottom: -3.9rem;
  left: -8.5rem;
  width: 6rem;
}

.SE241101FES .section05 .shape__image.image03{
  top: -6.4rem;
  right: -4rem;
  width: 5.2rem;
}

.SE241101FES .section05 .shape__image.image04{
  bottom: -3.7rem;
  right: -6rem;
  width: 4rem;
}

.SE241101FES .section05 .shape__image.image05{
  bottom: 30.4rem;
  left: 8.8rem;
  width: 4rem;
  z-index: 2;
}

.SE241101FES .section05 .shape__image.image06{
  bottom: 11.9rem;
  left: 5.3rem;
  width: 4.6rem;
  z-index: 2;
}

.SE241101FES .section05 .shape__image.image07{
  top: 8rem;
  right: -5.4rem;
  width: 4.5rem;
  z-index: 2;
}

.SE241101FES .section05 .shape__image.image08{
  bottom: 15.5rem;
  right: -5.1rem;
  width: 4.5rem;
  z-index: 2;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section05 .garland.garland01{
    top: 19rem;
    left: -74rem;
  }

  .SE241101FES .section05 .garland.garland02{
    top: 81rem;
    left: -75rem;
  }

  .SE241101FES .section05 .garland.garland03{
    top: 9rem;
    right: -78rem;
  }

  .SE241101FES .section05 .garland.garland04{
    top: 60rem;
    right: -81rem;
  }

  .SE241101FES .section05 .garland.garland05{
    top: 79rem;
    left: -59rem;
  }

  .SE241101FES .section05 .garland.garland06{
    top: 120rem;
    left: -50rem;
  }

  .SE241101FES .section05 .garland.garland07{
    top: 133rem;
    right: -60rem;
  }

  .SE241101FES .section05 .garland.garland08{
    top: 163rem;
    right: -60rem;
  }
}


/************** responsive **************/
@media screen and (max-width: 767px) {
  .SE241101FES .section05 .section-inner{
    width: calc(678 * (100vw / 750));
    padding-top: calc(159 * (100vw / 750));
  }

  .SE241101FES .section05 .section__item::after{
    top: calc(-66 * (100vw / 750));
    /* top: calc(269 * (100vw / 750)); */
    width: calc(678 * (100vw / 750));
    height: calc(594 * (100vw / 750));
  }

  .SE241101FES .section05 .image-wrapper.wrap02{
    margin-top: calc(-230 * (100vw / 750));
  }

  .SE241101FES .section05 .section__item{
    margin-top: calc(130 * (100vw / 750));
    margin-bottom: calc(200 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section05 .section__text.text01{
    font-size: calc(22 * (100vw / 750));
  }

  .SE241101FES .section05 .section__text.text02{
    margin-top: calc(37 * (100vw / 750));
    margin-left: calc(51 * (100vw / 750));
  }

  .SE241101FES .section05 .section__text.text02 li{
    font-size: calc(19 * (100vw / 750));
  }

  .SE241101FES .section05 .section__text.text02 li span{
    font-size: calc(16 * (100vw / 750));
  }

  .SE241101FES .section05 .section__text.text02 li::before{
    left: calc(-30 * (100vw / 750));
    width: calc(25 * (100vw / 750));
    height: calc(26 * (100vw / 750));
  }

  .SE241101FES .section05 .section__text.text02 li:nth-of-type(2)::before{
    top: calc(20 * (100vw / 750));
  }

  .SE241101FES .section05 .section__text.text03{
    bottom: calc(210 * (100vw / 750));
    left: calc(144 * (100vw / 750));
    font-size: calc(19 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section05 .section__title{
    width: calc(363 * (100vw / 750));
  }

  .SE241101FES .section05 .character__image{
    width: calc(240 * (100vw / 750));
    margin-left: calc(100 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image01{
    /* top: calc(-60 * (100vw / 750));
    left: calc(-60 * (100vw / 750)); */
    top: calc(-55 * (100vw / 750));
    left: calc(-50 * (100vw / 750));
    width: calc(37 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image02{
    bottom: calc(-40 * (100vw / 750));
    left: calc(-90 * (100vw / 750));
    width: calc(64 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image03{
    top: calc(-68 * (100vw / 750));
    right: calc(-40 * (100vw / 750));
    width: calc(52 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image04{
    bottom: calc(-34 * (100vw / 750));
    right: calc(-60 * (100vw / 750));
    width: calc(38 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image05{
    bottom: calc(300 * (100vw / 750));
    left: calc(80 * (100vw / 750));
    width: calc(40 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image06{
    bottom: calc(120 * (100vw / 750));
    left: calc(53 * (100vw / 750));
    width: calc(40 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image07{
    top: calc(80 * (100vw / 750));
    right: calc(-50 * (100vw / 750));
    width: calc(45 * (100vw / 750));
  }

  .SE241101FES .section05 .shape__image.image08{
    bottom: calc(155 * (100vw / 750));
    right: calc(-50 * (100vw / 750));
    width: calc(42 * (100vw / 750));
  }

  /************** ガーランド **************/
  .SE241101FES .section05 .garland.garland09{
    top: calc(360 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}



/* ===============================================### 
セクション06
###=============================================== */
.SE241101FES .section06{
  position: relative;
  width: 100%;
  background-color: #FFFC86;
}

.SE241101FES .section06 .section-inner{
  width: fit-content;
  margin-inline: auto;
  padding-top: 11.9rem;
  padding-bottom: 13.7rem;
}

/************** image **************/
.SE241101FES .section06 .section__title{
  width: 13.6rem;
  margin-inline: auto;
}

.SE241101FES .section06 .section__image{
  width: 69rem;
  margin-top: 5.1rem;
  margin-inline: auto;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section06 .garland.garland01{
    top: -15rem;
    left: -78rem;
  }

  .SE241101FES .section06 .garland.garland02{
    top: 65rem;
    left: -77rem;
  }

  .SE241101FES .section06 .garland.garland03{
    top: 45rem;
    right: -78rem;
  }

  .SE241101FES .section06 .garland.garland04{
    top: 85rem;
    right: -76rem;
  }

  .SE241101FES .section06 .garland.garland05{
    top: 9rem;
    left: -59rem;
  }

  .SE241101FES .section06 .garland.garland06{
    top: 59rem;
    left: -56rem;
  }

  .SE241101FES .section06 .garland.garland07{
    top: 133rem;
    right: -60rem;
  }

  .SE241101FES .section06 .garland.garland08{
    top: 163rem;
    right: -60rem;
  }
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section06 .section-inner{
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(140 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section06 .section__title{
    width: calc(146 * (100vw / 750));
    margin-inline: auto;
  }

  .SE241101FES .section06 .section__image{
    width: calc(687 * (100vw / 750));
    margin-top: calc(49 * (100vw / 750));
  }
}



/* ===============================================### 
セクション07
###=============================================== */
.SE241101FES .section07{
  position: relative;
  width: 100%;
  background-color: #C7F3FF;
}

.SE241101FES .section07 .section-inner{
  width: fit-content;
  margin-inline: auto;
  padding-top: 12.4rem;
  padding-bottom: 13.2rem;
}

/************** text **************/
.SE241101FES .section07 .section__text{
  margin-top: 2.2rem;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  color: #000;
}

.SE241101FES .section07 .section__text a{
  font-weight: 600;
  border-bottom: 0.1rem solid #000;
  /* text-decoration: underline; */
}

.SE241101FES .section07 .section__text.text01{
  position: relative;
  left: -0.2rem;
  margin-top: 3rem;
}

.SE241101FES .section07 .section__text.text01::after{
  content: '';
  position: absolute;
  background-image: url("../img/map_pin.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
}

.SE241101FES .section07 .section__text.text02{
  margin-top: 1.7rem;
  margin-left: -0.1rem;
}

/************** image **************/
.SE241101FES .section07 .section__title{
  width: 23.6rem;
  margin-inline: auto;
}

/************** map **************/
.SE241101FES .section07 .access__map{
  width: 62rem;
  margin-top: 6rem;
  margin-inline: auto;
}

.SE241101FES .section07 .access__map iframe{
  width: 100%;
  height: 46.6rem;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section07 .garland.garland01{
    top: 5rem;
    left: -78rem;
  }

  .SE241101FES .section07 .garland.garland02{
    top: 70rem;
    left: -73rem;
  }

  .SE241101FES .section07 .garland.garland03{
    top: 1rem;
    right: -73rem;
  }

  .SE241101FES .section07 .garland.garland04{
    top: 40rem;
    right: -76rem;
  }

  .SE241101FES .section07 .garland.garland05{
    top: 9rem;
    left: -59rem;
  }

  .SE241101FES .section07 .garland.garland06{
    top: 59rem;
    left: -56rem;
  }

  .SE241101FES .section07 .garland.garland07{
    top: 133rem;
    right: -60rem;
  }

  .SE241101FES .section07 .garland.garland08{
    top: 163rem;
    right: -60rem;
  }
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section07 .section-inner{
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(130 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section07 .section__text{
    margin-top: calc(20 * (100vw / 750));
    font-size: calc(16 * (100vw / 750));
  }

  .SE241101FES .section07 .section__text a{
    border-bottom: calc(1 * (100vw / 750)) solid #000;
  }

  .SE241101FES .section07 .section__text.text01{
    left: 0;
    margin-top: calc(32 * (100vw / 750));
  }

  .SE241101FES .section07 .section__text.text01::after{
    width: calc(18 * (100vw / 750));
    height: calc(18 * (100vw / 750));
  }

  .SE241101FES .section07 .section__text.text02{
    margin-top: calc(20 * (100vw / 750));
    margin-left: 0;
  }

  /************** image **************/
  .SE241101FES .section07 .section__title{
    width: calc(236 * (100vw / 750));
    margin-inline: auto;
  }

  /************** map **************/
  .SE241101FES .section07 .access__map{
    width: calc(620 * (100vw / 750));
    margin-top: calc(60 * (100vw / 750));
  }

  .SE241101FES .section07 .access__map iframe{
    width: 100%;
    height: calc(461 * (100vw / 750));
  }
}



/* ===============================================### 
セクション08
###=============================================== */
.SE241101FES .section08{
  position: relative;
  width: 100%;
  background-color: #C1CFFF;
}

.SE241101FES .section08 .section-inner{
  width: 62.8rem;
  margin-inline: auto;
  padding-top: 12.3rem;
  padding-bottom: 11.3rem;
}

.SE241101FES .section08 .section__item{
  position: relative;
  margin-top: 7rem;
  padding-top: 7.3rem;
  padding-bottom: 18.1rem;
  padding-inline: 8.4rem;
  border-bottom-right-radius: 5rem;
  background-color: #FFFEE1;
}

.SE241101FES .section08 .section__item::after{
  content: '';
  position: absolute;
  bottom: 0.4rem;
  right: 1.1rem;
  width: 6.5rem;
  height: 4.2rem;
  background-image: url("../img/section07_decoration.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/************** text **************/
.SE241101FES .section08 .section__text{
  font-family: var(--font-ja);
  font-size: 1.2rem;
  color: #000;
}

.SE241101FES .section08 .section__text.text01{
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.SE241101FES .section08 .section__text.text02{
  margin-top: 4.7rem;
  line-height: 1.7;
}

.SE241101FES .section08 .section__text.text02 span{
  color: #00f;
}

.SE241101FES .section08 .link__text{
  color: #00f;
  text-decoration: underline;
}

/************** image **************/
.SE241101FES .section08 .section__title{
  width: 35.3rem;
  margin-inline: auto;
}

/************** accordion-menu **************/
.js-accordion {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.accordion__button p {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #fff;
  width: 24.6rem;
  /* padding: 5px 20px; */
  padding-top: 1.8rem;
  padding-bottom: 1.3rem;
  border-radius: 20px;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #6B6B6B;
  box-shadow: 0.7rem 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
}

.accordion__button p::after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.9rem;
  transform: translateY(-50%)
    rotate(135deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 3px solid #6B6B6B;
  border-right: 3px solid #6B6B6B;
  transition: .3s;
}

.accordion__button p.close::after{
  transform: rotate(-45deg);
}

/* .slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
} */

/* .slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
} */

.content-wrap {
  /* height: 150px; */
  height: 13rem;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.close-btn, .accordion__button {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  /* padding: 80px 0 0; */
  padding: 8rem 0 6rem;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 254, 225, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 254, 225, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 254, 225, 1) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr='#00ffffff',
      endColorstr='#ffffff',
      GradientType=0
    );
}

.close-btn {
  background: none;
}
.slide-up {
  /* height: 150px; */
  height: 13rem;
  padding-bottom: 0;
  overflow: hidden;

  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

.slide-down {
  height: auto;
  overflow: visible;
  /* padding-bottom: 50px; */
  padding-bottom: 5rem;

  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    /* -webkit-transform: translateY(-20px);
    transform: translateY(-20px); */
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    /* -webkit-transform: translateY(-20px);
    transform: translateY(-20px); */
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideUp {
  0% {
    /* -webkit-transform: translateY(20px);
    transform: translateY(20px); */
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    /* -webkit-transform: translateY(20px);
    transform: translateY(20px); */
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* .close-btn {
  padding:0;
} */
/* .close-btn p {
  background: #aaa;
} */

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section08 .garland.garland01{
    top: -30rem;
    left: -78rem;
  }

  .SE241101FES .section08 .garland.garland02{
    top: 40rem;
    left: -72rem;
  }

  .SE241101FES .section08 .garland.garland03{
    top: -17rem;
    right: -78rem;
  }

  .SE241101FES .section08 .garland.garland04{
    top: 24rem;
    right: -77rem;
  }

  .SE241101FES .section08 .garland.garland05{
    top: 9rem;
    left: -59rem;
  }

  .SE241101FES .section08 .garland.garland06{
    top: 56rem;
    left: -54rem;
  }

  .SE241101FES .section08 .garland.garland07{
    top: 133rem;
    right: -60rem;
  }

  .SE241101FES .section08 .garland.garland08{
    top: 163rem;
    right: -60rem;
  }
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section08 .section-inner{
    width: calc(620 * (100vw / 750));
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(109 * (100vw / 750));
  }

  .SE241101FES .section08 .section__item{
    margin-top: calc(70 * (100vw / 750));
    padding-top: calc(70 * (100vw / 750));
    padding-bottom: calc(179 * (100vw / 750));
    padding-inline: calc(40 * (100vw / 750));
    border-bottom-right-radius: calc(50 * (100vw / 750));
  }

  .SE241101FES .section08 .section__item::after{
    bottom: calc(4 * (100vw / 750));
    right: calc(11 * (100vw / 750));
    width: calc(35 * (100vw / 750));
    height: calc(34 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section08 .section__text{
    font-size: calc(18 * (100vw / 750));
  }

  .SE241101FES .section08 .section__text.text01{
    font-size: calc(18 * (100vw / 750));
  }

  .SE241101FES .section08 .section__text.text02{
    margin-top: calc(50 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section08 .section__title{
    width: calc(353 * (100vw / 750));
  }

  /************** accordion-menu **************/
  .accordion__button p {
    width: calc(246 * (100vw / 750));
    padding-top: calc(18 * (100vw / 750));
    padding-bottom: calc(15 * (100vw / 750));
    font-size: calc(18 * (100vw / 750));
    box-shadow: calc(7 * (100vw / 750)) calc(5 * (100vw / 750)) calc(5 * (100vw / 750)) rgba(0, 0, 0, 0.25);
  }

  .accordion__button p::after{
    right: calc(20 * (100vw / 750));
    width: calc(8 * (100vw / 750));
    height: calc(8 * (100vw / 750));
  }

  .content-wrap {
    height: calc(130 * (100vw / 750));
  }

  .close-btn, .accordion__button {
    padding: calc(80 * (100vw / 750)) 0 calc(60 * (100vw / 750));
  }

  .slide-up {
    height: calc(130 * (100vw / 750));
  }

  .slide-down {
    padding-bottom: calc(50 * (100vw / 750));
  }

  /* @-webkit-keyframes slideDown {
    0% {
      opacity: 1;
      -webkit-transform: translateY(-2rem);
      transform: translateY(-2rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes slideDown {
    0% {
      opacity: 1;
      -webkit-transform: translateY(-2rem);
      transform: translateY(-2rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @-webkit-keyframes slideUp {
    0% {
      -webkit-transform: translateY(-2rem);
      transform: translateY(-2rem);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  }
  @keyframes slideUp {
    0% {
      -webkit-transform: translateY(-2rem);
      transform: translateY(-2rem);
    }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
  } */
}



/* ===============================================### 
セクション09
###=============================================== */
.SE241101FES .section09{
  position: relative;
  width: 100%;
  background-color: #fff;
}

.SE241101FES .section09 .section-inner{
  width: 62rem;
  margin-inline: auto;
  padding-top: 13rem;
}

.SE241101FES .section09 .section__item01{
  margin-top: 4.7rem;
}

.SE241101FES .section09 .section__item02{
  width: 47.1rem;
  margin-top: 9.2rem;
  margin-inline: auto;
}

/* .SE241101FES .section09 .grid-wrapper{
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  margin-top: 0.8rem;
} */

/************** text **************/
.SE241101FES .section09 .section__item01 .section__title{
  font-family: var(--font-ja);
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  color: #6E4200;
}

.SE241101FES .section09 .section__text{
  margin-top: 3rem;
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #6E4200;
}

/************** image **************/
.SE241101FES .section09 .character__image{
  width: 48.5rem;
  margin-inline: auto;
}

.SE241101FES .section09 .section__item01 .section__image.image01{
  width: 11.6rem;
  margin-top: 3.4rem;
  margin-inline: auto;
}

.SE241101FES .section09 .section__item01 .section__image.image02{
  width: 10.4rem;
  margin-top: 2.8rem;
  margin-inline: auto;
}

.SE241101FES .section09 .section__item01 .section__image.image03{
  width: 26.5rem;
  margin-top: 3rem;
  margin-inline: auto;
}

.SE241101FES .section09 .section__title{
  width: 32.1rem;
  margin-inline: auto;
}

.SE241101FES .section09 .section__item02 .section__image.image01{
  width: 22rem;
  margin-top: -5.9rem;
  margin-inline: auto;
}

.SE241101FES .section09 .section__item02 .section__image.image02{
  width: 14.9rem;
  margin-inline: auto;
  margin-top: -7.2rem;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .section09 .garland.garland01{
    top: 43rem;
    left: -78rem;
  }

  .SE241101FES .section09 .garland.garland02{
    top: 120rem;
    left: -77rem;
  }

  .SE241101FES .section09 .garland.garland03{
    top: -15rem;
    right: -78rem;
  }

  .SE241101FES .section09 .garland.garland04{
    top: 23rem;
    right: -71rem;
  }

  .SE241101FES .section09 .garland.garland05{
    top: 1rem;
    left: -79rem;
  }

  .SE241101FES .section09 .garland.garland06{
    top: 70rem;
    left: -76rem;
  }

  .SE241101FES .section09 .garland.garland07{
    top: 51rem;
    right: -74rem;
  }

  .SE241101FES .section09 .garland.garland08{
    top: 87rem;
    right: -68rem;
  }
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .section09 .section-inner{
    width: calc(471 * (100vw / 750));
    padding-top: calc(130 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item01{
    margin-top: calc(47 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item02{
    width: 100%;
    margin-top: calc(92 * (100vw / 750));
  }

  .SE241101FES .section09 .grid-wrapper{
    margin-top: calc(10 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .section09 .section__item01 .section__title{
    font-size: calc(32 * (100vw / 750));
  }

  .SE241101FES .section09 .section__text{
    margin-top: calc(30 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .section09 .character__image{
    width: calc(476 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item01 .section__image.image01{
    width: calc(116 * (100vw / 750));
    margin-top: calc(33 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item01 .section__image.image02{
    width: calc(104 * (100vw / 750));
    margin-top: calc(29 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item01 .section__image.image03{
    width: calc(265 * (100vw / 750));
    margin-top: calc(32 * (100vw / 750));
  }

  .SE241101FES .section09 .section__title{
    width: calc(313 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item02 .section__image.image01{
    width: calc(212 * (100vw / 750));
    margin-top: calc(-62 * (100vw / 750));
  }

  .SE241101FES .section09 .section__item02 .section__image.image02{
    width: calc(147 * (100vw / 750));
    margin-top: calc(-68 * (100vw / 750));
  }

  /************** ガーランド **************/
  .SE241101FES .section09 .garland.garland09{
    top: calc(-360 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  }

  .SE241101FES .section09 .garland.garland10{
    top: calc(-280 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  }
}


/* ===============================================### 
フッター
###=============================================== */
.SE241101FES .lp_footer{
  position: relative;
  width: 100%;
}

.SE241101FES .lp_footer .footer-inner{
  width: 76rem;
  /* width: fit-content; */
  margin-inline: auto;
  padding-top: 5.1rem;
  padding-bottom: 5rem;
  background-color: #fff;
}

.SE241101FES .lp_footer .sns-wrapper{
  width: 26.2rem;
  margin-top: 3.8rem;
  margin-inline: auto;
  padding-left: 0;
}

.SE241101FES .lp_footer .sns-wrapper ul{
  gap: 2rem;
}

/************** text **************/
.SE241101FES .lp_footer .copy__text{
  margin-top: 5.4rem;
  font-family: var(--font-en02);
  font-size: 1.4rem;
  text-align: center;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/************** image **************/
.SE241101FES .lp_footer .section__title{
  width: 51.8rem;
  margin-inline: auto;
}

.SE241101FES .lp_footer .sns-wrapper li{
  width: 6rem;
}

.SE241101FES .lp_footer .logo__image{
  width: 23.2rem;
  margin-top: 7.7rem;
  margin-inline: auto;
}

/************** ガーランド **************/
@media screen and (min-width: 768px) {
  .SE241101FES .lp_footer .garland.garland01{
    top: -1rem;
    left: -17rem;
  }

  .SE241101FES .lp_footer .garland.garland02{
    top: 38rem;
    left: -17rem;
  }

  .SE241101FES .lp_footer .garland.garland03{
    top: 5rem;
    right: -6rem;
  }
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .SE241101FES .lp_footer .footer-inner{
    width: calc(750 * (100vw / 750));
    padding-top: calc(50 * (100vw / 750));
    padding-bottom: calc(50 * (100vw / 750));
  }

  .SE241101FES .lp_footer .sns-wrapper{
    width: calc(260 * (100vw / 750));
    margin-top: calc(40 * (100vw / 750));
  }

  .SE241101FES .lp_footer .sns-wrapper ul{
    gap: calc(20 * (100vw / 750));
  }

  /************** text **************/
  .SE241101FES .lp_footer .copy__text{
    margin-top: calc(50 * (100vw / 750));
    font-size: calc(14 * (100vw / 750));
  }

  /************** image **************/
  .SE241101FES .lp_footer .section__title{
    width: calc(518 * (100vw / 750));
  }

  .SE241101FES .lp_footer .sns-wrapper li{
    width: calc(60 * (100vw / 750));
  }

  .SE241101FES .lp_footer .logo__image{
    width: calc(232 * (100vw / 750));
    margin-top: calc(77 * (100vw / 750));
  }
}