@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;
  }
}
/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-base);
  padding-top: 3em;
}
.pagenation li {
  width: 36px;
  line-height: 40px;
  margin: 5px 4px 0;
}

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

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
  font-size: var(--font-size-base);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
#header .header__logo {
  width: 163px;
  width: clamp(142px, 11.0810810811vw, 164px);
}
#header .header__logo img {
  aspect-ratio: 164/76;
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
#header .header__btn {
  font-size: clamp(1.4rem, 1.0810810811vw, 1.6rem);
  padding: 0.875em 1.875em;
}

/*===============================================
  footer
===============================================*/
#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1080px;
  padding: 90px 0 80px;
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
}
#footer .footer__logo {
  width: 163px;
}
#footer .footer__logo img {
  width: 100%;
  aspect-ratio: 163/76;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
#footer .footer__info {
  margin-block: calc((1em - 1lh) / 2);
}
#footer .footer__links {
  padding-top: 30px;
  gap: 30px;
}
#footer .footer__link {
  width: 220px;
}
#footer .footer__link--sns {
  width: 40px;
}

/*フッターナビ
-----------------------------*/
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 40px 45px;
}
.footer-nav__link {
  line-height: var(--line-height-base);
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-sm);
  padding-block: calc(1em - 2px);
}

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

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

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: clamp(540px, 41.1458333333vw, 790px);
  padding-top: 17px;
}
.visual__main-catch {
  row-gap: clamp(32px, 2.5vw, 48px);
  margin-left: max(50% - 960px, 0px);
}
.visual__main-catch::before {
  width: clamp(275px, 21.3541666667vw, 410px);
  aspect-ratio: 41/69;
  background-size: clamp(248px, 19.2708333333vw, 370px), clamp(114px, 8.8541666667vw, 170px);
  bottom: clamp(-120px, -6.25vw, -80px);
  left: clamp(-70px, -3.6458333333vw, -48px);
}
.visual__main-catch .label {
  font-size: clamp(3.6rem, 2.8125vw, 5.4rem);
  -webkit-text-stroke-width: 8px;
  text-shadow: 0 0 15px #fff;
  margin-top: -0.0925926em;
}
.visual__main-catch .label::first-letter {
  font-size: clamp(4rem, 3.125vw, 6rem);
}
.visual__main-catch .label::before {
  width: clamp(60px, 4.6875vw, 90px);
  top: clamp(-15px, -0.78125vw, -10px);
  left: clamp(-15px, -0.78125vw, -10px);
}
.visual__main-catch .label:nth-of-type(1) {
  margin-left: clamp(66px, 5.1041666667vw, 98px);
}
.visual__main-catch .label:nth-of-type(2) {
  margin-left: clamp(106px, 8.2291666667vw, 158px);
}
.visual__main-catch .label:nth-of-type(3) {
  margin-left: clamp(46px, 3.59375vw, 69px);
}
.visual__main-catch .main {
  text-align: center;
  width: clamp(365px, 28.3333333333vw, 544px);
  font-size: clamp(2rem, 1.5625vw, 3rem);
  line-height: 2;
  text-shadow: 0 0 10px var(--color-pink);
  padding: 10px;
  margin-top: clamp(20px, 1.5625vw, 30px);
}
.visual__main-catch .main::before {
  width: max(100%, 100% + 50vw - 960px);
  border-radius: 0 100vh 100vh 0;
}
.visual__main-image--01 {
  width: max(50% - 210px, 39.0625%);
  height: 100%;
  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.667%;
  max-width: 380px;
  height: 91.14%;
  background-size: 97.369%, 44.737%;
  top: 2.5317%;
  left: max(-160px, -21.334%);
}
.visual__main-image--02 {
  width: clamp(235px, 19.2708333333vw, 370px);
  top: 0;
  right: max(50% - 210px, 39.0625%);
}
.visual__main-image--03 {
  width: clamp(154px, 12.8125vw, 246px);
  top: 3.7975%;
  right: min(50% + 240px, 62.5%);
}
.visual__main-image--03::before {
  width: 56.911%;
  left: -32.521%;
  top: -12.196%;
}
.visual__main-image--04 {
  width: clamp(145px, 11.9791666667vw, 230px);
  top: 40.254%;
  right: min(50% + 130px, 56.771%);
}
.visual__main-image--05 {
  width: clamp(195px, 16.1458333333vw, 310px);
  bottom: 0;
  right: max(50% - 210px, 39.0625%);
}
.visual__main-image--06 {
  width: clamp(125px, 10.4166666667vw, 200px);
  bottom: 2.5317%;
  right: min(50% + 260px, 63.542%);
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(310px, 23.9583333333vw, 460px);
}
.visual__sub::before {
  width: 56.25%;
  max-width: calc(50% + 120px);
  border-radius: 100vh 0 0 100vh;
}
.visual__sub-catch {
  padding-left: clamp(120px, 9.375vw, 180px);
  margin-left: max(50% - 960px, 0px);
}
.visual__sub-catch::before {
  width: clamp(410px, 31.7708333333vw, 610px);
  aspect-ratio: 61/41;
  background-size: clamp(248px, 19.2708333333vw, 370px), clamp(114px, 8.8541666667vw, 170px);
  top: calc(50% + clamp(20px, 1.5625vw, 30px));
  left: clamp(-70px, -3.6458333333vw, -48px);
  transform: translateY(-50%);
}
.visual__sub-catch > span {
  font-size: clamp(3.6rem, 2.8125vw, 5.4rem);
  -webkit-text-stroke-width: 8px;
  text-shadow: 0 0 15px #fff;
  margin-top: -0.0925926em;
}
.visual__sub-catch > span::first-letter {
  font-size: clamp(4rem, 3.125vw, 6rem);
}
.visual__sub-catch > span::before {
  width: clamp(60px, 4.6875vw, 90px);
  top: clamp(-15px, -0.78125vw, -10px);
  left: clamp(-15px, -0.78125vw, -10px);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  font-size: clamp(1.4rem, 1.0810810811vw, 1.6rem);
  font-family: var(--font-family-mincho);
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em 2em;
}
.gnav__link {
  display: block;
  line-height: var(--line-height-base);
  margin-block: calc((1em - 1lh) / 2);
  position: relative;
  z-index: 0;
}
.gnav__link::after {
  content: "";
  width: 0;
  height: 1px;
  background: #ca335a;
  border-radius: 100vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.gnav__link:hover {
  color: #ca335a;
}
.gnav__link[aria-current=page]::after {
  width: 100%;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
#container::before {
  min-width: 1920px;
  height: calc(100% - clamp(170px, 9.8958333333vw, 190px));
}
#container::after {
  width: 112.5%;
  max-width: 2160px;
  height: clamp(248px, 19.2708333333vw, 370px);
  top: clamp(48px, 3.6458333333vw, 70px);
}
#container > *:first-child:not(.breadcrumb)::after,
#container .breadcrumb + *::after {
  content: "";
  width: 105%;
  max-width: 1860px;
  height: clamp(496px, 38.8020833333vw, 745px);
}
#container > *:first-child:not(.breadcrumb) + .section:not(.com-contact),
#container .breadcrumb + * + .section:not(.com-contact) {
  margin-top: clamp(-120px, -6.25vw, -100px);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 60px;
}
.breadcrumb__list {
  width: 1080px;
}
.breadcrumb__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: clamp(100px, 6.25vw, 120px) 0;
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
.com-tel {
  row-gap: 14px;
}
.com-tel-num {
  font-size: var(--font-size-h2);
}
.com-tel-num::before {
  width: 26px;
  margin-right: 12px;
}
.com-tel-num span {
  margin: -0.1666667em 0 -0.0555556em;
}
.com-tel .com-replace {
  font-size: var(--font-size-sm);
  height: 1em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 410px;
  height: 80px;
  border-radius: 34px 6px;
}
.com-btn::after {
  width: 38px;
}
.com-btn--mail::before {
  width: 1.5em;
  margin-right: 10px;
}

.com-extlink {
  min-height: 60px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base-mid);
  padding: 14px 30px;
  border-radius: 12px;
}
.com-extlink::after {
  width: 5px;
  right: 14px;
}
.com-extlink--bg {
  border-radius: 22px;
}
.com-extlink--bg::before {
  width: 84px;
  transform: rotate(-25.17deg);
  top: -1px;
  left: -4px;
}

/*テーブル
-----------------------------*/
/*テキストボックス
-----------------------------*/
.com-text strong {
  font-size: var(--font-size-h6);
  line-height: 1.77778;
}
.com-text p {
  margin-right: -0.5em;
}
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}

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

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  gap: 34px;
  margin-bottom: 70px;
}
.com-title01 .en {
  font-size: var(--font-size-h1);
  margin: -0.1489362em 0 -0.1276596em;
}
.com-title01 .ja {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h3);
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-h4);
  margin-bottom: 30px;
}
.com-title02 > * {
  line-height: var(--line-height-h4);
}
.com-title02--deco {
  padding-top: 26px;
  padding-left: 50px;
}
.com-title02--deco::before {
  width: 76px;
  top: 0;
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  overflow: hidden;
}
.com-contact::before {
  width: 96%;
  min-width: 1420px;
  max-width: calc(50% + 760px);
  right: min(50% - 750px, 0px);
}
.com-contact__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  min-height: 200px;
  padding-right: 520px;
}
.com-contact__inner::before {
  content: "";
  width: 320px;
  aspect-ratio: 1;
  background: url(../img/common/circle_gra.svg) no-repeat left top/contain;
  position: absolute;
  right: 300px;
  bottom: -7px;
  z-index: -2;
}
.com-contact__title {
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
}
.com-contact__text p:has(strong) {
  margin-bottom: 12px;
}
.com-contact__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 470px;
  height: 385px;
  row-gap: 50px;
  padding: 60px 65px 30px;
  position: absolute;
  right: 0;
  bottom: clamp(-120px, -6.25vw, -100px);
}
.com-contact__box::before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -2;
}
.com-contact__box::after {
  width: calc(100% + 200px);
  height: 287px;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*元タカラジェンヌが主宰する
Kei Music Street
-----------------------------*/
.top-about::after {
  bottom: clamp(-480px, -25vw, -320px);
}
.top-about .inbox {
  width: calc(100% - 40px);
  max-width: 1280px;
}
.top-about__inner {
  width: calc(50% - 12px);
  min-width: 610px;
  min-height: 555px;
  margin-left: auto;
  position: relative;
}
.top-about__btn {
  margin-top: 70px;
}
.top-about__image {
  width: calc(50vw - 50px);
  min-width: 550px;
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(100% + 63px);
}
.top-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 58% center;
     object-position: 58% center;
  border-radius: 0 100vh 100vh 0;
}

/*レッスン紹介
-----------------------------*/
.top-lesson::before {
  width: clamp(330px, 25.78125vw, 495px);
  height: calc(100% - 60px);
  min-height: clamp(420px, 32.8125vw, 630px);
  max-height: 952px;
  background-size: 74.748%, 51.718%;
  left: max(50% - 1050px, -4.6875%);
  bottom: 30px;
}
.top-lesson::after {
  width: 68.75%;
  max-width: 1320px;
  height: clamp(130px, 10.15625vw, 195px);
  bottom: clamp(-30px, -1.5625vw, -20px);
}
.top-lesson__text {
  text-align: center;
}
.top-lesson__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  padding-top: 70px;
}
.top-lesson__link::before {
  width: 50px;
  top: 330px;
}
.top-lesson__link::after {
  width: 62px;
  height: 50px;
  top: 330px;
}
.top-lesson__image {
  aspect-ratio: 33/39;
  border-radius: 100vw 100vw 0 0;
  margin-right: 10px;
  margin-bottom: 26px;
}
.top-lesson__link:hover::after {
  width: 56px;
}
.top-lesson__txt {
  justify-content: center;
  min-height: 72px;
  margin-bottom: 0;
}
.top-lesson__btn {
  margin: 70px auto 0;
}

/*キッズ応援キャンペーン
-----------------------------*/
.top-campaign::before {
  width: calc(50% + 540px);
  background-size: clamp(800px, 50.7291666667vw, 974px), 100%;
  border-top-left-radius: 220px;
}
.top-campaign::after {
  width: calc(50% + 540px);
  background-size: min(616px, 41.067%);
}
.top-campaign__inner {
  padding-left: clamp(120px, 9.375vw, 180px);
}
.top-campaign__title {
  align-items: flex-start;
}
.top-campaign__text .min {
  font-size: var(--font-size-sm);
  line-height: 2;
  margin-top: 12px;
}
.top-campaign__btn {
  margin-top: 70px;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr::before {
  width: 100%;
  min-width: 1320px;
  max-width: 1796px;
  height: clamp(218px, 17.0833333333vw, 328px);
}
.top-bnr__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px 40px;
}
.top-bnr__item {
  width: 520px;
}
.top-bnr__link:hover .top-bnr__text::after {
  width: 56px;
}
.top-bnr__image {
  width: 450px;
  aspect-ratio: 450/310;
  border-radius: 80px 0;
}
.top-bnr__text::before {
  width: 50px;
  top: 0;
}
.top-bnr__text::after {
  width: 62px;
  height: 50px;
  top: 0;
}
.top-bnr__text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: calc(100% - 120px);
  margin-left: auto;
  padding: 30px 50px;
  border-radius: 100vh;
  margin-top: -110px;
}
.top-bnr__heading {
  font-size: var(--font-size-h3);
  margin-bottom: 26px;
}
.top-bnr__heading > span {
  line-height: 1.5;
}

/*お知らせ
-----------------------------*/
.top-news {
  padding: 90px 0;
}
.top-news__box {
  display: grid;
  grid-template: "title list" auto "btn list" 1fr/290px 1fr;
  gap: 46px 80px;
  align-items: start;
}
.top-news__title {
  row-gap: 32px;
  margin-bottom: 0;
  grid-area: title;
}
.top-news__title .en {
  margin-top: -0.1914894em;
}
.top-news__list {
  grid-area: list;
  padding-right: 40px;
}
.top-news__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 20px;
}
.top-news__item:nth-of-type(2n) {
  transform: translateX(40px);
}
.top-news__item-link {
  grid-template-columns: auto 1fr;
  row-gap: 10px;
}
.top-news__item-link > *:not(.top-news__item-title) {
  margin-block: calc((1em - 1lh) / 2);
}
.top-news__item-date {
  padding-left: 40px;
}
.top-news__item-tags {
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding-right: 40px;
}
.top-news__item-title {
  font-size: var(--font-size-base);
  padding: 11px 40px;
  border-radius: 100vh;
}
.top-news__btn {
  grid-area: btn;
}

/*===============================================
  Kei Music Streetについて
===============================================*/
/*ご挨拶
-----------------------------*/
.about-greeting::before {
  width: clamp(330px, 25.5208333333vw, 490px);
  height: clamp(630px, 48.9583333333vw, 940px);
  background-size: clamp(155px, 11.9791666667vw, 230px), clamp(248px, 19.2708333333vw, 370px);
  left: max(50% - 1050px, -12%);
  bottom: clamp(-195px, -10.15625vw, -130px);
}
.about-greeting::after {
  bottom: clamp(-380px, -19.7916666667vw, -280px);
}
.about-greeting__text {
  text-align: center;
}
.about-greeting__image {
  text-align: center;
  padding-top: 70px;
}
.about-greeting__image img {
  border-radius: 80px 0;
}

/*スクールの特徴
-----------------------------*/
.about-feature::before {
  width: 31.615%;
  max-width: 607px;
  aspect-ratio: 607/703;
  background-size: clamp(220px, 17.1875vw, 330px), clamp(122px, 9.4791666667vw, 182px);
  left: max(50% - 820px, -4%);
  bottom: clamp(40px, 3.125vw, 60px);
}
.about-feature__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 50px;
}
.about-feature__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.about-feature__inner {
  max-width: calc(100% - 304px);
  padding-top: 10px;
}
.about-feature__inner::before {
  font-size: 3.125em;
  margin-top: -0.2em;
  top: 0;
  left: -10px;
}
.about-feature__body {
  padding-left: 50px;
}
.about-feature__image {
  width: 254px;
}
.about-feature__image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vw 100vw 0 0;
}

/*講師紹介
-----------------------------*/
.about-teacher__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.about-teacher__heading {
  margin-bottom: 20px;
}
.about-teacher__charge {
  padding-bottom: 1px;
  margin-bottom: 40px;
}

/*スクール情報
-----------------------------*/
.about-info::before {
  width: 17.1875%;
  max-width: 330px;
  height: calc(100% + clamp(28px, 2.0833333333vw, 40px));
  background-size: 100%, clamp(122px, 9.4791666667vw, 182px);
  background-position: left top, right clamp(12px, 0.9375vw, 18px) bottom;
  left: max(50% - 880px, -5%);
  top: clamp(35px, 2.6041666667vw, 50px);
}
.about-info:has(.about-info__map)::before {
  height: calc(100% - clamp(35px, 2.6041666667vw, 50px) - 310px);
}
.about-info::after {
  width: 34.375%;
  max-width: 660px;
  aspect-ratio: 660/627;
  background-size: clamp(122px, 9.4791666667vw, 182px), clamp(220px, 17.1875vw, 330px);
  right: max(50% - 1089px, -15%);
  top: clamp(154px, 11.9791666667vw, 230px);
}
.about-info__inner:has(.about-info__image) {
  display: grid;
  grid-template-columns: 1fr 460px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.about-info__inner:has(.about-info__image) .about-info__table tr th {
  width: 120px;
}
.about-info__table {
  border-radius: 80px 0;
  padding: calc(50px + (1em - 1lh) / 2) 50px;
}
.about-info__table tr th {
  width: 200px;
  padding: 9px 0;
}
.about-info__table tr td {
  padding: 9px 0;
}
.about-info__table tr td .com-replace {
  font-size: var(--font-size-base);
  height: 1em;
}
.about-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px 0;
}
.about-info__map {
  height: 400px;
  margin-top: clamp(80px, 6.25vw, 120px);
}

/*===============================================
  レッスン紹介
===============================================*/
/*レッスンについて
-----------------------------*/
.lesson-about::before {
  width: clamp(390px, 30.2083333333vw, 580px);
  height: clamp(453px, 35.3645833333vw, 679px);
  background-size: clamp(155px, 11.9791666667vw, 230px), clamp(248px, 19.2708333333vw, 370px);
  left: max(50% - 1050px, -12%);
  bottom: clamp(-443px, -23.0729166667vw, -296px);
}
.lesson-about::after {
  bottom: clamp(-448px, -23.3333333333vw, -300px);
}
.lesson-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.lesson-about__text {
  width: calc(100% - 520px);
}
.lesson-about__image {
  width: 470px;
}
.lesson-about__image img {
  border-radius: 80px 0;
}

/*コース紹介
-----------------------------*/
.lesson-list__text {
  text-align: center;
}
.lesson-list__nav {
  padding-top: 50px;
}
.lesson-list__nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px 30px;
}
.lesson-list__nav-link .br {
  display: block;
}
.lesson-list__posts {
  padding-top: 20px;
}
.lesson-list__post {
  padding-top: 50px;
}
.lesson-list__heading {
  min-height: 76px;
}
.lesson-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.lesson-list__item-link::before {
  width: 50px;
  top: 190px;
}
.lesson-list__item-link::after {
  width: 62px;
  height: 50px;
  top: 190px;
}
.lesson-list__item-image {
  border-radius: 80px 0;
  margin-bottom: 20px;
}
.lesson-list__item-image img {
  aspect-ratio: 1.4166666667;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-list__item-title {
  font-size: var(--font-size-h6);
  line-height: 1.66667;
  padding-bottom: 4px;
}
.lesson-list__box {
  padding-top: 50px;
}
.lesson-list__body {
  padding: calc(60px + (1em - 1lh) / 2) 100px;
  border-radius: 80px 0;
}

/*コース詳細
-----------------------------*/
.lesson-detail::before {
  width: clamp(390px, 30.2083333333vw, 580px);
  height: clamp(453px, 35.3645833333vw, 679px);
  background-size: clamp(248px, 19.2708333333vw, 370px), clamp(155px, 11.9791666667vw, 230px);
  left: max(50% - 1050px, -12%);
  top: clamp(250px, 19.4270833333vw, 373px);
}
.lesson-detail__box {
  padding: 60px 70px;
  border-radius: 80px 0;
}
.lesson-detail__heading {
  font-size: 1.375em;
  line-height: 1.72728;
  margin-bottom: 40px;
}
.lesson-detail__inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding-top: 50px;
}
.lesson-detail__inner:has(.lesson-detail__image) .lesson-detail__table {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 450px);
}
.lesson-detail__inner:has(.lesson-detail__image) .lesson-detail__table tr th {
  width: 120px;
}
.lesson-detail__table tr th,
.lesson-detail__table tr td {
  padding: 9px 0;
}
.lesson-detail__image {
  width: 400px;
}
.lesson-detail__image img {
  aspect-ratio: 1.4705882353;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-detail__image img {
  border-radius: 80px 0;
}

/*===============================================
  初めての方へ
===============================================*/
/*お申し込みの流れ
-----------------------------*/
.beginner-flow::before {
  width: clamp(330px, 25.5208333333vw, 490px);
  height: clamp(630px, 48.9583333333vw, 940px);
  background-size: clamp(155px, 11.9791666667vw, 230px), clamp(248px, 19.2708333333vw, 370px);
  left: max(50% - 1050px, -12%);
  bottom: clamp(-131px, -6.8229166667vw, -88px);
}
.beginner-flow::after {
  bottom: clamp(-315px, -16.40625vw, -210px);
}
.beginner-flow__item {
  display: grid;
  grid-template-columns: 254px 1fr;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 50px;
}
.beginner-flow__image img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vw 100vw 0 0;
}
.beginner-flow__inner {
  padding-top: 10px;
  padding-left: 50px;
  position: relative;
  z-index: 0;
}
.beginner-flow__inner::before {
  font-size: 3.125em;
  margin-top: -0.2em;
  top: 0;
  left: -10px;
}
.beginner-flow__heading {
  transform: translateX(-50px);
}
.beginner-flow__contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding-top: 40px;
}
.beginner-flow__mail {
  width: 340px;
}

/*入会案内
-----------------------------*/
.beginner-info__text {
  text-align: center;
  padding: calc(60px + (1em - 1lh) / 2) 100px;
  border-radius: 80px 0;
}
.beginner-info + .beginner-faq {
  margin-top: clamp(-120px, -6.25vw, -100px);
}

/*よくある質問
-----------------------------*/
.beginner-faq__item {
  margin-bottom: 50px;
}
.beginner-faq__heading {
  padding: 14px 30px;
  border-radius: 100vh;
  margin-bottom: 30px;
}
.beginner-faq__heading::before {
  font-size: 2.5em;
  margin-top: -0.15em;
  padding-bottom: 0.15em;
}
.beginner-faq__heading > span {
  width: calc(100% - 2.5em);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  margin-top: 0.25em;
}
.beginner-faq__body {
  padding-inline: 80px;
}

/*===============================================
  スクール生の声
===============================================*/
/*スクール生の声　一覧
-----------------------------*/
.voice-list::before {
  aspect-ratio: 1;
  width: clamp(248px, 19.2708333333vw, 370px);
  left: max(50% - 1050px, -12%);
  top: clamp(384px, 29.9479166667vw, 575px);
}
.voice-list::after {
  bottom: clamp(-278px, -14.4791666667vw, -186px);
}
.voice-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 50px 30px;
}
.voice-list__image {
  outline-width: 4px;
  outline-offset: -4px;
  border-radius: 30px;
  padding-top: 10px;
  margin-bottom: 20px;
}
.voice-list__status {
  font-size: var(--font-size-h6);
  line-height: 1.88889;
  letter-spacing: -0.05em;
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__list {
  padding-right: 40px;
}
.news-archive__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 20px;
}
.news-archive__item:nth-of-type(2n) {
  transform: translateX(40px);
}
.news-archive__item-link {
  grid-template-columns: auto 1fr;
  row-gap: 10px;
}
.news-archive__item-link > *:not(.top-news__item-title) {
  margin-block: calc((1em - 1lh) / 2);
}
.news-archive__item-date {
  padding-left: 40px;
}
.news-archive__item-tags {
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding-right: 40px;
}
.news-archive__item-title {
  font-size: var(--font-size-base);
  padding: 11px 40px;
  border-radius: 100vh;
}

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

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

/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 350px;
  text-align: left;
  line-height: 2.375;
  padding: 15px 20px 15px 15px;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: 2;
  padding: 0 0.5em;
  margin-top: 5px;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
  padding: 15px 15px 15px 20px;
}
.contact-form .contact-submits-wrap {
  padding-top: 32px;
}
.contact-form .contact-submits-wrap > * {
  width: 410px;
  height: 80px;
  border-radius: 34px 6px;
  margin: 20px 15px 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete__text {
  text-align: center;
}

/*==================================================
プライバシーポリシー
================================================== */
.privacy-policy__box {
  margin-bottom: 60px;
}
.privacy-policy__box-text {
  padding-left: 50px;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
}
.sitemap-list__link {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  padding: 15px 20px;
}

/*===============================================
  404エラー
===============================================*/
.error-message::after {
  bottom: clamp(-90px, -4.6875vw, -60px);
}