@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --text-color: #1f1f1f;
  --text-gray: #727272;
  --text-pink: #facdd9;
  --color-pink: #e77c9a;
  --color-bloom: #f6a6bc;
  --color-rose: #ca335a;
  --bg-pink: #ffeff3;
  --bg-yellow: #fcf6e7;
  --bg-gray: #f1f1f1;
  --grad-pink-yellow: linear-gradient(40deg, #ffafc5 0%, #f9ebc8 100%);
  --grad-pink-gray: linear-gradient(to right, #ffeff3 0%, #f1f1f1 100%);
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Noto Serif JP", serif;
  --font-family-garamond: "EB Garamond", serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 9.4rem;
    --font-size-h2: 3.6rem;
    --font-size-h3: 3.4rem;
    --font-size-h4: 2.8rem;
    --font-size-h5: 2rem;
    --font-size-h6: 1.8rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-h1: 1;
    --line-height-h2: 1;
    --line-height-h3: 1.35715;
    --line-height-h4: 1.5714286;
    --line-height-h5: 1.5;
    --line-height-h6: 1.666667;
    --line-height-base: 1.875;
    --line-height-base-mid: 1.625;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 2em;
    --font-size-h2: 1.75em;
    --font-size-h3: 1.5625em;
    --font-size-h4: 1.375em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

.com-table:not(.com-table--unblock) table,
.com-table:not(.com-table--unblock) table tbody,
.com-table:not(.com-table--unblock) table th,
.com-table:not(.com-table--unblock) table tr,
.com-table:not(.com-table--unblock) table td {
  display: block !important;
  width: 100% !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 {
  margin-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.3rem, 3.5555555556vw, 1.6rem);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: clamp(72px, 17.7777777778vw, 80px);
}
#header .header__logo {
  width: min(136px, 30.2222222222vw);
}
#header .header__logo img {
  aspect-ratio: 136/64;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: min(60px, 13.3333333333vw) 0 min(45px, 10vw);
}
#footer .footer__inner {
  padding: 0 5%;
}
#footer .footer__other {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.5em;
}
#footer .footer__logo {
  width: min(225px, 50vw);
  margin-bottom: 0.5em;
}
#footer .footer__logo img {
  aspect-ratio: 2/1;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .footer__links {
  gap: clamp(30px, 8.8888888889vw, 40px);
}
#footer .footer__link--sns {
  width: clamp(50px, 13.3333333333vw, 60px);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  padding-top: 2.5em;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 0.5em;
}
.footer-nav__item {
  font-size: var(--font-size-sm);
  border-bottom: solid 1px var(--text-pink);
}
.footer-nav__item:nth-last-of-type(n + 5) {
  font-size: var(--font-size-base);
  grid-column: span 2;
}
.footer-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  padding: 1.25em 0.5em;
}
.footer-nav__link::after {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 9/15;
  -webkit-mask: url(../img/common/arrow_link.svg) no-repeat center/contain;
          mask: url(../img/common/arrow_link.svg) no-repeat center/contain;
  background-color: var(--color-pink);
}

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

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 8px;
  bottom: 8px;
}

/*サイドボタン
-----------------------------*/
#side {
  left: 8px;
  bottom: 8px;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: min(700px, 175vw - clamp(72px, 17.7777777778vw, 80px));
}
.visual__main-catch {
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 480px;
  padding: 2em 1em 0;
  gap: 1.5em 1.25em;
}
.visual__main-catch::before {
  width: 56%;
  max-width: 280px;
  aspect-ratio: 2/3;
  background-size: 90%, 36%;
  bottom: min(25px, 5vw);
  left: max(-150px, -30%);
}
.visual__main-catch .label {
  font-size: min(4rem, 8.8888888889vw);
  -webkit-text-stroke-width: 0.2em;
  text-shadow: 0 0 0.25em #fff;
}
.visual__main-catch .label::first-letter {
  font-size: 1.25em;
}
.visual__main-catch .label::before {
  width: min(70px, 15.5555555556vw);
  top: max(-10px, -2.2222222222vw);
  left: max(-10px, -2.2222222222vw);
}
.visual__main-catch .main {
  width: 100%;
  font-size: min(2rem, 4.4444444444vw);
  line-height: 2;
  text-shadow: 0 0 10px var(--color-pink);
  padding: 0.5em 0;
}
.visual__main-catch .main::before {
  width: 100vw;
  right: 0;
  border-radius: 0 100vh 100vh 0;
}
.visual__main-image--01 {
  width: 80%;
  height: 42%;
  top: 0;
  right: 0;
}
.visual__main-image--01 img {
  border-radius: 100vh 0 0 100vh;
  -o-object-position: center top;
     object-position: center top;
}
.visual__main-image--01::before {
  width: 50%;
  height: 90%;
  background-size: 90%, 45%;
  top: 2%;
  left: -15%;
}
.visual__main-image--02 {
  width: min(144px, 32vw);
  top: 2%;
  left: 2%;
}
.visual__main-image--03 {
  width: min(117px, 26vw);
  top: 24%;
  left: 15%;
}
.visual__main-image--03::before {
  width: 56%;
  left: -32%;
  top: -12%;
}
.visual__main-image--04 {
  width: min(189px, 42vw);
  bottom: 0;
  left: 4%;
}
.visual__main-image--05 {
  width: 32%;
  max-width: 192px;
  bottom: 6%;
  right: 12%;
}
.visual__main-image--06 {
  width: 26%;
  max-width: 156px;
  max-width: 216px;
  bottom: 36%;
  right: -2%;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  justify-content: center;
  height: min(300px, 66.6666666667vw);
}
.visual__sub-catch {
  text-align: center;
  width: 88%;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5em 1em;
  border-radius: 100vh;
}
.visual__sub-catch::before {
  display: none;
}
.visual__sub-catch > span {
  font-size: min(2.8rem, 6.2222222222vw);
  font-weight: 500;
  line-height: 1.5;
  -webkit-text-stroke-width: 0.15em;
  text-shadow: 0 0 0.2em #fff;
}
.visual__sub-catch > span::before {
  display: none;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
#container::before {
  height: calc(100% - min(135px, 30vw));
}
#container::after {
  width: 125%;
  max-width: calc(100% + 110px);
  height: min(180px, 40vw);
  top: min(45px, 10vw);
}
#container > *:first-child:not(.breadcrumb)::after,
#container .breadcrumb + *::after {
  width: 115%;
  max-width: calc(100% + 60px);
  height: min(300px, 66.6666666667vw);
  bottom: clamp(-180px, -40vw, -128px);
}
#container > *:first-child:not(.breadcrumb) + .section:not(.com-contact),
#container .breadcrumb + * + .section:not(.com-contact) {
  margin-top: clamp(-45px, -10vw, -32px);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 0.75em;
}
.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: min(88px, 19.5555555556vw) 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  row-gap: 0.75em;
}
.com-tel-num {
  font-size: var(--font-size-h2);
}
.com-tel-num::before {
  width: 0.75em;
  margin-right: 0.25em;
}
.com-tel .com-replace {
  font-size: var(--font-size-xs);
  height: 1em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 18em;
  height: clamp(60px, 15.5555555556vw, 70px);
  border-radius: 1.5em 0.5em;
}
.com-btn::after {
  width: 2em;
  -webkit-mask-size: auto 0.875em;
          mask-size: auto 0.875em;
}
.com-btn--mail::before {
  width: 1.5em;
  margin-right: 10px;
}
.com-btn--mail::after {
  display: none;
}

.com-extlink {
  min-height: clamp(60px, 15.5555555556vw, 70px);
  font-size: var(--font-size-base);
  line-height: 1.5;
  padding: 1em 2em 1em 1.5em;
  border-radius: 0.75em;
}
.com-extlink::after {
  width: 5px;
  right: 0.5em;
}
.com-extlink--bg::before {
  width: 5em;
  transform: rotate(-25deg);
  top: -1px;
  left: -4px;
}

/*テーブル
-----------------------------*/
.com-table:not(com-table--unblock) tr {
  padding-bottom: 1.25em;
  margin-bottom: 1.25em;
}
.com-table:not(com-table--unblock) tr:last-of-type {
  margin-bottom: 0;
}
.com-table:not(com-table--unblock) tr th {
  margin-bottom: 0.5em;
}
/*テキストボックス
-----------------------------*/
.com-text strong {
  font-size: var(--font-size-h6);
  line-height: 1.77778;
}
.com-text .mb {
  margin-bottom: 1em;
}
.com-text br {
  display: none;
}

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

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  gap: 1em;
  margin-bottom: 2.5em;
}
.com-title01 .en {
  font-size: 2.5em;
  margin: -0.1489362em 0 -0.1276596em;
}
.com-title01 .ja {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-title);
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-h4);
  margin-bottom: 1em;
}
.com-title02 > * {
  line-height: var(--line-height-title);
}
.com-title02--deco {
  padding-top: 0.75em;
  padding-left: 1em;
}
.com-title02--deco::before {
  width: 2.5em;
  top: 0;
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  overflow: hidden;
}
.com-contact::before {
  display: none;
}
.com-contact__text p:has(strong) {
  margin-right: -0.5em;
  margin-bottom: 0.5em;
}
.com-contact__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.25em;
  background: #fff;
  padding: 1.25em;
  border-radius: 1em;
  margin-top: 2em;
}
.com-contact__box::after {
  width: 110vw;
  max-width: calc(100% + 80px);
  height: min(225px, 50vw);
  bottom: max(-88px, -19.5555555556vw);
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*元タカラジェンヌが主宰する
Kei Music Street
-----------------------------*/
.top-about__btn {
  width: 21em;
  margin: 2em auto 0;
}
.top-about__image {
  width: 90vw;
  margin-left: -5vw;
  margin-top: 2.5em;
}
.top-about__image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 100vh 100vh 0;
}

/*レッスン紹介
-----------------------------*/
.top-lesson::before {
  width: min(240px, 53.3333333333vw);
  aspect-ratio: 2/3;
  background-size: min(90px, 20vw), min(180px, 40vw);
  left: max(-112px, -25%);
  bottom: max(-210px, -46.6666666667vw);
}
.top-lesson__list {
  padding-top: 2.5em;
}
.top-lesson__item {
  margin-bottom: 1.25em;
}
.top-lesson__item:last-of-type {
  margin-bottom: 0;
}
.top-lesson__link {
  display: grid;
  grid-template-columns: min(120px, 26.6666666667vw) 1fr;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.top-lesson__link::before {
  width: 2em;
  top: 50%;
  transform: translateY(-50%);
}
.top-lesson__link::after {
  width: 2.25em;
  height: 2em;
  -webkit-mask-size: 1.5em;
          mask-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}
.top-lesson__image {
  aspect-ratio: 4/5;
  border-radius: 100vw 100vw 0 0;
}
.top-lesson__txt {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 0;
}
.top-lesson__btn {
  margin: 2.5em auto 0;
}

/*キッズ応援キャンペーン
-----------------------------*/
.top-campaign::before {
  background-size: min(640px, 100%), auto;
}
.top-campaign::after {
  background-size: 42%;
}
.top-campaign__text .min {
  font-size: var(--font-size-sm);
  margin-top: 1em;
}
.top-campaign__btn {
  width: 24em;
  margin: 2em auto 0;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr::before {
  width: 100%;
  height: min(135px, 30vw);
}
.top-bnr__item {
  margin-bottom: 1.5em;
}
.top-bnr__item:last-of-type {
  margin-bottom: 0;
}
.top-bnr__image {
  aspect-ratio: 16/9;
  border-radius: 3em 0.5em 0 0;
}
.top-bnr__text::before {
  width: 2.5em;
  top: 50%;
  right: -0.5em;
  transform: translateY(-50%);
}
.top-bnr__text::after {
  width: 3em;
  height: 2.5em;
  -webkit-mask-size: 1.8em;
          mask-size: 1.8em;
  top: 50%;
  right: -0.5em;
  transform: translateY(-50%);
}
.top-bnr__text-wrap {
  padding: 1.25em 3em 1.25em 1.25em;
  border-radius: 0 0 3em 0.5em;
}
.top-bnr__heading {
  font-size: var(--font-size-h4);
  margin-bottom: 1em;
}

/*お知らせ
-----------------------------*/
.top-news__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 2.5em;
}
.top-news__item-link {
  grid-template-columns: 6em 1fr;
  row-gap: 10px;
}
.top-news__item-link > *:not(.top-news__item-title) {
  margin: -0.25em 0;
}
.top-news__item-title {
  font-size: 1.214286em;
  padding: 1em 0.75em;
  border-radius: 0.5em;
}
.top-news__btn {
  margin: 2em auto 0;
}

/*===============================================
  Kei Music Streetについて
===============================================*/
/*ご挨拶
-----------------------------*/
.about-greeting::before {
  width: min(240px, 53.3333333333vw);
  aspect-ratio: 2/3;
  background-size: min(90px, 20vw), min(180px, 40vw);
  left: max(-112px, -25%);
  bottom: max(-210px, -46.6666666667vw);
}
.about-greeting__image {
  padding-top: 2.5em;
}
.about-greeting__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-greeting__image img {
  border-radius: 3em 0.5em;
}

/*スクールの特徴
-----------------------------*/
.about-feature__item {
  display: grid;
  grid-template-columns: min(120px, 26.6666666667vw) 1fr;
  align-items: flex-start;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
  margin-bottom: 50px;
}
.about-feature__image img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vw 100vw 0 0;
}
.about-feature__inner {
  position: relative;
  z-index: 0;
}
.about-feature__inner::before {
  font-size: 3em;
  margin-top: -0.2em;
  top: 0;
  right: 0;
  opacity: 0.5;
}
.about-feature__heading {
  transform: translateX(-1em);
}

/*講師紹介
-----------------------------*/
.about-teacher__item {
  padding-bottom: 2.5em;
  margin-bottom: 2.5em;
}
.about-teacher__icon {
  width: 12em;
  margin: 0 auto 2em;
}
.about-teacher__charge {
  padding-bottom: 1px;
  margin-bottom: 2em;
}

/*スクール情報
-----------------------------*/
.about-info::before {
  width: 125%;
  max-width: calc(100% + 112px);
  height: calc(100% - clamp(-135px, -30vw, -96px));
  background-size: min(180px, 40vw), min(90px, 20vw);
  left: 45%;
  top: min(45px, 10vw);
  transform: translateX(-50%);
}
.about-info:has(.about-info__map)::before {
  height: calc(100% - clamp(320px, 100vw, 450px));
}
.about-info::after {
  display: none;
}
.about-info__table {
  border-radius: 3em 0.5em;
  padding: calc(2em + (1em - 1lh) / 2) 1.5em;
}
.about-info__table tr th {
  width: 7.5em;
  padding: 0.75em 0;
}
.about-info__table tr td {
  padding: 0.75em 0;
}
.about-info__table tr td .com-replace {
  font-size: var(--font-size-sm);
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-info__image {
  margin-top: 2em;
}
.about-info__image img {
  border-radius: 3em 0.5em;
}
.about-info__map {
  height: clamp(256px, 80vw, 360px);
  margin-top: min(88px, 19.5555555556vw);
}

/*===============================================
  レッスン紹介
===============================================*/
/*レッスンについて
-----------------------------*/
.lesson-about::before {
  width: min(240px, 53.3333333333vw);
  aspect-ratio: 2/3;
  background-size: min(90px, 20vw), min(180px, 40vw);
  left: max(-112px, -25%);
  bottom: max(-210px, -46.6666666667vw);
}
.lesson-about::after {
  bottom: clamp(-448px, -99.5555555556vw, -300px);
}
.lesson-about__image {
  margin-top: 2em;
}
.lesson-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-about__image img {
  border-radius: 3em 0.5em;
}

/*コース紹介
-----------------------------*/
.lesson-list__text {
  text-align: center;
}
.lesson-list__nav {
  padding-top: 1.5em;
}
.lesson-list__nav-item {
  margin-bottom: 1em;
}
.lesson-list__nav-item:last-of-type {
  margin-bottom: 0;
}
.lesson-list__nav-link {
  width: 100%;
  line-height: 1.25;
}
.lesson-list__nav-link .br {
  display: inline-block;
}
.lesson-list__nav-link:has(.br) {
  padding-left: 0.5em;
}
.lesson-list__posts {
  padding-top: 0.5em;
}
.lesson-list__post {
  padding-top: 2.5em;
}
.lesson-list__post .com-empty {
  padding: 1.5em 0;
}
.lesson-list__heading {
  min-height: 2.5em;
}
.lesson-list__heading .br {
  display: inline-block;
  font-size: 0.727273em;
}
.lesson-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em 1em;
}
.lesson-list__item-link::before {
  width: 2em;
  top: calc((45vw - 0.5em) * 2 / 3 - 2em);
}
.lesson-list__item-link::after {
  width: 2.25em;
  height: 2em;
  -webkit-mask-size: 1.5em;
          mask-size: 1.5em;
  top: calc((45vw - 0.5em) * 2 / 3 - 2em);
}
.lesson-list__item-image {
  border-radius: 2.5em 0.5em;
  margin-bottom: 1em;
}
.lesson-list__item-image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-list__item-title {
  font-size: var(--font-size-base);
  padding-bottom: 0.25em;
}
.lesson-list__box {
  padding-top: 2.5em;
}
.lesson-list__body {
  padding: calc(2.5em + (1em - 1lh) / 2) 1.25em calc(2em + (1em - 1lh) / 2);
  border-radius: 3em 0.5em;
}

/*コース詳細
-----------------------------*/
.lesson-detail::before {
  width: clamp(390px, 128.8888888889vw, 580px);
  height: clamp(453px, 150.8888888889vw, 679px);
  background-size: clamp(248px, 19.2708333333vw, 370px), clamp(155px, 51.1111111111vw, 230px);
  left: max(50% - 1050px, -12%);
  top: clamp(250px, 82.8888888889vw, 373px);
}
.lesson-detail__box {
  padding: calc(2.5em + (1em - 1lh) / 2) 1.25em calc(2em + (1em - 1lh) / 2);
  border-radius: 3em 0.5em;
}
.lesson-detail__heading {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-title);
  margin-bottom: 1.5em;
}
.lesson-detail__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 2em;
  row-gap: 1.25em;
}
.lesson-detail__inner > * {
  width: 100%;
}
.lesson-detail__table tr th {
  width: 6em;
  padding: 0.75em 0;
}
.lesson-detail__table tr td {
  padding: 0.75em 0;
}
.lesson-detail__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-detail__image img {
  border-radius: 3em 0;
}

/*===============================================
  初めての方へ
===============================================*/
/*お申し込みの流れ
-----------------------------*/
.beginner-flow::before {
  width: min(240px, 53.3333333333vw);
  aspect-ratio: 2/3;
  background-size: min(90px, 20vw), min(180px, 40vw);
  left: max(-112px, -25%);
  bottom: max(-210px, -46.6666666667vw);
}
.beginner-flow__item {
  display: grid;
  grid-template-columns: min(120px, 26.6666666667vw) 1fr;
  align-items: flex-start;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
  margin-bottom: 50px;
}
.beginner-flow__image img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vw 100vw 0 0;
}
.beginner-flow__inner {
  position: relative;
  z-index: 0;
}
.beginner-flow__inner::before {
  font-size: 3em;
  margin-top: -0.2em;
  top: 0;
  right: 0;
  opacity: 0.5;
}
.beginner-flow__heading {
  transform: translateX(-1em);
}
.beginner-flow__contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  padding-top: 1.5em;
}
.beginner-flow__mail {
  width: 100%;
  max-width: 18em;
}

/*入会案内
-----------------------------*/
.beginner-info__text {
  padding: calc(2em + (1em - 1lh) / 2) 1.25em;
  border-radius: 3em 0.5em;
}
.beginner-info + .beginner-faq {
  margin-top: clamp(-45px, -10vw, -32px);
}

/*よくある質問
-----------------------------*/
.beginner-faq__item {
  margin-bottom: 2.5em;
}
.beginner-faq__heading {
  padding: 1em 1.25em;
  border-radius: 0.5em;
  margin-bottom: 1.25em;
}
.beginner-faq__heading::before {
  font-size: var(--font-size-h1);
  margin-top: -0.15625em;
  padding-bottom: 0.15625em;
}
.beginner-faq__heading > span {
  width: calc(100% - 2.5em);
  font-size: var(--font-size-h6);
  line-height: var(--line-height-title);
  margin-top: 0.1em;
}
.beginner-faq__body {
  padding-left: 1.25em;
}

/*===============================================
  スクール生の声
===============================================*/
/*スクール生の声　一覧
-----------------------------*/
.voice-list::after {
  bottom: clamp(-135px, -30vw, -96px) !important;
}
.voice-list__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em 1em;
}
.voice-list__image {
  outline-width: 3px;
  outline-offset: -3px;
  border-radius: min(30px, 6.6666666667vw);
  padding: 1em 0;
  margin-bottom: 1.25em;
}
.voice-list__image img {
  width: 100%;
}
.voice-list__status {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-title);
}

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

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 10em;
}
.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;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1em;
}
.news-detail__box {
  padding: calc(2em + (1em - 1lh) / 2) 1.25em;
}
.news-detail__box::before {
  border-radius: 3em 0.5em;
}

/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 2.5em;
}
.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 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 .contact-submits-wrap {
  padding-top: 1em;
}
.contact-form .contact-submits-wrap > * {
  width: 20em;
  max-width: 100%;
  height: clamp(60px, 15.5555555556vw, 70px);
  border-radius: 1.5em 0.5em;
  margin: 0 auto 1.25em;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  margin-bottom: 2.5em;
}
.privacy-policy__box-text {
  padding-left: 1.375em;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__item {
  margin-bottom: 10px;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

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