@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Murecho:wght@500;700&display=swap");

body {
  padding-top: 48px;
  background-color: #fff;
  color: #000;
  font-family: "Murecho", sans-serif;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: all 0.4s ease;
}
a:visited,
a img,
a:before,
a:after {
  color: #000;
  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: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

/* gHeader */
.gHeader {
  position: fixed;
  top: 0;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding-left: 10px;
  background-color: #fff;
  z-index: 1000;
}

.gHeader .logo {
  width: 160px;
  margin-right: auto;
}

.gHeader .ticketBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 48px;
  line-height: 1.5;
  background-color: #d4000f;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.gHeader .gNavToggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 64px;
  height: 48px;
  background-color: #fff;
  cursor: pointer;
}
.gHeader .gNavToggle:before,
.gHeader .gNavToggle:after {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 16px);
  background-color: #d4000f;
  border-radius: 4px;
}
.gHeader .gNavToggle:before {
  box-shadow: #d4000f 0 -10px 0;
}
.gHeader .gNavToggle:after {
  box-shadow: #d4000f 0 10px 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: 48px;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 20px 20px;
  overflow-y: auto;
  background-color: #fff;
}

.gNav .mainNav {
  margin-bottom: 20px;
}
.gNav .mainNav li a {
  display: block;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #d4000f;
  font-weight: 700;
}
.gNav .mainNav li a:hover {
  color: #d4000f;
  opacity: 1;
}
.gNav .mainNav li a.inactive {
  pointer-events: none;
  opacity: 0.3;
}
.gNav .mainNav li a:after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  border: solid #d4000f;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
}

.gNav .snsNav {
  display: flex;
  justify-content: space-between;
  column-gap: 1px;
}
.gNav .snsNav li {
  flex: 1;
}
.gNav .snsNav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background-color: #fbe5e6;
}

/* gFooter */
.gFooter {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.gFooter .mapBox {
  position: relative;
  width: 100%;
  height: 320px;
}
.gFooter .mapBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gFooter .fInfo {
  padding: 40px 10px;
}
.gFooter .fInfo p {
  line-height: 1.5;
  margin-bottom: 1em;
}
.gFooter .fInfo .name {
  margin: 32px 0 10px;
  font-size: 20px;
}
.gFooter .fInfo .snsNav {
  display: flex;
  column-gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}
.gFooter .fInfo .contactBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  height: 69px;
  margin: 40px auto 48px 0;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 35px;
  font-size: 20px;
  color: #fff;
}
.gFooter .fInfo .contactBtn:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}
.gFooter .fInfo .copy {
  margin-bottom: 0;
  font-size: 12px;
}

h1 {
  margin-bottom: 200px;
}
h1 img {
  width: 100%;
}

/* aboutBox */
.aboutBox {
  margin: 0 0 200px 10px;
}
.aboutBox .txtBox {
  padding: 40px 10px;
  border-radius: 20px 0 0 20px;
  background-color: rgba(0, 0, 0, 0.64);
  color: #fff;
}
.aboutBox .txtBox h2 {
  line-height: 1.5;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
}
.aboutBox .txtBox p {
  line-height: 1.75;
}
.aboutBox .txtBox .catch {
  margin-top: 32px;
}

/* fesBox */
.fesBox {
  margin: 0 0 200px 10px;
}
.fesBox h2 {
  position: relative;
  max-width: 335px;
  margin: 0 auto 32px;
  z-index: 2;
}
.fesBox .contBox {
  position: relative;
  overflow: hidden;
  margin-top: -110px;
  padding: 110px 0 40px;
  background: linear-gradient(
    180deg,
    rgba(222, 154, 31, 0.8827906162464986) 0%,
    rgba(200, 44, 21, 0.88) 100%
  );
  border-radius: 40px 0 0 40px;
  color: #fff;
}
.fesBox .contBox .wrapper {
  position: relative;
  z-index: 2;
}
.fesBox .contBox .copy {
  margin-bottom: 40px;
}

.fesBox .contBox .contList li:not(:last-child) {
  margin-bottom: 40px;
}
.fesBox .contBox .contList li figure img {
  width: 100%;
}
.fesBox .contBox .contList li h3 {
  margin: 16px 0;
}
.fesBox .contBox .contList li p {
  line-height: 1.75;
}
.fesBox .contBox .contList li .moreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 69px;
  border-radius: 35px;
  margin-top: 16px;
  background-color: #000;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.fesBox .contBox .fes_eventBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 83px;
  border-radius: 42px;
  margin-top: 32px;
  background-color: #000;
  font-size: 20px;
  font-weight: 700;
  color: #fff000;
}

.fesBox .contBox .bgPh {
  position: absolute;
  width: 54.794%;
  right: 0;
  background: center / contain no-repeat;
  z-index: 1;
}
.fesBox .contBox .bgPh.ph1 {
  top: 74px;
  height: 51.733vw;
  background-image: url(../images/fes-bg1.png);
  background-position: top right;
}
.fesBox .contBox .bgPh.ph2 {
  top: 26.75%;
  height: 47.466vw;
  right: -22px;
  background-image: url(../images/fes-bg2.png);
  background-position: top left;
  transform: scale(-1, 1);
}
.fesBox .contBox .bgPh.ph3 {
  top: 44.75%;
  height: 38.66vw;
  background-image: url(../images/fes-bg3.png);
  background-position: top right;
}
.fesBox .contBox .bgPh.ph4 {
  bottom: 33.6%;
  height: 38.66vw;
  background-image: url(../images/fes-bg4.png);
  background-position: bottom left;
  transform: scale(-1, 1);
}
.fesBox .contBox .bgPh.ph5 {
  bottom: 11.5%;
  height: 41.33vw;
  background-image: url(../images/fes-bg5.png);
  background-position: bottom right;
}
.fesBox .contBox .bgPh.ph6 {
  bottom: 0;
  height: 40vw;
  background-image: url(../images/fes-bg6.png);
  background-position: bottom left;
  transform: scale(-1, 1);
}

/* s_garage_saleBox */
.s_garage_saleBox {
  margin-bottom: 200px;
  padding: 0 10px;
}
.s_garage_saleBox h2 {
  position: relative;
  max-width: 335px;
  margin: -135px auto 24px;
  z-index: 2;
}
.s_garage_saleBox .contBox {
  position: relative;
  margin-top: -155px;
  padding: 155px 0 40px;
  background: linear-gradient(
    180deg,
    rgba(53, 127, 239, .88) 0%,
    rgba(25, 177, 178, 0.88) 100%
  );
  border-radius: 40px;
  color: #fff;
}
.s_garage_saleBox .contBox .wrapper {
  position: relative;
  z-index: 2;
}
.s_garage_saleBox .contBox h3 {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 40px;
}
.s_garage_saleBox .contBox p {
  line-height: 1.75;
  margin: 16px 0 40px;
}
.s_garage_saleBox .contBox p.catch {
  margin: -8px 0 16px;
  color: #ff0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.s_garage_saleBox .contBox .s_garage_saleBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 83px;
  border-radius: 42px;
  background-color: #ff0;
  font-size: 20px;
  font-weight: 700;
}

/* contentBox */
.contentBox {
  overflow: hidden;
  margin: 0 10px 120px 0;
  padding: 0 0 40px 10px;
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 0 40px 40px 0;
}

.contentBox .contentDet + .contentDet {
  margin-top: 40px;
}
.contentBox .contentDet figure {
  margin-bottom: 16px;
}
.contentBox .contentDet figure img {
  width: 100%;
}
.contentBox .contentDet .txtBox h2 {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
}
.contentBox .contentDet.campBox .txtBox h2 {
  color: #0fce48;
}
.contentBox .contentDet.fmfBox .txtBox h2 {
  color: #d4000f;
}
.contentBox .contentDet .txtBox h2 span {
  display: block;
  margin-top: -4px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.contentBox .contentDet .txtBox h3 {
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 24px;
  font-weight: 700;
}
.contentBox .contentDet .txtBox p {
  margin-right: 10px;
  line-height: 1.75;
}
.contentBox .contentDet .txtBox p.memo {
  margin: 1em 10px 0 1em;
  text-indent: -1em;
  font-size: 14px;
}
.contentBox .contentDet .txtBox p a {
  text-decoration: underline;
  color: #357fef;
}

/* ticketBox */
.ticketBox {
  margin-bottom: 120px;
}
.ticketBox li.ticketList {
  padding: 24px 10px 10px;
  border-radius: 40px;
  color: #fff;
}
.ticketBox li.ticketList.familyPack {
  margin-bottom: 20px;
  background-color: rgba(53,127,239,.88);
}
.ticketBox li.ticketList.familyMax {
  background-color: rgba(255,119,0,.88);
}
.ticketBox li.ticketList h2 {
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
.ticketBox li.ticketList .ticketDet .content ul li {
  position: relative;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 24px;
  font-size: 20px;
}
.ticketBox li.ticketList .ticketDet .content ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}
.ticketBox li.ticketList .ticketDet .content .memo {
  line-height: 1.5;
  margin: 1em 0 40px;
}
.ticketBox li.ticketList .ticketDet .price {
  text-align: center;
}
.ticketBox li.ticketList .ticketDet .price .yen {
  display: inline-block;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
}
.ticketBox li.ticketList .ticketDet .price .yen strong {
  display: block;
  margin-top: -20px;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #FFF000;
}
.ticketBox li.ticketList .ticketDet .price .ticketBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 67px;
  border-radius: 34px;
  margin-top: 16px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.ticketBox li.ticketList.familyPack .ticketDet .price .ticketBtn {color: #357FEF;}
.ticketBox li.ticketList.familyMax .ticketDet .price .ticketBtn {color: #FF871F;}

/* snsBox */
.snsBox {
  margin-bottom: 120px;
}
.snsBox .xBox {
  margin-bottom: 22px;
  padding: 2px;
  background-color: #0f1419;
  border-radius: 14px;
}
.snsBox .xBox h2 {
  padding: 11px 0 12px;
  text-align: center;
}

.snsBox .snsLinkList li:not(:last-child) {
  margin-bottom: 20px;
}
.snsBox .snsLinkList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  width: 100%;
  height: 72px;
  border-radius: 36px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
.snsBox .snsLinkList li a.ig {
  background: linear-gradient(
    90deg,
    rgba(249, 237, 65, 1) 0%,
    rgba(255, 131, 61, 1) 20%,
    rgba(238, 85, 103, 1) 35%,
    rgba(231, 64, 123, 1) 45%,
    rgba(0, 40, 255, 1) 100%
  );
}
.snsBox .snsLinkList li a.fb {
  background-color: #0766ff;
}
.snsBox .snsLinkList li a.yt {
  background-color: #ff0000;
}

/* scheduleBox faqBox */
.scheduleBox{
  padding: 40px 0;
  background-color: #F6F6F6;
  margin-bottom: -1px;
}
.scheduleBox .memo{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 1em;
  text-align: right;
}
.faqBox {
  padding: 40px 0;
  background-color: #fff;
}
.scheduleBox h2,
.faqBox h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
.scheduleBox h2 span,
.faqBox h2 span {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-size: 16px;
  color: #d4000f;
}

.faqBox .faqList dt {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  padding: 10px 36px 10px 50px;
  background-color: #f6f6f6;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}
.faqBox .faqList dd + dt {
  margin-top: 12px;
}
.faqBox .faqList dt.close {
  border-radius: 8px 8px 0 0;
}
.faqBox .faqList dt .toggle {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
}
.faqBox .faqList dt .toggle:before,
.faqBox .faqList dt .toggle:after {
  content: "";
  display: block;
  width: 16px;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 8px);
  background-color: #357fef;
  border-radius: 4px;
}
.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.75;
  margin-top: 1px;
  padding: 10px 10px 10px 50px;
  background-color: #f6f6f6;
  border-radius: 0 0 8px 8px;
}
.faqBox .faqList dd a {
  text-decoration: underline;
  color: #357fef;
}
.faqBox .faqList dd strong {
  color: #d4000f;
}
.faqBox .faqList dd .memo {
  font-size: 14px;
}
.faqBox .faqList dt:before,
.faqBox .faqList dd:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
}
.faqBox .faqList dt:before {
  background-color: #deeafd;
}
.faqBox .faqList dd:before {
  background-color: rgba(212, 0, 15, 0.1);
}
.faqBox .faqList dt:after,
.faqBox .faqList dd:after {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  transform: translateY(-50%);
}
.faqBox .faqList dt:after {
  content: "Q";
  color: #357fef;
}
.faqBox .faqList dd:after {
  content: "A";
  color: #d4000f;
}

/* bgSlide */
.bgSlide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bgSlide * {
  width: 100%;
  height: 100%;
}
.bgSlide .slide {
  background: center / cover no-repeat;
}
.bgSlide .slide1 {
  background-image: url(../images/slide1.jpg);
  background-position-x: 10%;
}
.bgSlide .slide2 {
  background-image: url(../images/slide2.jpg);
  background-position-x: 30%;
}
.bgSlide .slide3 {
  background-image: url(../images/slide3.jpg);
  background-position-x: 30%;
}
.bgSlide .slide4 {
  background-image: url(../images/slide4.jpg);
  background-position-x: 40%;
}
.bgSlide .slide5 {
  background-image: url(../images/slide5.jpg);
  background-position-x: 80%;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1264px;
    padding-top: 96px;
    font-size: 1.25em;
  }

  .pc {
    display: block;
  }
  .pcImg {
    display: inline;
  }
  .sp,
  .spImg {
    display: none;
  }

  /* gHeader */
  .gHeader {
    min-width: 1264px;
    align-items: normal;
    height: 96px;
    padding-left: 20px;
  }
  .gHeader.scroll {
    height: 64px;
  }

  .gHeader .logo {
    width: 320px;
    align-self: center;
  }

  .gHeader .ticketBtn {
    width: 160px;
    height: 100%;
    font-size: 18px;
  }

  .gHeader .gNavToggle {
    display: none;
  }

  /* gNav */
  .gNav {
    display: flex;
    align-items: normal;
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 0;
    overflow-y: hidden;
  }

  .gNav .mainNav {
    display: flex;
    align-items: stretch;
    column-gap: 0;
    margin: 0 24px 0 0;
  }
  .gNav .mainNav li {
    display: flex;
    align-items: stretch;
  }
  .gNav .mainNav li a {
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: none;
    font-size: 16px;
  }
  .gNav .mainNav li a:after {
    display: none;
  }

  .gNav .snsNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 99px;
    gap: 1px;
  }
  .gHeader.scroll .gNav .snsNav {
    display: none;
  }
  .gNav .snsNav li {
    width: 49px;
    flex: auto;
  }

  /* gFooter */
  .gFooter {
    display: flex;
    flex-direction: row-reverse;
  }

  .gFooter .mapBox {
    width: 50%;
    min-height: 619px;
    height: 100%;
  }

  .gFooter .fInfo {
    flex: 1;
    max-width: 600px;
    padding: 80px 40px 60px;
  }
  .gFooter .fInfo .logo img {
    width: 400px;
  }
  .gFooter .fInfo p {
    font-size: 0.8em;
  }
  .gFooter .fInfo .name {
    margin: 20px 0 10px;
  }

  h1 {
    margin-bottom: 480px;
  }

  /* aboutBox */
  .aboutBox {
    margin: 0;
  }
  .aboutBox .txtBox {
    width: 50%;
    margin-left: auto;
    padding: 200px 40px;
    border-radius: 40px 0 0;
  }
  .aboutBox .txtBox h2 {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 40px;
  }
  .aboutBox .txtBox p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 20px;
  }
  .aboutBox .txtBox .catch {
    margin-top: 48px;
    max-width: 720px;
  }

  /* fesBox */
  .fesBox {
    margin: -160px 0 480px 80px;
  }
  .fesBox h2 {
    max-width: 720px;
    margin-bottom: 48px;
    padding-right: 80px;
  }
  .fesBox h2 img {width: 100%;}
  .fesBox .contBox {
    margin-top: -175px;
    padding: 175px 80px 160px 0;
  }
  .fesBox .contBox .copy {
    margin-bottom: 80px;
  }

  .fesBox .contBox .contList li {
    display: flex;
    align-items: center;
    column-gap: 80px;
  }
  .fesBox .contBox .contList li:not(:last-child) {
    margin-bottom: 80px;
  }
  .fesBox .contBox .contList li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .fesBox .contBox .contList li figure,
  .fesBox .contBox .contList li .txtBox {
    width: 50%;
  }
  .fesBox .contBox .contList li h3 {
    margin: 0 0 40px;
  }
  .fesBox .contBox .contList li .moreBtn {
    max-width: 320px;
    margin-top: 32px;
  }
  .fesBox .contBox .contList li.fes4 {
    flex-direction: column-reverse;
  }
  .fesBox .contBox .contList li.fes4 figure,
  .fesBox .contBox .contList li.fes4 .txtBox {
    width: 100%;
  }
  .fesBox .contBox .contList li.fes4 p {
    margin-bottom: 40px;
  }

  .fesBox .contBox .fes_eventBtn {
    max-width: 480px;
    margin: 64px auto 0;
    font-size: 24px;
  }

  .fesBox .contBox .bgPh {
    width: 560px;
  }
  .fesBox .contBox .bgPh.ph1 {
    top: 89px;
    height: 541px;
  }
  .fesBox .contBox .bgPh.ph2 {
    top: 639px;
    left: -61px;
    right: auto;
    height: 499px;
    transform: scale(1);
  }
  .fesBox .contBox .bgPh.ph3 {
    top: 1252px;
    height: 404px;
  }
  .fesBox .contBox .bgPh.ph4 {
    left: 0;
    right: auto;
    bottom: 984px;
    height: 408px;
    transform: scale(1);
  }
  .fesBox .contBox .bgPh.ph5 {
    bottom: 707px;
    height: 432px;
  }
  .fesBox .contBox .bgPh.ph6 {
    left: 0;
    right: auto;
    height: 432px;
    transform: scale(1);
  }

  /* s_garage_saleBox */
  .s_garage_saleBox {
    margin-bottom: 480px;
  }
  .s_garage_saleBox h2 {
    max-width: 600px;
    margin-top: -240px;
  }
  .s_garage_saleBox .contBox {
    position: relative;
    max-width: 1760px;
    margin: -263px auto 0;
    padding: 263px 0 160px;
  }
  .s_garage_saleBox .contBox h3 {
    font-size: 48px;
  }
  .s_garage_saleBox .contBox p {
    margin: 40px 0 80px;
    font-size: 20px;
  }
  .s_garage_saleBox .contBox p.catch {
    margin: 64px 0 24px;
    font-size: 32px;
  }
  .s_garage_saleBox .contBox .s_garage_saleBtn {
    max-width: 480px;
    margin: 0 auto;
    font-size: 24px;
  }
  /* contentBox */
  .contentBox {
    margin-right: 80px;
    padding: 0 0 240px 40px;
  }

  .contentBox .contentDet + .contentDet {
    margin-top: 80px;
  }
  .contentBox .contentDet {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 80px;
  }
  .contentBox .contentDet figure {
    width: 50%;
    margin-bottom: 0;
  }
  .contentBox .contentDet .txtBox {
    flex: 1;
    max-width: 560px;
  }
  .contentBox .contentDet .txtBox h2 {
    margin-bottom: 24px;
    font-size: 48px;
  }
  .contentBox .contentDet.fmfBox .txtBox h2 {
    font-size: 40px;
  }
    .contentBox .contentDet .txtBox h2 span {
    margin-top: -8px;
    font-size: 20px;
  }
  .contentBox .contentDet .txtBox h3 {
    margin-bottom: 40px;
    font-size: 30px;
  }
  .contentBox .contentDet .txtBox p {
    margin-right: 0;
    font-size: 20px;
  }
  .contentBox .contentDet .txtBox p.memo {
    margin: 1.5em 0 0 1em;
    font-size: 16px;
  }

  /* ticketBox */
.ticketBox {
  margin-bottom: 240px;
}
.ticketBox li.ticketList {
  padding: 40px;
}
.ticketBox li.ticketList.familyPack {
  margin-bottom: 40px;
}
.ticketBox li.ticketList h2 {
  margin-bottom: 40px;
  font-size: 48px;
}
.ticketBox li.ticketList .ticketDet {
  display: flex;
}
.ticketBox li.ticketList .ticketDet .content {
  width: 50%;
}
.ticketBox li.ticketList .ticketDet .content ul li {
  margin-bottom: 12px;
  font-size: 24px;
}
.ticketBox li.ticketList .ticketDet .content ul li:before {
  top: 13px;
}
.ticketBox li.ticketList .ticketDet .content .memo {
  font-size: 16px;
  margin-bottom: 0;
}
.ticketBox li.ticketList .ticketDet .price {
  width: 50%;
}
.ticketBox li.ticketList .ticketDet .price .yen strong {
  margin-top: -30px;
  font-size: 80px;
}
.ticketBox li.ticketList .ticketDet .price .ticketBtn {
  font-size: 24px;
}

  /* snsBox */
  .snsBox .wrapper {
    display: flex;
    align-items: center;
    column-gap: 82px;
  }
  .snsBox .xBox {
    max-width: 560px;
    margin-bottom: 0;
  }
  .snsBox .xBox h2 {
    padding: 15px 0 17px;
  }
  .snsBox .xBox h2 img {
    width: 28px;
  }

  .snsBox .snsLinkList {
    width: 50%;
  }
  .snsBox .snsLinkList li:not(:last-child) {
    margin-bottom: 40px;
  }
  .snsBox .snsLinkList li a {
    column-gap: 32px;
    height: 88px;
    border-radius: 44px;
    font-size: 40px;
  }

  /* scheduleBox faqBox */
  .scheduleBox .memo{
    font-size: 16px;
  }
  .scheduleBox,
  .faqBox {
    padding: 160px 0;
  }
  .faqBox h2 {
    margin-bottom: 40px;
    font-size: 48px;
  }
  .faqBox h2 span {
    margin-top: 8px;
    font-size: 20px;
  }

  .faqBox .faqList dt {
    padding: 24px 80px 24px 107px;
    font-size: 24px;
  }
  .faqBox .faqList dd + dt {
    margin-top: 24px;
  }
  .faqBox .faqList dt .toggle {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    right: 24px;
  }
  .faqBox .faqList dt .toggle:before,
  .faqBox .faqList dt .toggle:after {
    width: 32px;
    left: calc(50% - 16px);
  }
  .faqBox .faqList dd {
    margin-top: 2px;
    padding: 24px 24px 24px 107px;
  }
  .faqBox .faqList dd .memo {
    font-size: 16px;
  }
  .faqBox .faqList dt:before,
  .faqBox .faqList dd:before {
    width: 83px;
  }
  .faqBox .faqList dt:after,
  .faqBox .faqList dd:after {
    width: 83px;
    font-size: 49px;
  }

  .bgSlide .slide1,
  .bgSlide .slide2,
  .bgSlide .slide3,
  .bgSlide .slide4,
  .bgSlide .slide5 {
    background-position: center;
  }
}

@media screen and (min-width: 1380px) {
  /* gHeader */
  .gHeader .logo {
    width: 400px;
  }
  .gHeader.scroll .logo {
    width: 320px;
  }

  /* gNav */
  .gNav .mainNav {
    margin-right: 40px;
  }
  .gNav .mainNav li a {
    padding: 0 20px;
  }
}
