@charset "UTF-8";

/* 共通 */

html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 1000px) {
  html {
    overflow-x: hidden;
  }
}
body {
  color: #022131;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
}

/* header */
header {
  height: 140px;
  background-color: #e5ecfa;
  font-family: "Calibri", sans-serif;
  width: 100vw;
  overflow-x: hidden;
  /* position: relative; */
  z-index: 50;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  font-size: 16px;
  position: relative;
  z-index: 50;

  background-color: #e5ecfa;
}
.logo-wrapper {
  height: 80px;
}
.logo {
  height: 100%;
  object-fit: cover;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.menu-li {
  transition: 0.3s;
}

.other-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  justify-content: end;
}

.header-sns {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-sns button {
  height: 35px;
  width: 35px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.sns-img img {
  height: 22px;
  width: 22px;
}
.sns-img {
  text-align: center;
  line-height: 22px;
}

.contact {
  background-color: #fffdfd;
  border: 1px solid #022131;
  border-radius: 10px;
  width: 145px;
  height: 30px;
  font-size: 18px;
  transition: 0.3s;
}

.contact:hover {
  opacity: 50%;
}
.header-sns button:hover {
  opacity: 50%;
}
.menu-li:hover,
.menu-page-li:hover {
  opacity: 50%;
}

/* ハンバーガーメニュー */
.humberger {
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: none;
  position: relative;
  border-radius: 50%;
}
.humberger span {
  width: 18px;
  height: 1px;
  background-color: #022131;
  position: absolute;
  left: 50%;
  transition: 0.5s;
}
.humberger span:nth-child(1) {
  top: 35%;
  transform: translateX(-50%);
}
.humberger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.humberger span:nth-child(3) {
  top: 65%;
  transform: translateX(-50%);
}
.humberger.open-menu span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.humberger.open-menu span:nth-child(2) {
  top: 50%;
  opacity: 0;
}
.humberger.open-menu span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.menu-page {
  display: none;
}

@media screen and (max-width: 800px) {
  header {
    height: 60px;
  }
  .humberger {
    display: block;
  }
  .header-wrapper {
    padding: 10px 18px;
  }
  .logo-wrapper {
    height: 40px;
    width: 148px;
  }
  .menu-wrapper {
    display: none;
  }
  .menu-page {
    background-color: #f2f8ff;
    height: 100vh;
    width: 100vw;
    top: 60px;
    left: 0;
    position: absolute;
    transform: translateX(100%);
    transition: 1s;
    opacity: 0;
    display: block;
    z-index: 1000;
  }
}

.menu-active {
  transform: translateX(0);
  overflow-x: hidden;
  opacity: 1;
}
.hidden {
  overflow-y: hidden;
  height: 100vh;
}
.scroll {
  overflow-y: scroll;
}

.menu-page-ul {
  margin-top: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.menu-page-li {
  margin-top: 20px;
  transition: 0.5s;
  overflow: hidden;
}
.contact {
  text-align: center;
}
.menu-page-sns {
  display: flex;
  gap: 10px;
  justify-content: end;
  margin: 40px 30px 0 0;
  position: relative;
}
.menu-page-sns::after {
  content: "\005C  Follow Me /";
  position: absolute;
  top: -30px;
  right: -12px;
  font-size: 14px;
}
.contact-menu {
  border: none;
  background-color: #e1ce89;
  color: #fff;
  font-weight: bold;
  margin-top: 40px;
}

/* MV */

.mv-img {
  height: 720px;
  overflow: hidden;

  position: relative;
  z-index: 50;
  background-color: #fff;
}
.mv-img-img {
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
}

@media screen and (max-width: 800px) {
  .mv-img {
    height: 480px;
  }
}
@media screen and (max-width: 500px) {
  .mv-img {
    height: 240px;
  }
}

/* section-three */

.three-kiriko {
  background: url(../img/blue-s-min.png) center / cover;
  /* height: 850px; */
  /* padding-bottom: 50px; */

  position: relative;
  z-index: 50;
  background-color: #fff;
}
.bg-opacity {
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  height: 100%;
  padding-bottom: 10px;
}

.ribon {
  text-align: center;
}
.ribon-img {
  width: 300px;
  height: 180px;
  object-fit: cover;
}
.three-title {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 10%;
}

.three {
  display: block;
  color: #b4a369;
}

.three-content {
  display: flex;
  gap: 80px;
  max-width: 1000px;
  margin: 78px auto 140px;
}
.three-list {
  width: 280px;
}
.three-listimg {
  height: 280px;
  width: 280px;
  overflow: hidden;
  border-radius: 40px;
}
.three-listimg img {
  height: 100%;
  object-fit: cover;
}
.three-text {
  letter-spacing: 5%;
  font-size: 16px;
  line-height: 25px;
  display: flex;
  width: 280px;
  margin: 35px auto 0;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}
.number {
  font-size: 30px;
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: italic;
  color: #c4c4c4;
  padding-top: 8px;
}

@media screen and (max-width: 800px) {
  .ribon-img {
    width: 100px;
    height: 60px;
  }
  .three-title {
    text-align: center;
    font-size: 17px;
    line-height: 24px;
  }
  .three-content {
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
    gap: 40px;
  }
  .three-list {
    margin: 10px auto;
  }
}

/* teacher */

.top-teacer {
  position: relative;
  z-index: 50;
  background-color: #fff;
}
.top-teacher-wrapper {
  max-width: 1000px;
  margin: 0px auto;
}
.top-teacer-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 150px;
}
.top-teacher-img {
  width: 260px;
  overflow: hidden;
  padding-left: 30px;
}
.top-teacher-img-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .top-access-wrapper {
  padding-top: 80px;
} */

.top-teacer {
  width: 100vw;
}
.top-access {
  width: 100vw;
}

.h2 {
  font-family: "Kiwi Maru", serif;
  color: #022131;
  font-size: 18px;
  display: block;
  letter-spacing: 3px;
  padding: 30px 0 0 5px;
}
.teacher-small {
  padding-left: 1em;
}

.h2 span {
  font-family: "Old Standard TT", serif;
  font-size: 70px;
  color: #004164;
  opacity: 30%;
  letter-spacing: 0.2em;
  display: block;
}

.teacher-text-name {
  font-size: 24px;
  letter-spacing: 2px;
  display: inline;
  position: relative;
}
.teacher-text-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -2%;
  right: 0;
  height: 1px;
  width: 104%;
  background-color: #022131;
}

.teacher-text-name span {
  color: #b4a369;
  padding-left: 1em;
}
.teacher-text-inner {
  margin-top: 40px;
  letter-spacing: 2px;
  line-height: 35px;
}

.more {
  padding-right: 60px;
  padding-top: 20px;
  text-align: right;
  position: relative;
  display: inline-block;
  margin-left: 470px;
  transition: 0.5s;
}
.more::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -5%;
  right: 0;
  height: 1px;
  width: 75%;
  background-color: #022131;
  transition: 0.5s;
}
.more:hover {
  opacity: 50%;
}
.more:hover::after {
  opacity: 50%;
}

.top-class::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}
.top-class-wrapper {
  position: relative;
  height: 300px;
  background-color: transparent;
}

.top-class-wrapper::before {
  width: 100vw;
  content: "";
  display: block;
  position: fixed;
  left: 0;
  z-index: 1;
  background-image: url(../img/n-kids2-min.jpg);
  object-fit: contain;
  background-size: cover;
  height: 100%;
  background-position: 0 90%;
  top: 47px;
}

.go-class {
  text-align: center;
  font-size: 30px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #022131;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 60px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 1s;
  z-index: 15;
}

.go-class:hover {
  opacity: 0.5;
}
.go-class:hover .go-class-img {
  transform: rotateY(-360deg);
}
.go-class-img {
  overflow: hidden;
  width: 42px;
  transition: 1s;
}
.go-class-img img {
  object-fit: cover;
  width: 100%;
  padding-bottom: 5px;
}

@media screen and (max-width: 800px) {
  .top-teacer-wrapper {
    flex-direction: column;
    padding-bottom: 80px;
    margin-top: 10px;
    /* align-items: center; */
  }

  .top-teacher-img {
    width: 200px;
    margin: 10px auto 20px;
    padding: 0;
  }
  .teacher-text-name {
    font-size: 16px;
    line-height: 28px;
    margin-top: 60px;
  }
  .top-teacher-text {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  .teacher-text-inner {
    font-size: 16px;
    line-height: 29px;
    text-align: start;
    letter-spacing: 0;
  }
  .more {
    padding-right: 33px;
    padding-top: 45px;
    margin-left: 200px;
    font-size: 12px;
  }

  .top-class {
    background-color: transparent;
    background-image: none;
  }

  .go-class {
    font-size: 16px;
    line-height: 47px;
  }
  .go-class-img {
    width: 23px;
  }

  .top-class-wrapper::before {
    height: 300px;
    top: 303px;
    background-position: center;
  }
  .top-class-wrapper {
    position: relative;
    height: 130px;
    background-color: transparent;
  }
  .top-teacher-wrapper,
  .top-access-wrapper {
    padding-top: 0;
  }
}
/* .top-class-wrapper {
  position: relative;
  height: 130px; */

@media screen and (max-width: 500px) {
  .go-class {
    width: 77%;
  }
}

/* access */
.top-access {
  position: relative;
  z-index: 50;
  background-color: #fff;
  /* padding-top: 20px; */
}

.top-access-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-access-wrapper-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.access-img {
  width: 740px;
  height: 225px;
  overflow: hidden;
}
.access-img-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.access-blue,
.access-blue-sub {
  background-color: #d2dfed;
  border-radius: 10px;
  padding: 30px;
  width: 470px;
  margin-top: 30px;
}
.access-name {
  font-size: 24px;
  color: #004164;
  opacity: 50%;
  letter-spacing: 5%;
  border-bottom: 2px solid #b4a369;
  display: inline-block;
  line-height: 1.5em;
}
.access-blue-text {
  font-size: 20px;
  line-height: 28px;
  margin-top: 25px;
  letter-spacing: 1px;
}
.access-small-text {
  font-size: 14px;
  margin-top: 28px;
}
.azisai-img {
  width: 200px;
  overflow: hidden;
  margin-top: 90px;
  margin-left: 80px;
}
.azisai {
  width: 100%;
  object-fit: cover;
}

.top-access-submap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 65px;
}
.access-since {
  display: flex;
  align-items: flex-end;
}
.sincestudio {
  padding-left: 25px;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .top-access-wrapper {
    flex-direction: column;
  }
  .top-access-submap {
    flex-direction: column-reverse;
  }
  .access-blue,
  .access-blue-sub {
    padding: 20px;
    width: auto;
    margin-top: 15px;
  }
  .access-name {
    font-size: 20px;
  }
  .access-blue-text {
    font-size: 18px;
  }
  .access-small-text {
    font-size: 14px;
  }
  .access-img {
    width: 330px;
  }
  .azisai-img {
    width: 100px;
    margin: 40px auto 20px;
  }
}

/* コンタクト */

.top-contact {
  background: url(../img/footer-bg-min.png) center/cover;

  position: relative;
  z-index: 50;
}
.top-contact-title {
  max-width: 1000px;
  margin: 0 auto;
}

.top-contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1000px;
  margin: 30px auto 0;
  padding-bottom: 140px;
}
.line-wrapper {
  background-color: #fafdff93;
  border-radius: 150px;
  height: 500px;
  width: 425px;
  padding: 60px 70px;
  text-align: center;
  position: sticky;
  top: 20px;
  left: 0;
}
.line-name {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 7%;
  font-family: "Calibri", sans-serif;
}
.line-img-wrapper {
  width: 176px;
  height: 176px;
  overflow: hidden;
  margin: 30px auto;
}

.top-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.top-line-text {
  font-size: 16px;
  letter-spacing: 5%;
  line-height: 25px;
  margin-top: 55px;
}

.contact-title,
.contact-data,
.contact-texterea {
  display: block;
}
.contact-title {
  font-size: 18px;
  line-height: 22px;
  margin-top: 27px;
}

.contact-data,
#texterea {
  background-color: #fff;
  padding: 10px 15px;
  width: 450px;
  border-radius: 15px;
  margin-top: 6px;
}
.input {
  width: 100%;
  height: 100%;
}

input[type="text"]:focus {
  outline: none;
  box-shadow: none;
}
input[type="email"]:focus {
  outline: none;
  box-shadow: none;
}
#texterea {
  outline: none;
  box-shadow: none;
  height: 160px;
}

.submit-button {
  background-color: #e7f8ff;
  border-radius: 10px;
  width: 210px;
  padding: 10px;
  margin: 40px 125px 80px;
  transition: 0.5s;
  text-align: center;
}

.submit-button:hover {
  opacity: 50%;
}
.contact-subtext {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1.5px;
  margin-left: 20px;
}
.submit:hover .submit-button {
  cursor: pointer;
  background-color: #737f84;
}
.submit:hover {
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .top-contact-wrapper {
    flex-direction: column;
    padding-bottom: 50px;
    margin: 10px auto 0;
  }

  .line-wrapper {
    border-radius: 150px;
    height: 455px;
    width: 350px;
    padding: 50px 35px;
    position: relative;
    margin: 0 auto;
  }
  .line-img-wrapper {
    width: 140px;
    height: 140px;
  }
  .contact-wrapper {
    width: 330px;
    margin: 0 auto;
  }
  .contact-data,
  .contact-texterea,
  .label {
    width: 330px;
  }
  #texterea {
    width: 330px;
  }
  .submit-button {
    text-align: center;

    margin: 30px auto;
  }
  .tac {
    text-align: center;
  }

  .contact-subtext {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
  }
  .no-ip {
    display: none;
  }
}
.tel {
  margin-top: 5px;
}

/* footer */

footer {
  background: url(../img/blue-bg-min.jpg) 50% 0 / cover;
  position: relative;
  z-index: 50;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.footer-wrapper {
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  justify-content: space-between;
}
.footer-box {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
  z-index: 100;
}
.footer-logo {
  width: 360px;
  overflow: hidden;
}
.footer-teacher {
  font-size: 16px;
  margin-top: 35px;
  padding-bottom: 20px;
}
.footer-teacher span,
.footer-adress {
  padding-left: 0.5em;
}
.footer-adress,
.footer-menu-wrapper,
.footer-contact {
  font-family: "Calibri", sans-serif;
}

.footer-img {
  width: 100%;
  object-fit: cover;
}
.aicon-wrapper,
.footer-icon-wrapper {
  width: 20px;
  overflow: hidden;
}
.footer-icon-sns-wrapper {
  display: flex;
  gap: 20px;
}
.footer-icon-wrapper {
  width: 26px;
}
.footer-icon,
.footer-icon-img-sns {
  object-fit: cover;
  width: 100%;
}
.footer-left .footer-menu-wrapper {
  display: flex;
  gap: 25px;
  font-weight: bold;
  font-size: 20px;
}
/* .footer-left-wrapper {
  display: flex;
  align-items: flex-end;
} */
.footer-contact-wrapper {
  display: flex;
  align-items: flex-end;
}
.footer-contact-wrapper {
  justify-content: flex-end;
  gap: 20px;
  margin-top: 25px;
}
.footer-right-flex {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.footer-contact {
  width: 110px;
  height: 33px;
  background-color: #e1ce89;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  line-height: 33px;
  border-radius: 6px;
  letter-spacing: 1.5px;
  /* font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif; */
  margin-left: 16px;
  box-shadow: 0px 2px #0000004b;
}
.footer-left {
  margin-top: 45px;
  display: flex;
  gap: 100px;
  margin-left: 25px;
  align-items: flex-end;
}

.footer-li:hover {
  opacity: 0.5;
}
.footer-li,
.footer-icon-wrapper,
.footer-contact {
  transition: 0.5s;
}

.footer-icon-wrapper:hover {
  opacity: 0.5;
}
.footer-contact:hover,
.contact-menu:hover {
  color: #004164;
  background-color: #fff;
}
.go-top-img {
  width: 60px;
  overflow: hidden;
}
.go-top-inner {
  width: 100%;
  object-fit: cover;
}

.go-top-text {
  font-family: "Cambria", sans-serif;
  font-size: 14px;
  color: #022131;
  transition: 0.5s;
  text-align: center;
}
.go-top-ip {
  display: none;
}

.go-top .go-top-img:hover {
  animation: bound-anim 1s infinite;
}
.go-top-ip .go-top-img:hover {
  animation: bound-anim 1s infinite;
}

.go-top:hover .go-top-text {
  opacity: 0.5;
}
.go-top-ip:hover .go-top-text {
  opacity: 0.5;
}

@keyframes bound-anim {
  0%,
  100% {
    transform: translateY(5px) scale(1);
  }
  30% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(8px);
  }
  90% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 800px) {
  .footer-logo {
    width: 252px;
    margin: 0 auto;
  }
  .footer-right {
    display: none;
  }
  .footer-left .footer-menu-wrapper {
    width: 100%;
    flex-wrap: wrap;
    margin: 20px auto 10px;
    gap: 20%;
    justify-content: center;
  }

  .footer-contact-wrapper {
    display: block;
    gap: 18px;
  }

  .footer-contact {
    width: 100px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 1.5px;
    padding-left: 0;
    margin: 20px 0;
  }

  .footer-left {
    margin-top: 45px;
    display: flex;
    /* gap: 100px; */
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 25px;
  }

  .footer-wrapper {
    display: block;
    padding-bottom: 20px;
  }
  .footer-left-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-li {
    /* margin: 10px;  */
    font-size: 14px;
    width: 20%;
    text-align: center;
  }

  .footer-li:nth-child(4) {
    width: 30%;
    margin-top: 15px;
    text-align: right;
  }
  .footer-li:nth-child(5) {
    width: 30%;
    margin-top: 15px;
    text-align: left;
  }

  .footer-left {
    gap: 0;
    display: block;
  }
  .go-top {
    display: none;
  }
  .iphone-footer-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .go-top-ip {
    display: block;
  }
}

/* クラスページ */

.class-page,
.teacher-page,
.qa-page {
  max-width: 1100px;
  margin: 60px auto 80px;
}
.three-class {
  position: relative;
}
.three-class::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 340px;
  width: 0.5px;
  height: 108%;
  background-color: #02213153;
}
.class-text {
  font-size: 18px;
  width: 100%;

  padding-top: 16px;
}

.class-a,
.class-b,
.class-c,
.class-d {
  display: block;
  align-items: center;
  gap: 10%;
  padding: 20px 10px;
  width: 670px;
  margin: 0 0 30px auto;
}
.class-h3 {
  font-size: 22px;
  width: 100%;
}

.class-a {
  background-color: #ffe6f5;
}
.class-b {
  background-color: #ffffd4a7;
}
.class-c {
  background-color: #d3d5eeb0;
}
.class-d {
  background-color: #d3eed3b0;
}
.class-text span {
  display: inline;
}
.class-img-bg {
  width: 650px;
  overflow: hidden;
  position: relative;
}
.class-img-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.class-img-bg img {
  width: 70%;
  object-fit: cover;
  margin-top: 20px;
}

.calendar-img {
  width: 100%;
  overflow: hidden;
  max-width: 1000px;
  margin: 120px auto;
}
.calendar2025-img {
  width: 50%;
  overflow: hidden;
  max-width: 1000px;
  margin: 10px auto 40px;
}
.calendar-img img {
  object-fit: cover;
  width: 100%;
}

.class-page-plice {
  background-color: #ecf6fb;
  padding-top: 90px;
  padding-bottom: 45px;
}
.plice-table,
.class-tb {
  max-width: 750px;
  margin: 0 auto;
}
.plice-tr {
  border-bottom: 1px solid #02213165;
}
.plice-tr:nth-last-child() {
  border-bottom: none;
}

.plice-th {
  padding-left: 100px;
}
.plice-td,
.plice-th {
  line-height: 75px;
  width: 50%;
}

.class-pg-img {
  width: 100px;
  overflow: hidden;
  margin: 40px auto;
}
.class-pg-img img {
  width: 100px;
  object-fit: cover;
}

/* クラス料金 */
.class-th,
.class-td,
.class-th-f {
  text-align: center;
  line-height: 75px;
}

.class-tr {
  border-top: 1px solid #02213165;
}
.class-th,
.class-th-f {
  width: 30%;
}
.class-td {
  width: 40%;
  border-left: 1px solid #02213165;
  padding: 20px 0px;
}
.class-th-f {
  border-left: 1px solid #02213165;
  line-height: 40px;
}
.class-caution {
  font-size: 14px;
  margin: 82px auto 0;
  width: 550px;
  letter-spacing: 2px;
  line-height: 21px;
}

.adultclass {
  width: 750px;
  margin: 30px auto;
  display: flex;
  font-size: 16px;
}
.adult-title {
  width: 30%;
  text-align: center;
  line-height: 100px;
  border-right: 1px solid #02213165;
}

.adult-plice {
  width: 40%;
  text-align: center;
  position: relative;
}
.adult-ul {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
.adult-plice-text {
  padding: 5px 0;
  text-align: left;
}
.adult-plice-text.adult-ticket {
  font-size: 12px;
}

.toeshoes-img {
  position: relative;
  width: 100px;
  overflow: hidden;
  margin: 130px auto;
}
.w-o-img-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.class-img-wrapper {
  position: relative;
  padding-bottom: 80px;
}
.class-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.toeshoes-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.class-ara-img {
  overflow: hidden;
  margin: 0 auto;
}
.class-ara-img {
  width: 760px;
  height: 490px;
}
.class-img-two {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-top: 40px;
}
.class-two-img {
  height: 360px;
}

@media screen and (max-width: 800px) {
  .class-h3 {
    font-size: 18px;
    width: 100%;
  }
  .class-text {
    font-size: 14px;
  }
  .three-class {
    margin-top: 50px;
  }
  .class-a,
  .class-b,
  .class-c,
  .class-d {
    gap: 30px;
    padding: 13px 20px;
    margin: 0 auto 15px auto;
    max-width: 350px;
  }
  .class-img-bg {
    width: 300px;
    margin: 0 auto;
  }

  .class-img-bg img {
    width: 100%;
  }
  .calendar-img {
    max-width: 350px;

    margin: 0 auto;
  }
  .plice-table,
  .class-tb {
    max-width: 350px;
  }
  .plice-th {
    padding-left: 50px;
    width: 40%;
  }
  .plice-td,
  .plice-th {
    line-height: 60px;
  }

  .plice-ip {
    line-height: 22px;
  }
  .plice-td {
    width: 60%;
    font-size: 14px;
  }
  .class-th,
  .class-td,
  .class-th-f {
    line-height: 1.5em;
  }
  .class-td {
    width: 30%;
  }

  .class-caution {
    font-size: 14px;
    margin: 82px auto 0;
    width: 330px;
    letter-spacing: 0px;
    line-height: 19px;
  }
  .class-pg-img,
  .toeshoes-img {
    width: 60px;
  }
  .class-pg-img img {
    width: 60px;
  }
  .toeshoes-img {
    margin: 60px auto;
  }
  .class-ara-img {
    width: 330px;
    height: 220px;
  }
  .class-img-two {
    display: block;
  }
  .class-two-img {
    width: 330px;
    height: 240px;
    margin: 40px auto;
  }
  .three-class::before {
    display: none;
  }

  .adultclass {
    max-width: 350px;
  }
  .adult-ul {
    width: 100%;
  }
  .adult-plice {
    width: 70%;
  }
  .adult-title {
    width: 35.3%;
  }
  .adult-plice-text {
    padding: 2px 0;
    padding-left: 1em;
  }

  .calendar2025-img {
    width: 90%;
  }
}

/* teacher-page */

.teacher-page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-top: 70px;
}
.teacher-name {
  font-size: 22px;
  letter-spacing: 2px;
  display: inline;
  position: relative;
}

.teacher-name span {
  color: #b4a369;
  padding-left: 1em;
}

.teacher-page-text {
  font-size: 16px;
  line-height: 33px;
  margin-top: 35px;
}
.teacer-img-wrapper {
  width: 390px;
  overflow: hidden;
}

.flower-img {
  width: 200px;
  margin: 200px auto 40px;
}

.teacher-about {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ecf6fb;
  padding: 50px 100px;
}
.teacher-about-text-wrapper {
  line-height: 34px;
  font-size: 16px;
  letter-spacing: 1px;
}

.br-t {
  display: block;
  content: "";
  padding: 40px 0 0 0;
}

.teacher-img-five {
  max-width: 1000px;
  margin: 125px auto;
}

.teacher-left-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 300px;
  overflow: hidden;
}

.teacher-img-pages-right {
  width: 50%;
  overflow: hidden;
}
.teacher-img-pages-right-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 55px;
}
.teacher-left-img {
  width: 50%;
  overflow: hidden;
}

.teacher-left-wrapper:nth-child(2) {
  margin-top: 55px;
}
/* .w-squer {
  width: 230px;
} */

@media screen and (max-width: 800px) {
  .teacher-page-wrapper {
    flex-direction: column-reverse;
    max-width: 350px;
    margin: 0 auto;
    gap: 0;
  }
  .teacer-img-wrapper {
    width: 200px;
    height: 300px;
    margin-top: 20px;
  }
  .teacher-name {
    font-size: 16px;
  }
  .teacher-page-text {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
  }
  h2 span.teacher-title {
    font-size: 55px;
    letter-spacing: 0;
  }
  .flower-img {
    width: 100px;
    margin: 80px auto;
  }
  .teacher-about {
    padding: 20px 30px;
  }
  .teacher-img-five,
  .teacher-left-wrapper {
    display: block;
  }
  .teacher-left-wrapper {
    height: auto;
  }
  .teacher-img-five {
    width: 350px;
    margin: 0 auto;
  }
  .w-squer {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }
  .teacher-left-img {
    /* height: 280px; */
    margin-top: 20px;
    width: 100%;
  }
  .teacher-img-pages-right-wrapper {
    margin-top: 20px;
    display: block;
  }
  .teacher-left-wrapper:nth-child(2) {
    margin-top: 0px;
  }
  .teacher-img-pages-right {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* Q&A */

.qa-wrapper {
  max-width: 800px;
  margin: 0 auto 150px;
}
.q-text-wrapper,
.a-text-wrapper {
  padding-left: 45px;
  display: flex;
  gap: 30px;
  position: relative;
  align-items: center;
}

.q-text-wrapper {
  padding-top: 20px;
  padding-bottom: 10px;
  line-height: 22px;
  padding-left: 45px;
  border-bottom: 1px solid #022131;
  font-size: 18px;
  /* margin-top: 10px; */
}
.q-text-wrapper:hover {
  cursor: pointer;
}
.a-text-wrapper {
  background-color: #f2f8ff;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 0; /* 非表示時、0*/
  opacity: 0; /* 非表示時、0*/
  padding: 0;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
}

.q-text-wrapper::after {
  content: "＋";
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}
.ipone-br {
  display: none;
}

@media screen and (max-width: 800px) {
  .q-text-wrapper,
  .a-text-wrapper {
    font-size: 14px;
  }
  .ipone-br {
    display: block;
  }
}

/* section-title */
@media screen and (max-width: 800px) {
  .h2 span {
    font-size: 60px;
  }
  .teacher-small {
    font-size: 14px;
  }
  .q-text-wrapper::after {
    font-size: 20px;
    bottom: 10px;
    right: 10px;
  }
  .q-text-wrapper,
  .a-text-wrapper {
    padding-left: 25px;
  }
  .q-text-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .qa-wrapper {
    margin: 35px;
  }
}

.qa-active {
  display: flex;
  max-height: 1000px;
  opacity: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 22px;
  padding-left: 45px;
}
.q-text-wrapper.qa-active {
  padding-top: 20px;
}

.q-text-wrapper.qa-active::after {
  content: "";
  transform: translateY(-10px);
  font-size: 30px;
  width: 12px;
  height: 2px;
  background-color: black;
  bottom: 14px;
  right: 28px;
}
small {
  text-align: center;
  display: block;
  padding-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .qa-active {
    padding-left: 25px;
  }
  .q-text-wrapper.qa-active::after {
    content: "";
    transform: translateY(-10px);
    font-size: 30px;
    width: 12px;
    height: 2px;
    background-color: black;
    bottom: 11px;
    right: 13px;
  }
  .q-text-wrapper.qa-active {
    padding-top: 10px;
  }
  small {
    font-size: 8px;
    padding: 8px;
  }
}

.instafeed {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 100;
  background-color: #fff;
}
.instafeed-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .instafeed {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .instafeed-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
