@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}
:root {
  --blue: #061b51;
  --l-blue: #b4f5ff;
  --orange: #ff7e00;
}
body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: min(3.7vw, 1.8rem);
  letter-spacing: 0.02rem;
  line-height: 1.8;
  text-align: center;
}
h2,
h3,
h4 {
  font-weight: 700;
  word-break: keep-all;
}
a {
  color: #333333;
}
a:hover {
  opacity: 0.7;
}
.clarity a:hover {
  opacity: 1;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  width: 100%;
  display: block;
}
.pc_none {
  display: block;
}
.sp_none {
  display: none;
}
.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.blue {
  color: var(--blue);
}
.l-blue {
  color: var(--l-blue);
}
.orange {
  color: var(--orange);
}
.white {
  color: #ffffff;
}
.black {
  color: #333333;
}
.left {
  text-align: justify;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}
.ft_60 {
  font-size: min(7.4vw, 6.0rem);
}
.ft_33 {
  font-size: min(6.8vw, 3.3rem);
}
.ft_30 {
  font-size: min(5vw, 3.0rem);
}
.ft_28 {
  font-size: min(3.9vw, 2.8rem);
}
.ft_24 {
  font-size: clamp(1.6rem, 3.75vw, 2.4rem);
}
.ft_20 {
  font-size: min(4.6vw, 20px);
}
.ft_18 {
  font-size: clamp(1.4rem, 3.75vw, 1.8rem);
}
.ft_16 {
  font-size: min(3.3vw, 1.6rem);
}
.mb_10{
	margin-bottom: 10px;
}
.bold {
  font-weight: 700;
}
.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flex.row {
  flex-direction: row;
}
.fadeInUpTrigger,
.fadeInRightTrigger {
  opacity: 0;
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  background-color: rgba(6, 27, 81, 0.5);
  padding: 4px 2% 4px 5vw
}
.header_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  height: 100%;
  gap: 20px;
}
.header_right {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  width: 35%;
  max-width: 87px;
}
/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin: 0;
  top: 5px;
  right: 4px;
}
.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 1.5px;
  background: #ffffff;
  width: 40px;
  top: 43px;
}
.ham_btn span:nth-of-type(1) {
  top: 18px;
}
.ham_btn span:nth-of-type(2) {
  top: 30px;
}
.ham_btn.active span:nth-of-type(1) {
  top: 24px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 45px;
}
.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.ham_btn.active span:nth-of-type(3) {
  top: 36px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 45px;
}
.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: right 0.6s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: var(--blue);
  overflow-y: auto;
  padding: 60px 5%;
}
.nav_wrap nav {
  width: 90%;
  margin: 0 auto 40px;
}
.nav_wrap nav>ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav_wrap nav>ul li {
  list-style: none;
  text-align: left;
  font-size: min(3.7vw, 1.8rem);
  line-height: 1;
  margin-bottom: 8px;
}
.nav_wrap nav>ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #ffff;
}
.nav_wrap.show {
  right: 0;
}
.toggle {
  display: none;
}
.Label {
  /*タイトル*/
  padding: 12px;
  display: block;
  text-align: left;
  color: #ffffff;
  font-size: min(3.7vw, 1.8rem);
  border-bottom: 1px solid #ffff;
}
.Label::before {
  content: "+";
  font-size: min(5vw, 3.0rem);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}
.Label,
.a_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.a_content {
  height: 0;
  overflow: hidden;
  text-align: left;
  transition: height 0.3s;
}
.a_content ul {
  padding-bottom: 20px;
}
.toggle:checked+.Label+.a_content {
  height: auto;
  max-height: 1000px;
  transition: all .3s;
}
.toggle:checked+.Label::before {
  content: "－";
}
.tel {
  margin: 0 auto;
}
.tel a p {
  color: #ffffff;
}
.nav_wrap .tel a p {
  font-size: min(7vw, 3.0rem);
  text-align: left;
  margin: 0 auto;
  position: relative;
  line-height: 1.2;
  padding-left: min(7vw, 35px);
}
.nav_wrap .tel a p span {
  font-size: min(3.3vw, 1.6rem);
}
.tel a p::before {
  content: "";
  width: min(6vw, 30px);
  aspect-ratio: 40 / 31;
  background-image: url(../img/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 2%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
/* MV */
.MV {
  position: relative;
  margin-top: 100px;
}
.MV::before {
  content: "";
  width: 100%;
  height: 100px;
  background-color: var(--blue);
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
}
.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}
.slide img {
  width: 100%;
}
iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.MV_text {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  max-width: 1020px;
}
/* 共通 */
section {
  position: relative;
  padding: 40px 0 80px;
}
.section_inner {
  width: 90%;
  margin: 50px auto;

}
#news h2 {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
#news .news_list_wrap {
  padding: 20px 0;
  height: 200px;
  overflow-y: scroll;
}
#news .news_list_wrap::-webkit-scrollbar {
  width: 4px;
}
#news .news_list_wrap::-webkit-scrollbar-track {
  background-color: #ffffff;
}
#news .news_list_wrap::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 2px;
}
#news .news_list_wrap li {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px dotted #bfbfbf;
}
#news .news_list_wrap a {
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px 20px;
}
#news .news_list_wrap a .date {
  font-weight: 900;
}
#news .news_list_wrap a h3 {
  text-align: left;
  font-weight: 500;
}
#news::after {
  content: "";
  width: min(100%, 1069px);
  aspect-ratio: 1069 / 462;
  background-image: url(../img/deco_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 80%;
  right: 0;
}
#about {
  padding: 10vw 5% 30vw;
  overflow: hidden;
}
.about_bg {
  position: absolute;
  width: 100vw;
  height: 110%;
  background-image: url(../img/bg_01.png);
  background-size: cover;
  background-position: center;
  top: -7%;
  left: -5vw;
}
.section_ttl {
  text-align: left;
  line-height: 1.5;
  gap: 1vw;
  display: flex;
  flex-direction: column;
  margin-bottom: min(20%, 60px);
}
#about .section_ttl.ft_60 {
  font-size: min(6.6vw, 6.0rem);
}
#about .section_ttl span {
  text-align: right;
}
#about .content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#course h2 {
  align-items: center;
}
#course .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.more {
  max-width: 280px;
  margin: 0 auto;
}
#course .anchor_wrap {
  gap: 10px;
  width: 90%;
  max-width: 580px;
  margin: 0 auto;
}
#course .anchor_item a {
  color: #ffffff;
  gap: 2%;
  align-items: center;
  padding: 2%;
  background-color: var(--blue);
}
#course .anchor_item a p:first-child {
  width: 35%;
  font-size: min(3.7vw, 3.0rem);
  line-height: 1.5;
}
#course .anchor_item a p:first-child span {
  display: block;
}
#course .anchor_item a p:last-child {
  position: relative;
  padding-right: 14px;
  width: 65%;
}
#course .anchor_item a p:last-child::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-left: 7.5px solid #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
}
#faq {
  padding-top: 10vw;
}
#faq::before {
  content: "";
  width: min(100%, 1069px);
  aspect-ratio: 1069 / 462;
  background-image: url(../img/deco_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 0%;
  left: 0;
}
.faq_bg {
  position: absolute;
  width: 100vw;
  height: 80%;
  background-image: url(../img/bg_02.png);
  background-size: cover;
  background-position: center;
  top: 0;
  left: -5vw;
}
#faq .content_wrap {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 40px 0 10px;
}
#faq .content {
  width: 94%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#faq .content .accordion label {
  background-color: var(--orange);
  border-bottom: none;
  position: relative;
  padding-right: 30px;
  padding-left: min(7vw, 4.0rem);
}
#faq .content .accordion label::after {
  content: "Q.";
  position: absolute;
  top: min(5vw, 10px);
  left: 1.5%;
}
#faq .a_content {
  background-color: #ffffff;
  padding: 0 2%;
}
#faq .a_content p {
  margin: 20px 0;
  position: relative;
  padding-left: min(7vw, 4.0rem);
}
#faq .a_content p::after {
  content: "A.";
  position: absolute;
  top: 0;
  left: 1.5%;
  font-size: min(3.7vw, 1.8rem);
}
#faq.toggle:checked+.Label+.a_content {
  background-color: #ffffff;
  padding: 2%;
}
#faq .content_02 h3 {
  line-height: 1;
}
#faq .content_02 .accordion label {
  background-color: var(--l-blue);
  color: #333333;
}
#facility h2 {
  align-items: center;
}
#facility .body {
  background-color: #e6fcff;
  color: var(--blue);
  font-size: min(3.7vw, 1.8rem);
}
#facility .content {
  width: 94%;
  margin: 0 auto;
  padding: 40px 0;
}
#facility dl {
  gap: 0;
  margin-bottom: 40px;
}
#facility dt {
  padding: 10px 0;
  border-bottom: 1px solid #8b8b8b;
}
#facility dd {
  padding: 10px 4px;
  border-bottom: 1px solid #8b8b8b;
}
#facility .link a {
  display: inline-block;
  width: 90%;
  max-width: 366px;
  margin: 0 auto 40px;
  background-color: var(--blue);
  color: #ffffff;
  padding: 14px;
}
#staff  .content_img {
    width: 30%;
    margin: 0 auto;
}
#gym .content_textWrap .flex {
        display: flex;
        gap: 5%; 
}
#gym .flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 5rem;
}
.feetable
{
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 5rem;
}
#contact {
  background-color: var(--blue);
  color: #ffffff;
  font-size: min(3.3vw, 1.8rem);
}
#contact .section_inner {
  position: relative;
  z-index: 2;
}
#contact .section_ttl {
  align-items: center;
}
#contact p {
  text-align: left;
  display: inline-block;
  margin: 0 auto 40px;
}
#contact .btn {
  max-width: 390px;
  margin: 0 auto;
}
#contact::before {
  content: "";
  width: min(100%, 1727px);
  height: min(100%, 740px);
  background-image: url(../img/deco_03.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 15% bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
    #para .hurikomi {
        background-color: #e6fcff;
        color: var(--blue);
        font-size: min(3.7vw, 1.8rem);
    }
.link a {
  display: inline-block;
  width: 90%;
  max-width: 366px;
  margin: 0 auto 40px;
  background-color: var(--blue);
  color: #ffffff;
  padding: 14px;
}
.map {
  width: 100%;
  height: 80vw;
  max-height: 450px;
  display: block;
}
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.footer_inner {
  width: 90%;
  margin: 20px auto;
}
.footer_logo {
  width: 60%;
  max-width: 240px;
  margin: 0 auto;
}
.sns_wrap {
  justify-content: center;
  align-items: center;
}
.tel_info {
  gap: 6px;
}
.tel_info .tel a p {
  color: #333333;
  padding-left: min(10vw, 45px);
  position: relative;
}
.tel_info .tel a p span {
  font-size: min(3.3vw, 16px);
}
.tel_info .tel a p::before {
  content: "";
  width: min(8.3vw, 40px);
  aspect-ratio: 40 / 31;
  background-image: url(../img/tel_b.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.footer_inner nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px 10%;
  flex-wrap: wrap;
}
.cr {
  padding: 16px 0;
  background-color: var(--blue);
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}
#go_top {
  width: 60px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}
.table-compare {
    width: 100%;
    font-size: 1.2rem;
}
	.table-compare tr td img{
		max-width: 80%;
	}
    .scroll {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    overflow-x: scroll;
}
	.scroll-hint-icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    pointer-events: none;
}
	.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: .8;
}
	.scroll-hint-text {
    font-size: 10px;
    color: #FFF;
    margin-top: 5px;
}
.table-compare thead th {
    background: #28325b;
    color: #FFFFFF;
}
.table-compare tbody th {
    background: var(--blue);
    color: #FFFFFF;
}

.table-compare td, .table-compare th {
    border: 1px solid #707070;
    padding: 1.4em;
    text-align: center;
    vertical-align: middle;
    background: #FFFFFF;
	width: 15%;
}
#gold_star_schedule table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
}
	#gold_star_schedule tr{
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	}
	#gold_star_schedule th{
	border-left: 1px solid #333;
    border-right: 1px solid #333
	}
	#gold_star_schedule td{
	border-left: 1px solid #333;
    border-right: 1px solid #333
	}
    #player .content_item {
    margin-top: 40px;
}
#staff .content_img {
    width: 100%;
    margin: 0 auto;
}
#staff .flex {
    display: flex
;
    flex-direction: column;
    gap: 13px;
    margin-top: 72px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }
  .pc_none {
    display: none;
  }

  .flex {
    display: flex;
    flex-direction: row;
    gap: 15%;
  }
  header {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100px;
    padding: 10px 2%;
    color: #ffffff;
  }
  .header_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .header_inner .logo {
    width: 14%;
    max-width: 214px;
  }
  .header_right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-width: 600px;
    max-width: 1000px;
    gap: 2%;
  }
  .header_right-body {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header_right .tel_info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
  }
  .header_right .tel_info .tel {
    margin: 0;
  }
  .header_right .tel_info .tel a p {
    color: #ffffff;
  }
  .header_right .tel_info .tel a p::before {
    background-image: url(../img/tel.png);
  }
  .header_right--bottom {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }
  .pc_nav {
    padding: 10px 20px;
    font-size: 1.6rem;
  }
  .nav_parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }
  .U_line {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .U_line>a {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    line-height: 1;
    position: relative;
  }
  .U_line>a::after {
    content: "";
    width: 80%;
    height: 1px;
    background-color: var(--l-blue);
    position: absolute;
    bottom: -4px;
    left: 10%;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  .U_line>a:hover:after {
    transform: scale(1, 1);
  }
  .U_line a img {
    width: auto;
    width: 90px;
    margin: 0 auto;
  }
  .nav_child {
    position: absolute;
    left: 50%;
    top: 31px;
    transform: translate(-50%);
    z-index: 4;
    width: 137px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    display: flex;
    flex-direction: column;
  }
  .U_line:nth-child(6) .nav_child {
    width: 200px;
  }
  .nav_child li {
    background: var(--blue);
  }
  .has-child li a {
    display: block;
    padding: 4px 0;
    width: 100%;
    font-size: 1.5rem;
    height: 101%;
  }
  nav li.has-child:hover>ul,
  nav li.has-child ul li:hover>ul,
  nav li.has-child:active>ul,
  nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
  }
  /*ナビゲーションaタグの形状*/
  .nav_child li a {
    color: #ffffff;
  }
  nav li.has-child ul li:last-child a {
    border-bottom: none;
  }
  nav li.has-child ul li a:hover,
  nav li.has-child ul li a:active {
    background: var(--l-blue);
    color: var(--blue);
  }
  .MV_text {
    position: absolute;
    width: 90%;
    max-width: 1280px;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
  }
  .MV_text img {
    max-width: 1020px;
  }
  section {
    padding: min(1vw, 60px) 0;
  }
  .section_inner {
    width: 90%;
    max-width: 1280px;
  }
  .section_ttl {
    flex-direction: column;
    align-items: center;
    margin-bottom: min(5vw, 100px);
  }
  .animate__delay-05s {
    animation-delay: calc(var(--animate-delay) * 0.5);
  }
  .animate__delay-10s {
    animation-delay: calc(var(--animate-delay) * 1.0);
  }
  #news {
    padding-bottom: 5vw;
  }
  #news .content {
    width: 100%;
  }
  #news h2 {
    align-items: flex-end;
  }
  .news_list_wrap {
    width: 100%;
  }
  #news .news_list_wrap a {
    flex-direction: row;
    gap: 10%;
  }
  #news::after {
    top: 24%;
  }
  #about {
    padding: 3vw 5% 10vw;
  }
  #about .section_ttl {
    max-width: 1050px;
    margin-bottom: 7vw;
  }
  #about .content {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
    line-height: 2;
  }
  #about .content p {
    padding-bottom: 20px;
  }
  .about_bg {
    width: 100vw;
    height: 100%;
    background-size: cover;
    top: 0;
    left: 0;
  }
  #course .content {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    gap: 80px;
  }
  #course .anchor_wrap {
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    gap: 20px 40px;
  }
  .anchor_item {
    width: calc((100% - 40px)/ 2)
  }
  #faq {
    padding-top: 14vw;
  }
  #faq .section_ttl {
    align-items: flex-start;
  }
  #faq::before {
    top: -3%;
    left: 0;
  }
  .faq_bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    top: 0;
    left: 0;
  }
  #facility h2 {
    margin-bottom: 40px;
  }
  #facility .body {
    padding: 40px 5%;
  }
  #facility .content {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  #facility dl {
    flex-direction: column;
    gap: 0px;
  }
	.description-item{
		margin-bottom: 40px;
	}
  #facility dl .description-item {
    display: flex;
	  margin-bottom: 40px;
  }
  #facility dl .description-item dt {
    width: 130px;
  }
  #facility dl .description-item dd {
    width: calc(100% - 130px);
  }
  #facility dl .description-item:first-child dd {
    width: 100%;
  }
  #facility .link a {
    padding: 14px;
    margin: 20px auto 0;
  }
	#staff .greeting {
    text-align: left;
    margin-bottom: 10rem;
}

	#staff .body {
    padding: 40px 5%;
  }
	#staff .content_textWrap {
    text-align: center;
    margin: 0 auto;
}
	#staff .content_img {
    width: 30%;
}
	#staff  .content_img {
    width: 30%;
    margin: 0 auto;
}
	#staff .content {
    flex-direction: row-reverse;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#staff .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#gym .content_textWrap {
    width: 600px;
}
	#gym .content_textWrap .flex {
        flex-direction: column;
    }
 #gym .body {
    padding: 40px 5%;
  }
	#gym .content {
    flex-direction: row-reverse;
    justify-content: space-between;
	margin-bottom: 9rem;
  }
	#gym .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#double_star .content_textWrap {
    width: 600px;
}
	#double_star .content_textWrap .flex {
        flex-direction: column;
    }
 #double_star .body {
    padding: 40px 5%;
  }
	#double_star .content {
    flex-direction: row-reverse;
    justify-content: space-between;
	margin-bottom: 9rem;
  }
	#double_star .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#senior .content_textWrap {
    width: 600px;
}
	#senior .content_textWrap .flex {
        flex-direction: column;
    }
 #senior .body {
    padding: 40px 5%;
  }
	#senior .content {
    flex-direction: row-reverse;
    justify-content: space-between;
	margin-bottom: 9rem;
  }
	#senior .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#junior .content_textWrap {
    width: 600px;
}
	#junior .content_textWrap .flex {
        flex-direction: column;
    }
 #junior .body {
    padding: 40px 5%;
  }
	#junior .content {
    flex-direction: row-reverse;
    justify-content: space-between;
	margin-bottom: 9rem;
  }
	#junior .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	.feetable{
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 5rem;
}
  #contact {
    padding-bottom: 8vw;
  }
  #contact::before {
    background-size: contain;
  }
  #contact .btn_wrap {
    justify-content: center;
    margin-top: 3vw;
  }
  #contact .btn {
    margin: 0;
  }
.footer_inner{
position: relative;
padding: 20px 0;
 min-height: 240px;
 justify-content: flex-start;
}
.footer_logo{
margin: 0;
}
.footer_info{
width: calc(96% - 240px);
  flex-direction: column;
  justify-content: space-evenly;
  gap: 40px;
}
.footer_info .tel_info{
justify-content: center;
 align-items: center;
 gap: 20px;
}
.footer_info .tel{
margin: 0;
}
.footer_inner nav ul {
    width: 100%;
    gap: 2%;
    justify-content: space-between;
}
  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }
 #pro .content {
    flex-direction: row-reverse;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#pro .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#pro .content_textWrap {
    width: 578px;
}
	#draft img {
    width: 50%;
    display: block;
    margin: 50px auto;
}
	#player .content {
  width: 100%;
  margin: 0 auto;
}
	#player .content .flex {
gap: 30%;
}
	#player .section_inner {
  width: 90%;
  margin: 50px auto;
}
	#ob img {
    width: 30%;
    display: block;
    margin: 2rem auto;
}
	#fee .section_ttl {
        flex-direction: column;
        align-items: center;
        margin-bottom: min(2vw, 100px);
}
	#fee table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto 10rem;
	text-align: left;
}
	#gold_star_activity .content_textWrap {
    text-align: center;
    margin: 0 auto;
}
	#gold_star_activity .content_img {
    width: 30%;
}
	#gold_star_activity  .content_img {
    width: 30%;
    margin: 0 auto;
}
	#gold_star_activity .content {
    flex-direction: row-reverse;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	#gold_star_activity .reverse {
    flex-direction: row;
    justify-content: space-between;
		        margin-bottom: 9rem;
  }
	.table-compare {
    width: 100%;
    font-size: 1.8rem;
}
.table-compare thead th {
    background: #28325b;
    color: #FFFFFF;
}
.table-compare tbody th {
    background: var(--blue);
    color: #FFFFFF;
}
.table-compare td, .table-compare th {
    border: 1px solid #707070;
    padding: 1.4em;
    text-align: center;
    vertical-align: middle;
    background: #FFFFFF;
	width: 15%;
}
	
	#gold_star_schedule table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
}
	#gold_star_schedule tr{
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	}
	#gold_star_schedule th{
	border-left: 1px solid #333;
    border-right: 1px solid #333
	}
	#gold_star_schedule td{
	border-left: 1px solid #333;
    border-right: 1px solid #333
	}

#player .content_itemWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 3vw;
  width: 100%;
  margin-bottom: 100px;
}
#player .content_itemWrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
  }
	#para .hurikomi {
    background-color: #e6fcff;
    color: var(--blue);
    font-size: min(3.7vw, 1.8rem);
}
}

.u_mv .U_ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}