@charset "utf-8";
/* CSS Document */
/*--▼サイト全体---------*/
* {
  font-size: 15px; /*sp*/
}
.inner {
  margin-left: 25px;
  margin-right: 25px;
}
.flex {
  display: flex;
}
.flex.flexRe {
  flex-direction: row-reverse;
}
p, h5, h6 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05rem;
}
h2 {
  font-family: gill-sans-nova-condensed, sans-serif;
  font-weight: 900;
  font-size: 35px;
  color: #4D4743;
  text-align: center;
  line-height: 1;
}
h2 span {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 800;
  font-size: 15px;
}
h3 {
  text-align: center;
  font-weight: 800;
  color: #4D4743;
  font-size: 20px;
  margin-bottom: 40px;
}
h4 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 150%;
}
/*単語途中で改行させない*/
.no-wrap{
display: inline-block;
}
@media screen and (min-width: 760px) {
  
.inner {
  margin-left: 50px;
  margin-right: 50px;
}
  p {
font-size: 16px;
  }
  h2 {
    font-size: 60px;
    line-height: 0.6;
    margin-bottom: 2%;
  }
  h2 span {
    	font-size:clamp(16px, 2.3vw, 20px);
  }
h3 {
font-size: 25px;
  }
}
@media screen and (min-width: 960px) {
    h2 {
    font-size: 80px;
    line-height: 0.4;
    margin-bottom: 2%;
  }
  h2 span {
    	font-size:clamp(16px, 2.3vw, 20px);
  }
}
  
/*nav要素 ハンバーガーアイコン*/
.openbtn {
  position: fixed;
  top: 20px;
  right: 25px;
  background-color: #fff27b;
  cursor: pointer;
  width: 50px;
  height: 46px;
  border-radius: 50% 50% 50% 50% / 25px 25px 25px 25px;
  z-index: 99;
}
.openbtn.active {
  background-color: rgba(255, 242, 123, 0);
}
.openbtn .openbtn-area {
  transition: all .6s;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 10px;
  background: #4d4743;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active .openbtn-area {
  transform: rotate(360deg);
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*nav要素*/
/*menu開いたときに背景スクロールさせない*/
body.fixed {
　width: 100%;
　height: 100%;
　position: fixed;
  overflow-y: hidden;
}
#g-nav {
  position: fixed;
  z-index: 98;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #f2f6d3;
  transition: all 0.6s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 25px;
  padding-left: 25px;
  padding-bottom: 5vh;
}
#g-nav.panelactive {
  right: 0;
}
/*gnav上のlogo*/
.gnavLogo {
  margin-top: 5vh;
  margin-bottom: 5vh;
  width: 70%;
  max-width: 270px;
  margin-right: auto;
  margin-left: auto;
}
.gnavLogo img {
  width: 100%;
}
#g-nav .contentsMenu {
  height: 55vh;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
}
#g-nav .gnav_menu {
  list-style: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
}
/*gnav border*/
.GnavBorder {
  border-bottom: 1px solid #4D4743;
}
/* gnav icon */
.gnav_menu {
  display: flex;
  align-items: center;
}
.gnav_menu img {
  width: 50px;
  height: auto;
  margin-right: 25px;
}
#g-nav li a {
  color: #4d4743;
}
.gnav_text p:nth-of-type(1) {
  text-align: left;
  font-size: 25px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: bold;
}
.gnav_text p:nth-of-type(2) {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.gnav_ticket {
  background-color: #2fa42f;
  border-radius: 10px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 5%;
  margin-bottom: 5%;
  max-width: 600px;
}
.gnav_ticket a {
  display: block;
  color: #fff;
  font-size: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
/*--▼gnav-hover--*/
#g-nav li a:hover {
  color: #2fa42f;
}
.gnav_ticket a:hover {
  background-color: #188239;
  border-radius: 10px;
}
/*--▼gnav-PC-----------------*/
@media screen and (min-width: 760px) {
  
  #g-nav{
    padding: 0;
    height: auto;
  }
  #g-nav > div {
    margin: 50vh auto 0;
    transform: translateY(-50%);
    /*text-align: center;*/
  }
  #g-nav .contentsMenu {
    width: 600px;
    flex-flow: row;
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gnavLogo{
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 60px;
  }
  .GnavBorder {
    display: none;
  }
  .gnav_menu img {
    width: 60px;
    height: auto;
    margin-right: 20px;
  }
  #g-nav .gnav_menu {
    padding-left: 0;
  }
  .gnav_text p:nth-of-type(1) {
    font-size: 30px;
  }
  .gnav_text p:nth-of-type(2) {
    font-size: 16px;
  }
  .contentsMenu li {
    width: 300px;
  }
  .contentsMenu li:nth-child(3) .gnav_menu, .contentsMenu li:nth-child(7) .gnav_menu {
    justify-content: flex-end;
  }
  .contentsMenu li:nth-child(1), .contentsMenu li:nth-child(3) {
    margin-bottom: 55px;
  }
  .gnav_ticket{
  margin-top: 55px;
  margin-bottom: 40px;
  }
  .gnav_ticket a{
  font-size: 20px;
  }
}

/*--▼Pagetop--*/
#page-top a {
  font-family: futura-pt-bold, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9d7344;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #655037;
}
#page-top {
  position: fixed;
  right: 25px;
  bottom: 40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*▼footer前*/
.footerBefore {
  height: 25vh;
  max-height: 356px;
  background-image: url("../img/svg/footerBefore_fence.svg"), url("../img/footer_beforeBg.jpg");
  background-position: center bottom, center top;
  background-size: 200px, cover;
  background-repeat: repeat-x, no-repeat;
}
@media screen and (min-width: 760px) {
  .footerBefore {
  height: 45vh;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*footer要素*/
footer {
  background-image: url("../img/footerBg.jpg");
  background-repeat: repeat;
  background-size: cover;
  background-color: #2FA42F;
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
  padding-right: 50px;
  padding-left: 50px;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
}
/*footerLogo*/
.footerLogo svg {
  width: 105px;
  height: auto;
  fill: #fff;
  stroke: #fff;
}
.footerGnav ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footerGnav li {
  display: inline-block;
  font-family: futura-pt-bold, sans-serif;
  font-weight: bold;
  text-align: left;
  font-size: 25px;
}
.footerGnav {
  justify-content: center;
  gap: 10%;
  margin-bottom: 42px;
}
.companys p {
  font-size: 20px;
}
.organizer img {
  width: 120px;
}
.sponsorIcon01 {
  margin-bottom: 40px;
}
.sponsorIcon01, .sponsorIcon02 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 558px;
  margin-right: auto;
  margin-left: auto;
}
.sponsorIcons p {
  width: 20%;
}
.sponsorIcons img {
  width: 100%;
  height: auto;
}
footer small {
  font-size: 12px;
}
.companys > div:nth-child(2) {
  margin-top: 30px;
  margin-bottom: 50px;
}
/*--▼footer-hover-*/
.footerGnav li a:hover {
  color: #fff27b;
}
.footerLogo svg:hover {
  fill: #fff27b;
  stroke: #fff27b;
}
/*--▼footer-PC-*/
@media screen and (min-width: 760px) {
  footer {
    padding-top: 84px;
  }
  footer a{
  font-size: 32px;
  }
  .footerWrap {
    margin-right: auto;
    margin-left: auto;
    max-width: 1100px;
    display: flex;
    /*カンプから変更*/
    margin-bottom: 70px;
    gap: 9%;
  }
  .footerLogo svg{
  height: 100%;
  width: auto;
  }
  .footerGnav {
    /*カンプから変更*/
    flex-basis: 45%;
      height: 300px;
  }
  .companys {
    /*カンプから変更*/
    flex-basis: 46%;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*▼SNSアイコン*/
.gnav_snsIcons, .footerSnsIcons {
  justify-content: space-between;
  width: 210px;
  margin-right: auto;
  margin-left: auto;
}
.footerSnsIcons {
  margin-bottom: 65px;
}
.footerSnsIcons li, .gnav_snsIcons li{
  font-size: 30px;
  width: 30px!important;
}
.snsIcon{
  font-size: 30px;
  font-weight: 100;
}
.icon_mail a i{
font-size: 30px;
}
/* sns hover */
.gnav_snsIcons .icon_youtube a:hover {
  color: #e84f65 !important;
}
.gnav_snsIcons .icon_instagram a:hover {
  color: #D56AC1 !important;
}
.gnav_snsIcons .icon_twitter a:hover {
  color: #42A9DC !important;
}
.gnav_snsIcons .icon_facebook a:hover {
  color: #536AD8 !important;
}
.gnav_snsIcons .icon_mail a:hover i{
  color: #2FA42F !important;
}
.footerSnsIcons .icon_youtube a:hover {
  color: #FDC3C4;
}
.footerSnsIcons .icon_instagram a:hover {
  color: #E4BAEF;
}
.footerSnsIcons .icon_twitter a:hover {
  color: #ACF0FF;
}
.footerSnsIcons .icon_facebook a:hover {
  color: #9DB6F1;
}
.footerSnsIcons .icon_mail a:hover i{
  color: #D4F49E;
}
/*--▼SNS-PC--*/
@media screen and (min-width: 760px) {
  .gnav_snsIcons, .footerSnsIcons {
    width: 320px;
  }
  .footerSnsIcons li, .gnav_snsIcons li {
    width: 40px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*▼パンくず*/
#breadcrumb{
margin-top: 30px;
margin-bottom: 40px;
}
#breadcrumb ol {
  list-style-type: none;
  padding: 0;
}
#breadcrumb ol li {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: inline;
}
#breadcrumb ol li a {
  color: #4D4743;
}
#breadcrumb li:after {
  content: '/';
  padding: 0 1em;
}
#breadcrumb li:last-child:after {
  content: '';
}
#breadcrumb a:hover{
color: #2FA42F;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*▼ロード画面*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background:#2FA42F;
  text-align:center;
  color:#fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width:260px;
}
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}