@charset "UTF-8";
/* 動き設定 */
@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out forwards;
  animation: kenburns ease-out forwards;
}

@-webkit-keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
/*　上に上がる動き　*/
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*　タブ切り替え用　*/
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*　エフェクト　*/
@-webkit-keyframes wave {
  50% {
    top: 55%;
  }
  75% {
    top: 50%;
  }
  100% {
    top: 55%;
  }
}
@keyframes wave {
  50% {
    top: 55%;
  }
  75% {
    top: 50%;
  }
  100% {
    top: 55%;
  }
}
/*時間差(秒)※動的に出力する箇所はnth-of-type使用*/
.d1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.d2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.d3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.d4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.d5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.d6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.d7 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.d8 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.item {
  opacity: 0;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  transition: 0.7s;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.item.sil.is-show {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

.item.sir.is-show {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.item.fiu.is-show {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.item.fid.is-show {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.item.fi.is-show {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

.page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

/* Scss Document */
@media (min-width: 769px) {
  .section.club {
    padding-top: 80px;
  }
}
@media (min-width: 769px) {
  .section.club .inner {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
.section.club .inner .tab__set .tab__category {
  display: flex;
  justify-content: center;
  height: 50px;
  border: 1px solid #707070;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__category {
    width: 554px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    border: none;
    height: 76px;
  }
}
.section.club .inner .tab__set .tab__category li {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__category li {
    border: 1px solid #707070;
    border-radius: 10px 10px 0 0;
    width: 49%;
  }
  .section.club .inner .tab__set .tab__category li span {
    font-size: 2.3rem;
    font-weight: bold;
  }
}
.section.club .inner .tab__set .tab__category li:first-of-type {
  border-right: 1px solid #707070;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__category li:first-of-type {
    margin-right: 2%;
  }
}
.section.club .inner .tab__set .tab__category li.active {
  background: #0054bb;
  color: #fff;
}
.section.club .inner .tab__set .tab__category li span {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.section.club .inner .tab__set .tab__content {
  margin-top: 50px;
  display: none;
}
.section.club .inner .tab__set .tab__content.is-active {
  display: block;
}
.section.club .inner .tab__set .tab__content li {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__content li .col__wrap {
    display: flex;
    justify-content: space-between;
  }
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box {
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__content li .col__wrap .col__box {
    width: 49%;
    max-width: 568px;
    margin-bottom: 0;
  }
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .img img {
  width: 100%;
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area {
  padding: 10px 0;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area {
    padding: 20px 0;
  }
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area h3 {
    font-size: 2.2rem;
  }
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2px;
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dd, .section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dt {
  display: flex;
  align-items: center;
  min-height: 3.2em;
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dt {
  width: 22%;
  justify-content: center;
  background: #eee;
  white-space: nowrap;
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dt {
    width: 20%;
    font-size: clamp(1.1rem, 0.9vw, 1.4rem);
  }
}
@media (min-width: 1025px) {
  .section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dt {
    font-size: 1.4rem;
  }
}
.section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dd {
  width: 76%;
}
@media (min-width: 769px) {
  .section.club .inner .tab__set .tab__content li .col__wrap .col__box .txt__area dl dd {
    width: 78%;
  }
}

.section.club.junior {
  padding-bottom: 0;
}
.section.club.junior .inner .tab__set .tab__category li.active {
  background: #3bc700;
}

.section.club_blog .inner .club__list.sp .club_list > p span {
  width: 100%;
  display: flex;
  height: 70px;
  align-items: center;
  position: relative;
  border: 1px solid #ccc;
  padding-left: 40px;
  font-size: 1.6rem;
}
.section.club_blog .inner .club__list.sp .club_list > p span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6.5px 0 6.5px;
  border-color: #e8e8e8 transparent transparent transparent;
  position: absolute;
  right: 20px;
  transition: 0.3s;
}
.section.club_blog .inner .club__list.sp .club_list > p.open span::after {
  transform: rotate(180deg);
}
.section.club_blog .inner .club__list.sp .club_list ul {
  display: none;
}
.section.club_blog .inner .club__list.sp .club_list ul li {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
  display: flex;
  height: 70px;
  align-items: center;
  padding-left: 40px;
}
.section.club_blog .inner .club__list.sp .club_list ul li span {
  font-size: 1.8rem;
}
.section.club_blog .inner .club__list.pc {
  display: none;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__list.pc {
    display: block;
  }
  .section.club_blog .inner .club__list.pc ul {
    display: flex;
    flex-wrap: wrap;
    margin: 70px auto;
    max-width: 1240px;
  }
  .section.club_blog .inner .club__list.pc ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e3e3e3;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin: 0 2px 4px;
    cursor: pointer;
    transition: 0.3s;
    max-width: 210px;
    height: 66px;
    padding: 0 15px;
  }
  .section.club_blog .inner .club__list.pc ul li span:hover {
    background: #0054bb;
    color: #fff;
  }
  .section.club_blog .inner .club__list.pc ul li.active span {
    background: #0054bb;
    color: #fff;
  }
}
.section.club_blog .inner .club__list.pc.jn ul li span:hover {
  background: #3bc700;
}
.section.club_blog .inner .club__list.pc.jn ul li.active span {
  background: #3bc700;
}
.section.club_blog .inner .club__list.sp {
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__list.sp {
    display: none;
  }
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list .col__wrap .col__box {
    margin-bottom: 0;
  }
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .img {
  width: 100%;
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .img img {
  width: 100%;
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .day_cat {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .day_cat span {
  display: inline-block;
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .day_cat span:first-of-type {
  padding-left: 20px;
  padding-top: 2px;
  font-size: 1.8rem;
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .day_cat span:nth-of-type(2) {
  background: #0054bb;
  color: #fff;
  min-height: 25px;
  padding: 2px 10px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80px;
}
.section.club_blog .inner .club__blog_list .col__wrap .col__box .blog_ttl {
  padding: 5px 20px 20px;
  font-size: 1.8rem;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list .col__wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .section.club_blog .inner .club__blog_list .col__wrap .col__box {
    width: 32%;
    margin: 0 0.66% 50px;
  }
}
@media (min-width: 769px) and (min-width: 1025px) {
  .section.club_blog .inner .club__blog_list .col__wrap .col__box {
    width: 23.1%;
    margin: 0 0.92% 50px;
  }
}

@media (min-width: 769px) {
  .section.club_blog .inner {
    max-width: 1440px;
  }
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap {
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list.each_list .col__wrap {
    flex-wrap: wrap;
  }
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .closing {
  margin: 50px auto 100px;
  width: 100%;
  max-width: 740px;
  background: #f7f7f7;
  border: solid 1px #ccc;
  padding: 30px;
  text-align: center;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box {
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box {
    width: 23.16%;
  }
}
@media (min-width: 769px) and (max-width: 1025px) {
  .section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box {
    width: 31.49%;
  }
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box {
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a {
  display: flex;
  flex-direction: column;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area {
  width: 100%;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat {
  margin-bottom: 0;
  align-items: center;
  justify-content: space-between;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat span {
  font-size: 1.6rem;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat span {
    font-size: 1.8rem;
  }
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat span:first-of-type {
  padding-left: 10px;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat span:last-of-type {
  font-size: 1.2rem;
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat span:last-of-type.small {
  font-size: 1rem;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .day_cat span:last-of-type.small {
    font-size: 1.2rem;
  }
}
.section.club_blog .inner .club__blog_list.each_list .col__wrap .col__box a .txt__area .blog_ttl {
  font-size: 1.8rem;
  padding: 10px;
  font-weight: bold;
}
.section.club_blog .inner .club__blog_list.each_list.content-area .content {
  display: none;
}
.section.club_blog .inner .club__blog_list.each_list.content-area .content.show {
  display: block;
}
@media (min-width: 769px) {
  .section.club_blog .inner .club__blog_list.each_list.content-area .content.show {
    display: flex;
  }
}
.section.club_blog .inner .club__blog_list.each_list.jn .col__wrap .col__box .day_cat span:nth-of-type(2) {
  background: #3bc700;
}

.bnrArea {
  margin: 60px 0;
}
.bnrArea a {
  display: block;
}
.bnrArea a img {
  width: 100%;
  height: auto;
}

.select {
  height: 56px;
  width: 100%;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  border: solid 1px #ccc;
}
.select::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #777;
  border-right: 2px solid #777;
  z-index: -1;
}
.select select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  position: relative;
}