/*================
sec01
================*/
.sec01 {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.sec01 .inr .txt {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 3;
}
.sec01 .inr .txt p {
  width: 50%;
  padding-top: 4%;
  z-index: 13;
  position: relative;
}
.sec01 .inr .txt h2 {
  position: relative;
  width: 45%;
  min-width: 550px;
  animation: scaleOut 0.5s ease-in forwards;
  margin-top: -50px;
  z-index: 10;
}
.sec01 .inr .txt .img {
  position: absolute;
  width: 55%;
  min-width: 700px;
  bottom: 10%;
  right: 0;
  animation: waveMove 3s linear alternate infinite;
}
.sec01::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: radial-gradient(#000 0%, transparent 1px);
  background-size: 4px 4px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}
.sec01 .video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.sec01 .border_mask.type02 {
  position: absolute;
  z-index: 1;
  bottom: -8vw;
  width: 100%;
  height: 15vw;
  min-height: 300px;
  background: url("../images/wave3.svg");
  background-size: cover;
  animation: waveMove 6s linear alternate infinite;
}
.sec01 .border_mask {
  position: absolute;
  z-index: 1;
  bottom: -8vw;
  width: 100%;
  height: 12vw;
  min-height: 250px;
  overflow: hidden;
  background: url("../images/wave2.svg");
  background-size: cover;
  background-repeat: repeat-x;
  animation: waveMove 4s linear alternate infinite;
}
.sec01 .border_mask::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100px;
  bottom: 0;
  background-color: #fff;
}

@keyframes scaleOut {
  0% {
    opacity: 0;
    scale: 2;
  }
  60% {
    opacity: 0.7;
    scale: 0.8;
  }
  85% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes waveMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.area_sec {
  margin-top: 30px;
  position: relative;
  background: linear-gradient(#5defff 0%, #fff 100%);
  padding-top: 50px;
  z-index: -1;
}
.area_sec .cont {
  display: flex;
  justify-content: space-between;
}
.area_sec .cont ul {
  width: 20%;
}
.area_sec .cont figure {
  width: 70%;
}
.area_sec::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #5defff;
  z-index: 10;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 70% 100%;
}
.area_sec figure {
  width: 80%;
  margin: 0 auto;
}

/*================
sec02
================*/
.features_sec {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.features_sec::before {
  content: "";
  position: absolute;
  left: 3%;
  top: -15vw;
  width: 25vw;
  height: 25vw;
  background: url("../images/features_sec_bg.gif") left center no-repeat;
  background-size: contain;
  z-index: -2;
}
.features_sec .inr .ttl {
  text-align: right;
  margin-bottom: 30px;
}
.features_sec .inr > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.features_sec .inr > ul li {
  border: 5px solid #5defff;
  background: repeating-linear-gradient(45deg, #d7f7f8, #d7f7f8 10px, #e6f8f8 10px, #e6f8f8 20px);
  padding: 20px;
  border-radius: 5px;
  box-sizing: border-box;
  flex: 0 0 32%;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 8px 8px 0 #eeeeee;
}
.features_sec .inr > ul li:nth-child(4), .features_sec .inr > ul li:nth-child(5), .features_sec .inr > ul li:nth-child(6) {
  flex: 0 0 40%;
}
.features_sec .inr > ul li .no {
  transform: rotate(-3deg);
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: repeating-linear-gradient(45deg, #eeff02, #eeff02 10px, #cdf104 10px, #cdf104 20px);
  mask-image: url("../images/mask_shape.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.features_sec .inr > ul li .no div {
  text-align: center;
  position: relative;
  z-index: 2;
  top: 35%;
  line-height: 1;
  font-weight: bold;
}
.features_sec .inr > ul li .no div .en {
  font-size: min(4.5vw, 30px);
}
.features_sec .inr > ul li .txt h3 {
  text-align: center;
  margin: 10px 0;
  font-size: min(3.8vw, 22px);
  color: #000;
  padding-bottom: 8px;
  border-bottom: 2px dashed #000;
}
.features_sec .inr > ul li .txt p {
  line-height: 2;
  font-weight: 500;
}

/*================
sec03
================*/
.plan_sec {
  position: relative;
  z-index: -10;
  margin-top: 70px;
  background-color: #5defff;
  padding-bottom: 50px;
}
.plan_sec::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #5defff;
  z-index: 10;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 70% 100%;
}
.plan_sec .ttl {
  position: relative;
}
.plan_sec .ttl::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  width: 25vw;
  height: 25vw;
  max-width: 350px;
  background: url("../images/plan_bg.gif") right top no-repeat;
  background-size: contain;
  z-index: 12;
}
.plan_sec .cont {
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
}
.plan_sec .cont h3 {
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #fef15f;
  padding: 5px 5px 5px 40px;
  border-radius: 10px;
  font-size: min(4.5vw, 20px);
}
.plan_sec .cont h3::before {
  content: "";
  left: 10px;
  top: 30%;
  width: 16px;
  height: 16px;
  position: absolute;
  background: url("../images/allow.svg") left center no-repeat;
  background-size: contain;
}
.plan_sec .cont ul {
  margin-bottom: 40px;
}
.plan_sec .cont div.equipment_sec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.plan_sec .cont div.equipment_sec figure {
  flex: 0 0 40%;
}
.plan_sec .cont div.equipment_sec .info {
  flex: 0 0 58%;
}
.plan_sec .cont div.equipment_sec ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 15px;
}
.plan_sec .cont div.equipment_sec ul li {
  flex: 1;
}
.plan_sec .cont div.equipment_sec ul li h4 {
  padding: 2px 10px;
  margin-bottom: 20px;
  background: repeating-linear-gradient(45deg, #d7f7f8, #d7f7f8 5px, #e6f8f8 5px, #e6f8f8 10px);
  text-align: center;
}
.plan_sec .cont div.equipment_sec ul li .table2 {
  width: 100%;
}
.plan_sec .cont div.equipment_sec ul li .table2 dl {
  border-bottom: 1px solid #000;
}
.plan_sec .cont div.equipment_sec ul li .table2 dl dt,
.plan_sec .cont div.equipment_sec ul li .table2 dl dd {
  padding: 3px 0;
  text-align: center;
  font-size: 85%;
}
.plan_sec .cont div.equipment_sec p.caption {
  font-size: 75%;
}
.plan_sec .cont div.food_sec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.plan_sec .cont div.food_sec figure {
  flex: 0 0 40%;
}
.plan_sec .cont div.food_sec .info {
  flex: 0 0 58%;
}
.plan_sec .cont div.food_sec ul {
  display: flex;
  margin-bottom: 10px;
  gap: 20px;
}
.plan_sec .cont div.food_sec ul li {
  flex: 0 0 48%;
}
.plan_sec .cont div.food_sec ul li h4 {
  text-align: center;
  padding: 2px 10px;
  margin-bottom: 20px;
  background: repeating-linear-gradient(45deg, #d7f7f8, #d7f7f8 5px, #e6f8f8 5px, #e6f8f8 10px);
}
.plan_sec .cont div.food_sec ul li .table2 {
  width: 100%;
}
.plan_sec .cont div.food_sec ul li .table2 dl {
  border-bottom: 1px solid #000;
}
.plan_sec .cont div.food_sec ul li .table2 dl dt,
.plan_sec .cont div.food_sec ul li .table2 dl dd {
  padding: 5px 0;
}
.plan_sec .cont div.food_sec p.caption {
  font-size: 75%;
  float: right;
}

/*================
special_plan_sec 
================*/
.special_plan_sec {
  background: repeating-linear-gradient(45deg, #fff202, #fff202 10px, #f9f265 10px, #f9f265 20px);
  position: relative;
}
.special_plan_sec table.table {
  width: 100%;
  text-align: center;
}
.special_plan_sec table.table th,
.special_plan_sec table.table td {
  padding: 5px 0;
}
.special_plan_sec table.table th {
  background-color: #eefb8e;
}
.special_plan_sec table.table th + td {
  font-size: 85%;
}
.special_plan_sec .inr .ttl {
  position: relative;
  z-index: 2;
}
.special_plan_sec .inr .ttl span::after {
  transition: all 1s ease;
  top: -200px;
  transform: scale(0);
  opacity: 0.4;
}
.special_plan_sec .inr .ttl span.active::after {
  transform: scale(1);
  opacity: 1.3;
}
.special_plan_sec .inr .cont {
  background-color: #fff;
  position: relative;
  top: -110px;
  border-radius: 10px;
  padding: 50px 30px;
}
.special_plan_sec .inr h2.inview {
  width: 70%;
  margin: 0 auto;
  max-width: 700px;
  animation: ttlAnim 1s forwards;
  animation-delay: 1s;
  opacity: 0;
}
@keyframes ttlAnim {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.9);
  }
  90% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.special_plan_sec .inr .warring {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-bottom: 2px dashed #000;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.special_plan_sec .inr .warring figure {
  width: 100px;
}
.special_plan_sec .inr .warring p {
  text-align: left;
  font-weight: bold;
  color: red;
}
.special_plan_sec .inr h3 {
  font-weight: bold;
  text-align: center;
  font-size: min(4.5vw, 24px);
  margin: 0 auto;
  width: 50%;
  max-width: 400px;
  border-radius: 30px;
  background-color: #eefb8e;
  margin-bottom: 30px;
}
.special_plan_sec .inr .cont_sec {
  display: flex;
  justify-content: space-between;
}
.special_plan_sec .inr .cont_sec .table {
  margin-top: 30px;
}
.special_plan_sec .inr .cont_sec p.caption {
  text-align: right;
}
.special_plan_sec .inr .cont_sec figure {
  flex: 0 0 45%;
}
.special_plan_sec .inr .cont_sec .info {
  flex: 0 0 52%;
}
.special_plan_sec .inr .cont_sec .info ol {
  font-weight: bold;
  margin-bottom: 20px;
}
.special_plan_sec .inr .cont_sec .info ol li {
  border-bottom: 1px dashed #000;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.special_plan_sec .inr .agency_plan_sec .ttl {
  margin-top: 40px;
}
.special_plan_sec .inr .agency_plan_sec .ttl p {
  font-weight: bold;
  text-align: center;
  font-size: min(4.5vw, 20px);
  color: #028aeb;
}
.special_plan_sec .inr .agency_plan_sec h3 {
  background: repeating-linear-gradient(45deg, #d7f7f8, #d7f7f8 5px, #e6f8f8 5px, #e6f8f8 10px);
}
.special_plan_sec .inr .agency_plan_sec .cont_sec .table th:nth-child(1) {
  background: repeating-linear-gradient(45deg, #d7f7f8, #d7f7f8 5px, #e6f8f8 5px, #e6f8f8 10px);
}
.special_plan_sec::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #5defff;
  z-index: 10;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center bottom;
  mask-size: 100% 100%;
}

.option_sec {
  padding: 30px 0 70px 0;
  position: relative;
  z-index: 10;
  background-color: #5defff;
}
.option_sec::before {
  content: "";
  position: absolute;
  right: 3%;
  top: -10vw;
  width: 28vw;
  height: 28vw;
  max-width: 400px;
  background: url("../images/option_bg.gif") right center no-repeat;
  background-size: contain;
  z-index: 30;
}
.option_sec ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.option_sec ul li {
  flex: 0 0 32%;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 3px 3px 0 #40b8c5;
}
.option_sec ul li dl {
  text-align: center;
}
.option_sec ul li dl dt {
  font-weight: bold;
}
.option_sec ul li .price {
  text-align: center;
  font-weight: bold;
  color: #028aeb;
  margin-top: 5px;
}
.option_sec ul li .price span {
  font-size: 75%;
}

.information_sec {
  padding: 30px 0 80px 0;
  position: relative;
  z-index: 10;
  background-color: #eefb8e;
}
.information_sec::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #eefb8e;
  z-index: 12;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 70% 100%;
}
.information_sec::before {
  content: "";
  position: absolute;
  right: 3%;
  top: -10vw;
  width: 28vw;
  height: 28vw;
  max-width: 500px;
  background: url("../images/info_sec_bg.gif") right center no-repeat;
  background-size: contain;
  z-index: 30;
}
.information_sec .table.type1 {
  background-color: #fff;
  border: 3px solid #000;
  width: 100%;
}
.information_sec .table.type1 th {
  width: 20%;
  background: repeating-linear-gradient(45deg, #d7f7f8, #d7f7f8 5px, #e6f8f8 5px, #e6f8f8 10px);
}
.information_sec .table.type1 th,
.information_sec .table.type1 td {
  padding: 20px;
}
.information_sec .table.type2 dl dt,
.information_sec .table.type2 dl dd {
  padding: 5px 20px;
}
.information_sec iframe {
  width: 100%;
  height: 500px;
}
.information_sec .access_sec {
  display: flex;
  gap: 30px;
  align-items: center;
}
.information_sec .access_sec h3 {
  width: 30%;
  text-align: center;
}
.information_sec .access_sec dt {
  background-color: #f9cb75;
  font-weight: bold;
}

.calendar_sec {
  padding: 30px 0 80px 0;
  position: relative;
  z-index: 10;
  background-color: #5defff;
}
.calendar_sec::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #5defff;
  z-index: 12;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 70% 100%;
}

.faqs_sec {
  padding: 30px 0 80px 0;
  position: relative;
  z-index: 10;
  background-color: #eefb8e;
}
.faqs_sec::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #eefb8e;
  z-index: 12;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 70% 100%;
}
.faqs_sec::before {
  content: "";
  position: absolute;
  right: -3%;
  top: -2vw;
  width: 25vw;
  height: 25vw;
  background: url("../images/features_sec_bg.gif") left center no-repeat;
  background-size: contain;
  z-index: 13;
}
.faqs_sec .cont {
  position: relative;
  z-index: 20;
}
.faqs_sec .cont h3 {
  text-align: center;
  font-size: min(4.8vw, 28px);
  margin-bottom: 10px;
}
.faqs_sec .cont ul {
  flex-wrap: wrap;
  display: flex;
  justify-content: start;
  margin-bottom: 20px;
  gap: 10px;
}
.faqs_sec .cont ul li {
  width: 32%;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 10px;
  box-sizing: border-box;
}
.faqs_sec .cont ul li dt {
  cursor: pointer;
  font-weight: bold;
}
.faqs_sec .cont ul li dt:hover {
  text-decoration: underline;
}
.faqs_sec .cont ul li dt span {
  margin-right: 0.5em;
  background-color: #028aeb;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  width: 1.3em;
  height: 1.3em;
  text-align: center;
  line-height: 1.3em;
}
.faqs_sec .cont ul li dd {
  border-top: 1px dashed #000;
  padding-top: 10px;
  font-size: 15px;
  text-align: left;
  display: none;
  margin-top: 10px;
}
.faqs_sec .cont ul li dd span {
  margin-right: 0.5em;
}

.reserve_sec {
  background-color: #d7f7f8;
  padding: 50px 0 80px 0;
  z-index: -2;
}
.reserve_sec::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #d7f7f8;
  z-index: 12;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  pointer-events: none;
  mask-size: 70% 100%;
}
.reserve_sec .cont ul {
  display: flex;
  justify-content: space-between;
}
.reserve_sec .cont ul li {
  border: 2px solid #000;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 30px 20px;
  width: 48%;
  text-align: center;
}
.reserve_sec .cont ul li figure {
  width: 70%;
  max-width: 160px;
  margin: 0 auto;
}
.reserve_sec .cont ul li figure p {
  font-weight: bold;
  margin: 10px 0;
  font-size: min(3.8vw, 20px);
}
.reserve_sec .cont ul li .info p {
  margin-top: 10px;
}
.reserve_sec .cont ul li .info .btn {
  position: relative;
  z-index: 10;
}
.reserve_sec .cont ul li .info .btn a {
  cursor: pointer;
  background: #028aeb;
}
.reserve_sec .cont ul li .info .btn.line a {
  background: #079a0e;
  border-bottom: 3px solid #003b03;
}
.reserve_sec .flow {
  border-radius: 20px;
  margin-top: 30px;
  padding: 30px 30px;
  background-color: #fff;
}
.reserve_sec .flow h3 {
  text-align: center;
  font-size: min(3.8vw, 28px);
  margin-bottom: 20px;
}
.reserve_sec .flow dl {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.reserve_sec .flow dl dt {
  width: 30%;
  text-align: center;
  font-weight: bold;
  color: #0069b5;
}
.reserve_sec .flow dl dd {
  width: 70%;
}

.spot_sec {
  background-color: #fff;
  padding: 80px 0 80px 0;
  position: relative;
  text-align: center;
  border-bottom: 5px solid #d7f7f8;
}
.spot_sec::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 12;
  mask-image: url("../images/plan_sec_bg.svg?12");
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 70% 100%;
}
.spot_sec .logo {
  width: 70%;
  max-width: 450px;
  margin: 20px auto;
}