:root {
  --tcw-green: #008d51;
  --tcw-green-rgb: 0, 141, 81;
  --tcw-orange: #f29400;
  --tcw-orange-rgb: 242, 148, 0;
  --tcw-text: #333;
  --tcw-gray: #6b7280;
  --tcw-green-soft: #e6f4ed;
  --max-width: 1080px;
  --radius-xl: 48px; /* セクション大枠 */
  --radius-lg: 32px; /* 中カード */
  --radius-md: 20px; /* 小カード */
  --radius-sm: 12px; /* ボックス系 */
  /* 追加：グレー階調（役割ベース） */
  --tcw-text-strong: #1f2937;
  --tcw-text-mid: #374151;
  --tcw-text-sub: #4b5563;
  --tcw-text-muted: #9ca3af;
  --tcw-dark: #111827;
  /* 境界線・薄背景 */
  --tcw-bg: #fff;
  --tcw-border: #e5e7eb;
  --tcw-bg-soft: #f7f7f7;
  --tcw-bg-light: #f9fafb;
  --tcw-bg-gray: #f8f9f8;
  --tcw-border-soft: #ddd;
  --tcw-border-softer: #eee;
  --tcw-text-weak: #555;
  --tcw-teal: #047041;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.12);
}
.lp-ot {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--tcw-text);
  line-height: 1.8;
  background: var(--tcw-bg);
  overflow-x: clip;
}
.lp-ot-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
}
.lp-ot-brSp {
  display: none;
}
@media (max-width: 767px) {
  .lp-ot-brSp {
    display: block;
  }
}
.lp-ot-iconSm {
  width: 14px;
  height: 14px;
}
.lp-ot-iconMd {
  width: 24px;
  height: 24px;
}
.lp-ot-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--tcw-bg-soft);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.lp-ot-headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
@media (min-width: 768px) {
  .lp-ot-headerInner {
    height: 64px;
  }
}
.lp-ot-logoImg {
  height: 28px;
}
@media (min-width: 768px) {
  .lp-ot-logoImg {
    height: 40px;
  }
}
.lp-ot-headerCta {
  display: flex;
  gap: 5px;
}
.lp-ot-headerBtnGreen, .lp-ot-headerBtnOrange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 9999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
  padding: 8px 7px;
  font-size: 10px;
  color: var(--tcw-bg);
}
@media (min-width: 768px) {
  .lp-ot-headerBtnGreen, .lp-ot-headerBtnOrange {
    gap: 8px;
    font-size: 14px;
    padding: 5px 16px;
  }
}
.lp-ot-headerBtnGreen {
  background: var(--tcw-green);
}
.lp-ot-headerBtnOrange {
  background: var(--tcw-orange);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}
.lp-ot-headerBtnGreen:hover, .lp-ot-headerBtnOrange:hover {
  opacity: 0.92;
  transform: scale(1.03);
}
/* FV */
.lp-ot-fv {
  padding-top: 80px;
  padding-bottom: 50px;
  background: var(--tcw-bg);
}
@media (min-width: 768px) {
  .lp-ot-fv {
    padding-top: 100px;
  }
}
.lp-ot-fvCard {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--tcw-bg);
  border: 4px solid rgba(var(--tcw-green-rgb), 0.05);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) {
  .lp-ot-fvCard {
    display: flex;
  }
}
.lp-ot-fvVisual {
  position: relative;
  height: 380px;
  background: var(--tcw-border-softer);
}
@media (min-width: 768px) {
  .lp-ot-fvVisual {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .lp-ot-fvVisual {
    width: 58.333%;
  }
}
.lp-ot-fvVisualBg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/main.jpg");
  background-size: cover;
  background-position: center;
}
.lp-ot-fvLabels {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-ot-fvLabelGreen, .lp-ot-fvLabelOrange {
  display: inline-block;
  color: var(--tcw-bg);
  font-weight: 900;
  border-radius: 9999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  padding: 3px 14px;
  font-size: 10px;
}
@media (min-width: 768px) {
  .lp-ot-fvLabelGreen, .lp-ot-fvLabelOrange {
    font-size: 12px;
  }
}
.lp-ot-fvLabelGreen {
  background: var(--tcw-green);
}
.lp-ot-fvLabelOrange {
  background: var(--tcw-orange);
}
.lp-ot-fvText {
  padding: 20px;
  background: var(--tcw-bg);
}
@media (min-width: 768px) {
  .lp-ot-fvText {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .lp-ot-fvText {
    width: 41.667%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.lp-ot-fvHash {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  background: rgba(var(--tcw-green-rgb), 0.10);
  color: var(--tcw-green);
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.lp-ot-fvTitle {
  font-weight: 900;
  line-height: 1.4;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .lp-ot-fvTitle {
    font-size: 36px;
  }
}
.lp-ot-fvAccent {
  color: var(--tcw-green);
}
.lp-ot-fvLead {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.7);
}
.lp-ot-fvDesc {
  font-weight: 700;
  color: var(--tcw-gray);
  font-size: 13px;
  border-left: 4px solid var(--tcw-orange);
  padding-left: 12px;
  margin-bottom: 22px;
}
.lp-ot-ctaBtns {
  max-width: 672px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .lp-ot-ctaBtns {
    grid-template-columns: 1fr 1fr;
  }
  .lp-ot-ctaBtns > :nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 380px;
  }
}
.lp-ot-ctaBtnGreen, .lp-ot-ctaBtnOrange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--tcw-bg);
  box-shadow: var(--shadow-md);
}
.lp-ot-ctaBtnGreen {
  background: var(--tcw-green);
}
.lp-ot-ctaBtnOrange {
  background: var(--tcw-orange);
}
.lp-ot-ctaBtnGreen:hover, .lp-ot-ctaBtnOrange:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
/* ==========================
   Section 2: 進路のこと、こんなモヤモヤありませんか？
========================== */
/* ===== Icons ===== */
.lp-ot-ico24 {
  width: 24px;
  height: 24px;
}
.lp-ot-ico32 {
  width: 32px;
  height: 32px;
}
/* ===== Section 2: Empathy ===== */
.lp-ot-empathy {
  padding: 50px 16px;
  background: var(--tcw-bg-gray);
}
.lp-ot-empathyTitle {
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.lp-ot-empathyTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--tcw-green);
}
@media (min-width: 768px) {
  .lp-ot-empathyTitle {
    font-size: 36px;
  }
}
.lp-ot-empathyContent {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .lp-ot-empathyContent {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
.lp-ot-empathyImgOuter {
  position: relative;
  display: inline-block;
  overflow: visible;
}
.lp-ot-empathyImgOuter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: no-repeat center / contain;
  background-image: url("../images/think.svg");
  pointer-events: none;
  z-index: 3;
}
@media (min-width: 768px) {
  .lp-ot-empathyImgOuter::before {
    top: -10px;
    left: -5px;
    width: 75px;
    height: 75px;
  }
}
.lp-ot-empathyImgWrap {
  width: 160px;
  height: 160px;
  border-radius: 9999px;
  background: var(--tcw-bg);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--tcw-bg);
}
@media (min-width: 768px) {
  .lp-ot-empathyImgWrap {
    width: 224px;
    height: 224px;
  }
}
.lp-ot-empathyImgBg {
  width: 100%;
  height: 100%;
  background-image: url("../images/empathy.jpg");
  background-position: center;
  background-size: cover;
  filter: grayscale(100%) brightness(0.85);
  opacity: .85;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}
.lp-ot-empathyBubbles {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-ot-empathyBubble {
  background: var(--tcw-bg);
  border-radius: var(--radius-md);
  border: 2px solid var(--tcw-bg-soft);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .2s ease;
}
@media (min-width: 768px) {
  .lp-ot-empathyBubble {
    padding: 20px;
    border-radius: var(--radius-md);
  }
}
.lp-ot-empathyBubble:hover {
  transform: translateY(-5px);
}
.lp-ot-empathyBubbleTxt {
  font-weight: 700;
  color: var(--tcw-text-mid);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  .lp-ot-empathyBubbleTxt {
    font-size: 16px;
  }
}
.lp-ot-empathyBubbleIconBlue, .lp-ot-empathyBubbleIconPink, .lp-ot-empathyBubbleIconYellow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-ot-empathyBubbleIconBlue {
  background: #eff6ff;
  color: #3b82f6;
}
.lp-ot-empathyBubbleIconPink {
  background: #fdf2f8;
  color: #ec4899;
}
.lp-ot-empathyBubbleIconYellow {
  background: #fefce8;
  color: #ca8a04;
}
.lp-ot-solution {
  background: var(--tcw-bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border: 4px solid rgba(var(--tcw-green-rgb), 0.10);
  text-align: center;
}
@media (min-width: 768px) {
  .lp-ot-solution {
    padding: 48px;
    border-radius: var(--radius-xl);
  }
}
.lp-ot-solutionTitle {
  font-weight: 900;
  color: var(--tcw-green);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .lp-ot-solutionTitle {
    font-size: 26px;
  }
}
.lp-ot-solutionTitleIcon {
  color: var(--tcw-orange);
  display: inline-flex;
}
.lp-ot-solutionDesc {
  color: var(--tcw-text-sub);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 768px) {
  .lp-ot-solutionDesc {
    font-size: 16px;
  }
}
.lp-ot-solutionStats {
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .lp-ot-solutionStats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }
}
.lp-ot-solutionStatCard {
  background: var(--tcw-bg);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.lp-ot-solutionStatLabel {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 14px;
  color: var(--tcw-text-mid);
}
.lp-ot-solutionStatValue {
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tcw-orange);
}
@media (min-width: 768px) {
  .lp-ot-solutionStatValue {
    font-size: 46px;
  }
}
.lp-ot-solutionStatUnit {
  font-size: 0.65em;
  font-weight: 900;
}
.lp-ot-solutionStatNote {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--tcw-gray);
  font-weight: 700;
}
.lp-ot-solutionBr {
  display: none;
}
@media (min-width: 768px) {
  .lp-ot-solutionBr {
    display: inline;
  }
}
.lp-ot-solutionBtns {
  max-width: 672px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .lp-ot-solutionBtns {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-ot-solutionBtnOutline, .lp-ot-solutionBtnFill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 9999px;
  padding: 16px 20px;
  transition: transform .2s ease, opacity .2s ease;
}
.lp-ot-solutionBtnOutline {
  background: var(--tcw-bg);
  border: 2px solid var(--tcw-green);
  color: var(--tcw-green);
}
.lp-ot-solutionBtnFill {
  background: var(--tcw-green);
  color: var(--tcw-bg);
  box-shadow: var(--shadow-md);
}
.lp-ot-solutionBtnOutline:hover, .lp-ot-solutionBtnFill:hover {
  opacity: .92;
  transform: translateY(-2px);
}
/* ==========================
   Section 3: 作業療法士って？
========================== */
.lp-ot-choice {
  padding: 50px 16px;
  background: var(--tcw-bg);
}
.lp-ot-choiceTitle {
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.lp-ot-choiceTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--tcw-green);
}
@media (min-width: 768px) {
  .lp-ot-choiceTitle {
    font-size: 36px;
  }
}
.lp-ot-choiceDesc {
  color: var(--tcw-text-sub);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .lp-ot-choiceDesc {
    font-size: 16px;
  }
}
.lp-ot-choiceInner {
  border-radius: var(--radius-xl);
  border: 2px solid var(--tcw-bg-soft);
  background-image: radial-gradient(var(--tcw-border-soft) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .lp-ot-choiceInner {
    padding: 64px;
  }
}
.lp-ot-choiceMainImg {
  display: block;
  width: 100%;
  height: auto;
}
.lp-ot-choiceSummary {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.80);
  border: 7px solid var(--tcw-bg-soft);
  border-radius: var(--radius-lg);
  padding: 10px;
  text-align: center;
}
.lp-ot-choiceSummaryTitle {
  font-weight: 900;
  color: var(--tcw-green);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .lp-ot-choiceSummary {
    padding: 32px;
  }
  .lp-ot-choiceSummaryTitle {
    font-size: 24px;
  }
}
.lp-ot-goodList {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.lp-ot-goodList ul {
  padding-left: 0.3em;
}
.lp-ot-goodList li {
  list-style: none;
  position: relative;
  padding-left: 1.6em;
}
.lp-ot-goodList li::before {
  content: "✔︎";
  position: absolute;
  left: 0;
  color: #3a7a4a; /* ブランドカラーとか */
}
.lp-ot-choiceSummaryDesc {
  color: var(--tcw-text-sub);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .lp-ot-choiceSummaryDesc {
    font-size: 16px;
  }
}
.lp-ot-choiceMainMedia {
  display: block;
}
.lp-ot-choiceMainImg {
  width: 100%;
  height: auto;
  display: block;
}
.lp-ot-choiceMarker {
  background: linear-gradient(transparent 70%, rgba(var(--tcw-orange-rgb), 0.3) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 700;
}
/* ==========================
   Section 4: 強み
========================== */
.lp-ot-strength {
  padding: 50px 16px;
  background: var(--tcw-bg-gray);
}
.lp-ot-strengthTitle {
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.lp-ot-strengthTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--tcw-green);
}
@media (min-width: 768px) {
  .lp-ot-strengthTitle {
    font-size: 36px;
  }
}
.lp-ot-strengthList {}
/* 強み01カード */
.lp-ot-strengthItem01 {
  background: var(--tcw-bg);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--tcw-bg-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .lp-ot-strengthItem01 {
    padding: 48px;
  }
}
/* ヘッダ */
.lp-ot-strengthHead01 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.lp-ot-numBadge01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tcw-green);
  color: var(--tcw-bg);
  font-weight: 900;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.lp-ot-strengthTitle01 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .lp-ot-strengthTitle01 {
    font-size: 30px;
  }
}
.lp-ot-strengthAccentGreen {
  color: var(--tcw-green);
}
.lp-ot-strengthLead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--tcw-text);
  max-width: 720px;
  margin: 24px auto 32px;
}
@media (max-width: 768px) {
  .lp-ot-strengthLead {
    font-size: 15px;
    line-height: 1.85;
    margin: 16px 0 24px;
  }
}
.lp-ot-accentText {
  color: var(--tcw-green);
  font-weight: 600;
}
.lp-ot-programImageWrap {
  margin-left: -20px;
  margin-right: -20px;
}
.lp-ot-programImage {
  margin-bottom: 24px;
  width: 100%;
  display: block;
}
@media (min-width: 1024px) {
  .lp-ot-programImage {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* 2カラム */
.lp-ot-strengthGrid01 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .lp-ot-strengthGrid01 {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .lp-ot-scheduleBox {
    flex: 0 0 48%;
  }
  .lp-ot-exp {
    flex: 0 0 48%;
  }
}
/* 右：現場体験 */
.lp-ot-exp {}
.lp-ot-expTitle {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 900;
  color: var(--tcw-text-mid);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-ot-expTitleIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tcw-orange);
  color: var(--tcw-bg);
  border-radius: 8px;
  padding: 6px;
}
.lp-ot-expIcon {
  width: 20px;
  height: 20px;
}
.lp-ot-expPanels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .lp-ot-expPanels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
}
.lp-ot-expCard {}
.lp-ot-expThumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--tcw-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lp-ot-expTxt {
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .lp-ot-expTxt {
    font-size: 11px;
  }
}
/* ==========================
   Section 4: 強み01：時間割（table）
========================== */
.lp-ot-scheduleBox {
  background: var(--tcw-bg);
  border-radius: var(--radius-md);
  border: 2px solid var(--tcw-bg-soft);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
.lp-ot-scheduleCaption {
  background: var(--tcw-text-strong);
  color: var(--tcw-bg);
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 12px;
  font-size: 12px;
}
.lp-ot-scheduleBody {
  padding: 10px;
}
@media (min-width: 768px) {
  .lp-ot-scheduleBody {
    padding: 16px;
  }
}
.lp-ot-scheduleTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.lp-ot-scheduleThead {
  background: var(--tcw-bg-soft);
}
.lp-ot-scheduleHeadRow {}
.lp-ot-scheduleThBlank {
  border: 1px solid var(--tcw-border);
  padding: 8px;
  text-align: center;
  font-weight: 900;
  font-size: 11px;
  width: 48px;
}
.lp-ot-scheduleTh {
  border: 1px solid var(--tcw-border);
  padding: 8px;
  text-align: center;
  font-weight: 900;
  font-size: 11px;
  color: var(--tcw-text);
}
.lp-ot-scheduleThFri {
  border: 2px solid var(--tcw-green);
  background: var(--tcw-green-soft);
  color: var(--tcw-green);
  padding: 8px;
  text-align: center;
  font-weight: 900;
  font-size: 11px;
}
@media (min-width: 768px) {
  .lp-ot-scheduleThBlank, .lp-ot-scheduleTh, .lp-ot-scheduleThFri {
    font-size: 13px;
    padding: 12px;
  }
}
.lp-ot-scheduleRow {}
.lp-ot-scheduleTdPeriod {
  border: 1px solid var(--tcw-border);
  padding: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 11px;
}
@media (min-width: 768px) {
  .lp-ot-scheduleTdPeriod {
    font-size: 13px;
    padding: 12px;
  }
}
.lp-ot-scheduleTd {
  border: 1px solid var(--tcw-border);
  padding: 8px;
  text-align: center;
  font-size: 11px;
}
@media (min-width: 768px) {
  .lp-ot-scheduleTd {
    font-size: 13px;
    padding: 12px;
  }
}
.lp-ot-scheduleTdMid {
  border: 1px solid var(--tcw-border);
  padding: 8px;
  text-align: center;
  font-size: 11px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lp-ot-scheduleTdMid {
    font-size: 13px;
    padding: 12px;
  }
}
.lp-ot-scheduleTdFriSpan {
  border: 2px solid var(--tcw-green);
  background: var(--tcw-green-soft);
  color: var(--tcw-green);
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
  padding: 8px;
}
.lp-ot-scheduleFriInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp-ot-scheduleFriIcon {
  width: 24px;
  height: 24px;
}
.lp-ot-scheduleFriText {
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 16px;
  padding: 8px 0;
}
.lp-ot-scheduleNote {
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  color: var(--tcw-orange);
  font-weight: 900;
  font-size: 10px;
}
@media (min-width: 768px) {
  .lp-ot-scheduleNote {
    font-size: 12px;
  }
}
.lp-ot-scheduleNoteIcon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
}
/* ==========================
   Section 4: 強み02
========================== */
.lp-ot-reason02 {
  margin-top: 50px;
}
.lp-ot-reason02Inner {
  background: var(--tcw-bg);
  border-radius: var(--radius-xl);
  border-top-color: var(--tcw-orange);
  border-top-style: solid;
  border-top-width: 8px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.14);
  padding: 32px 22px;
}
@media (min-width: 768px) {
  .lp-ot-reason02Inner {
    padding: 44px 44px;
  }
}
.lp-ot-reason02Head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
  margin-bottom: 18px;
}
.lp-ot-reason02Badge {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tcw-orange);
  color: var(--tcw-bg);
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1.25rem;
}
.lp-ot-reason02Title {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .lp-ot-reason02Title {
    font-size: 28px;
  }
}
.lp-ot-reason02Accent {
  color: var(--tcw-orange);
}
.lp-ot-reason02Grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 1024px) {
  .lp-ot-reason02Grid {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  .lp-ot-reason02Left {
    width: 55%;
  }
  .lp-ot-reason02Right {
    width: 45%;
    margin-top: 8px;
  }
}
.lp-ot-pointGrid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .lp-ot-pointGrid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
.lp-ot-pointCard {
  background: var(--tcw-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.lp-ot-pointTag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 14px;
  color: var(--tcw-bg);
  background: var(--tcw-green);
}
.lp-ot-pointTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.lp-ot-pointImg {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 12px;
  margin-bottom: 10px;
  display: block;
}
.lp-ot-pointDesc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--tcw-text-weak);
  margin: 0;
}
@media (max-width: 767px) {
  .lp-ot-pointGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-ot-pointCard {
    padding: 18px;
  }
  .lp-ot-pointTag {
    font-size: 12px;
    padding: 5px 12px;
  }
  .lp-ot-pointTitle {
    font-size: 16px;
  }
  .lp-ot-pointDesc {
    font-size: 13px;
  }
}
/* 点線のメッセージ */
.lp-ot-flowArea {
  margin: 40px 0;
  text-align: center;
}
.lp-ot-flowBox {
  display: inline-block;
  border: 2px dashed var(--tcw-teal);
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  background: var(--tcw-bg-soft);
}
.lp-ot-flowArrow {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid var(--tcw-teal);
  margin: 20px auto;
}
/* 合格率カード */
.lp-ot-resultCard {
  background: linear-gradient(135deg, var(--tcw-teal), var(--tcw-teal));
  color: var(--tcw-bg);
  text-align: center;
  padding: 50px 40px;
  border-radius: var(--radius-md);
  margin-top: 40px;
}
.lp-ot-resultTitle {
  font-weight: 900;
  color: var(--tcw-bg);
  font-size: 18px;
}
.lp-ot-resultValue {
  margin-top: 10px;
  font-weight: 900;
  color: var(--tcw-bg);
  line-height: 1;
}
.lp-ot-resultNum {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}
.lp-ot-resultUnit {
  font-size: 40px;
  font-weight: 700;
}
.lp-ot-resultNote {
  margin-top: 10px;
  font-size: 13px;
  color: var(--tcw-bg);
  font-weight: 700;
}
/* ==========================
   Section 5: 専門学校と大学の違い
========================== */
.lp-ot-compSection {
  background: var(--tcw-bg);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
}
.lp-ot-compTitle {
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.lp-ot-compTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--tcw-green);
}
@media (min-width: 768px) {
  .lp-ot-compTitle {
    font-size: 36px;
  }
}
.lp-ot-compSubtitle {
  text-align: center;
  color: var(--tcw-text-sub);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
}
.lp-ot-compTableOuter {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  background: var(--tcw-bg);
  border-radius: var(--radius-xl);
  border: 2px solid var(--tcw-bg-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.lp-ot-compTableScroll {
  overflow-x: auto;
}
.lp-ot-compTable {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.lp-ot-compThead {
  background: none;
}
.lp-ot-compHeadRow {
  background: linear-gradient(to bottom, var(--tcw-bg-light), var(--tcw-bg-soft));
}
.lp-ot-compThPoint {
  padding: 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--tcw-bg-soft);
  border-top: none;
  border-left: none;
  width: 25%;
  font-size: 12px;
  font-weight: 900;
  color: var(--tcw-dark);
}
@media (min-width: 768px) {
  .lp-ot-compThPoint {
    padding: 24px;
    font-size: 14px;
  }
}
.lp-ot-compThTcw {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--tcw-bg-soft);
  background: rgba(var(--tcw-green-rgb), 0.03);
  border-left: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  border-right: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  border-top: none;
}
@media (min-width: 768px) {
  .lp-ot-compThTcw {
    padding: 24px;
  }
}
.lp-ot-compThUniv {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--tcw-bg-soft);
  border-top: none;
  border-right: none;
  color: var(--tcw-gray);
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lp-ot-compThUniv {
    padding: 24px;
  }
}
.lp-ot-compColTag {
  color: var(--tcw-green);
  font-weight: 900;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 4px;
}
.lp-ot-compColTitleTcw {
  color: var(--tcw-green);
  font-weight: 900;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .lp-ot-compColTitleTcw {
    font-size: 20px;
  }
}
.lp-ot-compColSubBadge {
  display: inline-block;
  margin: 8px 0 0;
  padding: 6px 12px;
  background: var(--tcw-orange);
  color: var(--tcw-bg);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  border-radius: 8px;
  min-width: 140px;
  text-align: center;
}
@media (min-width: 768px) {
  .lp-ot-compColSubBadge {
    font-size: 12px;
    margin-top: 8px;
  }
}
.lp-ot-compColTitleUniv {
  font-weight: 700;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--tcw-gray);
}
.lp-ot-compTbody {}
.lp-ot-compRow {}
.lp-ot-compTdPointTarget, .lp-ot-compTdPointBook, .lp-ot-compTdPointPie, .lp-ot-compTdPointBriefcase, .lp-ot-compTdPointCoins, .lp-ot-compTdPointAward {
  padding: 16px;
  border: none;
  border-top: 1px solid var(--tcw-border-softer);
  font-weight: 900;
  font-size: 12px;
  color: var(--tcw-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .lp-ot-compTdPointTarget, .lp-ot-compTdPointBook, .lp-ot-compTdPointPie, .lp-ot-compTdPointBriefcase, .lp-ot-compTdPointCoins, .lp-ot-compTdPointAward {
    padding: 24px;
    font-size: 14px;
  }
}
.lp-ot-compTdTcwText {
  padding: 16px;
  border-bottom: 1px solid var(--tcw-border-softer);
  text-align: center;
  background: rgba(var(--tcw-green-rgb), 0.03);
  border-left: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  border-right: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  font-weight: 700;
  color: var(--tcw-text-mid);
}
@media (min-width: 768px) {
  .lp-ot-compTdTcwText {
    padding: 24px;
  }
}
.lp-ot-compTdUnivText {
  padding: 16px;
  border-right: none;
  border-bottom: 1px solid var(--tcw-border-softer);
  text-align: center;
  color: var(--tcw-gray);
  font-weight: 500;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lp-ot-compTdUnivText {
    padding: 24px;
  }
}
.lp-ot-compTdTcw {
  padding: 16px;
  border-bottom: 1px solid var(--tcw-border-softer);
  text-align: center;
  background: rgba(var(--tcw-green-rgb), 0.03);
  border-left: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  border-right: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  vertical-align: middle;
}
.lp-ot-compTdTcwGray {
  padding: 16px;
  border-bottom: 1px solid var(--tcw-border-softer);
  text-align: center;
  background: rgba(var(--tcw-green-rgb), 0.1);
  border-left: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  border-right: 2px solid rgba(var(--tcw-green-rgb), 0.10);
}
.lp-ot-compTdTcwOrange {
  padding: 16px;
  border-bottom: 1px solid var(--tcw-border-softer);
  text-align: center;
  background: rgba(var(--tcw-orange-rgb), 0.1);
  border-left: 2px solid rgba(var(--tcw-green-rgb), 0.10);
  border-right: 2px solid rgba(var(--tcw-green-rgb), 0.10);
}
@media (min-width: 768px) {
  .lp-ot-compTdTcw, .lp-ot-compTdTcwGray, .lp-ot-compTdTcwOrange {
    padding: 24px;
  }
}
.lp-ot-compTdUniv {
  padding: 16px;
  border-right: none;
  border-bottom: 1px solid var(--tcw-border-softer);
  text-align: center;
  color: var(--tcw-gray);
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lp-ot-compTdUniv {
    padding: 24px;
  }
}
.lp-ot-compTextGreen {
  color: var(--tcw-green);
  font-weight: 900;
}
.lp-ot-compTcwStrong {
  color: var(--tcw-green);
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
}
.lp-ot-compTcwSub {
  color: var(--tcw-text-sub);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  text-align: left;
  background: rgba(var(--tcw-green-rgb), 0.3);
  padding: 10px;
}
.lp-ot-compTextOrange {
  color: rgba(var(--tcw-orange-rgb), 0.7);
  font-weight: 700;
}
.lp-ot-compUnivStrong {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--tcw-gray);
}
.lp-ot-compUnivSub {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  color: var(--tcw-gray);
  text-align: left;
  background: rgba(var(--tcw-orange-rgb), 0.15);
  padding: 10px;
}
.lp-ot-compCircleTcw {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  background: var(--tcw-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
}
.lp-ot-compCircleUniv {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  background: conic-gradient(var(--tcw-orange) 0% 60%, var(--tcw-border) 60% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .lp-ot-compCircleTcw {
    width: 120px;
    height: 120px;
  }
  .lp-ot-compCircleUniv {
    width: 120px;
    height: 120px;
  }
}
.lp-ot-compCircleTxtTcw {
  color: var(--tcw-bg);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.lp-ot-compCircleNumTcw {
  font-weight: 900;
  font-size: 26px;
}
.lp-ot-compCircleDescTcw {
  font-weight: 900;
  color: var(--tcw-text-sub);
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: left;
}
.lp-ot-compCircleTxtUniv {
  color: var(--tcw-text-sub);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  margin: 0;
}
.lp-ot-compCircleNumUniv {
  font-weight: 900;
  font-size: 22px;
  color: var(--tcw-bg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.lp-ot-compCircleDescUniv {
  font-weight: 500;
  color: var(--tcw-gray);
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: left;
}
.lp-ot-compBadgeGreen {
  display: inline-block;
  background: var(--tcw-green);
  color: var(--tcw-bg);
  font-weight: 900;
  font-size: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 9999px;
  margin-top: 10px;
}
.lp-ot-compFeeNoteTcw {
  color: var(--tcw-gray);
  font-weight: 700;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 6px;
}
.lp-ot-compFeeValueTcw {
  color: var(--tcw-green);
  font-weight: 900;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 0;
}
.lp-ot-compFeeUnitTcw {
  font-size: 14px;
  font-weight: 700;
}
.lp-ot-compFeeNoteUniv {
  color: var(--tcw-gray);
  font-weight: 500;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 6px;
}
.lp-ot-compFeeValueUniv {
  color: var(--tcw-gray);
  font-weight: 900;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 0;
}
.lp-ot-compFeeUnitUniv {
  font-size: 14px;
  font-weight: 700;
}
.lp-ot-compRateBox {
  display: inline-block;
}
.lp-ot-compRateValueTcw {
  color: var(--tcw-orange);
  font-weight: 900;
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 0;
}
.lp-ot-compRateValueUniv {
  color: var(--tcw-gray);
  font-weight: 900;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 0;
}
.lp-ot-compList {
  margin: 10px 0 0;
  padding-left: 1.1em;
  list-style: disc;
  text-align: left;
  color: var(--tcw-text-sub);
  font-weight: 700;
  font-size: 12px;
}
.lp-ot-compList li {
  margin: 6px 0;
  line-height: 1.4;
}
.lp-ot-compList li::marker {
  color: var(--tcw-text-sub);
}
.lp-ot-compListUniv {
  margin: 10px 0 0;
  padding-left: 1.1em;
  list-style: disc;
  text-align: left;
  color: var(--tcw-gray);
  font-weight: 700;
  font-size: 12px;
}
.lp-ot-compListUniv li {
  margin: 6px 0;
  line-height: 1.4;
}
.lp-ot-compListUniv li::marker {
  color: var(--tcw-gray);
}
.lp-ot-compMarkerGreen {
  background: linear-gradient(transparent 70%, rgba(var(--tcw-green-rgb), 0.2) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 700;
}
.lp-ot-compMarkerOrange {
  background: linear-gradient(transparent 70%, rgba(var(--tcw-orange-rgb), 0.15) 70%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 700;
}
/* Icons (lucide) */
.lp-ot-compIconTarget, .lp-ot-compIconBook, .lp-ot-compIconPie, .lp-ot-compIconBriefcase, .lp-ot-compIconCoins {
  width: 20px;
  height: 20px;
  color: var(--tcw-text-muted);
}
.lp-ot-compIconAward {
  width: 20px;
  height: 20px;
  color: var(--tcw-orange);
}
.lp-ot-compIconInfo {
  width: 20px;
  height: 20px;
  color: var(--tcw-green);
}
/* Footnote */
.lp-ot-compFootnote {
  margin-top: 48px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  background: var(--tcw-bg-light);
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 24px;
  border: 1px solid var(--tcw-border-softer);
}
@media (min-width: 768px) {
  .lp-ot-compFootnote {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.lp-ot-compFootnoteTitle {
  font-weight: 900;
  color: var(--tcw-text-mid);
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.lp-ot-compFootnoteDesc {
  color: var(--tcw-text-sub);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 12px;
  font-weight: 500;
}
/* ==========================
   Section 6: 声
========================== */
.lp-ot-voiceSection {
  padding-top: 0;
  padding-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
  background: var(--tcw-bg);
}
.lp-ot-voiceTitle {
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.lp-ot-voiceTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--tcw-green);
}
@media (min-width: 768px) {
  .lp-ot-voiceTitle {
    font-size: 36px;
  }
}
.lp-ot-voiceGrid {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .lp-ot-voiceGrid {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-ot-voiceCard {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--tcw-bg-gray);
  border: 2px solid rgba(var(--tcw-green-rgb), 0.05);
  position: relative;
  transition: transform 0.2s ease;
}
.lp-ot-voiceCard:hover {
  transform: translateY(-5px);
}
.lp-ot-voiceCardHead {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.lp-ot-voiceAvatar {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--tcw-border);
  overflow: hidden;
  border: 2px solid var(--tcw-bg);
}
.lp-ot-voiceName {
  font-weight: 900;
  color: var(--tcw-text-strong);
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
}
.lp-ot-voiceCatch {
  font-weight: 900;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--tcw-green);
}
.lp-ot-voiceText {
  font-size: 12px;
  color: var(--tcw-text-sub);
  font-weight: 700;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 0;
}
.lp-ot-voiceGrid > :only-child {
  max-width: 480px;
  margin: 20px auto 0;
}
.lp-ot-voiceGrid > .lp-ot-voiceCard:only-child {
  border-radius: var(--radius-md);
}
@media (min-width: 768px) {
  .lp-ot-voiceGrid > :only-child {
    grid-column: 1 / -1;
  }
}
/* ==========================
   Section : FAQ 〜 Closing 〜 Footer 〜 Mobile CTA
========================== */
/* ---- FAQ ---- */
.lp-ot-faqSection {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
  background: var(--tcw-bg-gray);
}
.lp-ot-containerNarrow {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.lp-ot-faqTitle {
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.lp-ot-faqTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--tcw-green);
}
@media (min-width: 768px) {
  .lp-ot-faqTitle {
    font-size: 36px;
  }
}
.lp-ot-faqList {
  margin-top: 0;
}
.lp-ot-faqItem {
  background: var(--tcw-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 16px;
}
.lp-ot-faqSummary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  font-weight: 900;
  color: var(--tcw-text-strong);
  list-style: none;
}
.lp-ot-faqSummary::-webkit-details-marker {
  display: none;
}
.lp-ot-faqQWrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-ot-faqQIcon {
  width: 24px;
  height: 24px;
  color: var(--tcw-green);
}
.lp-ot-faqChevron {
  width: 20px;
  height: 20px;
  color: var(--tcw-green);
}
.lp-ot-faqChevron {
  transition: transform .25s ease;
}
.lp-ot-faqItem[open] .lp-ot-faqChevron {
  transform: rotate(180deg) scale(1.05);
}
.lp-ot-faqAnswer {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-top: 6px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--tcw-text-sub);
  font-weight: 500;
  background: var(--tcw-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
/* ---- Closing ---- */
.lp-ot-closingSection {
  background: var(--tcw-green);
  color: var(--tcw-bg);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: relative;
  overflow: visible;
}
/* 背景だけ閉じ込める */
.lp-ot-closingBgLayer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
/* 人物 */
.lp-ot-closingGirlLeft, .lp-ot-closingGirlRight {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}
/* 左 */
.lp-ot-closingGirlLeft {
  left: -40px;
  top: -20px;
  width: 170px;
}
@media (min-width: 768px) {
  .lp-ot-closingGirlLeft {
    top: -60px;
    width: 240px;
  }
}
/* 右 */
.lp-ot-closingGirlRight {
  right: -45px;
  top: 5px;
  width: 200px;
  transform: none;
}
@media (min-width: 768px) {
  .lp-ot-closingGirlRight {
    top: 15px;
    width: 240px;
  }
}
.lp-ot-container {
  position: relative;
  z-index: 2;
}
.lp-ot-closingBgOne {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 9999px;
}
.lp-ot-closingBgTwo {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 9999px;
}
.lp-ot-closingTitle {
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 900;
  line-height: 1.25;
  font-size: 28px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .75);
}
@media (min-width: 768px) {
  .lp-ot-closingTitle {
    font-size: 48px;
  }
}
.lp-ot-closingBtns {
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .lp-ot-closingBtns {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .lp-ot-closingBtns > :nth-child(3) {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }
  .lp-ot-closingBtns > :nth-child(3) img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
  }
}
.lp-ot-closingBtnOc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 9999px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--tcw-bg);
  color: var(--tcw-green);
  font-size: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-ot-closingBtnDoc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 9999px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 28px;
  padding-right: 28px;
  background: var(--tcw-orange);
  color: var(--tcw-bg);
  font-size: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-ot-closingBtnOc:hover, .lp-ot-closingBtnDoc:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.lp-ot-closingBtnIcon {
  width: 24px;
  height: 24px;
}
/* ---- Footer ---- */
.lp-ot-footer {
  background: var(--tcw-dark);
  color: var(--tcw-text-muted);
  padding-top: 20px;
  padding-bottom: 70px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
.lp-ot-copyright {
  margin: 0;
  font-size: 12px;
}
/* ---- Mobile CTA ---- */
.lp-ot-mobileCta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.10);
}
@media (min-width: 768px) {
  .lp-ot-footer {
    padding-bottom: 48px;
  }
  .lp-ot-mobileCta {
    display: none;
  }
}
.lp-ot-mobileBtnOc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  color: var(--tcw-bg);
  background: var(--tcw-green);
  padding-top: 14px;
  padding-bottom: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
}
.lp-ot-mobileBtnDoc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  color: var(--tcw-bg);
  background: var(--tcw-orange);
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13px;
}
.lp-ot-mobileBtnIcon {
  width: 16px;
  height: 16px;
}