@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
- base
- fadein
- header
- footer
- fixed_btn
- cmn_btn
- MV
- bg_gradation
- water_drop_area
- intro_sec
- img_visual_sec
- summerfes_sec
- title_area
- information_sec
- use_sec
- access_sec
-------------------------*/
/*=======================================
　base
=======================================*/
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #231815;
  font-weight: 400;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  body {
    overflow-x: scroll;
    width: 1280px;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*アンカーリンク*/
.anchor {
  padding-top: 90px;
  margin-top: -90px;
  display: block;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 64px;
    margin-top: -64px;
  }
}
.anchor__02 {
  padding-top: 140px;
  margin-top: -140px;
}
@media screen and (max-width: 768px) {
  .anchor__02 {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/*コンテンツ幅*/
.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}

/* PCではTELのリンク無効 */
@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
main {
  overflow-x: hidden;
  overflow-y: clip;
}

/*=======================================
　fadein
=======================================*/
body {
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
          animation: fadeIn 1.5s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* その場で出現 */
.fadeIn {
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fadeIn.is-show {
  opacity: 1;
}

/* 下から表示 */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* 縮小 */
.fadeIn_shrink {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fadeIn_shrink.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*=======================================
　header
=======================================*/
header {
  position: sticky;
  top: 0px;
  width: 100%;
  height: 90px;
  background: #fff;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  header {
    height: 64px;
  }
}
header .pc .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1690px;
}
@media screen and (max-width: 768px) {
  header .pc nav {
    display: none;
  }
}
header .pc nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
header .pc nav ul li a {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #040000;
  font-weight: 800;
}
@media only screen and (max-width: 1720px) {
  header .pc nav ul li a {
    font-size: 20px;
  }
}
header .logo {
  width: 252px;
}
@media only screen and (max-width: 1720px) {
  header .logo {
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 169.99975px;
    margin-left: 15px;
  }
}

header .sp .openbtn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 64px;
  height: 64px;
  z-index: 5;
  background: #040000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .sp .openbtn .openbtn_inn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 17.5px;
  width: 26px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 9px;
}
header .sp .openbtn .openbtn_inn .openbtn_line {
  width: 100%;
  height: 100%;
  position: relative;
}
header .sp .openbtn .openbtn_inn .openbtn_line span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
header .sp .openbtn .openbtn_inn .openbtn_line span:nth-of-type(1) {
  top: 0;
}
header .sp .openbtn .openbtn_inn .openbtn_line span:nth-of-type(2) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .sp .openbtn .openbtn_inn .openbtn_line span:nth-of-type(3) {
  top: calc(100% - 2px);
}
header .sp .openbtn .openbtn_inn .menu_txt {
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
}
header .sp .openbtn.active {
  background: #fff;
}
header .sp .openbtn.active .openbtn_line span {
  background: #040000;
}
header .sp .openbtn.active .openbtn_line span:nth-of-type(1) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .sp .openbtn.active .openbtn_line span:nth-of-type(2) {
  display: none;
}
header .sp .openbtn.active .openbtn_line span:nth-of-type(3) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .sp .openbtn.active .menu_txt {
  color: #040000;
}
header .sp .g_nav {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  width: 180px;
  height: 100vh;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: block;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
header .sp .g_nav.panelactive {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
header .sp .g_nav .g_nav_inn {
  height: 100%;
  overflow-y: scroll;
  padding: 72.5px 24px;
}
header .sp .g_nav .g_nav_inn nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17.5px 0;
  height: 100%;
}
header .sp .g_nav .g_nav_inn nav ul li {
  width: 100%;
}
header .sp .g_nav .g_nav_inn nav ul li a {
  color: #040000;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/*=======================================
　footer
=======================================*/
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 36.1105px;
  height: 289.836px;
  max-width: 1920px;
  margin: 0 auto 123.5834px;
}
@media only screen and (max-width: 1280px) {
  footer {
    width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    height: 144.918px;
    margin-bottom: 18vw;
    row-gap: 18.05525px;
  }
}
footer .logo.nesta a {
	display: block;
}
@media screen and (max-width: 768px) {
  footer .logo.nesta a {
    -webkit-column-gap: 15.52285px;
       -moz-column-gap: 15.52285px;
            column-gap: 15.52285px;
  }
}
footer .logo.nesta img {
  display: inline-block;
  width: 86px; 
  height: auto;
  vertical-align: top;
  margin: 2px 20px 0 0;
 }
@media screen and (max-width: 768px) {
  footer .logo.nesta img {
    width: 44px;
    margin: 2px 10px 0 0;
  }
}
footer .logo.samty img {
  width: 376.8781px;
}
@media screen and (max-width: 768px) {
  footer .logo.samty img {
    width: 188.43905px;
  }
}
footer .logo span {
  font-size: 24px;
  line-height: 1.675;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer .logo span {
    font-size: 12px;
  }
}

/*=======================================
　fixed_btn
=======================================*/
.fixed_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background: rgba(0, 104, 183, 0.5);
  height: 123.5834px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .fixed_btn {
    height: 18vw;
  }
}

/*=======================================
　cmn_btn
=======================================*/
.cmn_btn01 {
  width: 505.7616px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .cmn_btn01 {
    width: 75vw;
    height: 13.5vw;
  }
}
.cmn_btn01 a {
  background: #e4007f;
  border: 4px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50vw;
  height: 100%;
  font-size: 24px;
  line-height: 1.583;
  letter-spacing: 0.06em;
  color: #fff;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cmn_btn01 a {
    font-size: 4vw;
  }
}
.cmn_btn01 a::after {
  content: "";
  width: 23.8928px;
  height: 27.589px;
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 39.302px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .cmn_btn01 a::after {
    width: 3.5vw;
    height: 4vw;
    right: 4.91275vw;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .cmn_btn01 a:hover {
    opacity: 1;
    background: #fff;
    border: 4px solid #e4007f;
    color: #e4007f;
  }
  .cmn_btn01 a:hover::after {
    background: #e4007f;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .cmn_btn01 a:hover {
    opacity: 1;
    background: #fff;
    border: 4px solid #e4007f;
    color: #e4007f;
  }
  .cmn_btn01 a:hover::after {
    background: #e4007f;
  }
}
.cmn_btn01__pink02 a {
  background: #b60081;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .cmn_btn01__pink02 a:hover {
    border: 4px solid #b60081;
    color: #b60081;
  }
  .cmn_btn01__pink02 a:hover::after {
    background: #b60081;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .cmn_btn01__pink02 a:hover {
    border: 4px solid #b60081;
    color: #b60081;
  }
  .cmn_btn01__pink02 a:hover::after {
    background: #b60081;
  }
}
.cmn_btn01__arrow_none a::after {
  display: none;
}

.cmn_btn02 {
  width: 446.1018px;
  height: 67.4494px;
}
@media only screen and (max-width: 1600px) {
  .cmn_btn02 {
    width: 23.23446875vw;
    height: 3.83529375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .cmn_btn02 {
    width: 297.4012px;
    height: 47.633px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_btn02 {
    width: 310px;
  }
}
.cmn_btn02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 4px solid #fff;
  background: #fff;
  color: #231815;
  height: 100%;
  border-radius: 50vw;
  font-size: 22px;
  line-height: 1.583;
  letter-spacing: 0.06em;
  font-weight: 700;
  position: relative;
  padding-right: 38.6588px;
}
@media only screen and (max-width: 1600px) {
  .cmn_btn02 a {
    font-size: 1.15vw;
    padding-right: 2.0135vw;
  }
}
@media only screen and (max-width: 1280px) {
  .cmn_btn02 a {
    font-size: 15px;
    padding-right: 25.7727px;
  }
}
.cmn_btn02 a::after {
  content: "";
  width: 23.8928px;
  height: 27.589px;
  display: inline-block;
  background: #231815;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16.9541px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1600px) {
  .cmn_btn02 a::after {
    width: 1.24441875vw;
    height: 1.43693125vw;
    right: 0.92201875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .cmn_btn02 a::after {
    width: 15.9285px;
    height: 18.3926px;
    right: 12.6606px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .cmn_btn02 a:hover {
    opacity: 1;
    background: #231815;
    color: #fff;
  }
  .cmn_btn02 a:hover::after {
    background: #fff;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .cmn_btn02 a:hover {
    opacity: 1;
    background: #231815;
    color: #fff;
  }
  .cmn_btn02 a:hover::after {
    background: #fff;
  }
}

/*=======================================
　MV
=======================================*/
.mv_sec {
  max-width: 1920px;
  margin: 0 auto -1px;
}
@media only screen and (max-width: 1280px) {
  .mv_sec {
    width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec {
    width: 100%;
    margin-bottom: -3px;
  }
}

/*=======================================
　bg_gradation
=======================================*/
.bg_gradation {
  background: repeating-linear-gradient(180deg, #0068b7 0%, #00b9ef 10%, #0068b7 20%, #00b9ef 30%, #0068b7 40%, #00b9ef 50%, #0068b7 60%, #00b9ef 100%);
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 185.4391px;
}
@media only screen and (max-width: 1600px) {
  .bg_gradation {
    padding-top: 9.6582875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .bg_gradation {
    width: 1280px;
    padding-top: 123.6261px;
  }
}
@media screen and (max-width: 768px) {
  .bg_gradation {
    width: 100%;
    padding-top: 25.76685vw;
  }
}

/*=======================================
　water_drop_area
=======================================*/
.water_drop_area {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.water_drop_area img {
  position: absolute;
}
.water_drop_area.pc .left, .water_drop_area.pc .right {
  position: absolute;
  top: 0;
  width: 100%;
}
.water_drop_area.pc .left {
  left: 0;
}
.water_drop_area.pc .left img:nth-child(1) {
  width: 90.854px;
  top: 31.0459px;
  left: 155.89px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(1) {
    width: 4.73198125vw;
    top: 1.590025vw;
    left: 8.1065625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(1) {
    width: 60.5693px;
    top: 20.3884px;
    left: 104.7708px;
  }
}
.water_drop_area.pc .left img:nth-child(2) {
  width: 159.5312px;
  top: 175.7064px;
  left: 12.3303px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(2) {
    width: 8.30891875vw;
    top: 9.124525vw;
    left: 0.4592875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(2) {
    width: 106.3541px;
    top: 117.1695px;
    left: 6.1024px;
  }
}
.water_drop_area.pc .left img:nth-child(3) {
  width: 118.2604px;
  top: 301.6514px;
  left: -48.4404px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(3) {
    width: 6.15939375vw;
    top: 15.75755vw;
    left: -2.59575625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(3) {
    width: 78.8403px;
    top: 201.4893px;
    left: -32.7246px;
  }
}
.water_drop_area.pc .left img:nth-child(4) {
  width: 41.406px;
  top: 422.7523px;
  left: 77.945px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(4) {
    width: 2.1565625vw;
    top: 21.9226875vw;
    left: 3.92718125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(4) {
    width: 27.604px;
    top: 280.7554px;
    left: 51.1653px;
  }
}
.water_drop_area.pc .left img:nth-child(5) {
  width: 69.4072px;
  top: 457.7615px;
  left: 133.4312px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(5) {
    width: 3.61495625vw;
    top: 23.87681875vw;
    left: 6.9547vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(5) {
    width: 46.2715px;
    top: 306.5168px;
    left: 89.6974px;
  }
}
.water_drop_area.pc .left img:nth-child(6) {
  width: 87.8681px;
  top: 635.1698px;
  left: 153.6548px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(6) {
    width: 4.5764625vw;
    top: 33.097vw;
    left: 8.000575vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(6) {
    width: 58.5787px;
    top: 423.6544px;
    left: 102.6883px;
  }
}
.water_drop_area.pc .left img:nth-child(7) {
  width: 159.5312px;
  top: 783.2696px;
  left: 25.5229px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(7) {
    width: 8.3089125vw;
    top: 40.79768125vw;
    left: 1.35091875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(7) {
    width: 106.3541px;
    top: 521.9736px;
    left: 17.211px;
  }
}
.water_drop_area.pc .left img:nth-child(8) {
  width: 69.4072px;
  top: 1145.2513px;
  left: 110.0734px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(8) {
    width: 3.61495625vw;
    top: 59.7197vw;
    left: 5.7270625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(8) {
    width: 46.2715px;
    top: 764.3957px;
    left: 73.1376px;
  }
}
.water_drop_area.pc .left img:nth-child(9) {
  width: 41.406px;
  top: 1222.4859px;
  left: 84.3119px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(9) {
    width: 2.1565625vw;
    top: 63.64171875vw;
    left: 4.42583125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(9) {
    width: 27.604px;
    top: 815.0379px;
    left: 56.4037px;
  }
}
.water_drop_area.pc .left img:nth-child(10) {
  width: 137.5139px;
  top: 1319.6366px;
  left: 69.1193px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(10) {
    width: 7.16218125vw;
    top: 68.7609875vw;
    left: 3.55275vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(10) {
    width: 91.6759px;
    top: 880.2122px;
    left: 45.8349px;
  }
}
.water_drop_area.pc .left img:nth-child(11) {
  width: 69.4072px;
  top: 1467.5999px;
  left: 47.3211px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(11) {
    width: 3.61495625vw;
    top: 76.4398875vw;
    left: 2.4518375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(11) {
    width: 46.2715px;
    top: 977.9736px;
    left: 31.582px;
  }
}
.water_drop_area.pc .left img:nth-child(12) {
  width: 82.2382px;
  top: 1517.8017px;
  left: 133.8532px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(12) {
    width: 4.2832375vw;
    top: 79.0408vw;
    left: 6.99311875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(12) {
    width: 54.8254px;
    top: 1011.992px;
    left: 89.4312px;
  }
}
.water_drop_area.pc .left img:nth-child(13) {
  width: 131.409px;
  top: 1661.8017px;
  left: 52.6055px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(13) {
    width: 6.84421875vw;
    top: 86.5926vw;
    left: 2.69954375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(13) {
    width: 87.606px;
    top: 1108.5008px;
    left: 34.3853px;
  }
}
.water_drop_area.pc .left img:nth-child(14) {
  width: 137.5139px;
  top: 1828.2604px;
  left: -81.4862px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(14) {
    width: 7.16218125vw;
    top: 95.1623625vw;
    left: -4.2087125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(14) {
    width: 91.6759px;
    top: 1218.8128px;
    left: -54.1284px;
  }
}
.water_drop_area.pc .left img:nth-child(15) {
  width: 97.4077px;
  top: 1937.9118px;
  left: 156.9725px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .left img:nth-child(15) {
    width: 5.07331875vw;
    top: 100.9215375vw;
    left: 8.20413125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .left img:nth-child(15) {
    width: 64.9385px;
    top: 1292.1339px;
    left: 104.844px;
  }
}
.water_drop_area.pc .right {
  right: 0;
}
.water_drop_area.pc .right img:nth-child(1) {
  width: 41.406px;
  top: 106.789px;
  right: 63.4128px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(1) {
    width: 2.1565625vw;
    top: 5.5465375vw;
    right: 3.30275vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(1) {
    width: 27.604px;
    top: 71.1461px;
    right: 41.8512px;
  }
}
.water_drop_area.pc .right img:nth-child(2) {
  width: 69.4072px;
  top: 177.0275px;
  right: 103.2661px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(2) {
    width: 3.61495625vw;
    top: 9.248375vw;
    right: 5.39449375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(2) {
    width: 46.2715px;
    top: 118.4801px;
    right: 69.1467px;
  }
}
.water_drop_area.pc .right img:nth-child(3) {
  width: 82.2382px;
  top: 227.6697px;
  right: 3.5229px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(3) {
    width: 4.2832375vw;
    top: 11.856175vw;
    right: 0.19954375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(3) {
    width: 54.8255px;
    top: 151.5076px;
    right: 2.1009px;
  }
}
.water_drop_area.pc .right img:nth-child(4) {
  width: 131.409px;
  top: 372.9908px;
  right: -75.7431px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(4) {
    width: 6.84421875vw;
    top: 19.3699375vw;
    right: -3.9289vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(4) {
    width: 87.606px;
    top: 248.2783px;
    right: -50.7432px;
  }
}
.water_drop_area.pc .right img:nth-child(5) {
  width: 137.5139px;
  top: 486.1651px;
  right: 72.4404px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(5) {
    width: 7.16218125vw;
    top: 25.3148875vw;
    right: 3.72935625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(5) {
    width: 91.6759px;
    top: 324.2644px;
    right: 47.8981px;
  }
}
.water_drop_area.pc .right img:nth-child(6) {
  width: 97.4077px;
  top: 701.0642px;
  right: 3.3028px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(6) {
    width: 5.07331875vw;
    top: 36.54425vw;
    right: 0.1789vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(6) {
    width: 64.9385px;
    top: 467.9254px;
    right: 1.641px;
  }
}
.water_drop_area.pc .right img:nth-child(7) {
  width: 137.5139px;
  top: 778.6458px;
  right: 61.4495px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(7) {
    width: 7.16218125vw;
    top: 40.5775vw;
    right: 3.1651375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(7) {
    width: 91.6759px;
    top: 517.7902px;
    right: 40.3303px;
  }
}
.water_drop_area.pc .right img:nth-child(8) {
  width: 69.4072px;
  top: 962.2788px;
  right: 143.3578px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(8) {
    width: 3.61495625vw;
    top: 50.1004375vw;
    right: 7.41743125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(8) {
    width: 46.2715px;
    top: 641.0929px;
    right: 94.9358px;
  }
}
.water_drop_area.pc .right img:nth-child(9) {
  width: 82.2382px;
  top: 1083.1595px;
  right: 34.367px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(9) {
    width: 4.2832375vw;
    top: 56.4307125vw;
    right: 1.80275vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(9) {
    width: 54.8254px;
    top: 721.6801px;
    right: 23.156px;
  }
}
.water_drop_area.pc .right img:nth-child(10) {
  width: 131.409px;
  top: 1190.8292px;
  right: 46.2202px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(10) {
    width: 6.84421875vw;
    top: 62.01786875vw;
    right: 2.44954375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(10) {
    width: 87.606px;
    top: 793.9003px;
    right: -31.0092px;
  }
}
.water_drop_area.pc .right img:nth-child(11) {
  width: 69.4072px;
  top: 1371.8201px;
  right: 3.3211px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(11) {
    width: 3.61495625vw;
    top: 71.4307125vw;
    right: 0.151375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(11) {
    width: 46.2715px;
    top: 914.5608px;
    right: 2.0183px;
  }
}
.water_drop_area.pc .right img:nth-child(12) {
  width: 159.5312px;
  top: 1514.499px;
  right: -62.0734px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(12) {
    width: 8.3089125vw;
    top: 78.889425vw;
    right: -3.23394375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(12) {
    width: 106.3541px;
    top: 1009.2397px;
    right: -41.1376px;
  }
}
.water_drop_area.pc .right img:nth-child(13) {
  width: 118.2604px;
  top: 1734.4623px;
  right: 33.7064px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(13) {
    width: 6.15939375vw;
    top: 90.3664875vw;
    right: 1.76146875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(13) {
    width: 78.8402px;
    top: 1156.7626px;
    right: 22.7156px;
  }
}
.water_drop_area.pc .right img:nth-child(14) {
  width: 69.4072px;
  top: 1868.554px;
  right: 79.945px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(14) {
    width: 3.61495625vw;
    top: 97.30226875vw;
    right: 4.1559625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(14) {
    width: 46.2715px;
    top: 1245.2764px;
    right: 53.1009px;
  }
}
.water_drop_area.pc .right img:nth-child(15) {
  width: 41.406px;
  top: 1906.8659px;
  right: 33.7064px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(15) {
    width: 2.1565625vw;
    top: 99.3664875vw;
    right: 1.76146875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(15) {
    width: 27.604px;
    top: 1271.9186px;
    right: 22.7156px;
  }
}
.water_drop_area.pc .right img:nth-child(16) {
  width: 87.8681px;
  top: 1972.2604px;
  right: 58.8073px;
}
@media only screen and (max-width: 1600px) {
  .water_drop_area.pc .right img:nth-child(16) {
    width: 4.5764625vw;
    top: 102.7242875vw;
    right: 3.0412875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .water_drop_area.pc .right img:nth-child(16) {
    width: 58.5788px;
    top: 1314.8544px;
    right: 39.0092px;
  }
}
.water_drop_area.sp {
  z-index: 0;
}

/* 水滴 */
.drop01 {
  -webkit-animation: yurayura01 2s ease-in-out infinite alternate;
          animation: yurayura01 2s ease-in-out infinite alternate;
}

.drop02 {
  -webkit-animation: yurayura02 2s ease-in-out infinite alternate;
          animation: yurayura02 2s ease-in-out infinite alternate;
}

.drop03 {
  -webkit-animation: yurayura03 2s ease-in-out infinite alternate;
          animation: yurayura03 2s ease-in-out infinite alternate;
}

.drop04 {
  -webkit-animation: yurayura04 3s ease-in-out infinite alternate;
          animation: yurayura04 3s ease-in-out infinite alternate;
}

.drop05 {
  -webkit-animation: yurayura05 3s ease-in-out infinite alternate;
          animation: yurayura05 3s ease-in-out infinite alternate;
}

.drop06 {
  -webkit-animation: yurayura06 3s ease-in-out infinite alternate;
          animation: yurayura06 3s ease-in-out infinite alternate;
}

@-webkit-keyframes yurayura01 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-30deg);
            transform: translate(0, 0) rotate(-30deg);
  }
  50% {
    -webkit-transform: translate(0, -30px) rotate(0deg);
            transform: translate(0, -30px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(30deg);
            transform: translate(0, 0) rotate(30deg);
  }
}

@keyframes yurayura01 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-30deg);
            transform: translate(0, 0) rotate(-30deg);
  }
  50% {
    -webkit-transform: translate(0, -30px) rotate(0deg);
            transform: translate(0, -30px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(30deg);
            transform: translate(0, 0) rotate(30deg);
  }
}
@-webkit-keyframes yurayura02 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-20deg);
            transform: translate(0, 0) rotate(-20deg);
  }
  50% {
    -webkit-transform: translate(0, -20px) rotate(0deg);
            transform: translate(0, -20px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
}
@keyframes yurayura02 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-20deg);
            transform: translate(0, 0) rotate(-20deg);
  }
  50% {
    -webkit-transform: translate(0, -20px) rotate(0deg);
            transform: translate(0, -20px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
}
@-webkit-keyframes yurayura03 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-15deg);
            transform: translate(0, 0) rotate(-15deg);
  }
  50% {
    -webkit-transform: translate(0, -15px) rotate(0deg);
            transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(15deg);
            transform: translate(0, 0) rotate(15deg);
  }
}
@keyframes yurayura03 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-15deg);
            transform: translate(0, 0) rotate(-15deg);
  }
  50% {
    -webkit-transform: translate(0, -15px) rotate(0deg);
            transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(15deg);
            transform: translate(0, 0) rotate(15deg);
  }
}
@-webkit-keyframes yurayura04 {
  0% {
    -webkit-transform: translate(0, 0) rotate(30deg);
            transform: translate(0, 0) rotate(30deg);
  }
  50% {
    -webkit-transform: translate(0, 30px) rotate(0deg);
            transform: translate(0, 30px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-30deg);
            transform: translate(0, 0) rotate(-30deg);
  }
}
@keyframes yurayura04 {
  0% {
    -webkit-transform: translate(0, 0) rotate(30deg);
            transform: translate(0, 0) rotate(30deg);
  }
  50% {
    -webkit-transform: translate(0, 30px) rotate(0deg);
            transform: translate(0, 30px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-30deg);
            transform: translate(0, 0) rotate(-30deg);
  }
}
@-webkit-keyframes yurayura05 {
  0% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
  50% {
    -webkit-transform: translate(0, 20px) rotate(0deg);
            transform: translate(0, 20px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-20deg);
            transform: translate(0, 0) rotate(-20deg);
  }
}
@keyframes yurayura05 {
  0% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
  50% {
    -webkit-transform: translate(0, 20px) rotate(0deg);
            transform: translate(0, 20px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-20deg);
            transform: translate(0, 0) rotate(-20deg);
  }
}
@-webkit-keyframes yurayura06 {
  0% {
    -webkit-transform: translate(0, 0) rotate(15deg);
            transform: translate(0, 0) rotate(15deg);
  }
  50% {
    -webkit-transform: translate(0, 15px) rotate(0deg);
            transform: translate(0, 15px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-15deg);
            transform: translate(0, 0) rotate(-15deg);
  }
}
@keyframes yurayura06 {
  0% {
    -webkit-transform: translate(0, 0) rotate(15deg);
            transform: translate(0, 0) rotate(15deg);
  }
  50% {
    -webkit-transform: translate(0, 15px) rotate(0deg);
            transform: translate(0, 15px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-15deg);
            transform: translate(0, 0) rotate(-15deg);
  }
}
.freewall_sec .water_drop_area.sp img {
  width: 21.1573875vw;
  top: 0;
  left: 5.75vw;
}

.intro_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
  top: 674.5413px;
}
@media only screen and (max-width: 1600px) {
  .intro_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: 29.193vw;
  }
}
@media only screen and (max-width: 1280px) {
  .intro_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: 33.193vw;
  }
}
@media only screen and (max-width: 1600px) {
  .intro_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) .left img:nth-child(6) {
    left: 5.125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .intro_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) .left img:nth-child(6) {
    left: 80px;
  }
}
.intro_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
  top: 1850.2018px;
}
@media only screen and (max-width: 1600px) {
  .intro_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 87.5vw;
  }
}
@media only screen and (max-width: 1280px) {
  .intro_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 1250.2284px;
  }
}
.intro_sec .water_drop_area.sp {
  top: -55.6425vw;
  left: -2vw;
  width: 100%;
}
.intro_sec .water_drop_area.sp img{position: absolute; height: auto;}
.intro_sec .water_drop_area.sp .drop_sp02_5{right: 7vw; 
	bottom: -4vw; width: 5vw;}
.intro_sec .water_drop_area.sp .drop_sp02_4{right: 15vw; bottom: -14vw; width: 7%;}
.intro_sec .water_drop_area.sp .drop_sp02_3{right: 0px; bottom: -24vw; width: 11%;}
.intro_sec .water_drop_area.sp .drop_sp02_2{right: 0px; bottom: -86vw; width: 13%;}
.intro_sec .water_drop_area.sp .drop_sp02_1{left: 0px; bottom: -60vw; width: 11%;}

.nav_sec .water_drop_area.sp {
  top: 110.84245vw;
  width: 100%;
  z-index: -1;
}

.pool_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
  top: 1300px;
}
@media only screen and (max-width: 1600px) {
  .pool_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: 64.27981875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .pool_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: 823.7064px;
  }
}
.pool_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
  top: 3347.0092px;
}
@media only screen and (max-width: 1600px) {
  .pool_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 174.32339375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .pool_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 2232px;
  }
}
.pool_sec .water_drop_area.sp {
  width: 36.25vw;
  top: 0vw;
  left: auto;
  right: 0;
}

.slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
  top: -1055.8257px;
}
@media only screen and (max-width: 1600px) {
  .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: -54.96616875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: -704.0826px;
  }
}
.slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(1), .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(2), .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(3), .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(4), .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(5), .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(6), .slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) img:nth-child(7) {
  visibility: hidden;
  opacity: 0;
}
.slider_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) .right img:nth-child(8) {
  visibility: hidden;
  opacity: 0;
}
.slider_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
  top: 1055.8257px;
}
@media only screen and (max-width: 1600px) {
  .slider_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 54.96616875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .slider_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 704.0826px;
  }
}
.slider_sec .water_drop_area.pc:nth-child(3 of .water_drop_area.pc) {
  top: 3169.2569px;
}
@media only screen and (max-width: 1600px) {
  .slider_sec .water_drop_area.pc:nth-child(3 of .water_drop_area.pc) {
    top: 165.1336vw;
  }
}
@media only screen and (max-width: 1280px) {
  .slider_sec .water_drop_area.pc:nth-child(3 of .water_drop_area.pc) {
    top: 2113.367px;
  }
}
.slider_sec .water_drop_area.pc:nth-child(4 of .water_drop_area.pc) {
  top: 5282.6881px;
}
@media only screen and (max-width: 1600px) {
  .slider_sec .water_drop_area.pc:nth-child(4 of .water_drop_area.pc) {
    top: 275.19781875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .slider_sec .water_drop_area.pc:nth-child(4 of .water_drop_area.pc) {
    top: 3521.9908px;
  }
}
.slider_sec .water_drop_area.sp {
  left: auto;
}
.slider_sec .water_drop_area.sp:nth-child(1 of .water_drop_area.sp) {
  width: 36.25vw;
  top: -12.5vw;
}

.rental_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
  top: 1098.1744px;
}
@media only screen and (max-width: 1600px) {
  .rental_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: 57.223625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .rental_sec .water_drop_area.pc:nth-child(1 of .water_drop_area.pc) {
    top: 731.5596px;
  }
}
.rental_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
  top: 3210.945px;
}
@media only screen and (max-width: 1600px) {
  .rental_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 167.27408125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .rental_sec .water_drop_area.pc:nth-child(2 of .water_drop_area.pc) {
    top: 2141.3945px;
  }
}
.rental_sec .water_drop_area.sp:nth-child(1 of .water_drop_area.sp) {
  left: auto;
  width: 31.058725vw;
  top: 25vw;
  right: 3.75vw;
}
.rental_sec .water_drop_area.sp:nth-child(2 of .water_drop_area.sp) {
  width: 94.25vw;
  top: 902.125vw;
}

/*=======================================
　movie_sec
=======================================*/
.movie_sec {
  margin-bottom: 90.6606px;
  position: relative;
}
@media only screen and (max-width: 1600px) {
  .movie_sec {
    margin-bottom: 4.8165125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .movie_sec {
    margin-bottom: 6.8165125vw;
  }
}
@media screen and (max-width: 768px) {
  .movie_sec {
    margin-bottom: 8.7533375vw;
  }
}
.movie_sec .inner {
  width: 1279.4123px;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 1600px) {
  .movie_sec .inner {
    width: 66.6360625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .movie_sec .inner {
    width: 852.9416px;
  }
}
@media screen and (max-width: 768px) {
  .movie_sec .inner {
    width: 100%;
  }
}
.movie_sec .inner .copy {
  width: 724.5029px;
  margin: 0 auto 30.6138px;
}
@media only screen and (max-width: 1600px) {
  .movie_sec .inner .copy {
    width: 37.734525vw;
    margin-bottom: 1.59446875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .movie_sec .inner .copy {
    width: 483.002px;
    margin-bottom: 20.4092px;
  }
}
@media screen and (max-width: 768px) {
  .movie_sec .inner .copy {
    width: 78.4880375vw;
    margin-bottom: 3.8016375vw;
  }
}
.movie_sec .inner .copy img {
  width: 100%;
}
.movie_sec .inner iframe {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1279.4123/719.6694;
  width: 100%;
  height: auto;
}
.movie_sec .water_drop_area.pc {
  top: -190px;
}
@media only screen and (max-width: 1600px) {
  .movie_sec .water_drop_area.pc {
    top: -8.03978125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .movie_sec .water_drop_area.pc {
    top: -101.9943px;
  }
}

/*=======================================
　intro_sec
=======================================*/
.intro_sec {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .intro_sec {
    z-index: 0;
  }
}
.intro_sec .copy {
  width: 800.9478px;
  margin: 0 auto 49.4185px;
}
@media only screen and (max-width: 1600px) {
  .intro_sec .copy {
    width: 51.1952vw;
    margin-bottom: 2.57388125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .intro_sec .copy {
    width: 655.2985px;
    margin-bottom: 32.9457px;
  }
}
@media screen and (max-width: 768px) {
  .intro_sec .copy {
    width: 66.30235vw;
    margin-bottom: 4.9584875vw;
  }
}
.intro_sec .lead_txt {
  font-weight: 900;
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 1.537;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1600px) {
  .intro_sec .lead_txt {
    font-size: 2.650vw;
  }
}
@media only screen and (max-width: 1280px) {
  .intro_sec .lead_txt {
    font-size: 38.5024px;
  }
}
@media screen and (max-width: 768px) {
  .intro_sec .lead_txt {
    font-size: 4.2vw;
  }
}

/*=======================================
　nav_sec
=======================================*/
.nav_sec {
  padding: 92px 0 300px;
  margin-bottom: 10px;
  background: url("../images/nav_bg.png") no-repeat;
  background-size: cover !important;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 1600px) {
  .nav_sec {
    padding: 5.75vw 0 18.75vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec {
    padding: 70px 0 240px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec {
    padding: 20.46745vw 0 27.625vw;
    background: url("../images/nav_bg_sp.png") no-repeat;
    position: relative;
  }
}
.nav_sec .inner {
  max-width: 1280px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner {
    max-width: 65.81293125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner {
    max-width: 853.0909px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner {
    width: 77.64%;
  }
}
.nav_sec .inner .bg_img {
  width: 1278.5995px;
  margin: 0 auto -80px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .bg_img {
    width: 66.593725vw;
    margin-bottom: -4.21555vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .bg_img {
    width: 852.3997px;
    margin-bottom: -53.7113px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .bg_img {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    margin-bottom: -8.25vw;
  }
}
.nav_sec .inner .nav_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 35.9371px 2.96%;
  margin-bottom: 52.844px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area {
    margin-bottom: 2.75229375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area {
    margin-bottom: 35.2294px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4.084vw;
    margin-bottom: 5.084vw;
  }
}
.nav_sec .inner .nav_area li {
  width: 48.52%;
  padding: 15.9358px;
  border-radius: 50px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li {
    padding: 0.80504375vw;
    border-radius: 2.1875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li {
    padding: 10.6388px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li {
    width: 100%;
    padding: 2vw;
    border-radius: 5.625vw;
  }
}
.nav_sec .inner .nav_area li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav_sec .inner .nav_area li a .img_area {
  width: 332.2298px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li a .img_area {
    width: 17.3036375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li a .img_area {
    width: 221.4866px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li a .img_area {
    width: 41.528725vw;
  }
}
.nav_sec .inner .nav_area li a .txt_area {
  line-height: 1.4;
  color: #fff;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-bottom: 54.8751px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li a .txt_area {
    padding-bottom: 2.9027375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li a .txt_area {
    padding-bottom: 37.1551px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li a .txt_area {
    padding-bottom: 6.9666625vw;
  }
}
.nav_sec .inner .nav_area li a .txt_area::after {
  content: "";
  width: 69.8585px;
  height: 34.9292px;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li a .txt_area::after {
    width: 3.6384625vw;
    height: 1.81923125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li a .txt_area::after {
    width: 46.5723px;
    height: 23.2861px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li a .txt_area::after {
    width: 8.7323vw;
    height: 4.36615vw;
  }
}
.nav_sec .inner .nav_area li a .txt_area p {
  font-size: 27.4725px;
  font-weight: 700;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li a .txt_area p {
    font-size: 1.43085625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li a .txt_area p {
    font-size: 18.315px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li a .txt_area p {
    font-size: 3.4340625vw;
  }
}
.nav_sec .inner .nav_area li a .txt_area strong {
  font-size: 43.0402px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li a .txt_area strong {
    font-size: 2.24168125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li a .txt_area strong {
    font-size: 28.6935px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li a .txt_area strong {
    font-size: 5.380025vw;
  }
}
.nav_sec .inner .nav_area li.pool {
  background: #ca1c1d;
}
.nav_sec .inner .nav_area li.pool .txt_area {
  padding-bottom: 80.7062px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .nav_area li.pool .txt_area {
    padding-bottom: 4.20345vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .nav_area li.pool .txt_area {
    padding-bottom: 53.8042px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .nav_area li.pool .txt_area {
    padding-bottom: 10.08825vw;
  }
}
.nav_sec .inner .nav_area li.slider {
  background: #e68011;
}
.nav_sec .inner .nav_area li.rental {
  background: #a90d78;
}
.nav_sec .inner .nav_area li.fes {
  background: #1d2975;
}
.nav_sec .inner .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 26.3486px;
}
@media only screen and (max-width: 1600px) {
  .nav_sec .inner .btn_area {
    row-gap: 1.2889875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_sec .inner .btn_area {
    row-gap: 14.899px;
  }
}
@media screen and (max-width: 768px) {
  .nav_sec .inner .btn_area {
    row-gap: 4vw;
  }
}
.nav_sec .inner .btn_area .cmn_btn01 {
  margin: 0 auto;
}

/*=======================================
　img_visual_sec
=======================================*/
.img_visual_sec {
  position: relative;
}
.img_visual_sec .bg {
  position: relative;
  background-size: 1920px auto !important;
  background-position-x: center !important;
  background-position-y: bottom !important;
  height: 100%;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg {
    background-size: 100vw auto !important;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg {
    background-size: 1280px auto !important;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg {
    background-size: 100vw auto !important;
  }
}
.img_visual_sec .bg .bg_inn {
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .bg_inn {
    position: relative;
    right: auto;
    left: auto;
    width: 100%;
    height: 100%;
  }
}
.img_visual_sec .bg .img {
  position: absolute;
  overflow: hidden;
}
.img_visual_sec .bg .img__main {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.img_visual_sec .bg .point {
  position: absolute;
  -webkit-filter: drop-shadow(10px 10px 15px rgba(0, 89, 130, 0.8));
          filter: drop-shadow(10px 10px 15px rgba(0, 89, 130, 0.8));
  will-change: filter;
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .point {
    -webkit-filter: drop-shadow(5px 5px 7.5px rgba(0, 89, 130, 0.8));
            filter: drop-shadow(5px 5px 7.5px rgba(0, 89, 130, 0.8));
  }
}
.img_visual_sec .bg .hd_txt {
  position: absolute;
}
.img_visual_sec .bg .hd_txt img {
  width: 100%;
}
.img_visual_sec .bg .wavy_edge_box {
  position: absolute;
  background: url("../images/wavy_edge.svg") repeat-y;
  width: 456.48px;
  height: 456.48px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .wavy_edge_box {
    width: 22.5vw;
    height: 22.5vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .wavy_edge_box {
    width: 287.8064px;
    height: 287.8064px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .wavy_edge_box {
    width: 57.09vw;
    height: 57.09vw;
  }
}
.img_visual_sec .bg .wavy_edge_box__inn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.img_visual_sec .bg .wavy_edge_box__inn strong {
  color: #fff100;
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  display: block;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .wavy_edge_box__inn strong {
    font-size: 2.29166875vw;
    margin-bottom: 0.3125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .wavy_edge_box__inn strong {
    font-size: 29.3333px;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .wavy_edge_box__inn strong {
    font-size: 5.5vw;
    margin-bottom: 0.625vw;
  }
}
.img_visual_sec .bg .wavy_edge_box__inn sup {
  top: -1em;
  font-size: 40%;
}
.img_visual_sec .bg .wavy_edge_box__inn p {
  color: #fff;
  font-size: 32px;
  line-height: 1.625;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .wavy_edge_box__inn p {
    font-size: 1.66666875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .wavy_edge_box__inn p {
    font-size: 21.3333px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .wavy_edge_box__inn p {
    font-size: 4vw;
  }
}
.img_visual_sec .bg .btn_area {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .btn_area {
    width: 100%;
  }
}
.img_visual_sec .bg .btn_area .lead_txt {
  font-size: 40px;
  line-height: 1.13575;
  letter-spacing: 0.06em;
  color: #E4007F;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .btn_area .lead_txt {
    font-size: 2.23958125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .btn_area .lead_txt {
    font-size: 28.6667px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .btn_area .lead_txt {
    font-size: 5vw;
  }
}
.img_visual_sec .bg .btn_area .lead_txt__pink02 {
  color: #b60081;
}
.img_visual_sec .bg .btn_area .lead_txt__blue {
  color: #00a0e9;
}
.img_visual_sec .bg .btn_area .cmn_btn01 {
  margin: 0 auto;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 {
    width: 26.4250875vw;
    height: 4.16419375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 {
    width: 339.8411px;
    height: 53.2684px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 {
    width: 75vw;
    height: 13.5vw;
  }
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 a {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 a {
    font-size: 4vw;
  }
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 a::after {
    width: 1.24441875vw;
    height: 1.43693125vw;
    right: 2.456375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 a::after {
    width: 15.9285px;
    height: 18.3926px;
    right: 26.3088px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .btn_area .cmn_btn01 a::after {
    width: 3.5vw;
    height: 4vw;
    right: 4.91275vw;
  }
}
.img_visual_sec .bg .notes {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 18px;
  line-height: 1.555;
  letter-spacing: 0.06em;
  color: #fff;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec .bg .notes {
    font-size: 0.9375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec .bg .notes {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec .bg .notes {
    font-size: 10px;
  }
}
.img_visual_sec.freewall_sec {
  height: 1538.422px;
  margin-bottom: 94.6395px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec {
    height: 80.133025vw;
    margin-bottom: 4.79079375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec {
    height: 1026px;
    margin-bottom: 60.5221px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec {
    height: 248.125vw;
    margin-bottom: 7.5975125vw;
    z-index: 1;
  }
}
.img_visual_sec.freewall_sec .fadeIn_up {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.img_visual_sec.freewall_sec .bg {
  background: url("../images/freewall_bg.png") no-repeat;
  background-position-y: top !important;
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg {
    background: url("../images/freewall_bg_sp.png") no-repeat;
    background-position-y: 50.375vw !important;
  }
}
.img_visual_sec.freewall_sec .bg .copy {
  position: absolute;
}
.img_visual_sec.freewall_sec .bg .copy__main {
  width: 564px;
  top: 1032.4404px;
  right: 193.039px;
  -webkit-filter: drop-shadow(0 0 16.6667px #00a0e9);
          filter: drop-shadow(0 0 16.6667px #00a0e9);
  will-change: filter;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .copy__main {
    width: 29.388vw;
    top: 53.93858125vw;
    right: 10.098625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .copy__main {
    width: 377.5235px;
    top: 690px;
    right: 129.6147px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .copy__main {
    width: 57.625vw;
    top: 166.25vw;
    right: auto;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.img_visual_sec.freewall_sec .bg .copy__sub {
  width: 640.5px;
  top: 144.6606px;
  right: 48.9289px;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .copy__sub {
    width: 33.3360375vw;
    top: 7.55504375vw;
    right: 2.56995625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .copy__sub {
    width: 426.6203px;
    top: 95.2842px;
    right: 33.6147px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .copy__sub {
    width: 96.36vw;
    top: 51.75vw;
    right: auto;
    left: 1.875vw;
  }
}
.img_visual_sec.freewall_sec .bg .copy img {
  width: 100%;
}
.img_visual_sec.freewall_sec .bg .wavy_edge_box {
  top: 863.9174px;
  left: 136.2935px;
  width: 524.16px;
  height: 523.92px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box {
    top: 44.9334875vw;
    left: 7.67339375vw;
    width: 27.6vw;
    height: 27.615vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box {
    top: 576.9175px;
    left: 95.3104px;
    width: 359.28px;
    height: 359.28px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box {
    width: 65.49vw;
    height: 65.52vw;
    top: 0;
    left: auto;
    right: -6.125vw;
  }
}
.img_visual_sec.freewall_sec .bg .wavy_edge_box p {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box p {
    margin-bottom: 0.625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box p {
    margin-bottom: 5px;
  }
}
.img_visual_sec.freewall_sec .bg .wavy_edge_box img {
  width: 208.0395px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box img {
    width: 10.8353875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box img {
    width: 138.693px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .wavy_edge_box img {
    width: 26.0049375vw;
  }
}
.img_visual_sec.freewall_sec .bg .notes {
  position: absolute;
  font-size: 16px;
  line-height: 1.555;
  letter-spacing: 0.06em;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: 1386.3761px;
  right: 235.2368px;
  width: 405.8447px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .notes {
    top: 72.0825vw;
    right: 12.30929375vw;
    font-size: 0.8333125vw;
    width: 21.2vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .notes {
    top: 922.89px;
    right: 154.1934px;
    font-size: 10.667px;
    width: 270.2298px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .notes {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 225vw;
    font-size: 2vw;
    width: 79.855475vw;
  }
}
.img_visual_sec.freewall_sec .bg .movie_area {
  position: absolute;
  top: 1093.6514px;
  left: -220.9541px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-column-gap: 21.0453px;
     -moz-column-gap: 21.0453px;
          column-gap: 21.0453px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .movie_area {
    top: 56.84913125vw;
    left: -11.688075vw;
    -webkit-column-gap: 1.012775vw;
       -moz-column-gap: 1.012775vw;
            column-gap: 1.012775vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .movie_area {
    top: 726.1101px;
    left: -151.1927px;
    -webkit-column-gap: 11.3636px;
       -moz-column-gap: 11.3636px;
            column-gap: 11.3636px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .movie_area {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 190vw;
    row-gap: 18.125vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .movie_area .freewall_movie_img {
    display: contents;
  }
}
.img_visual_sec.freewall_sec .bg .movie_area .freewall_movie_img img {
  width: 441.2838px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.freewall_sec .bg .movie_area .freewall_movie_img img {
    width: 23.0668625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.freewall_sec .bg .movie_area .freewall_movie_img img {
    width: 296.8558px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.freewall_sec .bg .movie_area .freewall_movie_img img {
    width: 32.359025vw;
  }
}
.img_visual_sec.pool_sec {
  height: 4431.9633px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec {
    height: 234.375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec {
    height: 3025px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec {
    height: 648.5vw;
  }
}
.img_visual_sec.pool_sec .bg {
  background: url("../images/pool_bg.png") no-repeat;
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg {
    background: url("../images/pool_bg_sp.png") no-repeat;
    background-position-y: 46.625vw !important;
  }
}
.img_visual_sec.pool_sec .bg .img__main {
  width: 1284.4182px;
  top: 0;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .img__main {
    width: 66.89678125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .img__main {
    width: 856.2788px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .img__main {
    width: 84.953075vw;
    top: 43.625vw;
  }
}
.img_visual_sec.pool_sec .bg .img__sub01 {
  width: 919px;
  right: 40.7637px;
  top: 1171.8165px;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .img__sub01 {
    width: 47.86458125vw;
    top: 60.93578125vw;
    right: 2.23394375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .img__sub01 {
    width: 612.6667px;
    top: 782.0917px;
    right: 28.9449px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .img__sub01 {
    width: 47vw;
    top: 123.25vw;
    left: 0;
    right: auto;
  }
}
.img_visual_sec.pool_sec .bg .img__sub02 {
  width: 1113px;
  left: -153.7362px;
  top: 870.2752px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .img__sub02 {
    width: 57.96875vw;
    left: -7.972475vw;
    top: 45.14449375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .img__sub02 {
    width: 742px;
    top: 578.9725px;
    left: -101.3853px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .img__sub02 {
    width: 59.375vw;
    top: 104.5vw;
    left: auto;
    right: 0;
  }
}
.img_visual_sec.pool_sec .bg .hd_txt {
  width: 484.81px;
  top: 1940.9174px;
  right: 149.2844px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .hd_txt {
    width: 25.250525vw;
    top: 101.188075vw;
    right: 7.81479375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .hd_txt {
    width: 323.2067px;
    top: 1293.578px;
    right: 100.7431px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .hd_txt {
    width: 58.1774125vw;
    top: 170.375vw;
    right: auto;
    left: 12.25vw;
  }
}
.img_visual_sec.pool_sec .bg .wavy_edge_box {
  top: 7.9266px;
  right: 182.1399px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .wavy_edge_box {
    top: 0;
    right: 9.30963125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .wavy_edge_box {
    right: 116.5779px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .wavy_edge_box {
    z-index: 1;
    top: 8.25vw;
    left: 3.75vw;
    right: auto;
  }
}
.img_visual_sec.pool_sec .bg .point__01 {
  width: 976px;
  top: 2186.2018px;
  right: -15.0344px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .point__01 {
    width: 50.83333125vw;
    top: 113.8211vw;
    right: -0.84174375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .point__01 {
    width: 650.6667px;
    top: 1456.994px;
    right: -10.2478px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .point__01 {
    width: 100vw;
    top: 189.125vw;
    right: auto;
    left: 0;
  }
}
.img_visual_sec.pool_sec .bg .point__02 {
  width: 921px;
  top: 1832.8073px;
  left: 40px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .point__02 {
    width: 47.96875vw;
    top: 95.24311875vw;
    left: 2.125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .point__02 {
    width: 614px;
    top: 1218.7156px;
    left: 23.4588px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .point__02 {
    width: 100vw;
    left: 0;
    top: 309.875vw;
  }
}
.img_visual_sec.pool_sec .bg .point__03 {
  width: 1158.48px;
  top: 3040.844px;
  left: -561.4679px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .point__03 {
    width: 60.645vw;
    top: 158.8211vw;
    left: -29.44036875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .point__03 {
    width: 782.4px;
    top: 2032.5138px;
    left: -376.8348px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .point__03 {
    width: 100vw;
    top: 437.125vw;
    left: 0;
  }
}
.img_visual_sec.pool_sec .bg .btn_area {
  top: 3995.0092px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.pool_sec .bg .btn_area {
    top: 207.9495375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.pool_sec .bg .btn_area {
    top: 2664px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.pool_sec .bg .btn_area {
    top: 587.5vw;
  }
}
.img_visual_sec.slider_sec {
  height: 6300.3119px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec {
    height: 328.18061875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec {
    height: 4200px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec {
    height: 850.875vw;
  }
}
.img_visual_sec.slider_sec .bg {
  background: url("../images/slider_bg.png") no-repeat;
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg {
    background: url("../images/slider_bg_sp.png") no-repeat;
  }
}
.img_visual_sec.slider_sec .bg .img__main {
  width: 1281.294px;
  top: 0;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .img__main {
    width: 66.7340625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .img__main {
    width: 854.196px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .img__main {
    width: 89.996575vw;
    top: 38vw;
  }
}
.img_visual_sec.slider_sec .bg .img__sub01 {
  width: 917px;
  top: 992.1468px;
  right: 41.945px;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .img__sub01 {
    width: 47.76041875vw;
    top: 51.66055vw;
    right: 2.2087125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .img__sub01 {
    width: 611.3333px;
    top: 660.6606px;
    right: 29.1743px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .img__sub01 {
    width: 47.125vw;
    top: 111.125vw;
    right: auto;
    left: 0;
  }
}
.img_visual_sec.slider_sec .bg .img__sub02 {
  width: 687px;
  top: 1471.0459px;
  right: -305.5046px;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .img__sub02 {
    width: 35.78125vw;
    top: 76.7133vw;
    right: -16.01835vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .img__sub02 {
    width: 458px;
    top: 980.6972px;
    right: -204.6606px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .img__sub02 {
    width: 45.625vw;
    top: 141vw;
    right: auto;
    left: 26.25vw;
  }
}
.img_visual_sec.slider_sec .bg .img__sub03 {
  width: 759px;
  top: 1239.8532px;
  left: 198.4954px;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .img__sub03 {
    width: 39.53125vw;
    top: 64.5756875vw;
    left: 10.4243125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .img__sub03 {
    width: 506px;
    top: 826.789px;
    left: 133.3211px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .img__sub03 {
    width: 35.75vw;
    top: 128vw;
    left: auto;
    right: 0;
  }
}
.img_visual_sec.slider_sec .bg .hd_txt {
  width: 662.9186px;
  top: 2011.9725px;
  right: -26.3119px;
  z-index: 3;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .hd_txt {
    width: 34.52700625vw;
    top: 104.803325vw;
    right: -1.34174375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .hd_txt {
    width: 441.9457px;
    top: 1341.2936px;
    right: -17.3394px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .hd_txt {
    width: 79.5503vw;
    top: 171.375vw;
    right: auto;
    left: 11.25vw;
  }
}
.img_visual_sec.slider_sec .bg .wavy_edge_box {
  top: 102.055px;
  left: 80.2569px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .wavy_edge_box {
    top: 5.25vw;
    left: 4.27981875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .wavy_edge_box {
    top: 63.8532px;
    left: 55.2661px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .wavy_edge_box {
    top: 8.625vw;
    left: auto;
    right: 6.25vw;
  }
}
.img_visual_sec.slider_sec .bg .point .notes {
  color: #231815;
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point .notes {
    font-size: clamp(8px, 2.25vw, 12px);
  }
}
.img_visual_sec.slider_sec .bg .point__01 {
  width: 1317px;
  top: 2019.7431px;
  left: -355.0459px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__01 {
    width: 68.59375vw;
    top: 105.22018125vw;
    left: -18.4334875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__01 {
    width: 878px;
    top: 1345.9817px;
    left: -237.578px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__01 {
    width: 100vw;
    top: 198.5vw;
    left: 0;
  }
}
.img_visual_sec.slider_sec .bg .point__01 .notes {
  top: 740px;
  left: 0;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__01 .notes {
    top: 38.4375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__01 .notes {
    top: 500px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__01 .notes {
    top: 71.5vw;
    left: auto;
    right: 3.375vw;
  }
}
.img_visual_sec.slider_sec .bg .point__02 {
  width: 1005px;
  top: 2769.0275px;
  right: -43.9266px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__02 {
    width: 52.34375vw;
    top: 144.06880625vw;
    right: -2.424425vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__02 {
    width: 670px;
    top: 1841.6147px;
    right: -29.8348px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__02 {
    width: 100vw;
    top: 280.125vw;
    left: 0;
    right: auto;
  }
}
.img_visual_sec.slider_sec .bg .point__02 .notes {
  top: 608.2451px;
  right: -210.6906px;
  left: auto;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__02 .notes {
    top: 31.8846125vw;
    right: -11.578vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__02 .notes {
    top: 405px;
    right: -142.1651px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__02 .notes {
    top: 93.5882vw;
    right: auto;
    left: 2.875vw;
  }
}
.img_visual_sec.slider_sec .bg .point__03 {
  width: 1025px;
  top: 3501.578px;
  left: -65.4587px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__03 {
    width: 53.38541875vw;
    top: 182.2018375vw;
    left: -2.97563125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__03 {
    width: 683.3333px;
    top: 2332.1835px;
    left: -38.7523px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__03 {
    width: 100vw;
    top: 405.125vw;
    left: 0;
  }
}
.img_visual_sec.slider_sec .bg .point__03 .notes {
  top: 1010.9908px;
  left: 97.4312px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__03 .notes {
    top: 53.125vw;
    left: 4.97238125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__03 .notes {
    top: 685px;
    left: 61.9052px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__03 .notes {
    top: 118.789525vw;
    left: 2.875vw;
  }
}
.img_visual_sec.slider_sec .bg .point__04 {
  width: 791.0351px;
  top: 3938.5321px;
  right: 109.6513px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__04 {
    width: 41.19974375vw;
    top: 205.21100625vw;
    right: 5.65926875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__04 {
    width: 527.3567px;
    top: 2624.5872px;
    right: 72.7707px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__04 {
    width: 100vw;
    top: 545.875vw;
    right: auto;
    left: 0;
  }
}
.img_visual_sec.slider_sec .bg .point__04 .notes {
  top: 1198.019px;
  left: auto;
  right: 139.5246px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__04 .notes {
    top: 62.36863125vw;
    right: 7.08695625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__04 .notes {
    top: 800.0891px;
    right: 88.6892px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__04 .notes {
    top: 120.625vw;
    left: 2.875vw;
    right: auto;
  }
}
.img_visual_sec.slider_sec .bg .point__05 {
  width: 947.1962px;
  top: 4787.2752px;
  left: -163.4862px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .point__05 {
    width: 49.3331375vw;
    top: 249.2712125vw;
    left: -8.5915375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .point__05 {
    width: 631.4641px;
    top: 3191.055px;
    left: -113.0643px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .point__05 {
    width: 100vw;
    top: 677.375vw;
    left: 0;
  }
}
.img_visual_sec.slider_sec .bg .btn_area {
  top: 5850px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .btn_area {
    top: 304.375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .btn_area {
    top: 3900px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .btn_area {
    top: 812.5vw;
  }
}
.img_visual_sec.slider_sec .bg .bg_inn > .notes {
  top: 6200px;
  left: -238.4587px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.slider_sec .bg .bg_inn > .notes {
    top: 325vw;
    left: -7.62625625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.slider_sec .bg .bg_inn > .notes {
    top: 4150px;
    left: -99.7815px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.slider_sec .bg .bg_inn > .notes {
    top: 850vw;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: clamp(8px, 2.25vw, 12px);
  }
}
.img_visual_sec.rental_sec {
  height: 5099.4588px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec {
    height: 266.25vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec {
    height: 3399.3028px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec {
    height: 937.5vw;
  }
}
.img_visual_sec.rental_sec .bg {
  background: url("../images/rental_bg.png") no-repeat;
  background-position-y: 769.2202px !important;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg {
    background-position-y: 40.60910625vw !important;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg {
    background-position-y: 512.4771px !important;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg {
    background: url("../images/rental_bg_sp.png") no-repeat;
    background-position-y: 94.75vw !important;
    z-index: 1;
  }
}
.img_visual_sec.rental_sec .bg .img__main {
  width: 1280.7302px;
  top: 330.6147px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .img__main {
    width: 66.7047vw;
    top: 17.50833125vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .img__main {
    width: 853.8201px;
    top: 221.5046px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .img__main {
    width: 100vw;
    top: 67.5vw;
  }
}
.img_visual_sec.rental_sec .bg .img__sub01 {
  width: 764px;
  top: 1380.2294px;
  right: 196.7247px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .img__sub01 {
    width: 39.79166875vw;
    top: 71.91835625vw;
    right: 10.243225vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .img__sub01 {
    width: 509.3333px;
    top: 920.0367px;
    right: 130.8991px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .img__sub01 {
    width: 58.625vw;
    top: 153.125vw;
    right: auto;
    left: 0;
  }
}
.img_visual_sec.rental_sec .bg .img__sub02 {
  width: 965px;
  top: 1129.4404px;
  left: 6.0643px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .img__sub02 {
    width: 50.26041875vw;
    top: 59.31629375vw;
    left: 0.3841375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .img__sub02 {
    width: 643.3333px;
    top: 752.0367px;
    left: 4.1835px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .img__sub02 {
    width: 80.625vw;
    top: 182.875vw;
    left: auto;
    right: 0;
  }
}
.img_visual_sec.rental_sec .bg .hd_txt {
  width: 1187.367px;
  top: 1945.3211px;
  right: -532.523px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .hd_txt {
    width: 61.84203125vw;
    top: 101.25vw;
    right: -27.777325vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .hd_txt {
    width: 791.578px;
    top: 1296.7706px;
    right: -355.266px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .hd_txt {
    width: 84.7751875vw;
    top: 255.375vw;
    right: 7.5vw;
  }
}
.img_visual_sec.rental_sec .bg .wavy_edge_box {
  top: 257.2936px;
  right: 182.1926px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .wavy_edge_box {
    top: 13.37463125vw;
    right: 9.4135625vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .wavy_edge_box {
    top: 166.5688px;
    right: 117.6881px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .wavy_edge_box {
    top: 30vw;
    right: auto;
    left: 3.125vw;
  }
}
.img_visual_sec.rental_sec .bg .point__01 {
  width: 1920px;
  top: 2286.2845px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .point__01 {
    width: 100vw;
    top: 119.20209375vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .point__01 {
    width: 1280px;
    top: 1519.4862px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .point__01 {
    width: 100vw;
    top: 300.125vw;
  }
}
.img_visual_sec.rental_sec .bg .point__02 {
  width: 1836.48px;
  top: 3433.2202px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .point__02 {
    width: 93.87284375vw;
    top: 176.875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .point__02 {
    width: 1201.5724px;
    top: 2230px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .point__02 {
    width: 100vw;
    top: 607.125vw;
  }
}
.img_visual_sec.rental_sec .bg .btn_area__01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16.4863px;
  top: 4610px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .btn_area__01 {
    top: 237.5vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .btn_area__01 {
    top: 3000px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .btn_area__01 {
    top: 848.75vw;
    row-gap: 8px;
  }
}
.img_visual_sec.rental_sec .bg .btn_area__01 .lead_txt {
  margin-bottom: 11.9218px;
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .btn_area__01 .lead_txt {
    margin-bottom: 5px;
  }
}
.img_visual_sec.rental_sec .bg .btn_area__02 {
  top: 3293.8441px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .btn_area__02 {
    top: 172.09221875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .btn_area__02 {
    top: 2196.2202px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .btn_area__02 {
    top: 571.125vw;
  }
}
.img_visual_sec.rental_sec .bg .btn_area__03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 37.4996px;
     -moz-column-gap: 37.4996px;
          column-gap: 37.4996px;
  top: 4465.0001px;
}
@media only screen and (max-width: 1600px) {
  .img_visual_sec.rental_sec .bg .btn_area__03 {
    top: 232.79171875vw;
  }
}
@media only screen and (max-width: 1280px) {
  .img_visual_sec.rental_sec .bg .btn_area__03 {
    top: 2975.6697px;
  }
}
@media screen and (max-width: 768px) {
  .img_visual_sec.rental_sec .bg .btn_area__03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4.5vw;
    top: 843.25vw;
  }
}

/* WebP対応 */
.webp .img_visual_sec.freewall_sec .bg {
  background: url("../images/freewall_bg.webp") no-repeat;
}
@media screen and (max-width: 768px) {
  .webp .img_visual_sec.freewall_sec .bg {
    background: url("../images/freewall_bg_sp.webp") no-repeat;
  }
}
.webp .img_visual_sec.pool_sec .bg {
  background: url("../images/pool_bg.webp") no-repeat;
}
@media screen and (max-width: 768px) {
  .webp .img_visual_sec.pool_sec .bg {
    background: url("../images/pool_bg_sp.webp") no-repeat;
  }
}
.webp .img_visual_sec.slider_sec .bg {
  background: url("../images/slider_bg.webp") no-repeat;
}
@media screen and (max-width: 768px) {
  .webp .img_visual_sec.slider_sec .bg {
    background: url("../images/slider_bg_sp.webp") no-repeat;
  }
}
.webp .img_visual_sec.rental_sec .bg {
  background: url("../images/rental_bg.webp") no-repeat;
}
@media screen and (max-width: 768px) {
  .webp .img_visual_sec.rental_sec .bg {
    background: url("../images/rental_bg_sp.webp") no-repeat;
  }
}

.summerfes_sec .fade-in,
.information_sec .fade-in,
.use_sec .fade-in,
.access_sec .fade-in {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

/*======================================
　summerfes_sec
=======================================*/
.summerfes_sec {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, #1e2088), to(#1e2088));
  background: linear-gradient(to bottom, transparent 0%, #1e2088 50%, #1e2088 100%);
  padding: 23% 0 85px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .summerfes_sec {
    padding: 23% 0 150px;
  }
}
.summerfes_sec .summerfes_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.summerfes_sec .summerfes_title {
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_title {
    margin-bottom: 24px;
  }
}
.summerfes_sec .summerfes_title picture {
  display: block;
  width: 52.55208333%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_title picture {
    width: 100%;
  }
}
.summerfes_sec .summerfes_title .delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.summerfes_sec .summerfes_information {
  width: 66.67%;
  max-width: 1280px;
  margin-inline: auto;
  background: #FFF;
  border-radius: 50px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information {
    width: 80%;
    border-radius: 30px;
  }
}
.summerfes_sec .summerfes_information .information_inner {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.06em;
  padding-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner {
    font-size: 12px;
    padding-bottom: 42px;
  }
}
.summerfes_sec .summerfes_information .information_inner .inner {
  width: 78.125%;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .inner {
    width: 90%;
  }
}
.summerfes_sec .summerfes_information .information_inner h3 {
  font-size: 24px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  background: #00a0e9;
  border-radius: 50px 50px 0 0;
  padding: 18px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner h3 {
    font-size: 20px;
    border-radius: 30px 30px 0 0;
    padding: 12px;
    margin-bottom: 12px;
  }
}
.summerfes_sec .summerfes_information .information_inner .summerfes_detail {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_detail {
    margin-bottom: 24px;
  }
}
.summerfes_sec .summerfes_information .information_inner .summerfes_detail:nth-of-type(1), .summerfes_sec .summerfes_information .information_inner .summerfes_detail:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_detail:nth-of-type(1), .summerfes_sec .summerfes_information .information_inner .summerfes_detail:nth-of-type(2) {
    display: block;
    margin-bottom: 12px;
  }
}
.summerfes_sec .summerfes_information .information_inner .summerfes_detail h4 {
  font-weight: 600;
  color: #00a0e9;
}
.summerfes_sec .summerfes_information .information_inner .summerfes_detail ul li {
  line-height: 1.583;
  text-indent: -1.5em;
  font-weight: bold;
  margin-left: 1.5em;
}
.summerfes_sec .summerfes_information .information_inner .summerfes_detail ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 1/1;
  background-color: #231815;
  border-radius: 50px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_detail ul li::before {
    width: 11px;
  }
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_detail ul li .sp_spacing {
    margin-left: 2em;
  }
}
.summerfes_sec .summerfes_information .information_inner hr {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner hr {
    margin-bottom: 12px;
  }
}
.summerfes_sec .summerfes_information .information_inner .topic_blue {
  width: 100%;
  color: #FFF;
  background: #00a0e9;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  border-radius: 40px;
  padding: 0.575em 0 0.625em;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .topic_blue {
    font-size: 16px;
    margin-bottom: 8px;
    height: 44.91355px;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}
.summerfes_sec .summerfes_information .information_inner .kome {
  display: block;
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
}
.summerfes_sec .summerfes_information .information_inner .kome::before {
  content: "※";
}
.summerfes_sec .summerfes_information .information_inner .txt_center {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .txt_center {
    font-size: 12px;
    margin-bottom: 18px;
  }
}
.summerfes_sec .summerfes_information .information_inner .summerfes_fair .txt_center {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_fair .txt_center {
    margin-bottom: 18px;
  }
}
.summerfes_sec .summerfes_information .information_inner .summerfes_bingo img {
  margin: 0 auto 21.2528px;
  display: block;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_bingo img {
    width: 42.73115px;
    margin-bottom: 10.4009px;
  }
}
.summerfes_sec .summerfes_information .information_inner .summerfes_bingo .txt_center:nth-child(1 of .txt_center) {
  margin-bottom: 20.557px;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_information .information_inner .summerfes_bingo .txt_center:nth-child(1 of .txt_center) {
    margin-bottom: 10.9042px;
  }
}
.summerfes_sec .summerfes_decoration img {
  position: absolute;
}
.summerfes_sec .summerfes_decoration img:nth-of-type(1) {
  width: 24.8871875vw;
  max-width: 637.11px;
  bottom: min(75vw, 1920px);
  left: -12.44vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_decoration img:nth-of-type(1) {
    width: 37.167625vw;
    bottom: 106.620875vw;
  }
}
.summerfes_sec .summerfes_decoration img:nth-of-type(2) {
  width: 36.27979167vw;
  max-width: 928.75px;
  bottom: min(42.65625vw, 1092px);
  left: -13.85416667vw;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_decoration img:nth-of-type(2) {
    width: 39.1818375vw;
    bottom: 62vw;
  }
}
.summerfes_sec .summerfes_decoration img:nth-of-type(3) {
  width: 20.04395833vw;
  max-width: 513.13px;
  bottom: min(29.93vw, 766.208px);
  left: 6.2228125vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_decoration img:nth-of-type(3) {
    width: 29.9345125vw;
    left: 23.8483375vw;
    bottom: 0.025vw;
  }
}
.summerfes_sec .summerfes_decoration img:nth-of-type(4) {
  width: 29.98291667vw;
  max-width: 767.56px;
  bottom: min(16.29476563vw, 417.146px);
  left: -12.40884375vw;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_decoration img:nth-of-type(4) {
    width: 40.895625vw;
    left: -5.4029125vw;
    bottom: 13.25vw;
  }
}
.summerfes_sec .summerfes_decoration img:nth-of-type(5) {
  width: 28.12098958vw;
  max-width: 719.89px;
  bottom: min(88.70044792vw, 2270.73px);
  right: -9.74048958vw;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_decoration img:nth-of-type(5) {
    width: 27.2797625vw;
    right: -11.9047625vw;
    bottom: 89.399125vw;
  }
}
.summerfes_sec .summerfes_decoration img:nth-of-type(6) {
  width: 25.599875vw;
  max-width: 655.34px;
  bottom: min(12.78298438vw, 327.244px);
  right: -3.55653646vw;
}
@media screen and (max-width: 768px) {
  .summerfes_sec .summerfes_decoration img:nth-of-type(6) {
    width: 38.2319625vw;
    bottom: 9.5vw;
    right: 1vw;
  }
}
.summerfes_sec .summerfes_decoration img:nth-of-type(7) {
  width: 100%;
  max-width: 100%;
  bottom: 0;
}
.summerfes_sec .summerfes_decoration .delay {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.summerfes_sec .summerfes_decoration .scale {
  -webkit-animation: fw_scale 0s ease;
          animation: fw_scale 0s ease;
}
@-webkit-keyframes fw_scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fw_scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*=======================================
　title_area
=======================================*/
.title_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .title_area {
    margin-bottom: 20px;
    gap: 5px;
  }
}
.title_area .ttl {
  color: #fff;
  letter-spacing: 0.06em;
}
.title_area .ttl._en {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .title_area .ttl._en {
    font-size: 24px;
  }
}
.title_area .ttl._jn {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .title_area .ttl._jn {
    font-size: 16px;
  }
}

/*=======================================
　information_sec
=======================================*/
.information_sec .intro {
  background: #fff;
  padding: 84.1333px 0 70px;
}
@media screen and (max-width: 768px) {
  .information_sec .intro {
    padding: 26.25vw 0 40px;
    padding: 40px 0;
  }
}
.information_sec .intro .inner {
  max-width: 993.9639px;
}
.information_sec .intro .copy {
  margin-bottom: 40.8896px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information_sec .intro .copy {
    width: 81.5%;
    margin: 0 auto 20px;
  }
}
.information_sec .intro p {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.684;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information_sec .intro p {
    font-size: 18px;
  }
}
.information_sec .p-poolInfoSection {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  justify-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
.information_sec .p-poolInfoSection .p-poolInfoCol {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 3px solid #231815;
  border-radius: 13px;
}
.information_sec .p-poolInfoSection p.text_note{
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding: 15px 0 0;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.information_sec .p-poolInfoSection .p-poolInfoCol .p-poolInfoSection .p-poolInfoCol {
		width: 67%;
	}
	.information_sec .p-poolInfoSection p.text_note{
	}
}
.information_sec .p-poolInfoSection .p-poolInfoCol .c-basicTitle {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #80BDE0;
  font-size: 20px;
}
.information_sec .p-poolInfoSection .p-poolInfoCol p {
  line-height: 1.8;
  font-size: 16px;
}
.information_sec .tiket_plan .bg {
  background-color: #89C997;
  padding: 40px 0 108px;
}
.information_sec .tiket_plan .bg .white_box {
  background-color: #fff;
  border-radius: 50px;
  padding: 41px 53px 37px 42px;
  margin-bottom: 57.1055px;
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .white_box {
    border-radius: 25px;
    padding: 30px 5% 35px;
  }
}
.information_sec .tiket_plan .bg .c-ticketTable {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}
.information_sec .tiket_plan .bg .c-ticketTable .c-poolSchedule__a {
  color: #fff;
  background-color: #007CC2;
}
.information_sec .tiket_plan .bg .c-ticketTable .c-poolSchedule__b {
  color: #fff;
  background-color: #EB4CA5;
}
.information_sec .tiket_plan .bg .c-ticketTable .c-poolSchedule__c {
  color: #fff;
  background-color: #7FBE26;
}
.information_sec .tiket_plan .bg .c-ticketTable .c-poolSchedule__d {
  color: #fff;
  background-color: #D68900;
}
.information_sec .tiket_plan .bg .c-ticketTable th,
.information_sec .tiket_plan .bg .c-ticketTable td {
  padding: 11px 2px;
  width: calc(100% / 4);
  line-height: 1;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .c-ticketTable th,
  .information_sec .tiket_plan .bg .c-ticketTable td {
    padding: 10px 13px;
  }
}
.information_sec .tiket_plan .bg .c-ticketTable th span,
.information_sec .tiket_plan .bg .c-ticketTable td span {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .c-ticketTable th span,
  .information_sec .tiket_plan .bg .c-ticketTable td span {
    font-size: 10px;
  }
}
.information_sec .tiket_plan .bg .c-ticketTable thead th,
.information_sec .tiket_plan .bg .c-ticketTable thead td {
  font-size: 24px;
}
.information_sec .tiket_plan .bg .c-ticketTable thead th:first-child{
	line-height: 150%;
}

.information_sec .tiket_plan .bg .c-ticketTable thead th{
	padding: 4px 2px;
}
@media screen and (max-width: 768px) {
	
	.information_sec .tiket_plan .bg .c-ticketTable thead td{
		padding: 4px 2px;
	}
	.information_sec .tiket_plan .bg .c-ticketTable td {
	    padding: 10px 4px;
	  }
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .c-ticketTable thead th,
  .information_sec .tiket_plan .bg .c-ticketTable thead td {
    font-size: 18px;
  }
}
.information_sec .tiket_plan .bg .c-ticketTable thead td {
  border-left: 2px solid #231815;
}
.information_sec .tiket_plan .bg .c-ticketTable tbody th,
.information_sec .tiket_plan .bg .c-ticketTable tbody td {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .c-ticketTable tbody th,
  .information_sec .tiket_plan .bg .c-ticketTable tbody td {
    font-size: 18px;
  }
}
.information_sec .tiket_plan .bg .c-ticketTable tbody th {
  border-top: 2px solid #231815;
}
.information_sec .tiket_plan .bg .c-ticketTable tbody td {
  border-top: 2px solid #231815;
  border-left: 2px solid #231815;
}
.information_sec .tiket_plan .bg #p-poolPeriod .u-mg__b--30, .information_sec .tiket_plan .bg #p-poolPeriod2 .u-mg__b--30 {
  margin-bottom: 20px;
}
@media screen and (min-width: 786px) {
  .information_sec .tiket_plan .bg #p-poolPeriod .u-mg__b--30, .information_sec .tiket_plan .bg #p-poolPeriod2 .u-mg__b--30 {
    margin-bottom: 30px;
  }
}
.information_sec .tiket_plan .bg #p-poolPeriod .c-basicTitle__m, .information_sec .tiket_plan .bg #p-poolPeriod2 .c-basicTitle__m {
  margin: 5px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}
.information_sec .tiket_plan .bg #p-poolPeriod .c-basicTitle__m .c-basicTitle__m, .information_sec .tiket_plan .bg #p-poolPeriod2 .c-basicTitle__m .c-basicTitle__m {
  font-size: 18px;
}
.information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoHeading, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoHeading {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (min-width: 786px) {
  .information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoHeading, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoHeading {
    width: 28%;
    font-size: 40px;
    line-height: 1;
  }
}
.information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoHeading__m, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoHeading__m {
  margin-bottom: 20px;
  font-size: 20px;
}
@media screen and (min-width: 786px) {
  .information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoHeading__m, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoHeading__m {
    width: 28%;
    font-size: 30px;
  }
}
.information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoCol, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoCol {
  border: none;
  border-radius: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-bottom: 0;
}
@media screen and (min-width: 786px) {
  .information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoCol, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoCol {
    width: 67%;
  }
}
.information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoCol:not(:last-child){
	border-bottom: 1px solid #000;
	padding: 0 0 20px;
    margin: 0 0 20px;
}


.information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoCol .c-basicTitle, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoCol .c-basicTitle {
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: none;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 786px) {
  .information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoCol .c-basicTitle__m, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoCol .c-basicTitle__m {
    font-size: 18px;
  }
}
.information_sec .tiket_plan .bg #p-poolPeriod.p-poolInfoSection .p-poolInfoCol p, .information_sec .tiket_plan .bg #p-poolPeriod2.p-poolInfoSection .p-poolInfoCol p {
  line-height: 1.8;
  font-size: 15px;
}
.information_sec .tiket_plan .bg #p-poolPeriod2 {
  width: 100%;
  color: #fff;
}
.information_sec .tiket_plan .bg #p-poolPeriod2 .p-poolInfoCol .c-basicTitle {
  border-bottom: 1px solid #fff !important;
}
.information_sec .tiket_plan .bg .p-poolCalendar {
  margin: 0 -20px 0px -40px;
  padding: 30px 20px 0px 40px;
  scrollbar-width: none;
}
.information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendar-slider{
	overflow-x: scroll !important;
	-ms-overflow-style: none;
	overflow-y: hidden;
}
.information_sec .tiket_plan .bg .p-poolCalendar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendarInner {
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	justify-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: normal;
	-ms-flex-align: normal;
	align-items: normal;
	position: relative;
	gap: 11.8888888889%;
	width: max-content;
}


.information_sec .tiket_plan .bg .p-poolCalendar {
	position: relative;
}

.information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendar-scrollText {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 160px;
    padding: 5% 0;
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
    border-radius: 30px;
    font-size: 16px;
    transition: opacity .4s ease, visibility .4s ease;
    font-weight: 700;
    color: #fff;
    line-height: 160%;
}

.information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendar-scrollText.is-hide {
	opacity: 0;
	visibility: hidden;
}

.information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendar-slider {
	overflow-x: scroll !important;
	-ms-overflow-style: none;
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendarInner {
    width: 1100px;
    gap: 5%;
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  }

	.information_sec .tiket_plan .bg .p-poolCalendar .p-poolCalendar-scrollText {
	    width: 150px;
	    padding: 35px 0;
	    border-radius: 20px;
	    font-size: 14px;
	}
}
.information_sec .tiket_plan .bg .p-poolCalendar table {
  position: relative;
  width: 25.3333333333%;
}
.information_sec .tiket_plan .bg .p-poolCalendar table:nth-of-type(n+2)::before {
  position: absolute;
  top: 0;
  left: -21.8%;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #E6E6E6;
}
@media screen and (max-width: 768px) {
  .information_sec .tiket_plan .bg .p-poolCalendar table:nth-of-type(n+2)::before {
    left: -10.4%;
  }
}
.information_sec .tiket_plan .bg .p-poolCalendar table caption {
  color: #333333;
  font-size: 30px;
  margin-bottom: 15px;
}
.information_sec .tiket_plan .bg .p-poolCalendar table caption span {
  font-size: 20px;
}
.information_sec .tiket_plan .bg .p-poolCalendar table th,
.information_sec .tiket_plan .bg .p-poolCalendar table td {
  text-align: center;
}
.information_sec .tiket_plan .bg .p-poolCalendar table th span,
.information_sec .tiket_plan .bg .p-poolCalendar table td span {
  color: #fff;
  margin: 2px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #F0F0F0;
  line-height: 1;
}
.information_sec .tiket_plan .bg .p-poolCalendar table th span.c-poolSchedule__a,
.information_sec .tiket_plan .bg .p-poolCalendar table td span.c-poolSchedule__a {
  background-color: #007CC2;
}
.information_sec .tiket_plan .bg .p-poolCalendar table th span.c-poolSchedule__b,
.information_sec .tiket_plan .bg .p-poolCalendar table td span.c-poolSchedule__b {
  background-color: #EB4CA5;
}
.information_sec .tiket_plan .bg .p-poolCalendar table th span.c-poolSchedule__c,
.information_sec .tiket_plan .bg .p-poolCalendar table td span.c-poolSchedule__c {
  background-color: #7FBE26;
}
.information_sec .tiket_plan .bg .p-poolCalendar table th span.c-poolSchedule__d,
.information_sec .tiket_plan .bg .p-poolCalendar table td span.c-poolSchedule__d {
  background-color: #D68900;
}
.information_sec .tiket_plan .bg .p-poolCalendar table tbody tr.c-week {
  color: #333333;
}
.information_sec .tiket_plan .bg .p-scheduleGuide {
  width: 100%;
  margin: 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  justify-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.information_sec .tiket_plan .bg .p-scheduleGuide li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  font-weight: 600;
  font-size: 18px;
}
.information_sec .tiket_plan .bg .p-scheduleGuide .c-schedule__mark {
  margin-right: 5px;
  border-radius: 5px;
  display: block;
  width: 30px;
  height: 25px;
}
.information_sec .tiket_plan .bg .p-scheduleGuide .c-poolSchedule__a {
  background-color: #007CC2;
}
.information_sec .tiket_plan .bg .p-scheduleGuide .c-poolSchedule__b {
  background-color: #EB4CA5;
}
.information_sec .tiket_plan .bg .p-scheduleGuide .c-poolSchedule__c {
  background-color: #7FBE26;
}
.information_sec .tiket_plan .bg .p-scheduleGuide .c-poolSchedule__d {
  background-color: #D68900;
}
.information_sec .cmn_btn01 {
  width: 436.6229px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.information_sec .cmn_btn01 {
		width: 90%;
	}
	.information_sec .tiket_plan .bg .p-scheduleGuide{
	    width: max-content;
	    margin: 30px 0 0;
	}
}
.information_sec .p-poolTicket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  justify-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
.information_sec .p-poolTicket .p-ticketSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  justify-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  row-gap: 15px;
  padding: 30px 20px;
  margin-bottom: 45px;
  color: #333;
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media screen and (min-width: 768px) {
	.information_sec .p-poolTicket .p-ticketSection {
		width: 47.5%;
	}
}
.information_sec .p-poolTicket .p-ticketSection .c-ticketTitle {
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 160%;
}


.information_sec .p-poolTicket .p-ticketSection-big{
	width: 100%;
	height: auto;
	background: #fff;
    border-radius: 25px;
    overflow: hidden;
    padding: 40px 5%;
}
.information_sec .p-poolTicket .p-ticketSection-big .p-ticketImg{
	width: 100%;
	margin: 0 auto;
	padding: 0 0 15px;
}

.information_sec .p-poolTicket .p-ticketSection-big p{
	text-align: center;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0.1em;
}

.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox{
	width: 100%;
	height: auto;
	padding: 20px 0;
}
.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox:first-child{
	border-bottom: 1px solid #000;
}
.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox .p-ticketImg-2{
	width: 100%;
	height: auto;
}
.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox .p-ticketImg-3{
	width: 86%;
	margin:20px auto;
}
.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox .c-ticketTable{
	width: 90%;
	margin: 0 auto;
}

.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox p{
    width: 90%;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    line-height: 160%;
    padding: 15px 0 0;
}

.information_sec .p-poolTicket .p-ticketSection-big .btn{
	margin: 20px auto 0; 
	width: 90%; 
	display: block; 
	background: #d1d621; 
	text-align: center;
	border-radius: 1000px; 
	padding: 14px 0; 
	position: relative;
	letter-spacing: 0.2em;
	font-size: 16px;
	border: 4px solid #d1d621;
	transition: 0.5s;
}
.information_sec .p-poolTicket .p-ticketSection-big .btn:hover{
	background: #000;
	color: #d1d621;
	transition: 0.5s;
}

.information_sec .p-poolTicket .p-ticketSection-big .btn:before{
	content: ""; 
	display: block; 
	width: 15px;
	height: 15px; 
	position: absolute;
	background: url(../images/ticket_icn_1.svg) no-repeat center center;
	background-size: 100%;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}

.information_sec .text_list{
	padding: 30px 0 0;
}
.information_sec .text_list li{
	line-height: 190%;
	font-size: 16px;
	color: #fff;
}
@media screen and (min-width: 768px) {
	.information_sec .p-poolTicket .p-ticketSection .c-ticketTitle {
		font-size: 20px;
	}
	
	
	.information_sec .p-poolTicket .p-ticketSection-big{
		width: 100%;
		height: auto;
		background: #fff;
		border-radius: 50px;
		overflow: hidden;
		padding: 60px 0 40px;
	}
	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketImg{
		width: 85%;
		margin: 0 auto;
		padding: 0 0 20px;
	}

	.information_sec .p-poolTicket .p-ticketSection-big p{
		text-align: center;
		font-size: 20px;
		line-height: 160%;
		letter-spacing: 0.1em;
	}
	.information_sec .p-poolTicket .p-ticketSection-big p br.s{}

	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex{
		display: flex;
		justify-content: space-between;
		padding: 22px 0 0;
	}

	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox{
		width: 50%;
		height: auto;
		padding: 0 40px;
	}
	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox:first-child{
		border-right: 1px solid #000;
		border-bottom: none;
	}
	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox .p-ticketImg-2{
		width: 100%;
		height: auto;
	}
	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox .p-ticketImg-3{
		width: 76%;
		margin:25px auto;
	}
	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox .c-ticketTable{
		width: 82%;
		margin: 0 auto;
	}

	.information_sec .p-poolTicket .p-ticketSection-big .p-ticketflex .p-ticketbox p{
		width: 82%; 
		margin: 0 auto;
		text-align: left;
        font-size: 16px;
        line-height: 160%;
        padding: 20px 0 0;
	}

	.information_sec .p-poolTicket .p-ticketSection-big .btn{
		margin: 40px auto 0; 
		width: 34%;  
		padding: 18px 0; 
		letter-spacing: 0.2em;
		font-size: 18px;
		border: 4px solid #d1d621;
	}
	
	.information_sec .p-poolTicket .p-ticketSection-big .btn:before{
		width: 15px;
		height: 15px; 
		top: 50%;
		right: 20px;
	}
	
	.information_sec .text_list{
		padding: 30px 0 0;
	}
	.information_sec .text_list li{
		line-height: 190%;
		font-size: 16px;
	}
}
.information_sec .p-poolTicket .p-ticketSection .c-ticketTitle .c-limited {
  margin-left: 5px;
  padding: 5px;
  border: 1px solid #E3007F;
  border-radius: 4px;
  display: inline-block;
  color: #E3007F;
  line-height: 1;
  font-weight: normal;
  font-size: 13px;
  vertical-align: 0.15rem;
}
@media screen and (min-width: 768px) {
	.information_sec .p-poolTicket .p-ticketSection .c-ticketTitle .c-limited {
		margin-left: 10px;
		padding: 6px 10px;
		font-size: 15px;
		vertical-align: 0.2rem;
	}
}
.information_sec .p-poolTicket .p-ticketSection .p-ticketCol {
  width: 100%;
  padding: 0;
}
.information_sec .p-poolTicket .p-ticketSection .p-ticketCol p {
	margin: 0px 0 10px;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.information_sec .p-poolTicket .p-ticketSection .p-ticketCol.-poolSchedule {
	padding-top: 0 !important;
	width: 100%;
	margin: 0 auto;
}
.information_sec .p-poolTicket .p-coverList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.information_sec .p-poolTicket .p-coverList dt,
.information_sec .p-poolTicket .p-coverList dd {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.information_sec .p-poolTicket .p-coverList dt:nth-of-type(even),
.information_sec .p-poolTicket .p-coverList dd:nth-of-type(even) {
  background-color: #E9EBED;
}
.information_sec .p-poolTicket .p-coverList dt:nth-of-type(odd),
.information_sec .p-poolTicket .p-coverList dd:nth-of-type(odd) {
  background-color: #F9F9F9;
}
.information_sec .p-poolTicket .p-coverList dt {
  width: 70%;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .information_sec .p-poolTicket .p-coverList dt {
    font-size: 13px;
  }
}
.information_sec .p-poolTicket .p-coverList dd {
  width: 30%;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .information_sec .p-poolTicket .p-coverList dd {
    font-size: 16px;
  }
}
.information_sec .p-poolTicket .c-ticketTable {
  margin-bottom: 20px;
  border: none !important;
  border-radius: 10px;
  border-collapse: collapse !important;
}
.information_sec .p-poolTicket .c-ticketTable th,
.information_sec .p-poolTicket .c-ticketTable td {
  color: #fff;
  font-size: 16px !important;
  font-weight: 400 !important;
}
@media screen and (min-width: 768px) {
	
	.information_sec .p-poolTicket .p-ticketSection .p-ticketCol p {
		font-size: 18px;
	}
	.information_sec .p-poolTicket .p-ticketSection .p-ticketCol p.text_tt {
		font-size: 16px;
	}
	.information_sec .p-poolTicket .p-ticketSection .p-ticketCol.-poolSchedule {
		width: 80%;
	}
	.information_sec .p-poolTicket .p-ticketSection .c-ticketTitle {
		margin-bottom: 20px;
		font-size: 19px;
    }
	
  .information_sec .p-poolTicket .c-ticketTable th,
  .information_sec .p-poolTicket .c-ticketTable td {
    font-size: 18px !important;
  }
}
.information_sec .p-poolTicket .c-ticketTable th span,
.information_sec .p-poolTicket .c-ticketTable td span {
  font-size: 10px !important;
}
@media screen and (min-width: 768px) {
  .information_sec .p-poolTicket .c-ticketTable th span,
  .information_sec .p-poolTicket .c-ticketTable td span {
    font-size: 11px !important;
  }
}
.information_sec .p-poolTicket .c-ticketTable thead th,
.information_sec .p-poolTicket .c-ticketTable thead td {
  background-color: #3396CE;
  border: none;
}
.information_sec .p-poolTicket .c-ticketTable thead td {
  border-left: 1px solid #80BDE0 !important;
}
.information_sec .p-poolTicket .c-ticketTable tbody th {
  border-top: 1px solid #80BDE0 !important;
}
.information_sec .p-poolTicket .c-ticketTable tbody td {
  background-color: #3396CE;
  border-top: 1px solid #80BDE0 !important;
  border-left: 1px solid #80BDE0 !important;
}
.information_sec .p-poolTicket .c-arwLinkButton.-ticket {
  padding: 15px 40px 15px 25px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  justify-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
  width: 100%;
  background-color: #199B33;
  color: #fff;
  line-height: 1.2;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #DADF00;
  color: #333;
  padding: 15px 30px;
  width: 100%;
  margin-top: 10px;
}
.information_sec .p-poolTicket .c-arwLinkButton.-ticket::after {
  border-color: #333 #333 transparent transparent;
}
.information_sec .p-poolTicket .c-arwLinkButton.-ticket.-soldout {
  background-color: #F0F0F0;
}
.information_sec .p-poolTicket .c-arwLinkButton[target=_blank].-ticket::after, .information_sec .p-poolTicket .c-arwLinkButton[target=_blank].-reserve::after {
  position: absolute;
  right: 25px;
  margin-left: 5px;
  content: "";
  display: inline-block;
  background-image: url("../images/icon_dl.svg");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: -0.075rem;
  border: none;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 16px;
  height: 16px;
}
.information_sec .p-poolTicket .p-ticketSection .p-ticketCol p.c-note {
  font-size: 12px !important;
  margin: 10px 0;
}
.information_sec .p-poolTicket .p-ticketSection .p-ticketCol p.c-note a {
  color: #199B33;
}
.information_sec .p-poolTicket .u-sp--br {
  display: block;
}
@media screen and (min-width: 786px) {
  .information_sec .p-poolTicket .u-sp--br {
    display: none;
  }
}

/*=======================================
　use_sec
=======================================*/
.use_sec {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 43.7818px 0 59.73px;
}
.use_sec .u-ttl {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 34.68px;
}
@media screen and (max-width: 768px) {
  .use_sec .u-ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.use_sec .u-sttl {
  background-color: #9FA0A0;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 25px;
  padding: 0.875em 0 0.917em;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .use_sec .u-sttl {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.use_sec .u-text {
  margin-bottom: 31px;
}
@media screen and (max-width: 768px) {
  .use_sec .u-text {
    margin-bottom: 20px;
  }
}
.use_sec .u-text .t-red {
  color: #E60012;
}
.use_sec .u-text li {
  line-height: 1.583;
  text-indent: -1.5em;
  font-weight: bold;
  margin-left: 1.5em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .use_sec .u-text li {
    font-size: 12px;
  }
}
.use_sec .u-text li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #231815;
  border-radius: 50px;
  margin-right: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .use_sec .u-text li::before {
    width: 10px;
    height: 10px;
  }
}

/*=======================================
　access_sec
=======================================*/
.access_sec .bg {
  background-color: #7ECEF4;
  padding: 40px 0 50px;
}
.access_sec .bg .white_box {
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 36px 35px 41px;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box {
    border-radius: 25px;
    padding: 30px 5% 35px;
  }
}
.access_sec .bg .white_box p {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 240%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box p {
    font-size: 12px;
  }
}
.access_sec .bg .white_box p span.mark {
  font-size: 40px;
  height: 5px;
  background-color: transparent;
  background-image: radial-gradient(circle, #00a3dd 3px, transparent 4px);
  background-size: 13px 13px;
  background-repeat: repeat-x;
  background-position: left bottom;
  line-height: 100%;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box p span.mark {
    font-size: 23px;
    background-image: radial-gradient(circle, #00a3dd 2px, transparent 3px);
    background-size: 12px 12px;
    padding-bottom: 6px;
  }
}
.access_sec .bg .white_box p span.pink {
  font-size: 80px;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
  color: #c5006f;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box p span.pink {
    font-size: 38px;
  }
}
.access_sec .bg .white_box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access_sec .bg .white_box .flex .map {
  margin: 0 30px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box .flex .map {
    margin: 0;
  }
}
.access_sec .bg .white_box .flex .map .zoom_box {
  position: relative;
  width: 351.8321px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box .flex .map .zoom_box {
    width: 100%;
  }
}
.access_sec .bg .white_box .flex .map a {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0 0;
  display: inline-block;
}
.access_sec .bg .white_box .flex .img {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .access_sec .bg .white_box .flex .img {
    padding-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */