@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap");
*,
*::before,
*::after {
  /* パディングも常に0に */
  box-sizing: border-box;
  margin: 0;
  /* マージンは0に */
  padding: 0;
  /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
  /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none;
  /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light;
  /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased;
  block-size: 100%;
  /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb;
  /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5;
  /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif;
  /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  /* フォーム コントロールは親フォントを継承 */
  color: inherit;
  font: inherit;
  /* カラーも継承 */
}

:where(textarea) {
  resize: vertical;
  /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
  /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed;
  /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
  /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid;
  /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex;
  /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none;
  /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  /* images should never overflow past the available space */
  block-size: auto;
  /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  /* 見出しの行の高さを減らす */
}

:where(hr) {
  block-size: 0;
  overflow: visible;
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
}

:root {
  accent-color: #707070;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #282828;
  font-size: 1.6em;
  line-height: 1.88;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}

a {
  color: #282828;
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.6;
}
a[href^="tel:"] {
  pointer-events: none;
}

i {
  letter-spacing: 0;
}

.grecaptcha-badge {
  display: none;
}
.l-contents__title {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.l-contents__body {
  z-index: 1;
  position: relative;
  background-color: #ffffff;
}
.l-contents__footer {
  position: relative;
  padding-top: clamp(50px, 7.1428571429vw, 100px);
}

.l-drawer {
  display: flex;
  z-index: 10;
  position: fixed;
  top: 0;
  align-items: center;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #eeeeee;
  opacity: 0;
  transition: all 0.3s;
}
.l-drawer--active {
  transform: translateX(0);
  opacity: 1;
}
.l-drawer .c-drawer {
  width: 100%;
}
.l-drawer .c-drawer::before {
  display: none;
}

.l-footer {
  position: relative;
  padding-top: clamp(30px, 7.1428571429vw, 100px);
}
.l-footer__cols {
  display: flex;
}
.l-footer__col-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}
.l-footer__col-right {
  width: 60%;
  overflow: hidden;
  border-top-left-radius: clamp(20px, 4.2857142857vw, 60px);
}
.l-footer__info {
  padding: clamp(15px, 2.1428571429vw, 30px);
}
.l-footer__info-name {
  display: flex;
  align-items: center;
  font-size: clamp(2rem, 2.4285714286vw, 3.4rem);
  letter-spacing: 0.1em;
}
.l-footer__info-name img {
  width: clamp(60px, 5.7142857143vw, 80px);
  margin-right: clamp(8px, 1.0714285714vw, 15px);
}
.l-footer__info-address {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
}
.l-footer__info-tel {
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
}
.l-footer__copyright {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.l-header {
  width: 100%;
}
.l-header__inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.l-header__logo {
  visibility: visible;
  position: absolute;
  top: 30px;
  left: 5vw;
  opacity: 1;
  transition: all 0.5s;
}
.l-header__logo:hover {
  opacity: 0.6;
}
.l-header__logo a {
  display: flex;
  align-items: center;
}
.l-header__logo img {
  width: 115px;
}
.l-header__logo span {
  display: none;
}
.l-header--active .l-header__logo {
  visibility: hidden;
  opacity: 0;
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8571428571vw, 40px);
}
.l-header__nav ul li {
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2857142857vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0.05em;
}
.l-header__sub-nav {
  position: absolute;
  top: 20px;
  right: 5vw;
}
.l-header__sub-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4285714286vw, 20px);
}
.l-header__sub-nav ul li {
  font-weight: 900;
  font-size: clamp(1.2rem, 0.9285714286vw, 1.3rem);
  line-height: 1;
  letter-spacing: 0.1em;
}
.l-header__sub-nav ul li a i {
  font-size: clamp(1.6rem, 1.4285714286vw, 2rem);
}
.l-header__trigger {
  display: flex;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 2vw;
  bottom: 0;
  align-items: center;
  opacity: 1;
  transition: all 0.2s;
}
.l-header__trigger:hover {
  opacity: 0.6;
}
.c-article .c-container {
  max-width: inherit;
  margin-right: inherit;
  margin-left: inherit;
  padding-right: inherit;
  padding-left: inherit;
}
.c-article > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.c-article > *:first-child::before {
  display: none;
}
.c-article h2 {
  font-size: clamp(1.8rem, 2.2857142857vw, 3.2rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.c-article > h2 {
  margin-top: clamp(45px, 6.4285714286vw, 90px);
  margin-bottom: 0;
}
.c-article > h2:before {
  display: block;
  width: 5rem;
  height: 1px;
  margin-bottom: clamp(40px, 4.2857142857vw, 60px);
  background: #585348;
  content: "";
}
.c-article h3 {
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5714285714vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.c-article > h3 {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-bottom: 0;
}
.c-article > h3 + p {
  margin-top: clamp(25px, 2.1428571429vw, 30px);
}
.c-article > h3 + ul {
  margin-top: clamp(25px, 2.1428571429vw, 30px);
}
.c-article h4 {
  position: relative;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-bottom: 0;
  padding-left: 3rem;
  color: #d45b41;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.c-article h4::before {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  width: 2rem;
  height: 1px;
  background-color: #d45b41;
  content: "";
}
.c-article h4 + p {
  margin-top: clamp(25px, 2.1428571429vw, 30px);
}
.c-article p {
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.c-article > p {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.c-article > p + p {
  margin-top: clamp(25px, 2.1428571429vw, 30px);
}
.c-article ul {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.c-article ul li {
  margin-top: clamp(10px, 1.0714285714vw, 15px);
  margin-left: 1.2em;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
  list-style-position: outside;
  list-style-type: circle;
}
.c-article ul li:first-of-type {
  margin-top: 0;
}
.c-article img {
  max-width: 100%;
  height: auto;
}
.c-article a {
  text-decoration: underline;
}
.c-article a:hover {
  text-decoration: none;
}
.c-article iframe {
  max-width: 100%;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.c-article .wp-block-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-right: 0;
  margin-bottom: clamp(30px, 4.2857142857vw, 60px);
  margin-left: 0;
}
.c-article .wp-block-image figcaption {
  margin-top: clamp(10px, 1.0714285714vw, 15px);
  color: #888787;
  font-weight: 700;
  font-size: clamp(1rem, 0.8571428571vw, 1.2rem);
  line-height: 1.4;
}
.c-article .wp-block-gallery {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-bottom: clamp(30px, 4.2857142857vw, 60px);
}
.c-article .wp-block-gallery figure {
  display: block;
}
.c-article .wp-block-gallery figcaption {
  display: block;
  position: relative;
  margin-top: 0;
  padding: 0;
  background: none;
  color: #888787;
  font-weight: 700;
  font-size: clamp(1rem, 0.8571428571vw, 1.2rem);
  line-height: 1.4;
}
.c-article .wp-block-media-text {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-bottom: clamp(30px, 4.2857142857vw, 60px);
}
.c-article .wp-block-button {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-bottom: clamp(30px, 4.2857142857vw, 60px);
}
.c-article .wp-block-column p {
  margin-top: clamp(10px, 1.4285714286vw, 20px);
}
.c-article .wp-block-embed {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.c-article .wp-block-embed figcaption {
  margin-top: clamp(10px, 1.0714285714vw, 15px);
  color: #888787;
  font-weight: 700;
  font-size: clamp(1rem, 0.8571428571vw, 1.2rem);
  line-height: 1.4;
  text-align: center;
}
.c-article .wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56%;
}
.c-article .wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.c-article .wp-block-separator {
  display: block;
  width: 25%;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-right: auto;
  margin-left: auto;
  border-top: none;
  border-color: rgba(0, 0, 0, 0.5);
}
.c-article .wp-block-snow-monkey-blocks-media-text {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.c-article .wp-block-snow-monkey-blocks-media-text h2,
.c-article .wp-block-snow-monkey-blocks-media-text h3 {
  margin-top: 0 !important;
}
.c-article .wp-block-snow-monkey-blocks-buttons {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.c-article .wp-block-snow-monkey-blocks-buttons .smb-btn {
  padding-top: clamp(10px, 1.4285714286vw, 20px);
  padding-bottom: clamp(10px, 1.4285714286vw, 20px);
  background-color: #d45b41;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.2857142857vw, 1.8rem);
}
.c-article .wp-block-snow-monkey-blocks-alert {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.c-article .wp-block-snow-monkey-blocks-alert .smb-alert__title i {
  margin-right: 5px;
}
.c-article .wp-block-snow-monkey-blocks-alert .smb-alert__body p:first-of-type {
  margin-top: 0 !important;
}
.c-article .wp-block-snow-monkey-blocks-section .smb-section__body h2 {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.c-article .wp-block-snow-monkey-blocks-section .smb-section__body h2 + p {
  margin-top: clamp(5px, 1.0714285714vw, 15px);
}
.c-article .wp-block-snow-monkey-blocks-section .smb-section__body h3 {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.c-article .wp-block-snow-monkey-blocks-section .smb-section__body h3 + p {
  margin-top: clamp(5px, 1.0714285714vw, 15px);
}
.c-article .wp-block-snow-monkey-blocks-section .smb-section__body p {
  margin-top: clamp(15px, 2.1428571429vw, 30px);
}
.c-article .wp-block-snow-monkey-blocks-section .smb-section__body p + p {
  margin-top: clamp(5px, 1.0714285714vw, 15px);
}

.c-btn {
  opacity: 1;
  transition: all 0.2s;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn__label {
  color: #499954;
  font-weight: 900;
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
}
.c-btn--blue .c-btn__label {
  color: #5ea6d9;
}

.c-btn--pink .c-btn__label {
  color: #f09ca6;
}

.c-btn--purple .c-btn__label {
  color: #e9b2fa;
}

.c-btn__icon {
  margin-left: clamp(6px, 0.8571428571vw, 12px);
  padding: clamp(6px, 0.8571428571vw, 12px);
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 10%;
  background-color: #499954;
  color: #ffffff;
  font-size: clamp(2rem, 1.5714285714vw, 2.2rem);
  transition: transform 0.2s ease;
}
.c-btn:hover .c-btn__icon {
  transform: translateX(3px);
}

.c-btn--blue .c-btn__icon {
  background-color: #5ea6d9;
}

.c-btn--pink .c-btn__icon {
  background-color: #f09ca6;
}

.c-btn--purple .c-btn__icon {
  background-color: #e9b2fa;
}

.c-contact__cols {
  display: flex;
}
.c-contact__col-left {
  width: 170px;
}
.c-contact__col-right {
  z-index: 1;
  position: relative;
  width: calc(100% - 170px);
}
.c-contact__title {
  display: flex;
  justify-content: flex-start;
}
.c-contact__title .c-heading::before {
  top: -50px;
  left: -120px;
  aspect-ratio: 625/210;
  width: clamp(416px, 44.6428571429vw, 625px);
  background-image: url(./assets/images/title_contact_bg.svg);
}
.c-contact__txt {
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
  text-align: center;
}
.c-contact__items {
  margin-top: clamp(30px, 3.5714285714vw, 50px);
}
.c-contact-item {
  margin-top: 20px;
  background-color: #ffffff;
}
.c-contact-item:first-of-type {
  margin-top: 0;
}
.c-contact-item__cols {
  display: flex;
  align-items: center;
}
.c-contact-item__col-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-height: 170px;
}
.c-contact-item--tel .c-contact-item__col-left {
  background-color: #464646;
}

.c-contact-item--mail .c-contact-item__col-left {
  background-color: #a08534;
}

.c-contact-item__col-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 280px);
}
.c-contact-item__icon {
  color: #ffffff;
}
.c-contact-item__icon i {
  font-size: clamp(2rem, 2vw, 2.8rem);
}
.c-contact-item__title {
  margin-top: 10px;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.c-contact-item__time {
  font-size: 1.2rem;
}
.c-contact-item__tel {
  margin-top: 15px;
  color: #282828;
  font-size: clamp(3.6rem, 3.4285714286vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.15em;
}
.c-contact-item__btn {
  width: 350px;
}

.c-container {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
.c-container--narrow {
  width: 60vw;
  max-width: 910px;
}
.c-container--full {
  max-width: 100%;
}

.c-drawer {
  position: relative;
}
.c-drawer__cols {
  display: flex;
  position: relative;
  align-items: center;
}
.c-drawer__col-left {
  z-index: 1;
  position: relative;
  position: center center;
  width: 50%;
  height: 100vh;
  background-image: url(./assets/images/drawer_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.c-drawer__col-right {
  display: flex;
  z-index: 1;
  position: relative;
  width: 50%;
  padding-left: 5vw;
}
.c-drawer__nav {
  display: flex;
}
.c-drawer-nav-main {
  padding-right: clamp(30px, 4.6428571429vw, 65px);
}
.c-drawer-nav-main__item {
  margin-top: clamp(20px, 2.5vw, 35px);
}
.c-drawer-nav-main__item:first-of-type {
  margin-top: 0;
}
.c-drawer-nav-main__item > ul {
  margin-top: clamp(20px, 2.5vw, 35px);
  margin-left: 10px;
}
.c-drawer-nav-main__item > ul > li {
  margin-top: clamp(12px, 1.4285714286vw, 20px);
}
.c-drawer-nav-main__item > ul > li a {
  display: flex;
}
.c-drawer-nav-main__item > ul > li a .c-drawer-nav-main__label-en {
  margin-right: 15px;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}

.c-drawer-nav-main__item > ul > li a .c-drawer-nav-main__label-ja {
  margin-top: 0;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}

.c-drawer-nav-main__label-en {
  display: block;
  font-weight: 700;
  font-size: clamp(2rem, 2vw, 2.8rem);
  line-height: 1;
  font-family: "Quicksand", sans-serif;
}
.c-drawer-nav-main__label-ja {
  display: block;
  margin-top: 5px;
  color: #a09d9d;
  font-weight: 500;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  line-height: 1;
}
.c-drawer-nav-sub {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.c-drawer-nav-sub__item {
  margin-top: clamp(20px, 2.5vw, 35px);
}
.c-drawer-nav-sub__item:first-of-type {
  margin-top: 0;
}
.c-drawer-nav-sub__label-en {
  display: block;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4285714286vw, 2rem);
  line-height: 1;
  font-family: "Quicksand", sans-serif;
}
.c-drawer-nav-sub__label-ja {
  display: block;
  margin-top: 5px;
  color: #a09d9d;
  font-weight: 500;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  line-height: 1;
}
.c-drawer-nav-sub__instagram i {
  font-size: 3.2rem;
}
.c-drawer-nav-sub__copyright {
  position: absolute;
  bottom: -50px;
  left: 0;
}
.c-drawer-nav-sub__copyright p {
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.c-filter {
  border-bottom: 2px solid rgba(141, 139, 139, 0.2);
}
.c-filter__items {
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.c-filter__item {
  position: relative;
  bottom: -2px;
  margin-right: 10px;
  margin-left: 10px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: clamp(1.6rem, 1.2857142857vw, 1.8rem);
  cursor: pointer;
  opacity: 1;
  transition: all 0.6s;
}
.c-filter__item:hover {
  opacity: 0.6;
}
.c-filter__item.is-active {
  border-bottom: 2px solid #8d8b8b;
}

.c-form {
  padding: clamp(40px, 5.7142857143vw, 80px);
  background-color: #ffffff;
}
.c-form__required p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #c11313;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}
.c-form__required p span {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.c-form__items {
  position: relative;
  border-top: 1px solid rgba(112, 112, 112, 0.3);
}
.c-form__items::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: -1px;
  left: 0;
  width: calc(20% - 10px);
  height: 1px;
  background-color: #707070;
  content: "";
}
.c-form-item {
  display: flex;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}
.c-form-item:has([data-name=your-contact]) {
  padding-top: 30px;
  padding-bottom: 30px;
}
.c-form-item::before {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: calc(20% - 10px);
  height: 1px;
  background-color: #707070;
  content: "";
}
.c-form-item__label {
  display: flex;
  width: 20%;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.c-form-item:has([data-name=your-contact]) .c-form-item__label {
  margin-top: 0;
}
.c-form-item:has([data-name=your-contact]) .c-form-item__label::after {
  display: inline-block;
  margin-left: 5px;
  content: "*";
  color: #c11313;
  font-size: 1.6rem;
}

.c-form-item:has([aria-required=true]) .c-form-item__label::after {
  display: inline-block;
  margin-left: 5px;
  content: "*";
  color: #c11313;
  font-size: 1.6rem;
}

.c-form-item__control {
  width: 80%;
}
.c-form-item__control input[type=text],
.c-form-item__control input[type=email],
.c-form-item__control input[type=tel],
.c-form-item__control textarea {
  width: 100%;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  border: none;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.c-form-item__control span[data-name=your-contact] {
  display: flex;
  align-items: center;
  height: 100%;
}
.c-form-item__control .wpcf7-radio {
  display: flex;
  align-items: center;
}
.c-form-item__control .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.c-form-item__control .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 14px;
  margin-right: 5px;
  background-color: #707070;
}
.c-form-item__control .wpcf7-radio .wpcf7-list-item span {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.c-form-item__control .wpcf7-not-valid-tip {
  font-size: 1.2rem;
}
.c-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.c-form__submit button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
  background-color: #403A29;
  opacity: 1;
  transition: all 0.5s;
}
.c-form__submit button:hover {
  opacity: 0.8;
}
.c-form__submit span {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.c-heading--center {
  text-align: center;
}
.c-heading--horizontal {
  display: flex;
  align-items: center;
}
.c-heading--vertical {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: flex-end;
}
.c-heading__label-en {
  display: block;
  font-weight: 700;
  font-size: clamp(3.4rem, 4vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0.05em;
}
.c-heading--vertical .c-heading__label-en {
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.c-heading--pink .c-heading__label-en {
  color: #f09ca6;
}

.c-heading__label-ja {
  display: block;
  margin-top: clamp(10px, 1.0714285714vw, 15px);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.4285714286vw, 2rem);
  line-height: 1;
  letter-spacing: 0.15em;
}
.c-heading--horizontal .c-heading__label-ja {
  margin-top: 0;
  margin-left: clamp(10px, 1.4285714286vw, 20px);
}

.c-heading--vertical .c-heading__label-ja {
  margin-top: 0;
  margin-right: clamp(10px, 1.4285714286vw, 20px);
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.c-info {
  padding-top: clamp(30px, 4.2857142857vw, 60px);
  padding-bottom: clamp(30px, 4.2857142857vw, 60px);
}
.c-info__items {
  display: flex;
}
.c-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.c-info__lead {
  margin-top: clamp(30px, 3.5714285714vw, 50px);
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
  text-align: center;
}
.c-info__btn {
  margin-top: clamp(30px, 3.5714285714vw, 50px);
}
.c-info__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 7.1428571429vw, 100px);
  height: clamp(50px, 7.1428571429vw, 100px);
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 5%;
  background-color: #fbe5b9;
}
.c-info__btn a i {
  font-size: clamp(2rem, 2.8571428571vw, 4rem);
}

.c-news {
  position: relative;
  border-radius: 10px;
}
.c-news__link {
  z-index: 1;
  position: absolute;
  inset: 0;
}
.c-news__cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-news__col-center {
  width: 100%;
}
.c-news__col-right {
  padding-right: clamp(5px, 1.4285714286vw, 20px);
  padding-left: clamp(10px, 2.1428571429vw, 30px);
}
.c-news__image {
  aspect-ratio: 1/1;
  width: 110px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.c-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-news__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-news__category {
  padding: 6px 10px;
  border: 1px solid #f09ca6;
  border-radius: 4px;
  color: #f09ca6;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}
.c-news__date {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
.c-news__title {
  margin-top: clamp(5px, 0.7142857143vw, 10px);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.c-news__btn i {
  font-size: 2rem;
}

.c-row {
  display: flex;
  position: relative;
  justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
}
.c-row__col {
  padding-right: 15px;
  padding-left: 15px;
}
.c-row__col--1-2 {
  width: 50%;
}
.c-row__col--1-3 {
  width: 33.3333%;
}
.c-row__col--2-3 {
  width: 66.6666%;
}

.c-section {
  padding-top: clamp(40px, 7.1428571429vw, 100px);
  padding-bottom: clamp(40px, 5.7142857143vw, 80px);
  overflow: hidden;
  background-color: #585348;
}

.c-sns__items {
  display: inline-flex;
  flex-direction: column;
  margin-top: 0;
  list-style-type: none;
}
.c-sns__item {
  margin-top: 20px;
  opacity: 1;
  transition: all 0.4s;
}
.c-sns__item:first-of-type {
  margin-top: 0;
}
.c-sns__item:hover {
  opacity: 0.6;
}

.c-topics {
  visibility: visible;
  z-index: 5;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 1;
  transition: all 0.4s;
}
.c-topics--hidden {
  visibility: hidden;
  opacity: 0;
}
.c-topics * {
  color: #fff;
}
.c-topics__inner {
  display: flex;
  align-items: center;
  width: 30vw;
  min-width: 400px;
  padding: clamp(20px, 2.1428571429vw, 30px);
  border-top-left-radius: 20px;
  background-color: rgba(0, 0, 0, 0.8);
}
.c-topics__label {
  display: flex;
  margin-right: 20px;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  font-weight: bold;
  font-size: clamp(1.6rem, 1.4285714286vw, 2rem);
  line-height: 1;
}
.c-topics__item {
  margin-top: 12px;
}
.c-topics__item:first-of-type {
  margin-top: 0;
}
.c-topics__link {
  display: block;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
  line-height: 1.4;
  text-decoration: underline;
}
.c-topics__link:hover {
  text-decoration: none;
}

.c-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.c-trigger__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 30px;
}

.c-trigger__label {
  margin-top: clamp(5px, 0.7142857143vw, 10px);
  font-size: clamp(1.1rem, 0.9285714286vw, 1.3rem);
  line-height: 1;
}

.c-trigger__line {
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}
.c-trigger--active .c-trigger__line:nth-child(1) {
  transform: translateY(14px) rotate(330deg);
}
.c-trigger--active .c-trigger__line:nth-child(2) {
  opacity: 0;
}
.c-trigger--active .c-trigger__line:nth-child(3) {
  transform: translateY(-14px) rotate(-330deg);
}

.c-video__frame {
  position: fixed;
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  background-image: url(./assets/images/footer_bg.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-video__frame.is-loaded iframe {
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
}
.c-video__frame::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.c-video__scroll {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100px;
}
.c-video__scroll::after {
  display: block;
  position: absolute;
  top: 20px;
  width: 1px;
  height: 100px;
  background-color: #ffffff;
  content: "";
  animation: pathmove 3s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    top: 20px;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    top: 150px;
    height: 0;
    opacity: 0;
  }
}
.c-video__scroll span {
  position: absolute;
  top: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.c-video iframe {
  visibility: hidden;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  opacity: 0;
  pointer-events: none;
}

.js-fadeup-image {
  position: relative;
  overflow: hidden;
}
.js-fadeup-image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  transform: translate3d(0, 0%, 0);
  background-color: #f2f2f2;
  content: "";
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.js-fadeup-image.js-after::after {
  transform: translate3d(0, -102%, 0);
}
.js-fadeup-image.js-after > img,
.js-fadeup-image.js-after > * {
  transform: scale(1);
  opacity: 1;
}
.js-fadeup-image > img,
.js-fadeup-image > * {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.3);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity 1.2s cubic-bezier(0.473, 0.427, 0, 0.993) 0.8s;
}

.p-home-about {
  margin-top: clamp(20px, 7.1428571429vw, 100px);
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
  overflow: hidden;
  background-color: #fdf4e2;
}
.p-home-about::before {
  display: block;
  aspect-ratio: 1401/115;
  width: 100%;
  height: auto;
  background-image: url(./assets/images/bg_concept.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}
.p-home-about__inner {
  display: flex;
}
.p-home-about__images {
  width: 50%;
}
.p-home-about__image {
  position: relative;
}
.p-home-about__image--1 {
  left: 15%;
}
.p-home-about__image--2 {
  left: 45%;
}
.p-home-about__image--3 {
  left: 0;
}
.p-home-about__image--4 {
  left: 40%;
}
.p-home-about__image img {
  width: 50%;
}
.p-home-about__description {
  z-index: 1;
  position: relative;
  width: 50%;
  padding-left: 50px;
}
.p-home-about__title {
  font-size: clamp(2.6rem, 2.8571428571vw, 4rem);
  letter-spacing: 0.1em;
}
.p-home-about__title img {
  display: none;
}
.p-home-about__txt {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  font-size: clamp(1.4rem, 1.2857142857vw, 1.8rem);
  line-height: 2.2;
}

.p-home-access {
  display: flex;
  padding-top: clamp(50px, 7.1428571429vw, 100px);
  background-color: #fdf4e2;
}
.p-home-access__col-left {
  width: 50%;
  background-image: url(./assets/images/access_map.webp);
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-home-access__col-right {
  width: 50%;
}
.p-home-access__info {
  z-index: 1;
  position: relative;
  bottom: -60px;
  margin-top: clamp(20px, 2.8571428571vw, 40px);
  padding: clamp(20px, 3.5714285714vw, 50px);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #fbe5b9;
}
.p-home-access-address {
  margin-bottom: clamp(15px, 2.1428571429vw, 30px);
  padding-bottom: clamp(15px, 2.1428571429vw, 30px);
  border-bottom: 1px solid #ffffff;
}
.p-home-access-address__name {
  font-size: clamp(2rem, 2.2857142857vw, 3.2rem);
}
.p-home-access-address__address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(5px, 0.7142857143vw, 10px);
}
.p-home-access-address__address p {
  font-size: clamp(1.4rem, 1.2857142857vw, 1.8rem);
}
.p-home-access-address__address a {
  font-weight: 500;
  font-size: 1.2rem;
}
.p-home-access-address__address a i {
  margin-left: 5px;
  color: #d45b41;
  font-size: 2rem;
}
.p-home-access-tel {
  margin-bottom: clamp(15px, 2.1428571429vw, 30px);
  padding-bottom: clamp(15px, 2.1428571429vw, 30px);
  border-bottom: 1px solid #ffffff;
}
.p-home-access-car__label {
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4285714286vw, 2rem);
}
.p-home-access-car__value {
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.p-home-access-public {
  margin-top: 20px;
}
.p-home-access-public__header {
  display: flex;
  justify-content: space-between;
}
.p-home-access-public__label {
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4285714286vw, 2rem);
}
.p-home-access-public__value {
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.p-home-access-public__link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.2rem;
}
.p-home-access-public__link i {
  margin-left: 5px;
  color: #d45b41;
  font-size: 2rem;
}
.p-home-access-public-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
.p-home-access-public-route * {
  color: #d45b41;
  font-weight: 500;
  line-height: 1;
}
.p-home-access-public-route__point {
  padding: 6px 10px;
  border: 1px solid #d45b41;
  border-radius: 4px;
}
.p-home-access-public-route__point:last-of-type {
  background-color: #d45b41;
  color: #ffffff;
}
.p-home-access-public-route__between {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-home-access-public-route__between p {
  padding-right: 20px;
  padding-left: 20px;
  font-size: 1.2rem;
}
.p-home-access-public-route__between span {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #d45b41;
}
.p-home-access-public-route__between span::before {
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d45b41;
  content: "";
}
.p-home-access-public-route__between span::after {
  display: block;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d45b41;
  content: "";
}

.p-home-court__banner {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 50vw;
  min-width: 200px;
  max-width: 600px;
  margin-top: clamp(35px, 3.5714285714vw, 50px);
  margin-right: auto;
  margin-left: auto;
  transition: all 0.3s;
}
.p-home-court__banner:hover {
  opacity: 0.6;
}
.p-home-court__banner a {
  display: block;
  position: absolute;
  inset: 0;
}
.p-home-court__banner h3 {
  font-size: clamp(1.4rem, 1.4285714286vw, 2rem);
}
.p-home-court__banner img {
  width: 100%;
  margin-top: clamp(10px, 1.4285714286vw, 20px);
}
.p-home-court__detail {
  max-width: 90rem;
  margin-top: clamp(40px, 5.7142857143vw, 80px);
  margin-right: auto;
  margin-left: auto;
}
.p-home-court__detail h3 {
  font-size: clamp(1.8rem, 2vw, 2.8rem);
}
.p-home-court__detail p {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.p-home-court__detail dl {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.p-home-court__detail dl dt {
  margin-bottom: clamp(10px, 1.4285714286vw, 20px);
  font-weight: 700;
}
.p-home-court__detail dl dd {
  display: list-item;
  font-size: clamp(1.2rem, 1.1428571429vw, 1.6rem);
  list-style-position: inside;
  list-style-type: circle;
}

.p-home-info {
  padding-top: clamp(30px, 4.2857142857vw, 60px);
  padding-bottom: clamp(30px, 4.2857142857vw, 60px);
}
.p-home-info__items {
  display: flex;
}
.p-home-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.p-home-info__lead {
  margin-top: clamp(30px, 3.5714285714vw, 50px);
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
  text-align: center;
}
.p-home-info__btn {
  margin-top: clamp(30px, 3.5714285714vw, 50px);
}
.p-home-info__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 7.1428571429vw, 100px);
  height: clamp(50px, 7.1428571429vw, 100px);
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 5%;
  background-color: #fbe5b9;
}
.p-home-info__btn a i {
  font-size: clamp(2rem, 2.8571428571vw, 4rem);
}

.p-home-mv {
  display: flex;
  position: relative;
  justify-content: center;
}
.p-home-mv__slide {
  display: flex;
  max-width: 1200px;
  margin-right: 10vw;
  margin-left: 10vw;
  gap: clamp(10px, 2.1428571429vw, 30px);
}
.p-home-mv__slide-left, .p-home-mv__slide-right {
  width: 50%;
  overflow: hidden;
  border-top-right-radius: clamp(20px, 3.5714285714vw, 50px);
  border-bottom-left-radius: clamp(20px, 3.5714285714vw, 50px);
}
.p-home-mv__slide-right {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
}
.p-home-mv__slide .swiper {
  aspect-ratio: 565/750;
  width: 100%;
}
.p-home-mv__slide img {
  aspect-ratio: 565/750;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-mv__branding {
  z-index: 1;
  position: absolute;
  bottom: 5vw;
  left: 5vw;
}
.p-home-mv__copy {
  margin-top: clamp(30px, 3.5714285714vw, 50px);
}
.p-home-mv__copy-sub {
  display: block;
  font-size: clamp(1.5rem, 2.1428571429vw, 3rem);
  line-height: 1;
  letter-spacing: 0.36em;
}
.p-home-mv__copy-main {
  display: block;
  margin-top: clamp(12px, 1.2857142857vw, 18px);
  font-weight: normal;
  font-size: clamp(2.4rem, 4.1428571429vw, 5.8rem);
  line-height: 1;
}
.p-home-mv__copy-main span {
  display: inline-block;
  line-height: 1;
}

.p-home-news {
  padding-top: clamp(50px, 7.1428571429vw, 100px);
}
.p-home-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-home-news__body {
  margin-top: clamp(30px, 4.2857142857vw, 60px);
}
.p-home-news__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4285714286vw, 20px);
}
.p-home-news__item {
  opacity: 1;
  transition: all 0.2s;
}
.p-home-news__item:hover {
  opacity: 0.6;
}

.p-home-school {
  overflow: hidden;
}
.p-home-school .p-home-section__body::after {
  display: none;
}
.p-home-school__header {
  position: relative;
}
.p-home-school__header-btn {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: center;
}
.p-home-school-lesson {
  padding-top: clamp(50px, 7.1428571429vw, 100px);
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
  background-image: linear-gradient(to bottom, #a5d3ab 0%, #a5d3ab 50%, #ffffff 50%, #ffffff 100%);
}
.p-home-school-lesson__items {
  display: flex;
  margin-top: clamp(50px, 7.1428571429vw, 100px);
  gap: 60px;
}
.p-home-school-lesson__item {
  width: 50%;
}
.p-home-school-lesson-item__header {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #ffffff;
}
.p-home-school-lesson-item__image {
  aspect-ratio: 1/1;
  width: 82%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
}
.p-home-school-lesson-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-school-lesson-item__title {
  display: flex;
  align-items: center;
  width: 18%;
  margin-top: 10%;
  color: #499954;
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.p-home-school-lesson-item__title i {
  margin-bottom: 10px;
}
.p-home-school-lesson-item__lead {
  margin-top: clamp(15px, 2.1428571429vw, 30px);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
  letter-spacing: 0.05em;
}
.p-home-school-lesson-item__btns {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(15px, 2.1428571429vw, 30px);
}
.p-home-school-lesson-item__btn:first-of-type {
  margin-right: clamp(10px, 1.4285714286vw, 20px);
}
.p-home-school-price {
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
}
.p-home-school-price__body {
  padding-top: clamp(25px, 3.5714285714vw, 50px);
  padding-bottom: clamp(25px, 3.5714285714vw, 50px);
}
.p-home-school-price__body a {
  color: #d45b41;
  font-weight: bold;
  text-decoration: underline;
}
.p-home-school-price__body a:hover {
  text-decoration: none;
}
.p-home-school-schedule {
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
}
.p-home-school-schedule__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(25px, 3.5714285714vw, 50px);
  padding-bottom: clamp(25px, 3.5714285714vw, 50px);
}
.p-home-school-schedule__body img {
  margin-bottom: clamp(15px, 2.1428571429vw, 30px);
}
.p-home-school-schedule__body a {
  color: #d45b41;
  font-weight: bold;
  text-decoration: underline;
}
.p-home-school-schedule__body a:hover {
  text-decoration: none;
}
.p-home-school-coach {
  padding-top: clamp(30px, 4.2857142857vw, 60px);
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
  background-color: #ffffff;
}
.p-home-school-coach__items {
  margin-top: clamp(50px, 7.1428571429vw, 100px);
  padding-left: 15vw;
}
.p-home-school-coach .swiper .swiper-slide {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}
.p-home-school-coach .swiper .swiper-slide-prev {
  visibility: hidden;
  opacity: 0;
}
.p-home-school-coach .swiper .swiper-slide-active {
  width: 28vw !important;
}
.p-home-school-coach .swiper .swiper-controller {
  display: flex;
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  justify-content: flex-end;
  margin-right: 10vw;
  gap: 24px;
}
.p-home-school-coach .swiper .swiper-button-prev,
.p-home-school-coach .swiper .swiper-button-next {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 70px;
  height: 70px;
  margin-top: 0;
  border: 3px solid #a5d3ab;
  border-radius: 50%;
  background-color: #ffffff;
}
.p-home-school-coach .swiper .swiper-button-prev::after,
.p-home-school-coach .swiper .swiper-button-next::after {
  display: none;
}
.p-home-school-coach .swiper .swiper-button-prev i,
.p-home-school-coach .swiper .swiper-button-next i {
  color: #499954;
  font-size: clamp(2rem, 2.2857142857vw, 3.2rem);
}
.p-home-school-coach-item {
  display: flex;
  position: relative;
  align-items: flex-end;
  aspect-ratio: 426/548;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s;
}
.swiper-slide-active .p-home-school-coach-item {
  width: 28vw;
}

.p-home-school-coach-item::after {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%);
  content: "";
  opacity: 0;
  transition: all 0.5s;
}
.swiper-slide-active .p-home-school-coach-item::after {
  visibility: visible;
  opacity: 1;
}

.p-home-school-coach-item__link {
  z-index: 1;
  position: absolute;
  inset: 0;
}
.p-home-school-coach-item__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.p-home-school-coach-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-school-coach-item__inner {
  visibility: hidden;
  z-index: 1;
  position: relative;
  padding: clamp(16px, 3.4285714286vw, 48px);
  opacity: 0;
  transition: all 0.5s;
}
.swiper-slide-active .p-home-school-coach-item__inner {
  visibility: visible;
  opacity: 1;
}

.p-home-school-coach-item__name {
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(2.4rem, 2.3571428571vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-home-school-coach-item__achievement {
  margin-top: clamp(12px, 1.4285714286vw, 20px);
  color: #ffffff;
  line-height: 1.6;
}
.p-home-school-interview {
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
  background-color: #ffffff;
}
.p-home-school-interview__inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #a5d3ab;
  cursor: pointer;
  transition: all 0.3s;
}
.p-home-school-interview__inner:hover {
  opacity: 0.8;
}
.p-home-school-interview__link {
  z-index: 1;
  position: absolute;
  inset: 0;
}
.p-home-school-interview__cols {
  display: grid;
  grid-template-columns: 500px 1fr;
}
.p-home-school-interview__image {
  aspect-ratio: 1/1;
  width: 100%;
}
.p-home-school-interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-school-interview__col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.8571428571vw, 40px);
  gap: clamp(20px, 2.8571428571vw, 40px);
}
.p-home-school-interview__post-title > span {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 6px;
  background-color: #ffffff;
  font-size: clamp(1.6rem, 2.1428571429vw, 3rem);
  line-height: 1;
}
.p-home-school-interview__post-title > span:first-of-type {
  margin-top: 0;
}
.p-home-school-other {
  padding-top: clamp(30px, 4.2857142857vw, 60px);
  background-color: #ffffff;
}
.p-home-school-other__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-home-school-other-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: 16/9;
  height: auto;
  padding: clamp(25px, 3.5714285714vw, 50px);
  overflow: hidden;
  background-image: url(https://placehold.jp/1600x900.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  transition: all 0.3s;
}
.p-home-school-other-item:hover {
  opacity: 0.8;
}
.p-home-school-other-item--trial {
  border-top-right-radius: clamp(20px, 2.8571428571vw, 40px);
}
.p-home-school-other-item--goods {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
  border-bottom-left-radius: clamp(20px, 2.8571428571vw, 40px);
}
.p-home-school-other-item__link {
  position: absolute;
  inset: 0;
}
.p-home-school-other-item__txt {
  padding: 10px 20px;
  border: 1px solid #282828;
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
  line-height: 1;
}

.p-home-section {
  position: relative;
  padding-top: clamp(40px, 8.5714285714vw, 120px);
}
.p-home-section__header::after {
  display: block;
  aspect-ratio: 1401/115;
  width: 100%;
  height: auto;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}
.p-home-section--green .p-home-section__header::after {
  background-image: url(./assets/images/bg_school.svg);
}

.p-home-section--yellow .p-home-section__header::after {
  background-image: url(./assets/images/bg_rental_t.svg);
}

.p-home-section--blue .p-home-section__header::after {
  background-image: url(./assets/images/bg_cafe_t.svg);
}

.p-home-section--pink .p-home-section__header::after {
  background-image: url(./assets/images/bg_dogrun_t.svg);
}

.p-home-section__header-inner {
  display: flex;
  justify-content: flex-end;
}
.p-home-section--reverse .p-home-section__header-inner {
  justify-content: flex-start;
}

.p-home-section__title {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  line-height: 1;
}
.p-home-section__title-en {
  display: inline-block;
  font-size: clamp(3.4rem, 5.7142857143vw, 8rem);
}
.p-home-section--green .p-home-section__title-en {
  color: #a5d3ab;
}

.p-home-section--yellow .p-home-section__title-en {
  color: #fcdf82;
}

.p-home-section--blue .p-home-section__title-en {
  color: #c2e0f5;
}

.p-home-section--pink .p-home-section__title-en {
  color: #f7e4fd;
}

.p-home-section__title-ja {
  display: inline-block;
  margin-top: clamp(10px, 2.1428571429vw, 30px);
  font-size: clamp(1.6rem, 1.7857142857vw, 2.5rem);
}
.p-home-section__image {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 430/540;
  width: 30vw;
  max-width: 430px;
  height: auto;
  overflow: hidden;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}
.p-home-section--reverse .p-home-section__image {
  right: 0;
  left: auto;
}

.p-home-section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-section--green .p-home-section__body {
  background-color: #a5d3ab;
}

.p-home-section--yellow .p-home-section__body {
  background-color: #fcdf82;
}

.p-home-section--blue .p-home-section__body {
  background-color: #c2e0f5;
}

.p-home-section--pink .p-home-section__body {
  background-color: #f7e4fd;
}
.p-home-section__body::after {
  display: block;
  aspect-ratio: 1401/70;
  width: 100%;
  height: auto;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}
.p-home-section--yellow .p-home-section__body::after {
  background-image: url(./assets/images/bg_rental_b.svg);
}

.p-home-section--blue .p-home-section__body::after {
  background-image: url(./assets/images/bg_cafe_b.svg);
}

.p-home-section--pink .p-home-section__body::after {
  background-image: url(./assets/images/bg_dogrun_b.svg);
  background-color: #fdf4e2;
}

.p-home-section__body-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.p-home-section--reverse .p-home-section__body-inner {
  flex-direction: row;
}

.p-home-section__description {
  width: 50%;
  padding-right: 5vw;
}
.p-home-section--reverse .p-home-section__description {
  padding-right: 0;
  padding-left: 5vw;
}

.p-home-section__illust {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.p-home-section--reverse .p-home-section__illust {
  justify-content: flex-end;
}

.p-home-section__illust img {
  width: 80%;
}
.p-home-section__copy {
  font-size: clamp(1.6rem, 2vw, 2.8rem);
}
.p-home-section__lead {
  margin-top: clamp(25px, 3.5714285714vw, 50px);
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}
.p-home-section__btn {
  margin-top: clamp(25px, 3.5714285714vw, 50px);
}

.p-page-about__title::before {
  top: -60px;
  left: -32px;
  aspect-ratio: 441/195;
  width: 441px;
  width: clamp(292px, 31.5vw, 441px);
  height: 195px;
  background-image: url(./assets/images/title_about_bg.svg);
}
.p-page-about-flow {
  position: relative;
  padding-top: clamp(50px, 7.1428571429vw, 100px);
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
}
.p-page-about-flow::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33vw;
  height: 480px;
  background-image: url(./assets/images/about_image.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-page-about-flow__lead {
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
  text-align: center;
}
.p-page-about-flow__items {
  position: relative;
  margin-top: clamp(50px, 7.1428571429vw, 100px);
  margin-right: clamp(0px, 8.5714285714vw, 120px);
  padding-top: 70px;
  padding-right: clamp(35px, 5vw, 70px);
  padding-bottom: 100px;
}
.p-page-about-flow__items::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -9999px;
  background-color: #ffffff;
  content: "";
}
.p-page-about-flow-item {
  display: flex;
  z-index: 1;
  position: relative;
}
.p-page-about-flow-item__title {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 260px;
}
.p-page-about-flow-item__title-num {
  z-index: 1;
  position: relative;
  color: #a08534;
  font-size: clamp(1.3rem, 1vw, 1.4rem);
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.2em;
}
.p-page-about-flow-item__title-num::before {
  display: block;
  position: absolute;
  top: -10px;
  left: -15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #a08534;
  content: "";
}
.p-page-about-flow-item__title-ja {
  z-index: 1;
  position: relative;
  margin-top: clamp(10px, 1.4285714286vw, 20px);
  font-weight: 400;
  font-size: clamp(2rem, 1.7142857143vw, 2.4rem);
  line-height: 1.4;
}
.p-page-about-flow-item__lead {
  width: calc(100% - 260px);
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e7e6e6;
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
  line-height: 2.2;
}

.p-page-coach__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 4.2857142857vw, 60px);
}
.p-page-coach-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.p-page-coach-item__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 20px;
}
.p-page-coach-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-coach-item__content {
  padding-left: clamp(20px, 2.8571428571vw, 40px);
}
.p-page-coach-item__name {
  font-weight: bold;
  font-size: clamp(2.8rem, 2.8571428571vw, 4rem);
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-page-coach-item__achievement {
  margin-top: clamp(12px, 1.4285714286vw, 20px);
  font-weight: bold;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
.p-page-coach-item__introduction {
  margin-top: clamp(20px, 2.8571428571vw, 40px);
  font-size: clamp(1.4rem, 1.1428571429vw, 1.6rem);
}

.p-page__body {
  padding-bottom: clamp(50px, 7.1428571429vw, 100px);
  background-color: rgba(0, 0, 0, 0.05);
}
.p-page__body::before {
  display: block;
  aspect-ratio: 1401/115;
  width: 100%;
  height: auto;
  background-image: url(./assets/images/post_bg.svg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #fff;
  content: "";
}
.p-page__content {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 60px;
}

.p-single__header {
  max-width: 90rem;
  margin-top: clamp(30px, 4.2857142857vw, 60px);
  margin-right: auto;
  margin-bottom: clamp(15px, 2.1428571429vw, 30px);
  margin-left: auto;
}
.p-single__image {
  margin-bottom: clamp(20px, 2.8571428571vw, 40px);
}
.p-single__title {
  font-size: clamp(2.2rem, 3.4285714286vw, 4.8rem);
  letter-spacing: 0.1em;
}
.p-single__categories {
  display: flex;
  align-items: center;
  margin-top: clamp(15px, 1.7857142857vw, 25px);
  gap: clamp(5px, 0.7142857143vw, 10px);
}
.p-single__category {
  display: block;
  padding: 6px 10px;
  border: 2px solid #f09ca6;
  border-radius: 4px;
  color: #f09ca6;
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1428571429vw, 1.6rem);
  line-height: 1;
}
.p-single__body {
  background-color: rgba(0, 0, 0, 0.05);
}
.p-single__body::before {
  display: block;
  aspect-ratio: 1401/115;
  width: 100%;
  height: auto;
  background-image: url(./assets/images/post_bg.svg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}
.p-single__content {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 60px;
}

.u-color--red {
  color: #d45b41;
}

.u-comingsoon {
  display: none;
}

.u-visible {
  display: none;
}
.u-visible--md {
  display: none;
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
    /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .l-contents {
    overflow: hidden;
  }
  .l-contents__footer {
    padding-top: 20px;
  }
  .l-header__logo {
    top: 5vw;
  }
  .l-header__logo img {
    width: 40px;
  }
  .l-header__logo span {
    display: block;
    margin-left: 8px;
    font-size: clamp(1.6rem, 1.2857142857vw, 1.8rem);
    letter-spacing: 0.1em;
  }
  .c-article {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .c-contact__title .c-heading::before {
    top: -20px;
    left: 0;
    width: 300px;
  }
  .c-contact-item__icon i {
    margin-right: 10px;
    font-size: 2.4rem;
  }
  .c-container {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .c-drawer__nav {
    flex-direction: column;
  }
  .c-drawer-nav-main__item > ul {
    display: none;
  }
  .c-drawer-nav-sub {
    margin-top: 40px;
  }
  .c-drawer-nav-sub__instagram {
    margin-top: 40px;
  }
  .c-drawer-nav-sub__copyright {
    right: 0;
    left: 0;
    text-align: center;
  }
  .c-form {
    padding: 0;
    background: none;
  }
  .c-form__items::before {
    width: 50%;
  }
  .c-form-item {
    display: block;
    padding-right: 10px;
    padding-left: 10px;
  }
  .c-form-item::before {
    width: 50%;
  }
  .c-form-item__label {
    width: 100%;
    margin-top: 0;
  }
  .c-form-item__control {
    width: 100%;
    margin-top: 10px;
  }
  .c-form-item__control input[type=text],
  .c-form-item__control input[type=email],
  .c-form-item__control input[type=tel],
  .c-form-item__control textarea {
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    background-color: #ffffff;
    font-size: 1.5rem;
  }
  .c-form-item__control .wpcf7-radio {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-form-item__control .wpcf7-radio .wpcf7-list-item span {
    font-size: 1.5rem;
  }
  .c-news__image {
    width: 80px;
  }
  .c-news__category {
    padding: 4px 10px;
  }
  .c-sns__items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  .c-sns__item {
    margin-top: 0;
  }
  .c-topics__inner {
    width: 100%;
    min-width: auto;
    border-radius: 0;
  }
  .p-home-about__images {
    position: absolute;
    top: 20px;
    width: 100%;
    opacity: 0.3;
  }
  .p-home-about__description {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
  .p-home-about__title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-home-about__title img {
    display: block;
    width: 20vw;
    margin-right: 10px;
  }
  .p-home-about__txt {
    line-height: 1.8;
  }
  .p-home-access {
    padding-bottom: 40px;
    background-image: url(./assets/images/access_map.webp);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .p-home-access__title {
    margin-right: 5vw;
    margin-left: 5vw;
  }
  .p-home-access__col-left {
    display: none;
  }
  .p-home-access__col-right {
    width: 100%;
  }
  .p-home-access__info {
    bottom: 0;
    margin-right: 5vw;
    margin-left: 5vw;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .p-home-court__banner {
    width: 75vw;
  }
  .p-home-mv__slide {
    margin-right: 0;
    margin-left: 0;
  }
  .p-home-mv__branding {
    position: relative;
    bottom: auto;
    left: auto;
  }
  .p-home-mv__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-home-school__header-btn {
    position: relative;
    justify-content: flex-end;
    margin-top: 20px;
  }
  .p-home-school__body-inner {
    padding-bottom: 40px;
  }
  .p-home-school-lesson {
    background-image: none;
    background-color: #ffffff;
  }
  .p-home-school-lesson__items {
    flex-direction: column;
    margin-top: 20px;
    gap: 40px;
  }
  .p-home-school-lesson__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  .p-home-school-lesson-item__header {
    flex-direction: column-reverse;
    width: 50%;
    overflow: visible;
    border-radius: 0;
  }
  .p-home-school-lesson-item__image {
    width: 100%;
  }
  .p-home-school-lesson-item__title {
    width: 100%;
    margin-top: 0;
    margin-bottom: 15px;
    white-space: nowrap;
    writing-mode: horizontal-tb;
  }
  .p-home-school-lesson-item__title i {
    margin-right: 5px;
    margin-bottom: 0;
  }
  .p-home-school-lesson-item__lead {
    width: 50%;
    margin-top: 30px;
    padding-left: 15px;
  }
  .p-home-school-lesson-item__lead br {
    display: none;
  }
  .p-home-school-lesson-item__btns {
    width: 100%;
  }
  .p-home-school-coach__items {
    padding-left: 5vw;
  }
  .p-home-school-coach-item__name {
    font-size: 1.8rem;
  }
  .p-home-school-coach-item__achievement {
    display: none;
  }
  .p-home-school-interview__cols {
    grid-template-columns: 1fr;
  }
  .p-home-school-interview__image {
    aspect-ratio: 4/3;
  }
  .p-home-section__header-inner {
    justify-content: flex-start;
  }
  .p-home-section__title {
    padding-bottom: 20px;
  }
  .p-home-section__image {
    display: none;
  }
  .p-home-section__body {
    padding-top: 10px;
  }
  .p-home-section__body-inner {
    display: block;
  }
  .p-home-section__description {
    width: 100%;
    padding-right: 0;
  }
  .p-home-section--reverse .p-home-section__description {
    padding-left: 0;
  }
  .p-home-section__illust {
    justify-content: center;
    margin-top: 30px;
  }
  .p-home-section--reverse .p-home-section__illust {
    justify-content: center;
  }
  .p-home-section__illust img {
    width: 70%;
  }
  .p-page-about-flow::after {
    display: none;
  }
  .p-page-about-flow__items {
    margin-right: 0;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    background-color: #ffffff;
  }
  .p-page-about-flow__items::before {
    display: none;
  }
  .p-page-about-flow-item {
    display: block;
    padding-top: 30px;
  }
  .p-page-about-flow-item:first-of-type {
    padding-top: 10px;
  }
  .p-page-about-flow-item__title {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .p-page-about-flow-item__title-num {
    margin-right: 8px;
  }
  .p-page-about-flow-item__title-ja {
    margin-top: 0;
  }
  .p-page-about-flow-item__title-ja br {
    display: none;
  }
  .p-page-about-flow-item__lead {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 30px;
    line-height: 1.8;
  }
  .p-page-coach-item {
    grid-template-columns: 1fr;
  }
  .p-page-coach-item__content {
    margin-top: 20px;
    padding-left: 0;
  }
  .p-page-coach-item__name {
    font-size: 2.4rem;
  }
  .p-single__category {
    border-width: 1px;
  }
  .u-visible--md {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .l-footer__cols {
    flex-direction: column;
  }
  .l-footer__col-left {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.02);
  }
  .l-footer__col-right {
    width: 100%;
    border-radius: 0;
  }
  .l-footer__info {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .l-footer__info-name {
    justify-content: center;
  }
  .l-footer__copyright {
    display: flex;
    position: relative;
    right: 2vw;
    left: auto;
    justify-content: flex-end;
    font-size: 1.1rem;
  }
  .l-header__inner {
    height: 70px;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav ul {
    justify-content: flex-end;
    gap: 10px;
  }
  .l-header__sub-nav {
    display: none;
  }
  .l-header__trigger {
    top: 6vw;
    right: 5vw;
    bottom: auto;
  }
  .c-contact__col-left {
    width: 80px;
  }
  .c-contact__col-right {
    width: calc(100% - 80px);
  }
  .c-contact-item__cols {
    flex-direction: column;
  }
  .c-contact-item__col-left {
    flex-direction: row;
    width: 100%;
    min-height: 60px;
  }
  .c-contact-item__col-right {
    width: 100%;
    padding: 25px;
  }
  .c-contact-item__title {
    margin-top: 0;
    font-size: 1.3rem;
  }
  .c-contact-item__time {
    font-size: 1rem;
  }
  .c-contact-item__tel {
    font-size: 2.4rem;
  }
  .c-contact-item__btn {
    width: auto;
  }
  .c-container--narrow {
    width: 100%;
  }
  .c-heading--lg-small .c-heading__label-en {
    font-size: 2.6rem;
  }
  .c-heading--lg-small .c-heading__label-ja {
    font-size: 1.2rem;
  }
  .c-info__lead {
    padding-right: 10px;
    padding-left: 10px;
  }
  .c-trigger__inner {
    width: 30px;
    height: 15px;
  }
  .c-trigger__line {
    height: 1px;
  }
  .c-trigger--active .c-trigger__line:nth-child(1) {
    transform: translateY(7px) rotate(330deg);
  }
  .c-trigger--active .c-trigger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-330deg);
  }
  .c-video__frame {
    position: relative;
  }
  .c-video__scroll {
    display: none;
  }
  .p-home-info__lead {
    padding-right: 10px;
    padding-left: 10px;
  }
  .p-home-mv {
    flex-direction: column;
    margin-top: clamp(10px, 2.1428571429vw, 30px);
  }
  .p-home-news__items {
    grid-template-columns: 1fr;
  }
  .p-home-school-coach .swiper .swiper-slide-active {
    width: 40vw !important;
  }
  .p-home-school-coach .swiper .swiper-controller {
    display: none;
  }
  .swiper-slide-active .p-home-school-coach-item {
    width: 40vw;
  }
  .p-home-school-other__items {
    grid-template-columns: 1fr;
    margin-right: 5vw;
    margin-left: 5vw;
  }
  .p-home-school-other-item--goods {
    margin-top: 0;
    border-top: 1px solid #ffffff;
  }
  .p-home-school-other-item__txt {
    padding: 6px 20px;
  }
}
@media screen and (max-width: 1199px) {
  .c-drawer__col-left {
    display: none;
  }
  .c-drawer__col-right {
    justify-content: center;
    width: 100%;
  }
  .p-home-section__image {
    left: 5vw;
  }
  .p-home-section--reverse .p-home-section__image {
    right: 5vw;
  }
}