@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 400;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  transition: opacity 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
dl,
ol {
  list-style-type: none;
  list-style-position: outside;
  text-indent: 0;
}

ul,
ol {
  padding-left: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* table */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*******************************
 ヘッダー
 *******************************/
:root {
  --header-h: 70px;
}
@media (min-width: 768px) {
  :root {
    --header-h: 178px;
  }
}

.header {
  height: var(--header-h);
  background: #fff;
}

.header__inner {
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo {
  width: 80px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  .header__logo {
    width: auto;
    margin-inline: auto;
  }
}

.header__sns {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .header__sns {
    right: 150px;
  }
}
@media (min-width: 960px) {
  .header__sns {
    right: 200px;
  }
}

/*******************************
 main
 *******************************/
.main-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .main-top {
    gap: 90px;
  }
}

/*******************************
 フッター
 *******************************/
.footer__inner {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__inner {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.footer__contact-link {
  width: 295px;
  margin-inline: auto;
}

.footer__nav {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .footer__nav {
    margin-top: 90px;
  }
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer-nav__list {
    flex-direction: row;
    gap: 0 0;
    justify-content: space-between;
  }
}

.footer-nav__item {
  text-align: center;
}

.footer-nav__link {
  display: inline-block;
  padding: 3px 0;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #000;
  transition: border-bottom-color 0.3s;
}
.footer-nav__link:hover {
  opacity: 1;
  border-bottom-color: transparent;
}

.footer__copyright {
  display: block;
  background-color: #7a7a7a;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.12em;
}

/*******************************
 トップページ
 *******************************/
.main-visual {
  width: 100%;
}
@media (min-width: 768px) {
  .main-visual {
    height: calc(100vh - var(--header-h));
  }
}

.main-visual img {
  width: 100%;
}
@media (min-width: 768px) {
  .main-visual img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.classes__heading {
  text-align: center;
}

.classes__month-number {
  display: block;
  font-size: 5rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.classes__month-name {
  display: block;
  letter-spacing: 0.08em;
  font-size: 2rem;
}

.classes__content {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  text-align: center;
}
@media (min-width: 600px) {
  .classes__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .classes__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 84px;
  }
}

.classes__title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.classes__title-ja {
  display: block;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.classes__link {
  display: block;
}

.classes__figure {
  margin: 0;
}

.classes__figure img {
  width: 100%;
}

.classes__caption {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin-top: 0.8rem;
  color: #000;
}

.buttons {
  width: 295px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 38px;
}

.news__inner {
  text-align: center;
  width: 90%;
  max-width: 796px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-block: 30px;
}
@media (min-width: 600px) {
  .news__inner {
    padding-inline: 25px;
  }
}

.news.news--top .news__inner {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.news.news--list .news__inner {
  padding-block: 50px;
}
@media (min-width: 768px) {
  .news.news--list .news__inner {
    padding-block: 70px;
  }
}

.news__title {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-align: center;
}

.news__list {
  max-width: 606px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-list__link {
  display: block;
  color: #000;
}
@media (min-width: 768px) {
  .news-list__link {
    display: flex;
    gap: 35px;
    padding-block: 1rem;
  }
}
.news-list__link:hover {
  opacity: 1;
}
.news-list__link:hover .news-list__title {
  text-decoration: underline;
}

.news-list__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  width: 220px;
}
@media (min-width: 768px) {
  .news-list__meta {
    gap: 0;
  }
}

.news-list__date {
  text-align: left;
  width: 90px;
}

.news-list__tag {
  flex: 1;
}

.news-list__title {
  text-align: left;
  margin-top: 0.5rem;
  letter-spacing: 0.12em;
  font-size: 1.5rem;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-list__title {
    flex: 1;
  }
}

.news__more {
  margin-top: 2rem;
}

.news__more-link {
  display: inline-block;
  font-size: 1.8rem;
  color: #000;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #000;
  padding-bottom: 0.2rem;
  transition: border-bottom-color 0.3s;
}
.news__more-link:hover {
  opacity: 1;
  border-bottom-color: transparent;
}

/*******************************
 レッスン
 *******************************/
.lesson {
  max-width: 935px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 50px;
}
@media (min-width: 600px) {
  .lesson {
    padding-inline: 25px;
  }
}
@media (min-width: 768px) {
  .lesson {
    padding-top: 100px;
  }
}

.lesson__menu {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 30px;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .lesson__menu {
    font-size: 2.3rem;
    margin-top: 50px;
  }
}

.lesson__container {
  max-width: 790px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .lesson__container {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
    margin-top: 80px;
  }
}

.lesson__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .lesson__text {
    flex: 1;
    line-height: 2.4;
    letter-spacing: 0.15em;
  }
}

.lesson__text p:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .lesson__text p:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.lesson__side {
  max-width: 295px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .lesson__side {
    width: 295px;
  }
}

.lesson__pricebox {
  font-family: "Noto Sans JP", sans-serif;
}

.lesson__heading {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #000;
  font-weight: 300;
  padding-bottom: 10px;
}

.lesson__price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lesson__tax {
  font-size: 1.8rem;
  margin-left: 0.3rem;
}

.lesson__buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lesson__btn {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 1.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.lesson__memo {
  margin-top: 40px;
}

.lesson__memo-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #000;
  letter-spacing: 0.08em;
  padding-bottom: 5px;
}

.lesson__memo-txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

.lesson__memo-txt p:not(:first-child) {
  margin-top: 1.5rem;
}

.class-list {
  padding: 0 20px;
  max-width: 1035px;
}
@media (min-width: 600px) {
  .class-list {
    padding: 0 25px;
  }
}

.lesson-page__class-list {
  margin: 0 auto;
  margin-top: 50px;
}
@media (min-width: 600px) {
  .lesson-page__class-list {
    margin-top: 100px;
  }
}
@media (min-width: 768px) {
  .lesson-page__class-list {
    margin-top: 150px;
  }
}

.class-list__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.class-list__item {
  flex: 1 1 calc(50% - 10px);
}
@media (min-width: 768px) {
  .class-list__item {
    flex: 1 1 calc(25% - 10px);
  }
}

.class-list__button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 15px 5px;
  background: #7a7a7a;
  color: #fff;
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.5rem);
  text-align: center;
  letter-spacing: 0.08em;
}

/*******************************
 swiper
 *******************************/
.lesson__gallery {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .lesson__gallery {
    margin-top: 50px;
  }
}

.gallery__inner {
  position: relative;
  box-sizing: content-box;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery {
  overflow: hidden;
}

.gallery .swiper,
.gallery .thumb-wrapper {
  margin: auto;
}

.gallery .swiper {
  overflow: visible;
}

.gallery .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.gallery .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.gallery .slide {
  display: block;
  overflow: hidden;
}

.gallery .slide-media {
  display: block;
  aspect-ratio: 3/2;
}

.gallery .thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gallery .gallery__thumb {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .gallery .gallery__thumb {
    margin-top: 20px;
  }
}

.gallery .thumb-media {
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.gallery .thumb-media img {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.gallery .thumb-media-active {
  transform: scale(0.9);
  opacity: 0.3;
}

.gallery .thumb-media-active img {
  transform: scale(1.1);
}

/*******************************
 Newsページ　詳細
 *******************************/
.news-wrap {
  max-width: 750px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 40px;
}
@media (min-width: 600px) {
  .news-wrap {
    padding-inline: 25px;
    padding-top: 80px;
  }
}

.news-wrap__meta {
  display: flex;
}

.news-wrap__time {
  padding-top: 5px;
  font-size: 1.4rem;
}

.news-wrap__tag {
  display: block;
  width: auto;
  min-width: 90px;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 5px;
  margin-right: 15px;
}

.news-wrap__tag i:nth-last-child(1) {
  display: none;
}

.news-wrap__title {
  width: 100%;
  clear: both;
  font-size: 1.7rem;
  padding-top: 15px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .news-wrap__title {
    padding-top: 30px;
    font-size: 2.5rem;
    letter-spacing: 0.1;
  }
}

.news-box {
  width: 100%;
  letter-spacing: 0.8;
  font-size: 1.5rem;
  line-height: 1.9;
  overflow: hidden;
  padding-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .news-box {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.news-box h2 {
  width: 100%;
  clear: both;
  font-weight: bold;
  font-size: 1.6rem;
  padding-bottom: 10px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .news-box h2 {
    font-size: 2.2rem;
    padding-bottom: 10px;
  }
}

.news-box p {
  clear: both;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2em;
}

.news-box figure {
  margin-bottom: 2em;
}

.news-box figure figcaption {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 10px;
}

.news-box img {
  clear: both;
  width: auto;
  max-width: 100%;
}

.news-box p img:nth-last-child(1) {
  margin-bottom: 0;
}

.news-box p img {
  clear: both;
  width: auto;
}

.news-box table {
  border: 1px solid #bcbcbc;
}

.news-box table th {
  border: 1px solid #bcbcbc;
  padding: 5px;
}

.news-box table td {
  border: 1px solid #bcbcbc;
  padding: 5px 5px 0 5px;
}

.news-box sup {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.news-box sub {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

.news-box ul,
.news-box ol {
  width: 100%;
  padding-left: 2em;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.news-box ol {
  list-style-type: decimal;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*ダウンロードボタン*/
.wp-block-file {
  margin-bottom: 2em;
}

.wp-block-file a {
  display: inline-block;
  color: #0000ff;
  text-decoration: underline;
  padding: 5px 0;
  margin-right: 25px;
}

.wp-block-file .wp-block-file__button {
  display: inline-block !important;
  background: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 5px 20px !important;
  border-radius: 20px !important;
  margin: 0 !important;
  font-size: 1.3rem !important;
  opacity: 1 !important;
}

.wp-block-file .wp-block-file__button:hover {
  opacity: 0.7 !important;
}

/*******************************
カレンダー
 *******************************/
.calendar-wrap {
  padding-top: 40px;
}

@media (min-width: 600px) {
  .calendar-wrap {
    padding-top: 80px;
  }
}
/*******************************
お問い合わせ
 *******************************/
.contact-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding-inline: 20px;
  padding-top: 40px;
}
@media (min-width: 600px) {
  .contact-wrap {
    padding-inline: 25px;
    padding-top: 80px;
  }
}

.contact-text__important {
  color: #ca1d00;
}

.form {
  padding-top: 50px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .form {
    padding-top: 100px;
  }
}

@media (min-width: 768px) {
  .form__list {
    display: flex;
    align-items: center;
  }
}

.form__list:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .form__list:not(:first-child) {
    margin-top: 60px;
  }
}

.form__label {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .form__label {
    width: 230px;
    font-size: 1.6rem;
  }
}

.form__field {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .form__field {
    margin-top: 0;
    flex: 1;
  }
}

.form__required {
  color: #ca1d00;
}

/*******************************
 コンタクトフォーム７
 *******************************/
/*テキストエリア*/
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea {
  font-family: "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  background-color: #fff;
  color: #333;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0.5em 2%;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) inset;
}

/*送信ボタン*/
.form input[type=submit] {
  display: block;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 300px;
  margin: 40px auto 0;
  padding: 15px 0;
  font-size: 1.7rem;
  font-weight: bold;
  background: #eee;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  text-shadow: -1px 1px 0 rgb(255, 255, 255);
  letter-spacing: 0.1em;
  opacity: 1;
  transition-property: all;
  transition: 0.2s linear;
}
@media (min-width: 768px) {
  .form input[type=submit] {
    margin-top: 60px;
  }
}

/*送信ボタン　ホバー時*/
.form input[type=submit]:hover,
.wpcf7 input[type=button]:hover {
  opacity: 0.6;
}

/*送信メッセージ*/
div.wpcf7-response-output {
  width: 100%;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 15px 0 !important;
  line-height: 1.5;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  border-width: 5px !important;
}

/*必須入力してください*/
.wpcf7-not-valid-tip {
  padding-top: 5px;
}

.screen-reader-response {
  display: none !important;
}

/*recaptchaポリシーの記載*/
.contact-wrap__recaptcha-policy {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .contact-wrap__recaptcha-policy {
    margin-top: 100px;
  }
}

.recaptcha-policy {
  font-family: "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  clear: both;
  text-align: center;
  color: #fff !important;
  background: #5b90dc;
  border-radius: 2px;
  max-width: 290px;
  margin-inline: auto;
  padding: 10px 5px;
  box-shadow: 0px 0px 6px 1px #a3a3a3;
}

.recaptcha-policy__01 {
  line-height: 1.3;
  margin-bottom: 5px;
  font-size: 12px !important;
}

.recaptcha-policy__01 span {
  font-weight: bold;
}

.recaptcha-policy__01 a {
  font-size: 10px;
  color: #fff;
  text-decoration: underline;
}

.recaptcha-policy__02 {
  color: #c7deff;
  font-size: 8px !important;
}

.recaptcha-policy__02 a {
  color: #c7deff;
  text-decoration: underline;
}

/*recaptchaタグを非表示*/
.grecaptcha-badge {
  visibility: hidden;
}

/*******************************
 初めての方へ
 *******************************/
.intro__inner {
  border-bottom: 1px solid #7a7a7a;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .intro__inner {
    padding: 80px 0;
  }
}

.intro__link,
.reservation__link {
  width: 295px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .intro__link,
  .reservation__link {
    margin-top: 80px;
  }
}

.reservation__step {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .reservation__step {
    padding-top: 60px;
  }
}

.reservation__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .reservation__subtitle {
    font-size: 2rem;
  }
}

.reservation__inner {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .reservation__inner {
    padding-top: 80px;
  }
}

.reservation__btns {
  margin-top: 40px;
  width: 295px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 768px) {
  .reservation__btns {
    width: 100%;
    justify-content: center;
    margin-top: 80px;
    gap: 50px;
  }
}

.reservation__arrow {
  width: 18px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .reservation__arrow {
    margin-top: 80px;
  }
}

.reservation__note {
  color: #ca1d00;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 30px;
  display: flex;
  gap: 15px;
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .reservation__note {
    margin-top: 80px;
    font-size: 1.5rem;
    gap: 20px;
  }
}

.reservation__note-title {
  border: 1px solid #ca1d00;
  padding: 5px 20px;
}
@media (min-width: 768px) {
  .reservation__note-title {
    width: 100px;
    text-align: center;
  }
}

.policy,
.cancel,
.access {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .policy,
  .cancel,
  .access {
    padding-top: 80px;
  }
}

.policy__list {
  font-family: "Noto Sans JP", sans-serif;
}

.policy__list {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .policy__list {
    margin-top: 50px;
  }
}

.cancel__table {
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .cancel__table {
    margin-top: 50px;
  }
}

.list-style.list-style--center {
  display: inline-block;
}

.list-style__item {
  font-size: 1.4rem;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}
@media (min-width: 768px) {
  .list-style__item {
    font-size: 1.5rem;
  }
}

.list-style__item::before {
  content: "●";
}

.list-style__item:not(:first-child) {
  margin-top: 20px;
}

.access__address {
  text-align: center;
  padding: 30px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .access__address {
    padding: 50px 0;
    font-size: 1.7rem;
    letter-spacing: 0.22em;
  }
}

.access__map {
  aspect-ratio: 16/9;
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

/*******************************
コースの紹介
 *******************************/
.course--bg {
  background-color: #f9f8f8;
}

.course__inner {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .course__inner {
    padding-top: 80px;
  }
}

.course__class {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .course__class {
    padding: 70px 0;
  }
}

.class__title {
  background: #7a7a7a;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  flex-wrap: 500;
  letter-spacing: 0.22em;
  padding: 0.8rem;
}
@media (min-width: 768px) {
  .class__title {
    padding: 1.2rem;
    font-size: 1.8rem;
  }
}

.class__title-ja {
  font-size: 1.3rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .class__title-ja {
    font-size: 1.5rem;
  }
}

.class__intro {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .class__intro {
    margin-top: 60px;
  }
}

.class__catch {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .class__catch {
    text-align: center;
    font-size: 2rem;
  }
}

.class__link {
  text-decoration: underline;
}
.class__link:hover {
  text-decoration: none;
  opacity: 1;
}

.class__recommend {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .class__recommend {
    margin-top: 70px;
  }
}

.class__list-wrap {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 590px;
}
@media (min-width: 768px) {
  .class__list-wrap {
    margin-top: 40px;
    gap: 50px;
  }
}

.class__list-item {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .class__list-item {
    text-align: center;
    font-size: 1.6rem;
  }
}

.class__list-title {
  font-weight: 600;
}

.class__list-description {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .class__list-description {
    margin-top: 10px;
  }
}

.class__detail {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .class__detail {
    margin-top: 80px;
  }
}

.class__table {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .class__table {
    margin-top: 60px;
  }
}

.class__link {
  width: 295px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .class__link {
    margin-top: 60px;
  }
}

/*******************************
Dishについて
 *******************************/
.about {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .about {
    padding: 80px 0;
  }
}

.instructor {
  padding-bottom: 40px;
}

@media (min-width: 600px) {
  .instructor__content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
}

.instructor__text-block {
  padding: 30px 0;
}
@media (min-width: 600px) {
  .instructor__text-block {
    width: 65%;
  }
}

.instructor__text--post {
  font-weight: 500;
}

@media (min-width: 600px) {
  .instructor__figure {
    width: 30%;
  }
}

.instructor__caption {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-top: 15px;
}

.instructor__figure img {
  width: 100%;
}

.instructor__label {
  font-size: 1.2rem;
  display: block;
}

/*******************************
動画販売
 *******************************/
.video {
  padding: 40px 0;
  border-bottom: 1px solid #7a7a7a;
}
@media (min-width: 768px) {
  .video {
    padding: 80px 0;
  }
}

.video__link {
  width: 295px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .video__link {
    margin-top: 60px;
  }
}

/*******************************
 プライバシーポリシー
 *******************************/
.privacy {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .privacy {
    padding: 80px 0;
  }
}

.privacy__definition {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .privacy__definition {
    padding-top: 50px;
  }
}

/*******************************
404 Not Found
 *******************************/
.page404 .inner {
  padding: 50px 0;
}

.page404__title {
  text-align: center;
}

.page404 p {
  max-width: 600px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 25px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 600px) {
  .page404 p {
    padding-inline: 25px;
  }
}

.page404 a {
  text-decoration: underline;
}

.page404 a:hover {
  text-decoration: none;
}

/*******************************
ページ送り
 *******************************/
.post-nav {
  position: relative;
  clear: both;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.post-nav__item {
  display: inline-block;
  width: auto;
  font-size: 1.3rem;
}

.post-nav__item a {
  display: block;
  padding: 10px 15px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  transition: 0.2s linear;
  transition-property: all;
}

.post-nav__item.post-nav__item--home a {
  background: #000;
  color: #fff;
}

.post-nav__item a:hover {
  background: #e4e4e4;
  color: #000;
}

/*******************************
ページナビ
 *******************************/
.index-pager {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.index-pager .wp-pagenavi {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  overflow: hidden;
}

.index-pager .wp-pagenavi a,
.index-pager .wp-pagenavi span {
  display: inline-block;
  padding: 7px;
  margin-right: 7px;
  margin-bottom: 5px;
  border: 1px solid #000;
  width: auto;
}

.index-pager .wp-pagenavi .current {
  color: #fff;
  background: #000;
}

.index-pager .wp-pagenavi .pages,
.index-pager .wp-pagenavi .extend {
  color: #000;
  background: none;
}

.index-pager .wp-pagenavi a:link,
.index-pager .wp-pagenavi a:visited {
  color: #000;
  text-decoration: none;
}

.index-pager .wp-pagenavi a:hover,
.index-pager .wp-pagenavi a:active {
  color: #fff;
  text-decoration: none;
  background: #000;
}

/*******************************
 共通パーツ
 *******************************/
.page-title {
  background-color: #f9f8f8;
  text-align: center;
  padding: 20px 15px;
  letter-spacing: 0.28em;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 2.3rem;
    padding: 30px 15px;
  }
}

.page-title-border {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 2.3rem;
  letter-spacing: 0.28em;
  padding-block: 10px;
}
@media (min-width: 768px) {
  .page-title-border {
    padding-block: 20px;
  }
}

.brackets-title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.28em;
}
@media (min-width: 768px) {
  .brackets-title {
    font-size: 2rem;
  }
}

.title-border {
  border: 1px solid #000;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 8px;
  background: #fff;
}
@media (min-width: 768px) {
  .title-border {
    padding: 15px;
    font-size: 1.6rem;
  }
}

.inner {
  max-width: 1010px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 600px) {
  .inner {
    padding-inline: 25px;
  }
}

.inner2 {
  max-width: 950px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 600px) {
  .inner2 {
    padding-inline: 25px;
  }
}

.text {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .text {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

.text:not(:first-child) {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .text:not(:first-child) {
    margin-top: 3rem;
  }
}

.text.text--second {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .text.text--center {
    text-align: center;
  }
}

.table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table {
    font-size: 1.6rem;
  }
}

.table__head {
  border: 1px solid #7a7a7a;
  background: #f9f8f8;
  padding: 1.5rem;
  width: 40%;
  white-space: nowrap;
}

.table__cell {
  border: 1px solid #7a7a7a;
  padding: 1.5rem;
  background: #fff;
  line-height: 1.7;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 295px;
  padding: 13px;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
}

/*******************************
 レスポンシブUtility
 *******************************/
.tb-none {
  display: block;
}
@media (min-width: 768px) {
  .tb-none {
    display: none;
  }
}

.tb-show {
  display: none;
}
@media (min-width: 768px) {
  .tb-show {
    display: block;
  }
}