@charset"UTF-8";

/*============================
全体の設定
============================*/
/*フォントカラー、with*/
:root{
  --primary--backcolor:#F9F6F1;
  --primary-maingreen:#0EB6B9;
  --primary-pink:#E08D9F;
  --primary-yellow:#FED68E;
  --primary-brown:#544946;
  --contentwidth:91.4%;
  --contentpadding:5.3%;
}

/*全体*/
html{
  font-size: 62.5%;
  background-color: var(--primary--backcolor);
}

body{
  font-family: 
     'Zen Maru Gothic',
      Kaisei Opti;
  font-style: normal;
  color: var(--primary-brown);
  line-height: 1.5;
  font-weight: 400;
}

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

/*============================
セクション設定
============================*/
/*各セクションtitle*/
.section_title{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.section_mainTitle{
  color:var(--primary-yellow);
  text-align: center;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
}

.section_mainTitle--Schedulesns{
  color: var(--primary-yellow);
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.section_subTitle{
  color: var(--primary-maingreen);
  text-align: center;
  font-family: "Kaisei Opti";
  font-size: 1.6rem;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
}

.pcSectionleft{
  display: none;
}

.pcSectionright{
  display: none;
}

/*各セクションTitlePC*/
@media screen and (min-width: 769px) {
  .section_title{
  gap: 60px;
}

.section_mainTitle{
  font-size: 4.8rem;
  position: relative;
}

.section_subTitle{
  font-size: 3.2rem;
}

.pcSectionleft{
  display: block;
}

.sectionleft{
  display: none;
}

.pcSectionright{
  display: block;
}

.sectionright{
  display: none;
}

.pcSectionrightImg{
  width: 85%;
}

.pcSectionleftImg{
  width: 85%;
}

}
/*各セクションTitlePC*/

/*各ボタン設定*/
/*topイベント一覧*/
.activity_btn{
  color: var(--primary-maingreen);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 30px auto;
  background-color: #FFF;
  border: solid var(--primary-maingreen) 1px;
  border-radius: 50px;
  display: flex;
  width: 245px;
  padding: 10px 70px 10px 53px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.activity_btn:hover {
  background:var(--primary-maingreen);
  color: #FFF;
  border: 2px solid var(--primary-maingreen);
  position: relative;
  transition: 0.4s;
}

.activity_btn::before{
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url(../image/ArrowBtn/GreenArrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 7px;
  right: 20%;
  position: absolute;
}

.activity_btn:hover::after{
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url(../image/ArrowBtn/WhiteArrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 7px;
  right: 20%;
  position: absolute;
  transition: 0.4s;
}


/*topボタン一覧 PC*/
@media screen and (min-width: 769px) {
  .activity_btn{
    font-size: 1.8rem;
}

  .activity_btn::before{
    top: 9px;
    right: 17%;
  }

  .activity_btn:hover::after{
    top: 9px;
    right: 17%;
  }

}

/*============================
ナビゲーションメニュー
============================*/
.p-sp-nav_li--Top{
  display: none;
}

.header{
  padding-top: 110px;
}

.l-sp-header {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5.3%;
  background-color:var(--primary--backcolor);
}

  .l-sp-header_h1{
  width: 200px;
  align-items: center;
}


  /* ハンバーガーメニューのボタン */
.l-sp-header_ham-menu {
  width: 80px;
  height: 70px;
  border-radius: 3px;
  background-image: url(../image/Nav.png);
  background-size: contain;
  background-repeat: no-repeat;
  color:white;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  padding-top: 6px;
}

  /* ---------------------------- */
.open-btn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 97px;
  height: 29px;
  margin-top: 8px;
}
  /*ボタン内側:2本線のスタイル*/
.open-btn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 25px;
  height: 5px; /*Android端末で線の太さの違い出る対策*/
  transform: scaleY(0.5) translateY(1px); /*Android端末で線の太さの違い出る対策*/
  border-radius: 5px;
  width: 38%;
}
  /* 上の線 */
.open-btn1 span:nth-of-type(1) {
  background-color: var(--primary-pink);
  top: 4px;
}
  /* 下の線 */
  .open-btn1 span:nth-of-type(2) {
  background-color: var(--primary-yellow);
  top: 14px;
  }

  /*activeクラスが付与されると線が回転して×*/
  .open-btn1.active span:nth-of-type(1) {
  top: 8px;
  left: 23px;
  transform: translateY(6px) rotate(-45deg);
  width: 38%;
  height: 3px; /*Android端末で線の太さの違い出る対策*/
  }

  .open-btn1.active span:nth-of-type(2) {
  top: 20px;
  left: 23px;
  transform: translateY(-6px) rotate(45deg);
  width: 38%;
  height: 3px; /*Android端末で線の太さの違い出る対策*/
  }

  /* メニュー本体 */
  .p-sp-nav-bg{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--primary--backcolor);
  top: 0;
  left: 0;
  /* z-index: 5; */
  transition: all 0.3s;
  }

  /* .bg-activeが付与された時 */
  .p-sp-nav-bg.bg-active{
  display: block;
  transition: all 0.3s;
  }
  
  /* ナビゲーション全体を囲うタグ */
  #sp-g-nav {
  position: fixed;
  z-index: 7;
  color: var(--primary-brown);
  background-color: var(--primary--backcolor);
  font-size: 1.8rem;
  font-weight: 400;
  width: 100%;
  top: -120%;
  transition: all 0.3s;
  height:100vh;
  height:100dvh;
  }

  /*アクティブクラスがついたら表示位置変更*/
  #sp-g-nav.panel-active {
  width: 100%;
  top: 80px;
  transition: all 0.3s;
  }
  /* ナビゲーション本体 */
  .p-sp-nav_ul{
  width: 100%;
  margin: 60px 35px;
  }

  .p-sp-nav_li:last-of-type {
  border-bottom: 0;
  }
  .p-sp-nav_a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 2em;
  }

  .p-sp-nav_li{
    margin-top: 40px;
  }

  .diviconImg{
    width: 25px;
  }
  
  .divIconTxt{
    margin-left: 10px;
  }

  .dropDown{
    margin-top: 20px;
    padding-left: 75px;
  }

  .dropDown__item{
    margin-top: 10px;
  }

  .dropDown__link{
    color: var(--primary-brown);
    font-size: 1.4rem;
    font-weight: 400;
  }

  /*Nav Icon*/
  /*
  .p-sp-nav_li--Home{
    position: relative;
  }

  .p-sp-nav_li--Home::after{
    position: absolute;
    content: '';
    background-image: url(../image/NavIcon/Top.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    top:3px;
    left: 0;
    pointer-events: none;
  }

  .p-sp-nav_li--AboutUs{
    position: relative;
  }

  .p-sp-nav_li--AboutUs::before{
    position: absolute;
    content: '';
    background-image: url(../image/NavIcon/About.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 40px;
    top: -5px;
    left: 0;
  }

  .link-hover{
    position: relative;
  }

  .link-hover::before{
    position: absolute;
    content: '';
    background-image: url(../image/NavIcon/Event.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 34px;
    height: 40px;
    top: -4px;
    left: 0;
  }

  .p-sp-nav_li--Staff{
    position: relative;
  }

  .p-sp-nav_li--Staff::before{
    position: absolute;
    content: '';
    background-image: url(../image/NavIcon/Staff.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 34px;
    height: 40px;
    top: -6px;
    left: 0; 
  }

.p-sp-nav_li--ContactUs{
    position: relative;
}

.p-sp-nav_li--ContactUs::before{
    position: absolute;
    content: '';
    background-image: url(../image/NavIcon/ContactUs.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 34px;
    height: 40px;
    top: -4px;
    left: 0;  
}
*/

.P-sp-nav--Child{
    background: var(--primary--backcolor);
    padding: 30px;
}

.P-sp-nav--ChildItem{
    margin-top: 20px;
}



/*Nave PC*/
@media screen and (min-width: 1024px) {
  .PC_logo{
    width: 450px;
  }

  .p-sp-nav_li--Top{
    width: 350px;
  }
  
    .l-sp-header{
        display: none;
    } 

    #sp-g-nav {
      width: auto;
      height: auto;
      position:static;
      padding: 0;
      transform: translateX(0);
      z-index: 100;
    }
    .header{
      background-color: rgba(249, 246, 241,0.5);
      width: 100%;
      text-align: center;
      margin: 0 auto;
      padding: 0 6.9% 15px;
      position: fixed;
      z-index: 100;
    }

    #sp-g-nav {
      background-color:rgba(249, 246, 241,0.1) ;
    }

    .p-sp-nav-bg{
      display: none;
      position: fixed;
      width: 100%;
      height: 100%;
      background-color: rgba(249, 246, 241,0.5);
      top: 0;
      left: 0;
      /* z-index: 5; */
      transition: all 0.3s;
    }

    .p-sp-nav_ul{
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        align-items:end;
        justify-content: space-between;
        transform: translateX(0);
    }

    .p-sp-nav_li--Home{
        display: none;
    }

    .p-sp-nav_li--AboutUs{
      margin-left: -5%;
    }

    .p-sp-nav_li--Top{
        display: block;
        width: 500px;
        padding-right: 5%;
    }

    .p-sp-nav_li--event{
      margin-left: -5%;
    }

    .p-sp-nav_li--Staff{
      margin-left: -8%;
    }

    .p-sp-nav-bg{
        display: none;
    }

    .p-sp-nav{
        z-index: 100;
    }

    .p-sp-nav_li{
        font-size: 1.6rem;
        font-weight: 700;
        position: relative;
    }

    /*イベントhover*/
    .link:hover,
    .link:focus {
      color:var(--primary-brown);
   }
  
    .link-hover{
      position: relative;
    }

  .link-hover::after {
    position: absolute;
    content: '';
    background-image: url(../image/ArrowBtn/brownArrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    bottom: 0px;
    right:-23px;
  }
  
    .dropDown {
    position: absolute;
    bottom: 0;
    display: none;
    padding: 30px 55px 50px 15px;
    background-color: rgba(249, 246, 241,0.8);
    color: initial;
    transform: translate(0, 100%);
  }

  .dropDown__item:first-of-type{
    margin-top: 30px;
  }
  
  .link:hover > .dropDown,
  .link:focus > .dropDown {
    display: block;
  }
  

  .dropDown__link {
    transition: color .15s;
  }
  .dropDown__link:hover,
  .dropDown__link:focus {
    color:var(--primary-maingreen);
  }

  .dropDown__list{
    width: 280px;
    height: 190px;
    text-align: left;
  }

  .dropDown__item{
    color: var(--primary-brown);
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: dotted 3px var(--primary-brown);
  }

  .dropDown__item:first-of-type{
    padding-top: 20px;
  }

  .p-sp-nav_a{
    width: 100%;
    height: 100%;
    align-items: center;
    padding-left: 2em;
    display: block;
  }

  .diviconImg{
    width: 40px;
    margin-bottom: 15px;
  }

  .diviconImg--event{
    width: 50px;
    transform: translateX(10px);
  }

  .diviconImg--staff{
    width: 50px;
    transform: translateX(10px);
  }

  .diviconImg--contactus{
    width: 50px;
    transform: translateX(10px);
  }

}

/*============
footer
==============*/
.underFooter{
  margin-top: 50px;
}

.footer__group{
  padding-top: 10px;
}

.footer_log{
  width: 50%;
  margin: 0 auto;
}

.footer_sns{
  display: flex;
  margin-top: 20px;
  gap: 40px;
  justify-content: center;
}

.footer_line{
  width: 40px;
  height: 40px;
}

.footer_instagram{
  width: 40px;
  height: 40px;
}

.copy{
  margin: 30px;
  color: var(--primary-brown);
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}

.cloudBackImg{
  width: 100%;
}

.topbtn__img{
  display: inline-block;
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 5%;
  right: 0;
  z-index: 80;
}

@media screen and (min-width: 769px) {
  .footer_log{
    width: 400px;
    margin: 0 auto;
  }

  .footer_line{
    width: 60px;
    height: 60px;
  }
  
  .footer_instagram{
    width: 60px;
    height: 60px;
  }

  .footer_sns{
    display: flex;
    margin-top: 30px;
    gap: 40px;
    justify-content: center;
  }

  .copy{
    margin: 50px;
    color: var(--primary-brown);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .topbtn__img{
    display: inline-block;
    width: 132px;
    height: 132px;
    position: fixed;
    bottom: 22%;
    right: 0;
}

.footer__group{
  margin-top: 10px;
}

}

/*============
Yellow marker
==============*/

/*テスト*/
.c-marker {
  background: -webkit-linear-gradient(left, rgb(254, 214, 142) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(254, 214, 142) 50%, transparent 50%);
  background: linear-gradient(left, rgb(254, 214, 142) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em; 
  background-position: 100% .5em;
  transition: 3s;
  border-radius: 50px;
}
.c-marker.is-active{
  background-position: 0% .5em;
}

/*============
loading
==============*/
/*
.loadingyellowBird{
  width: 10%;
  margin-right: 20px;
}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s 2s ease;
  background-color: var(--primary--backcolor);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  font-weight: bold;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
	font-size: 2.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 5px;
	color:var(--primary-yellow);
}


.loading span {
  animation-name: bounce;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.loading span:nth-child(2) {
  animation-delay: .1s;	
}
.loading span:nth-child(3) {
  animation-delay: .2s;
}
.loading span:nth-child(4) {
  animation-delay: .3s;	
}
.loading span:nth-child(5) {
  animation-delay: .4s;
  color:var(--primary-maingreen);
}
.loading span:nth-child(6) {
  animation-delay: .5s;	
}
.loading span:nth-child(7) {
  animation-delay: .6s;
  color: var(--primary-pink);
}

@keyframes bounce {
  0% {
    transform: translateY(0px)
  }
  40% {
    transform: translateY(-30px);
  }
  80%,
  100% {
    transform: translateY(0px);
  }
}

.loaded{
  opacity: 0;
  visibility: hidden;
}

.remove-scrolling{
  height: 100%;
  overflow: hidden;
}

/*Loading PC*/
/*
@media screen and (min-width: 769px) {
.loadingyellowBird{
  width: 3%;
  height: auto;
  margin-right: 20px;
}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s 2s ease;
  background-color: var(--primary--backcolor);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  font-weight: bold;
  text-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
	font-size: 3rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 10px;
	color:var(--primary-yellow);
}
}
*/