/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 21 2026 | 01:37:02 */
/* =========================================================
   Baby-J Common CSS
   Shared LP Components
   HERO - 06
========================================================= */

/* =========================================================
   COMMON-01｜HERO
========================================================= */

/* ---------------------------------------------------------
   PC / BASE
--------------------------------------------------------- */

.bj-hero {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;

  display: flex;
  align-items: center;
}


/* HERO IMAGE */

.bj-hero__picture {
  position: absolute;
  inset: 0;

  display: block;
  width: 100%;
  height: 100%;
}

.bj-hero__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* PC：左側フェード */

.bj-hero::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 23%,
    rgba(255, 255, 255, 0.38) 42%,
    rgba(255, 255, 255, 0) 60%
  );
}


/* CONTENT */

.bj-hero__content {
  position: relative;
  z-index: 2;

  width: min(90%, 1540px);
  margin: 0 auto;
  padding: 80px 0;

  color: #0E284C;
}

.bj-hero__eyebrow {
  margin: 0 0 20px;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.bj-hero__title {
  margin: 0;

  font-size: clamp(42px, 3.4vw, 66px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.bj-hero__lead {
  margin: 32px 0 0;

  font-size: 17px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.bj-hero__message {
  margin: 18px 0 0;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}


/* CTA */

.bj-hero__actions {
  display: flex;
  align-items: center;

  gap: 16px;
  margin-top: 36px;
}

.bj-hero__cta {
  min-width: 220px;
  min-height: 56px;

  padding: 0 28px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.bj-hero__cta--primary {
  color: #fff;
  background: #0E284C;
}

.bj-hero__cta--secondary {
  color: #0E284C;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 40, 76, 0.25);
}

@media (hover: hover) {

  .bj-hero__cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

}


/* ---------------------------------------------------------
   SP
--------------------------------------------------------- */

@media (max-width: 767px) {

  .bj-hero {
    position: relative;

    display: block;

    width: 100%;
    min-height: 0;

    aspect-ratio: 941 / 1672;

    overflow: hidden;
  }


  /* SP HERO IMAGE */

  .bj-hero__picture {
    position: absolute;
    inset: 0;
    z-index: 0;

    display: block;

    width: 100%;
    height: 100%;
  }

  .bj-hero__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
  }


  /* 下部フェード */

  .bj-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;
    top: auto;

    z-index: 1;

    display: block;

    height: 34%;

    pointer-events: none;

    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.20) 22%,
      rgba(255, 255, 255, 0.64) 58%,
      rgba(255, 255, 255, 0.88) 100%
    );
  }


  /* CONTENT */

  .bj-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;

    width: 100%;
    margin: 0;

    padding: 24px 20px 18px;

    color: #0E284C;
  }


  /* 上側 */

  .bj-hero__eyebrow {
    margin: 0 0 10px;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .bj-hero__title {
    margin: 0;

    font-size: clamp(27px, 7.4vw, 34px);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: 0.03em;
  }


  /* 下側 */

  .bj-hero__lead {
    margin: auto 0 0;

    font-size: clamp(11px, 3vw, 13px);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }

  .bj-hero__message {
    margin: 8px 0 0;

    font-size: clamp(11px, 3vw, 13px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }


  /* CTA */

  .bj-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px;

    width: 100%;
    margin-top: 14px;
  }

  .bj-hero__cta {
    width: 100%;
    min-width: 0;
    min-height: 44px;

    padding: 0 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;

    white-space: nowrap;
  }

  .bj-hero__cta--primary {
    color: #fff;
    background: #0E284C;
  }

  .bj-hero__cta--secondary {
    color: #0E284C;

    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(14, 40, 76, 0.20);
  }

}


/* =========================================================
   COMMON-02｜VALUES
========================================================= */

/* ---------------------------------------------------------
   PC / BASE
--------------------------------------------------------- */

.bj-values {
  width: 100%;

  background: #faf8f3;
  color: #0E284C;
}

.bj-values__inner {
  width: min(90%, 1500px);

  margin: 0 auto;
  padding: 105px 0 110px;
}

.bj-values__heading {
  margin: 0 0 78px;

  text-align: center;

  color: #0E284C;

  font-size: clamp(28px, 2vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}


/* 4 COLUMN */

.bj-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: 100%;
}

.bj-value {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  min-width: 0;
  padding: 0 10px;

  text-align: center;
}


/* PC 縦区切り線 */

.bj-value:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 1px;
  height: 100%;

  background: rgba(202, 154, 56, 0.52);
}


/* SVG */

.bj-value__icon {
  width: 86px;
  height: 86px;

  margin: 0 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 86px;

  color: #CA9A38;
}

.bj-value__icon svg {
  display: block;

  width: auto;
  max-width: 86px;

  height: auto;
  max-height: 86px;
}


/* TITLE
   4カードすべて同じ高さに固定
*/

.bj-value__title {
  min-height: 30px;

  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0E284C;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;

  white-space: nowrap;
}


/* TEXT
   PCはHTMLのbr位置のみで改行
*/

.bj-value__text {
  width: max-content;
  max-width: none;

  margin: 18px auto 0;

  color: #0E284C;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;

  white-space: nowrap;
}


/* =========================================================
   COMMON-02｜VALUES｜801px - 1000px 高さ揃え
========================================================= */

@media (min-width: 801px) and (max-width: 1000px) {

  /* タイトルの領域を4カードで統一 */
  .bj-value__title {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 60px;
    margin: 0;

    line-height: 1.5;
  }

  /* サブコピーの開始位置を統一 */
  .bj-value__text {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    min-height: 54px;
    margin-top: 12px;

    font-size: clamp(11px, 1.4vw, 14px);
    line-height: 1.75;
    letter-spacing: 0.01em;

    white-space: normal;
  }
}


/* ---------------------------------------------------------
   SP
   2 × 2
--------------------------------------------------------- */

@media (max-width: 767px) {

  .bj-values__inner {
    width: 100%;

    padding: 64px 12px 70px;
  }

  .bj-values__heading {
    margin-bottom: 48px;

    font-size: clamp(22px, 6vw, 27px);
    line-height: 1.55;
    letter-spacing: 0.04em;
  }


  /* 2 × 2 */

  .bj-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bj-value {
    min-width: 0;

    padding: 28px 6px 32px;
  }


  /* PC縦線解除 */

  .bj-value:not(:last-child)::after {
    display: none;
  }


  /* SP中央縦線 */

  .bj-value:nth-child(odd)::after {
    content: "";

    position: absolute;

    top: 12%;
    right: 0;

    display: block;

    width: 1px;
    height: 76%;

    background: rgba(202, 154, 56, 0.42);
  }


  /* SP上下区切り */

  .bj-value:nth-child(-n+2)::before {
    content: "";

    position: absolute;

    left: 10%;
    bottom: 0;

    width: 80%;
    height: 1px;

    background: rgba(202, 154, 56, 0.32);
  }


  /* SVG */

  .bj-value__icon {
    width: 62px;
    height: 62px;

    flex-basis: 62px;

    margin-bottom: 20px;
  }

  .bj-value__icon svg {
    max-width: 62px;
    max-height: 62px;
  }


  /* TITLE */

  .bj-value__title {
    min-height: 24px;

    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;

    white-space: nowrap;
  }


  /* TEXT */

  .bj-value__text {
    width: 100%;
    max-width: none;

    margin: 12px auto 0;

    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.01em;

    white-space: normal;
  }

}


/* =========================================================
   COMMON-03｜GROWTH
   好きから始まる、成長。
========================================================= */

/* ---------------------------------------------------------
   PC / BASE
--------------------------------------------------------- */

.bj-growth {
  width: 100%;
  background: #faf8f3;
  color: #0E284C;
}

.bj-growth__inner {
  display: grid;
  grid-template-columns: 45% 55%;

  width: 100%;

  /*
   * Figmaの横長構図を基準に、
   * PC幅に合わせてセクション全体を伸縮
   */
  min-height: clamp(560px, 41vw, 800px);
}

/* IMAGE */

.bj-growth__visual {
  grid-column: 2;
  grid-row: 1;

  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;

  overflow: hidden;
}

.bj-growth__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

/* CONTENT */

.bj-growth__content {
  grid-column: 1;
  grid-row: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;

  /*
   * 左右余白も画面幅に連動
   */
  padding:
    clamp(45px, 4.1vw, 80px)
    clamp(42px, 5.3vw, 103px);
}

/* TITLE */

.bj-growth__title {
  margin: 0;

  color: #0E284C;

  /*
   * PC幅に連動して縮小・拡大
   */
  font-size: clamp(42px, 3.55vw, 69px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.035em;
}

/* COPY BLOCK */

.bj-growth__copy {
  margin-top: clamp(42px, 4.2vw, 82px);
}

/* LEAD */

.bj-growth__lead {
  margin: 0;

  color: #0E284C;

  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.035em;
}

/* BODY */

.bj-growth__text {
  margin: clamp(28px, 3vw, 58px) 0 0;

  color: #0E284C;

  font-size: clamp(17px, 1.3vw, 25px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.035em;
}


/* ---------------------------------------------------------
   TABLET / SMALL PC
   801px - 1000px
--------------------------------------------------------- */

@media (min-width: 801px) and (max-width: 1024px) {

  .bj-growth__inner {
    grid-template-columns: 40% 60%;
    min-height: clamp(500px, 58vw, 594px);
  }

  .bj-growth__content {
    padding: 42px 38px;
  }

  .bj-growth__title {
    font-size: clamp(34px, 4vw, 41px);
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .bj-growth__copy {
    margin-top: clamp(34px, 4vw, 42px);
  }

  .bj-growth__lead {
    font-size: clamp(16px, 1.9vw, 19px);
    line-height: 1.9;
    letter-spacing: 0.02em;
  }

  .bj-growth__text {
    margin-top: clamp(24px, 3vw, 30px);

    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.95;
    letter-spacing: 0.02em;
  }
}


/* ---------------------------------------------------------
   SP
   IMAGE → TEXT
--------------------------------------------------------- */

@media (max-width: 800px) {

  .bj-growth__inner {
    display: flex;
    flex-direction: column;

    min-height: 0;
  }

  /* 画像を上 */

  .bj-growth__visual {
    order: 1;

    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .bj-growth__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
  }

  /* 文字を下 */

  .bj-growth__content {
    order: 2;

    display: block;

    width: 100%;
    padding: 46px 24px 58px;
  }

  .bj-growth__title {
    margin: 0;

    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .bj-growth__copy {
    margin-top: 38px;
  }

  .bj-growth__lead {
    margin: 0;

    font-size: clamp(17px, 4.5vw, 20px);
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .bj-growth__text {
    margin-top: 28px;

    font-size: clamp(15px, 4vw, 18px);
    line-height: 2;
    letter-spacing: 0.03em;
  }
}

/* COMMON-03｜GROWTH｜タイトル改行固定 */

.bj-growth__title-line {
  white-space: nowrap;
}


/* =========================================================
   COMMON-04｜VARIETY
   多彩なスポーツ
========================================================= */

.bj-variety {
  width: 100%;
  background: #faf8f3;
  color: #0E284C;
}

.bj-variety__inner {
  width: min(100%, 1860px);
  margin: 0 auto;
  padding:
    clamp(80px, 6.5vw, 126px)
    clamp(30px, 2vw, 40px)
    clamp(90px, 7vw, 136px);
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.bj-variety__header {
  text-align: center;
}

.bj-variety__title {
  margin: 0;

  color: #0E284C;
  font-size: clamp(42px, 3.6vw, 70px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.035em;
}

.bj-variety__lead {
  margin: clamp(12px, 1.2vw, 22px) 0 0;

  color: #0E284C;
  font-size: clamp(17px, 1.35vw, 26px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.035em;
}


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.bj-variety__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap:
    clamp(34px, 2.4vw, 48px)
    clamp(18px, 1.2vw, 24px);

  margin-top: clamp(48px, 4vw, 78px);
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.bj-variety__card {
  min-width: 0;
  overflow: hidden;

  background: #fff;
}

.bj-variety__visual {
  position: relative;

  width: 100%;
  aspect-ratio: 1.68 / 1;

  overflow: hidden;

  border-radius: 18px 18px 0 0;
}

.bj-variety__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* ---------------------------------------------------------
   CARD INFO
--------------------------------------------------------- */

.bj-variety__info {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;

  min-height: clamp(84px, 6vw, 116px);
  padding:
    clamp(10px, 0.9vw, 18px)
    clamp(12px, 1vw, 20px);
}

.bj-variety__number {
  display: block;

  margin-right: clamp(18px, 1.3vw, 26px);

  color: #c9a55b;
  font-size: clamp(38px, 3vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.bj-variety__copy {
  min-width: 0;
}

.bj-variety__card-title {
  margin: 0;

  color: #0E284C;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.bj-variety__sports {
  margin: clamp(4px, 0.4vw, 8px) 0 0;

  color: #182536;
  font-size: clamp(12px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}


/* =========================================================
   COMMON-04｜VARIETY｜SP
   1 COLUMN
========================================================= */

@media (max-width: 800px) {

  .bj-variety__inner {
    width: 100%;
    padding: 64px 20px 72px;
  }

  /* HEADER */

  .bj-variety__title {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.4;
    letter-spacing: 0.025em;
  }

  .bj-variety__lead {
    max-width: 360px;
    margin: 12px auto 0;

    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.8;
    letter-spacing: 0.02em;
  }


  /* GRID → 1 COLUMN */

  .bj-variety__grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 38px;
  }


  /* CARD */

  .bj-variety__card {
    width: 100%;

    border-radius: 14px;
    overflow: hidden;
  }

  /*
   * 元画像を共用。
   * 縦横比は維持し、横長写真として表示。
   */

  .bj-variety__visual {
    width: 100%;
    aspect-ratio: 16 / 7;

    border-radius: 14px 14px 0 0;
  }

  .bj-variety__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
  }


  /* INFO */

  .bj-variety__info {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;

    min-height: 72px;
    padding: 10px 14px;
  }

  .bj-variety__number {
    margin: 0;

    color: #c9a55b;
    font-size: 38px;
    line-height: 1;
  }

  .bj-variety__copy {
    position: relative;

    padding-left: 18px;
  }

  /* 番号とコピーの間の細いゴールド線 */

  .bj-variety__copy::before {
    content: "";

    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;

    width: 1px;

    background: rgba(201, 165, 91, 0.65);
  }

  .bj-variety__card-title {
    font-size: clamp(17px, 4.7vw, 21px);
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .bj-variety__sports {
    margin-top: 3px;

    font-size: clamp(11px, 3.1vw, 14px);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}


/* =========================================================
   COMMON-05｜NEEDS
   4LP共通
========================================================= */

.bj-needs {
  width: 100%;
  overflow: hidden;
  background: #faf7f1;
  color: #0E284C;
}

.bj-needs__inner {
  width: min(100%, 1780px);
  margin: 0 auto;
  padding:
    clamp(35px, 2.5vw, 50px)
    clamp(44px, 5vw, 96px)
    clamp(88px, 6.4vw, 124px);
}

.bj-needs__header {
  text-align: center;
}

.bj-needs__title {
  margin: 0;
  color: #0E284C;
  font-size: clamp(38px, 3vw, 58px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.bj-needs__lead {
  margin: clamp(20px, 1.7vw, 32px) 0 0;
  color: #182536;
  font-size: clamp(15px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.025em;
}

.bj-needs__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 1.8vw, 34px);
  margin-top: clamp(46px, 3.5vw, 68px);
}

.bj-needs__card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

.bj-needs__visual {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
}

.bj-needs__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bj-needs__content {
  padding:
    clamp(20px, 1.5vw, 28px)
    clamp(12px, 1.2vw, 22px)
    clamp(24px, 1.8vw, 34px);
  text-align: center;
}

.bj-needs__card-title {
  margin: 0;
  color: #0E284C;
  font-size: clamp(19px, 1.35vw, 26px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.025em;
}

.bj-needs__line {
  display: block;
  width: clamp(32px, 2vw, 40px);
  height: 1px;
  margin: clamp(14px, 1vw, 19px) auto;
  background: #c89d43;
}

.bj-needs__text {
  margin: 0;
  color: #182536;
  font-size: clamp(12px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.bj-needs__slider {
  position: relative;
  width: 100%;
}


/* COUNTER｜PC */

.bj-needs__slider > .bj-slider__counter {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;

  width: 100%;
  margin-top: 42px;
  padding: 0 80px 0 22px;

  color: #0E284C;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.bj-needs__slider > .bj-slider__counter .bj-slider__current {
  min-width: 18px;

  color: #c89d43;
  font-size: 16px;
  line-height: 1;
  text-align: right;

  font-variant-numeric: tabular-nums;
}

.bj-needs__slider > .bj-slider__counter .bj-slider__separator {
  display: block;

  width: 34px;
  height: 1px;

  overflow: hidden;

  background: rgba(14, 40, 76, 0.35);
  color: transparent;
  font-size: 0;
}

.bj-needs__slider > .bj-slider__counter .bj-slider__total {
  min-width: 18px;

  color: #0E284C;
  font-size: 12px;
  line-height: 1;
  text-align: left;

  font-variant-numeric: tabular-nums;
}


/* ---------------------------------------------------------
   SP
--------------------------------------------------------- */

@media (max-width: 800px) {

  .bj-needs__inner {
    width: 100%;
    padding: 42px 0 70px;
  }

  .bj-needs__header {
    padding: 0 20px;
  }

  .bj-needs__title {
    font-size: clamp(24px, 6.5vw, 30px);
    line-height: 1.45;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .bj-needs__lead {
    max-width: 390px;
    margin: 17px auto 0;
    font-size: clamp(13px, 3.45vw, 15px);
    line-height: 1.8;
  }

  .bj-needs__lead br {
    display: none;
  }

  .bj-needs .bj-slider__track {
    display: flex;
    gap: 14px;

    width: 100%;
    margin-top: 36px;
    padding: 0 20px 8px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bj-needs .bj-slider__track::-webkit-scrollbar {
    display: none;
  }

  .bj-needs .bj-slider__item {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .bj-needs__card {
    flex: 0 0 calc((100vw - 54px) / 1.5);
    min-width: 0;
    border-radius: 13px;
  }

  .bj-needs__visual {
    aspect-ratio: 1.16 / 1;
  }

  .bj-needs__content {
    padding: 17px 10px 21px;
  }

  .bj-needs__card-title {
    font-size: clamp(16px, 4.3vw, 19px);
    line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .bj-needs__line {
    width: 32px;
    height: 1px;
    margin: 12px auto;
  }

  .bj-needs__text {
    font-size: clamp(11px, 2.9vw, 13px);
    line-height: 1.7;
    letter-spacing: 0;
    white-space: normal;
  }

  .bj-needs__slider > .bj-slider__counter {
	display:flex;
    margin-top: 28px;
    padding: 0 22px;
  }

}


/* ---------------------------------------------------------
   TABLET
   801px - 900px
--------------------------------------------------------- */

@media (min-width: 801px) and (max-width: 900px) {

  .bj-needs__inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .bj-needs__cards {
    gap: 16px;
  }

  .bj-needs__content {
    padding-left: 8px;
    padding-right: 8px;
  }

  .bj-needs__card-title {
    font-size: 17px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .bj-needs__text {
    font-size: 10.5px;
    line-height: 1.7;
    letter-spacing: -0.01em;
  }
}


/* =========================================================
   COMMON-06｜PROGRAMS
   4LP共通
========================================================= */

.bj-programs {
  width: 100%;
  overflow: hidden;

  padding: 110px 0 120px;

  background: #fff;
  color: #0E284C;
}

.bj-programs__inner {
  width: 100%;
  margin: 0 auto;
}

.bj-programs__heading {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto 60px;

  text-align: center;
  color: #0E284C;
}

.bj-programs__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin-bottom: 22px;
}

.bj-programs__label span {
  width: 42px;
  height: 1px;
  background: #c89d43;
}

.bj-programs__label p {
  margin: 0;

  color: #c89d43;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.bj-programs__heading h2 {
  margin: 0;

  color: #0E284C;
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.bj-programs__lead {
  margin: 22px 0 0;

  color: #0E284C;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.bj-programs__slider {
  position: relative;

  width: calc(
    100% - max(40px, calc((100vw - 1540px) / 2))
  );

  margin-left: max(
    40px,
    calc((100vw - 1540px) / 2)
  );
}

.bj-programs .bj-slider__track {
  display: flex;
  gap: 24px;

  width: 100%;
  padding: 0;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.bj-programs .bj-slider__track::-webkit-scrollbar {
  display: none;
}

.bj-programs__card {
  flex: 0 0 clamp(320px, 21.8vw, 426px);
  min-width: 0;

  overflow: hidden;

  background: #fff;

  scroll-snap-align: start;
}

.bj-programs__image-wrap {
  position: relative;

  width: 100%;
  aspect-ratio: 3 / 2;

  overflow: hidden;
}

.bj-programs__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.bj-programs__content {
  display: grid;

  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "icon eigo"
    "icon name"
    "text text";

  column-gap: 12px;
  row-gap: 0;

  padding: 14px 16px 26px;
}

.bj-programs__icon {
  grid-area: icon;

  display: block;

  width: 44px;
  height: 44px;

  align-self: start;
  margin-top: 2px;

  object-fit: contain;
}

.bj-programs__eigo {
  grid-area: eigo;

  display: block;
  align-self: end;

  margin: 0 0 5px;

  color: #B19B7B;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

.bj-programs__name {
  grid-area: name;

  align-self: start;

  margin: 0;

  color: #0E284C;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.bj-programs__text {
  grid-area: text;

  width: 100%;
  margin: 10px 0 0;

  color: #182536;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;

  white-space: nowrap;
}

.bj-programs__arrow {
  display: none;
}

.bj-programs__prev,
.bj-programs__next {
  position: absolute;
  z-index: 3;
  top: 33%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  padding: 0;
  border: 0;
  border-radius: 50%;

  background: rgba(14, 40, 76, 0.38);
  color: #fff;

  font-size: 0;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 0.25s ease,
    opacity 0.25s ease;
}

.bj-programs__prev {
  left: -19px;
}

.bj-programs__next {
  right: 38px;
}

.bj-programs__prev::before,
.bj-programs__next::before {
  content: "";

  width: 7px;
  height: 7px;

  border-top: 1.25px solid #fff;
  border-right: 1.25px solid #fff;
}

.bj-programs__prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.bj-programs__next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

@media (hover: hover) {

  .bj-programs__prev:hover,
  .bj-programs__next:hover {
    background: rgba(14, 40, 76, 0.88);
  }

}

.bj-programs__counter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;

  margin-top: 42px;
  padding: 0 80px 0 22px;

  color: #0E284C;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.bj-programs__counter .bj-slider__current {
  min-width: 18px;

  color: #c89d43;
  font-size: 16px;
  line-height: 1;
  text-align: right;

  font-variant-numeric: tabular-nums;
}

.bj-programs__counter .bj-slider__separator {
  display: block;

  width: 34px;
  height: 1px;

  overflow: hidden;

  background: rgba(14, 40, 76, 0.35);
  color: transparent;
  font-size: 0;
}

.bj-programs__counter .bj-slider__total {
  min-width: 18px;

  color: #0E284C;
  font-size: 12px;
  line-height: 1;
  text-align: left;

  font-variant-numeric: tabular-nums;
}


/* ---------------------------------------------------------
   SP
--------------------------------------------------------- */

@media (max-width: 800px) {

  .bj-programs {
    padding: 78px 0 82px;
  }

  .bj-programs__heading {
    width: calc(100% - 28px);
    margin-bottom: 42px;
  }

  .bj-programs__label {
    gap: 12px;
    margin-bottom: 18px;
  }

  .bj-programs__label span {
    width: 30px;
  }

  .bj-programs__heading h2 {
    font-size: clamp(20px, 5.3vw, 24px);
    line-height: 1.5;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .bj-programs__lead {
    width: fit-content;
    max-width: 320px;

    margin: 18px auto 0;

    text-align: left;

    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.01em;
  }

  .bj-programs__slider {
    width: 100%;
    margin-left: 0;
  }

  .bj-programs .bj-slider__track {
    gap: 16px;

    width: 100%;

    padding-left: 22px;
    padding-right: 22px;

    scroll-padding-left: 22px;
  }

  .bj-programs__card {
    flex: 0 0 min(76vw, 300px);
  }

  .bj-programs__image-wrap {
    aspect-ratio: 3 / 2;
  }

  .bj-programs__content {
    min-height: 0;

    grid-template-columns: 44px minmax(0, 1fr);

    column-gap: 12px;

    padding: 14px 16px 22px;
  }

  .bj-programs__icon {
    width: 44px;
    height: 44px;

    align-self: start;
    margin-top: 2px;
  }

  .bj-programs__eigo {
    font-size: 10px;
  }

  .bj-programs__name {
    font-size: 17px;
  }

  .bj-programs__text {
    margin-top: 10px;

    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0;

    white-space: normal;
  }

  .bj-programs__prev,
  .bj-programs__next {
    display: none;
  }

  .bj-programs__counter {
    margin-top: 28px;
    padding: 0 22px;
  }

}



  .bj-life-skills__label {
    gap: 12px;
    margin-bottom: 18px;
  }/* =========================================================
   COMMON-07｜LIFE SKILLS
   4LP共通
========================================================= */

.bj-life-skills {
  width: 100%;
  padding: 110px 0 120px;
  background: #f8f6f1;
  color: #0E284C;
}

.bj-life-skills__inner {
  width: min(1540px, calc(100% - 80px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.bj-life-skills__header {
  margin-bottom: 60px;
  text-align: center;
}

.bj-life-skills__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;
  margin-bottom: 22px;
}

.bj-life-skills__label span {
  display: block;

  width: 42px;
  height: 1px;

  background: #b89a62;
}

.bj-life-skills__label p {
  margin: 0;

  color: #b89a62;

  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
}

.bj-life-skills__title {
  margin: 0;

  color: #0E284C;

  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}


/* =========================================================
   GRID
========================================================= */

.bj-life-skills__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.bj-life-skills__card {
  min-width: 0;
  margin: 0;

  overflow: hidden;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 2px 4px rgba(14, 40, 76, 0.14);
}

.bj-life-skills__visual {
  width: 100%;

  overflow: hidden;

  border-radius: 20px 20px 0 0;
}

.bj-life-skills__image {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 1.48 / 1;

  object-fit: cover;
  object-position: center center;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.bj-life-skills__content {
  padding: 22px 22px 30px;
}

.bj-life-skills__heading {
  display: flex;
  align-items: baseline;

  gap: 16px;

  padding-bottom: 15px;

  border-bottom: 1px solid rgba(184, 154, 98, 0.55);
}

.bj-life-skills__number {
  flex: 0 0 auto;

  color: #c1a267;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 1.8vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.bj-life-skills__card-title {
  margin: 0;

  color: #0E284C;

  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;

  white-space: nowrap;
}


/* =========================================================
   GOLD CATCH
   BASE
========================================================= */

.bj-life-skills__catch {
  margin: 17px 0 0;

  color: #b59a6a;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.bj-life-skills__catch > span {
  white-space: nowrap;
}


/* =========================================================
   BODY TEXT
========================================================= */

.bj-life-skills__text {
  margin: 12px 0 0;

  color: #4d4d4d;

  font-size: clamp(14px, 0.84vw, 16px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;
}


/* =========================================================
   SECTION MESSAGE
========================================================= */

.bj-life-skills__message {
  margin: 72px 0 0;

  color: #0E284C;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;

  text-align: center;
}


/* =========================================================
   TABLET
   801px - 1100px
   2 × 2

   金字は全カード1行固定
========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

  .bj-life-skills__inner {
    width: calc(100% - 48px);
  }

  .bj-life-skills__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px 22px;
  }

  .bj-life-skills__catch {
    white-space: nowrap;
  }

  .bj-life-skills__catch > span {
    display: inline;
    white-space: nowrap;
  }

  .bj-life-skills__message {
    font-size: 17px;
    letter-spacing: 0.08em;
  }

}


/* =========================================================
   SP
   800px以下
   2 × 2
========================================================= */

@media (max-width: 800px) {

  .bj-life-skills {
    padding: 78px 0 82px;
  }

  .bj-life-skills__inner {
    width: calc(100% - 28px);
  }

  .bj-life-skills__header {
    margin-bottom: 38px;
  }

  .bj-life-skills__label {
    gap: 12px;
    margin-bottom: 18px;
  }

  .bj-life-skills__label span {
    width: 30px;
  }

  .bj-life-skills__label p {
    font-size: 10px;
  }

  .bj-life-skills__title {
    margin: 0;

    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.5;
    letter-spacing: 0.01em;

    white-space: nowrap;
  }

  .bj-life-skills__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px 10px;
  }

  .bj-life-skills__card {
    border-radius: 11px;

    box-shadow: 0 1px 3px rgba(14, 40, 76, 0.08);
  }

  .bj-life-skills__visual {
    border-radius: 11px 11px 0 0;
  }

  .bj-life-skills__content {
    padding: 13px 10px 18px;
  }

  .bj-life-skills__heading {
    gap: 7px;

    padding-bottom: 9px;

    border-bottom-color: rgba(184, 154, 98, 0.35);
  }

  .bj-life-skills__number {
    font-size: clamp(18px, 5.3vw, 23px);
  }

  .bj-life-skills__card-title {
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.4;
    letter-spacing: 0.01em;

    white-space: nowrap;
  }

  .bj-life-skills__catch {
    margin-top: 11px;

    color: #aa8d59;

    font-size: clamp(14px, 3.8vw, 16px);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0;
  }

  .bj-life-skills__text {
    margin-top: 9px;

    color: rgba(77, 77, 77, 0.82);

    font-size: clamp(11px, 2.8vw, 12.5px);
    line-height: 1.7;
    letter-spacing: 0;
  }

  .bj-life-skills__text br {
    display: none;
  }

  .bj-life-skills__message {
    margin-top: 38px;

    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

}


/* =========================================================
   533px - 800px
   金字を全カード1行固定

   662px・533px付近で01だけ折り返して
   段差が発生するのを防止
========================================================= */

@media (min-width: 533px) and (max-width: 800px) {

  .bj-life-skills__catch {
    white-space: nowrap;
  }

  .bj-life-skills__catch > span {
    display: inline;
    white-space: nowrap;
  }

}


/* =========================================================
   532px以下
   カード幅を優先
   HTMLで分けた意味単位のみで折り返し可能
========================================================= */

@media (max-width: 532px) {

  .bj-life-skills__catch {
    white-space: normal;
  }

  .bj-life-skills__catch > span {
    display: inline;
    white-space: nowrap;
  }

}


/* =========================================================
   SP｜LANDSCAPE
   2 × 2
   横向きは金字1行固定
========================================================= */

@media (max-width: 950px) and (orientation: landscape) {

  .bj-life-skills {
    padding: 64px 0 72px;
  }

  .bj-life-skills__inner {
  width: 96%;
  max-width: 900px;
}

  .bj-life-skills__header {
    margin-bottom: 38px;
  }

  .bj-life-skills__title {
    font-size: clamp(20px, 3vw, 26px);
  }

  .bj-life-skills__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px 20px;
  }

  .bj-life-skills__content {
    padding: 16px 16px 20px;
  }

  .bj-life-skills__heading {
    gap: 12px;

    padding-bottom: 12px;
  }

  .bj-life-skills__number {
    font-size: 27px;
  }

  .bj-life-skills__card-title {
    font-size: 17px;
  }

  .bj-life-skills__catch {
    margin-top: 12px;

    color: #b59a6a;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;

    white-space: nowrap;
  }

  .bj-life-skills__catch > span {
    display: inline;
    white-space: nowrap;
  }

  .bj-life-skills__text {
    margin-top: 9px;

    color: #4d4d4d;

    font-size: 12px;
    line-height: 1.8;
  }

  .bj-life-skills__message {
    margin-top: 42px;

    font-size: 13px;
  }

}
/* =========================================================
   COMMON-08｜PRECIOUS MOMENTS
   4LP共通
   6枚を1つの作品として扱う
========================================================= */

.bj-precious {
  width: 100%;
  overflow: hidden;

  padding: 110px 0 120px;

  background: #fff;
  color: #0E284C;
}

.bj-precious__inner {
  width: min(1540px, calc(100% - 80px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.bj-precious__header {
  margin-bottom: 60px;
  text-align: center;
}

.bj-precious__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;
  margin-bottom: 22px;
}

.bj-precious__label span {
  display: block;

  width: 42px;
  height: 1px;

  background: #b89a62;
}

.bj-precious__label p {
  margin: 0;

  color: #b89a62;

  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
}

.bj-precious__title {
  margin: 0;

  color: #0E284C;

  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}


/* =========================================================
   MESSAGE
   タイトルと写真の間の導入コピー
========================================================= */

.bj-precious__message {
  margin-top: 52px;
  text-align: center;
}

.bj-precious__message-line {
  display: block;

  width: 58px;
  height: 2px;

  margin: 0 auto 24px;

  background: #b89a62;
}

.bj-precious__message p {
  margin: 0;

  color: #4d4d4d;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}


/* =========================================================
   VIEWPORT
========================================================= */

.bj-precious__viewport {
  width: 100%;
  overflow: hidden;

  /* MESSAGE → 写真 */
  margin-top: 60px;
}

/* =========================================================
   ARTWORK
   上段：01 弓道 / 02 フィギュア / 03 乗馬
   下段：04 ゴルフ / 05 水泳 / 06 テニス
========================================================= */

.bj-precious__artwork {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  width: 100%;

  gap: 16px;
}


/* =========================================================
   PHOTO
========================================================= */

.bj-precious__item {
  min-width: 0;
  margin: 0;

  overflow: hidden;

  aspect-ratio: 1.5 / 1;
}

.bj-precious__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

/* =========================================================
   TABLET
   801px - 1100px
   作品サイズを優先し、3 × 2を横方向に見せる
========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

  .bj-precious {
    padding: 90px 0 100px;
  }

  .bj-precious__inner {
    width: 100%;
  }

  .bj-precious__header {
    width: calc(100% - 48px);
    margin: 0 auto 48px;
  }

  .bj-precious__viewport {
    width: 100%;

    margin-top: 52px;
    padding: 0 24px 8px;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bj-precious__viewport::-webkit-scrollbar {
    display: none;
  }

  .bj-precious__artwork {
    grid-template-columns: repeat(3, 320px);

    width: max-content;

    gap: 12px;
  }

  .bj-precious__item {
    width: 320px;
    aspect-ratio: 1.5 / 1;
  }

	  /* 金字コピーは2×2表示では1行固定 */
  .bj-life-skills__catch {
    white-space: nowrap;
  }

  .bj-life-skills__catch > span {
    display: inline;
    white-space: nowrap;
  }
	
}


/* =========================================================
   SP｜PORTRAIT
   3 × 2の作品を壊さず横方向に見せる
========================================================= */

@media (max-width: 800px) {

  .bj-precious {
    padding: 78px 0 82px;
  }

  .bj-precious__inner {
    width: 100%;
  }


  /* HEADER */

  .bj-precious__header {
    width: calc(100% - 28px);

    margin:
      0 auto
      38px;
  }

  .bj-precious__label {
    gap: 12px;
    margin-bottom: 18px;
  }

  .bj-precious__label span {
    width: 30px;
  }

  .bj-precious__label p {
    font-size: 10px;
  }

  .bj-precious__title {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.5;
    letter-spacing: 0.01em;

    white-space: nowrap;
  }

	  /* MESSAGE */

  .bj-precious__message {
    width: calc(100% - 28px);
    margin: 34px auto 0;
  }

  .bj-precious__message-line {
    width: 42px;
    height: 1px;
    margin-bottom: 18px;
  }

  .bj-precious__message p {
    font-size: 11px;
    line-height: 1.9;
    letter-spacing: 0.01em;
  }

  .bj-precious__viewport {
    margin-top: 42px;
  }

  /* VIEWPORT
     横スクロール可能。
     作品自体の3×2構成は変更しない。
  */

  .bj-precious__viewport {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 14px 8px;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .bj-precious__viewport::-webkit-scrollbar {
    display: none;
  }


  /* ARTWORK
     SP縦では画面内に無理に縮小しない。
     3列×2段の作品として横に展開する。
  */

  .bj-precious__artwork {
    grid-template-columns: repeat(3, 230px);

    width: max-content;

    gap: 8px;
  }

  .bj-precious__item {
    width: 230px;

    aspect-ratio: 1.5 / 1;
  }

}


/* =========================================================
   SP｜LANDSCAPE
   横向きでは作品全体を大きく見せる
========================================================= */

@media (max-width: 950px) and (orientation: landscape) {

  .bj-precious {
    padding: 64px 0 72px;
  }

  .bj-precious__inner {
    width: 92%;
    max-width: 900px;
  }


  /* HEADER */

  .bj-precious__header {
    width: 100%;
    margin: 0 auto 38px;
  }

  .bj-precious__label {
    gap: 14px;
    margin-bottom: 18px;
  }

  .bj-precious__label span {
    width: 36px;
  }

  .bj-precious__label p {
    font-size: 11px;
  }

  .bj-precious__title {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.5;

    white-space: nowrap;
  }


  /* VIEWPORT */

  .bj-precious__viewport {
    width: 100%;

    overflow: hidden;

    padding: 0;
  }


  /* ARTWORK
     横向きでは3 × 2全体を一度に見せる
  */

  .bj-precious__artwork {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: 100%;

    gap: 10px;
  }

  .bj-precious__item {
    width: auto;

    aspect-ratio: 1.5 / 1;
  }

}

/* =========================================================
   COMMON-09｜FUTURE STARTS HERE
   4LP共通

   PC       ：2 × 2
   TABLET   ：2 × 2
   SP縦     ：縦4枚
   SP横     ：1枚大型スライダー
========================================================= */

.bj-future {
  width: 100%;
  padding: 110px 0 120px;
  overflow: hidden;

  background: #f8f6f1;
  color: #0E284C;
}

.bj-future__inner {
  width: min(1540px, calc(100% - 80px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.bj-future__header {
  width: 100%;
  margin: 0 auto 58px;

  text-align: center;
}

.bj-future__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;
  margin-bottom: 22px;
}

.bj-future__label span {
  display: block;

  width: 42px;
  height: 1px;

  background: #b89a62;
}

.bj-future__label p {
  margin: 0;

  color: #b89a62;

  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.bj-future__title {
  margin: 0;

  color: #0E284C;

  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}


/* =========================================================
   MESSAGE
   中央配置＋本文左揃え
========================================================= */

.bj-future__message {
  margin-top: 46px;

  text-align: center;
}

.bj-future__message-line {
  display: block;

  width: 58px;
  height: 2px;

  margin: 0 auto 24px;

  background: #b89a62;
}

.bj-future__message p {
  width: fit-content;
  max-width: 760px;

  margin: 0 auto;

  color: #4d4d4d;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;

  text-align: left;
}


/* =========================================================
   SLIDER WRAPPER
   PCでは通常ギャラリーとして使用
========================================================= */

.bj-future__slider {
  width: 100%;
}

.bj-future__viewport {
  width: 100%;
  overflow: visible;
}


/* =========================================================
   CONTROLS
   PC / TABLET / SP縦では非表示
========================================================= */

.bj-future__controls {
  display: none;
}

.bj-future__counter {
  display: none;
}


/* =========================================================
   PHOTO STORY
   PC｜2 × 2
========================================================= */

.bj-future__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  width: 100%;

  gap: 16px;
}

.bj-future__item {
  width: 100%;
  margin: 0;

  overflow: hidden;

  aspect-ratio: 2.25 / 1;

  border-radius: 18px;
}

.bj-future__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* =========================================================
   TABLET
   801px - 1100px
   2 × 2維持
========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

  .bj-future {
    padding: 90px 0 100px;
  }

  .bj-future__inner {
    width: calc(100% - 48px);
  }

  .bj-future__header {
    margin-bottom: 48px;
  }

  .bj-future__title {
    font-size: clamp(26px, 3.6vw, 34px);
  }

  .bj-future__message {
    margin-top: 38px;
  }

  .bj-future__message-line {
    width: 48px;
    height: 1px;

    margin-bottom: 20px;
  }

  .bj-future__message p {
    max-width: 680px;

    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }

  .bj-future__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
  }

  .bj-future__item {
    aspect-ratio: 2.15 / 1;

    border-radius: 14px;
  }

}


/* =========================================================
   SP｜PORTRAIT
   横長写真を守って縦4枚
========================================================= */

@media (max-width: 800px) and (orientation: portrait) {

  .bj-future {
    padding: 78px 0 82px;
  }

  .bj-future__inner {
    width: 100%;
  }

  .bj-future__header {
    width: calc(100% - 28px);

    margin: 0 auto 42px;
  }

  .bj-future__label {
    gap: 12px;
    margin-bottom: 18px;
  }

  .bj-future__label span {
    width: 30px;
  }

  .bj-future__label p {
    font-size: 10px;
  }

  .bj-future__title {
    font-size: clamp(18px, 5.2vw, 23px);
    line-height: 1.55;
    letter-spacing: 0.01em;

    white-space: nowrap;
  }

  .bj-future__message {
    width: 100%;

    margin: 34px auto 0;
  }

  .bj-future__message-line {
    width: 42px;
    height: 1px;

    margin-bottom: 18px;
  }

  .bj-future__message p {
    width: fit-content;
    max-width: 320px;

    font-size: 11px;
    line-height: 1.9;
    letter-spacing: 0.01em;

    text-align: left;
  }


  /* PHOTO STORY */

  .bj-future__viewport {
    width: 100%;

    overflow: visible;
  }

  .bj-future__gallery {
    display: grid;
    grid-template-columns: 1fr;

    width: calc(100% - 28px);
    margin: 0 auto;

    gap: 10px;
  }

  .bj-future__item {
    width: 100%;

    aspect-ratio: 2.05 / 1;

    border-radius: 12px;
  }

}


/* =========================================================
   SP｜LANDSCAPE
   1枚大型スライダー

   ・操作表示は写真の直上
   ・左 SWIPE / 右 枚数
   ・次画像チラ見せなし
   ・写真はほぼ全幅
   ・縦方向は大きくしすぎない
   ・写真上にUIを重ねない
   ・角丸なし
========================================================= */

@media (max-width: 950px) and (orientation: landscape) {

  .bj-future {
    padding: 64px 0 72px;
  }

  .bj-future__inner {
    width: 100%;
    max-width: none;
  }


  /* HEADER */

  .bj-future__header {
    width: 92%;
    max-width: 900px;

    margin: 0 auto 34px;
  }

  .bj-future__label {
    gap: 14px;
    margin-bottom: 18px;
  }

  .bj-future__label span {
    width: 36px;
  }

  .bj-future__label p {
    font-size: 11px;
  }

  .bj-future__title {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.5;
    letter-spacing: 0.02em;

    white-space: nowrap;
  }


  /* MESSAGE */

  .bj-future__message {
    margin-top: 30px;
  }

  .bj-future__message-line {
    width: 48px;
    height: 1px;

    margin-bottom: 18px;
  }

  .bj-future__message p {
    width: fit-content;
    max-width: 720px;

    font-size: 12px;
    line-height: 1.85;
    letter-spacing: 0.02em;

    text-align: left;
  }


  /* =======================================================
     CONTROL BAR
     写真の直上
  ======================================================= */

  .bj-future__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 96%;
    max-width: 920px;

    margin: 0 auto 12px;
  }


  /* SWIPE */

  .bj-future__swipe {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(14, 40, 76, 0.68);

    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
  }

  .bj-future__swipe-arrow {
    color: #b89a62;

    font-size: 15px;
    line-height: 1;
  }


  /* COUNTER */

  .bj-future__counter {
    display: flex;
    align-items: center;

    margin: 0;
  }

  .bj-future__counter .bj-slider__current {
    color: #b89a62;

    font-size: 15px;
    font-weight: 500;
    line-height: 1;
  }

  .bj-future__counter .bj-slider__separator {
    display: block;

    width: 32px;
    height: 1px;

    margin: 0 9px;

    background: rgba(14, 40, 76, 0.30);
  }

  .bj-future__counter .bj-slider__total {
    color: #0E284C;

    font-size: 11px;
    font-weight: 400;
    line-height: 1;
  }


  /* =======================================================
     VIEWPORT
     次画像は見せない
  ======================================================= */

  .bj-future__viewport {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0;

    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .bj-future__viewport::-webkit-scrollbar {
    display: none;
  }


  /* TRACK */

  .bj-future__gallery {
    display: flex;

    width: max-content;
    margin: 0;

    gap: 0;
  }


  /* =======================================================
     PHOTO
     1画面 = 1枚
     横幅は大胆に、縦幅は抑える
  ======================================================= */

  .bj-future__item {
    flex: 0 0 100vw;

    width: 100vw;
    max-width: none;

    height: min(260px, 70vh);

    aspect-ratio: auto;

    border-radius: 0;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .bj-future__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
  }

}

/* =========================================================
   COMMON-10｜FAQ
   4LP共通

   PC       ：2列
   TABLET   ：2列
   SP縦     ：1列
   SP横     ：2列
   開閉     ：details / summary
========================================================= */

.bj-faq {
  width: 100%;
  padding: 110px 0 120px;

  background: #fff;
  color: #0E284C;
}

.bj-faq__inner {
  width: min(1540px, calc(100% - 80px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.bj-faq__header {
  width: 100%;
  margin: 0 auto 42px;

  text-align: center;
}

.bj-faq__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;
  margin-bottom: 22px;
}

.bj-faq__label span {
  display: block;

  width: 42px;
  height: 1px;

  background: #b89a62;
}

.bj-faq__label p {
  margin: 0;

  color: #b89a62;

  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
}

.bj-faq__title {
  margin: 0;

  color: #0E284C;

  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.bj-faq__lead {
  margin: 22px 0 0;

  color: #666;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}


/* =========================================================
   GRID
   PC｜2 COLUMN
========================================================= */

.bj-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0 26px;
}

.bj-faq__column {
  min-width: 0;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.bj-faq__item {
  width: 100%;
  margin: 0;

  border: 1px solid #e8e4dc;

  background: #fff;
}

.bj-faq__column .bj-faq__item:last-child {
  border-bottom: 1px solid #e8e4dc;
}


/* =========================================================
   QUESTION
========================================================= */

.bj-faq__question {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  width: 100%;
  min-height: 92px;

  padding: 24px 28px;

  color: #0E284C;

  cursor: pointer;

  list-style: none;
}

.bj-faq__question::-webkit-details-marker {
  display: none;
}

.bj-faq__question::marker {
  display: none;
  content: "";
}

.bj-faq__question-text {
  min-width: 0;

  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.03em;
}


/* =========================================================
   PLUS / CLOSE
========================================================= */

.bj-faq__toggle {
  position: relative;

  flex: 0 0 22px;

  width: 22px;
  height: 22px;
}

.bj-faq__toggle::before,
.bj-faq__toggle::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  display: block;

  width: 18px;
  height: 2px;

  background: #0E284C;

  transform-origin: center;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.bj-faq__toggle::before {
  transform: translate(-50%, -50%);
}

.bj-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


/* OPEN = × */

.bj-faq__item[open] .bj-faq__toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bj-faq__item[open] .bj-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* =========================================================
   OPEN ITEM
========================================================= */

.bj-faq__item[open] {
  background: #f8f6f1;
}

.bj-faq__item[open] .bj-faq__question {
  padding-bottom: 18px;
}

.bj-faq__item[open] {
  margin-top: 8px;
  margin-bottom: 8px;
  background: #f8f6f1;
}

/* =========================================================
   ANSWER
========================================================= */

.bj-faq__answer {
  padding: 0 28px 30px;
}

.bj-faq__answer::before {
  content: "";

  display: block;

  width: 100%;
  height: 1px;

  margin-bottom: 18px;

  background: #e8e4dc;
}

.bj-faq__answer p {
  margin: 0;

  color: #4d4d4d;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
}


/* =========================================================
   TABLET
   801px - 1100px
   2列維持
========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

  .bj-faq {
    padding: 90px 0 100px;
  }

  .bj-faq__inner {
    width: calc(100% - 48px);
  }

  .bj-faq__header {
    margin-bottom: 36px;
  }

  .bj-faq__title {
    font-size: clamp(28px, 3.5vw, 36px);
  }

  .bj-faq__lead {
    margin-top: 18px;

    font-size: 13px;
  }

  .bj-faq__grid {
    gap: 0 18px;
  }

  .bj-faq__question {
    min-height: 82px;

    gap: 16px;

    padding: 20px 20px;
  }

  .bj-faq__question-text {
    font-size: 15px;
  }

  .bj-faq__answer {
    padding: 0 20px 26px;
  }

  .bj-faq__answer p {
    font-size: 12px;
    line-height: 1.8;
  }

}


/* =========================================================
   SP｜PORTRAIT
   1 COLUMN
========================================================= */

@media (max-width: 800px) and (orientation: portrait) {

  .bj-faq {
    padding: 78px 0 82px;
  }

  .bj-faq__inner {
    width: calc(100% - 28px);
  }

  .bj-faq__header {
    margin-bottom: 32px;
  }

  .bj-faq__label {
    gap: 12px;
    margin-bottom: 18px;
  }

  .bj-faq__label span {
    width: 30px;
  }

  .bj-faq__label p {
    font-size: 10px;
  }

  .bj-faq__title {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.45;
  }

  .bj-faq__lead {
    margin-top: 16px;

    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }


  /* GRID */

  .bj-faq__grid {
    display: block;
  }

  .bj-faq__column {
    width: 100%;
  }

  /*
     PCでは左右2列なので、
     SPで列がつながった際の二重線を防止
  */

  .bj-faq__column + .bj-faq__column .bj-faq__item:first-child {
    border-top: 0;
  }


  /* QUESTION */

  .bj-faq__question {
    min-height: 72px;

    gap: 14px;

    padding: 18px 14px;
  }

  .bj-faq__question-text {
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.6;
    letter-spacing: 0.01em;
  }


  /* PLUS / CLOSE */

  .bj-faq__toggle {
    flex-basis: 20px;

    width: 20px;
    height: 20px;
  }

  .bj-faq__toggle::before,
  .bj-faq__toggle::after {
    width: 16px;
    height: 1.5px;
  }


  /* ANSWER */

  .bj-faq__item[open] .bj-faq__question {
    padding-bottom: 15px;
  }

  .bj-faq__answer {
    padding: 0 14px 22px;
  }

  .bj-faq__answer::before {
    margin-bottom: 14px;
  }

  .bj-faq__answer p {
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }

  /*
     FigmaのPC用手動改行を
     狭いSPへ持ち込まない
  */

  .bj-faq__answer br {
    display: none;
  }

}


/* =========================================================
   SP｜LANDSCAPE
   2 COLUMN
   横幅を活かしてFAQ全体を把握しやすくする
========================================================= */

@media (max-width: 950px) and (orientation: landscape) {

  .bj-faq {
    padding: 64px 0 72px;
  }

  .bj-faq__inner {
    width: 96%;
    max-width: 920px;
  }

  .bj-faq__header {
    margin-bottom: 30px;
  }

  .bj-faq__label {
    gap: 14px;
    margin-bottom: 16px;
  }

  .bj-faq__label span {
    width: 36px;
  }

  .bj-faq__label p {
    font-size: 10px;
  }

  .bj-faq__title {
    font-size: clamp(23px, 3.8vw, 30px);
    line-height: 1.45;
  }

  .bj-faq__lead {
    margin-top: 14px;

    font-size: 11px;
    line-height: 1.7;
  }


  /* GRID */

  .bj-faq__grid {
  display: block;
}

.bj-faq__column {
  width: 100%;
}

.bj-faq__column + .bj-faq__column .bj-faq__item:first-child {
  border-top: 0;
}


  /* QUESTION */

  .bj-faq__question {
    min-height: 66px;

    gap: 12px;

    padding: 15px 14px;
  }

  .bj-faq__question-text {
    font-size: clamp(12px, 1.9vw, 14px);
    line-height: 1.55;
    letter-spacing: 0.01em;
  }


  /* PLUS / CLOSE */

  .bj-faq__toggle {
    flex-basis: 18px;

    width: 18px;
    height: 18px;
  }

  .bj-faq__toggle::before,
  .bj-faq__toggle::after {
    width: 15px;
    height: 1.5px;
  }


  /* ANSWER */

  .bj-faq__item[open] .bj-faq__question {
    padding-bottom: 13px;
  }

  .bj-faq__answer {
    padding: 0 14px 20px;
  }

  .bj-faq__answer::before {
    margin-bottom: 13px;
  }

  .bj-faq__answer p {
    font-size: 10.5px;
    line-height: 1.75;
    letter-spacing: 0.01em;
  }

  .bj-faq__answer br {
    display: none;
  }
}

/* =========================================================
   COMMON-11｜FOOTER CTA
   4LP共通骨格

   PC / TB / SP横
   ・PC背景画像を幅100%で比例縮小
   ・画像をcoverしない
   ・画像の縦横比でセクション高さを決定
   ・コンテンツを右側へオーバーレイ

   SP縦
   ・元画像 W940 × H1672
   ・上205pxをカット
   ・残り W940 × H1467 を使用
   ・CTA 2列
   ・VALUES 4列
   ・白インナーシャドウはCSS側

   LP個別
   ・背景画像
   ・リード
   ・VALUEアイコン
   ・VALUEテキスト
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.bj-footer-cta {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 0;

  color: #0E284C;
  background: #f8f6f1;

  overflow: hidden;
  isolation: isolate;
}


/* =========================================================
   BACKGROUND
   PC / TB / SP横

   画像そのものを通常フローに置き、
   width:100% / height:auto で比例縮小。
   coverによる拡大・トリミングは禁止。
========================================================= */

.bj-footer-cta__background {
  position: relative;
  z-index: 0;

  display: block;

  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;
}

.bj-footer-cta__background-image {
  display: block;

  width: 100%;
  height: auto;

  max-width: none;

  border: 0;

  object-fit: initial;
  object-position: initial;
}


/* =========================================================
   CONTENT
   PC基準

   背景画像が作った高さ全体へオーバーレイ。
========================================================= */

.bj-footer-cta__content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  width: 100%;
  height: 100%;

  pointer-events: none;
}

.bj-footer-cta__content-inner {
  width: 46%;
  max-width: 760px;

  margin-right: 7%;

  padding: 0;

  text-align: center;

  pointer-events: auto;
}


/* =========================================================
   EYEBROW
========================================================= */

.bj-footer-cta__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(10px, 0.95vw, 18px);

  margin: 0 0 clamp(14px, 1.35vw, 26px);
}

.bj-footer-cta__eyebrow > span {
  display: block;

  width: clamp(34px, 3.3vw, 64px);
  height: 1px;

  flex: 0 0 auto;

  background: #C9922E;
}

.bj-footer-cta__eyebrow p {
  margin: 0;

  color: #C9922E;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9px, 0.72vw, 14px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.035em;

  white-space: nowrap;
}


/* =========================================================
   COPY
========================================================= */

.bj-footer-cta__copy {
  width: 100%;
  margin: 0;
}

.bj-footer-cta__title {
  margin: 0;

  color: #0E284C;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(28px, 2.55vw, 50px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.035em;
}

.bj-footer-cta__title > span {
  display: block;

  white-space: nowrap;
}

.bj-footer-cta__lead {
  width: fit-content;
  max-width: 620px;

  margin: clamp(10px, 1.05vw, 20px) auto 0;

  color: #0E284C;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(10px, 0.78vw, 15px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;

  text-align: center;
}


/* =========================================================
   REGISTER CTA
========================================================= */

.bj-footer-cta__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: clamp(10px, 1.15vw, 22px);

  width: 100%;

  margin: clamp(22px, 2.05vw, 40px) auto 0;
}

.bj-footer-cta__register {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: clamp(52px, 4vw, 78px);

  padding:
    clamp(7px, 0.56vw, 11px)
    clamp(36px, 2.8vw, 54px)
    clamp(8px, 0.62vw, 12px)
    clamp(12px, 1.15vw, 22px);

  border: 2px solid #0E284C;
  border-radius: clamp(12px, 0.95vw, 18px);

  color: #0E284C;
  background: rgba(255, 255, 255, 0.78);

  text-align: center;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* CTA SMALL LABEL */

.bj-footer-cta__register-label {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin: 0 0 3px;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(8px, 0.67vw, 13px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;

  white-space: nowrap;
}

.bj-footer-cta__register-label::before,
.bj-footer-cta__register-label::after {
  content: "";

  display: block;

  width: clamp(18px, 1.85vw, 36px);
  height: 1px;

  flex: 0 0 auto;

  margin: 0 clamp(6px, 0.62vw, 12px);

  background: currentColor;
}


/* CTA MAIN TEXT */

.bj-footer-cta__register-text {
  display: block;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(11px, 0.88vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.035em;

  white-space: nowrap;
}


/* CTA ARROW */

.bj-footer-cta__register-arrow {
  position: absolute;
  top: 50%;
  right: clamp(10px, 1.05vw, 20px);

  display: flex;
  align-items: center;
  justify-content: center;

  width: clamp(25px, 1.75vw, 34px);
  height: clamp(25px, 1.75vw, 34px);

  border: 1px solid currentColor;
  border-radius: 50%;

  font-size: clamp(13px, 0.93vw, 18px);
  font-weight: 300;
  line-height: 1;

  transform: translateY(-50%);

  transition: transform 0.25s ease;
}


/* PARENT */

.bj-footer-cta__register--parent {
  border-color: #BC8B40;

  color: #fff;
  background: #BC8B40;
}


/* TUTOR */

.bj-footer-cta__register--tutor {
  border-color: #0E284C;

  color: #0E284C;
  background: rgba(255, 255, 255, 0.78);
}


/* HOVER */

@media (hover: hover) {

  .bj-footer-cta__register:hover {
    transform: translateY(-2px);

    box-shadow:
      0 8px 22px rgba(14, 40, 76, 0.10);
  }

  .bj-footer-cta__register:hover
  .bj-footer-cta__register-arrow {
    transform: translate(3px, -50%);
  }

}


/* =========================================================
   VALUES
========================================================= */

.bj-footer-cta__values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: 100%;

  margin: clamp(26px, 2.5vw, 48px) auto 0;
}

.bj-footer-cta__value {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-width: 0;

  padding: 0 clamp(5px, 0.62vw, 12px);

  text-align: center;
}

.bj-footer-cta__value + .bj-footer-cta__value::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 1px;

  background: #C9922E;
}

.bj-footer-cta__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: clamp(30px, 2.5vw, 48px);
  height: clamp(30px, 2.5vw, 48px);

  margin: 0 0 clamp(5px, 0.47vw, 9px);
}

.bj-footer-cta__value-icon img,
.bj-footer-cta__value-icon svg {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.bj-footer-cta__value p {
  margin: 0;

  color: #111;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(9px, 0.72vw, 14px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.015em;

  white-space: nowrap;
}


/* =========================================================
   FOOT MESSAGE
========================================================= */

.bj-footer-cta__foot {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(11px, 1.15vw, 22px);

  margin: clamp(26px, 2.6vw, 50px) 0 0;
}

.bj-footer-cta__foot > span {
  display: block;

  width: clamp(42px, 4.25vw, 82px);
  height: 1px;

  flex: 0 0 auto;

  background: #C9922E;
}

.bj-footer-cta__foot p {
  margin: 0;

  color: #C9922E;

  font-family:
    "Allura",
    "Snell Roundhand",
    "Segoe Script",
    "Brush Script MT",
    cursive;

  font-size: clamp(20px, 1.65vw, 32px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;

  white-space: nowrap;
}


/* =========================================================
   TABLET
   801px - 1100px

   PC画像の完成構図を維持。
   高さは画像自身に任せる。
========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

  .bj-footer-cta__content-inner {
    width: 50%;

    margin-right: 3%;

    padding: 0;
  }

  .bj-footer-cta__eyebrow {
    gap: 8px;

    margin-bottom: 12px;
  }

  .bj-footer-cta__eyebrow > span {
    width: 25px;
  }

  .bj-footer-cta__eyebrow p {
    font-size: 8px;
  }

  .bj-footer-cta__title {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.5;
  }

  .bj-footer-cta__lead {
    margin-top: 9px;

    font-size: 9px;
    line-height: 1.7;
  }

  .bj-footer-cta__actions {
    gap: 8px;

    margin-top: 18px;
  }

  .bj-footer-cta__register {
    min-height: 52px;

    padding: 6px 32px 7px 8px;

    border-radius: 11px;
  }

  .bj-footer-cta__register-label {
    margin-bottom: 1px;

    font-size: 8px;
  }

  .bj-footer-cta__register-label::before,
  .bj-footer-cta__register-label::after {
    width: 15px;

    margin: 0 5px;
  }

  .bj-footer-cta__register-text {
    font-size: 10px;
  }

  .bj-footer-cta__register-arrow {
    right: 7px;

    width: 22px;
    height: 22px;

    font-size: 11px;
  }

  .bj-footer-cta__values {
    margin-top: 20px;
  }

  .bj-footer-cta__value {
    padding: 0 4px;
  }

  .bj-footer-cta__value-icon {
    width: 27px;
    height: 27px;

    margin-bottom: 4px;
  }

  .bj-footer-cta__value p {
    font-size: 8px;
  }

  .bj-footer-cta__foot {
    gap: 9px;

    margin-top: 19px;
  }

  .bj-footer-cta__foot > span {
    width: 34px;
  }

  .bj-footer-cta__foot p {
    font-size: 18px;
  }

}


/* =========================================================
   SP｜LANDSCAPE
   PC画像・PC左右構図を維持
========================================================= */

@media (max-width: 800px) and (orientation: landscape) {

  .bj-footer-cta__content-inner {
    width: 51%;

    margin-right: 2%;

    padding: 0;
  }

  .bj-footer-cta__eyebrow {
    gap: 5px;

    margin-bottom: 7px;
  }

  .bj-footer-cta__eyebrow > span {
    width: 18px;
  }

  .bj-footer-cta__eyebrow p {
    font-size: 6px;
  }

  .bj-footer-cta__title {
    font-size: clamp(16px, 3.2vw, 23px);
    line-height: 1.45;
  }

  .bj-footer-cta__lead {
    margin-top: 5px;

    font-size: 6.5px;
    line-height: 1.6;
  }

  .bj-footer-cta__actions {
  gap: 5px;

  margin-top: 10px;
}

.bj-footer-cta__register {
  min-height: 36px;

  padding: 4px 23px 4px 5px;

  border-width: 1px;
  border-radius: 8px;
}

.bj-footer-cta__register-label {
  margin-bottom: 0;

  font-size: 5.5px;
}

.bj-footer-cta__register-label::before,
.bj-footer-cta__register-label::after {
  width: 10px;

  margin: 0 3px;
}

.bj-footer-cta__register-text {
  font-size: 7px;
}

.bj-footer-cta__register-arrow {
  right: 5px;

  width: 16px;
  height: 16px;

  font-size: 8px;
}

  .bj-footer-cta__values {
    margin-top: 12px;
  }

  .bj-footer-cta__value {
    padding: 0 2px;
  }

  .bj-footer-cta__value-icon {
    width: 18px;
    height: 18px;

    margin-bottom: 2px;
  }

  .bj-footer-cta__value p {
    font-size: 5.5px;
  }

  .bj-footer-cta__foot {
    gap: 6px;

    margin-top: 11px;
  }

  .bj-footer-cta__foot > span {
    width: 24px;
  }

  .bj-footer-cta__foot p {
    font-size: 12px;
  }

}


/* =========================================================
   SP｜PORTRAIT
   FOOTER CTA 共通骨格

   元画像：W940 × H1672
   上205pxをカット
   残り：W940 × H1467 を使用

   ・4LP共通
   ・CTA 2列
   ・VALUES 4列
   ・白インナーシャドウはCSS側で追加
========================================================= */

@media (max-width: 800px) and (orientation: portrait) {

  .bj-footer-cta {
    position: relative;

    width: 100%;
    min-height: 0;

    background: #faf7f1;

    overflow: hidden;
  }


  /* =====================================================
     BACKGROUND
     SP縦

     通常フローの画像を上へ205px相当ずらし、
     上側をセクション外へ隠す。

     205 / 940 × 100vw = 21.81vw
  ====================================================== */

  .bj-footer-cta__background {
    position: relative;
    z-index: 0;

    display: block;

    width: 100%;
    height: calc(1467 / 940 * 100vw);

    overflow: hidden;
  }

  .bj-footer-cta__background-image {
    position: absolute;

    top: calc(-205 / 940 * 100vw);
    left: 0;

    display: block;

    width: 100%;
    height: auto;

    max-width: none;

    object-fit: initial;
    object-position: initial;
  }


  /* =====================================================
     INNER SHADOW

     Figma
     Frame  ：W940 × H1467
     X      ：0
     Y      ：-776
     Blur   ：4
     Spread ：0
     Color  ：#FFFFFF 42%

     ※白42%は固定。
  ====================================================== */

  .bj-footer-cta::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    box-shadow:
      inset 0
      calc(-776 / 940 * 100vw)
      calc(4 / 940 * 100vw)
      0
      rgba(255, 255, 255, 0.42);
  }


  /* =====================================================
     CONTENT
     背景画像の上へ重ねる
  ====================================================== */

  .bj-footer-cta__content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    pointer-events: none;
  }

  .bj-footer-cta__content-inner {
    position: absolute;

    top: 48%;
    left: 50%;

    width: 92%;
    max-width: 700px;

    margin: 0;
    padding: 0;

    text-align: center;

    transform: translateX(-50%);

    pointer-events: auto;
  }


  /* =====================================================
     EYEBROW
  ====================================================== */

  .bj-footer-cta__eyebrow {
    gap: 2.2vw;

    margin: 0 0 3.8vw;
  }

  .bj-footer-cta__eyebrow > span {
    width: 8.5vw;
    max-width: 64px;
  }

  .bj-footer-cta__eyebrow p {
    font-size: clamp(9px, 2.2vw, 15px);
  }


  /* =====================================================
     COPY
  ====================================================== */

  .bj-footer-cta__title {
    font-size: clamp(22px, 7.3vw, 54px);
    line-height: 1.52;
    letter-spacing: 0.025em;
  }

  .bj-footer-cta__title > span {
    display: block;

    white-space: nowrap;
  }

  .bj-footer-cta__lead {
    width: fit-content;
    max-width: 620px;

    margin: 3.1vw auto 0;

    font-size: clamp(9px, 2.55vw, 17px);
    line-height: 1.72;
    letter-spacing: 0.015em;

    text-align: center;
  }


  /* =====================================================
     CTA
     SP縦でも2列
  ====================================================== */

  .bj-footer-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2.8vw;

    width: 100%;

    margin: 5.2vw auto 0;
  }

  .bj-footer-cta__register {
    min-width: 0;
    min-height: clamp(44px, 11vw, 90px);

    padding:
      1.5vw
      clamp(28px, 7vw, 58px)
      1.6vw
      2vw;

    border-width: 2px;
    border-radius: clamp(10px, 2.3vw, 20px);
  }

  .bj-footer-cta__register-label {
    margin-bottom: 0.4vw;

    font-size: clamp(7px, 2vw, 14px);
  }

  .bj-footer-cta__register-label::before,
  .bj-footer-cta__register-label::after {
    width: clamp(14px, 4.2vw, 38px);

    margin: 0 clamp(4px, 1.4vw, 12px);
  }

  .bj-footer-cta__register-text {
    font-size: clamp(9px, 2.6vw, 18px);
  }

  .bj-footer-cta__register-arrow {
    right: clamp(7px, 2vw, 18px);

    width: clamp(22px, 5.4vw, 40px);
    height: clamp(22px, 5.4vw, 40px);

    font-size: clamp(11px, 2.7vw, 20px);
  }


  /* =====================================================
     VALUES
     SP縦でも4列
  ====================================================== */

  .bj-footer-cta__values {
    grid-template-columns: repeat(4, minmax(0, 1fr));

    width: 100%;

    margin: 7.2vw auto 0;
  }

  .bj-footer-cta__value {
    min-width: 0;

    padding: 0 1vw;
  }

  .bj-footer-cta__value + .bj-footer-cta__value::before {
    top: 0;
    bottom: 0;
  }

  .bj-footer-cta__value-icon {
    width: clamp(26px, 7vw, 54px);
    height: clamp(26px, 7vw, 54px);

    margin: 0 auto 1.4vw;
  }

  .bj-footer-cta__value p {
    font-size: clamp(7px, 2.25vw, 15px);
    line-height: 1.4;
    letter-spacing: 0;

    white-space: nowrap;
  }


  /* =====================================================
     FOOT MESSAGE
  ====================================================== */

  .bj-footer-cta__foot {
    gap: 2.5vw;

    margin: 7.4vw 0 0;
  }

  .bj-footer-cta__foot > span {
    width: 12vw;
    max-width: 92px;
  }

  .bj-footer-cta__foot p {
    font-size: clamp(19px, 6vw, 44px);

    white-space: nowrap;
  }

}

/* =========================================================
   12｜MEET OUR TEACHERS
========================================================= */

.bj-teachers {
  position: relative;
  width: 100%;
  padding: 92px 0 86px;
  overflow: hidden;
  background: #fbfaf3;
  color: #0e284c;
}


/* =========================================================
   HEADING
========================================================= */

.bj-teachers__heading {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto 46px;
  text-align: center;
}

.bj-teachers__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #c79243;
}

.bj-teachers__label span {
  display: block;
  width: 68px;
  height: 1px;
  background: currentColor;
}

.bj-teachers__label p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.bj-teachers__title {
  margin: 0;
  color: #0e284c;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(32px, 2.55vw, 48px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.bj-teachers__lead {
  margin: 12px 0 0;
  color: #242424;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
}


/* =========================================================
   SLIDER
========================================================= */

.bj-teachers__slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.bj-teachers__slider .bj-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.bj-teachers__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  padding: 0 4.4vw;
}


/* =========================================================
   TEACHER CARD
========================================================= */

.bj-teachers__card {
  position: relative;
  display: block;
  flex: 0 0 clamp(220px, 15.55vw, 302px);
  width: clamp(220px, 15.55vw, 302px);
  padding: 0 18px 10px;
  border-right: 1px solid rgba(14, 40, 76, 0.18);
  color: #0e284c;
  text-decoration: none;
}

.bj-teachers__card:first-child {
  border-left: 1px solid rgba(14, 40, 76, 0.18);
}

.bj-teachers__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 50%;
}

.bj-teachers__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bj-teachers__target {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 26px;
  margin: 0 0 12px;
  color: #0e284c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.bj-teachers__target-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #d4a04d;
}

.bj-teachers__target-icon::before,
.bj-teachers__target-icon::after {
  content: "";
  position: absolute;
  border: 1.3px solid currentColor;
}

.bj-teachers__target-icon::before {
  top: 2px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.bj-teachers__target-icon::after {
  bottom: 2px;
  left: 3px;
  width: 15px;
  height: 8px;
  border-radius: 10px 10px 3px 3px;
}

.bj-teachers__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  padding-left: 32px;
  color: #0e284c;
  white-space: nowrap;
}

.bj-teachers__price-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.bj-teachers__price-unit {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}


/* =========================================================
   CARD LINK
========================================================= */

.bj-teachers__card[href]:hover {
  opacity: 0.88;
}

.bj-teachers__card[href]:focus-visible {
  outline: 2px solid #c79243;
  outline-offset: 5px;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.bj-teachers__slider > .bj-slider__arrow {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #333;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.16);
}

.bj-teachers__slider > .bj-slider__arrow--prev {
  left: 2.2%;
}

.bj-teachers__slider > .bj-slider__arrow--next {
  right: 2.2%;
}


/* =========================================================
   CTA
========================================================= */

.bj-teachers__cta-wrap {
  width: min(600px, calc(100% - 40px));
  margin: 58px auto 0;
  text-align: center;
}

.bj-teachers__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82px;
  padding: 14px 78px;
  border-radius: 999px;
  background: #bd8a45;
  color: #fff;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.bj-teachers__cta:hover {
  opacity: 0.9;
}

.bj-teachers__cta:active {
  transform: translateY(1px);
}

.bj-teachers__cta-icon {
  position: absolute;
  top: 50%;
  left: 66px;
  display: block;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
}

.bj-teachers__cta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bj-teachers__cta-text {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.bj-teachers__cta-arrow {
  position: absolute;
  top: 50%;
  right: 66px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.bj-teachers__note {
  margin: 14px 0 0;
  color: #8b8b8b;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

  .bj-teachers {
    padding: 82px 0 78px;
  }

  .bj-teachers__heading {
    width: calc(100% - 56px);
    margin-bottom: 42px;
  }

  .bj-teachers__track {
    padding: 0 38px;
  }

  .bj-teachers__card {
    flex-basis: 250px;
    width: 250px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .bj-teachers__slider > .bj-slider__arrow--prev {
    left: 18px;
  }

  .bj-teachers__slider > .bj-slider__arrow--next {
    right: 18px;
  }
}


/* =========================================================
   SP｜PORTRAIT
========================================================= */

@media (max-width: 800px) and (orientation: portrait) {

  .bj-teachers {
    padding: 72px 0 68px;
  }

  .bj-teachers__heading {
    width: calc(100% - 28px);
    margin-bottom: 36px;
  }

  .bj-teachers__label {
    gap: 10px;
    margin-bottom: 18px;
  }

  .bj-teachers__label span {
    width: 38px;
  }

  .bj-teachers__label p {
    font-size: 12px;
  }

  .bj-teachers__title {
    font-size: clamp(23px, 6.6vw, 29px);
    line-height: 1.55;
    letter-spacing: 0.035em;
  }

  .bj-teachers__lead {
    width: min(330px, 100%);
    margin: 13px auto 0;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.01em;
  }

  .bj-teachers__slider .bj-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .bj-teachers__slider .bj-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  .bj-teachers__track {
    padding: 0 22px;
  }

  .bj-teachers__card {
    flex: 0 0 min(68vw, 270px);
    width: min(68vw, 270px);
    padding: 0 15px 10px;
  }

  .bj-teachers__photo {
    margin-bottom: 16px;
  }

  .bj-teachers__target {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .bj-teachers__target-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .bj-teachers__price {
    gap: 6px;
    padding-left: 28px;
  }

  .bj-teachers__price-number {
    font-size: 25px;
  }

  .bj-teachers__price-unit {
    font-size: 10px;
  }

  .bj-teachers__slider > .bj-slider__arrow {
    display: none;
  }

  .bj-teachers__cta-wrap {
    width: calc(100% - 44px);
    margin-top: 42px;
  }

  .bj-teachers__cta {
    min-height: 64px;
    padding: 10px 56px;
  }

  .bj-teachers__cta-icon {
    left: 26px;
    width: 32px;
    height: 32px;
  }

  .bj-teachers__cta-text {
    font-size: 16px;
  }

  .bj-teachers__cta-arrow {
    right: 28px;
    font-size: 24px;
  }

  .bj-teachers__note {
    margin-top: 11px;
    font-size: 10px;
    line-height: 1.7;
  }
}


/* =========================================================
   SP｜LANDSCAPE
========================================================= */

@media (max-width: 800px) and (orientation: landscape) {

  .bj-teachers {
    padding: 48px 0 46px;
  }

  .bj-teachers__heading {
    width: calc(100% - 40px);
    margin-bottom: 28px;
  }

  .bj-teachers__label {
    gap: 10px;
    margin-bottom: 12px;
  }

  .bj-teachers__label span {
    width: 40px;
  }

  .bj-teachers__label p {
    font-size: 11px;
  }

  .bj-teachers__title {
    font-size: 24px;
  }

  .bj-teachers__lead {
    margin-top: 7px;
    font-size: 10px;
  }

  .bj-teachers__slider .bj-slider__viewport {
  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
}

  .bj-teachers__slider .bj-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  .bj-teachers__track {
    padding: 0 22px;
  }

  .bj-teachers__card {
    flex: 0 0 185px;
    width: 185px;
    padding: 0 12px 8px;
  }

  .bj-teachers__photo {
    margin-bottom: 10px;
  }

  .bj-teachers__target {
    gap: 6px;
    min-height: 20px;
    margin-bottom: 7px;
    font-size: 8px;
  }

  .bj-teachers__target-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .bj-teachers__price {
    gap: 5px;
    padding-left: 22px;
  }

  .bj-teachers__price-number {
    font-size: 20px;
  }

  .bj-teachers__price-unit {
    font-size: 8px;
  }

  .bj-teachers__slider > .bj-slider__arrow {
    display: none;
  }

  .bj-teachers__cta-wrap {
    width: 390px;
    max-width: calc(100% - 40px);
    margin-top: 30px;
  }

  .bj-teachers__cta {
    min-height: 52px;
    padding: 8px 52px;
  }

  .bj-teachers__cta-icon {
    left: 28px;
    width: 28px;
    height: 28px;
  }

  .bj-teachers__cta-text {
    font-size: 14px;
  }

  .bj-teachers__cta-arrow {
    right: 28px;
    font-size: 21px;
  }

  .bj-teachers__note {
    margin-top: 8px;
    font-size: 9px;
  }
}
