@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
  padding-top: 60px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #231815;
}
body * {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #231815;
  cursor: pointer;
  transition: all 0.4s ease;
}
a:visited,
a img,
a:before,
a:after {
  color: #231815;
  text-decoration: none;
  transition: all 0.4s ease;
}
a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

.alC {
  text-align: center;
}
.alR {
  text-align: right;
}
.ilB {
  display: inline-block;
}

.pc,
.pcImg {
  display: none;
}

.wrapper {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrapperL {
  max-width: 1632px;
  margin: 0 auto;
  padding: 0 16px;
}

h1.mv img{
  width: 100%;
}

/* gHeader */
.gHeader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 1000;
}

.gHeader .logo {
  width: 196px;
  margin-right: auto;
}

.gHeader .ticketBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 92px;
  height: 100%;
  padding: 0 21px;
  line-height: 1.5;
  background-color: #E60012;
  text-align: center;
  font-size: 12px;
  text-shadow: 2px 2px 0 rgba(0,0,0,.24);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 374px) {
  .gHeader .ticketBtn {
    font-size: 11px;
  }
}
.gHeader .ticketBtn::before,
.gHeader .ticketBtn::after {
  content: '';
  display: block;
  width: 21px;
  height: 100%;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
}
.gHeader .ticketBtn::before {
  left: -12px;
  background-color: #fff;
}
.gHeader .ticketBtn::after {
  right: -12px;
  background-color: #231815;
}
.gHeader .ticketBtn:hover {
  opacity: 1;
  background-color: #FE1D2E;
}

.gHeader .gNavToggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 100%;
  background-color: #231815;
  cursor: pointer;
}
.gHeader .gNavToggle:before,
.gHeader .gNavToggle:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
  background-color: #fff;
}
.gHeader .gNavToggle:before {
  box-shadow: #fff 0 -6px 0;
}
.gHeader .gNavToggle:after {
  box-shadow: #fff 0 6px 0;
}
.gHeader .gNavToggle.close:before {
  box-shadow: none;
  transform: rotate(45deg);
}
.gHeader .gNavToggle.close:after {
  box-shadow: none;
  transform: rotate(-45deg);
}

/* gNav */
.gNav {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 16px 16px;
  overflow-y: auto;
  background-color: #fff;
}
.gNav .mainNav li a {
  display: block;
  position: relative;
  padding: 1em 16px;
  font-size: 1.25em;
  font-weight: 900;
}
.gNav .mainNav li a:hover {
  color: #E60012;
  opacity: 1;
}
.gNav .mainNav li a.inactive {
  pointer-events: none;
  opacity: 0.3;
}

.gNav .snsNav {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-top: 1em;
  padding: 0 14px;
  background-color: #FBA497;
}
.gNav .snsNav::before,
.gNav .snsNav::after {
  content: '';
  display: block;
  width: 21px;
  height: 40px;
  position: absolute;
  top: 0;
  background-color: #fff;
  transform: skewX(-16deg);
}
.gNav .snsNav::before {left: -12px;}
.gNav .snsNav::after {right: -12px;}
.gNav .snsNav li {
  position: relative;
  flex: 1;
}
.gNav .snsNav li::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  position: absolute;
  top: 0;
  right: -6px;
  background-color: #fff;
  transform: skewX(-16deg);
}
.gNav .snsNav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
  height: 40px;
}


/* gFooter */
.gFooter {
  padding: 0 16px;
  background-color: #231815;
  color: #fff;
}

.gFooter .fInfo h2 {
  font-size: 1.25em;
  font-weight: 700;
}
.gFooter .fInfo p:not(.logo) {
  margin-top: 1em;
  line-height: 1.5;
}
.gFooter .fInfo .contactBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 320px;
  height: 64px;
  margin: .8em auto 1.2em 0;
  border: 1px solid #fff;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
}
.gFooter .fInfo .contactBtn::before,
.gFooter .fInfo .contactBtn::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  background-color: #231815;
  transform: rotate(45deg);
  z-index: 1;
}
.gFooter .fInfo .contactBtn::before {
  top: -12px;
  left: -12px;
  border-right: 1px solid #fff;
}
.gFooter .fInfo .contactBtn::after {
  bottom: -12px;
  right: -12px;
  border-left: 1px solid #fff;
}
.gFooter .fInfo .contactBtn:hover {
  background-color: #fff;
  color: #231815;
  opacity: 1;
}
.gFooter .fInfo .snsNav {
  display: flex;
  column-gap: 16px;
  align-items: center;
}

.gFooter .mapBox {
  overflow: hidden;
  border-top-left-radius: 60px;
  position: relative;
  margin: 40px -16px 0;
  height: 232px;
}
.gFooter .mapBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gFooter .copyBox {
  margin: 0 -16px;
  padding: 52.8% 1em 1em;
  background: url(../images/footer-ph.jpg) 72% center /cover no-repeat;
}
.gFooter .copyBox .copy {
  text-align: center;
  font-size: .75em;
}


/* mainContents */
.contBox {
  padding: 40px 0 80px;
}
.contBox h2 {
  margin-bottom: 16px;
  line-height: 0;
  text-align: center;
}
.contBox a {
  text-decoration: underline;
}

h1 img {
  width: 100%;
}

@keyframes marquee {
  0%   { translate: 0; }
  100% { translate: calc(-100% - 1rem); }
}

.ttlAnim{
  display: flex;
  white-space: nowrap;
  gap: .5em;
  text-align: center;
  z-index: 0;
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  bottom: -16px;
  overflow: visible;
  font-size: 5em;
  font-family: Georgia;
  color: #fff;
  opacity: .23;
}
.ttlAnim span{
  animation: marquee 20s linear infinite;
  line-height: 1;
  font-weight: bold;
  font-style: italic;
}


/* about */
.aboutBox.contBox{
  position: relative;
  padding: 0;
  overflow: hidden;
}
.aboutBox.contBox:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 209px;
  background-image: url("../images/about-bg_pat1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.aboutBox.contBox:after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 292px;
  background-image: url("../images/about-bg_pat3.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.aboutBg{
  position: relative;
  background-image: url("../images/about-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.aboutBg:before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 250px;
  height: 292px;
  background-image: url("../images/about-bg_pat2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.aboutInner{
  position: relative;
  z-index: 3;
  padding: 40px 0 80px;
}
.aboutBox .wrapper{
  max-width: none;
  padding: 0;
}
.aboutBox .wrapper + .wrapper{
  margin-top: 32px;
}
.aboutBox .wrapper .inner{
  max-width: 1232px;
  margin: 0 auto;
  padding: 0;
}
.aboutBox .wrapper:last-of-type{
  margin-top: 66px;
}
.aboutBox figure img{
  width: 100%;
}
.aboutBox .txtBox{
  position: relative;
  background: rgb(255, 255, 255,0.94);
  width: calc(100% - 40px);
  padding: 16px;
  margin-top: -24px;
  margin-left: auto;
}
.aboutBox .wrapper.right figure{
  text-align: right;
}
.aboutBox .wrapper.right .txtBox{
  margin-left: 0;
  margin-right: auto;
  padding-bottom: 50px;
}
.aboutBox .wrapper:last-of-type .txtBox{
  padding-bottom: 126px;
}
.aboutBox .txtBox:before{
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url("../images/bg-l_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
.aboutBg .txtBox:after{
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url("../images/bg-r_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
@media screen and (max-width: 767px){
  .aboutBox .txtBox:before,
  .aboutBox .wrapper:last-of-type .txtBox:before{
    background-position: right -.5px bottom;
  }
  .aboutBg .txtBox:after{
    background-position: left -.5px bottom;
  }
}
.aboutBox .wrapper:last-of-type .txtBox:before {
  background-image: url("../images/bg-l-02_sp.svg");
}
.aboutBox h3{
  position: relative;
  font-size: 1.375em;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.75;
  text-shadow: 4px 4px 0px rgba(255, 255, 255);
}
.aboutBox h3 span{
  position: relative;
  display: inline-block;
  padding: 0 0.25em;
  font-weight: 900;
  z-index: 1;
}
.aboutBox h3 span:before{
  position: absolute;
  left: 0.25em;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 60%, #f2cf39 0%);
  transform: skewX(-20deg);
  z-index: -1;
}
.aboutBox .txtBox p{
  line-height: 2;
}
.aboutBox .linkBox{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  position: absolute;
  bottom: -34px;
  right: -40px;
  padding: 0 30px;
  width: calc(100% + 40px);
  z-index: 2;
}
.aboutBox  .wrapper:last-of-type .linkBox{
  left: -40px;
  right: auto;
}
.aboutBox .linkBox a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 68px;
  color: #fff;
  background-color: #1AB49F;
  box-shadow: 4px 4px 4px rgba(255,255,255,.32) inset, 4px 4px 8px rgba(0,0,0,.40);
  text-shadow: 4px 4px 0 rgba(0,0,0,.24);
  text-decoration: none;
  transform: skewX(-20deg);
}
.aboutBox .linkBox a > span{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.25;
  background: url(../images/ico-arrow.png) bottom right 24px / 48px auto no-repeat;
  transform: skewX(20deg);
}
.aboutBox .linkBox a span span{
  width: 100%;
  display: block;
  margin-top: -1em;
  font-size: 0.583em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 360px){
  .aboutBox h3 span{
    letter-spacing: -.08em;
  }
}

/* event */
.eventBox.contBox{
  position: relative;
  padding: 0;
  overflow: hidden;
}
.eventBox.contBox:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 209px;
  background-image: url("../images/event-bg_pat1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.eventBox.contBox:after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 292px;
  background-image: url("../images/event-bg_pat3.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.eventBg{
  position: relative;
  background-image: url("../images/event-bg.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.eventBg:before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 250px;
  height: 292px;
  background-image: url("../images/event-bg_pat2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.eventInner{
  position: relative;
  z-index: 3;
  padding: 40px 0 80px;
}
.eventBox h2{
  padding: 0 16px;
}
.eventBox .wrapper{
  max-width: none;
  padding: 0;
}
.eventBox .wrapper + .wrapper{
  margin-top: 32px;
}
.eventBox .txtBox{
  position: relative;
  background: rgb(255, 255, 255, 0.94);
  width: calc(100% - 40px);
  padding: 16px;
  margin-top: -24px;
  margin-left: auto;
}
.eventBox .txtBox:before{
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url("../images/bg-l_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
.eventBox .txtBox:after{
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url("../images/bg-r_sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
@media screen and (max-width: 767px){
  .eventBox .txtBox:before{
    background-position: right -.5px bottom;
  }
  .eventBox .txtBox:after{
    background-position: left -.5px bottom;
  }
}
.eventBox h3{
  position: relative;
  font-size: 1.375em;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.75;
  text-shadow: 4px 4px 0px rgba(255, 255, 255);
}
.eventBox h3 span{
  position: relative;
  display: inline-block;
  padding: 0 0.25em;
  font-weight: 900;
  z-index: 1;
}
.eventBox h3 span:before{
  position: absolute;
  left: 0.25em;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 60%, #92FB2A 0%);
  transform: skewX(-20deg);
  z-index: -1;
}
.eventBox .txtBox p {
  line-height: 2;
}

.eventBox h4{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  width: calc(100% + 20px);
  height: 100px;
  background-image: url("../images/event-copy.jpg");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100px;
  transform:rotate(-4deg); 
  margin-top: 40px;
  box-shadow: 4px 4px 8px rgba(0,0,0,.16);
}

.eventBox h4 span{
  color: #fff;
  font-size: 1.5em;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.71);
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}


/* foodBox */
.foodBox{
  position: relative;
  background: #F5F5F5;
}
.foodBox.contBox:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background-image: url("../images/food-bg_pat1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.foodBox.contBox:after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 292px;
  background-image: url("../images/food-bg_pat2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.foodBox .wrapper{
  position: relative;
  z-index: 3;
  padding: 0;
}
.foodBox h2{
  padding: 0 16px;
}
.foodsec + .foodsec{
  margin-top: 32px;
}
.foodsec .txtBox{
  padding: 16px 16px 0;
}
.foodsec h3{
  position: relative;
  padding-left: 24px;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.458;
}
.foodsec h3:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 24px;
  background-image: url("../images/tit-pat.png");
  background-size: 16px auto;
  background-position: left top;
  background-repeat: repeat-y;
}
.foodsec p{
  margin-top: 1em;
  line-height: 2;
}


/* camp */
.campBox{
  position: relative;
}
.campBox.contBox:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 208px;
  background-image: url("../images/fsf-bg_pat1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.campBox > div{
  position: relative;
  z-index: 3;
}
.campBox h2{
  padding: 0 16px;
}
.campBox .fmfsec{
  position: relative;
}
.campBox .campsec{
  position: relative;
  margin-top: 32px;
}
.campBox .fmfsec figure:first-child,
.campBox .campsec figure:nth-child(2){
  text-align: right;
}
.campBox .fmfsec figure:nth-child(2),
.campBox .campsec figure:nth-child(2){
  margin-top: -32px;
}
.campBox figure img{
  width: 91.47%;
  vertical-align: top;
}
.campBox .fmfsec .txtBox,
.campBox .campsec .txtBox{
  width: 100%;
  margin: -16px auto 0;
  background: #fff;
}
.campBox .fmfsec .txtBox,
.campBox .campsec .txtBox{
  position: relative;
  padding: 16px 0 0;
}
.campBox h3{
  position: relative;
  padding-left: 24px;
  font-size: 1.5em;
  line-height: 1.458;
  font-weight: bold;
}
.campBox h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 100%;
  background-image: url(../images/tit-pat.png);
  background-size: 16px auto;
  background-position: left top;
  background-repeat: repeat-y;
}
.campBox p{
  margin-top: 1em;
  line-height: 2;
}
.campBox a.btn{
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 32px);
  height: 68px;
  color: #fff;
  background-color: #1AB49F;
  box-shadow: 4px 4px 4px rgba(255,255,255,.32) inset, 4px 4px 8px rgba(0,0,0,.40);
  text-shadow: 4px 4px 0 rgba(0,0,0,.24);
  text-decoration: none;
  transform: skewX(-20deg);
}
.campBox a.btn span{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  font-weight: 900;
  font-size: 1.125em;
  line-height: 1.25;
  background: url(../images/ico-arrow.png) bottom right 10px / 48px auto no-repeat;
  transform: skewX(20deg);
}
@media screen and (max-width: 374px) {
  .campBox a.btn span{
    font-size: 1em;
  }
}

/* snsBox */
.snsBox {
  position: relative;
  padding: 80px 0;
  border-top: 8px solid #F7F7F7;
}
.snsBox::before,
.snsBox::after {
  content: '';
  display: block;
  width: 311px;
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: center / 100% auto no-repeat;
}
.snsBox::before {
  top: 20px;
  background-image: url(../images/sns-bg1_sp.png);
}
.snsBox::after {
  bottom: 20px;
  background-image: url(../images/sns-bg2_sp.png);
}

.snsBox .xBox {
  margin-bottom: 24px;
  padding: 4px;
  background-color: #231815;
}
.snsBox .xBox h2 {
  line-height: 0;
  padding: 14px 0 18px;
  text-align: center;
}
.snsBox .xBox .xTimeline {
  padding: 2px;
  background-color: #fff;
}

.snsBox .snsLinkList li:not(:last-child) {
  margin-bottom: 16px;
}
.snsBox .snsLinkList li a {
  display: flex;
  justify-content: center;
  width: calc(100% - 32px);
  height: 80px;
  margin: 0 auto;
  box-shadow: 4px 4px 4px rgba(255,255,255,.32) inset, 4px 4px 8px rgba(0,0,0,.40);
  font-size: 2em;
  color: #fff;
  text-shadow: 4px 4px 0 rgba(0,0,0,.24);
  transform: skewX(-20deg);
}
.snsBox .snsLinkList li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  font-weight: 700;
  background: url(../images/ico-arrow.png) bottom right / 40px auto no-repeat;
  transform: skewX(20deg);
}
.snsBox .snsLinkList li a span img {margin-right: 12px;}
.snsBox .snsLinkList li a.ig {
  background: linear-gradient(90deg, #6A1EF5 0%, #CE2BCC 40%, #E8562F 60%, #F7D447 100%);
}
.snsBox .snsLinkList li a.fb {
  background-color: #0766ff;
}
.snsBox .snsLinkList li a.yt {
  background-color: #ff0000;
}


/* faqBox */
.faqBox {
  background-color: #F5F5F5;
}

.faqBox .faqList dt {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  padding: .5em 40px .5em calc(45px + .5em);
  background-color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  cursor: pointer;
}
.faqBox .faqList dd + dt {
  margin-top: 1em;
}
.faqBox .faqList dt .toggle {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  right: 1em;
}
.faqBox .faqList dt .toggle:before,
.faqBox .faqList dt .toggle:after {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 8px);
  background-color: #d4000f;
}
.faqBox .faqList dt .toggle:after {
  transform: rotate(90deg);
}
.faqBox .faqList dt.close .toggle:after {
  display: none;
}
.faqBox .faqList dd {
  position: relative;
  overflow: hidden;
  line-height: 1.8125;
  padding: .8em .8em .8em calc(45px + .5em);
  border-top: 2px solid #F5F5F5;
  background-color: #fff;
}
.faqBox .faqList dt .icoQ,
.faqBox .faqList dd .icoA {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #E60012;
  text-shadow: 2px 2px 0 rgba(0,0,0,.24);
}
.faqBox .faqList dt .icoQ {
  background-color: #E60012;
  color: #fff;
}
.faqBox .faqList dt .icoQ::before,
.faqBox .faqList dt .icoQ::after,
.faqBox .faqList dt::after,
.faqBox .faqList dd::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
}
.faqBox .faqList dt .icoQ::before {
  top: 0;
  left: 0;
  background-color: #f5f5f5;
  transform: translate(-50%, -50%) rotate(45deg);
}
.faqBox .faqList dt .icoQ::after {
  bottom: 0;
  right: 0;
  background-color: #fff;
  transform: translate(50%, 50%) rotate(45deg);
}
.faqBox .faqList dt::after,
.faqBox .faqList dd::after {
  bottom: 0;
  right: 0;
  background-color: #f5f5f5;
  transform: translate(50%, 50%) rotate(45deg);
}
.faqBox .faqList dt.close::after {display: none;}



@media screen and (min-width: 768px) {
  body {
    min-width: 1264px;
    padding-top: 120px;
    font-size: 1.25em;
  }

  .pc {
    display: block;
  }
  .pcImg {
    display: inline;
  }
  .sp,
  .spImg {
    display: none;
  }

  /* gHeader */
  .gHeader {
    min-width: 1264px;
    justify-content: flex-end;
    align-items: normal;
    height: 120px;
  }

  .gHeader .logo {
    width: 300px;
    align-self: center;
  }

  .gHeader .ticketBtn {
    flex-direction: column;
    width: 203px;
    padding: 0 0 0 35px;
    font-size: 1em;
  }
  .gHeader .ticketBtn::before {
    width: 43px;
    left: -24px;
    background-color: #FBA497;
    transition: none;
  }
  .gHeader .ticketBtn::after {display: none;}

  .gHeader .gNavToggle {
    display: none;
  }

  /* gNav */
  .gNav {
    display: flex;
    align-items: normal;
    position: relative;
    overflow: hidden;
    top: auto;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 0;
    overflow-y: hidden;
  }
  .gNav::before,
  .gNav::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .gNav::before {
    background-color: #E60012;
  }
  .gNav::after {
    width: 10px;
    left: -5px;
    background-color: #Fff;
    transform: skewX(-32deg);
  }

  .gNav .mainNav {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    column-gap: 0;
    margin: 0;
    padding-right: 37px;
  }
  .gNav .mainNav::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    right: -24px;
    height: 100%;
    background-color: #FBA497;
    transform: skewX(-16deg);
  }
  .gNav .mainNav li {
    display: flex;
    align-items: stretch;
  }
  .gNav .mainNav li a {
    display: flex;
    align-items: center;
    padding: 0 12px 6px;
    font-size: 20px;
  }

  .gNav .snsNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 96px;
    margin: 0 0 -6px;
    padding: 20px 0 20px;
  }
  .gNav .snsNav::before,
  .gNav .snsNav::after {display: none;}
  .gNav .snsNav li {
    width: 50%;
    flex: auto;
  }
  .gNav .snsNav li::after {display: none;}
  .gNav .snsNav li a {
    padding-left: 0;
    height: 100%;
  }

  .gHeader.scroll {height: 64px;}
  .gHeader.scroll .logo {height:100%;}
  .gHeader.scroll .logo img {height:100%; width:auto;}
  .gHeader.scroll .gNav .mainNav::after,
  .gHeader.scroll .gNav .snsNav {display: none;}
  .gHeader.scroll .ticketBtn::before {background-color: #fff;}
  .gHeader.scroll .ticketBtn {position: relative;}
  .gHeader.scroll .ticketBtn::after {
    content: '';
    display: block;
    width: 14px;
    height: 6px;
    background-color: #E60012;
    position: absolute;
    bottom: 0;
    left: -2px;
    top: auto;
  }
  .gHeader.scroll .ticketBtn img {display: none;}


  /* gFooter */
  .gFooter {
    padding: 0;
  }

  .gFooter .fInfoWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .gFooter .fInfo {
    width: 50%;
    max-width: 600px;
  }
  .gFooter .fInfo h2 {
    font-size: 1em;
  }
  .gFooter .fInfo .contactBtn {
    font-size: 1em;
  }
  
  .gFooter .mapBox {
    border-top-left-radius: 120px;
    margin: 0;
    width: 50%;
    height: 533px;
  }
  
  .gFooter .copyBox {
    margin: 0;
    padding: 26.927% 1em 1.818em;
    background-position: center;
  }

  /* mainContents */
  .contBox {
    padding-bottom: 160px;
  }
  .contBox h2 {
    margin-bottom: 32px;
  }

  /* snsBox */
  .snsBox {
    padding: 184px 0;
  }
  .snsBox::before,
  .snsBox::after {
    width: 880px;
    height: 80px;
  }
  .snsBox::before {
    top: 80px;
    background-image: url(../images/sns-bg1_pc.png);
  }
  .snsBox::after {
    bottom: 80px;
    background-image: url(../images/sns-bg2_pc.png);
  }
  
  .snsBox .wrapper {
    display: flex;
    align-items: center;
    column-gap: 80px;
  }
  .snsBox .xBox {
    max-width: 560px;
    margin-bottom: 0;
  }
  .snsBox .xBox .xTimeline iframe {
    height: 372px!important;
  }
  
  .snsBox .snsLinkList {
    width: 50%;
  }
  .snsBox .snsLinkList li:not(:last-child) {
    margin-bottom: 40px;
  }
  .snsBox .snsLinkList li a {
    height: 117px;
    font-size: 1.8181em;
  }
  .snsBox .snsLinkList li a span {
    background-size: 80px auto;
  }
  .snsBox .snsLinkList li a span img {margin-right: 16px;}
  
  
  /* faqBox */
  .faqBox .faqList dt {
    padding: .75em 80px .75em calc(95px + .75em);
    font-size: 1.45em;
  }
  .faqBox .faqList dd + dt {
    margin-top: 1.09em;
  }
  .faqBox .faqList dt .toggle {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
  }
  .faqBox .faqList dt .toggle:before,
  .faqBox .faqList dt .toggle:after {
    width: 32px;
    height: 6px;
    top: calc(50% - 3px);
    left: calc(50% - 16px);
  }
  .faqBox .faqList dd {
    padding: .75em 1.613em .75em calc(95px + .75em);
  }
  .faqBox .faqList dt .icoQ,
  .faqBox .faqList dd .icoA {
    width: 95px;
    font-size: 48px;
    text-shadow: 4px 4px 0 rgba(0,0,0,.24);
  }
  .faqBox .faqList dt .icoQ::before,
  .faqBox .faqList dt .icoQ::after,
  .faqBox .faqList dt::after,
  .faqBox .faqList dd::after {
    width: 30px;
    height: 30px;
  }

  .ttlAnim{
    display: flex;
    white-space: nowrap;
    gap: .5em;
    text-align: center;
    z-index: 0;
    position: absolute;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    bottom: -40px;
    overflow: visible;
    font-size: 10.909em;
    font-family: Georgia;
    color: #fff;
    opacity: .23;
  }
  .ttlAnim span{
    animation: marquee 20s linear infinite;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
  }

  /* about */
  .aboutBox.contBox:before{
    width: 720px;
    height: 600px;
  }
  .aboutBox.contBox:after{
    width: 720px;
    height: 840px;
  }
  .aboutBg:before{
    width: 720px;
    height: 840px;
  }
  .aboutInner{
    padding: 40px 0 160px;
  }
  .aboutBox .wrapper + .wrapper{
    margin-top: 160px;
  }
  .aboutBox .wrapper .inner{
    padding: 0 16px;
  }
  .aboutBox figure img{
    width: 81.25%;
  }
  .aboutBox .txtBox{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
    min-height: 540px;
    margin-top: -400px;
    padding: 0 !important;
  }
  .aboutBox .wrapper:nth-of-type(-n+4) .txtBox{
    max-width: 720px;
    min-height: auto;
    margin-top: -160px;
    padding: 40px 0!important;
  }
  .aboutBox .wrapper:last-of-type .txtBox{
    min-height: 670px;
  }
  .aboutBox .txtBox:before{
    left: -33.33%;
    width: 33.33%;
    background-image: url("../images/bg-l.svg");
  }
  .aboutBg .txtBox:after{
    right: -33.33%;
    width: 33.33%;
    background-image: url("../images/bg-r.svg");
  }
  .aboutBox .wrapper.right .txtBox:before,
  .aboutBox .wrapper.right .txtBox:after{
    transform: scaleY(-1);
  }
  .aboutBox .wrapper:last-of-type .txtBox:before{
    background-image: url("../images/bg-l-02.svg");
  }
  .aboutBox .wrapper:last-of-type .txtBox:after{
    background-image: url("../images/bg-r-02.svg");
  }
  .aboutBox h3{
    font-size: 2.182em;
    margin-bottom: 0.833em;
  }
  .aboutBox .wrapper.program h3 {
    font-size: 1.9em;
  }
  .aboutBox .txtBox p{
    line-height: 1.81;
  }
  .aboutBox .linkBox{
    flex-wrap: nowrap;
    gap: 36px;
    bottom: -50px;
    right: auto;
    padding: 0;
    width: 100%;
  }
  .aboutBox  .wrapper:last-of-type .linkBox{
    left: -26%;
    width: auto;
  }
  .aboutBox .linkBox a{
    width: 345px;
    height: 80px;
  }
  .aboutBox .linkBox a > span{
    font-size: 1.455em;
    background: url(../images/ico-arrow.png) bottom right 20px / 80px auto no-repeat;
  }
  .aboutBox .linkBox a span span{
    font-size: 0.6em;
  }
  .aboutBox .linkBox a:only-child{
    width: 530px;
    height: 112px;
  }
  .aboutBox .linkBox a:only-child > span{
    font-size: 1.818em;
  }

  /* event */
  .eventBox.contBox:before{
    width: 720px;
    height: 600px;
  }
  .eventBox.contBox:after{
    width: 720px;
    height: 840px;
  }
  .eventBg:before{
    width: 720px;
    height: 840px;
  }
  .eventInner{
    padding: 40px 0 160px;
  }
  .eventBox .wrapper{
    max-width: 1632px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .eventBox .wrapper + .wrapper{
    margin-top: 80px;
  }
  .eventBox .wrapper.box01{
    background-image: url("../images/event-ph1.png");
    background-repeat: no-repeat;
    background-position: top left 16px;
  }
  .eventBox .wrapper.box02{
    background-image: url("../images/event-ph2.png");
    background-repeat: no-repeat;
    background-position: top left 16px;
  }
  .eventBox .wrapper.box03{
    background-image: url("../images/event-ph3.png");
    background-repeat: no-repeat;
    background-position: top left 16px;
  }
  .eventBox .txtBox{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 510px;
    min-height: 540px;
    margin-left: auto;
    margin-right: 200px;
    padding: 0;
  }
  .eventBox .txtBox:before{
    left: -200px;
    width: 200px;
    height: 100%;
    background-image: url("../images/bg-l.svg");
  }
  .eventBox .txtBox:after{
    right: -200px;
    width: 200px;
    height: 100%;
    background-image: url("../images/bg-r.svg");
  }
  .eventBox .wrapper:nth-child(2n) .txtBox {
    margin-left: auto;
    margin-right: 200px;
  }
  .eventBox h3{
    font-size: 2.182em;
    margin-bottom: 0.833em;
  }
  .eventBox .txtBox p {
    line-height: 1.81;
  }
  .eventBox h4{
    height: 200px;
    margin-top: 64px;
    background-size: auto 200px;
  }
  .eventBox h4 span{
    font-size: 2.182em;
  }

  
  /* food */
  .foodBox.contBox:before{
    width: 720px;
    height: 720px;
  }
  .foodBox.contBox:after{
    width: 720px;
    height: 840px;
  }
  .foodBox .wrapper {
    padding: 0 16px;
  }
  .foodBox h2{
    padding: 0;
  }  
  .foodsec + .foodsec{
    margin-top: 120px;
  }
  .foodsec .txtBox{
    padding: 40px 80px 0;
  }
  .foodsec h3{
    padding-left: 32px;
    font-size: 2.182em;
    line-height: 1.458;
  }
  .foodsec h3:before{
    width: 16px;
    height: 40px;
  }
  .foodsec p{
    margin-top: 1em;
    line-height: 1.818;
  }

  /* camp */
  .campBox.contBox:before{
    width: 720px;
    height: 600px;
  }
  .campBox.contBox:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 720px;
    height: 600px;
    background-image: url("../images/fsf-bg_pat2.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
  }
  .campBox h2{
    padding: 0;
  }
  .campBox .campsec{
    margin-top: 120px;
  }
  .campBox .fmfsec figure:nth-child(2),
  .campBox .campsec figure:nth-child(2){
    position: absolute;
    top: max(165px,12.81vw);
    width: 100%;
    left: 0;
  }
  .campBox .campsec figure:nth-child(2){
    left: auto;
    right: 0;
  }
  .campBox figure img{
    width: 62.5%;
  }
  .campBox .fmfsec .txtBox,
  .campBox .campsec .txtBox{
    position: relative;
    width: 600px;
    z-index: 3;
  }
  .campBox .fmfsec .txtBox{
    margin: 0 0 0 auto;
    padding: 48px 0 0 40px;
  }
  .campBox .campsec .txtBox{
    margin: 0 auto 0 0;
    padding: 48px 40px 0 0;
  }
  .campBox h3{
    padding-left: 32px;
    font-size: 2.182em;
  }
  .campBox h3:before {
    width: 16px;
    height: 120px;
  }
  .campBox p{
    margin-top: 1.818em;
    line-height: 1.818;
  }
  .campBox a.btn{
    margin-top: 32px;
    width: 100%;
    height: 80px;
  }
  .campBox a.btn span{
    font-size: 1.455em;
  }
}

@media screen and (min-width: 1420px) {
  body {
    font-size: 1.375em;
  }

  .gHeader .logo {
    width: 392px;
  }

}


@media screen and (min-width: 1520px) {
  .gNav .mainNav li a {
    padding: 0 20px 6px;
  }

}

@media screen and (max-width: 1420px) {
  .eventBox .txtBox,
  .eventBox .wrapper:nth-child(2n) .txtBox {
    margin-right: 0;
  }

}
