@charset "UTF-8";

/* =========================================================
   オーランのスクール LP 専用CSS
   - hero内バッジを「画像上・文字下」に修正
   - セクションごとにコメントを追加
   - 既存デザインを維持しつつ、可読性を整理
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Yuji+Syuku&display=swap");


/* =========================================================
   01. Base / 全体設定
========================================================= */

body.orank-school-lp {
  margin: 0;
  background: #fbf8f0;
  color: #14243a;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

body.orank-school-lp .os-lp,
body.orank-school-lp .os-lp * {
  box-sizing: border-box;
}

body.orank-school-lp .os-lp {
  --os-hero-bg: url("https://orank.jp/wp-content/themes/swell_child/assets/orank-school/img/orank-school-hero-bg-castle.png");

  overflow: hidden;
  line-height: 1.85;
  background: linear-gradient(180deg, #fffdf8, #f6efe0 48%, #fffaf1);
}

body.orank-school-lp a {
  color: inherit;
  text-decoration: none;
}

.os-container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.os-center {
  text-align: center;
}


/* =========================================================
   02. Header / LP専用ヘッダー
========================================================= */

.os-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(197, 164, 89, .22);
  backdrop-filter: blur(12px);
}

body.admin-bar.orank-school-lp .os-header {
  top: 32px;
}

.os-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.os-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.os-logo__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(360px, 62vw);
  object-fit: contain;
}

.os-logo b {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.os-logo small {
  display: block;
  color: #6d6a62;
  font-size: 11px;
}

.os-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.os-nav-cta {
  padding: 10px 18px;
  color: #fff !important;
  background: linear-gradient(135deg, #c49b45, #a87a20);
  border-radius: 5px;
}

.os-menu {
  display: none;
}


/* =========================================================
   03. Hero / ファーストビュー
========================================================= */

.os-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 70px 0 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, .72) 0%,
      rgba(255, 253, 248, .60) 38%,
      rgba(255, 253, 248, .36) 58%,
      rgba(255, 253, 248, .18) 100%
    ),
    var(--os-hero-bg) right center / cover no-repeat,
    #fffdf8;
}

@media (max-width: 560px) {
  .os-hero {
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, .56) 0%,
        rgba(255, 253, 248, .42) 45%,
        rgba(255, 253, 248, .68) 100%
      ),
      url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-hero-bg-castle-sp.png") right top / cover no-repeat,
      #fffdf8 !important;
  }

  .os-hero::before {
    display: none !important;
  }
}

.os-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(246, 239, 224, .95) 100%),
    radial-gradient(circle at 88% 28%, rgba(16, 38, 65, .08), transparent 32%);
}

.os-hero > .os-container {
  position: relative;
  z-index: 1;
}

.os-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 8px;
}

.os-kicker {
  margin: 0 0 16px;
  color: #9b7a37;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.os-hero h1 {
  margin: 0;
  color: #102641;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.17;
  letter-spacing: .06em;
}

.os-hero h1 span {
  color: #b58b31;
}

.os-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #2a3850;
  font-size: 18px;
}

/* =========================================================
   04. Hero badges / ヒーロー内3つの訴求
   重要:
   ここを「画像上・文字下」に固定しています。
   以前の grid-template-columns: 46px 1fr; が横並びの原因です。
========================================================= */

.os-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

body.orank-school-lp .os-badges li {
  min-height: 128px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 14px;
  text-align: center;

  background: transparent;
  border-left: none;
  border-right: none;
  font-weight: 700;

  grid-template-columns: none !important;
}

body.orank-school-lp .os-badges li + li {
  border-left: 1px solid rgba(18, 38, 65, .18);
}

body.orank-school-lp .os-badges img {
  display: block;
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

body.orank-school-lp .os-badges span {
  display: block;
  line-height: 1.45;
}


/* =========================================================
   05. Buttons / ボタン
========================================================= */

.os-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.os-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 5px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: .18s;
}

.os-btn:hover {
  transform: translateY(-2px);
}

.os-btn--gold {
  color: #fff !important;
  background: linear-gradient(135deg, #caa24b, #a57821);
  box-shadow: 0 16px 30px rgba(161, 116, 30, .25);
}

.os-btn--ghost {
  border: 1px solid rgba(20, 36, 58, .4);
  background: rgba(255, 255, 255, .58);
}

.os-btn--navy {
  color: #fff !important;
  background: linear-gradient(135deg, #173b60, #071828);
}


/* =========================================================
   06. Hero visual / 鎧キャラクター
========================================================= */

.os-hero__visual {
  min-height: 560px;
  display: grid;
  place-items: end center;
  position: relative;
}

.os-hero__visual img {
  width: min(100%, 430px);
  max-width: 400px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 26px 50px rgba(6, 16, 26, .22));
}


/* =========================================================
   07. Section common / セクション共通
========================================================= */

.os-video,
.os-about,
.os-overview,
.os-revenue,
.os-curriculum,
.os-voices,
.os-community,
.os-price,
.os-instructors,
.os-faq {
  padding: 48px 0;
}

.os-panel {
  border: 1px solid rgba(198, 163, 88, .38);
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 18px 50px rgba(38, 33, 22, .08);
}

.os-label {
  margin: 0 0 12px;
  color: #b18a36;
  font-weight: 800;
  letter-spacing: .08em;
}

h2 {
  margin: 0 0 18px;
  color: #102641;
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.35;
  letter-spacing: .05em;
}

h3 {
  color: #102641;
}

p {
  color: #30415a;
}

.os-about h2 span {
    color: #b58b31;
}

.os-about-text {
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 560px) {
  .os-about-text {
    font-size: 15.5px;
    line-height: 1.9;
  }
}

.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

@media (max-width: 560px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }
}

/* os-section-title-line 内のテキストはPCでは自然改行させない */
.os-section-title-line .os-accent {
  display: inline-block;
  white-space: nowrap;
}

/* 念のため、この見出し内のsp-brはPCで確実に消す */
.os-section-title-line br.sp-br {
  display: none;
}

@media (max-width: 560px) {
  .os-section-title-line .os-accent {
    white-space: normal;
  }

  .os-section-title-line br.sp-br {
    display: inline;
  }
}

/* =========================================================
   08. Video / YouTube動画
========================================================= */

.os-video__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 34px;
  padding: 38px;
  overflow: hidden;

  border: 1px solid rgba(198, 163, 88, .34);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(250, 244, 232, .9)),
    radial-gradient(circle at 12% 18%, rgba(198, 163, 88, .12), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(20, 36, 58, .08), transparent 30%);
  box-shadow: 0 18px 50px rgba(38, 33, 22, .08);
}

.os-video__grid::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(198, 163, 88, .18);
}

.os-video__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #c6a358 0 34px, transparent 34px) top left / 86px 1px no-repeat,
    linear-gradient(180deg, #c6a358 0 34px, transparent 34px) top left / 1px 86px no-repeat,

    linear-gradient(270deg, #c6a358 0 34px, transparent 34px) top right / 86px 1px no-repeat,
    linear-gradient(180deg, #c6a358 0 34px, transparent 34px) top right / 1px 86px no-repeat,

    linear-gradient(90deg, #c6a358 0 34px, transparent 34px) bottom left / 86px 1px no-repeat,
    linear-gradient(0deg, #c6a358 0 34px, transparent 34px) bottom left / 1px 86px no-repeat,

    linear-gradient(270deg, #c6a358 0 34px, transparent 34px) bottom right / 86px 1px no-repeat,
    linear-gradient(0deg, #c6a358 0 34px, transparent 34px) bottom right / 1px 86px no-repeat;
  opacity: .75;
}

.os-video__media,
.os-video__copy {
  position: relative;
  z-index: 1;
}

.os-video__eyebrow {
  margin: 0 0 10px;
  color: #8b6a2d;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
}

.os-video__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d1d2f;
  border: 1px solid rgba(198, 163, 88, .32);
  box-shadow: 0 16px 38px rgba(13, 39, 66, .14);
}

.os-video__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 560px) {
  .os-video__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }

  .os-video__grid::before {
    inset: 8px;
  }

  .os-video__grid::after {
    background-size:
      58px 1px,
      1px 58px,
      58px 1px,
      1px 58px,
      58px 1px,
      1px 58px,
      58px 1px,
      1px 58px;
    opacity: .62;
  }

  .os-video__eyebrow {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .os-video__copy h2 {
    font-size: 16px;
    line-height: 1.45;
  }

  .os-video__copy p {
    font-size: 14px;
    line-height: 1.9;
  }
}

.os-video__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d1d2f;
  box-shadow: 0 16px 38px rgba(13, 39, 66, .14);
}

.os-video__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}


/* =========================================================
   09. About / スクール紹介
========================================================= */

.os-two {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 56px;
}

.os-sign {
  color: #5f5749;
  font-family: "Klee One", "Yuji Syuku", "Yu Mincho", serif;
  font-size: 20px;
  letter-spacing: .12em;
}

.os-sign span {
  display: inline-block;
  margin-left: 22px;
  color: #102641;
  font-family: "Yuji Syuku", "Klee One", "Yu Mincho", serif;
  font-size: 26px;
}

.os-note {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  padding: 72px 58px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 229, .12) 0%,
      rgba(255, 248, 229, .04) 100%
    ),
    url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-note-scroll-bg.png") center center / 100% 100% no-repeat;
  border: none;
  box-shadow: none;
  transform: none;
  clip-path: none;
}

.os-note::before,
.os-note::after {
  content: none;
  display: none;
}

.os-note h3 {
  margin: 0 0 18px;
  color: #102641;
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
}

.os-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.os-note li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 32px;
  color: #3f4d61;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.os-note li:last-child {
  margin-bottom: 0;
}

.os-note li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .1em;
  color: #b58b31;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 560px) {
  .os-note {
    min-height: 340px;
    padding: 64px 34px 60px;
    justify-content: center;
    background:
      linear-gradient(
        180deg,
        rgba(255, 248, 229, .14) 0%,
        rgba(255, 248, 229, .06) 100%
      ),
      url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-note-scroll-bg.png") center center / 100% 100% no-repeat;
  }

  .os-note h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .os-note li {
    margin-bottom: 10px;
    padding-left: 28px;
    font-size: 13.5px;
    line-height: 1.65;
  }

  .os-note li::before {
    font-size: 16px;
  }
}

/* 料金・講師紹介のリスト共通 */
.os-price-card ul,
.os-instructor ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.os-price-card li,
.os-instructor li {
  position: relative;
  margin: 9px 0;
  padding-left: 28px;
}

.os-price-card li::before,
.os-instructor li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b98f35;
  font-weight: 900;
}

@media (max-width: 560px) {
  .os-note {
    padding: 26px 24px 26px 26px;
    transform: none;
    clip-path: polygon(
      2% 0%,
      90% 0%,
      100% 9%,
      100% 89%,
      96% 100%,
      5% 100%,
      0% 94%,
      0% 5%
    );
  }

  .os-note::before {
    width: 36px;
    height: 36px;
  }

  .os-note h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .os-note li {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.7;
  }

  .os-note li::before {
    font-size: 18px;
  }
}


/* =========================================================
   10. Icon strip / 特徴アイコン横並び
========================================================= */

.os-icon-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
  border: 1px solid rgba(198, 163, 88, .25);
  background: rgba(255, 255, 255, .72);
}

.os-icon-strip div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 12px;
  border-right: 1px solid rgba(198, 163, 88, .18);
  text-align: center;
  font-weight: 700;
}

.os-icon-strip div:last-child {
  border-right: 0;
}

.os-icon-strip img {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.os-icon-strip span {
  display: block;
  color: #102641;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .03em;
}


/* =========================================================
   11. Overview / スクール概要
========================================================= */

/* spanで囲んだ一部テキストを共通で金色にする */
.os-accent {
  color: #b58b31;
}

/* 概要セクション */
.os-overview__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 32px;
  align-items: stretch;
}

.os-paper,
.os-detail {
  position: relative;
  min-height: 330px;
  padding: 22px 44px;
  overflow: hidden;
  border: 1px solid rgba(198, 163, 88, .34);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .92), rgba(247, 239, 224, .90)),
    radial-gradient(circle at 88% 78%, rgba(198, 163, 88, .16), transparent 34%);
  box-shadow:
    0 18px 42px rgba(38, 33, 22, .07),
    inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.os-paper::before,
.os-detail::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(198, 163, 88, .18);
}

.os-paper::after,
.os-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) top left / 72px 1px no-repeat,
    linear-gradient(180deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) top left / 1px 72px no-repeat,
    linear-gradient(270deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) top right / 72px 1px no-repeat,
    linear-gradient(180deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) top right / 1px 72px no-repeat,
    linear-gradient(90deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) bottom left / 72px 1px no-repeat,
    linear-gradient(0deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) bottom left / 1px 72px no-repeat,
    linear-gradient(270deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) bottom right / 72px 1px no-repeat,
    linear-gradient(0deg, rgba(198, 163, 88, .75) 0 30px, transparent 30px) bottom right / 1px 72px no-repeat;
}

.os-paper > *,
.os-detail > * {
  position: relative;
  z-index: 1;
}

/* 左カード */
.os-paper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, .92) 0%,
      rgba(255, 253, 248, .82) 58%,
      rgba(255, 253, 248, .45) 100%
    ),
    url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-overview-bg.png") center center / 100% 100% no-repeat,
    #fffaf0;
}

.os-paper .os-label {
  margin-bottom: 14px;
  color: #b18a36;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}

.os-paper-h2 {
  font-size: clamp(18px, 1.1vw, 28px);
}

.os-paper-subtitle {
  max-width: 430px;
  margin: 0 0 18px;
  color: #102641;
  font-size: clamp(28px, 2.1vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.05em;
}

/* 右カード */
.os-detail {
  display: flex;
  align-items: center;
}

.os-detail dl {
  width: 100%;
  margin: 0;
}

.os-detail div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(20, 36, 58, .12);
}

.os-detail div:last-child {
  border-bottom: 0;
}

.os-detail dt {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #8b6a2d;
  font-size: 15px;
  font-weight: 800;
}

.os-detail dt::before {
  content: none;
  display: none;
}

.os-detail dt img {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: block;
  object-fit: contain;
}

.os-detail dt span {
  display: inline-block;
  line-height: 1.5;
}

.os-detail dd {
  margin: 0;
  color: #102641;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .os-overview__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .os-paper,
  .os-detail {
    min-height: auto;
    padding: 30px 24px;
  }

  .os-paper {
    min-height: 300px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, .94) 0%,
        rgba(255, 253, 248, .88) 56%,
        rgba(255, 253, 248, .82) 100%
      ),
      url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-overview-bg.png") center center / 100% 100% no-repeat,
      #fffaf0;
  }

  .os-paper h2 {
    font-size: 24px;
    line-height: 1.5;
  }

  .os-paper p:not(.os-label) {
    font-size: 14.5px;
  }

  .os-detail div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }

  .os-detail dt {
    font-size: 14px;
  }

  .os-detail dt img {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .os-detail dd {
    padding-left: 36px;
    font-size: 14.5px;
  }
}


/* =========================================================
   12. Revenue / 収益イメージ
========================================================= */

.os-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.os-flow article {
  padding: 34px 24px;
  position: relative;
  text-align: center;
  border: 1px solid rgba(198, 163, 88, .34);
  background: #fffdf8;
  box-shadow: 0 14px 35px rgba(26, 28, 35, .06);
}

.os-flow article:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -21px;
  top: 50%;
  color: #163a5e;
  transform: translateY(-50%);
}

.os-flow span {
  display: block;
  font-weight: 800;
  font-size: 18px;
}

.os-flow b {
  display: block;
  margin: 10px 0 12px;
  color: #b58b31;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}


/* =========================================================
   13. Curriculum / 授業内容
========================================================= */

.os-curriculum__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 38px;
  padding: 34px;
}

.os-phone {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(198, 163, 88, .26);
  background: linear-gradient(180deg, #f6efe1, #fffdf8);
}

.os-phone > p {
  position: absolute;
  left: 26px;
  top: 24px;
  color: #b18a36;
  font-weight: 800;
}

.os-phone__screen {
  width: min(310px, 72%);
  min-height: 390px;
  padding: 34px 26px;
  z-index: 2;
  border: 12px solid #132942;
  border-radius: 38px;
  background: linear-gradient(180deg, #e9eef4, #f9fbff);
  box-shadow: 0 18px 40px rgba(13, 39, 66, .18);
}

.os-phone__screen span {
  display: block;
  margin-top: 18px;
  padding: 18px;
  color: #102641;
  background: #fff;
  border-radius: 14px;
  font-weight: 800;
}


.os-lessons {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.os-lessons article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(198, 163, 88, .32);
  background: rgba(255, 255, 255, .82);
}

.os-lessons span {
  display: grid;
  place-items: center;
  color: #b18a36;
  border-right: 1px solid rgba(20, 36, 58, .12);
  font-weight: 900;
}

.os-lessons h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.os-lessons p {
  margin: 0;
  font-size: 14px;
}

/* =========================================================
   Bonus / 受講特典：中古ドメイン無料プレゼント
========================================================= */

body.orank-school-lp .os-bonus {
  padding: 48px 0;
}

body.orank-school-lp .os-bonus__panel {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  overflow: hidden;
  padding: 46px 54px 42px 30px;
  border: 1px solid rgba(198, 163, 88, .48);
  background:
  url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-bonus-bg.png") center center / cover no-repeat,
  #fffaf0;
  box-shadow: 0 24px 60px rgba(20, 36, 58, .09);
}

body.orank-school-lp .os-bonus__panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(198, 163, 88, .25);
}

body.orank-school-lp .os-bonus__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) top left / 86px 1px no-repeat,
    linear-gradient(180deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) top left / 1px 86px no-repeat,
    linear-gradient(270deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) top right / 86px 1px no-repeat,
    linear-gradient(180deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) top right / 1px 86px no-repeat,
    linear-gradient(90deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) bottom left / 86px 1px no-repeat,
    linear-gradient(0deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) bottom left / 1px 86px no-repeat,
    linear-gradient(270deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) bottom right / 86px 1px no-repeat,
    linear-gradient(0deg, rgba(198, 163, 88, .78) 0 34px, transparent 34px) bottom right / 1px 86px no-repeat;
}

body.orank-school-lp .os-bonus__panel > * {
  position: relative;
  z-index: 1;
}

body.orank-school-lp .os-bonus__visual {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

body.orank-school-lp .os-bonus__visual img {
  width: min(100%, 600px);
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 34px rgba(20, 36, 58, .18));
}

body.orank-school-lp .os-bonus__content {
  text-align: center;
}

body.orank-school-lp .os-bonus__eyebrow {
  margin: 0 0 18px;
  color: #f8cb6b;
  text-align: center;
  font-size: clamp(28px, 2.45vw, 40px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .12em;
}

body.orank-school-lp .os-bonus__eyebrow::after {
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(181, 139, 49, .85),
    transparent
  );
}

body.orank-school-lp .os-bonus__title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.38;
  letter-spacing: .06em;
  font-weight: 900;
}

body.orank-school-lp .os-bonus__title span {
  color: #f8cb6b;
  font-size: 1.12em;
}

body.orank-school-lp .os-bonus__text {
  margin: 28px auto 0;
  color: #fff;
  font-size: 18px;
  line-height: 2.05;
  letter-spacing: .06em;
}

body.orank-school-lp .os-bonus__text span {
  color: #f8cb6b;
  font-weight: 900;
}

body.orank-school-lp .os-bonus__target {
  margin: 14px 0 0;
  color: #1e2e46;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: .05em;
}

body.orank-school-lp .os-bonus__rank-row {
  max-width: 640px;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 28px;
  margin: 30px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(181, 139, 49, .34);
  border-bottom: 1px solid rgba(181, 139, 49, .34);
}

body.orank-school-lp .os-bonus__rank {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fffdf8;
  background:
    linear-gradient(135deg, #9b6d24, #c49b45 48%, #7a541c);
  border: 1px solid rgba(255, 238, 181, .58);
  box-shadow:
    inset 0 0 0 2px rgba(255, 253, 248, .18),
    0 14px 26px rgba(72, 48, 16, .16);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
}

body.orank-school-lp .os-bonus__rank span {
  font-size: 25px;
  line-height: 1;
}

body.orank-school-lp .os-bonus__message {
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: 21px;
  line-height: 1.65;
  font-weight: 900;
  letter-spacing: .06em;
}

body.orank-school-lp .os-bonus__action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

body.orank-school-lp .os-bonus__action .os-btn {
  min-width: min(100%, 560px);
  min-height: 66px;
  font-size: 20px;
  letter-spacing: .12em;
  border: 1px solid rgba(198, 163, 88, .48);
  box-shadow:
    inset 0 0 0 2px rgba(255, 253, 248, .08),
    0 18px 34px rgba(6, 22, 36, .18);
}

/* タブレット */
@media (max-width: 960px) {
  body.orank-school-lp .os-bonus__panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 28px 36px;
  }

  body.orank-school-lp .os-bonus__visual {
    order: 2;
  }

  body.orank-school-lp .os-bonus__content {
    order: 1;
  }

  body.orank-school-lp .os-bonus__visual img {
    width: min(78vw, 360px);
  }

  body.orank-school-lp .os-bonus__rank-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.orank-school-lp .os-bonus__message {
    text-align: center;
  }
}

/* スマホ */
@media (max-width: 560px) {
  body.orank-school-lp .os-bonus {
    padding: 40px 0;
  }

  body.orank-school-lp .os-bonus__panel {
    min-height: auto;
    padding: 34px 18px 28px;
  }

  body.orank-school-lp .os-bonus__eyebrow {
    font-size: 28px;
  }

  body.orank-school-lp .os-bonus__title {
    font-size: 20px;
    line-height: 1.42;
  }

  body.orank-school-lp .os-bonus__text {
    margin-top: 20px;
    text-align: left;
    font-size: 14.5px;
    line-height: 1.9;
    letter-spacing: .03em;
  }

  body.orank-school-lp .os-bonus__text br {
    display: none;
  }

  body.orank-school-lp .os-bonus__target {
    text-align: left;
    font-size: 14.5px;
  }

  body.orank-school-lp .os-bonus__rank {
    min-height: 56px;
    font-size: 18px;
  }

  body.orank-school-lp .os-bonus__message {
    font-size: 17px;
  }

  body.orank-school-lp .os-bonus__action .os-btn {
    min-height: 56px;
    font-size: 15px;
    letter-spacing: .06em;
  }

  body.orank-school-lp .os-bonus__visual img {
    width: min(86vw, 300px);
  }
}

body.orank-school-lp .os-bonus > .os-container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

body.orank-school-lp .os-bonus__panel {
  border-left: 0;
  border-right: 0;
}

/* =========================================================
   16. Price / 料金
========================================================= */

.os-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 28px;
}

.os-price-card {
  padding: 36px;
  border: 1px solid rgba(198, 163, 88, .46);
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(20, 36, 58, .07);
}

.os-price-card h3 {
  margin: 0;
  text-align: center;
  font-size: 24px;
}

.os-price-card h3 small {
  display: block;
  color: #9b7a37;
  font-size: 14px;
}

.os-price-card strong {
  display: block;
  margin: 14px 0 20px;
  color: #102641;
  text-align: center;
  font-size: 48px;
  line-height: 1;
}

.os-price-card strong small {
  font-size: 14px;
}

.os-price-card .os-btn {
  width: 100%;
  margin-top: 22px;
}

.os-note-text {
  color: #82756a;
  text-align: center;
  font-size: 13px;
}


/* =========================================================
   19. Final CTA / 最終CTA
========================================================= */

.os-final {
  margin-top: 30px;
  padding: 70px 0 0;
  border-top: 1px solid rgba(198, 163, 88, .25);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(248, 241, 228, .86)),
    linear-gradient(135deg, rgba(18, 46, 74, .12), rgba(198, 163, 88, .14));
}

.os-final__inner {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: end;
  gap: 34px;
}

.os-final__inner > div {
  align-self: center;
  text-align: center;
}

.os-final strong {
  display: block;
  margin-top: 14px;
  color: #102641;
  font-size: 26px;
}

.os-final strong small {
  margin-left: 4px;
  font-size: 13px;
}

.os-final img {
  width: 280px;
  justify-self: center;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .16));
}


/* =========================================================
   20. Footer / LP専用フッター
========================================================= */

.os-footer {
  padding: 28px 0;
  color: #fff;
  background: #081827;
}

.os-footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 22px;
}

.os-footer .os-logo small,
.os-footer .os-logo b {
  color: #fff;
}

.os-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.os-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  text-align: right;
  font-size: 12px;
}

.os-footer .os-logo--footer {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.os-footer .os-logo__image--footer {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(420px, 80vw);
  object-fit: contain;
}

/* =========================================================
   21. Responsive / タブレット
========================================================= */

@media (max-width: 960px) {
  body.admin-bar.orank-school-lp .os-header {
    top: 46px;
  }

  .os-menu {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(20, 36, 58, .22);
    border-radius: 8px;
  }

  .os-menu span {
    width: 22px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: #102641;
  }

  .os-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fffdf8;
    border: 1px solid rgba(198, 163, 88, .3);
    box-shadow: 0 18px 40px rgba(20, 36, 58, .14);
  }

  .os-nav.is-open {
    display: flex;
  }

  .os-hero__grid,
  .os-video__grid,
  .os-two,
  .os-overview__grid,
  .os-curriculum__grid,
      .os-final__inner {
    grid-template-columns: 1fr;
  }

  .os-hero__visual {
    min-height: auto;
  }

  .os-hero__visual img {
    max-width: 300px;
  }

  .os-icon-strip,
  .os-flow,
  .os-cards,
  .os-price-grid,
  .os-faq-grid {
    grid-template-columns: 1fr;
  }

  .os-flow article:not(:last-child)::after {
    content: "▼";
    right: 50%;
    top: auto;
    bottom: -24px;
    transform: translateX(50%);
  }

  .os-instructor {
    grid-template-columns: 1fr;
  }

  .os-final img {
    display: none;
  }

  .os-footer__inner {
    grid-template-columns: 1fr;
  }

  .os-footer nav {
    justify-content: flex-start;
  }

  .os-footer p {
    text-align: left;
  }
}

/* =========================================================
   22. Responsive / スマホ
   - os-hero__visual を os-lead の上に表示
   - os-badges はスマホでも3列横並びを維持
   - 文字が潰れないよう、アイコン・文字サイズ・余白をスマホ用に最適化
========================================================= */

@media (max-width: 560px) {
  .os-container {
    width: min(100% - 24px, 1120px);
  }

  .os-header__inner {
    min-height: 64px;
  }

  .os-logo small {
    display: none;
  }

  .os-hero {
    padding: 42px 0 44px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, .56) 0%,
        rgba(255, 253, 248, .42) 45%,
        rgba(255, 253, 248, .68) 100%
      ),
      url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-hero-bg-castle-sp.png") right top / cover no-repeat,
      #fffdf8 !important;
  }

  .os-hero::before {
    display: none;
  }

  .os-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  /*
    .os-hero__copy の中身をグリッド直下の要素のように扱うことで、
    HTMLを変更せずにモバイル時だけ表示順を入れ替えます。
  */
  .os-hero__copy {
    display: contents;
  }

  .os-kicker {
    order: 1;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .os-hero h1 {
    order: 2;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.32;
    text-align: center;
    letter-spacing: .04em;
  }

  .os-hero__visual {
    order: 3;
    min-height: auto;
    margin: 16px auto 10px;
  }

  .os-hero__visual img {
    width: min(62vw, 230px);
    max-width: 230px;
  }

  .os-lead {
    order: 4;
    max-width: 100%;
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }

  /*
    スマホでも3列横並びを維持。
    文字は10〜12pxに抑え、アイコンも小さめにして視認性を確保します。
  */
  .os-badges {
    order: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 22px;
  }

  body.orank-school-lp .os-badges li {
    min-height: 106px;
    padding: 8px 4px;
    gap: 6px;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: center;
  }

  body.orank-school-lp .os-badges li + li {
    border-left: 1px solid rgba(18, 38, 65, .16);
    border-top: none;
  }

  body.orank-school-lp .os-badges img {
    width: clamp(34px, 24vw, 72px);
    height: clamp(34px, 24vw, 72px);
  }

  body.orank-school-lp .os-badges span {
    font-size: clamp(10px, 2.75vw, 12px);
    line-height: 1.35;
    letter-spacing: 0;
    word-break: keep-all;
  }

  .os-actions {
    order: 6;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .os-btn {
    width: 100%;
  }

  .os-video__grid,
  .os-curriculum__grid {
    padding: 22px;
  }

  .os-detail div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .os-lessons article {
    grid-template-columns: 1fr;
  }

  .os-phone__screen {
    width: 86%;
  }
}

.os-section-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 28px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
}

.os-section-title-line::before,
.os-section-title-line::after {
  content: "";
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 163, 88, .65),
    transparent
  );
}

.os-section-title-line::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 163, 88, .65)
  );
}

.os-section-title-line::after {
  background: linear-gradient(
    90deg,
    rgba(198, 163, 88, .65),
    transparent
  );
}

@media (max-width: 560px) {
  .os-section-title-line {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 20px;
    letter-spacing: .04em;
  }

  .os-section-title-line::before,
  .os-section-title-line::after {
    max-width: 72px;
  }
}

.os-flow__label {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.os-flow__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: 10px 0 12px;
  color: #b58b31;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.os-flow__num {
  display: inline-block;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.os-flow__unit {
  display: inline-block;
  margin-left: 2px;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.os-flow__text {
  display: inline-block;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.os-flow__text--wide {
  font-size: clamp(24px, 2.4vw, 34px);
}

.os-flow__num--large {
  font-size: clamp(38px, 3.8vw, 54px);
}

.os-flow__icon {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 14px;
  object-fit: contain;
}

@media (max-width: 560px) {
  .os-flow__label {
    font-size: 14px;
  }

  .os-flow__value {
    gap: 2px;
    white-space: nowrap;
  }

  .os-flow__num {
    font-size: 30px;
  }

  .os-flow__unit {
    font-size: 16px;
  }

  .os-flow__num--large {
    font-size: 40px;
  }

  .os-flow__text {
    font-size: 27px;
  }

  .os-flow__text--wide {
    font-size: 25px;
  }

  .os-flow__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
}

/* =========================================================
   23. 2026 update v4 / cleaned active styles
========================================================= */

/* セクション見出し */
body.orank-school-lp .os-label-title {
  margin: 0 0 22px;
  color: #b58b31;
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.22;
  letter-spacing: .1em;
  font-weight: 900;
}

body.orank-school-lp .os-label-title::after {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  margin: 14px 0 0;
  background: linear-gradient(90deg, #b58b31, rgba(181, 139, 49, 0));
}

body.orank-school-lp .os-label-title.os-center::after {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, rgba(181, 139, 49, 0), #b58b31, rgba(181, 139, 49, 0));
}

body.orank-school-lp .os-section-subtitle,
body.orank-school-lp .os-instructor-lead {
  margin: 0 0 18px;
  color: #102641;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.45;
  letter-spacing: .05em;
}

body.orank-school-lp .os-section-lead {
  max-width: 720px;
  margin: -8px auto 28px;
  font-size: 16px;
}

/* PCではモバイル用メニューを非表示 */
@media (min-width: 769px) {
  body.orank-school-lp .os-menu {
    display: none !important;
  }

  body.orank-school-lp .os-nav {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 768px) {
  body.orank-school-lp .os-menu {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(20, 36, 58, .22);
    border-radius: 8px;
  }

  body.orank-school-lp .os-menu span {
    width: 22px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: #102641;
  }

  body.orank-school-lp .os-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fffdf8;
    border: 1px solid rgba(198, 163, 88, .3);
    box-shadow: 0 18px 40px rgba(20, 36, 58, .14);
  }

  body.orank-school-lp .os-nav.is-open {
    display: flex;
  }
}

/* 収益イメージの大きすぎる文字を抑える */
body.orank-school-lp .os-flow__value {
  margin: 10px 0 12px;
  color: #b58b31;
  line-height: 1.15;
}

body.orank-school-lp .os-flow__num {
  display: inline;
  color: #b58b31;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.05;
}

body.orank-school-lp .os-flow__unit {
  display: inline;
  color: #b58b31;
  font-size: clamp(18px, 1.6vw, 25px);
}

body.orank-school-lp .os-flow__text--wide {
  color: #b58b31;
  font-size: clamp(20px, 1.75vw, 26px);
}

/* 授業内容 */
body.orank-school-lp .os-curriculum > .os-container.os-panel {
  padding: 34px;
}

body.orank-school-lp .os-curriculum .os-label-title {
  margin-bottom: 28px;
}

body.orank-school-lp .os-curriculum__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 38px;
  padding: 0;
}

body.orank-school-lp .os-curriculum__content > p {
  margin-top: 0;
}

body.orank-school-lp .os-lessons span {
  grid-row: 1 / 3;
  padding-right: 16px;
}

@media (max-width: 560px) {
  body.orank-school-lp .os-lessons span {
  text-align: center;  
  }
}

body.orank-school-lp .os-lessons h3,
body.orank-school-lp .os-lessons p {
  grid-column: 2 / -1;
}

body.orank-school-lp .os-lessons article {
  column-gap: 20px;
  row-gap: 0;
}

/* LINEスマホ */
body.orank-school-lp .os-phone {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
}

body.orank-school-lp .os-phone__label {
  position: static;
  width: 100%;
  margin: 0 0 18px;
  color: #b18a36;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
}

body.orank-school-lp .os-phone .os-phone__knight {
  display: none;
}

body.orank-school-lp .os-smartphone {
  width: min(338px, 92%);
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border: 12px solid #132942;
  border-radius: 38px;
  background: #eaf0f6;
  box-shadow:
    0 22px 46px rgba(13, 39, 66, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .8);
}

body.orank-school-lp .os-smartphone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 82px;
  height: 16px;
  z-index: 4;
  transform: translateX(-50%);
  background: #132942;
  border-radius: 999px;
}

body.orank-school-lp .os-smartphone__status {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px 0;
  color: #132942;
  font-size: 11px;
  font-weight: 800;
}

body.orank-school-lp .os-line-header {
  height: 48px;
  display: grid;
  grid-template-columns: 20px 28px 1fr 22px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #dfe8f1;
  border-bottom: 1px solid rgba(19, 41, 66, .08);
}

body.orank-school-lp .os-line-header__back,
body.orank-school-lp .os-line-header__menu {
  color: #52667c;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

body.orank-school-lp .os-line-header__avatar {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #fbf8f0;
  border: 1px solid rgba(198, 163, 88, .65);
  box-shadow: 0 2px 6px rgba(13, 39, 66, .18);
}

body.orank-school-lp .os-line-header b {
  overflow: hidden;
  color: #102641;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.orank-school-lp .os-line-body {
  min-height: 420px;
  padding: 28px 16px 22px;
  background:
    linear-gradient(180deg, rgba(236, 242, 248, .92), rgba(221, 231, 241, .96)),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, .8), transparent 32%);
}

body.orank-school-lp .os-line-bubble {
  max-width: 250px;
  margin: 0 0 18px 26px;
  padding: 14px 16px;
  position: relative;
  overflow: visible;
  color: #102641;
  background: #fff;
  border-radius: 6px 18px 18px 18px;
  box-shadow: 0 8px 18px rgba(19, 41, 66, .08);
}

body.orank-school-lp .os-line-bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid #fff;
}

body.orank-school-lp .os-line-bubble p {
  margin: 0 0 8px;
  color: #26394f;
  font-size: 11px;
  line-height: 1.7;
}

body.orank-school-lp .os-line-bubble p:last-child {
  margin-bottom: 0;
}

body.orank-school-lp .os-line-bubble strong {
  color: #102641;
  font-weight: 900;
}

body.orank-school-lp .os-line-bubble__image {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin: 10px auto;
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  object-fit: contain;
  border-radius: 8px;
  filter: none !important;
}

/* 受講生の声スライダー */
body.orank-school-lp .os-voices {
  position: relative;
  overflow: hidden;
}

body.orank-school-lp .os-voice-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 10px 0 20px;
  cursor: pointer;
  touch-action: pan-y;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body.orank-school-lp .os-voice-slider.is-dragging {
  cursor: pointer;
}

body.orank-school-lp .os-voice-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 0 24px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

body.orank-school-lp .os-voice-card {
  width: min(430px, calc(100vw - 60px));
  min-height: 238px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 163, 88, .34);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .95), rgba(250, 244, 232, .92)),
    radial-gradient(circle at 100% 0%, rgba(181, 139, 49, .13), transparent 32%);
  box-shadow: 0 18px 42px rgba(20, 36, 58, .08);
}

body.orank-school-lp .os-voice-card::after {
  content: "“";
  position: absolute;
  right: 22px;
  bottom: -38px;
  color: rgba(181, 139, 49, .16);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

body.orank-school-lp .os-voice-card figure {
  margin: 0;
}

body.orank-school-lp .os-voice-card img {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(181, 139, 49, .45);
  border-radius: 999px;
  background: #f6efe0;
  box-shadow: 0 12px 24px rgba(16, 38, 65, .12);
}

body.orank-school-lp .os-voice-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.45;
}

body.orank-school-lp .os-voice-card p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.8;
}

body.orank-school-lp .os-voice-card small {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  color: #8b6a2d;
  background: rgba(181, 139, 49, .12);
  border-radius: 999px;
  font-weight: 800;
}

/* コミュニティCTA */
body.orank-school-lp .os-community {
  padding-top: 44px;
  padding-bottom: 44px;
}

body.orank-school-lp .os-community-cta {
  min-height: 390px;
  position: relative;
  display: grid;
  grid-template-columns: 390px 1fr 150px;
  align-items: stretch;
  gap: 12px;
  padding: 28px 20px 28px 0;
  overflow: hidden;
  border: 1px solid rgba(198, 163, 88, .45);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 253, 248, .88) 0%,
      rgba(255, 253, 248, .66) 42%,
      rgba(255, 253, 248, .42) 100%
    ),
    url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-community-bg.png") center center / cover no-repeat;
  box-shadow: 0 22px 54px rgba(20, 36, 58, .08);
}

body.orank-school-lp .os-community-cta::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(198, 163, 88, .22);
}

body.orank-school-lp .os-community-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) top left / 86px 1px no-repeat,
    linear-gradient(180deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) top left / 1px 86px no-repeat,
    linear-gradient(270deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) top right / 86px 1px no-repeat,
    linear-gradient(180deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) top right / 1px 86px no-repeat,
    linear-gradient(90deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) bottom left / 86px 1px no-repeat,
    linear-gradient(0deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) bottom left / 1px 86px no-repeat,
    linear-gradient(270deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) bottom right / 86px 1px no-repeat,
    linear-gradient(0deg, rgba(198, 163, 88, .76) 0 34px, transparent 34px) bottom right / 1px 86px no-repeat;
}

body.orank-school-lp .os-community-cta > * {
  position: relative;
  z-index: 1;
}

body.orank-school-lp .os-community-cta__visual {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

body.orank-school-lp .os-community-cta__visual img {
  width: clamp(280px, 24vw, 380px);
  max-width: none;
  max-height: 390px;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: -1px;
  transform: translateY(28px);
}

body.orank-school-lp .os-community-cta__eyebrow {
  margin: 0 0 10px;
  color: #102641;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

body.orank-school-lp .os-community-cta__body h2 {
  display: block;
  margin-bottom: 10px;
  padding: 10px 0;
  color: #102641;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.35;
  text-align: center;
  border: 1px solid #b58b31;
}

body.orank-school-lp .os-community-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
  color: #b58b31;
  line-height: 1;
  white-space: nowrap;
}

body.orank-school-lp .os-community-cta__body h2 .os-community-price {
  display: flex;
}

body.orank-school-lp .os-community-price__num {
  font-size: 1.4em;
}

body.orank-school-lp .os-community-price__yen {
  font-size: .58em;
}

body.orank-school-lp .os-community-price small {
  margin-left: 2px;
  font-size: .4em;
}

body.orank-school-lp .os-community-cta__description {
  margin-top: 0;
  text-align: left;
}

body.orank-school-lp .os-community-cta .os-btn {
  min-height: 46px;
  display: flex;
  max-width: 360px;
  margin: 18px auto 0;
}

body.orank-school-lp .os-community-badge {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  align-self: start;
  margin: 2px auto 0;
  color: #9b7a37;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .04em;
  border: 1px solid rgba(198, 163, 88, .5);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 253, 248, .96), rgba(248, 239, 220, .92));
  box-shadow: inset 0 0 0 7px rgba(198, 163, 88, .08), 0 14px 28px rgba(20, 36, 58, .07);
}

/* 料金 */
body.orank-school-lp .os-price-card .os-price-amount {
  font-size: 48px;
}

body.orank-school-lp .os-price-card .os-price-yen,
body.orank-school-lp .os-final .os-price-yen {
  margin-left: 2px;
  font-size: 30px;
  line-height: 1;
}

body.orank-school-lp .os-note-text {
  margin-top: 22px;
}

/* 講師紹介 */
body.orank-school-lp .os-instructors--premium {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

body.orank-school-lp .os-instructor-stage {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 28px 0 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 163, 88, .46);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(246, 238, 223, .96)),
    radial-gradient(circle at 0% 14%, rgba(16, 38, 65, .12), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(181, 139, 49, .12), transparent 28%);
  box-shadow: 0 24px 60px rgba(20, 36, 58, .1);
}

body.orank-school-lp .os-instructor-stage > .os-label-title,
body.orank-school-lp .os-instructor-stage > .os-instructor-lead {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

body.orank-school-lp .os-instructor-stage > .os-label-title {
  margin-bottom: 12px;
  color: #223249;
}

body.orank-school-lp .os-instructor-stage > .os-instructor-lead {
  max-width: 580px;
  margin-bottom: 26px;
  color: #5a5a52;
  font-size: 15px;
  line-height: 1.9;
}

body.orank-school-lp .os-instructor-showcase {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

body.orank-school-lp .os-instructor-profile {
  min-height: 620px;
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1fr;
  grid-template-areas:
    "figure heading"
    "figure quote"
    "figure copy"
    "figure duty";
  grid-template-rows: auto auto auto 1fr;
  align-items: stretch;
  border: 0;
  box-shadow: none;
}

/* HTML上は --dark がオーラン側。背景は白ベース、文字は黒系。 */
body.orank-school-lp .os-instructor-profile--dark {
  z-index: 2;
  margin-right: -20px;
  padding-right: 20px;
  clip-path: polygon(0 0, calc(100% - 74px) 0, 100% 100%, 0 100%);
  background: url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-instructor-orank-bg.png") left center / cover no-repeat;
}

/* HTML上は --light がユキ側。背景は黒ベース、文字は白系。 */
body.orank-school-lp .os-instructor-profile--light {
  margin-left: -74px;
  padding-left: 74px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 74px 100%);
  background: url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-instructor-yuki-bg.png") right center / cover no-repeat;
}

body.orank-school-lp .os-instructor-heading {
  grid-area: heading;
  align-self: end;
  padding: 36px 28px 0;
}

body.orank-school-lp .os-instructor-heading .os-role {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 4px 14px;
  border: 1px solid rgba(198, 163, 88, .58);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

body.orank-school-lp .os-instructor-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(38px, 3.3vw, 52px);
  letter-spacing: .08em;
}

body.orank-school-lp .os-instructor-figure {
  grid-area: figure;
  min-height: 620px;
  height: 100%;
  display: grid;
  place-items: center center;
}

body.orank-school-lp .os-instructor-figure img {
  width: min(100%, 300px);
  max-height: 560px;
  align-self: end;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .28));
}

body.orank-school-lp .os-instructor-quotebox {
  grid-area: quote;
  padding: 0 28px;
}

body.orank-school-lp .os-instructor-quotebox .os-quote {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding-left: 26px;
  padding-right: 30px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.75;
}

body.orank-school-lp .os-instructor-quotebox .os-quote::before,
body.orank-school-lp .os-instructor-quotebox .os-quote::after {
  content: "“";
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

body.orank-school-lp .os-instructor-quotebox .os-quote::before {
  position: absolute;
  left: 0;
  top: -4px;
}

body.orank-school-lp .os-instructor-quotebox .os-quote::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: -0.35em;
  transform: rotate(180deg);
  transform-origin: center center;
}

body.orank-school-lp .os-instructor-copy {
  grid-area: copy;
  margin: 0;
  padding: 0 28px 18px;
  font-size: 12.5px;
  line-height: 1.85;
}

body.orank-school-lp .os-instructor-duty {
  grid-area: duty;
  align-self: start;
  margin: 0 28px 28px;
  padding: 16px 18px 14px;
  border: 1px solid rgba(198, 163, 88, .44);
  border-radius: 4px;
}

body.orank-school-lp .os-instructor-duty h4 {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .08em;
}

body.orank-school-lp .os-instructor-duty h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(198, 163, 88, .72);
}

body.orank-school-lp .os-instructor-duty ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.orank-school-lp .os-instructor-duty li {
  position: relative;
  margin: 6px 0;
  padding-left: 20px;
  font-size: 12px;
  line-height: 1.6;
}

body.orank-school-lp .os-instructor-duty li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b58b31;
  font-weight: 900;
}

/* オーラン側：白背景に合わせて黒・紺系の文字色 */
body.orank-school-lp .os-instructor-profile--dark .os-role {
  color: #8b6a2d;
  background: rgba(255, 253, 248, .78);
  border-color: rgba(181, 139, 49, .48);
}

body.orank-school-lp .os-instructor-profile--dark .os-instructor-heading h3,
body.orank-school-lp .os-instructor-profile--dark .os-quote,
body.orank-school-lp .os-instructor-profile--dark .os-instructor-duty h4 {
  color: #102641;
}

body.orank-school-lp .os-instructor-profile--dark .os-quote::before,
body.orank-school-lp .os-instructor-profile--dark .os-quote::after {
  color: rgba(181, 139, 49, .42);
}

body.orank-school-lp .os-instructor-profile--dark .os-instructor-copy,
body.orank-school-lp .os-instructor-profile--dark .os-instructor-duty li {
  color: #30415a;
}

body.orank-school-lp .os-instructor-profile--dark .os-instructor-duty {
  color: #102641;
  background: rgba(255, 253, 248, .82);
  border-color: rgba(181, 139, 49, .42);
}

/* ユキ側：黒背景に合わせて白系の文字色 */
body.orank-school-lp .os-instructor-profile--light .os-role {
  color: #ead39a;
  background: rgba(8, 18, 30, .42);
  border-color: rgba(198, 163, 88, .46);
}

body.orank-school-lp .os-instructor-profile--light .os-instructor-heading h3,
body.orank-school-lp .os-instructor-profile--light .os-quote,
body.orank-school-lp .os-instructor-profile--light .os-instructor-duty h4 {
  color: #fffdf8;
}

body.orank-school-lp .os-instructor-profile--light .os-quote::before,
body.orank-school-lp .os-instructor-profile--light .os-quote::after {
  color: rgba(234, 211, 154, .42);
}

body.orank-school-lp .os-instructor-profile--light .os-instructor-copy,
body.orank-school-lp .os-instructor-profile--light .os-instructor-duty li {
  color: rgba(255, 253, 248, .86);
}

body.orank-school-lp .os-instructor-profile--light .os-instructor-duty {
  color: #fffdf8;
  background: rgba(8, 18, 30, .52);
  border-color: rgba(198, 163, 88, .38);
}

body.orank-school-lp .os-instructor-showcase > .os-instructor-bottom-message {
  grid-column: 1 / -1;
  width: min(1120px, calc(100% - 40px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

body.orank-school-lp .os-instructor-bottom-message {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  padding: 14px 24px;
  border: 1px solid rgba(198, 163, 88, .44);
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 14px 36px rgba(20, 36, 58, .07);
}

body.orank-school-lp .os-instructor-bottom-message span {
  color: #b58b31;
  font-size: 30px;
}

body.orank-school-lp .os-instructor-bottom-message p {
  margin: 0;
  color: #102641;
  font-weight: 800;
  text-align: center;
}

@media (min-width: 769px) {
  body.orank-school-lp .os-instructor-profile--light {
    grid-template-columns: 1fr .8fr;
    grid-template-areas:
      "heading figure"
      "quote figure"
      "copy figure"
      "duty figure";
  }

  body.orank-school-lp .os-instructor-profile--light .os-instructor-figure img {
    transform: none;
  }
}

/* FAQ */
body.orank-school-lp .os-faq-grid {
  align-items: start;
}

body.orank-school-lp .os-faq-item {
  overflow: hidden;
  border: 1px solid rgba(20, 36, 58, .11);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 28px rgba(20, 36, 58, .04);
}

body.orank-school-lp .os-faq-question {
  width: 100%;
  min-height: 64px;
  padding: 17px 50px 17px 50px;
  position: relative;
  display: block;
  color: #102641;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
  text-align: left;
}

body.orank-school-lp .os-faq-question::before {
  content: "Q.";
  position: absolute;
  left: 18px;
  color: #153a5d;
}

body.orank-school-lp .os-faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: #b18a36;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .28s ease;
}

body.orank-school-lp .os-faq-item.is-open .os-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

body.orank-school-lp .os-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.22, 1, .36, 1);
}

body.orank-school-lp .os-faq-answer__inner {
  padding: 0 18px 20px 50px;
}

body.orank-school-lp .os-faq-answer p {
  margin: 0;
  font-size: 14px;
}

/* 最終CTA背景画像 */
body.orank-school-lp .os-final {
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, .62) 0%,
      rgba(255, 253, 248, .38) 46%,
      rgba(255, 253, 248, .52) 100%
    ),
    url("/wp-content/themes/swell_child/assets/orank-school/img/orank-school-final-bg.png") center center / cover no-repeat,
    linear-gradient(135deg, rgba(18, 46, 74, .08), rgba(198, 163, 88, .10));
}

@media (max-width: 960px) {
  body.orank-school-lp .os-community-cta {
    grid-template-columns: 160px 1fr;
    padding: 28px;
  }

  body.orank-school-lp .os-community-badge {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 96px;
    height: 96px;
    font-size: 11px;
  }

  body.orank-school-lp .os-community-cta__visual img {
    width: 160px;
  }

  body.orank-school-lp .os-instructor-showcase {
    grid-template-columns: 1fr;
  }

  body.orank-school-lp .os-instructor-profile--dark,
  body.orank-school-lp .os-instructor-profile--light {
    margin: 0;
    padding: 0;
    clip-path: none;
  }

  body.orank-school-lp .os-instructor-profile {
    min-height: 540px;
  }
}

@media (max-width: 560px) {
  body.orank-school-lp .os-label-title {
    font-size: 28px;
  }

  body.orank-school-lp .os-detail dd {
    padding-left: 46px;
  }

  body.orank-school-lp .os-curriculum > .os-container.os-panel {
    padding: 24px 16px;
  }

  body.orank-school-lp .os-curriculum__grid {
    grid-template-columns: 1fr;
  }

  body.orank-school-lp .os-curriculum__content {
    order: 1;
  }

  body.orank-school-lp .os-phone {
    order: 2;
    min-height: auto;
    padding: 24px 10px 26px;
  }

  body.orank-school-lp .os-smartphone {
    width: min(302px, 100%);
    max-width: 100%;
  }

  body.orank-school-lp .os-line-body {
    padding: 24px 12px 20px;
  }

  body.orank-school-lp .os-line-bubble {
    width: calc(100% - 24px);
    max-width: none;
    margin-left: 18px;
  }

  body.orank-school-lp .os-voice-slider {
    -webkit-mask-image: none;
    mask-image: none;
  }

  body.orank-school-lp .os-voice-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 22px;
    width: min(330px, calc(100vw - 40px));
    min-height: auto;
    text-align: center;
  }

  body.orank-school-lp .os-voice-card img {
    width: 72px;
    height: 72px;
  }

  body.orank-school-lp .os-voice-card > div {
    width: 100%;
  }

  body.orank-school-lp .os-voice-card h3 {
    font-size: 17px;
  }

  body.orank-school-lp .os-voice-card p {
    text-align: left;
  }

  body.orank-school-lp .os-community-cta {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 26px 18px;
  }

  body.orank-school-lp .os-community-cta__visual {
    display: none;
  }

  body.orank-school-lp .os-community-badge {
    position: static;
    order: -1;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    justify-self: center;
    padding: 0;
    border-radius: 999px;
  }

  body.orank-school-lp .os-community-cta__body h2 {
    font-size: 22px;
  }

  body.orank-school-lp .os-community-price {
    justify-content: center;
  }

  body.orank-school-lp .os-community-cta__description {
    text-align: left;
  }

  body.orank-school-lp .os-price-card .os-price-amount {
    font-size: 42px;
  }

  body.orank-school-lp .os-price-card .os-price-yen {
    font-size: 25px;
  }

  body.orank-school-lp .os-instructor-stage {
    padding: 22px 0 22px;
  }

  body.orank-school-lp .os-instructor-showcase {
    grid-template-columns: 1fr;
    background: none;
  }

  body.orank-school-lp .os-instructor-profile {
    min-height: auto;
    grid-template-columns: .82fr 1fr;
    grid-template-areas:
      "heading heading"
      "figure quote"
      "copy copy"
      "duty duty";
    grid-template-rows: auto auto auto auto;
    align-items: center;
    margin: 0 14px 18px !important;
    padding: 0 !important;
    overflow: hidden;
    clip-path: none !important;
    border: 1px solid rgba(198, 163, 88, .32);
  }

  body.orank-school-lp .os-instructor-heading {
    padding: 24px 18px 8px;
    text-align: center;
  }

  body.orank-school-lp .os-instructor-heading h3 {
    margin-bottom: 0;
    font-size: 36px;
  }

  body.orank-school-lp .os-instructor-figure {
    min-height: 250px;
    padding-left: 8px;
  }

  body.orank-school-lp .os-instructor-figure img {
    width: 150px;
    max-height: 245px;
  }

  body.orank-school-lp .os-instructor-quotebox {
    align-self: center;
    padding: 0 16px 0 0;
  }

  body.orank-school-lp .os-instructor-quotebox .os-quote {
    margin: 0;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  body.orank-school-lp .os-instructor-copy {
    padding: 10px 18px 16px;
  }

  body.orank-school-lp .os-instructor-duty {
    margin: 0 18px 22px;
  }

  body.orank-school-lp .os-instructor-bottom-message {
    max-width: calc(100% - 28px);
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    padding: 16px;
  }

  body.orank-school-lp .os-faq-question {
    padding-right: 44px;
    font-size: 14px;
  }

  body.orank-school-lp .os-faq-answer__inner {
    padding-left: 50px;
  }
}

body.orank-school-lp .os-faq-answer__inner ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

body.orank-school-lp .os-faq-answer__inner li {
  position: relative;
  margin: 6px 0;
  padding-left: 1.4em;
  color: #30415a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

body.orank-school-lp .os-faq-answer__inner li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .72em;
  width: 5px;
  height: 5px;
  background: #b58b31;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(181, 139, 49, .12);
}

body.orank-school-lp .os-faq-answer__inner li:last-child {
  margin-bottom: 0;
}

@media (max-width: 560px) {
  body.orank-school-lp .os-faq-answer__inner li {
    font-size: 13.5px;
    line-height: 1.75;
  }
}

body.orank-school-lp .os-faq-answer__inner a {
  color: #b58b31;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
