@charset "utf-8";

/* Define
--------------------------------------*/
:root {
  --maincolor: #00d4ff;
  --hovercolor: #00849e;
  --marker: #fffe26;
  --swiper-theme-color: #fff !important;
}


/* Recet
--------------------------------------*/
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}


/* Common
--------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 58px;
  position: relative;
}

body {
	font-family: 'Noto Sans JP', 'Avenir', 'Helvetica Neue', 'Helvetica','Arial', sans-serif;
	font-size: 16px;
  position: relative;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
	margin-bottom: 2%;
  word-break: break-all;
}

/* Font */
.light {
	font-weight: 300;
}

.medium {
	font-weight: 500;
}

.bold {
	font-weight: 700;
}

.exbold {
	font-weight: 900;
}

.inner {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.fade_up {
	transform:translateY(30px);
	opacity: 0;
  transition: all ease .4s;
}

.fade_up.scrolled {
	opacity: 1;
	transform:translateY(0px);
}

.speed01 {
  transition-delay: .1s;
}

.speed02 {
  transition-delay: .2s;
}

.speed03 {
  transition-delay: .3s;
}

.speed04 {
  transition-delay: .4s;
}

.speed05 {
  transition-delay: .5s;
}

.speed07 {
  transition-delay: .7s;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(40%, var(--marker)));
  background: linear-gradient(rgba(255, 255, 255, 0) 40%, var(--marker) 60%);
  padding-bottom: 8px;
  font-weight: 900;
}

.video {
  position:relative;
  width:100%;
  height:0;
  padding-top:60%;
}

.video iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.video2 {
  position:relative;
  width:100%;
  height:0;
  padding-top:60%;
}

.video2 iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.fluffy {
  animation: fluffy1 3s ease infinite;
}

@keyframes fluffy1 {
  0% { transform:translateX(0) }
  5% { transform:translateX(0) }
  10% { transform:translateX(0) }
  20% { transform:translateX(-15px) }
  25% { transform:translateX(0) }
  30% { transform:translateX(-15px) }
  50% { transform:translateX(0) }
  100% { transform:translateX(0) }
}

.frog{
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
0% , 100%{
    transform: rotate(10deg);
}
50%{
    transform: rotate(-10deg);
}
}

/* navigation */
#header #pcNav {
  height: 100%;
  align-items: center;
}

#header #pcNav li {
  text-align: center;
}

#header #pcNav li a {
  color: #fff;
  display: block;
  padding: 4px 8px;
  box-sizing: border-box;
  transition: all ease .4s;
  position: relative;
}

#header #pcNav li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all ease .4s;
}

#header #pcNav li a:hover::after {
  width: 100%;
}

#header #pcNav li a:hover {
  opacity: .8;
}


#header #spNav {
  position: fixed;
  z-index: 1000;
  right: 14px;
  top: 14px;
  transition: all ease .4s;
}

#header #spNav .toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
}

#header #spNav .toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all ease .4s;
}

#header.show #spNav .toggle i {
  background-color: #fff;
}

#header #spNav .toggle i:nth-child(1) {
  top: 0;
}

#header #spNav .toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

#header #spNav .toggle i:nth-child(3) {
  bottom: 0;
}

#header.show .toggle i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}

#header.show .toggle i:nth-child(2) {
  opacity: 0;
}

#header.show .toggle i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

#header #spMenu {
  position: fixed;
  z-index: -100;
  display: block;
  transition: all ease .4s;
  opacity: 0;
  visibility: hidden;
}

#header.show #spMenu {
  opacity: 1;
  visibility: visible;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: var(--maincolor); */
  background: -moz-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: -webkit-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: linear-gradient(-45deg, #00fdfe,#8a96c1 50%, #fe3f8e);
}

#header #spMenu ul {
  display: none;
}

#header.show #spMenu ul {
  display: block;
  padding: 12% 8%;
  box-sizing: border-box;
}

#header #spMenu a {
  display: block;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  padding: .6% 0;
  letter-spacing: .07em;
  display: block;
  margin-bottom: .4%;
}

#header.show #spMenu ul#snsNavSp {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

#snsNavSp li {
  width: 8%;
  padding-right: 20px;
}

#header .logo img {
  transition: all ease .4s;
}

#header .logo img:hover {
  opacity: .7;
  transform: scale(1.1);
}

.otameshi {
  width: 80%;
  margin: 8% auto;
}

.otameshi img {
  width: 100%;
  transition: all ease .4s;
}

.otameshi img:hover {
  opacity: .7;
}

/* loop slider */
.slider {
  padding: 4% 0 8%;
}


.slider img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

#ticketBtn {
  position: fixed;
  top: 70px;
  right: 0;
  z-index: 1000;
  width: 10%;
  max-width: 110px;
}

/* swiper */
/* #slider {
  background: #000;
}

#slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: .6;
}

#slider .swiper-slide {
  position: relative;
}

#slider .box {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#slider .box p {
  color: #fff;
  text-align: center;
}

#slider .box a {
  color: #fff;
  text-align: center;
}

#slider .ttl01 {
  font-size: 1rem;
  margin-bottom: 0;
  letter-spacing: .1em;
}

#slider .ttl02 {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: .1em;
  margin-bottom: 3%;
}

#slider .ttl03 a {
  display: inline-block;
  font-size: .9rem;
  border: 1px solid #fff;
  padding: 8px 40px;
  box-sizing: border-box;

  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(0,0,0,.8) 50%);
  background-position: 0 0;
  background-size: 202% auto;
  transition: 0.5s;
}

#slider .ttl03 a:hover {
  background-position: -98% 0;
  color: #fff;
} */

/* topBtn */
#footer #topBtn.show {
  opacity: 1;
  transform: translateY(0px);
}

#footer #topBtn {
  opacity: 0;
  transform: translateY(20px);
  position: fixed;
  z-index: 100;
  right: 1.5%;
  bottom: 20px;
  padding: 2px;
  transition: all ease .4s;
}

#footer #topBtn a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../img/arrow/arrow01w.png) no-repeat, #fe3f8e;
  background-size: 20px;
  background-position: center;
  box-sizing: border-box;
  transform: rotate(-90deg);
  transition: all ease .4s;
  border: 2px solid #fff;
}

#footer #topBtn a:hover {
  background: url(../img/arrow/arrow01w.png) no-repeat, var(--maincolor);
  background-size: 20px;
  background-position: center;
  box-shadow: 1px 1px 20px #fff;
}



/* popup */
.lum-lightbox-image-wrapper img {
	width: 70% !important;
  max-height: 70vh !important;
  object-fit: contain;
  margin: 0 auto;
}

.lum-gallery-button {
	display: none !important;
}


/* Original
--------------------------------------*/

/* delete later */
html {
  min-height: 2000px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all ease .4s;
  background: #00d4ff;
}


#header .box {
  width: 90%;
  margin: 0 auto;
  padding: 8px 0;
  transition: all ease .4s;
}

#header.trigger .box {
  padding: 0px 0;
}

#header .flex01 {
  width: 16%;
  max-width: 100px;
  transition: all ease .4s;
}

#header .flex02 {
  width: 60%;
  max-width: 620px;
  transition: all ease .4s;
}

#header .flex03 {
  width: 14%;
  max-width: 120px;
  transition: all ease .4s;
}

#header .flex03 #snsNav {
  align-items: center;
  height: 100%;
}

#header .flex03 #snsNav li {
  max-width: 30px;
}

#sec01 {
  margin-top: 70px;
}

#sec01 img {
  width: 100%;
  display: block;
}

.wrap01 {
  background: url(../img/bg04.png) repeat;
  background-size: 100%;
}

#sec02 {
  padding: 4% 0;
}

#sec02 .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.8;
  text-align: center;
}

#sec02 .sub {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.8;
  text-align: center;
}

#sec02 .sub a {
  color: #23b497;
  text-decoration: underline;
  transition: all ease .4s;
}

#sec02 .sub a:hover {
  opacity: .7;
}

#sec02 .eventImg {
  width: 90%;
  margin: 0 auto 20px;
}

#sec02 .eventImg img {
  display: block;
  width: 100%;
  transition: all ease .4s;
}

#sec02 .eventImg img:hover {
  opacity: .8;
}

#sec02 .info {
  width: 80%;
  margin: 0 auto;
  padding: 2%;
  box-sizing: border-box;
  background: -moz-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: -webkit-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: linear-gradient(to right, #00fdfe,#8a96c1 50%, #fe3f8e);
  border-radius: 8px;
}

#sec02 .info .box {
  background: #fff;
  padding: 4%;
  box-sizing: border-box;
  max-height: 200px;
  overflow: scroll;
}


#sec02 .info dl{
  margin-bottom: 2%;
}

#sec02 .info dt{
  width: 20%;
}

#sec02 .info dd{
  width: 80%;
}

#sec02 .info dd a {
  color: #000;
  transition: all ease .4s;
}

#sec02 .info dd a:hover {
  color: var(--maincolor);
  text-decoration: underline;
}

#sec02 .item01 {
  width: 60%;
  margin: 0 auto 4%;
}

#sec02 .ttl01 {
  width: 40%;
  margin: 12% auto 4%;
}

#sec03 {
  padding: 0% 0 8%;
}

#sec03 .box {
  width: 50%;
  margin: 8% auto 0;
  position: relative;
  background: #000;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}


#sec03 .box .desc {
  text-align: left;
  color: #fff;
  padding: 12%;
  box-sizing: border-box;
}

#sec03 .box .flex {
  align-items: center;
  height: 100%;
}

#sec03 .ttl02 {
  position: absolute;
  top: -50px;
  width: 74%;
  margin: auto;
  left: 0;
  right: 0;
}

#sec03 .item02 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: auto;
  width: 80%;
}

#sec03 #covid {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
  width: 50%;
  padding: 0 4%;
  transition: all ease .4s;
}

#sec03 #covid dl {
  margin-bottom: 1%;
}

#sec03 #covid dt {
  width: 30px;
}

#sec03 #covid dd {
  width: calc(100% - 30px);
}

#sec03 #acBtn1 {
  cursor: pointer;
}

#sec03 #acBtn1 img {
  transition: all ease .4s;
}

#sec03 #acBtn1:hover img {
  opacity: .9;
  transform: scale(1.1);
}

#sec03 #covid p {
  display: none;
}

#sec03 #covid ul {
  display: none;
}

#sec03 #covid.show {
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  height: auto;
  width: 70%;
  margin: 2% auto;
  border: 4px solid #000;
  padding: 2% 4%;
  box-sizing: border-box;
  background: #fff;
}

#sec03 #covid.show p {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3%;
  font-weight: bold;
  letter-spacing: .05em;
}

#sec03 #covid.show ul {
  display: block;
}

#sec04 {
  padding: 0;
}

#sec05 {
  padding: 8% 0;
  background: -moz-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: -webkit-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: linear-gradient(to right, #00fdfe,#8a96c1 50%, #fe3f8e);
}

#sec05 .box {
  width: 40%;
  margin: 0 auto;
}

#sec06 {
  padding: 6% 0 2%;
  background: url(../img/bg01-2.png) no-repeat center bottom / 80% auto, #000;
}

#sec06 .ttl03 {
 width: 46%;
 margin: 0 auto 6%;
}

#sec06 .desc {
  width: 60%;
  margin: 0 auto 4%;
  border: 6px solid #fff;
  padding: 4% 4% 6%;
  box-sizing: border-box;
  color: #fff;
  background: url(../img/item03.png) no-repeat right bottom / 30%;
 }

 #sec06 .feature {
   color: #fff;
   text-align: center;
 }

 #sec06 .ttl04 {
  width: 20%;
  margin: 0 auto;
 }

 #sec06 .feature dd {
  font-size: 1rem;
  margin-bottom: 4%;
}

#sec06 .ttl04_sub {
  width: 50%;
  margin: 0 auto 1%;
}

#sec06 .item04 {
  width: 50%;
  margin: 8% auto 0%;
}

#sec07 {
  padding: 6% 0;
  background: url(../img/bg05.png) no-repeat;
  background-size: cover;
}

#sec07 .ttl08 {
 width: 40%;
 margin: 0 auto;
}

#sec07 #what {
  cursor: pointer;
  transition: all ease .4s;
}

#sec07 #what:hover {
  opacity: .8;
  transform: scale(1.1);
}

#sec07 #what.show {
  padding-bottom: 10%;
}

#sec07 #whatDesc {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: all ease .4s;
}

#sec07 #whatDesc.show {
  opacity: 1;
  height: auto;
  visibility: visible;
}


#sec07 .desc {
  text-align: center;
  line-height: 2.2;
  font-weight: 600;
  letter-spacing: .1em;
}

#sec07 .youtube {
  width: 30%;
  margin: 4% auto;
}

#sec07 .item05 {
  width: 30%;
  margin: 4% auto 6%;
}

#sec07 .item05 img {
  transition: all ease .4s;
}

#sec07 .item05 img:hover {
  opacity: .8;
  transform: scale(1.1);
}

#sec08 {
  padding: 6% 0 10%;
  background: url(../img/bg02.png) no-repeat -10% 10%/ 50%, url(../img/bg03.png) no-repeat 100% 100%/ 30%, #000;
}

#sec08 .box {
  width: 80%;
  margin: 0 auto;
}

#sec08 .ttl09 {
  width: 40%;
 margin: 0 auto 6%;
}

#sec08 .desc {
  text-align: center;
  line-height: 2.2;
  color: #fff;
  letter-spacing: .1em;
  margin-bottom: 8%;
}

#sec08 .howto {
  margin-bottom: 8%;
}

#sec08 .howto li {
  width: 25%;
  padding: 2%;
  box-sizing: border-box;
}

#sec08 .flow {
  padding: 4% 0;
}

#sec08 .ttl10 {
  width: 60%;
  margin: 0 auto 2%;
}

#sec08 .flow li {
  width: 25%;
  padding: 2%;
  box-sizing: border-box;
  position: relative;
}

#sec08 .flow li p {
  color: #fff;
  padding: 2%;
  box-sizing: border-box;
  letter-spacing: .16em;
  line-height: 1.6;
}

#sec08 .flow li .step {
  position: absolute;
  top: -10px;
  left: 0px;
  width: 50%;
  display: block;
}

#sec08 .flow li .btn {
  margin-top: 2%;
}

#sec08 .flow li .btn img {
  width: 100%;
}


#sec08 .flow li .btn a {
    color: #fff;
    background: #C1272D;
    width: 100%;
    display: block;
    text-align: center;
    padding: 4%;
    border-radius: 30px;
    transition: all ease .4s;
    box-sizing: border-box;
}

#sec08 .flow li .btn a:hover {
  background: #fe3f8e;
}

#sec09 {
  padding: 6% 0;
  background: url(../img/bg06.png) no-repeat;
  background-size: cover;
}

#sec09 .box {
  width: 80%;
  margin: 0 auto;
}

#sec09 .ttl11 {
  width: 50%;
 margin: 0 auto 6%;
}

#sec09 .commentArea {
  border: 8px solid #000;
  border-radius: 12px;
  padding: 2%;
  box-sizing: border-box;
  background: #fff;
  width: 80%;
  margin: 0 auto 4%;
}

#sec09 .commentArea .flexL {
  width: 100%;
  padding: 4%;
  box-sizing: border-box;
  text-align: center;
}

#sec09 .commentArea .flexR {
  width: 36%;
  padding: 4%;
  box-sizing: border-box;
}

#sec09 .commentArea .position {
  font-size: 1.4rem;
  font-weight: 600;
}

#sec09 .commentArea .name {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: .1em;
}

#sec09 .commentArea .name span {
  font-size: 1rem;
  font-weight: 600;
}

#sec09 .commentArea .works {
  margin-bottom: 6%;
}

#sec09 .commentArea .item14 {
  width: 50%;
  margin: 0 auto;
}

#sec09 .commentArea img {
  display: block;
  cursor: pointer;
  transition: all ease .4s;
}

#sec09 .commentArea img:hover {
  opacity: .8;
  transform: scale(1.1);
}

#sec09 .commentDesc {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
} 

#sec09 .commentDesc.show {
  opacity: 1;
  visibility: visible;
  height: auto;
}

#sec09 .commentDesc p {
  display: none;
}

#sec09 .commentDesc.show p {
  display: block;
}

#sec09 #commentDesc2 {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
} 

#sec09 #commentDesc2.show {
  opacity: 1;
  visibility: visible;
  height: auto;
}

#sec09 #commentDesc2 p {
  display: none;
}

#sec09 #commentDesc2.show p {
  display: block;
}


#sec09 .commentDesc.show {
  margin-top: 6%;
  text-align: left;
}


#sec10 {
  padding: 4% 0 3%;
  background: #000;
}

#sec10 .tweet {
  width: 40%;
  text-align: center;
  margin: 1% auto;
}

#sec10 .tweet a {
  display: block;
  padding: 1%;
  background: #fff;
  box-sizing: border-box;
  border: 4px solid #00D4FF;
  transition: all ease .4s;
}

#sec10 .tweet a:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 1px 1px 10px #fff;
}

#sec10 .tweet img {
  display: block;
  width: 34%;
  margin: 0 auto;
}

#sec10 .desc {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-top: 1%;
  letter-spacing: .16em;
  margin-bottom: 0;
}

#sec11 {
  padding: 6% 0;
  background: url(../img/bg07.png) repeat;
  background-size: 100%;
}

#sec11 .box {
  width: 80%;
  margin: 0 auto;
}

#sec11 .ttl13 {
  width: 22%;
 margin: 0 auto 6%;
}

#sec11 .ticketInfo {
  width: 70%;
  border: 4px solid #5d9aa7;
  margin: 0 auto 6%;
  padding: 2%;
  box-sizing: border-box;
  background: #f1fdff;
  border-radius: 8px;
}

#sec11 .ticketInfo .ttl {
  font-size: 2rem;
  margin-bottom: 2%;
  text-align: center;
}

#sec11 .ticketInfo .desc {
  text-align: center;
}

#sec11 .ticketInfo .desc a {
    color: #22889d;
    text-decoration: underline;
    transition: all ease .4s;
}

#sec11 .ticketInfo .desc a:hover {
  opacity: .7;
}

#sec11 .ticketInfo dl {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #5e9aa8;
}

#sec11 .ticketInfo dl:last-child {
  border-bottom: none;
  margin-bottom: 2%;
}

#sec11 .ticketInfo dt {
  width: 30%;
  padding: 2%;
  box-sizing: border-box;
  font-weight: bold;
  text-align: center;
}

#sec11 .ticketInfo dd {
  width: 70%;
  padding: 2%;
  box-sizing: border-box;
}

#sec11 .ticketInfo dd a {
  color: #10adbd;
}

#sec11 .ticketTable {
  margin-bottom: 4%;
}

#sec11 .moreInfo {
  padding: 0px 0 40px;
  line-height: 2;
  letter-spacing: .02em;
  font-size: 1rem;
  margin-top: -10px;
}

#sec11 table {
  width: 100%;
}

#sec11 table , #sec11 td, #sec11 th {
	border: 2px solid #fff;
	border-collapse: collapse;
}
#sec11 td, #sec11 th {
	padding: 1%;
  box-sizing: border-box;
  text-align: center;
}

#sec11 tr:first-child td {
	background: #333333;
  color: #fff;
}

#sec11 tr:first-child th {
	font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  width: 30%;
}

#sec11 td {
  background: #F2F2F2;
  line-height: 1.2;
}

#sec11 td span {
  font-size: .7rem;
  color: #6c6c6c;
  line-height: 1.4;
  display: block;
  letter-spacing: .05em;
  padding-top: 3px;
}

#sec11 .ticketTable th {
	background: #FF88E3;
}

#sec11 .ticketTable:nth-of-type(4)  {
	margin-bottom: 8%;
}

#sec11 .ticketTable:nth-of-type(1) th {
	background: #8190ff;
}

#sec11 .ticketTable:nth-of-type(2) th {
	background: #76d9ea;
}

#sec11 .groupTicket {
  width: 40%;
  margin: 0 auto 2%;
}

#sec11 .groupTicket img {
  cursor: pointer;
  transition: all ease .4s;
}

#sec11 .groupTicket img:hover {
  opacity: .8;
  transform: scale(1.1);
}

#sec11 #groupBox {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
}

#sec11 #groupBox.show {
  opacity: 1;
  visibility: visible;
  height: auto;
}

#sec11 #groupBox .groupDesc {
  display: none;
}

#sec11 #groupBox.show .groupDesc {
  display: block;
  width: 80%;
  margin: 0 auto 4%;
  border: 4px solid #000;
  box-sizing: border-box;
  padding: 4%;
  background: #fff;
}

#sec11 .place {
  margin :8% 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sec11 .moreDetail {
  width: 40%;
  margin: 4% auto 2%;
}

#sec11 .moreDetail img {
  cursor: pointer;
  transition: all ease .4s;
}

#sec11 .moreDetail img:hover {
  opacity: .8;
  transform: scale(1.1);
}

#sec11 .placeSingle {
  margin-bottom: 3.5%;
  width: 31%;
  text-align: center;
  box-sizing: border-box;
  padding: 1%;
  border-radius: 8px;
  background: -moz-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: -webkit-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: linear-gradient(to right, #00fdfe,#8a96c1 50%, #fe3f8e);
}

#sec11 .placeSingle .box2 {
  background: #fff;
  padding: 4%;
  box-sizing: border-box;
}

#sec11 .placeSingle:last-child {
  margin-right: 0;
}

#sec11 .placeSingle img {
  transition: all ease .4s;
  cursor: pointer;
}

#sec11 .placeSingle img:hover {
  opacity: .8;
  transform: scale(1.05);
}

#sec11 .placeName {
  font-size: 2rem;
  font-weight: bold;
  background: #E6E6E6;
  margin-bottom: 30px;
  padding: 10% 0;
}

#sec11 .placeSub {
  margin-bottom: 30px;
}

#sec11 .place  img {
  display: block;
}

#sec11 .infoBox {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all ease .4s;
}

#sec11 .infoBox.show {
  visibility: visible;
  opacity: 1;
  height: auto;
}

#sec11 .infoBox .info {
  display: none;
}

#sec11 .infoBox.show .info {
  display: block;
  font-size: 1rem;
  padding: 4%;
  width: 90%;
  background: #eee;
  margin-bottom: 8%;
  margin: 4% auto 8%;
  border-radius: 8px;
  box-sizing: border-box;
  min-height: 210px;
}

#sec11 .info a {
  color: #1596b1;
  text-decoration: underline;
  display: inline-block;
  margin: 1% 0;
}




#sec12 {
  padding: 6% 0;
  background: #000;
}

#sec12 .box {
  width: 80%;
  margin: 0 auto;
}

#sec12 .box2 {
  width: 100%;
  margin: 0 auto;
}

#sec12 .ttl12 {
  width: 50%;
 margin: 0 auto 6%;
}

#sec12 .goodsArea {
  width: 70%;
  margin: 0 auto 8%;
}

#sec12 .goodsImg {
  width: 80%;
  margin: 0 auto;
}

#sec12 .goods {
  width: 46%;
  background: #fff;
  padding: 4% 6%;
  box-sizing: border-box;
  border-radius: 30px;
}

#sec12 .goodsName {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0em;
  margin-bottom: 4%;
}

#sec13 {
  padding: 6% 0;
  background: -moz-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: -webkit-linear-gradient(left, #00fdfe,#8a96c1 50%, #fe3f8e);
  background: linear-gradient(to right, #00fdfe,#8a96c1 50%, #fe3f8e);
}

#sec13 .box {
  width: 80%;
  margin: 0 auto;
}

#sec13 .ttl {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 4%;
}

#sec13 .single {
  width: 70%;
  margin: 0 auto 1%;
}

#sec13 .singleList {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  border: 4px solid #000;
  background: #fff;
  padding: 2%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease .4s;
}

#sec13 .singleList:hover {
  opacity: .8;
  box-shadow: 1px 1px 10px #05d4fe;
}

#sec13 .singleList::after {
  content: '+';
  color: #fff;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 92%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #000;
  border-radius: 50%;
  transition: all ease .4s;
}

#sec13 .singleList:hover::after {
  transform: rotate(45deg);
}

#sec13 .singleList.accordion::after {
  transform: rotate(45deg);
}

#sec13 .singleDesc {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
  overflow: hidden;
  padding: 0 4%;
}

#sec13 .singleDesc.accordion {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  border: 3px solid #000;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

#sec13 .singleDescBox {
  margin-bottom: 4%;
}

#sec13 .singleDescBox .subTtl {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 2%;
  border-bottom: 2px solid #000;
  padding-bottom: 1%;
}

#sec13 .singleDescBox .subDesc {
  letter-spacing: .06em;
  font-size: .9rem;
  margin-bottom: 2%;
  line-height: 1.6;
}

#sec13 .singleDescBox .subDesc a {
  color: #22889d;
  text-decoration: underline;
  transition: all ease .4s;
}

#sec13 .singleDescBox .subDesc a:hover {
  opacity: .7;
}

#footer {
  padding: 6% 0;
  background: #0c0d0e;
}

#footer .box {
  width: 80%;
  margin: 0 auto;
}

#footer .bnr {
  width: 80%;
  display: block;
  text-align: center;
  margin: 0 auto 3%;
}

#footer .bnr img {
  transition: all ease .4s;
}

#footer .bnr img:hover {
  opacity: .8;
  transform: scale(1.1);
}

#footer .fLogo {
  width: 30%;
  display: block;
  text-align: center;
  margin: 4% auto 6%;
}

#footer .fLogo img {
  transition: all ease .4s;
}

#footer .fLogo img:hover {
  opacity: .8;
  transform: scale(1.1);
}

#footer .desc {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 2;
  letter-spacing: .1em;
}

.omake {
  text-align: center;
  font-size: 1.2rem;
  width: 70%;
  padding: 4%;
  box-sizing: border-box;
  margin: 0 auto 8%;
  color: #fff;
  letter-spacing: .2em;
  border: 1px solid #fff;
}

.slick-slider {
  max-height: 220px;
}

.goods03 {
  width: 24%;
  margin: 0 auto;
  padding-left: 10px;
}

.goodsName03 {
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  line-height: 2;
  letter-spacing: .1em;
}

.u22 {
      border: 1px solid #000;
    background: #fff;
    width: 80%;
    margin: 0 auto;
    padding: 90px 40px 40px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.u22 img {
      position: absolute;
    width: 30%;
    max-width: 200px;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
}

.u22 a {
  color: #1ba3bf;
  transition: all ease .4s;
}

.u22 a:hover {
  opacity: .7;
}







