@charset "UTF-8";
/* -----------------------------------------------------
	variables
----------------------------------------------------- */
/* -----------------------------------------------------
	loding
----------------------------------------------------- */
#fastLogo {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #0091d2;
  background: -webkit-gradient(linear, left top, right top, from(#0091d2), to(#15489d));
  background: -webkit-linear-gradient(left, #0091d2 0%, #15489d 100%);
  background: -o-linear-gradient(left, #0091d2 0%, #15489d 100%);
  background: linear-gradient(90deg, #0091d2 0%, #15489d 100%);
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #fastLogo {
    display: none;
  }
}

#fastLogo_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#fastLogo_img img {
  width: 50%;
}

.logo_anime {
  -webkit-animation-name: logoAnime;
  animation-name: logoAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes logoAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes logoAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* -----------------------------------------------------
	mv
----------------------------------------------------- */
.mv {
  position: relative;
  max-height: 85vh;
  overflow: hidden;
}

.mv .js-video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .mv .js-video {
    display: none;
  }
}

.mv .movie_btn {
  position: absolute;
  bottom: 5em;
  right: 5em;
  z-index: 22;
}

.mv .movie_btn button {
  cursor: pointer;
}

.mv .top_slider img,
.mv .slider_sp img {
  width: 100%;
}

.mv .top_slider .slick-slide,
.mv .slider_sp .slick-slide {
  margin: 0 0;
}

.mv #hideMe {
  position: absolute;
  bottom: 30%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 22;
  -webkit-animation: cssAnimation .5s ease-in 8s forwards;
  animation: cssAnimation .5s ease-in 8s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .mv #hideMe {
    display: none;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 1) and (max-height: 572px) and (min-width: 769px) {
  .mv #hideMe {
    bottom: 38%;
    width: 20%;
  }
}

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

@keyframes cssAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* -----------------------------------------------------
	countDown
----------------------------------------------------- */
.countDown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
}

@media screen and (max-width: 768px) {
  .countDown {
    bottom: 5.20833vw;
  }
}

.countDown .countDownText {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .countDown .countDownText {
    gap: 2.60417vw;
  }
}

.countDown .countDownText .clock {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(83, 83, 83, 0.5)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(83, 83, 83, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(83, 83, 83, 0.5) 100%);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(83, 83, 83, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  min-width: 7vw;
  padding: 16px 10px 4px;
  position: relative;
  color: #ffffff;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .countDown .countDownText .clock {
    min-width: 17.44792vw;
    border-radius: 1.04167vw;
    padding: 2.60417vw 2.60417vw 1.04167vw;
  }
}

.countDown .countDownText .clock::before {
  content: "";
  background-color: #ffffff;
  width: 3px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .countDown .countDownText .clock::before {
    width: 0.78125vw;
    height: 3.90625vw;
  }
}

.countDown .countDownText .clock::after {
  content: "";
  background-color: #ffffff;
  width: 3px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .countDown .countDownText .clock::after {
    width: 0.78125vw;
    height: 3.90625vw;
  }
}

.countDown .countDownText .clock span {
  display: inline-block;
  font-size: 8rem;
  color: #ffffff;
  line-height: 0.8;
  font-family: 'Bebas Neue', sans-serif;
}

@media screen and (max-width: 768px) {
  .countDown .countDownText .clock span {
    font-size: 8.59375vw;
  }
}

.countDown .countDownText .clock small {
  display: inline-block;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .countDown .countDownText .clock small {
    font-size: 2.86458vw;
  }
}

/* -----------------------------------------------------
	hover_effect
----------------------------------------------------- */
.hover_effect .inner_i {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .hover_effect .inner_i {
    width: 100%;
    height: auto;
  }
}

.hover_effect .inner_i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .hover_effect .inner_i::before {
    content: none;
    opacity: 1;
  }
}

.hover_effect .inner_i .change_col {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  position: relative;
  padding: 0 0 20px;
}

.hover_effect .inner_i .change_col .bg-change {
  display: block;
  width: calc(100% / 3);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: opacity .6s;
  -o-transition: opacity .6s;
  transition: opacity .6s;
  position: relative;
}

.hover_effect .inner_i .change_col .bg-change .bg-txt {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}

.hover_effect .inner_i .change_col .bg-change .bg-img {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.hover_effect .inner_i .change_col .bg-change .effect {
  opacity: 0;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover_effect .inner_i .change_col .bg-change .overlay {
  opacity: .3;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover_effect .inner_i .change_col .bg-change a:hover {
  opacity: 1;
}

.hover_effect .inner_i .change_col .bg-change a:hover .overlay {
  opacity: 1;
}

.hover_effect .inner_i .change_col .bg-change.js-btn1 .bg-txt {
  background: url(../img/img1.png) center/cover no-repeat;
}

.hover_effect .inner_i .change_col .bg-change.js-btn1 .bg-txt.bg-txt1 {
  background-image: url(../img/img1_on.png);
}

.hover_effect .inner_i .change_col .bg-change.js-btn2 {
  margin: 0 20px;
}

.hover_effect .inner_i .change_col .bg-change.js-btn2 .bg-txt {
  background: url(../img/img2.png) center/cover no-repeat;
}

.hover_effect .inner_i .change_col .bg-change.js-btn2 .bg-txt.bg-txt2 {
  background-image: url(../img/img2_on.png);
}

.hover_effect .inner_i .change_col .bg-change.js-btn3 .bg-txt {
  background: url(../img/img3.png) center/cover no-repeat;
}

.hover_effect .inner_i .change_col .bg-change.js-btn3 .bg-txt.bg-txt3 {
  background-image: url(../img/img3_on.png);
}

.change_img1::before {
  opacity: 1 !important;
  background-image: url("../img/after_img1_n.jpg");
}

.change_img2::before {
  opacity: 1 !important;
  background-image: url("../img/after_img2_n.jpg");
}

.change_img3::before {
  opacity: 1 !important;
  background-image: url("../img/after_img3_n.jpg");
}

/* -----------------------------------------------------
	news
----------------------------------------------------- */
.news .inner {
  padding: 120px 0 0;
}

@media screen and (max-width: 768px) {
  .news .inner {
    padding: 15.625vw 0 0;
  }
}

.news .inner .bnr_link {
  display: inline-block;
  margin-bottom: 100px;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 20px 60px 0px rgba(68, 68, 68, 0.2);
}

@media screen and (max-width: 768px) {
  .news .inner .bnr_link {
    margin-bottom: 13.02083vw;
  }
}

.news .inner .news_ttl {
  text-align: left;
  color: #042054;
  font-size: 2.8rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .news .inner .news_ttl {
    font-size: 4.94792vw;
    margin-bottom: 5.20833vw;
  }
}

.news .inner .news_wrap .new_item {
  display: block;
  text-align: left;
  padding: 50px 140px 50px 0;
  border-top: 1px solid #ced1d3;
  position: relative;
}

@media screen and (max-width: 768px) {
  .news .inner .news_wrap .new_item {
    padding: 6.51042vw 13.02083vw 6.51042vw 0;
    border-top: 0.26042vw solid #ced1d3;
  }
}

.news .inner .news_wrap .new_item:last-of-type {
  border-bottom: 1px solid #ced1d3;
}

@media screen and (max-width: 768px) {
  .news .inner .news_wrap .new_item:last-of-type {
    border-bottom: 0.26042vw solid #ced1d3;
  }
}

.news .inner .news_wrap .new_item:not(span)::after {
  content: "";
  display: block;
  background: url("../img/btn_arrow.png") no-repeat center;
  background-size: contain;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right .2s;
  -o-transition: right .2s;
  transition: right .2s;
}

@media screen and (max-width: 768px) {
  .news .inner .news_wrap .new_item:not(span)::after {
    right: 0;
    width: 9.11458vw;
    height: 9.11458vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .news .inner .news_wrap .new_item:hover::after {
    right: 1.6em;
  }
}

.news .inner .news_wrap .new_item .new_time {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .news .inner .news_wrap .new_item .new_time {
    font-size: 3.64583vw;
    margin-bottom: 2.60417vw;
  }
}

.news .inner .news_wrap .new_item .new_time time {
  color: #959595;
}

.news .inner .news_wrap .new_item .new_time span {
  color: #0091d2;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .news .inner .news_wrap .new_item .new_time span {
    padding-left: 3.90625vw;
  }
}

.news .inner .news_wrap .new_item .news_text {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .news .inner .news_wrap .new_item .news_text {
    font-size: 3.64583vw;
  }
}

/* -----------------------------------------------------
	about
----------------------------------------------------- */
.about .inner .flex_wrap,
.detail_ticket .inner .flex_wrap {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap,
  .detail_ticket .inner .flex_wrap {
    display: block;
    margin-top: 5.20833vw;
  }
}

.about .inner .flex_wrap .text_box,
.detail_ticket .inner .flex_wrap .text_box {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap .text_box,
  .detail_ticket .inner .flex_wrap .text_box {
    margin-bottom: 10.41667vw;
  }
}

.about .inner .flex_wrap .text_box p,
.detail_ticket .inner .flex_wrap .text_box p {
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 1560px) {
  .about .inner .flex_wrap .text_box p,
  .detail_ticket .inner .flex_wrap .text_box p {
    font-size: 1.15385vw;
  }
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap .text_box p,
  .detail_ticket .inner .flex_wrap .text_box p {
    font-size: 3.77604vw;
  }
}

.about .inner .flex_wrap .text_box p + p,
.detail_ticket .inner .flex_wrap .text_box p + p {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap .text_box p + p,
  .detail_ticket .inner .flex_wrap .text_box p + p {
    margin-top: 5.20833vw;
  }
}

.about .inner .flex_wrap .img_box,
.detail_ticket .inner .flex_wrap .img_box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap .img_box,
  .detail_ticket .inner .flex_wrap .img_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.about .inner .flex_wrap .img_box img,
.detail_ticket .inner .flex_wrap .img_box img {
  width: 100%;
  -webkit-box-shadow: 0px 20px 80px 0px rgba(68, 68, 68, 0.4);
  box-shadow: 0px 20px 80px 0px rgba(68, 68, 68, 0.4);
}

.about .inner .flex_wrap.reverse,
.detail_ticket .inner .flex_wrap.reverse {
  margin-top: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.about .inner .flex_wrap.reverse .ttl,
.detail_ticket .inner .flex_wrap.reverse .ttl {
  margin-bottom: 2em;
}

@media screen and (max-width: 1560px) {
  .about .inner .flex_wrap.reverse .ttl,
  .detail_ticket .inner .flex_wrap.reverse .ttl {
    margin-bottom: 6.25vw;
  }
}

.about .inner .flex_wrap.reverse .ttl span,
.detail_ticket .inner .flex_wrap.reverse .ttl span {
  display: inline-block;
  font-size: 3.2rem;
  color: #042054;
  border-bottom: 4px solid #014099;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#0099e2), to(#014099));
  -webkit-border-image: -webkit-linear-gradient(left, #0099e2 0%, #014099 100%);
  -o-border-image: -o-linear-gradient(left, #0099e2 0%, #014099 100%);
  border-image: -webkit-gradient(linear, left top, right top, from(#0099e2), to(#014099));
  border-image: linear-gradient(to right, #0099e2 0%, #014099 100%);
  border-image-slice: 1;
  line-height: 1.2;
  letter-spacing: .04em;
  padding-top: 10px;
  padding-right: 0;
}

@media screen and (max-width: 1560px) {
  .about .inner .flex_wrap.reverse .ttl span,
  .detail_ticket .inner .flex_wrap.reverse .ttl span {
    font-size: 2.05128vw;
  }
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap.reverse .ttl span,
  .detail_ticket .inner .flex_wrap.reverse .ttl span {
    font-size: 5.46875vw;
  }
}

.about .inner .flex_wrap.reverse .img_box2,
.detail_ticket .inner .flex_wrap.reverse .img_box2 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 6%;
}

@media screen and (max-width: 768px) {
  .about .inner .flex_wrap.reverse .img_box2,
  .detail_ticket .inner .flex_wrap.reverse .img_box2 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.about .inner .flex_wrap.reverse .img_box2 img,
.detail_ticket .inner .flex_wrap.reverse .img_box2 img {
  width: 100%;
  -webkit-box-shadow: 0px 20px 80px 0px rgba(68, 68, 68, 0.4);
  box-shadow: 0px 20px 80px 0px rgba(68, 68, 68, 0.4);
}

h2 span.heading.height {
  line-height: 180px;
}

@media screen and (max-width: 768px) {
  h2 span.heading.height {
  line-height: 80px;
}
}

.about .inner.btmnone {
  padding-bottom: unset;
}

/* -----------------------------------------------------
	agent
----------------------------------------------------- */
.agent {
  background: url("../img/bg.png") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .agent {
    background: url("../img/sp/bg.png") no-repeat center center;
    background-size: cover;
  }
}

.agent .inner {
  padding: 120px 0;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .agent .inner {
    padding: 23.4375vw 0;
  }
}

.agent .inner .img_box {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .agent .inner .img_box {
    width: 74.73958vw;
    margin: 0 auto 7.8125vw;
  }
}

.agent .inner .agent_ttl {
  margin-bottom: 1.2em;
}

@media screen and (max-width: 768px) {
  .agent .inner .agent_ttl {
    margin-bottom: 7.8125vw;
  }
}

.agent .inner .agent_ttl span {
  font-size: 4rem;
  border-bottom: 3px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .agent .inner .agent_ttl span {
    font-size: 5.98958vw;
    border-bottom: 0.78125vw solid #ffffff;
  }
}

.agent .inner p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .agent .inner p {
    font-size: 3.77604vw;
  }
}

.agent .inner p + p {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .agent .inner p + p {
    margin-top: 5.20833vw;
  }
}

@media screen and (min-width: 769px) {
  .agent .inner .btn {
    margin: 2em auto 0;
  }
}

/* -----------------------------------------------------
	court_map
----------------------------------------------------- */
.court_map .inner .ttl_inner {
  margin: 0 0 40px;
}

@media screen and (max-width: 768px) {
  .court_map .inner .ttl_inner {
    margin: 0 0 7.8125vw;
  }
}

.court_map .inner .ttl_inner .ttl span {
  font-size: 9rem;
}

@media screen and (max-width: 768px) {
  .court_map .inner .ttl_inner .ttl span {
    font-size: 11.19792vw;
  }
}

.court_map .inner .ttl_inner .ttl span.heading {
  padding-right: 3%;
}

.court_map .inner .ttl_inner .ttl span .small {
  font-size: 6rem;
}

@media screen and (max-width: 768px) {
  .court_map .inner .ttl_inner .ttl span .small {
    font-size: 7.8125vw;
  }
}

.court_map .inner .tab_area {
  -webkit-box-shadow: 0px 20px 50px 0px rgba(68, 68, 68, 0.4);
  box-shadow: 0px 20px 50px 0px rgba(68, 68, 68, 0.4);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area {
    border-radius: 2.60417vw;
  }
}

.court_map .inner .tab_area .tab {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  border-bottom: 4px solid #0091d2;
}

.court_map .inner .tab_area .tab li {
  width: calc(100% / 2);
  padding: 14px 0;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  background: #c1c5c9;
  position: relative;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area .tab li {
    padding: 2.60417vw 1.30208vw;
  }
}

.court_map .inner .tab_area .tab li:last-of-type {
  margin-left: 4px;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area .tab li:last-of-type {
    margin-left: 0.78125vw;
  }
}

.court_map .inner .tab_area .tab li span {
  color: #717171;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area .tab li span {
    font-size: 3.90625vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .court_map .inner .tab_area .tab li:hover {
    cursor: pointer;
  }
}

.court_map .inner .tab_area .tab li.is-current {
  background: #0091d2;
}

.court_map .inner .tab_area .tab li.is-current span {
  color: #ffffff;
  display: block;
  font-size: 3rem;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area .tab li.is-current span {
    font-size: 3.90625vw;
  }
}

.court_map .inner .tab_area .list {
  padding: 60px 0 80px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area .list {
    padding: 10.41667vw 3.90625vw;
  }
}

.court_map .inner .tab_area .list .list_inner {
  display: none;
}

.court_map .inner .tab_area .list .list_inner.is-current {
  display: block;
}

.court_map .inner .tab_area .list .list_inner .content.is-current {
  display: block;
}

.court_map .inner .tab_area .list .list_inner .aside {
  text-align: left;
  margin: 1.25em 40px 0;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .court_map .inner .tab_area .list .list_inner .aside {
    margin: 1em 0 0;
    font-size: 3.125vw;
  }
}

.content.table_container {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .content.table_container {
    display: block;
  }
}

.content.table_container::after {
  content: "";
  display: block;
  width: calc(100% / 2 - 5%);
}

.content.table_container .table_wrap {
  width: calc(100% / 2 - 5%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ced1d3;
}

@media screen and (max-width: 768px) {
  .content.table_container .table_wrap {
    width: 100%;
    border-radius: 2.60417vw;
    border: 0.26042vw solid #ced1d3;
  }
  .content.table_container .table_wrap + .table_wrap {
    margin-top: 7.8125vw;
  }
}

.content.table_container .table_wrap table {
  table-layout: auto;
  width: 100%;
}

.content.table_container .table_wrap table tr.top td:first-child {
  font-weight: 700;
  border-left: 0;
}

@media screen and (min-width: 769px) {
  .content.table_container .table_wrap table tr.top td:first-child {
    width: 30%;
  }
}

.content.table_container .table_wrap table th {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 15px 0;
  vertical-align: middle;
  background: #f2f3f7;
  color: #042054;
}

@media screen and (max-width: 768px) {
  .content.table_container .table_wrap table th {
    font-size: 4.6875vw;
    padding: 2.34375vw 0;
  }
}

.content.table_container .table_wrap table td {
  font-size: 1.8rem;
  padding: 25px 6px;
  vertical-align: middle;
  border-top: 1px solid #ced1d3;
  border-left: 1px solid #ced1d3;
}

@media screen and (max-width: 768px) {
  .content.table_container .table_wrap table td {
    font-size: 3.64583vw;
    padding: 3.125vw 1.5625vw;
    border-top: 0.26042vw solid #ced1d3;
    border-left: 0.26042vw solid #ced1d3;
  }
}

.content.map_container {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .content.map_container {
    display: block;
  }
}

.content.map_container .map_img_wrap {
  width: calc(100% / 2 - 5%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ced1d3;
}

@media screen and (max-width: 768px) {
  .content.map_container .map_img_wrap {
    width: 100%;
    border-radius: 2.60417vw;
  }
  .content.map_container .map_img_wrap + .map_img_wrap {
    margin-top: 7.8125vw;
  }
}

.content.map_container .map_img_wrap .ttl {
  font-size: 2.6rem;
  padding: 16px 0;
  text-align: center;
  background: #f2f3f7;
  border-bottom: 1px solid #ced1d3;
  color: #042054;
}

@media screen and (max-width: 768px) {
  .content.map_container .map_img_wrap .ttl {
    font-size: 4.6875vw;
    padding: 2.34375vw 0;
    border-bottom: 0.26042vw solid #ced1d3;
  }
}

.content.map_container .map_img_wrap .img_box {
  margin: 40px auto;
  max-width: 420px;
}

@media screen and (max-width: 768px) {
  .content.map_container .map_img_wrap .img_box {
    margin: 6.51042vw 5.20833vw;
    max-width: 90%;
  }
}

.content.map_container .map_img_wrap .btn {
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .content.map_container .map_img_wrap .btn {
    margin: 6.51042vw auto;
    max-width: 87%;
  }
}

/* -----------------------------------------------------
	fee schedule
----------------------------------------------------- */
.fee_schedule .inner {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}

.fee_schedule .inner .ttl_inner {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .ttl_inner {
    margin: 0 auto 7.8125vw;
  }
}

.fee_schedule .inner .ttl_inner .ttl span {
  font-size: 10rem;
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .ttl_inner .ttl span {
    font-size: 11.19792vw;
  }
}

.fee_schedule .inner .ttl_inner .ttl span .small {
  font-size: 6rem;
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .ttl_inner .ttl span .small {
    font-size: 7.8125vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap {
  margin: 0;
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  background: #e4ecf1;
  border-radius: 12px;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(68, 68, 68, 0.4);
  box-shadow: 0px 20px 50px 0px rgba(68, 68, 68, 0.4);
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  transition: 1.2s;
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list {
    display: block;
    border-radius: 2.60417vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item {
  width: calc(100% / 2);
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap {
    padding: 5.20833vw 4.42708vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .ttl {
  display: inline-block;
  font-size: 3rem;
  color: #042054;
  border-bottom: 4px solid #014099;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#0099e2), to(#014099));
  -webkit-border-image: -webkit-linear-gradient(left, #0099e2 0%, #014099 100%);
  -o-border-image: -o-linear-gradient(left, #0099e2 0%, #014099 100%);
  border-image: -webkit-gradient(linear, left top, right top, from(#0099e2), to(#014099));
  border-image: linear-gradient(to right, #0099e2 0%, #014099 100%);
  border-image-slice: 1;
  line-height: 1.2;
}

@media screen and (max-width: 1560px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .ttl {
    font-size: 1.79487vw;
  }
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .ttl {
    font-size: 4.6875vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .sub_text {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 0 0 8%;
}

@media screen and (max-width: 1560px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .sub_text {
    font-size: 1.66667vw;
  }
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .sub_text {
    font-size: 4.94792vw;
    padding: 0 0 5.20833vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area {
  padding: 10px 0;
  margin: 0 8%;
  background: #ffffff;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area {
    padding: 3.90625vw 2.60417vw;
    border-radius: 2.60417vw;
    margin: 0 0;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_large {
  font-size: 2.6rem;
  font-weight: 700;
  color: #042054;
  margin-bottom: 8px;
}

@media screen and (max-width: 1560px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_large {
    font-size: 1.79487vw;
  }
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_large {
    font-size: 5.20833vw;
    margin-bottom: 0.78125vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_large small {
  font-size: 1.8rem;
}

@media screen and (max-width: 1560px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_large small {
    font-size: 1.15385vw;
  }
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_large small {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 1560px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_small {
    font-size: 1.15385vw;
  }
}

@media screen and (max-width: 768px) {
  .fee_schedule .inner .fee_schedule_slide .item_list_wrap .item_list .item.detail_wrap .text_area .text_small {
    font-size: 3.64583vw;
  }
}

.fee_schedule .inner .fee_schedule_slide .slick-center {
  padding: 0 0 60px;
}

.fee_schedule .inner .fee_schedule_slide .slick-center .item_list {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* -----------------------------------------------------
	gallery
----------------------------------------------------- */
.gallery .inner {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}

.gallery .inner .ttl_inner {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .gallery .inner .ttl_inner {
    margin: 0 auto 7.8125vw;
  }
}

.gallery .inner .ttl_inner .ttl span {
  font-size: 10rem;
}

@media screen and (max-width: 768px) {
  .gallery .inner .ttl_inner .ttl span {
    font-size: 11.19792vw;
  }
}

.gallery .inner .gallery_slide {
  overflow: hidden;
}

.gallery .inner .gallery_slide .slick-slide {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  transition: 1.2s;
  padding: 0 0 60px;
  margin: 0;
}

.gallery .inner .gallery_slide .slick-slide img {
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(68, 68, 68, 0.4);
  box-shadow: 0px 20px 50px 0px rgba(68, 68, 68, 0.4);
}

@media screen and (max-width: 768px) {
  .gallery .inner .gallery_slide .slick-slide img {
    border-radius: 1.5625vw;
  }
}

.gallery .inner .gallery_slide .slick-slide.slick-current,
.gallery .inner .gallery_slide .slick-slide.is-active-next {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* -----------------------------------------------------
	fixed_link
----------------------------------------------------- */
@-webkit-keyframes anim {
  0% {
    right: 100%;
    left: 0%;
  }
  80% {
    right: 100%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  90% {
    right: 0%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  100% {
    right: 0%;
    left: 100%;
  }
}

@keyframes anim {
  0% {
    right: 100%;
    left: 0%;
  }
  80% {
    right: 100%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  90% {
    right: 0%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  100% {
    right: 0%;
    left: 100%;
  }
}

#fixed_link {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0 auto;
  z-index: 60;
  background: #0075c2;
  display: none;
}

#fixed_link .page_anc {
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------------------------
	ContactBtn
------------------------------------------------------------*/

#ContactIconBtn{
    position: fixed;
    bottom: 125px;
    right: 20px;
    z-index: 999999;
    padding: 10px;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    background-color: rgb(255 255 255 / 80%);
    border-radius: 3px;
}
#ContactIconBtn .delete {
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    position: absolute;
    display: block;
    transform: scale(var(--ggs,1));
    width: 30px;
    height: 30px;
    border: 2px solid;
    border-radius: 100%;
    top: -10px;
    right: -7px;
    background-color: #fff;
    background-color: #333;
}
#ContactIconBtn .delete:hover{
    cursor: pointer;
    background-color: #98854d;
    border-color: #98854d;
}
#ContactIconBtn .delete::after,
#ContactIconBtn .delete::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 20px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 5px;
    top: 11px;
    left: 3px
}
#ContactIconBtn .delete::after {
    transform: rotate(-45deg)
}
#ContactIconBtn img{
    width: 300px;
}
#ContactIconBtn p{font-size: 15px;font-weight: bold;color: #323232;margin-bottom: 1px;text-align: center;line-height: 1.4;padding-bottom: 5px;}
#ContactIconBtn ul{
    /* padding: 5px; */
    padding-right: 0;
}
#ContactIconBtn li{}
#ContactIconBtn li + li{
    /* margin-top: 1px; */
    /* border-top: 1px solid #ccc; */
    margin-top: 7px;
}

#ContactIconBtn a {
  text-decoration: none;
  background: #0091d2;
  color: #fff;
  text-align: center;
  padding: 12px 19px;
  box-sizing: border-box;
  border-radius: 3px;
  margin-left: 0;
  display: block;
  font-size: 14px;
  position: relative;
  padding-right: 24px;
  line-height: 1.3;
}
#ContactIconBtn a:hover{
    opacity: .7;
}

#floatingBn{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
}
#floatingBn p{    width: 600px;    margin: 0 auto;position: relative;}
#floatingBn img{width: 100%;height: auto;}
#floatingBn a{
    display: block;
    text-decoration: none;
}
#floatingBn a:hover{ opacity: 0.7}
#floatingBn .delete{width: 23px;color: #fff;text-align: center;display: block;position: absolute;top: -4px;right: -17px;}
#floatingBn .delete:after{content: "\f00d";font-family:FontAwesome;background-color: #000;display: flex;justify-content: center;align-items: center;padding-bottom: 1px;box-sizing: border-box;border: 2px solid #fff;box-shadow: 0 0 3px #000;border-radius: 100%;height: 23px;}
#floatingBn .delete:hover{cursor: pointer}

@media only screen and (max-width: 479px) {
#ContactIconBtn{
    bottom: 5px;
    text-align: center;
    right: 10px;
    left: 10px;
}
#ContactIconBtn p{
    font-size: 12px;
}
#ContactIconBtn img{
    width: 55%;
}
#ContactIconBtn ul{
    margin-left: 6px;
}

#ContactIconBtn li a{
    padding: 7px 0;
}
#ContactIconBtn li a:after{
    content: none;
}
#ContactIconBtn li.long{
    margin-top: 5px !important;
}
}


.caption {
  text-align: left;
  font-size: 1.15385vw;
}

@media screen and (max-width: 768px) {
  .caption {
    margin: 1em .5em 0;
    font-size: 3.3vw;
  }
}