@charset "UTF-8";
@import url(reset.css);
/* ===============================================
全体スタイル
=============================================== */
/* --- カラーコード --- */
html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 62.5%;
  color: #333333;
  background: #f5f5f5;
}

.tac {
  text-align: center;
}

small {
  font-size: 1.3rem;
  display: block;
  line-height: 1.8em;
}

img {
  width: 100%;
}

h2 {
  padding: 0rem 5rem 1rem;
}
@media (max-width: 767px) {
  h2 {
    padding: 0rem 2rem 1rem;
  }
}

.spNone {
  display: block;
}
@media (max-width: 767px) {
  .spNone {
    display: none;
  }
}

.pcNone {
  display: none;
}
@media (max-width: 767px) {
  .pcNone {
    display: block;
  }
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* --- 矢印 --- */
.arrow {
  position: relative;
  display: inline-block;
}
.arrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -10px;
}

/* --- アニメーション --- */
.poyopoyo {
  animation: poyopoyo 1.5s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
/* --- 背景共通 --- */
#coach,
#reservation,
#program {
  background-size: auto auto;
  background-color: rgb(255, 243, 177);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgb(255, 224, 21) 10px, rgb(255, 224, 21) 20px);
  padding: 3rem 0rem;
}
@media (max-width: 767px) {
  #coach,
  #reservation,
  #program {
    padding: 2rem;
  }
}
#coach .sectionInner,
#reservation .sectionInner,
#program .sectionInner {
  background: #fff;
  max-width: 430px;
  margin: 0 auto;
  border-radius: 10px;
}

/* --- 共通ボタン --- */
.btn {
  max-width: 370px;
  margin: 0 auto;
}

/* --- 共通swiper --- */
/* ページネーションの余白＆サイズ */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px 8px;
  height: 15px;
  width: 15px;
}

.swiper-pagination-bullet-active {
  background-color: #1c98d3;
}

.swiper-button-prev,
.swiper-button-next {
  height: 40px;
  width: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

.swiper-button-next::after {
  background: url(../img/ico_top-coach-next.svg) no-repeat;
}

.swiper-button-prev::after {
  background: url(../img/ico_top-coach-prev.svg) no-repeat;
}

.swiper {
  position: relative;
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ===============================================
header
=============================================== */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: #1c98d3;
}
header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
}
@media (max-width: 767px) {
  header .headerInner {
    padding: 0 1.5rem;
  }
}
header .logo {
  max-width: 150px;
  margin: 0 auto;
  padding: 1.5rem 0rem;
}
header .header-cta a {
  color: #fff;
  font-size: 1.6rem;
  border: 1px solid;
  padding: 0.7rem 3rem 0.7rem 1.5rem;
  margin-left: 7rem;
  position: relative;
}
header .header-cta .arrow:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

/* --- ハンバーガーメニュー --- */
.hamburger {
  width: 35px;
  height: 60px;
  position: relative;
  margin-top: 1rem;
  z-index: 999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hamburger {
    height: 50px;
  }
}
.hamburger .button-text {
  font-size: 10px;
  padding-top: 1.8rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .hamburger .button-text {
    padding-top: 1.8rem;
  }
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  width: 100%;
  height: 80vh;
  top: -100%;
  right: 0%;
  background-color: rgba(28, 152, 211, 0.9490196078);
  padding: 50px 0;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .nav {
    height: 50rem;
  }
}

.nav__list {
  padding: 0rem 8rem;
}
@media (max-width: 767px) {
  .nav__list {
    padding: 2rem 0rem 0rem;
  }
}

.nav__item a {
  display: block;
  font-size: 20px;
  color: #fff;
  padding: 20px 0 20px 50px;
  border-bottom: 0.5px solid;
}
@media (max-width: 767px) {
  .nav__item a {
    padding: 1.5rem 0;
    margin: 0rem 3rem;
  }
}
.nav__item:last-child a {
  border-bottom: none;
}

.nav__item a:hover {
  color: #ffff00;
}

.nav.open {
  top: 0;
}

/* ===============================================
contents
=============================================== */
main {
  line-height: 1.5;
  max-width: 490px;
  margin: 0 auto;
  background: #fff;
  font-size: 20px;
  padding-top: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;
  padding-top: 60px;
}
main .sectionInner {
  padding: 3rem 3rem;
}
@media (max-width: 767px) {
  main .sectionInner {
    padding: 4rem 2rem;
  }
}

/* ---mv--- */
#mv .sectionInner {
  padding: 0;
  position: relative;
}
#mv .sectionInner .btn {
  position: absolute;
  width: 400px;
  left: calc(50% - 200px);
  bottom: 40px;
}
@media (max-width: 767px) {
  #mv .sectionInner .btn {
    width: 350px;
    left: calc(50% - 175px);
    bottom: 30px;
  }
}

/* ---about--- */
#about {
  background: url(../img/bg_top-about.jpg) no-repeat bottom;
  background-size: 100%;
}
#about .sectionInner ul {
  padding: 3rem 0rem 8rem;
}
@media (max-width: 767px) {
  #about .sectionInner ul {
    padding: 2rem 0rem 4rem;
  }
}
#about .sectionInner ul li {
  max-width: 45%;
}
#about .sectionInner .text {
  line-height: 2em;
}
@media (max-width: 767px) {
  #about .sectionInner .text {
    font-size: 1.6rem;
  }
}
#about .sectionInner .text strong {
  background: #ffe100;
  font-weight: normal;
}

/* ---program--- */
#program {
  padding: 0;
}
@media (max-width: 767px) {
  #program {
    padding: 0;
  }
}
#program .sectionInner {
  background: none;
  max-width: 100%;
}
#program .sectionInner dl {
  margin-bottom: 2rem;
}
#program .sectionInner dl dt {
  background: #1c98d3;
  border-radius: 10px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
  position: relative;
  cursor: pointer;
}
#program .sectionInner dl dt:before {
  content: "";
  background: url(../img/ico_top-program.svg) no-repeat;
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 1rem;
}
#program .sectionInner dl dt:after {
  content: "keyboard_arrow_down";
  font-family: "Material Symbols Outlined";
  position: absolute;
  right: 20px;
}
#program .sectionInner dl dd {
  background: #fff;
  margin-top: 1rem;
  padding: 2rem;
  border-radius: 10px;
  display: none;
}
#program .sectionInner dl.active dd {
  display: block;
}
#program .sectionInner dl .price-contents {
  display: flex;
  align-content: center;
  margin-top: 1rem;
}
#program .sectionInner dl .price-contents h3 {
  background: #e3e3e3;
  font-size: 1.8rem;
  padding: 0rem 1rem;
  margin-right: 0.5rem;
}
#program .sectionInner dl .price-contents small {
  display: inline-block;
}
#program .sectionInner dl .price-contents span {
  font-weight: bold;
  color: red;
}
#program .sectionInner dl .title {
  font-weight: bold;
  color: #1c98d3;
  font-size: 2.5rem;
  border-bottom: 1px solid #1c98d3;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
#program .sectionInner dl .btn {
  max-width: 330px;
  margin: 2rem auto 1rem;
}
#program .sectionInner dl.pe dt {
  background-color: #8cc63f;
}
#program .sectionInner dl.pe .title {
  color: #8cc63f;
  border-bottom: 1px solid #8cc63f;
}
#program .sectionInner dl.gk dt {
  background-color: #d61518;
}
#program .sectionInner dl.gk .title {
  color: #d61518;
  border-bottom: 1px solid #d61518;
}
#program .sectionInner dl.dance dt {
  background-color: #ad64ed;
}
#program .sectionInner dl.dance .title {
  color: #ad64ed;
  border-bottom: 1px solid #ad64ed;
}
#program .sectionInner dl.cheer dt {
  background-color: #ec59a3;
}
#program .sectionInner dl.cheer .title {
  color: #ec59a3;
  border-bottom: 1px solid #ec59a3;
}
#program .sectionInner dl.cheer dt {
  background-color: #ec59a3;
}
#program .sectionInner dl.cheer .title {
  color: #ec59a3;
  border-bottom: 1px solid #ec59a3;
}
#program .sectionInner dl.calligraphy dt {
  background-color: #1046c1;
}
#program .sectionInner dl.calligraphy .title {
  color: #1046c1;
  border-bottom: 1px solid #1046c1;
}

/* ---flow--- */
#flow h3 {
  position: relative;
  padding-bottom: 1rem;
}
#flow h3:after {
  content: "";
  width: 40%;
  height: 5px;
  background: #ffe100;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#flow ul {
  display: flex;
  gap: 2rem;
}
#flow ul li {
  text-align: center;
  max-width: 190px;
  font-size: 1.6rem;
}
#flow ul li strong {
  font-weight: normal;
  color: #e04e4e;
}
#flow .area {
  margin: 2rem auto;
}
#flow .area-contents {
  width: 1050px;
  gap: 10px;
  padding-bottom: 2rem;
}
#flow .area::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
#flow .area::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 10px;
}
#flow .area::-webkit-scrollbar-thumb {
  background: #1c98d3;
  border-radius: 10px;
  cursor: pointer;
}

/* ---contact--- */
#contact {
  background: #f1f9fd;
}
#contact .sectionInner {
  position: relative;
}
#contact .sectionInner ul dl {
  max-width: 310px;
  margin: 0 auto;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  #contact .sectionInner ul dl {
    padding-bottom: 8rem;
  }
}
#contact .sectionInner ul dl dt {
  max-width: 100px;
  margin: 0 auto 1rem;
}
#contact .sectionInner ul dl dd.text {
  padding: 0rem 2rem;
  height: 90px;
  font-size: 1.8rem;
  line-height: 1.8em;
}
#contact .sectionInner ul dl .photo {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #contact .sectionInner ul dl .photo {
    max-width: 60%;
    margin: 2rem auto 0rem;
  }
}
#contact .swiper-button-next,
#contact .swiper-button-prev {
  top: 96rem;
}
@media (max-width: 767px) {
  #contact .swiper-button-next,
  #contact .swiper-button-prev {
    top: 70rem;
  }
}
#contact .swiper-button-next {
  right: 100px;
}
@media (max-width: 767px) {
  #contact .swiper-button-next {
    right: 50px;
  }
}
#contact .swiper-button-prev {
  left: 100px;
}
@media (max-width: 767px) {
  #contact .swiper-button-prev {
    left: 50px;
  }
}
#contact .swiper-pagination {
  bottom: 150px;
}

/* ---contact--- */
@media (max-width: 767px) {
  #coach h2 {
    padding-top: 1rem;
  }
}
#coach .sectionInner {
  padding-bottom: 10rem;
  position: relative;
}
#coach ul .contents {
  max-width: 310px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #coach ul .contents {
    max-width: 280px;
  }
}
#coach ul .tac {
  font-weight: 500;
}
#coach ul .tac span {
  color: #1c98d3;
  margin-right: 1rem;
}
#coach .swiper-button-next,
#coach .swiper-button-prev {
  top: 460px;
}
@media (max-width: 767px) {
  #coach .swiper-button-next,
  #coach .swiper-button-prev {
    top: 440px;
  }
}
#coach .swiper-button-next {
  right: 70px;
}
@media (max-width: 767px) {
  #coach .swiper-button-next {
    right: 30px;
  }
}
#coach .swiper-button-prev {
  left: 70px;
}
@media (max-width: 767px) {
  #coach .swiper-button-prev {
    left: 30px;
  }
}
#coach .swiper-pagination {
  bottom: 30px;
}

/* ---faq--- */
#faq {
  line-height: 2em;
}
#faq li dl {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#faq li dl dt {
  font-weight: bold;
}
#faq li:last-child dl {
  border-bottom: none;
}
#faq small {
  line-height: 2em;
}

.toggle {
  display: none;
}

/*タイトル*/
.Label {
  display: block;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  padding: 4% 0%;
}
.Label span {
  max-width: 45px;
  margin-right: 1rem;
  display: flex;
}
.Label:before {
  content: "";
  width: 15px;
  border-top: 2px solid #333333;
  position: absolute;
  right: 5px;
}
.Label:after {
  /*タイトル横の矢印*/
  content: "";
  width: 15px;
  border-top: 2px solid #333333;
  position: absolute;
  right: 5px;
  transform: rotate(90deg);
}

.Label,
.content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

/*本文*/
.content {
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
  background: #f1f9fd;
}

/*開閉時の動作*/
.toggle:checked + .Label + .content {
  height: auto;
  padding: 4% 0%;
  transition: all 0.3s;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 10px;
}

.toggle:checked + .Label::after {
  transform: rotate(0deg) !important;
}

/* ---reservation--- */
@media (max-width: 767px) {
  #reservation h2 {
    padding-top: 1rem;
  }
}
@media (max-width: 767px) {
  #reservation .sectionInner {
    padding: 2rem;
  }
}
#reservation .sectionInner h3 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
#reservation .sectionInner h3:after {
  content: "";
  width: 40%;
  height: 5px;
  background: #ffe100;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#reservation .sectionInner .area-contents {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1rem;
  margin: 1rem auto;
}
#reservation .sectionInner .area-contents:first-child {
  margin-top: 0;
}
#reservation .sectionInner .area-contents:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#reservation .sectionInner .area-contents ul {
  display: flex;
  justify-content: space-between;
}
#reservation .sectionInner .area-contents ul p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
#reservation .sectionInner .area-contents ul li {
  width: 49%;
}

/* ===============================================
footer
=============================================== */
footer {
  background: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 490px;
  margin: 0 auto;
}
footer a {
  color: #fff;
}
footer .logo {
  padding: 4rem 8rem 3rem;
}
@media (max-width: 767px) {
  footer .logo {
    padding: 4rem 5rem 2rem;
  }
}
footer .text {
  padding: 0rem 4rem 40rem;
  background: url(../img/bg_top-footer.jpg) no-repeat bottom;
  background-size: 100%;
}
@media (max-width: 767px) {
  footer .text {
    padding: 0rem 3rem 33rem;
  }
}
footer ul {
  background: #4c4c4c;
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
footer ul li {
  padding: 0rem 0.5rem;
}
footer p.copy {
  background: #333333;
  padding: 1rem 0rem;
  color: #fff;
  font-size: 1.2rem;
}/*# sourceMappingURL=shared.css.map */