body {
  margin: 0;
  color: #4A4A4A;
  background-color: #F6F4EE;
  font-family: "BIZ UDMincho";
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  padding: 20px 40px;
  background-color: #F6F4EE;
  box-sizing: border-box;
  z-index: 1000;
}

header .mask {
  display: none;
}

header .humburger {
  visibility: hidden;
  pointer-events: none;
}

header.open .humburger {
  visibility: visible;
  pointer-events: auto;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

header .header-inner .left {
  display: flex;
  align-items: center;
}

header .header-inner .left img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

header .header-inner .left .title {
  padding-left: 20px;
  color: #4A4A4A;
  font-size: 24px;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}

header .header-inner .right {
  display: flex;
  min-width: 0;
  align-items: center;
}

header .header-inner .right .header-list {
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0 40px 0 0;
}

header .header-inner .right .header-list a {
  color: #4A4A4A;
  text-decoration: none;
  white-space: nowrap;
}

header .header-inner .right .header-list li {
  display: inline-block;
  position: relative;
  color: #4A4A4A;
  font-size: 16px;
  list-style: none;
  text-decoration: none;
}

header .header-inner .right .header-list li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -3px;
  opacity: 0;
  background-color: #FFD54A;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

header .header-inner .right .header-list li:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

header .header-inner .right .lesson-btn {
  padding: 18px 40px;
  color: #FFD54A;
  font-size: 20px;
  font-weight: bold;
  background: #7FA878;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.5s, background 0.5s;
}

header .header-inner .right .lesson-btn:hover {
  color: #7FA878;
  background: #FFD54A;
}

main .mainvisual {
  position: relative;
  width: 100%;
  height: 880px;
  margin-bottom: 50px;
}

main .mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

main .mainvisual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 253, 253, 0.8) 0%, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}

main .mainvisual .mainvisual-title {
  position: absolute;
  bottom: 10%;
  left: 60px;
  z-index: 2;
}

main .mainvisual .mainvisual-title h1 {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 400;
  color: #4A4A4A;
}

main .mainvisual .mainvisual-title p {
  margin-bottom: 40px;
  font-size: 20px;
  color: #4A4A4A;
}

main .mainvisual .mainvisual-title .btn {
  display: inline-block;
  padding: 20px 48px;
  border-radius: 50px;
  background: #89A979;
  color: #FFC928;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.5s, background 0.5s;
}

main .mainvisual .mainvisual-title .btn:hover {
  color: #7FA878;
  background: #FFD54A;
}

#concept {
  scroll-margin-top: 120px;
  background-color: #E7EFE3;
  margin-inline: 30px;
  padding: 50px 9%;
  border-radius: 16px;
}

#concept .concept-inner {
  display: flex;
  max-width: 1500px;
  width: 100%;
  margin-inline: auto;
}

#concept .concept-inner .concept-title {
  width: 50%;
}

#concept .concept-inner .concept-title h2 {
  font-size: 32px;
  color: #B8933F;
}

#concept .concept-inner .concept-title .concept-lead {
  margin-block: 70px;
  font-size: 27px;
}

#concept .concept-inner .concept-title .concept-text {
  font-size: 17px;
  line-height: 35px;
}

#concept .concept-inner .concept-img {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 45%;
  margin-top: 30px;
  margin-left: 100px;
}

#concept .concept-inner .concept-img img {
  display: block;
  width: calc((100% - 50px) / 2);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

#concept .concept-inner .concept-img .img-right {
  margin-top: 60px;
}

#concept .concept-list {
  display: flex;
  gap: 100px;
  max-width: 1500px;
  margin-top: 150px;
  text-align: center;
}

#concept .concept-list .list-item {
  flex: 1;
}

#concept .concept-list .list-item .list-img {
  max-width: 300px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}

#concept .concept-list .list-item .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

#concept .concept-list .list-item .list-text {
  max-width: 300px;
  margin-inline: auto;
}

#concept .concept-list .list-item .list-text h3 {
  margin-block: 50px;
  color: #B8933F;
  font-size: 22px;
}

#concept .concept-list .list-item .list-text p {
  text-align: left;
  line-height: 30px;
}

#concept #instructor {
  scroll-margin-top: 120px;
  display: flex;
  gap: 150px;
  max-width: 1500px;
  width: 100%;
  margin-top: 70px;
  margin-inline: auto;
}

#concept #instructor .instructor-img {
  width: 50%;
}

#concept #instructor .instructor-img img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#concept #instructor .instructor-text {
  display: flex;
  flex-direction: column;
}

#concept #instructor .instructor-text h4 {
  font-size: 32px;
  color: #B8933F;
}

#concept #instructor .instructor-text p {
  margin-top: 50px;
  font-size: 17px;
  line-height: 35px;
}

#concept #instructor .instructor-text .info {
  display: inline-block;
  position: relative;
  align-self: flex-end;
  margin-top: auto;
  color: #4A4A4A;
  text-decoration: none;
  cursor: pointer;
}

#concept #instructor .instructor-text .info::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #B8933F;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

#concept #instructor .instructor-text .info:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.announce {
  max-width: 400px;
  margin-inline: auto;
}

.announce h5 {
  margin-top: 100px;
  margin-bottom: 80px;
  text-align: center;
  font-size: 32px;
}

.announce .announce-item {
  display: flex;
  gap: 60px;
  padding: 20px 0;
  border-bottom: 1px solid #4A4A4A;
}

.announce .announce-item dt {
  font-size: 20px;
  color: #4A4A4A;
}

.announce .announce-item dd {
  margin: 0;
  font-size: 20px;
}

.announce .announce-item a {
  color: #4A4A4A;
  text-decoration: none;
}

#lesson {
  max-width: 1326px;
  margin-inline: auto;
  margin-top: 50px;
  padding: 50px 30px;
}

#lesson .lesson-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 100px;
}

#lesson .lesson-item {
  display: flex;
  gap: 150px;
  margin-inline: auto;
  margin-bottom: 150px;
}

#lesson .lesson-item .lesson-img {
  width: 50%;
}

#lesson .lesson-item .lesson-img img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

#lesson .lesson-text {
  flex: 1;
}

#lesson .lesson-text h6 {
  margin-bottom: 40px;
  font-size: 32px;
}

#lesson .lesson-text p {
  line-height: 2;
}

#lesson .lesson-group {
  display: flex;
  gap: 150px;
  margin-inline: auto;
  margin-bottom: 150px;
}

#lesson .lesson-group .group-img {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 50%;
  margin-top: 30px;
}

#lesson .lesson-group .group-img img {
  display: block;
  width: calc((100% - 50px) / 2);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

#lesson .lesson-group .group-img .img-right {
  margin-top: 120px;
}

#lesson .class-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 100px;
}

#lesson .class-list .class-card h6 {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
}

#lesson .class-list .class-card p {
  line-height: 2;
}

#lesson .note {
  margin-top: 60px;
}

#price {
  padding: 120px 0 180px;
}

#price .price-heading {
  text-align: center;
}

#price .price-heading .price-title {
  font-size: 32px;
  font-weight: 400;
}

#price .price-heading .price-subtitle {
  margin-top: 20px;
  font-size: 23px;
}

#price .price-cards {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 80px;
}

#price .price-cards .price-card {
  width: min(100%, 380px);
  padding: 40px 32px;
  background: #E7EFE3;
  border-radius: 30px;
  text-align: center;
}

#price .price-cards .price-card_title {
  color: #C89A3A;
  font-size: 27px;
  font-weight: 400;
}

#price .price-cards .price-card_plan {
  margin-top: 40px;
  font-size: 22px;
}

#price .price-cards .price-card_price {
  margin-top: 30px;
  font-size: 40px;
  font-weight: 400;
}

#price .price-cards .price-card_price span {
  font-size: 22px;
}

#price .price-cards .price-card_text {
  max-width: 280px;
  margin: 32px auto 0;
  font-size: 18px;
  line-height: 1.8;
}

#price .price-cards .price-card_btn {
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 40px auto 0;
  padding: 16px;
  border-radius: 999px;
  background: #D8B84C;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.5s, background 0.5s;
}

#price .price-cards .price-card_btn:hover {
  color: #D8B84C;
  background: #fff;
}

#price .price-link {
  max-width: 1326px;
  margin: 80px auto 0;
  text-align: right;
}

#price .price-link a {
  position: relative;
  display: inline-block;
  margin-top: auto;
  padding-bottom: 10px;
  color: #4A4A4A;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
}

#price .price-link a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #B8933F;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

#price .price-link a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.voice {
  padding-bottom: 120px;
  background: #f6f4ee;
}

.voice .voice-inner {
  max-width: 1326px;
  margin-inline: auto;
}

.voice .voice-inner .voice-heading {
  margin-bottom: 56px;
  text-align: center;
}

.voice .voice-inner .voice-heading h8 {
  margin-bottom: 24px;
  font-size: 32px;
}

.voice .voice-inner .voice-heading p {
  font-size: 20px;
  line-height: 1.8;
}

.voice .voice-inner .voice-card {
  max-width: 830px;
  margin-inline: auto;
  padding: 40px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.voice .voice-inner .voice-card h8 {
  font-size: 27px;
}

.voice .voice-inner .voice-card .voice-header {
  margin-bottom: 24px;
}

.voice .voice-inner .voice-card .voice-header h8 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.voice .voice-inner .voice-card .voice-header time {
  font-size: 18px;
  color: #666;
}

.voice .voice-inner .voice-card .voice-star {
  margin-bottom: 20px;
  color: #B8933F;
  font-size: 32px;
}

.voice .voice-inner .voice-card .voice-text {
  color: #555;
  font-size: 18px;
  line-height: 2;
}

#schedule {
  padding: 120px 20px;
  background: #f6f4ee;
}

#schedule .schedule-inner {
  max-width: 1326px;
  width: 100%;
  margin-inline: auto;
  padding-block: 60px;
  background: #E7EFE3;
  border-radius: 30px;
}

#schedule .schedule-inner .schedule-heading {
  margin-bottom: 40px;
  text-align: center;
}

#schedule .schedule-inner .schedule-heading h2 {
  font-size: 32px;
}

#schedule .schedule-inner .schedule-calendar {
  margin-bottom: 100px;
  text-align: center;
}

#schedule .schedule-inner .schedule-calendar img {
  max-width: 910px;
  width: 100%;
  border-radius: 20px;
}

#schedule .schedule-inner .schedule-card {
  display: flex;
  gap: 40px;
  max-width: 910px;
  margin-inline: auto;
  margin-bottom: 100px;
}

#schedule .schedule-inner .schedule-card .schedule-img {
  width: 50%;
}

#schedule .schedule-inner .schedule-card .schedule-img .schedule-store {
  margin-bottom: 30px;
  text-align: center;
  font-size: 32px;
  color: #c39b36;
  font-family: "BIZ UDMincho", serif;
}

#schedule .schedule-inner .schedule-card .schedule-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
}

#schedule .schedule-inner .schedule-card .schedule-info {
  margin-top: 100px;
}

#schedule .schedule-inner .schedule-card .schedule-info .schedule-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

#schedule .schedule-inner .schedule-card .schedule-info .schedule-item .icon {
  width: 32px;
  font-size: 20px;
}

#schedule .schedule-inner .schedule-card .schedule-info .schedule-item .text {
  color: #555;
  font-size: 16px;
}

#schedule .schedule-inner .schedule-card .schedule-info .schedule-item .text p {
  margin-top: 20px;
  font-size: 16px;
}

#schedule .schedule-inner .schedule-card .schedule-info .schedule-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 50px;
  margin-top: 30px;
  margin-left: 60px;
  background: #D8B84C;
  color: #fff;
  border-radius: 999px;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.5s, background 0.5s;
}

#schedule .schedule-inner .schedule-card .schedule-info .schedule-btn:hover {
  color: #D8B84C;
  background: #fff;
}

#schedule .schedule-inner .coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 910px;
  width: 100%;
  height: 480px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  font-size: 40px;
  color: #b88a1e;
}

.answer {
  padding: 80px 20px;
  background: #F6F4EE;
}

.answer .answer-inner {
  max-width: 910px;
  width: 100%;
  margin-inline: auto;
  padding: 60px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 40px;
}

.answer .answer-inner .answer-title {
  margin-bottom: 60px;
  text-align: center;
  font-size: 32px;
}

.answer .answer-inner .faq-item {
  border-bottom: 1px solid #ddd;
}

.answer .answer-inner .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  text-align: left;
  border: none;
  background: none;
  color: #4A4A4A;
  font-size: 20px;
  font-family: inherit;
  cursor: pointer;
}

.answer .answer-inner .faq-item .faq-answer {
  display: none;
  padding-bottom: 30px;
}

.answer .answer-inner .faq-item .faq-answer p {
  font-size: 20px;
  line-height: 2;
}

.answer .answer-inner .faq-item.active .faq-answer {
  display: block;
}
/* ==========================
   Contact Form 7
========================== */

.contact {
  padding: 70px 20px;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {

  text-align: center;

}

.wpcf7 {
  width: 100%;
}

.wpcf7 form {
  width: 100%;
}
.wpcf7 form p:has(.wpcf7-submit) {
  text-align: center;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 8px;
}

.wpcf7-textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}


.wpcf7-submit {
  display: inline-block;
  width: 250px;
  margin-top: 30px;
  padding: 16px 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  background: #7FA878;
  color: #FFD54A;
  transition: color 0.5s, background 0.5s;
}

.wpcf7-submit:hover {
  color: #7FA878;
  background: #FFD54A;
}

.wpcf7-spinner {
  display: block;
  margin-top: 10px;
}

footer {
  width: 100%;
  padding-inline: 40px;
  padding-bottom: 10px;
  box-sizing: border-box;
  background-color: #F6F4EE;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-inner .left {
  display: flex;
  align-items: center;
}

footer .footer-inner .left img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

footer .footer-inner .left .title {
  padding-left: 20px;
  color: #4A4A4A;
  font-size: 24px;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}

footer .footer-inner .right {
  display: flex;
  align-items: center;
  gap: 22px;
}

footer .footer-inner .right .sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s ease;
}

footer .footer-inner .right .sns-link:hover {
  opacity: 0.7;
}

footer .footer-inner .right .sns-link img {
  width: 100%;
  height: 100%;
}

footer p {
  font-size: 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  header {
    height: 70px;
    padding: 0 18px;
  }

  header .header-inner {
    position: relative;
    height: 100%;
    z-index: 30;
  }

  header .header-inner .left img {
    width: 45px;
    height: 45px;
  }

  header .header-inner .left .title {
    padding-left: 5px;
    font-size: 14px;
  }

  header .header-inner .right {
    display: none;
  }

  header .humburger {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    padding: 25px;
    background: #F6F4EE;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s;
    z-index: 20;
  }

  header .humburger .humburger-list {
    margin-top: 80px;
    padding-left: 0;
  }

  header .humburger .humburger-list li {
    margin-bottom: 35px;
    list-style: none;
  }

  header .humburger .humburger-list li a {
    color: #4A4A4A;
    text-decoration: none;
  }

  header .humburger .link {
    display: flex;
    margin-top: 50px;
    padding-left: 0;
  }

  header .humburger .link li {
    list-style: none;
    margin-right: 20px;
  }

  header .humburger .link li a img {
    width: 30px;
    height: 30px;
  }

  header.open .humburger {
    transform: translateX(0);
    opacity: 1;
  }

  header .toggle_btn {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 30;
  }

  header .toggle_btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    transition: 0.5s;
    background-color: #4A4A4A;
  }

  header .toggle_btn span:nth-child(1) {
    top: 33%;
  }

  header .toggle_btn span:nth-child(2) {
    top: 66%;
  }

  header .toggle_btn span:nth-child(3) {
    top: 99%;
  }

  header .toggle_btn .mask {
    display: none;
    transition: 0.5s;
  }

  header.open .toggle_btn span {
    background-color: #F6F4EE;
  }

  header.open .toggle_btn span:nth-child(1) {
    transform: rotate(315deg);
    top: 50%;
  }

  header.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  header.open .toggle_btn span:nth-child(3) {
    transform: rotate(-315deg);
    top: 50%;
  }

  header .mask {
    display: none;
    transition: 0.5s;
  }

  header.open .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    z-index: 10;
    cursor: pointer;
  }
}

@media (max-width: 900px) {
  header {
    height: 70px;
    padding: 0 18px;
  }

  header .header-inner {
    position: relative;
    height: 100%;
    z-index: 30;
  }

  header .header-inner .left img {
    width: 45px;
    height: 45px;
  }

  header .header-inner .left .title {
    padding-left: 5px;
    font-size: 14px;
  }

  header .header-inner .right {
    display: none;
  }

  header .humburger {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    padding: 25px;
    background: #F6F4EE;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s;
    z-index: 20;
  }

  header .humburger .humburger-list {
    margin-top: 80px;
    padding-left: 0;
  }

  header .humburger .humburger-list li {
    margin-bottom: 35px;
    list-style: none;
  }

  header .humburger .humburger-list li a {
    color: #4A4A4A;
    text-decoration: none;
  }

  header .humburger .link {
    display: flex;
    margin-top: 50px;
    padding-left: 0;
  }

  header .humburger .link li {
    list-style: none;
    margin-right: 20px;
  }

  header .humburger .link li a img {
    width: 30px;
    height: 30px;
  }

  header.open .humburger {
    transform: translateX(0);
    opacity: 1;
  }

  header .toggle_btn {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 30;
  }

  header .toggle_btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    transition: 0.5s;
    background-color: #4A4A4A;
  }

  header .toggle_btn span:nth-child(1) {
    top: 33%;
  }

  header .toggle_btn span:nth-child(2) {
    top: 66%;
  }

  header .toggle_btn span:nth-child(3) {
    top: 99%;
  }

  header .toggle_btn .mask {
    display: none;
    transition: 0.5s;
  }

  header.open .toggle_btn span {
    background-color: #F6F4EE;
  }

  header.open .toggle_btn span:nth-child(1) {
    transform: rotate(315deg);
    top: 50%;
  }

  header.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  header.open .toggle_btn span:nth-child(3) {
    transform: rotate(-315deg);
    top: 50%;
  }

  header .mask {
    display: none;
    transition: 0.5s;
  }

  header.open .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    z-index: 10;
    cursor: pointer;
  }

  main .mainvisual {
    height: 520px;
    margin-bottom: 40px;
  }

  main .mainvisual::before {
    background: linear-gradient(to right, rgba(255, 253, 253, 0.82) 0%, rgba(255, 255, 255, 0.65) 38%, rgba(255, 255, 255, 0) 100%);
  }

  main .mainvisual .mainvisual-title {
    width: 100%;
    padding-inline: 28px;
    left: 0;
    bottom: 45px;
    box-sizing: border-box;
  }

  main .mainvisual .mainvisual-title h1 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  main .mainvisual .mainvisual-title p {
    margin-bottom: 10px;
    font-size: 13px;
  }

  main .mainvisual .mainvisual-title .btn {
    padding: 15px 30px;
    font-size: 12px;
  }

  #concept {
    margin-inline: 0;
    padding: 50px 28px;
    border-radius: 0;
  }

  #concept .concept-inner {
    display: block;
  }

  #concept .concept-inner .concept-title {
    width: 100%;
    text-align: center;
  }

  #concept .concept-inner .concept-title h2 {
    font-size: 25px;
  }

  #concept .concept-inner .concept-title .concept-lead {
    margin-block: 35px;
    font-size: 17px;
  }

  #concept .concept-inner .concept-title .concept-text {
    margin-bottom: 30px;
    text-align: left;
    font-size: 12px;
    line-height: 25px;
  }

  #concept .concept-inner .concept-title .concept-text br {
    display: none;
  }

  #concept .concept-inner .concept-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 80px;
  }

  #concept .concept-inner .concept-img img {
    border-radius: 10px;
  }

  #concept .concept-inner .concept-img .img-right {
    margin-top: 0;
  }

  #concept .concept-list {
    display: block;
    margin-top: 0;
  }

  #concept .concept-list .list-item {
    max-width: 360px;
    margin: 0 auto 50px;
  }

  #concept .concept-list .list-item .list-img {
    max-width: 200px;
  }

  #concept .concept-list .list-item .list-text {
    max-width: 360px;
  }

  #concept .concept-list .list-item .list-text h3 {
    margin-block: 36px;
    font-size: 20px;
    line-height: 1.35;
  }

  #concept .concept-list .list-item .list-text p {
    font-size: 12px;
    line-height: 2;
  }

  #concept #instructor {
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  #concept #instructor .instructor-img {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  #concept #instructor .instructor-img img {
    border-radius: 10px;
  }

  #concept #instructor .instructor-text {
    display: block;
    max-width: 380px;
    margin: 42px auto 0;
  }

  #concept #instructor .instructor-text h4 {
    font-size: 20px;
  }

  #concept #instructor .instructor-text p {
    margin-top: 36px;
    font-size: 12px;
    line-height: 2;
    text-align: left;
  }

  #concept #instructor .instructor-text p br {
    display: none;
  }

  #concept #instructor .instructor-text .info {
    margin-top: 15px;
    font-size: 13px;
  }

  .announce {
    max-width: 420px;
    padding-inline: 28px;
  }

  .announce h5 {
    margin-top: 80px;
    margin-bottom: 54px;
    font-size: 25px;
  }

  .announce .announce-item {
    gap: 34px;
    padding: 18px 0;
  }

  .announce .announce-item dt,
  .announce .announce-item dd {
    font-size: 15px;
  }

  #lesson {
    margin-top: 0;
    padding: 50px 28px;
  }

  #lesson .lesson-title {
    margin-bottom: 54px;
    font-size: 25px;
  }

  #lesson .lesson-item,
  #lesson .lesson-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  #lesson .lesson-item .lesson-img {
    width: 100%;
  }

  #lesson .lesson-item .lesson-img img {
    width: 100%;
    border-radius: 10px;
  }

  #lesson .lesson-text {
    max-width: 700px;
    margin-inline: auto;
  }

  #lesson .lesson-text h6 {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
  }

  #lesson .lesson-text p {
    font-size: 12px;
    line-height: 2;
  }

  #lesson .lesson-group .group-img {
    order: 2;
    gap: 24px;
    width: 100%;
    margin-top: 0;
  }

  #lesson .lesson-group .group-img img {
    width: calc((100% - 24px) / 2);
    border-radius: 10px;
  }

  #lesson .lesson-group .group-img .img-right {
    margin-top: 0;
  }

  #lesson .lesson-group .lesson-text {
    margin-bottom: 20px;
  }

  #lesson .class-list {
    display: block;
    max-width: 700px;
    margin: 60px auto 0;
  }

  #lesson .class-list .class-card h6 {
    font-size: 15px;
  }

  #lesson .class-list .class-card p {
    font-size: 13px;
    line-height: 2;
  }

  #lesson .note {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 10px;
  }

  #price {
    padding: 80px 28px 40px;
  }

  #price .price-heading .price-title {
    font-size: 25px;
  }

  #price .price-heading .price-subtitle {
    font-size: 17px;
  }

  #price .price-cards {
    flex-direction: column;
    align-items: center;
    gap: 34px;
    margin-top: 60px;
  }

  #price .price-cards .price-card {
    width: min(100%, 480px);
    padding: 42px 30px;
    border-radius: 56px;
    box-sizing: border-box;
  }

  #price .price-cards .price-card_title {
    font-size: 20px;
  }

  #price .price-cards .price-card_plan {
    font-size: 15px;
  }

  #price .price-cards .price-card_price {
    font-size: 30px;
  }

  #price .price-cards .price-card_price span {
    font-size: 15px;
  }

  #price .price-cards .price-card_text {
    font-size: 15px;
  }

  #price .price-cards .price-card_btn {
    max-width: 320px;
    width: 80%;
    font-size: 20px;
  }

  #price .price-link {
    max-width: 480px;
    margin-top: 52px;
    text-align: right;
  }

  #price .price-link a {
    font-size: 15px;
  }

  .voice {
    padding: 60px 28px 70px;
  }

  .voice .voice-inner .voice-heading {
    margin-bottom: 52px;
  }

  .voice .voice-inner .voice-heading h8 {
    font-size: 25px;
  }

  .voice .voice-inner .voice-heading p {
    font-size: 16px;
  }

  .voice .voice-inner .voice-card {
    max-width: 520px;
    padding: 30px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .voice .voice-inner .voice-card h8 {
    font-size: 17px;
    line-height: 1.5;
  }

  .voice .voice-inner .voice-card .voice-star {
    font-size: 15px;
  }

  .voice .voice-inner .voice-card .voice-text {
    font-size: 11px;
    line-height: 1.7;
  }

  #schedule {
    padding: 10px 28px 0;
    background: #E7EFE3;
  }

  #schedule .schedule-inner {
    padding-block: 20px 60px;
    border-radius: 10px;
  }

  #schedule .schedule-inner .schedule-heading h2 {
    font-size: 25px;
  }

  #schedule .schedule-inner .schedule-calendar {
    margin-bottom: 60px;
  }

  #schedule .schedule-inner .schedule-calendar img {
    border-radius: 10px;
  }

  #schedule .schedule-inner .schedule-card {
    display: block;
    margin-bottom: 70px;
  }

  #schedule .schedule-inner .schedule-card .schedule-img {
    width: 100%;
  }

  #schedule .schedule-inner .schedule-card .schedule-img img {
    border-radius: 10px;
  }

  #schedule .schedule-inner .schedule-card .schedule-img .schedule-store {
    font-size: 25px;
  }

  #schedule .schedule-inner .schedule-card .schedule-info {
    margin-top: 46px;
  }

  #schedule .schedule-inner .schedule-card .schedule-info .schedule-item {
    gap: 28px;
  }

  #schedule .schedule-inner .schedule-card .schedule-info .schedule-item .icon {
    width: 42px;
    font-size: 20px;
    text-align: center;
  }

  #schedule .schedule-inner .schedule-card .schedule-info .schedule-item .text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
  }

  #schedule .schedule-inner .schedule-card .schedule-info .schedule-item .text p {
    font-size: 13px;
    line-height: 1.6;
  }

  #schedule .schedule-inner .schedule-card .schedule-info .schedule-btn {
    width: min(100%, 380px);
    margin: 42px auto 0;
    font-size: 17px;
  }

  #schedule .schedule-inner .coming-soon {
    height: 500px;
    border-radius: 56px;
    font-size: 34px;
  }

  .answer {
    padding: 80px 28px;
  }

  .answer .answer-inner {
    padding: 30px;
  }

  .answer .answer-inner .answer-title {
    margin-bottom: 50px;
    font-size: 25px;
  }

  .answer .answer-inner .faq-item .faq-question {
    padding: 16px 0;
    font-size: 16px;
  }

  .answer .answer-inner .faq-item .faq-answer p {
    font-size: 15px;
  }

  .contact {
    padding: 0 28px 100px;
  }

  .contact .contact-inner {
    max-width: 420px;
  }

  .contact .contact-inner .contact-title {
    margin-bottom: 56px;
    font-size: 25px;
  }

  .contact .contact-inner .contact-form {
    gap: 34px;
  }

  .contact .contact-inner .contact-form .form-group label {
    font-size: 15px;
  }

  .contact .contact-inner .contact-form .form-group input,
  .contact .contact-inner .contact-form .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .contact .contact-inner .contact-form .form-group textarea {
    min-height: 140px;
  }

  .contact .contact-inner .contact-form .contact-btn {
    height: 50px;
    font-size: 18px;
  }

  footer {
    padding-inline: 18px;
    padding-bottom: 20px;
  }

  footer .footer-inner {
    gap: 18px;
  }

  footer .footer-inner .left img {
    width: 45px;
    height: 45px;
  }

  footer .footer-inner .left .title {
    padding-left: 12px;
    font-size: 14px;
  }

  footer .footer-inner .right {
    gap: 0;
  }

  footer .footer-inner .right .sns-link {
    width: 36px;
    height: 36px;
  }

  footer .footer-inner .right .sns-link img {
    width: 70%;
    width: 70%;
  }

  footer p {
    font-size: 7px;
  }

  .profile .profile-title {
    gap: 35px;
    font-size: 25px;
  }
}

body {
  background-color: #F6F4EE;
  font-family: "BIZ UDMincho";
  color: #4A4A4A;
  margin: 0;
}

.profile {
  max-width: 1100px;
  margin-inline: auto;
  padding: 100px 20px;
}

.profile .profile-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  font-size: 30px;
  margin-bottom: 80px;
}

.profile .profile-title span {
  flex: 1;
  max-width: 500px;
  height: 1px;
  background-color: #4A4A4A;
}

.profile .profile-box,
.profile .license-box {
  background: #E7EFE3;
  border-radius: 30px;
  padding: 60px;
}

.profile .profile-box {
  margin-bottom: 50px;
}

.profile .profile-box .profile-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.profile .profile-box .profile-list .profile-item dt {
  margin-bottom: 30px;
  font-size: 25px;
}

.profile .profile-box .profile-list .profile-item dd {
  padding-bottom: 15px;
  border-bottom: 1px solid #4A4A4A;
  font-size: 23px;
  text-align: center;
}

.profile .profile-box .profile-list .hobby {
  grid-column: 1/3;
}

.profile .profile-box .profile-list .hobby dd {
  text-align: center;
}

.profile .license-box {
  margin-bottom: 80px;
}

.profile .license-box h2 {
  margin-bottom: 30px;
  font-size: 25px;
}

.profile .license-box ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile .license-box li {
  font-size: 23px;
  line-height: 1.8;
}

.profile .gallery {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.profile .gallery img {
  width: calc((100% - 80px) / 3);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.story {
  max-width: 1100px;
  margin-inline: auto;
  padding-block: 20px;
}

.story .story-block {
  max-width: 1100px;
  margin: 0 auto 140px;
}

.story .story-block:last-child {
  margin-bottom: 100px;
}

.story .story-block .story-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
  font-size: 30px;
  text-align: center;
}

.story .story-block .story-title span {
  flex: 1;
  max-width: 800px;
  height: 1px;
  background-color: #4A4A4A;
}

.story .story-block .story-text {
  max-width: 650px;
  margin: 0 auto;
}

.story .story-block .story-text p {
  font-size: 20px;
  line-height: 2.5;
  color: #666;
}

.story .story-block .story-text p:not(:last-child) {
  margin-bottom: 20px;
}

body {
  background-color: #F6F4EE;
  font-family: "BIZ UDMincho";
  color: #4A4A4A;
  margin: 0;
}

.price-page .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  background: #d3b144;
  color: #fff;
  font-size: 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.price-page .btn:hover {
  opacity: 0.8;
}

.price-page .price-mv {
  position: relative;
}

.price-page .price-mv img {
  display: block;
  width: 100%;
  height: 880px;
  -o-object-fit: cover;
  object-fit: cover;
}

.price-page .price-mv .price-content {
  position: absolute;
  left: 80px;
  bottom: 80px;
  color: #355E3B;
  z-index: 1;
}

.price-page .price-mv .price-content h1 {
  margin-bottom: 20px;
  font-size: 42px;
}

.price-page .price-mv .price-content p {
  line-height: 1.8;
}

.price-page .price-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 150px auto;
  padding: 0 20px;
}

.price-page .price-plan .price-card {
  padding: 50px 30px;
  background: #E7EFE3;
  text-align: center;
  border-radius: 30px;
}

.price-page .price-plan .price-card h2 {
  margin-bottom: 70px;
  color: #B8933F;
  font-size: 25px;
}

.price-page .price-plan .price-card .card-price {
  margin-bottom: 70px;
  font-size: 40px;
}

.price-page .price-plan .price-card .card-price span {
  font-size: 18px;
}

.price-page .price-plan .price-card .card-text {
  margin-bottom: 70px;
  line-height: 1.8;
}

.price-page .price-plan .card-ticket {
  padding: 50px 30px;
  text-align: center;
  color: #B8933F;
  background: #E7EFE3;
  border-radius: 30px;
}

.price-page .price-plan .card-ticket .ticket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  color: #4A4A4A;
  background: #d3b144;
  border-radius: 10px;
}

.price-page .price-plan .card-ticket .ticket-item .ticket-left {
  text-align: left;
}

.price-page .price-plan .card-ticket .ticket-item .ticket-left .single {
  padding: 10px;
}

.price-page .price-plan .card-ticket .ticket-item .ticket-left span {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.price-page .price-plan .card-ticket .ticket-item .ticket-left p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.price-page .price-plan .card-ticket .ticket-item strong {
  font-size: 28px;
  font-weight: 400;
}

.price-page .price-plan .card-ticket .ticket-text {
  margin-top: 10px;
  text-align: left;
  font-size: 13px;
  color: #4A4A4A;
}

.price-page .price-note {
  max-width: 1200px;
  margin: 0 auto 150px;
  padding: 0 20px;
}

.price-page .price-note h2 {
  margin-bottom: 30px;
  font-size: 25px;
}

.price-page .price-note ul {
  padding-left: 30px;
  border-left: 1px solid #999;
  font-size: 20px;
}

.price-page .price-note li {
  margin-bottom: 25px;
  line-height: 1.8;
  list-style: none;
}

.price-page .business-yoga {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 150px;
}

.price-page .business-yoga .business-left {
  flex: 1;
}

.price-page .business-yoga .business-left h2 {
  margin-bottom: 30px;
  font-size: 35px;
}

.price-page .business-yoga .business-left p {
  font-size: 17px;
  line-height: 1.8;
}

.price-page .business-yoga .business-card {
  flex: 1;
  padding: 50px;
  background: #E7EFE3;
  border-radius: 30px;
}

.price-page .business-yoga .business-card h3 {
  margin-bottom: 40px;
  text-align: center;
  color: #c69d2c;
  font-size: 32px;
}

.price-page .business-yoga .business-card dl div {
  display: flex;
  justify-content: space-between;
  max-width: 410px;
  width: 100%;
  margin-inline: auto;
  padding: 25px 0;
  border-bottom: 1px solid #aaa;
}

.price-page .business-yoga .business-card dl div dt,
.price-page .business-yoga .business-card dl div dd {
  font-size: 20px;
}

.price-page .business-yoga .business-card .btn {
  display: flex;
  max-width: 410px;
  width: 100%;
  margin: 50px auto 0;
  margin-top: 50px;
}

@media (max-width: 900px) {
  body .profile {
    padding-bottom: 50px;
  }

  body .profile .profile-title {
    gap: 35px;
    margin-bottom: 50px;
    font-size: 20px;
  }

  body .profile .profile-box {
    padding: 40px;
  }

  body .profile .profile-box .profile-list {
    display: block;
  }

  body .profile .profile-box .profile-list .profile-item {
    margin-bottom: 30px;
  }

  body .profile .profile-box .profile-list .profile-item dt {
    font-size: 18px;
  }

  body .profile .profile-box .profile-list .profile-item dd {
    font-size: 17px;
  }

  body .profile .license-box {
    margin-bottom: 70px;
    padding: 40px;
  }

  body .profile .license-box h2 {
    font-size: 17px;
  }

  body .profile .license-box li {
    font-size: 14px;
  }

  body .profile .gallery {
    flex-direction: column;
  }

  body .profile .gallery img {
    width: 70%;
    margin-inline: auto;
  }

  body .story {
    padding-inline: 20px;
  }

  body .story .story-block {
    margin-bottom: 60px;
  }

  body .story .story-block:last-child {
    margin-bottom: 60px;
  }

  body .story .story-block .story-title {
    gap: 35px;
    margin-bottom: 60px;
    font-size: 20px;
  }

  body .story .story-block .story-text p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  body .price-page .price-mv img {
    height: 500px;
  }

  body .price-page .price-mv .price-content {
    left: 10px;
    bottom: 10px;
    padding-inline: 20px;
  }

  body .price-page .price-mv .price-content h1 {
    font-size: 25px;
  }

  body .price-page .price-mv .price-content p {
    font-size: 15px;
  }

  body .price-page .price-plan {
    display: block;
    margin-top: 80px;
    margin-bottom: 50px;
  }

  body .price-page .price-plan .price-card {
    margin-bottom: 30px;
    padding: 30px;
  }

  body .price-page .price-plan .price-card h2 {
    margin-bottom: 35px;
    font-size: 20px;
  }

  body .price-page .price-plan .price-card .card-price {
    margin-bottom: 35px;
    font-size: 30px;
  }

  body .price-page .price-plan .price-card .card-text {
    margin-bottom: 35px;
    font-size: 15px;
  }

  body .price-page .price-plan .price-card .btn {
    font-size: 17px;
  }

  body .price-page .price-plan .card-ticket {
    padding: 20px;
  }

  body .price-page .price-plan .card-ticket h2 {
    font-size: 20px;
  }

  body .price-page .price-plan .card-ticket .ticket-item {
    padding: 11px;
  }

  body .price-page .price-plan .card-ticket .ticket-item .ticket-left span {
    font-size: 17px;
  }

  body .price-page .price-plan .card-ticket .ticket-item .ticket-left p {
    font-size: 11px;
  }

  body .price-page .price-plan .card-ticket .ticket-item strong {
    font-size: 20px;
  }

  body .price-page .price-note {
    margin-bottom: 80px;
  }

  body .price-page .price-note h2 {
    font-size: 15px;
  }

  body .price-page .price-note li {
    font-size: 10px;
  }

  body .price-page .business-yoga {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 80px;
  }

  body .price-page .business-yoga .business-left h2 {
    font-size: 20px;
  }

  body .price-page .business-yoga .business-left p {
    font-size: 13px;
  }

  body .price-page .business-yoga .business-card h3 {
    font-size: 18px;
  }

  body .price-page .business-yoga .business-card dl dt,
  body .price-page .business-yoga .business-card dl dd {
    font-size: 15px;
  }

  body .price-page .business-yoga .business-card .btn {
    font-size: 17px;
  }
}

/*# sourceMappingURL=style.css.map */