@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.8;
  text-align: left;
}
@media(min-width:960px){
  body{
    font-family: 'Noto Sans JP', sans-serif;
  }
}
section h2 {
  line-height: 3.8rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after { /* HTMLのすべての要素 */
  box-sizing: border-box; /* サイズが指定しやすい */
}
/*漢字大きく、ひらがな小さく　h2*/
.kanji {
  font-size: 2.4rem
}
/*メイン*/
@media(min-width:960px) {
  .kanji {
    font-size: 4.0rem
  }
}

@media(min-width:960px) {
  .shine, .shine::before {
    display: none;
  }
}
/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
.main {
  background-color: #fff;
  position: relative;
}
/*ヘッダー*/
.header {
  width: 100%;
  background-color: #9EDCD9;
}
.header h1 {
  color: #333;
  text-align: left;
  padding: 6px 12px;
  font-size: 1.8rem;
  font-weight: 600;
}
.header h1 a{
  text-decoration: none;
  color:#333;
}
@media(min-width:960px) {
  .header__wrapper {
    max-width: 1250px;
    position: relative;
    margin: 0 auto;
  }
}
/*main-navigation spだと、ハンバーガーメニュー*/
.main__menu {
  position: relative;
  background-color: #000;
}
.open-button, .close-button {
  display: none;
}
.open-button {
  display: block;
  position: absolute;
  right: 10px;
  top: 22px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.open-button span, .open-button span:before, .open-button span:after {
  position: absolute;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  display: block;
  content: "";
}
.open-button span:before {
  bottom: -8px;
}
.open-button span:after {
  bottom: -16px;
}
.close-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0px;
  color: #fff;
  font-size: 2.0rem;
  padding: 20px;
}
.main nav {
  display: none;
  z-index: 10;
  position: absolute;
  top: 0px;
  right: 0;
  background-color: #000;
  padding-top: 50px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  border-radius:0 0 0 10px;
}
.main nav ul li a {
  line-height: 4.0rem;
  vertical-align: middle;
  text-decoration: none;
  color: #FFFFFF;
}
.main__menu-message { /*main menu message メニューバー黒*/
  width: 100%;
  padding: 14px 54px 14px 10px;
  background-color: black;
  font-size: 1.6rem;
  color: #fff;
}
@media(min-width:960px) {
  .section__menu-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 14px 10px 14px 10px;
    position: relative;
  }
  .main nav {
    display: block;
    position: absolute;
    text-align: right;
    padding: 10px 14px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    height: 60px;
    width: auto;
  }
  .main nav ul {
    display: flex; /*横並び*/
    justify-content: flex-end; /*右寄り*/
  }
  .main nav ul li {
    font-size: 1.6rem;
    border-right: 1px solid #fff;
    padding: 0 50px;
  }
  .main nav ul li:last-child {
    border-right: none;
  }
  .close-button {
    display: none;
  }
  .open-button {
    display: none;
  }
  .main__menu-message {
    padding: 0;
  }
}
/*main sub menu　画像付きページメニュー*/
.main__sub-menu ul {
  text-align: center;
  font-size: 0; /*liの余白を削除*/
  line-height: 0; /*liの余白を削除*/
  margin-bottom: 40px;
}
.main__sub-menu ul li {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 20px;
  width: 24vw;
  border-right: 1px dashed rgba(126, 126, 126, 0.5); /*点線*/
}
.main__sub-menu ul li:last-child {
  border-right: none; /*最後の点線（右）削除*/
}
.main__sub-menu ul li p {
  color: #1D788A;
  height: 7vh;
  line-height: 1.7rem;
  padding: 0 10px;
  margin-bottom:25px;
  font-size:1.6rem;
}
.main__sub-menu ul li p span {
  font-size: 1.1rem;
  line-height:1.3;
}
.main__sub-menu ul li img {
  object-fit: cover;
  border-radius: 100px;
  width: 20vw;
  border: 2px solid #fff;
  box-shadow: 2px 2px 4px 1px #777;
}
.main__sub-menu ul li a {
  text-decoration: none;
}
.main__sub-menu-page-select { /*選択しているメニュー*/
  display: inline-block;
  border: 5px solid #15A8BA;
  border-radius: 100px;
  margin-top: -5px;
}
@media(min-width:960px) {
  .main__sub-menu ul li {
    margin-top: 60px;
    width: 225px;
  }
  .main__sub-menu ul li p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .main__sub-menu ul li p br {
    display: none;
  }
  .main__sub-menu ul li p span {
    font-size: 1.8rem;
  }
  .main__sub-menu ul li img {
    width: 140px;
    height: 140px;
  }
  .main__sub-menu-page-select {
    border: 10px solid #15A8BA;
    width: 160px;
    height: 160px;
    margin-top: -10px;
  }
}
/*セクションお問合せ*/
.section-contact {
  padding: 0 10px 80px;
  background-color: #F6FEFD;
}
.section-contact__top-message {
  text-align: center;
  padding-top: 80px;
}
.section-contact__top-subtitle {
  color: #1D788A;
  font-size: 1.8rem;
  font-weight: 500;
}
.section-contact h2 {
  font-size: 2.8rem;
  padding-top: 10px;
  color:#333;
}
.section-contact h2 a{
  text-decoration: none;
  color:#333;
  background-image:linear-gradient( 135deg, #70F570 10%, #49C628 100%);
  box-shadow: 1px 1px 1px 1px #27A406;
  border-radius:30px;
  padding:0 6px;
}
.section-contact__top-description {
  font-size: 1.8rem;
  line-height: 3.2rem;
  padding-top: 20px;
  text-align: left;
  color:#486463;
}
/*セクションお問合せのリスト部分*/
.section-contact__trial, .section-contact__indoor, .section-contact__frail {
  margin: 40px 0 0;
  pading: 0;
  display: flex;
}
.section-contact__trial p, .section-contact__indoor p, .section-contact__frail p {
  width: 50%;
  margin: auto; /*上下中央に配置*/
  font-weight: 600;
  text-align:center;
  font-size:1.8rem;
}
.section-contact__trial img, .section-contact__indoor img, .section-contact__frail img {
  width: 50%;
  height: 100%;
  padding-top: 10px;
  padding-right: 20px;
  object-fit: cover;
}
.section-contact__list-description {
  padding: 20px 10px 0;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #34928C;
}
@media(min-width:960px) {
  .section-contact {
    padding-bottom: 100px;
  }
  .section-contact__wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
  .section-contact__top-message {
    padding-top: 100px;
  }
  .section-contact h2 {
    font-size: 4.0rem;
  }
  .section-contact h2 a{
    pointer-events: none;
    background-color:transparent;
    background-image:linear-gradient( 135deg, transparent 10%, transparent 100%);
  box-shadow:1px 1px 1px 1px transparent;
    color:#333;
    border:transparent;
  }
  .section-contact__top-description{
     text-align: center;
  }
  .section-content__list-wrapper {
    display: flex;
    justify-content: center;
  }
  .section-contact__trial, .section-contact__indoor, .section-contact__frail {
    display: block;
    width: 300px;
  }
  .section-contact__list-description {
    width: 270px;
  }
  .section-contact__trial p, .section-contact__indoor p, .section-contact__frail p {
    padding: 0;
    font-size:2.0rem;
    width:60%;
  }
  .section-contact__trial img, .section-contact__indoor img, .section-contact__frail img {
    width: 100%;
    height: 153px;
  }
  .section-contact__trial img, .section-contact__indoor img {
    padding-right: 35px;
  }
}
/*セクション体験*/
.section-trial {
  background-color: #CAECEA;
  padding: 80px 10px;
}
.section-trial__content {
  background-color: #fff;
  padding: 80px 24px 80px;
  text-align: center;
}
.section-trial__content-image{
  padding-top:20px;
    width:30vw;
  }
.section-trial__top-subtitle {
  color: #1D788A;
  font-size: 1.8rem;
  font-weight: 500;
}
.section-trial h2 {
  font-size: 2.2rem;
  padding-top: 10px;
}
.section-trial__top-description {
  font-size: 1.6rem;
  line-height: 3.2rem;
  padding-top: 20px;
  text-align:left;
  color:#486463;
}
.section-trial__button {
  margin-top: 50px;
  background-color: #074551;
  border-radius: 50px;
  max-width: 400px;
  margin: 50px auto 0;
  line-height: 1.5;
  padding:20px;
}
.section-trial__button-wrapper a {
  text-decoration: none;
  font-size: 2.0rem;
  color: #fff;
  line-height: 70px;
}
.section-trial__button span {
  background-color: #fff;
  padding: 2px 6px 4px;
  border-radius: 30px;
  color: #074551;
  font-size: 1.6rem;
  margin-right: 10px;
}
@media(min-width:960px) {
  .section-trial {
    padding-top: 100px;
  }
  .section-trial__content {
    width: 960px;
    margin: 0 auto;
    padding-top: 100px;
  }
  .section-trial h2 {
    font-size: 4.0rem;
    line-height: 5.6rem;
    padding-top: 15px;
  }
  .section-trial__top-description {
    font-size: 1.8rem;
    line-height: 3.2rem;
    padding-top: 60px;
     text-align: center;
  }
  .section-trial__button {
    margin-top: 30px;
  }
}
/*topへ戻るボタン*/
.page-top {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 40px;
}
.page-top a {
  text-decoration: none;
  color: #1D788A;
}
.page-top a span {
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #1D788A;
  border-right: 2px solid #1D788A;
  transform: rotate(-45deg);
  content: "";
  margin: 0 auto;
}
.page-top {
  margin-top: 40px;
}
.page-top_p{
  padding-bottom:10px;
}
/*フッター*/
.footer {
  padding: 40px 10px 0;
  margin-bottom: 100px;
  background-color: #fff;
  font-size: 1.6rem;
  color: #333;
}
.footer h2 {
  font-size: 2.2rem;
  text-align: center;
  padding-bottom: 20px;
}
.footer p {
  font-size: 1.6rem;
}
.footer a {
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
}
.footer-club-info {
  padding-bottom: 20px;
}
.footer nav {
  padding-bottom: 60px;
  line-height: 4.0rem;
}
.site-map__links span{
    font-size:1.4rem;
  }
.footer__copyright {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  padding-bottom: 20px;
}
@media(min-width:960px) {
  .footer {
    padding-top: 60px;
    margin-bottom: 25px;
  }
  .footer-content-wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
  .footer-content__top-wrapper {
    width: 500px;
    margin: 0 auto;
  }
  .footer h2 {
    font-size: 3.2rem;
    text-align: left;
  }
  .footer nav {
    padding-bottom: 90px;
  }
  .footer nav ul {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0px;
  }
  .footer nav ul li {
    font-weight: 600;
  }
}