@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1;
  background-color: #fff;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.header-inner {
  max-width: 1200px;
  height: 80%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 80px;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin: 0 20px;
}

.footer {
  color: #fff;
  background-color: #af8bc6;
  padding: 40px 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 200px;
}

.Copyright {
  font-size: 14px;
  margin: 30px 0 60px;
}

/* ここまで共通部分ヘッダー＆フッター */

/* ココからCSSアニメーションーリンク */

.site-menu ul li a {
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  display: inline-block;
  position: relative;
  text-decoration: none;
  /* border-bottom: 1px solid transparent;  */
  /* 透明な下線を設置（ガタつき防止） */
  /* transition: border-color 0.2s; */
  /* アニメーション */
}

.site-menu ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #333;
  transition: width 0.3s ease;
}

.site-menu ul li a:hover::after {
  width: 100%;
}

.site-menu ul li a span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.site-menu ul li a:hover span {
  transform: scale(1.08);
}

.footer .site-menu ul li a {
  display: inline-block;
}

.footer .site-menu ul li a::after {
  background-color: #fff;
}

.footer-insta-logo-line {
  display: flex;
  align-items: center;
  margin-top: 60px;
  /* border: 0.5px solid; */
}

.footer-insta-logo-line .insta-btn,
.footer-insta-logo-line .line-btn {
  display: block;
  width: 80px;
  margin: 40px;
}


/* ココからメインビジュアル */

.hero {
  position: relative;
  /* height: calc(85vh - 80px); */
  height: 70vh;
  overflow: hidden;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  color: white;
  z-index: 2;
  max-width: 420px;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  text-shadow: 3px 3px 10px rgb(46, 31, 31);
}

.hero-text .sp {
  display: none;
}

.hero .book-lesson {
  margin-top: 20px;
}

.book-lesson a {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 24px;
  display: block;
  width: 236px;
  padding: 15px;
  margin: 30px 20px;
  text-align: center;
  border-radius: 20px;
}

.book-lesson span {
  border: 0.5px dotted;
  border-radius: 20px;
  padding: 15px 30px;
}

.book-lesson a:hover {
  background-color: #af8bc6e0;
}

/* ココまでメインビジュアル */

/* ココからコンセプト */

.lead {
  max-width: 1200px;
  margin: 60px auto;
  line-height: 2;
  display: flex;
  justify-content: space-around;
}

.lead h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #af8bc6;
  margin-bottom: 10px;
  border-bottom: 0.5px solid #af8bc6;
}

.lead p {
  margin-top: 30px;
}

/* ココまでコンセプト */

/* ココからレッスン */

.lesson {
  max-width: 1200px;
  margin: 20px auto;
  padding: 30px 0;
  background-color: #ccc;
}

.lesson h3,
.instructors h3,
.contact h3,
.access h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  letter-spacing: 0.2em;
  transform: scaleX(1.2);
  color: #646262;
  text-align: center;
}

.lesson h3::after,
.instructors h3::after,
.contact h3::after,
.access h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #646262;
  margin: 20px auto 0;
}

.lesson-schedule {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 80px;
  display: flex;
  justify-content: space-evenly;
}

.lesson-schedule .reservation,
.contact .reservation {
  width: 200px;
  background-color: #af8bc6;
  color: #fff;
  font-size: 26px;
  border-radius: 18px;
  letter-spacing: 0.2em;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 20px 30px;
}

.lesson-schedule .line,
.contact .line {
  width: 200px;
  margin-top: 45px;
}

.lesson-schedule .line p,
.contact .line p {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-top: 15px;
}

.lesson-schedule .line span,
.contact .line span {
  font-size: 18px;
  font-weight: bold;
}

.lesson-schedule .newinfo-insta {
  width: 100px;
  margin: 30px 0 0 0;
}

.contact .newinfo-insta {
  width: 100px;
  margin-top: 30px;
}


.lesson-schedule .newinfo-insta p,
.contact .newinfo-insta p {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-top: 15px;
}

.lesson-schedule .newinfo-insta span,
.contact .newinfo-insta span {
  font-size: 18px;
  font-weight: bold;
}

.lesson-schedule .cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact .cta {
  /* margin-left: 60px; */
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}


.lesson-schedule a,
.footer-insta-logo-line a,
.contact a {
  display: block;
  transition-duration: 0.2s;
}

.site-menu ul li a {
  display: inline-block;
  position: relative;
}

.site-menu ul li a:hover,
.lesson-schedule .cta a:hover,
.contact .cta a:hover,
.lesson-schedule .line img:hover,
.footer-insta-logo-line a:hover {
  transform: scale(1.08);
}

.header-site-menu {
  display: none;
}

.site-menu ul li a::after {
  background-color: #333;
}

/* ココまでレッスン */

/* ココからスタジオについて */

.about-studio {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-studio h3 {
  font-size: 50px;
  color: #e6d6ef;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
  transform: scaleX(1.5);
}

.about-studio h4 {
  margin-top: 10px;
  font-size: 28px;
  color: #646262;
  text-shadow: 3px 3px 10px #fff;
  transform: scaleX(1.2);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 30%;
  margin-bottom: 10px;
}

.about-studio p {
  /* font-family: "Zen Maru Gothic", sans-serif; */
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin: 20px auto;
}

.about-studio p span {
  font-size: 24px;
  transform: scaleX(1.2);
  font-family: sans-serif;
  font-weight: bold;
  color: #af8bc6;
}

.about-studio h4::after {
  content: "";
  display: block;
  width: 460px;
  height: 1px;
  background-color: #af8bc6;
  margin: 7px auto;
}

/* ココまでスタジオについて */

/* ココからインストラクター */

.instructors {
  max-width: 1200px;
  background-color: rgb(248, 231, 255);
  margin: 40px auto;
  padding: 30px 0;
}

.info-instructors ul {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.info-instructors ul li {
  width: 250px;
}

.info-instructors ul a {
  display: block;
}

.info-instructors ul dd {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #646262;
  margin-top: 20px;
}

.info-instructors ul li img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.info-instructors ul li p {
  background-color: #fff;
  width: 170px;
  color: #333;
  border-radius: 20px;
  padding: 10px 15px;
  text-align: center;
  margin: 10px auto;
}

/* ココまでインストラクター */

/* ココから料金 */

.price {
  max-width: 1200px;
  margin: 70px auto;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #646262;
  font-size: 20px;
  font-feature-settings: "palt";
}

.price-title .plan-price {
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 0.1em;
}

.price-title .plan-price::after {
  content: "";
  display: block;
  width: 460px;
  height: 1px;
  background-color: #af8bc6;
  margin: 15px auto;
}

.price-title .price-trial {
  margin: 30px auto 20px;
  font-size: 32px;
  letter-spacing: 0.1em;
}

.price-title .head1 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.price-title .fee {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.price-title .limit {
  margin: 15px auto 40px;
}

.price-title .limit::after {
  content: "";
  display: block;
  width: 460px;
  height: 1px;
  background-color: #af8bc6;
  margin: 40px auto;
}

.price .recomend {
  line-height: 1.4;
}

/* .price .free-mat span {
  position: absolute;
  top: 20%;
  left: 50%;
  display: block;
  width: 100px;
  background-color: #bd85df;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.05em;
  border-radius: 10px;
  padding: 8px 10px;
} */

/* .price .mat-free {
  position: relative;
  border: 0.5px solid #af8bc6;
  width: 180px;
  font-size: 22px;
  font-weight: bold;
  padding: 8px;
} */

.Monthly-ticket {
  max-width: 1200px;
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.Monthly-fee,
.ticket {
  border: 0.5px solid #af8bc6;
  padding: 20px;
}

.fee-head {
  font-size: 28px;
  text-align: left;
}

.fee-head::after {
  content: "";
  display: block;
  width: 460px;
  height: 1px;
  background-color: #af8bc6;
  margin: 10px 0;
}

.omake1,
.omake2 {
  width: 700px;
  margin: 30px auto 50px;
}

.omake1 img,
.omake2 img {
  width: 100%;
}

/* ココまで料金 */

/* ココからコンタクト */

.contact {
  width: 900px;
  max-width: 90%;
  margin: 60px auto;
  /* max-width: 1200px; */
  /* margin: 50px auto; */
}



/* ココまでコンタクト */

/* ココからアクセス */

.access {
  max-width: 1200px;
  margin: 50px auto;
  font-family: "sans-serif";
  font-size: 17px;
}

.access section {
  width: 900px;
  max-width: 90%;
  padding: 0 30px;
  margin: 30px auto 0;
}

.access section h2 {
  /* font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal; */
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #af8bc6;
  width: 930px;
  max-width: 90%;
  margin: 10px 0 10px;
}

.access section address {
  width: 900px;
  max-width: 90%;
  margin: 10px 0 20px;
}

.map {
  width: 930px;
  max-width: 90%;
  margin: 40px auto 0;
}

.map iframe {
  display: block;
  width: 100%;
  height: 350px;
}

.access .station {
  display: flex;
  margin: 30px 0 10px 0;
}

.access .station .station-info1 span {
  padding: 8px;
  border: 0.5px solid #ccc;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  color: #646262;
  display: block;
  width: 250px;
}

.access .station .station-info2 {
  line-height: 1.8;
  margin-left: 30px;
}


/* ココまでアクセス */

/* 文字関係 */

/* font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal; */

/* .zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

/* .noto-serif-<uniquifier> {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */

/* ここまで */

/* レスポンシブここから */

@media (max-width:800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu ul li {
    margin-top: 20px;
  }

  .site-menu ul li a {
    display: inline-block;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.1);
  }

  .header-inner {
    padding: 0 20px;
    height: 100%;
    position: relative;
  }

  .header-logo {
    /* max-width: 100px; */
    width: 44px;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #fff;
    background-color: #af8bc6;
    padding: 30px 0 50px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(./img/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .header .site-menu ul li a {
    display: inline-block;
  }

  .header .site-menu ul li a::after {
    background-color: #fff;
  }

  /* ここまで共通ヘッダーとフッター */

  /* ココからメイン */
  .hero-slider img {
    object-position: 80% center;
  }

  .hero-text {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    text-align: center;
    line-height: 2.4;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text .pc {
    display: none;
  }

  .hero-text .sp {
    display: inline;
  }

  .hero-text .book-lesson {
    transform: scale(0.9);
  }

  .main {
    padding-top: 50px;
  }

  .lead {
    display: block;
    text-align: center;
  }

  .lesson-schedule {
    display: block;
  }

  .lesson h3,
  .instructors h3 {
    font-size: 28px;
  }

  .footer-logo {
    margin-top: 60px;
  }

  .Copyright {
    margin-top: 50px;
  }

  .about-studio h4 {
    /* position: static; */
    /* ←これが超重要🔥 */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    /* margin-top: 10px; */
    transform: none;
    font-size: 26px;
    /* ←これもリセット */
  }

  .about-studio h3 {
    font-size: 54px;
    transform: none;
    letter-spacing: 0.1em;
    position: relative;
  }

  .about-studio h4::after {
    width: 60%;
  }

  .about-studio p {
    padding: 0 20px;
    text-align: center;
    font-family: sans-serif;
    font-size: 16px;
  }

  .about-studio p span {
    font-size: 18px;
  }

  .info-instructors ul li {
  width: 150px;
}

  .info-instructors li dl p {
    width: 150px;
    font-size: 14px;
  }

.price-title .plan-price,
.price-title .price-trial {
  font-size: 26px;
}

.info-instructors li dl dd {
    font-size: 18px;
  }

.recomend {
  font-size: 18px;
}

.Monthly-ticket {
  display: block;
  width: 90%;
  margin: 20px auto;
}

.Monthly-ticket .right {
  margin-top: 20px;
}
  .omake1,
  .omake2 {
    width: 90%;
  }

  .access section .station {
    display: block;
  }

  .access section .station-info2 {
    margin-top: 10px;
  }

  .access section span {
    margin: 0 auto;
  }

  .access section {
    text-align: center;
  }
}

@media (min-width:801px) {
  .header-site-menu {
    display: block;
  }
}