@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #1f1f1f;
  --color-text-gray: #727272;
  --color-emerald: #00c599;
  --color-emerald-bg: #00e0ae;
  --color-yellow: #f5ca2e;
  --color-orange: #ff8a17;
  --color-green: #a1e000;
  --color-blue: #2cbcf4;
  --color-red: #e00031;
  --color-bg-green: #94f0dc;
  --color-bg-yellow: #f8edc4;
  --color-img: #d5d5d5;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-barlow: "Barlow", sans-serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  /* パターン */
  --pattern-bg-01: url(../img/common/pt-bg01.jpg);
  --pattern-bg-02: url(../img/common/pt-bg02.jpg);
  --pattern-bg-line: url(../img/common/deco_line.png) repeat-x center top, url(../img/common/deco_line.png) repeat-x center bottom;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 6rem;
    --font-size-xxl: 3.2rem;
    --font-size-xl: 2.4rem;
    --font-size-lg: 2rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-title: 1.5;
    --margin-height-title: -0.25em;
    --line-height-base: 1.875;
    --margin-height-base: -0.4375em;
    /* letter-spacing */
    --letter-spacing-base: 0;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 2.11765em;
    --font-size-xxl: 1.764706em;
    --font-size-xl: 1.41177em;
    --font-size-lg: 1.176471em;
    --font-size-base: 1em;
    --font-size-sm: 0.82353em;
    --font-size-xs: 0.70589em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 1.76471;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-spacing */
    --letter-spacing-base: 0;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-sm);
  padding-top: 2.5em;
}
.pagenation li {
  width: 2em;
  line-height: 2.15;
  margin: 0.5em 0.5em 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated {
  font-size: var(--font-size-sm);
}
.paginated__list {
  padding-top: 2.5em;
}
.paginated__link {
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link--prev::before {
  margin-right: 0.5em;
}
.paginated__link--next::after {
  margin-left: 0.5em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
  font-size: clamp(1.4rem, 3.7777777778vw, 1.7rem);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: min(72px, 4.5em);
}
#header .header__logo a {
  -moz-column-gap: 1em;
       column-gap: 1em;
}
#header .header__logo-ic {
  width: calc(3em - 1px);
}
#header .header__logo img {
  width: 10em;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 4em 0 6em;
}
#footer .footer__logo {
  width: 100%;
}
#footer .footer__logo a {
  -moz-column-gap: 1em;
       column-gap: 1em;
}
#footer .footer__logo-ic {
  width: calc(3em - 1px);
}
#footer .footer__logo img {
  width: 10em;
}
#footer .footer__other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: min(90%, 21em);
  gap: 2em 1.5em;
  margin: 0 auto;
}
#footer .footer__info {
  font-size: var(--font-size-sm);
  line-height: 1.75;
  margin: -0.375em 0;
}
#footer .footer__sns {
  gap: clamp(24px, 6.6666666667vw, 30px);
}
#footer .footer__sns li {
  width: clamp(30px, 8.8888888889vw, 40px);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  background: var(--color-yellow);
  padding: 1px 0;
  margin-top: 4em;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.footer-nav__item {
  background: #fff;
}
.footer-nav__item:nth-of-type(1) {
  grid-column: span 2;
}
.footer-nav__item:nth-of-type(1) .footer-nav__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.footer-nav__item:nth-of-type(1) .footer-nav__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #e00031;
  margin-left: auto;
}
.footer-nav__item:nth-of-type(1) .footer-nav__link .en {
  color: #e00031;
}
.footer-nav__item:nth-of-type(2) {
  grid-column: span 2;
}
.footer-nav__item:nth-of-type(2) .footer-nav__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.footer-nav__item:nth-of-type(2) .footer-nav__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #00c599;
  margin-left: auto;
}
.footer-nav__item:nth-of-type(2) .footer-nav__link .en {
  color: #00c599;
}
.footer-nav__item:nth-of-type(3) {
  grid-column: span 2;
}
.footer-nav__item:nth-of-type(3) .footer-nav__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.footer-nav__item:nth-of-type(3) .footer-nav__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #f5ca2e;
  margin-left: auto;
}
.footer-nav__item:nth-of-type(3) .footer-nav__link .en {
  color: #f5ca2e;
}
.footer-nav__item:nth-of-type(4) {
  grid-column: span 2;
}
.footer-nav__item:nth-of-type(4) .footer-nav__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.footer-nav__item:nth-of-type(4) .footer-nav__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #a1e000;
  margin-left: auto;
}
.footer-nav__item:nth-of-type(4) .footer-nav__link .en {
  color: #a1e000;
}
.footer-nav__item:nth-of-type(5) {
  grid-column: span 2;
}
.footer-nav__item:nth-of-type(5) .footer-nav__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.footer-nav__item:nth-of-type(5) .footer-nav__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #2cbcf4;
  margin-left: auto;
}
.footer-nav__item:nth-of-type(5) .footer-nav__link .en {
  color: #2cbcf4;
}
.footer-nav__item:nth-of-type(6) {
  grid-column: span 2;
}
.footer-nav__item:nth-of-type(6) .footer-nav__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.footer-nav__item:nth-of-type(6) .footer-nav__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #ff8a17;
  margin-left: auto;
}
.footer-nav__item:nth-of-type(6) .footer-nav__link .en {
  color: #ff8a17;
}
.footer-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  font-size: var(--font-size-sm);
  gap: 0.5em 1em;
  padding: 1em 0;
  position: relative;
  z-index: 0;
}
.footer-nav__link > span {
  display: block;
  line-height: 2;
  margin: -0.5em 0;
}
.footer-nav__link .en {
  font-size: 0.857143em;
  font-family: var(--font-family-barlow);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-gray);
}
.footer-nav__link[aria-current=page] {
  background: rgba(248, 237, 196, 0.5);
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-xs);
  padding: 1.5em 0;
}
.copy p {
  line-height: var(--line-height-xs);
}

/*===============================================
  fixed固定
===============================================*/
/*サイドボタン
-----------------------------*/
#side {
  width: 100%;
  left: 0;
  bottom: 0;
}
#side::before {
  width: 5em;
  right: 0.25em;
  bottom: 3.2em;
}
#side .side__mail {
  height: 4em;
  box-shadow: 0 min(4px, 0.8888888889vw) 0 #fff inset;
  padding-top: min(4px, 0.8888888889vw);
}
#side .side__mail::before {
  font-size: var(--font-size-lg);
  width: 1.5em;
  margin-right: 0.75em;
}
#side .side__mail .txt {
  font-size: var(--font-size-lg);
  -webkit-text-stroke: #fff 0.2em;
  paint-order: stroke;
}
#side .side__mail .txt .min {
  font-size: 0.8em;
  margin-left: 0.5em;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 2.5em;
  padding-bottom: 2em;
}
.visual__main-catch {
  width: min(531px, 80vw);
}
.visual__main-movie {
  height: 50vw;
  max-height: 360px;
  aspect-ratio: 16/9;
  border-radius: 1.41177em 0 0 1.41177em;
  margin-left: auto;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: min(270px, 60vw);
}
.visual__sub::before {
  width: 72%;
  height: 90%;
  border-radius: 1.41177em 0 0 1.41177em;
}
.visual__sub-catch {
  font-size: min(3.2rem, 7.1111111111vw);
  -webkit-text-stroke: #fff min(6px, 1.3333333333vw);
  paint-order: stroke;
  margin-left: 1.25em;
}
.visual__sub-catch > span {
  line-height: 1.25;
}
.visual__sub-catch::before {
  content: "";
  width: 5.625em;
  aspect-ratio: 180/56;
  background: url(../img/visual/sv_deco.png) no-repeat left bottom/contain;
  position: absolute;
  left: -1em;
  bottom: -0.75em;
  z-index: -1;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
#container:not(.top):not(.concept) .section:first-of-type {
  background-size: min(120px, 26.6666666667vw);
}
#container:not(:has(.com-contact)) {
  border-bottom: solid 3px var(--color-emerald);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-bottom: 0.5em;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.breadcrumb + .section {
  padding-top: min(100px, 22.2222222222vw);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 5em 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  gap: 1em;
}
.com-tel-inner {
  gap: 0.5em;
}
.com-tel-num {
  font-size: var(--font-size-xxl);
}
.com-tel-num::before {
  font-size: 0.75em;
  width: 1em;
  margin-right: 0.5em;
}
.com-tel-num span {
  margin: -0.2em 0 -0.05em;
}
.com-tel .com-replace {
  font-size: var(--font-size-xs);
  height: 1em;
}
.com-tel-txt {
  font-size: var(--font-size-xs);
  line-height: 1.5;
  padding: 0.75em 1.25em;
  background: var(--color-bg-yellow);
}
.com-tel-txt p {
  margin-right: -0.5em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 20em;
  min-height: clamp(60px, 17.7777777778vw, 80px);
  line-height: 1.5;
  padding: 0.5em 1.5em 0.5em 3.5em;
}
.com-btn::before {
  width: 1.5em;
  left: 1.25em;
}
.com-btn > span {
  min-width: calc(100% - 2em);
}
.com-btn--min {
  width: 16em;
  min-height: clamp(50px, 15.5555555556vw, 70px);
}
.com-btn--min::before {
  width: 0.5em;
}

.com-mail {
  width: 20em;
  min-height: clamp(60px, 17.7777777778vw, 80px);
  line-height: 1.5;
  padding: 0.75em 2em;
}
.com-mail::before {
  display: none;
}
.com-mail > span::before {
  width: 1.5em;
  margin-right: 10px;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  width: 6.5em;
  padding: 1em 0.5em;
}
.com-table tr td {
  padding: 1em 0.5em;
}

/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}
.com-text br {
  display: none;
}

/* 画像
-----------------------------*/
.com-img img {
  border-radius: 1.41177em;
  outline-width: 3px;
  outline-offset: -3px;
}

/* 背景
-----------------------------*/
.com-bg-book {
  padding-top: 3em;
}
.com-bg-book::before {
  height: 2em;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-title);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-lg);
  gap: 0.5em;
  margin-bottom: 1.5em;
}
.com-title01 .en {
  font-size: 2em;
}
.com-title01 .ja {
  line-height: var(--line-height-title);
}

/*中タイトル
-----------------------------*/
.com-title02 {
  width: 100%;
  font-size: var(--font-size-lg);
  margin-bottom: 1em;
}
.com-title02 > span {
  line-height: var(--line-height-title);
}
.com-title02::after {
  height: 3px;
  margin-top: 0.5em;
  border-radius: 100vh;
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  background-size: 50em;
}
.com-contact::after {
  height: 9em;
  top: -2em;
}
.com-contact__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.com-contact__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 540px;
  gap: 30px 60px;
  padding: 2em 1em;
  border-radius: 1.41177em;
  margin: 2em auto 0;
}
.com-contact__box::before {
  width: 110%;
  height: 7em;
  bottom: -6.5em;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/* バナーセクション
-----------------------------*/
.top-bnr__inner::before {
  width: 3.5em;
  left: 0;
  top: -3em;
  transform: rotate(-15deg);
}
.top-bnr__title {
  font-size: var(--font-size-xxl);
  margin-bottom: 1.25em;
}
.top-bnr__title > span {
  line-height: var(--line-height-title);
}
.top-bnr__btn {
  margin: 0 auto;
}
.top-bnr__image {
  margin-top: 2em;
}
.top-bnr__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-bnr__image::before {
  content: "";
  width: 4.2em;
  aspect-ratio: 101/108;
  background: url(../img/common/deco_bare-book.png) no-repeat center/contain;
  position: absolute;
  left: -1em;
  bottom: -3.5em;
  z-index: 1;
}
.top-bnr__image::after {
  width: 5em;
  right: -1em;
  bottom: -3em;
}

/*ブログ
-----------------------------*/
.top-blog {
  padding: 4em 0;
}
.top-blog__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25em;
}
.top-blog__item {
  line-height: 1.5;
}
.top-blog__item:nth-of-type(3) {
  display: none;
}
.top-blog__item-link {
  padding: 1.25em;
  border-radius: 1.41177em;
  row-gap: 0.75em;
  outline-width: min(3px, 0.6666666667vw);
  outline-offset: max(-3px, -0.6666666667vw);
}
.top-blog__item-link > *:not(figure) {
  margin: -0.25em 0;
}
.top-blog__item-image {
  margin-bottom: min(6px, 1.3333333333vw);
}
.top-blog__item-image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-blog__item-image img {
  border-radius: 1.41177em;
}
.top-blog__item-tags, .top-blog__item-date {
  font-size: var(--font-size-sm);
}
.top-blog__btn {
  margin: 2em auto 0;
}

/*英語で広がる世界を、この教室から。
-----------------------------*/
.top-greeting {
  background-size: min(120px, 26.6666666667vw);
}
.top-greeting::after {
  display: none;
}
.top-greeting__text .en {
  font-size: var(--font-size-lg);
  line-height: 1.25;
}
.top-greeting__text .br {
  display: inline-block;
}
.top-greeting__btn {
  margin: 2em auto 0;
}
.top-greeting__images {
  align-items: flex-end;
  flex-direction: row-reverse;
  margin-top: 2em;
}
.top-greeting__images::before {
  width: 5em;
  right: 1em;
  bottom: 60%;
}
.top-greeting__image--back {
  margin-bottom: 2em;
  margin-right: -1em;
}

/*リンクセクション
-----------------------------*/
.top-link__items::after {
  width: 5em;
  bottom: -6.5em;
  right: 0;
}
.top-link__item {
  margin-bottom: 4em;
}
.top-link__item:last-of-type {
  margin-bottom: 0;
}
.top-link__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-link__inner {
  margin-top: -1.5em;
}
.top-link__title {
  flex-direction: row;
  -webkit-text-stroke-width: 0.25em;
  margin-bottom: 0.5em;
}
.top-link__title .ja {
  margin-bottom: 0 !important;
}
.top-link__title .ja::after {
  height: 4px;
  outline-width: 4px;
}
.top-link__btn {
  margin: 1em auto 0;
}

/*生徒さんの声
-----------------------------*/
.top-voice {
  padding: 2em 0 0;
}
.top-voice__box {
  width: 100%;
  padding: 4em 5%;
}
.top-voice__box::after {
  width: 92%;
  height: 6em;
}
.top-voice__btn {
  width: 13em;
  margin: 2em auto 0;
}

/*コラム
-----------------------------*/
.top-column::before {
  display: none;
}
.top-column__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 2.5em;
}
.top-column__item-link {
  grid-template-columns: 6em 1fr;
  row-gap: 10px;
}
.top-column__item-link > *:not(.top-column__item-title) {
  margin: -0.25em 0;
}
.top-column__item-title {
  font-size: 1.214286em;
  padding: 1em 0.75em;
  border-radius: 0.5em;
}
.top-column__btn {
  margin: 2em auto 0;
}

/*===============================================
  教室について
===============================================*/
/*講師紹介
-----------------------------*/
.concept-teacher .inbox::before {
  width: 4em;
  right: calc(50% - 10em);
  top: 1em;
  transform: rotate(15deg);
}
.concept-teacher .inbox::after {
  width: calc(100vw - 40px);
  max-width: 1220px;
  min-width: 1160px;
  height: 134px;
  bottom: 0;
}
.concept-teacher__image {
  width: 56%;
  max-width: 270px;
  margin: 0 auto 1em;
}
.concept-teacher__image img {
  aspect-ratio: 0.8571428571;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-teacher__list {
  padding-top: 2em;
}
.concept-teacher__heading {
  font-size: var(--font-size-xl);
  padding-top: 1.25em;
  margin-bottom: 0.5em;
}
.concept-teacher__heading span {
  padding-right: 1em;
}
.concept-teacher__heading span::after {
  width: calc(90vw - 100%);
  height: 3px;
  border-radius: 100vh;
}

/*当教室の特徴
-----------------------------*/
.concept-feature {
  background-size: min(120px, 26.6666666667vw);
}
.concept-feature__item {
  margin-bottom: 3em;
}
.concept-feature__inner::before {
  width: 2.5em;
  font-size: 2em;
  padding-top: 0.15em;
  right: calc(50% - 4em);
  top: 0;
}
.concept-feature__heading {
  align-items: center;
}
.concept-feature__image {
  max-width: 15em;
  margin: 0 auto 1.5em;
}
.concept-feature__image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.concept-feature__image::after {
  width: 32%;
  left: 0;
  bottom: 0;
}

/*教室情報
-----------------------------*/
.concept-info::after {
  width: 92%;
  height: 5em;
  top: -3em;
}
.concept-info__table {
  padding: 2em 1.25em;
  border-radius: 1.41177em;
}
.concept-info__table tr:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.concept-info__table tr td .mt {
  margin-top: 1em;
}
.concept-info__table tr td .mt br {
  display: none;
}
.concept-info__table tr td .com-replace {
  font-size: var(--font-size-sm);
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
.concept-info__image {
  margin-top: 1.5em;
}
.concept-info__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-info__map {
  height: min(400px, 88.8888888889vw);
  margin-top: 3em;
}

/*教室の雰囲気
-----------------------------*/
.concept-gallery__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1em;
}

/*===============================================
  コース紹介
===============================================*/
/*コース紹介　一覧
-----------------------------*/
.course-list__nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
  gap: 1em 1em;
}
.course-list__nav-item {
  width: 100%;
}
.course-list__nav-link {
  width: 100%;
}
.course-list__posts {
  padding-top: 3em;
}
.course-list__post {
  padding-top: 4em;
}
.course-list__post-title {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-title);
  padding: 0.75em 2.5em;
  border-radius: 1em;
  margin-bottom: 1.5em;
}
.course-list__post-title::before {
  width: 2em;
  left: 0.5em;
}
.course-list__post-item {
  margin-bottom: 20px;
}
.course-list__post-link {
  grid-template-columns: 7em 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: stretch;
  padding: 1em 4em 1em 1em;
  border-radius: 1.41177em;
}
.course-list__post-link::after {
  width: 2em;
  box-shadow: 0 0 0 2px var(--color-orange) inset, 0 0 0 3px #fff inset;
  right: 1em;
}
.course-list__post-heading {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5em;
}
.course-list__post-body {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.course-list__post-image img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

/*コース紹介　詳細
-----------------------------*/
.course-detail__tag {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-title);
  padding: 0.75em 2.5em;
  border-radius: 1em;
  margin-bottom: 1.5em;
}
.course-detail__tag::before {
  width: 2em;
  left: 0.5em;
}
.course-detail__box {
  padding: 2em 1.25em 1.25em;
  border-radius: 1.41177em;
}
.course-detail__body {
  border: dashed 1px var(--color-yellow);
  border-radius: 1.41177em;
  padding: 1.25em;
}
.course-detail__inner {
  padding-top: 2em;
}
.course-detail__table tr:last-of-type {
  border-bottom: none;
}
.course-detail__image {
  margin-top: 1.25em;
}
.course-detail__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================================
  ご利用案内
===============================================*/
/*お申し込みの流れ
-----------------------------*/
.guide-flow__item {
  margin-bottom: 3em;
}
.guide-flow__inner::before {
  width: 2.5em;
  font-size: 2em;
  padding-top: 0.15em;
  right: calc(50% - 4em);
  top: 0;
}
.guide-flow__heading {
  align-items: center;
}
.guide-flow__image {
  max-width: 15em;
  margin: 0 auto 1.5em;
}
.guide-flow__image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.guide-flow__image::after {
  width: 32%;
  left: 0;
  bottom: 0;
}

/*よくある質問
-----------------------------*/
.guide-faq__item {
  margin-bottom: 1.5em;
  border-radius: 1.41177em;
}
.guide-faq__heading {
  padding: 1em 4em 1em 1.25em;
}
.guide-faq__heading::before {
  font-size: 2.941177em;
  margin: -0.16em 0 0;
}
.guide-faq__heading > span {
  width: calc(100% - 2.5em);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-title);
  padding: 0.5em 0;
}
.guide-faq__heading::after {
  width: 3em;
  right: 0.5em;
}
.guide-faq__body {
  padding: 1em 1.25em;
}

/*===============================================
  生徒さんの声
===============================================*/
/*生徒さんの声　一覧
-----------------------------*/
.voice-list__item {
  padding: 2em 1.25em;
  border-radius: 1.41177em;
  margin-bottom: 1.5em;
}
.voice-list__heading {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
}
.voice-list__heading > span {
  margin: var(--margin-height-title) 0;
}
.voice-list__heading .course {
  width: 100%;
}
.voice-list__heading .course::before {
  display: none;
}

/*===============================================
  ブログ　一覧
===============================================*/
.blog-archive__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25em;
}
.blog-archive__item {
  line-height: 1.5;
}
.blog-archive__item-link {
  padding: 1.25em;
  border-radius: 1.41177em;
  row-gap: 0.75em;
  outline-width: min(3px, 0.6666666667vw);
  outline-offset: max(-3px, -0.6666666667vw);
}
.blog-archive__item-link > *:not(figure) {
  margin: -0.25em 0;
}
.blog-archive__item-image {
  margin-bottom: min(6px, 1.3333333333vw);
}
.blog-archive__item-image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-archive__item-image img {
  border-radius: 1.41177em;
}
.blog-archive__item-tags, .blog-archive__item-date {
  font-size: var(--font-size-sm);
}

/*==================================================
 コラム　一覧
================================================== */
.column-archive__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 2.5em;
}
.column-archive__item-link {
  grid-template-columns: 6em 1fr;
  row-gap: 10px;
}
.column-archive__item-link > *:not(.top-column__item-title) {
  margin: -0.25em 0;
}
.column-archive__item-title {
  font-size: 1.214286em;
  padding: 1em 0.75em;
  border-radius: 0.5em;
}

/*==================================================
 ブログ・コラム詳細
================================================== */
.article-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1em;
}
.article-detail__box {
  padding: 2em 1.25em;
  border-radius: 1.41177em;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 160px;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1em 2.5em 1em 1em;
}

/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 2.5em;
}
.contact-form__table table,
.contact-form__table table tbody,
.contact-form__table table th,
.contact-form__table table tr,
.contact-form__table table td {
  display: block !important;
  width: 100% !important;
}
.contact-form__table tr {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
}
.contact-form__table tr:last-of-type {
  margin-bottom: 0;
}
.contact-form__table tr th {
  padding: 0;
  margin-bottom: 1em;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0 0.5em;
  margin-top: 0.25em;
}
.contact-form__table tr td {
  padding: 0;
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.5em 1em;
}
.contact-form__table tr td .memo {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-top: 0.25em;
}
.contact-form .contact-submits-wrap {
  padding-top: 1em;
}
.contact-form .contact-submits-wrap > * {
  width: 20em;
  max-width: 100%;
  height: clamp(60px, 17.7777777778vw, 80px);
  margin: 0 auto 1.25em;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__title {
  margin-bottom: 2em;
}
.privacy-policy__box {
  margin-bottom: 3em;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
.sitemap-list__item:nth-of-type(1) {
  grid-column: span 2;
}
.sitemap-list__item:nth-of-type(1) .sitemap-list__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.sitemap-list__item:nth-of-type(1) .sitemap-list__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #e00031;
  margin-left: auto;
}
.sitemap-list__item:nth-of-type(1) .sitemap-list__link .en {
  color: #e00031;
}
.sitemap-list__item:nth-of-type(2) {
  grid-column: span 2;
}
.sitemap-list__item:nth-of-type(2) .sitemap-list__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.sitemap-list__item:nth-of-type(2) .sitemap-list__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #00c599;
  margin-left: auto;
}
.sitemap-list__item:nth-of-type(2) .sitemap-list__link .en {
  color: #00c599;
}
.sitemap-list__item:nth-of-type(3) {
  grid-column: span 2;
}
.sitemap-list__item:nth-of-type(3) .sitemap-list__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.sitemap-list__item:nth-of-type(3) .sitemap-list__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #f5ca2e;
  margin-left: auto;
}
.sitemap-list__item:nth-of-type(3) .sitemap-list__link .en {
  color: #f5ca2e;
}
.sitemap-list__item:nth-of-type(4) {
  grid-column: span 2;
}
.sitemap-list__item:nth-of-type(4) .sitemap-list__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.sitemap-list__item:nth-of-type(4) .sitemap-list__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #a1e000;
  margin-left: auto;
}
.sitemap-list__item:nth-of-type(4) .sitemap-list__link .en {
  color: #a1e000;
}
.sitemap-list__item:nth-of-type(5) {
  grid-column: span 2;
}
.sitemap-list__item:nth-of-type(5) .sitemap-list__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.sitemap-list__item:nth-of-type(5) .sitemap-list__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #2cbcf4;
  margin-left: auto;
}
.sitemap-list__item:nth-of-type(5) .sitemap-list__link .en {
  color: #2cbcf4;
}
.sitemap-list__item:nth-of-type(6) {
  grid-column: span 2;
}
.sitemap-list__item:nth-of-type(6) .sitemap-list__link {
  justify-self: flex-start;
  flex-direction: row;
  font-size: var(--font-size-base);
  padding: 1.5em 1.25em;
}
.sitemap-list__item:nth-of-type(6) .sitemap-list__link::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 1.5em;
  -webkit-mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_btn.svg) no-repeat left 56% center/24%, url(../img/common/arrow_btn-bg.svg) no-repeat center/contain;
  background-color: #ff8a17;
  margin-left: auto;
}
.sitemap-list__item:nth-of-type(6) .sitemap-list__link .en {
  color: #ff8a17;
}
.sitemap-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  font-size: var(--font-size-sm);
  gap: 0.5em 1em;
  padding: 1em 0;
  position: relative;
  z-index: 0;
}
.sitemap-list__link > span {
  display: block;
  line-height: 2;
  margin: -0.5em 0;
}
.sitemap-list__link .en {
  font-size: 0.857143em;
  font-family: var(--font-family-barlow);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-gray);
}

/*===============================================
  404エラー
===============================================*/