/* ----------------- */
/* ページ全体の設定 */
/* ----------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400; /* Noto Sans JPの文字の太さ標準の値 */
  background: #ffffff;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}
/* PC版の表示 */
.pc {
  display: block;
}
/* SP版の非表示 */
.sp {
  display: none;
}
/* imgの設定 */
img {
  max-width: 100%;
  height: auto;
}
/* flexの設定 */
.flex {
  display: flex;
}
.flex_center {
  display: flex;
  justify-content: center;
}
.flex_between {
  display: flex;
  justify-content: space-between;
}
.flex_column {
  display: flex;
  flex-direction: column;
}
/* ----------------- */
/* 基本設定 */
/* ----------------- */
.def_sec {
  padding-top: 150px;
}
.def_page {
  margin: 100px 0;
}
.inner_1100 {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.inner_700 {
  max-width: 700px;
  width: 90%;
  margin: auto;
}
.line_ico,
.insta_ico {
  width: 30px;
  height: 30px;
  margin: 0 2px;
}
/* ----------------- */
/* ヘッダーの設定 */
/* ----------------- */
header {
  font-size: 20px;
  font-weight: 700;
}
/* ナビゲーションメニュー */
.g_nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  z-index: 30;
}
.g_nav ul {
  justify-content: flex-end;
  align-items: center;
  height: 80px;
  gap: 40px;
  margin: 0 20px;
}
.g_nav span {
  border-bottom: 2px solid #333333;
}
.g_nav li:hover {
  transition: 0.5s;
  opacity: 0.5;
}
/* ----------------- */
/* キービジュアルの設定 */
/* ----------------- */
.title {
  width: 90%;
  height: 650px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 50px;
}
/* Sliderの設定 */
.swiper img {
  width: 100%;
  object-fit: cover;
}
.t_word {
  position: absolute;
  top: 30%;
  left: 10%;
  z-index: 10;
}
/* トップページh1の設定 */
.top_h1 {
  font-size: 18px;
  text-align: center;
}
.top_h1 span {
  display: block;
  font-size: 14px;
}
/* ----------------- */
/* h2の設定 */
/* ----------------- */
.def_h2 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
.def_h2::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #a9a9a9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
/* ----------------- */
/* トップページボタンの設定 */
/* ----------------- */
.t_bt {
  background: #fff;
  border: 2px solid #333333;
  display: block;
  font-weight: bold;
  width: 250px;
  padding: 15px 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  margin: auto;
  margin-top: 60px;
}
.t_bt:hover {
  /* background: #d4d9dc; */
  background: #333333;
  color: #fff;
  border-radius: 60px;
}
/* ----------------- */
/* aboutの設定 */
/* ----------------- */
.about {
  gap: 50px;
  align-items: center;
}
.about figure {
  width: 40%;
}
.about p {
  width: 40%;
  padding: 20px;
}
/* ----------------- */
/* lessonの設定 */
/* ----------------- */
.lesson_link {
  gap: 2%;
  text-align: center;
}
.lesson_link li {
  width: 24%;
  position: relative;
}
.lesson_link p {
  position: absolute;
  text-align: center;
  width: 100%;
  background: rgba(212, 217, 220, 0.8);
  z-index: 20;
}
.lesson_link li figure {
  aspect-ratio: 1/0.68;
  overflow: hidden; /* 溢れた分、非表示 */
  z-index: 10;
}
/*****************************************
メモ：
position:absoluteしてしまうと要素の高さが
カウントされなくなってしまうので、基準になる
要素を残しておく。この場合は↑のfigure部分 
*****************************************/
.lesson_link li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 真ん中を切り取る */
}
.lesson_link a {
  display: block;
  transition-duration: 0.8s;
}
/* 各リンクがホバーされた際に縮小 */
.lesson_link a:hover {
  transform: scale(0.9);
}
/* ----------------- */
/* snsの設定 */
/* ----------------- */
.sns {
  gap: 50px;
}
.instagram {
  width: 50%;
}
.note {
  width: 50%;
}
.insta_title,
.note_title {
  height: 50px;
  width: 200px;
  margin: auto;
  margin-bottom: 40px;
}
.insta_snap {
  width: 100%;
  margin: auto;
  position: relative;
}
.insta_snap_area {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.note_list iframe {
  height: auto;
}
.note_list {
  overflow: auto;
  min-height: 825px;
}

/* ----------------- */
/* Q&Aの設定 */
/* ----------------- */
.qa_sec {
  background-color: #f6f6f6;
  margin-top: 100px;
  padding: 100px 0;
}
.qa_accordion {
  width: 100%;
  font-weight: 700; /* Noto Sans JPの文字の太さboldの値 */
  margin-bottom: 20px;
}
.qa_accordion span {
  margin: 0 20px;
}
.qa_accordion p {
  width: 100%;
}
.qa_title {
  cursor: pointer;
  align-items: center;
  padding: 15px 0;
}
.qa_answer {
  padding: 15px 0;
  background-color: #ffffff;
}
.qa_title img {
  width: 20px;
  height: 20px;
  margin: auto;
  margin: 0 20px;
}
.qa_answer p {
  font-weight: 500; /* Noto Sans JPの文字の太さmediumの値 */
}
/* Qが押下される前は非表示 */
.qa_answer,
.minus {
  display: none;
}
/* Qが押下された後の処理 */
.qa_title.open .plus {
  display: none;
}
.qa_title.open .minus {
  display: block;
}
/* ----------------- */
/* 予約の設定 */
/* ----------------- */
.reserve_sec {
  text-align: center;
}
.reserve_text span {
  font-weight: 700;
}
.reserve_bt_area {
  gap: 50px;
  align-items: end;
  margin-top: 60px;
}
/* 予約用ボタン */
.contact_bt {
  background: #333333;
  color: #fff;
  border: 2px solid #333333;
  display: block;
  font-weight: bold;
  width: 250px;
  padding: 15px 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  margin: auto;
  margin-top: 10px;
}
.contact_bt:hover {
  background: #fff;
  color: #333333;
  border-radius: 60px;
}
/* ----------------- */
/* 問い合わせの設定 */
/* ----------------- */
.contact_sec {
  text-align: center;
}
.contact_text span {
  font-weight: 700;
}

.contact_bt_area {
  margin-top: 60px;
}
/* ----------------- */
/* アクセスの設定 */
/* ----------------- */
.access {
  gap: 50px;
  align-items: center;
}
.access_exp {
  width: 50%;
}
.access_exp p {
  padding: 10px 0;
}
.access figure {
  width: 40%;
  text-align: center;
}
.access img {
  width: 80%;
  border-radius: 50px;
  object-fit: cover;
}

/* ----------------- */
/* フッターの設定 */
/* ----------------- */
footer {
  width: 100%;
  background: #d4d9dc;
  font-size: 14px;
  padding: 20px 0;
  margin-top: 120px;
  text-align: center;
}
.f_logo {
  width: 200px;
  height: auto;
  margin: auto;
}
.f_sns_ico {
  width: 100px;
  margin: auto;
  padding: 10px 0;
}
/* ----------------- */
/* スケジュールページの設定 */
/* ----------------- */
.calendar img {
  margin: 20px 0;
}
.schedule_text {
  margin: auto;
  color: red;
}
.schedule_text span {
  font-weight: 700;
}
.schedule_area_bt {
  text-align: center;
  margin: auto;
  padding: 50px 0;
  gap: 50px;
}
/* ----------------- */
/* プロフィールページの設定 */
/* ----------------- */
.intro_top {
  position: relative;
  z-index: 10;
}
.intro_top h1 {
  position: absolute;
  color: #f6f6f6;
  font-size: 28px;
  font-weight: 700;
  top: 50%;
  left: 0;
  z-index: 20;
}
.introduction span {
  font-weight: 700;
  color: #000;
}
.t_about {
  margin: 40px auto;
}
.t_about th {
  text-align: center;
  padding-right: 30px;
}
.introduction h3 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 500;
}
.first_lesson p {
  margin-left: 2rem;
}
.intro_contact {
  text-align: center;
  margin: 60px 0;
}
/* ----------------- */
/* レッスンページの設定 */
/* ----------------- */
.lesson_page h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0;
  letter-spacing: 0.1em;
  text-shadow: 3px 3px 0 #dad5ee;
}
.instruction {
  gap: 40px;
  align-items: center;
}
.lesson_page h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
  background: linear-gradient(transparent 50%, #e6e6fa 50%);
}
.lesson_page h4 {
  font-size: 18px;
  font-weight: 700;
}
.instruction_text {
  width: 60%;
}
.instruction_img {
  width: 40%;
}
.instruction_img img {
  padding: 20px;
}
.lesson_area_bt {
  text-align: center;
  margin-top: 60px;
}
/* 料金表へのリンク */
.price_link {
  margin-left: 80px;
  color: #191970;
}
.price_link:hover {
  color: #4682b4;
}
/* 料金表 */
.price {
  padding: 200px 0;
}
.price_box {
  color: #543f32;
  background-color: #fff5ee;
  border: solid 3px #ffc0cb;
  border-radius: 15px;
  padding: 20px;
}
.price_h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
}
.price_h2 span {
  display: block;
  font-size: 16px;
  line-height: 0;
}
.price_area {
  padding: 20px 0;
  gap: 20px;
  align-items: flex-start;
}
.price_table th {
  font-size: 18px;
}
.price_table th span {
  display: inline-block;
  transform: rotate(-30deg);
}
.annotation {
  font-size: 14px;
}
.annotation td:first-child {
  text-align: right;
}
/* ----------------- */
/* スマホ版表示 */
/* ----------------- */
@media screen and (max-width: 750px) {
  /* PC版の非表示 */
  .pc {
    display: none;
  }
  /* SP版の表示 */
  .sp {
    display: block;
  }
  /* flex要素のwrap */
  .wrap {
    flex-wrap: wrap;
  }
  body {
    overflow-x: hidden; /* ハンバーガーメニューを隠すための記述 */
    font-size: 14px;
  }
  header {
    font-size: 18px;
  }
  /* ハンバーガーメニューボタン */
  .hb_btn {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    position: relative;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
  }
  .hb_btn span {
    position: absolute;
    align-items: center;
    height: 1px;
    width: 45px;
    background-color: #707070;
    transition: 0.5s;
  }
  .hb_btn span:first-of-type {
    /* ハンバーガーメニューの1番目の線 */
    top: 10px;
  }
  .hb_btn span:nth-of-type(2) {
    /* ハンバーガーメニューの2番目の線 */
    top: 25px;
  }
  .hb_btn span:nth-of-type(3) {
    /* ハンバーガーメニューの3番目の線 */
    top: 40px;
  }
  /* ナビゲーションメニュー */
  .g_nav {
    width: 200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    top: 50px;
    right: 0;
    padding: 50px 0;
    z-index: 30;
    transform: translateX(100%); /* メニューを右に隠す */
    transition: 0.5s; /* 0.5秒かけてアニメーション */
  }
  .g_nav ul {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    margin: auto;
    gap: 20px;
  }
  /* ハンバーガーメニューボタンが押された時の動き */
  .hb_btn.active span:first-of-type {
    /* ハンバーガーメニューの1番目の線 */
    top: 50%;
    transform: rotate(45deg);
  }
  .hb_btn.active span:nth-of-type(2) {
    /* ハンバーガーメニューの2番目の線 */
    display: none;
  }
  .hb_btn.active span:nth-of-type(3) {
    /* ハンバーガーメニューの3番目の線 */
    top: 50%;
    transform: rotate(-45deg);
  }
  .g_nav.active {
    transform: translateX(0);
  }
  /* トップページタイトル */
  .title {
    height: auto;
  }
  .t_word {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    width: 50%;
    left: 2%;
  }
  .top_h1 {
    font-size: 14px;
  }
  .top_h1 span {
    font-size: 12px;
  }
  /* ----------------- */
  /* 基本設定 */
  /* ----------------- */
  .def_page {
    margin: 80px 0;
  }
  .def_sec {
    padding-top: 100px;
  }
  /* ----------------- */
  /* h2の設定 */
  /* ----------------- */
  .def_h2 {
    margin-bottom: 40px;
  }
  /* ----------------- */
  /* aboutの設定 */
  /* ----------------- */
  .about {
    gap: 40px;
  }
  .about figure {
    width: 80%;
  }
  .about p {
    width: 100%;
  }
  .t_bt {
    margin-top: 40px;
  }
  /* ----------------- */
  /* lessonの設定 */
  /* ----------------- */
  .lesson_link li {
    width: 80%;
  }
  .lesson_link {
    gap: 20px;
  }
  /* ----------------- */
  /* snsの設定 */
  /* ----------------- */
  .instagram,
  .note {
    width: 90%;
  }
  /* ----------------- */
  /* アクセスの設定 */
  /* ----------------- */
  .access {
    gap: 40px;
  }
  .access_exp {
    width: 90%;
  }
  .access figure {
    width: 90%;
  }
  /* ----------------- */
  /* プロフィールページの設定 */
  /* ----------------- */
  .intro_top h1 {
    font-size: 20px;
    top: 30%;
  }
  /* ----------------- */
  /* レッスンページの設定 */
  /* ----------------- */
  .instruction {
    flex-direction: column-reverse;
  }
  .lesson_page h3 {
    font-size: 18px;
  }
  .lesson_page h4 {
    font-size: 16px;
  }
  .instruction_img,
  .instruction_text {
    width: 100%;
  }
  .lesson_area_bt {
    margin-top: 40px;
  }
  /* 料金表 */
  .price {
    padding: 100px 0;
  }
  .price_table th {
    font-size: 16px;
  }
  .price_area {
    /* テーブルの表示を真ん中に */
    justify-content: center;
  }
}

@media screen and (max-width: 750px) {
  .youtube iframe {
    width: 100%;
  }
}
