@charset "UTF-8";

/* ========================================
   01. デザイントークン
======================================== */

.apex-v2 {
  --apex-v2-color-primary: #a40d10;
  --apex-v2-color-text: #1a1a1a;
  --apex-v2-color-muted: #666;
  --apex-v2-color-dark: #1a1a1a;
  --apex-v2-color-surface: #fff;
  --apex-v2-color-surface-muted: #f3f3f3;
  --apex-v2-color-border: #dedede;
  --apex-v2-content-width: 1120px;
  --apex-v2-gutter: 24px;
  --apex-v2-section-space: 70px;
  --apex-v2-font-size-body: 15px;
  --apex-v2-font-size-heading: 34px;
  --apex-v2-font-weight-heading: 700;
  --apex-v2-line-height-body: 1.8;
  --apex-v2-line-height-heading: 1.45;
}

/* ========================================
   02. ベース / レイアウト
======================================== */

.apex-v2,
.apex-v2 *,
.apex-v2 *::before,
.apex-v2 *::after {
  box-sizing: border-box;
}

.apex-v2 {
  color: var(--apex-v2-color-text);
  font-family: Arial, "Noto Sans JP", sans-serif;
  font-size: var(--apex-v2-font-size-body);
  line-height: var(--apex-v2-line-height-body);
}

.apex-v2 .apex-l-container {
  width: min(100% - (var(--apex-v2-gutter) * 2), var(--apex-v2-content-width));
  margin-right: auto;
  margin-left: auto;
}

.apex-v2 .apex-c-section + .apex-c-section {
  margin-top: var(--apex-v2-section-space);
}

/* Arkheのタイトル領域はGutenberg本文の外側にあるため、APEX v2を含むページだけ非表示 */
body:has(.apex-v2) .c-pageTitle,
body:has(.apex-v2) .l-content__top {
  display: none;
}

/* Arkheのページ本文パディングを解除し、APEX v2のMVをヘッダー直下から開始 */
body:has(.apex-v2) .l-main__body.p-page {
  padding-top: 0;
}

/* ========================================
   03. 共通コンポーネント
======================================== */

.apex-v2 .apex-c-kicker {
  margin: 0 0 6px;
  color: var(--apex-v2-color-primary);
  font-size: 13px;
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .08em;
  line-height: 1.4;
}

.apex-v2 .apex-c-page-title,
.apex-v2 .apex-c-section-title {
  margin: 0;
  font-size: var(--apex-v2-font-size-heading);
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .08em;
  line-height: var(--apex-v2-line-height-heading);
}

.apex-v2 .apex-c-section-lead {
  margin: 28px 0 0;
  font-size: 15px;
}

.apex-v2 .apex-c-table {
  margin: 28px 0 0;
  overflow-x: auto;
  border: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
}

.apex-v2 .apex-c-table table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.apex-v2 .apex-c-table th,
.apex-v2 .apex-c-table td {
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--apex-v2-color-border);
  text-align: left;
  vertical-align: top;
}

.apex-v2 .apex-c-table th {
  width: 30%;
  background: var(--apex-v2-color-surface-muted);
  font-weight: var(--apex-v2-font-weight-heading);
}

.apex-v2 .apex-c-table tr:last-child th,
.apex-v2 .apex-c-table tr:last-child td {
  border-bottom: 0;
}

.apex-v2 .wp-block-buttons.apex-c-button-row {
  margin-top: 28px;
}

.apex-v2 .wp-block-button.apex-c-button.apex-c-button--primary > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 0;
  background: var(--apex-v2-color-primary);
  color: var(--apex-v2-color-surface);
  font-size: 15px;
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s ease;
}

.apex-v2 .wp-block-button.apex-c-button.apex-c-button--primary > .wp-block-button__link:hover {
  opacity: .8;
}

.apex-v2 .apex-c-hero {
  position: relative;
  display: grid;
  width: 100vw;
  min-height: 550px;
  margin-inline: calc(50% - 50vw);
  align-items: start;
  overflow: hidden;
  background-color: #d9e4e9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: var(--apex-v2-hero-image, none);
}

.apex-v2 .apex-c-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 50px 0 0;
}

.apex-v2 .apex-c-hero__kicker,
.apex-v2 .apex-c-hero__lead {
  margin: 0;
  color: #151515;
  font-weight: 700;
  letter-spacing: .08em;
}

.apex-v2 .apex-c-hero__kicker {
  padding-left: 40px;
  font-size: 16px;
}

.apex-v2 .apex-c-hero__title {
  margin: .05em 0 .2em;
  padding-left: 15px;
  color: #161616;
  font-family: "Exo 2", sans-serif;
  font-size: 96px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .9;
}

.apex-v2 .apex-c-hero__lead {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: .52em 1.8em .56em 1.2em;
  color: #fff;
  background: transparent;
  font-size: 25px;
  line-height: 1.2;
  isolation: isolate;
}

.apex-v2 .apex-c-hero__lead::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #161616;
  content: "";
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.apex-v2 .apex-c-hero__lead::after {
  display: block;
  width: 50%;
  height: 3px;
  margin: .55em 0 -.56em -1.2em;
  background: var(--apex-v2-color-primary);
  content: "";
}

.apex-v2 .apex-c-section-intro {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  max-width: var(--apex-v2-content-width);
  margin: 0 auto;
  padding: 58px 24px 34px;
  column-gap: 44px;
  align-items: center;
  text-align: center;
}

.apex-v2 .apex-c-section-intro > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2 .apex-c-section-intro::before,
.apex-v2 .apex-c-section-intro::after {
  grid-row: 2;
  height: 1px;
  background: #4a4a4a;
  content: "";
}

.apex-v2 .apex-c-section-intro::before {
  grid-column: 1;
}

.apex-v2 .apex-c-section-intro::after {
  grid-column: 3;
}

.apex-v2 .apex-c-section-intro .apex-c-kicker {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 2px;
  color: var(--apex-v2-color-primary);
  font-size: 12px;
  text-align: center;
}

.apex-v2 .apex-c-section-intro .apex-c-section-title {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 30px;
  letter-spacing: .08em;
  line-height: 1.35;
  white-space: nowrap;
}

.apex-v2 .apex-c-section-intro__lead {
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 760px;
  margin: 26px auto 0;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.9;
}

.apex-v2 .apex-c-data-list {
  width: 100%;
  max-width: none;
  margin: 0 0 70px;
}

.apex-v2 .apex-c-data-list__header {
  min-height: 155px;
  padding: 44px 0 26px;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 120%;
}

.apex-v2.apex-v2--company .apex-c-data-list__header {
  background-image: url("https://apex-ara.com/wp-content/uploads/2026/08/company_title_bg.png");
}

.apex-v2 .apex-c-data-list__header .apex-c-section-title::after {
  display: block;
  width: 26px;
  height: 3px;
  margin-top: 18px;
  background: var(--apex-v2-color-primary);
  content: "";
}

.apex-v2 .apex-c-data-list__body {
  border-top: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
  margin-top: 0;
}

.apex-v2 .apex-c-data-list__item {
  border-bottom: 1px solid var(--apex-v2-color-border);
  margin-top: 0;
}

.apex-v2 .apex-c-data-list__item > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 52px minmax(155px, .7fr) minmax(0, 2fr);
  gap: 20px;
  align-items: center;
  padding: 25px 28px;
}

.apex-v2 .apex-c-data-list__index,
.apex-v2 .apex-c-index {
  margin: 0;
  color: var(--apex-v2-color-primary);
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.4;
}

.apex-v2 .apex-c-data-list__index::after,
.apex-v2 .apex-c-index--slash::after,
.apex-v2.apex-v2--home .apex-c-home-features__index::after {
  display: inline-block;
  width: 19px;
  height: 1px;
  margin: 0 0 4px 8px;
  background: currentColor;
  content: "";
  transform: rotate(-46deg);
}

.apex-v2 .apex-c-data-list__label,
.apex-v2 .apex-c-data-list__value {
  margin: 0;
  line-height: 1.75;
}

.apex-v2 .apex-c-data-list__label {
  font-size: 15px;
  font-weight: 700;
}

.apex-v2 .apex-c-data-list__value {
  color: #4a4a4a;
}

.apex-v2 .apex-c-data-list__value a {
  color: var(--apex-v2-color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 対象者一覧は、番号と説明を同じ行で表示する */
.apex-v2.apex-v2--paper .apex-c-data-list--inline .apex-c-data-list__item > .wp-block-group__inner-container {
  grid-template-columns: minmax(0, 1fr);
}

/* データリスト内の補助タイトルは、本文として中央に揃える */
.apex-v2.apex-v2--paper .apex-c-data-list__header .apex-c-data-list__label {
  margin-top: 10px;
  text-align: center;
}

/* 対象者一覧の本文は、余白を残して中央に配置する */
.apex-v2.apex-v2--paper .apex-c-data-list--inline .apex-c-data-list__body {
  width: 65%;
  margin-right: auto;
  margin-left: auto;
}

/* マークカードの見出しは、画像との間隔を空けて中央に揃える */
.apex-v2.apex-v2--paper .apex-c-info-box__title {
  justify-content: center;
  margin-top: 12px;
  text-align: center;
}

/* 共通情報ボックスは、共通の枠線・余白・アイコン表現を使用 */
.apex-v2 .apex-c-info-grid {
  max-width: var(--apex-v2-content-width);
  margin: 0 auto 70px;
  padding: 0;
  border: 10px solid var(--apex-v2-color-border);
}

.apex-v2 .apex-c-info-grid--2col > .wp-block-image,
.apex-v2 .apex-c-info-grid--2col > .wp-block-group__inner-container > .wp-block-image {
  margin-top: 0;
}

.apex-v2 .apex-c-info-grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.apex-v2 .apex-c-info-grid > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2.apex-v2--auction .apex-c-info-grid--2col > .wp-block-group__inner-container > .apex-c-info-box + .wp-block-image {
  text-align: right;
}

.apex-v2 .apex-c-info-box {
  padding: 36px;
}

.apex-v2 .apex-c-info-box + .apex-c-info-box {
  border-left: 10px solid var(--apex-v2-color-border);
  margin-top: 0;
}

.apex-v2 .apex-c-info-box__title {
  display: flex;
  gap: .55em;
  align-items: center;
  margin: 0 0 24px;
  font-size: 23px;
}

.apex-v2 .apex-c-info-box__icon {
  display: inline-block;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.apex-v2 .apex-c-info-box__icon--payment {
  background-image: url("../images/icon05.png");
}

.apex-v2 .apex-c-info-box__icon--license {
  background-image: url("../images/icon01.png");
}

.apex-v2 .apex-c-info-box__body {
  margin: 0;
  font-size: 14px;
}

.apex-v2 .apex-c-cta {
  position: relative;
  display: grid;
  grid-template-columns: 311px minmax(0, 1fr);
  max-width: var(--apex-v2-content-width);
  min-height: 162px;
  margin: 0 auto 70px;
  padding: 0;
  overflow: hidden;
  background: var(--apex-v2-color-dark);
}

.apex-v2 .apex-c-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 60px;
  height: 83px;
  background: var(--apex-v2-color-primary);
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.apex-v2 .apex-c-cta > .wp-block-group__inner-container,
.apex-v2 .apex-c-cta__body > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2 .apex-c-cta__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url("../images/rental-bike-cta-rider.png") center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 211px 100%, 0 100%);
}

.apex-v2.apex-v2--qa .apex-c-cta__media {
  background-position: right center;
  background-size: 115% auto;
  clip-path: polygon(0 0, 105% 0, 245px 100%, 0 100%);
}

.apex-v2 .apex-c-cta__media::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 83px;
  background: var(--apex-v2-color-primary);
  content: "";
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.apex-v2 .apex-c-cta__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 80px 20px 36px;
  color: #fff;
}

.apex-v2 .apex-c-cta__title {
  margin: 0;
  text-align:center;
  color: inherit;
  font-size: 19px;
  letter-spacing: .08em;
  line-height: 1.4;
}

.apex-v2 .apex-c-cta__actions {
  width: 100%;
  margin-top: 15px;
  align-self: flex-start;
}

.apex-v2 .apex-c-cta__actions .wp-block-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  margin: 0;
}

.apex-v2 .apex-c-cta__actions .wp-block-button {
  display: block;
  flex: 1 1 0;
  width: auto;
  padding: 0;
}

.apex-v2 .apex-c-cta__actions .wp-block-button:only-child {
  flex: 0 1 auto;
  width: 100%;
  max-width: 356px;
  margin-inline: auto;
}

.apex-v2 .apex-c-cta__actions .wp-block-button__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  border-radius: 0;
  background: var(--apex-v2-color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: opacity .2s ease;
}

.apex-v2 .apex-c-cta__actions .wp-block-button__link:hover {
  opacity: .8;
}

.apex-v2 .apex-c-cta__actions .wp-block-button__link::before,
.apex-v2 .apex-c-cta__actions .wp-block-button__link::after {
  position: absolute;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.apex-v2 .apex-c-cta__actions .wp-block-button__link::before {
  left: 20px;
  width: 24px;
  height: 19px;
  background-image: url("../images/icon03.png");
}

.apex-v2 .apex-c-cta__actions .wp-block-button__link::after {
  right: 20px;
  width: 13px;
  height: 22px;
  background-image: url("../images/icon04.png");
}

.apex-v2 .apex-c-cta__actions .apex-c-button--secondary .wp-block-button__link {
  background: #fff;
  color: var(--apex-v2-color-dark);
}

.apex-v2 .apex-c-button--secondary .wp-block-button__link::before,
.apex-v2 .apex-c-button--secondary .wp-block-button__link::after {
  filter: brightness(0);
}

.apex-v2 .apex-c-cta__actions .apex-c-button--secondary .wp-block-button__link::before {
  content: none;
}

/* ========================================
   04. Q&A
======================================== */

/* Q&Aは標準のGroup・見出し・段落ブロックで構成し、ページ内に固定表示 */
.apex-v2 .apex-c-qa-list {
  width: 100%;
  margin: 0 auto var(--apex-v2-section-space);
  counter-reset: qa-item;
}

.apex-v2 .apex-c-qa-list > .wp-block-group__inner-container,
.apex-v2 .apex-c-qa-item > .wp-block-group__inner-container,
.apex-v2 .apex-c-qa-question > .wp-block-group__inner-container,
.apex-v2 .apex-c-qa-answer > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2 .apex-c-qa-item {
  margin: 0;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--apex-v2-color-border);
}

.apex-v2 .apex-c-qa-item + .apex-c-qa-item {
  padding-top: 28px;
}

.apex-v2 .apex-c-qa-question {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin: 0;
  padding: 0;
}

.apex-v2 .apex-c-qa-question::before {
  flex: 0 0 72px;
  color: var(--apex-v2-color-primary);
  content: "Q " counter(qa-item, decimal-leading-zero);
  counter-increment: qa-item 1;
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.4;
}

.apex-v2 .apex-c-qa-question__text {
  flex: 1 1 auto;
  margin: 0;
  color: var(--apex-v2-color-text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.apex-v2 .apex-c-qa-answer {
  margin: 16px 0 0 88px;
  padding: 0;
  color: #4a4a4a;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.apex-v2 .apex-c-qa-answer p {
  margin: 0;
}

.apex-v2 .apex-c-qa-answer p + p {
  margin-top: 1em;
}

.apex-v2 .apex-c-qa-answer p:empty {
  display: none;
}

.apex-v2 .apex-c-qa-answer a {
  color: var(--apex-v2-color-primary);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   05. 申し込み方法
======================================== */

html:has(.apex-v2.apex-v2--howto) {
  overflow-x: clip;
}

body.admin-bar:has(.apex-v2.apex-v2--howto) .l-header {
  transform: translateY(calc(-1 * var(--ark-adminbar_height, 0px)));
}

.apex-v2.apex-v2--howto > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-hero > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-hero__inner > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-flow > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-flow__item > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-steps > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-step > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-step__content > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-step__visual > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-step__point > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-apply-notes > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-pre-check > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-pre-check__grid > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-pre-check__item > .wp-block-group__inner-container,
.apex-v2.apex-v2--howto .apex-c-agreement > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2.apex-v2--howto .apex-c-apply-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto var(--apex-v2-section-space);
}

.apex-v2.apex-v2--howto .apex-c-apply-flow__item {
  position: relative;
  display: grid;
  grid-template-rows: 25px 72px minmax(22px, 1fr);
  min-width: 0;
  align-items: center;
  justify-items: center;
  height: 146px;
  margin: 0;
  padding: 14px 8px 12px;
  border: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
  text-align: center;
}

.apex-v2.apex-v2--howto .apex-c-apply-flow__item + .apex-c-apply-flow__item::before {
  position: absolute;
  top: 50%;
  left: -10px;
  color: var(--apex-v2-color-primary);
  content: "›";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.apex-v2.apex-v2--howto .apex-c-apply-flow__index {
  font-size: 18px;
  letter-spacing: .06em;
}

.apex-v2.apex-v2--howto .apex-c-apply-flow__icon {
  width: 54px;
  height: 54px;
  margin: 10px auto 8px;
}

.apex-v2.apex-v2--howto .apex-c-apply-flow__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apex-v2.apex-v2--howto .apex-c-apply-flow__title {
  margin: 0;
  font-size: var(--apex-v2-font-size-body);
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .04em;
  line-height: var(--apex-v2-line-height-heading);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-apply-steps {
  margin: 0 auto var(--apex-v2-section-space);
}

.apex-v2.apex-v2--howto .apex-c-apply-step {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  gap: calc(var(--apex-v2-gutter) * 2);
  padding: 28px 0;
  border-top: 1px solid var(--apex-v2-color-border);
}

.apex-v2.apex-v2--howto .apex-c-apply-step:last-child {
  border-bottom: 1px solid var(--apex-v2-color-border);
}

.apex-v2.apex-v2--howto .apex-c-apply-step__content {
  min-width: 0;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__label {
  margin: 0 0 10px;
  color: var(--apex-v2-color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .04em;
  line-height: var(--apex-v2-line-height-heading);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__description {
  margin: 0;
  color: var(--apex-v2-color-muted);
  font-size: var(--apex-v2-font-size-body);
  line-height: var(--apex-v2-line-height-body);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__point {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid var(--apex-v2-color-border);
  border-left: 3px solid var(--apex-v2-color-primary);
  background: var(--apex-v2-color-surface-muted);
}

.apex-v2.apex-v2--howto .apex-c-apply-step__point-label {
  margin: 0;
  color: var(--apex-v2-color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.4;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__point-text {
  margin: 5px 0 0;
  color: var(--apex-v2-color-muted);
  line-height: var(--apex-v2-line-height-body);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__point-text + .apex-c-apply-step__point-text {
  margin-top: 8px;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__point a {
  color: var(--apex-v2-color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual {
  align-self: start;
  min-width: 0;
  width: 100%;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual figure {
  width: 100%;
  height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--course img {
  object-position: center 46%;
  transform-origin: center 46%;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--consent img {
  object-position: left top;
  transform-origin: left 100%;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--apply img {
  object-position: right 100%;
  transform-origin: right 100%;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--customer img {
  object-position: center top;
  transform-origin: center 16%;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--payment img {
  object-position: center top;
  transform-origin: center 88%;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--completion {
  display: flex;
  min-height: 220px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
  flex-direction: column;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--completion .apex-c-apply-step__completion-icon {
  width: 54px;
  height: 54px;
  margin: 0 0 14px;
  border: 0;
  background: transparent;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--completion .apex-c-apply-step__completion-icon img {
  object-fit: contain;
  transform: none;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--completion .apex-c-apply-step__message {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__message {
  display: flex;
  min-height: 220px;
  margin: 0;
  padding: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface-muted);
  color: var(--apex-v2-color-primary);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.apex-v2.apex-v2--howto .apex-c-apply-notes {
  margin: 0 auto var(--apex-v2-section-space);
}

.apex-v2.apex-v2--howto .apex-c-apply-notes__list {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--apex-v2-color-border);
  border-bottom: 1px solid var(--apex-v2-color-border);
  list-style: none;
}

.apex-v2.apex-v2--howto .apex-c-apply-notes__list li {
  position: relative;
  margin: 0;
  padding: 7px 0 7px 22px;
  color: var(--apex-v2-color-muted);
  line-height: var(--apex-v2-line-height-body);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-apply-notes__list li::before {
  position: absolute;
  top: 1.1em;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--apex-v2-color-primary);
  content: "";
}

.apex-v2.apex-v2--howto .apex-c-pre-check {
  margin: 0 auto var(--apex-v2-section-space);
}

.apex-v2.apex-v2--howto .apex-c-pre-check__title,
.apex-v2.apex-v2--howto .apex-c-agreement__title {
  margin: 0;
  text-align: center;
}

.apex-v2.apex-v2--howto .apex-c-pre-check__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
}

.apex-v2.apex-v2--howto .apex-c-pre-check__item {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 24px 20px 22px;
  flex-direction: column;
  border: 1px solid var(--apex-v2-color-border);
  border-top: 3px solid var(--apex-v2-color-primary);
  background: var(--apex-v2-color-surface);
}

.apex-v2.apex-v2--howto .apex-c-pre-check__item-title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .04em;
  line-height: var(--apex-v2-line-height-heading);
}

.apex-v2.apex-v2--howto .apex-c-pre-check__item-title::before {
  margin-right: 8px;
  color: var(--apex-v2-color-primary);
  content: "●";
}

.apex-v2.apex-v2--howto .apex-c-pre-check__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.apex-v2.apex-v2--howto .apex-c-pre-check__list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 20px;
  line-height: var(--apex-v2-line-height-body);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-pre-check__list li + li {
  margin-top: 8px;
}

.apex-v2.apex-v2--howto .apex-c-pre-check__list li::before {
  position: absolute;
  top: .35em;
  left: 0;
  color: var(--apex-v2-color-primary);
  content: "✓";
  font-weight: 700;
}

.apex-v2.apex-v2--howto .apex-c-pre-check__note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--apex-v2-color-border);
  color: var(--apex-v2-color-muted);
  font-size: var(--apex-v2-font-size-body);
  line-height: var(--apex-v2-line-height-body);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-agreement {
  margin: 0 auto var(--apex-v2-section-space);
}

.apex-v2.apex-v2--howto .apex-c-agreement__lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--apex-v2-color-muted);
  line-height: var(--apex-v2-line-height-body);
  text-align: center;
}

.apex-v2.apex-v2--howto .apex-c-agreement__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.apex-v2.apex-v2--howto .apex-c-agreement__list li {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 20px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--apex-v2-color-border);
  line-height: var(--apex-v2-line-height-body);
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--howto .apex-c-agreement__list li:last-child {
  border-bottom: 1px solid var(--apex-v2-color-border);
}

.apex-v2.apex-v2--howto .apex-c-agreement__list .apex-c-index {
  align-self: start;
  font-size: 26px;
}

.apex-v2.apex-v2--howto .apex-c-agreement__text {
  display: block;
}

.apex-v2.apex-v2--howto .apex-c-apply-step__visual--apply figure {
  height: auto;
}

/* ========================================
   06. プライバシーポリシー
======================================== */

.apex-v2.apex-v2--privacy-policy .apex-c-section + .apex-c-cta {
  margin-top: var(--apex-v2-section-space);
}

.apex-v2.apex-v2--privacy-policy .apex-c-section-title {
  font-size: 23px;
}

/* ========================================
   07. インストラクター紹介
======================================== */

.apex-v2.apex-v2--instructor .apex-c-profile {
  margin-top: 80px;
  margin-bottom: 130px;
}

.apex-v2.apex-v2--instructor .apex-c-profile > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__hero > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__visual > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__meta > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__facts > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__fact > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__body > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__name-band > .wp-block-group__inner-container,
.apex-v2.apex-v2--instructor .apex-c-profile__courses > .wp-block-group__inner-container {
  width: 100%;
}

.apex-v2.apex-v2--instructor .apex-c-profile__hero {
  margin-top: 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__hero > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr;
  grid-template-areas: "visual meta meta";
  gap: 40px;
  align-items: start;
}

.apex-v2.apex-v2--instructor .apex-c-profile__hero--reverse > .wp-block-group__inner-container {
  grid-template-columns: 1fr .7fr 1.3fr;
  grid-template-areas: "meta meta visual";
}

.apex-v2.apex-v2--instructor .apex-c-profile__visual {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  margin-top: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  grid-area: visual;
}

.apex-v2.apex-v2--instructor .apex-c-profile__visual > .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.apex-v2.apex-v2--instructor .apex-c-profile__name-band {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 0;
  color: #fff;
  font-size: inherit;
  line-height: inherit;
  isolation: isolate;
}
.apex-v2.apex-v2--instructor .apex-c-profile__name-band::before {
  clip-path: initial;
}
.apex-v2.apex-v2--instructor .apex-c-profile__name-band::after {
  margin: .55em 0 -.56em 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__name-band > .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
  padding: 20px 30px 5px;
}

.apex-v2.apex-v2--instructor .apex-c-profile__name-band > .wp-block-group__inner-container > :is(.apex-c-kicker, .apex-c-profile__name) {
  margin-top: 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__name-band .apex-c-profile__role {
  margin-bottom: 4px;
  color: var(--apex-v2-color-primary);
  font-size: 12px;
  letter-spacing: .1em;
}

.apex-v2.apex-v2--instructor .apex-c-profile__name {
  margin-bottom: 0;
  color: #fff;
  font-size: 28px;
  letter-spacing: .04em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--instructor .apex-c-profile__name-en {
  margin-bottom: 0;
  color: #d5d5d5;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  letter-spacing: .14em;
  line-height: 1.4;
  margin-top: 5px;
}

.apex-v2.apex-v2--instructor .apex-c-profile__meta {
  grid-area: meta;
  min-width: 0;
  margin-top: 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__meta > .wp-block-group__inner-container {
  display: block;
}

.apex-v2.apex-v2--instructor .apex-c-profile__meta-kicker {
  margin: 0;
  padding: 0 0 5px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--apex-v2-color-border);
  color: var(--apex-v2-color-primary);
  font-size: 24px;
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .16em;
  line-height: 1.4;
}

.apex-v2.apex-v2--instructor .apex-c-profile__facts > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .7fr);
  gap: 44px;
  align-items: start;
}

.apex-v2.apex-v2--instructor .apex-c-profile__fact {
  min-width: 0;
  margin-top: 0;
  padding: 30px 15px;
  border-top: 3px solid var(--apex-v2-color-primary);
  border-bottom: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
}

.apex-v2.apex-v2--instructor .apex-c-profile__fact > .wp-block-group__inner-container {
  display: block;
}

.apex-v2.apex-v2--instructor .apex-c-profile__fact .apex-c-kicker {
  margin-bottom: 12px;
}

.apex-v2.apex-v2--instructor .apex-c-profile__fact > .wp-block-group__inner-container > p:last-child {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--instructor .apex-c-profile__body {
  margin-top: 72px;
}

.apex-v2.apex-v2--instructor .apex-c-profile__body > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 44px;
  align-items: start;
}

.apex-v2.apex-v2--instructor .apex-c-profile__courses {
  margin-top: 72px;
}

.apex-v2.apex-v2--instructor .apex-c-profile__courses .apex-c-section-intro {
  padding-top: 0;
}

.apex-v2.apex-v2--instructor .apex-c-profile__courses .apex-c-section-intro + .amelia-service {
  margin-top: 32px;
}

/* ========================================
   08. バイクオークション
======================================== */

.page-id-1018 .apex-v2 .apex-c-info-box__title {
  justify-content: center;
}

.apex-v2.apex-v2--auction .apex-c-info-box__icon--merit {
  background-image: url("https://apex-ara.com/wp-content/uploads/2026/09/auction-compare-state-check.png");
}

.apex-v2.apex-v2--auction .apex-c-info-box__icon--demerit {
  background-image: url("https://apex-ara.com/wp-content/uploads/2026/09/auction-compare-state-cross.png");
}

.apex-v2.apex-v2--auction .apex-c-comparison {
  width: min(100% - (var(--apex-v2-gutter) * 2), var(--apex-v2-content-width));
  margin-right: auto;
  margin-left: auto;
}

.apex-v2.apex-v2--auction .apex-c-comparison > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__desktop-cards > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__cards--mobile > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__desktop-row > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__fee > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__fee-title > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__targets > .wp-block-group__inner-container,
.apex-v2.apex-v2--auction .apex-c-comparison__targets .apex-c-comparison__card > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2.apex-v2--auction .apex-c-comparison__header {
  display: none;
}

.apex-v2.apex-v2--auction .apex-c-comparison .wp-block-image {
  margin: 0;
}

.apex-v2.apex-v2--auction .apex-c-comparison .wp-block-image img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card {
  position: relative;
  min-width: 0;
  padding: 28px 22px 22px;
  border: 1px solid #dfe6ed;
  border-radius: 15px;
  background: var(--apex-v2-color-surface);
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card--ara {
  border-color: #dfb7b8;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-cards > .wp-block-group__inner-container > .apex-c-comparison__desktop-card {
  margin-top: 0;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card > .wp-block-group__inner-container > h3 {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0 0 38px 108px;
  color: var(--apex-v2-color-text);
  font-size: 23px;
  line-height: 1.3;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card--ara > .wp-block-group__inner-container > .apex-c-comparison__logo {
  position: absolute;
  top: 35px;
  left: 22px;
  width: 96px;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card > .wp-block-group__inner-container > p {
  position: absolute;
  top: 101px;
  right: 22px;
  left: 22px;
  min-height: 24px;
  margin: 0;
  color: var(--apex-v2-color-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card:not(.apex-c-comparison__desktop-card--ara) > .wp-block-group__inner-container > h3 {
  margin-left: 50px;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card:not(.apex-c-comparison__desktop-card--ara)::before {
  position: absolute;
  top: 43px;
  left: 22px;
  width: 34px;
  height: 34px;
  background: url("https://apex-ara.com/wp-content/uploads/2026/09/auction-compare-store.png") center / contain no-repeat;
  content: "";
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  margin-top: 8px;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--apex-v2-color-surface);
  box-shadow: 0 2px 8px rgb(20 35 55 / 6%);
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-row p {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.apex-v2.apex-v2--auction .apex-c-comparison__fee-icon,
.apex-v2.apex-v2--auction .apex-c-comparison__store-icon {
  width: 28px;
  height: 28px;
}

.apex-v2.apex-v2--auction .apex-c-comparison__state {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card--ara .apex-c-comparison__desktop-row:has(img[src*="auction-compare-state-cross"]) {
  color: #8c97a5;
  background: #eef1f4;
  box-shadow: none;
}

.apex-v2.apex-v2--auction .apex-c-comparison__desktop-card--ara .apex-c-comparison__desktop-row:has(img[src*="auction-compare-state-cross"]) .apex-c-comparison__fee-icon {
  opacity: .42;
  filter: grayscale(1);
}

.apex-v2.apex-v2--auction .apex-c-comparison__cards--mobile {
  display: none;
}

.apex-v2.apex-v2--auction .apex-c-comparison__note {
  width: min(100%, 700px);
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--apex-v2-color-muted);
  font-size: 13px;
  line-height: 1.75;
  text-align: center;
}

/* ========================================
   09. お問い合わせ
======================================== */

.apex-v2.apex-v2--contact .ara-cf7__table {
  font-size: inherit;
}

.apex-v2.apex-v2--contact .ara-cf7__table th,
.apex-v2.apex-v2--contact .ara-cf7__table td {
  border: 0;
  border-bottom: 1px solid var(--apex-v2-color-border);
  padding: 18px 20px;
  vertical-align: top;
}

.apex-v2.apex-v2--contact .ara-cf7__table th {
  width: 30%;
  background: var(--apex-v2-color-surface-muted);
  font-weight: var(--apex-v2-font-weight-heading);
}

.apex-v2.apex-v2--contact .ara-cf7__table tr:last-child th,
.apex-v2.apex-v2--contact .ara-cf7__table tr:last-child td {
  border-bottom: 0;
}

.apex-v2.apex-v2--contact .ara-cf7__table p {
  margin: 0;
}

.apex-v2.apex-v2--contact .ara-cf7__table .req {
  margin-left: .3em;
  color: var(--apex-v2-color-primary);
  font-size: .85em;
  font-weight: var(--apex-v2-font-weight-heading);
}

.apex-v2.apex-v2--contact .ara-cf7__table input[type="text"],
.apex-v2.apex-v2--contact .ara-cf7__table input[type="email"],
.apex-v2.apex-v2--contact .ara-cf7__table input[type="tel"],
.apex-v2.apex-v2--contact .ara-cf7__table textarea,
.apex-v2.apex-v2--contact .ara-cf7__table select {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--apex-v2-color-border);
  border-radius: 0;
  background: var(--apex-v2-color-surface);
  color: var(--apex-v2-color-text);
  font: inherit;
  line-height: 1.6;
}

.apex-v2.apex-v2--contact .ara-cf7__table input[type="text"]:focus,
.apex-v2.apex-v2--contact .ara-cf7__table input[type="email"]:focus,
.apex-v2.apex-v2--contact .ara-cf7__table input[type="tel"]:focus,
.apex-v2.apex-v2--contact .ara-cf7__table textarea:focus,
.apex-v2.apex-v2--contact .ara-cf7__table select:focus {
  outline: 2px solid var(--apex-v2-color-primary);
  outline-offset: 1px;
  border-color: var(--apex-v2-color-primary);
  box-shadow: none;
}

.apex-v2.apex-v2--contact .ara-cf7__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.apex-v2.apex-v2--contact .ara-cf7__checks .wpcf7-list-item {
  display: inline-flex;
  margin: 0;
}

.apex-v2.apex-v2--contact .ara-cf7__checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.apex-v2.apex-v2--contact .ara-cf7__checks input[type="checkbox"],
.apex-v2.apex-v2--contact .ara-cf7__checks input[type="radio"] {
  width: auto;
  margin: 0;
  accent-color: var(--apex-v2-color-primary);
}

.apex-v2.apex-v2--contact .ara-cf7__table td.submit {
  text-align: center;
}

.apex-v2.apex-v2--contact .ara-cf7__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 32px;
  border: 0;
  border-radius: 0;
  background: var(--apex-v2-color-primary);
  color: var(--apex-v2-color-surface);
  font: inherit;
  font-weight: var(--apex-v2-font-weight-heading);
  letter-spacing: .04em;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: opacity .2s ease;
}

.apex-v2.apex-v2--contact .ara-cf7__submit:hover {
  opacity: .8;
  transform: none;
  box-shadow: none;
}


/* ========================================
   10. コース／スケジュール案内
======================================== */

/* 早見はカテゴリへの導線だけを表示 */
.apex-v2.apex-v2--course .apex-c-course-index__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.apex-v2.apex-v2--course .apex-c-course-index__grid > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-index__item > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-grid > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card__header > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card__field > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card__details-inner > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card__detail-grid > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card__detail-meta > .wp-block-group__inner-container,
.apex-v2.apex-v2--course .apex-c-course-card__venue > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2.apex-v2--course .apex-c-course-index__item,
.apex-v2.apex-v2--course .apex-c-course-card,
.apex-v2.apex-v2--course .apex-c-course-card__header,
.apex-v2.apex-v2--course .apex-c-course-card__field,
.apex-v2.apex-v2--course .apex-c-course-card__details,
.apex-v2.apex-v2--course .apex-c-course-card__details-inner,
.apex-v2.apex-v2--course .apex-c-course-card__detail-grid,
.apex-v2.apex-v2--course .apex-c-course-card__detail-meta,
.apex-v2.apex-v2--course .apex-c-course-card__venue {
  min-width: 0;
  margin: 0;
}

.apex-v2.apex-v2--course .apex-c-course-index__item {
  padding: 24px;
  border: 1px solid var(--apex-v2-color-border);
  border-top: 3px solid var(--apex-v2-color-primary);
  background: var(--apex-v2-color-surface);
}

.apex-v2.apex-v2--course .apex-c-course-index__item:last-child {
  grid-column: span 2;
}

.apex-v2.apex-v2--course .apex-c-course-index__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.apex-v2.apex-v2--course .apex-c-course-index__title a {
  display: block;
  color: var(--apex-v2-color-text);
  text-decoration: none;
}

.apex-v2.apex-v2--course .apex-c-course-index__title a:hover {
  color: var(--apex-v2-color-primary);
}

.apex-v2.apex-v2--course .apex-c-course-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.apex-v2.apex-v2--course .apex-c-course-card {
  position: relative;
  border: 1px solid var(--apex-v2-color-border);
  border-top: 3px solid var(--apex-v2-color-primary);
  background: var(--apex-v2-color-surface);
  scroll-margin-top: 24px;
}

.apex-v2.apex-v2--course .apex-c-course-card__header {
  display: grid;
  grid-template-columns: minmax(110px, .8fr) minmax(150px, 1fr) minmax(180px, 1.15fr) minmax(170px, 1.05fr) minmax(180px, 1.15fr);
  gap: 20px;
  align-items: stretch;
  padding: 0;
  border-bottom: 0;
}

.apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field:not(:first-child) {
  padding-left: 16px;
  border-left: 1px solid var(--apex-v2-color-border);
}

.apex-v2.apex-v2--course .apex-c-course-card__title {
  margin: 0;
  color: var(--apex-v2-color-text);
  font-size: 32px;
  letter-spacing: .04em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--course .apex-c-course-card__label {
  margin: 0 0 6px;
  color: var(--apex-v2-color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
}

.apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field--instructor .apex-c-course-card__label {
  color: var(--apex-v2-color-primary);
}

.apex-v2.apex-v2--course .apex-c-course-card__value {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__value {
  color: var(--apex-v2-color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field--price .apex-c-course-card__value {
  font-size: 20px;
  font-weight: 800;
}

.apex-v2.apex-v2--course .apex-c-course-card__price-note {
  color: var(--apex-v2-color-muted);
  font-size: 13px;
  font-weight: 400;
}

.apex-v2.apex-v2--course .apex-c-course-card__instructor {
  line-height: 1.8;
  display: block;
  width: 100%;
  text-align: center;
}

.apex-v2.apex-v2--course .apex-c-course-card__instructor-name {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  color: #3d454a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.apex-v2.apex-v2--course .apex-c-course-card__details {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.apex-v2.apex-v2--course .apex-c-course-card__details > summary {
  position: relative;
  display: block;
  margin: 0;
  padding: 20px 40px;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  list-style: none;
  transition: background-color .2s ease;
}

.apex-v2.apex-v2--course .apex-c-course-card__details > summary:hover {
  background-color: rgba(0, 0, 0, .025);
}

.apex-v2.apex-v2--course .apex-c-course-card__details > summary:focus-visible {
  outline: 2px solid var(--apex-v2-color-primary);
  outline-offset: -2px;
}

.apex-v2.apex-v2--course .apex-c-course-card__details > summary::-webkit-details-marker {
  display: none;
}

.apex-v2.apex-v2--course .apex-c-course-card__details > summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--apex-v2-color-primary);
  content: "＋";
  font-size: 20px;
  line-height: 1;
}

.apex-v2.apex-v2--course .apex-c-course-card__details[open] > summary::after {
  content: "−";
}

.apex-v2.apex-v2--course .apex-c-course-card__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .75fr);
  border-top: 1px solid var(--apex-v2-color-border);
  gap: 32px;
}

.apex-v2.apex-v2--course .apex-c-course-card__detail-grid .apex-c-course-card__lesson {
  min-width: 0;
  padding: 20px 40px;
  border: 0;
}

.apex-v2.apex-v2--course .apex-c-course-card__lesson-value {
  line-height: 1.85;
}

.apex-v2.apex-v2--course .apex-c-course-card__detail-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--apex-v2-color-border);
}

.apex-v2.apex-v2--course .apex-c-course-card__detail-meta .apex-c-course-card__field--capacity {
  padding-top: 20px;
  padding-left: 25px;
}

.apex-v2.apex-v2--course .apex-c-course-card__detail-meta .apex-c-course-card__field + .apex-c-course-card__field {
  border-top: 1px solid var(--apex-v2-color-border);
  padding-left: 25px;
  padding-top: 20px;
}

.apex-v2.apex-v2--course .apex-c-course-card__detail-meta .apex-c-course-card__value {
  line-height: 1.7;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue {
  padding: 20px 40px;
  border-top: 1px solid var(--apex-v2-color-border);
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__field--venue {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 16px;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__field--venue .apex-c-course-card__label {
  flex: 0 0 auto;
  margin: 0;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__field--venue .apex-c-course-card__value {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 16px;
  margin: 0;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__field--venue .apex-c-course-card__value > br {
  display: none;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__field--venue .apex-c-course-card__value > code {
  order: -1;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__value a {
  color: var(--apex-v2-color-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.apex-v2.apex-v2--course .apex-c-course-card__venue .apex-c-course-card__value a:hover {
  color: var(--apex-v2-color-primary);
}

.apex-v2.apex-v2--course .apex-c-course-card__map-wrap {
  width: 100%;
  margin-top: 18px;
}

.apex-v2.apex-v2--course .apex-c-course-card__map {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* ========================================
   11. TOPページ
======================================== */
.apex-v2.apex-v2--home {
  overflow: visible;
}

.apex-v2.apex-v2--home .apex-c-section + .apex-c-section {
  margin-top: 0;
}

.apex-v2.apex-v2--home .wp-block-group__inner-container {
  display: contents;
}

.apex-v2.apex-v2--home .apex-c-hero {
  width: calc(100vw - 8px);
  min-height: 500px;
  background-image: var(--apex-v2-hero-image, none);
  background-position: center center;
}

.apex-v2.apex-v2--home .apex-c-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(0, 0, 0, .24);
  content: "";
  pointer-events: none;
}

.apex-v2.apex-v2--home .apex-c-hero__inner {
  width: min(100%, var(--apex-v2-content-width));
  padding: 58px 24px 38px;
}

.apex-v2.apex-v2--home .apex-c-hero__kicker {
  padding-left: 0;
  color: #fff;
  font-size: 16px;
}

.apex-v2.apex-v2--home .apex-c-hero__title {
  max-width: 760px;
  margin: .12em 0 .2em;
  padding-left: 0;
  color: #fff;
  font-family: Arial, "Noto Sans JP", sans-serif;
  font-size: 52px;
  font-style: normal;
  letter-spacing: .02em;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

.apex-v2.apex-v2--home .apex-c-hero__lead {
  margin-top: 18px;
  padding: 0;
  background: none;
  font-size: 19px;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.apex-v2.apex-v2--home .apex-c-hero__lead::before {
  display: none;
}

.apex-v2.apex-v2--home .apex-c-hero__lead::after {
  width: 64px;
  margin: 14px 0 0;
}

.apex-v2.apex-v2--home .apex-c-home-hero__audience,
.apex-v2.apex-v2--home .apex-c-home-hero__start {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.apex-v2.apex-v2--home .apex-c-home-hero__audience {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.apex-v2.apex-v2--home .apex-c-home-hero__start {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
}

.apex-v2.apex-v2--home .apex-c-home-hero__actions {
  margin-top: 22px;
}

.apex-v2.apex-v2--home .apex-c-home-news {
  border-bottom: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
}

.apex-v2.apex-v2--home .apex-c-home-news__inner {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 72px;
  align-items: center;
}

.apex-v2.apex-v2--home .apex-c-home-news__label {
  margin: 0;
  color: var(--apex-v2-color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.apex-v2.apex-v2--home .apex-c-home-news__list {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.apex-v2.apex-v2--home .apex-c-home-news__list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--apex-v2-color-border);
  align-items: center;
  transition: background-color .2s ease;
}

.apex-v2.apex-v2--home .apex-c-home-news__list li:last-child {
  border-bottom: 0;
}

.apex-v2.apex-v2--home .apex-c-home-news__list li::after {
  display: none;
  content: none;
}

.apex-v2.apex-v2--home .apex-c-home-news__list time {
  grid-area: 1 / 1;
  color: var(--apex-v2-color-muted);
  font-size: 12px;
}

.apex-v2.apex-v2--home .apex-c-home-news__list a {
  position: relative;
  grid-area: 1 / 2;
  width: 100%;
  min-width: 0;
  padding: 28px;
  overflow-wrap: anywhere;
  color: var(--apex-v2-color-text);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.apex-v2.apex-v2--home .apex-c-home-news__list a::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--apex-v2-color-primary);
  content: ">";
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.apex-v2.apex-v2--home .apex-c-home-news__list a:hover {
  color: var(--apex-v2-color-primary);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.apex-v2.apex-v2--home .apex-c-home-news__list a:hover::after {
  transform: translate(4px, -50%);
}

.apex-v2.apex-v2--home .apex-c-section-intro {
  display: block;
  max-width: none;
  padding: 58px 0 28px;
  text-align: left;
}

.apex-v2.apex-v2--home .apex-c-section-intro::before,
.apex-v2.apex-v2--home .apex-c-section-intro::after {
  display: none;
}

.apex-v2.apex-v2--home .apex-c-section-intro .apex-c-kicker,
.apex-v2.apex-v2--home .apex-c-section-intro .apex-c-section-title {
  grid-area: auto;
  text-align: left;
}

.apex-v2.apex-v2--home .apex-c-section-intro .apex-c-section-title {
  white-space: normal;
}

.apex-v2.apex-v2--home .apex-c-home-about {
  padding-bottom: 70px;
}

.apex-v2.apex-v2--home .apex-c-home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 44px;
  align-items: center;
}

.apex-v2.apex-v2--home .apex-c-home-about__content {
  padding-top: 50px;
}

.apex-v2.apex-v2--home .apex-c-home-about__lead {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.apex-v2.apex-v2--home .apex-c-home-about__body {
  margin: 20px 0 0;
  color: var(--apex-v2-color-muted);
  line-height: 1.9;
}

.apex-v2.apex-v2--home .apex-c-home-about__aside {
  position: relative;
  min-width: 0;
  align-self: end;
}

.apex-v2.apex-v2--home .apex-c-home-about__aside .apex-c-home-about__audience {
  position: relative;
  z-index: 1;
  margin: 0 0 -25px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--apex-v2-color-primary);
  background: rgba(255, 255, 255, .94);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.apex-v2.apex-v2--home .apex-c-home-about__aside figure {
  margin: 0;
}

.apex-v2.apex-v2--home .apex-c-home-about__aside img {
  display: block;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
  object-position: center bottom;
}

.apex-v2.apex-v2--home .apex-c-home-features {
  padding-bottom: 70px;
}

.apex-v2.apex-v2--home .apex-c-home-features__grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.apex-v2.apex-v2--home .apex-c-home-features__image {
  margin: 0;
}

.apex-v2.apex-v2--home .apex-c-home-features__image img {
  display: block;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
  object-position: center bottom;
}

.apex-v2.apex-v2--home .apex-c-home-features__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apex-v2.apex-v2--home .apex-c-home-features__list li {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 68px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--apex-v2-color-border);
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.apex-v2.apex-v2--home .apex-c-home-features__index,
.apex-v2.apex-v2--home .apex-c-home-apply__index {
  color: var(--apex-v2-color-primary);
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.apex-v2.apex-v2--home .apex-c-home-courses {
  padding-bottom: 70px;
  background: var(--apex-v2-color-surface-muted);
  margin-bottom: 80px;
}

.apex-v2.apex-v2--home .apex-c-home-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 18px;
  margin: 0;
}

.apex-v2.apex-v2--home .apex-c-home-course-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, .92fr);
  min-width: 0;
  margin: 0;
  color: var(--apex-v2-color-text);
  background: var(--apex-v2-color-surface);
  cursor: pointer;
  text-decoration: none;
}

.apex-v2.apex-v2--home .apex-c-home-course-card--featured {
  display: block;
  grid-row: auto;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.apex-v2.apex-v2--home .apex-c-home-course-card--featured .apex-c-home-course-card__image img {
  aspect-ratio: 2.35 / 1;
  object-position: center bottom;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:not(.apex-c-home-course-card--featured) .apex-c-home-course-card__image img {
  height: auto;
  min-height: 0;
  aspect-ratio: 2.5 / 1;
  object-position: center bottom;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:not(.apex-c-home-course-card--featured) {
  align-self: start;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:not(.apex-c-home-course-card--featured) .apex-c-home-course-card__image {
  align-self: start;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:nth-child(2) {
  display: block;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:nth-child(2) .apex-c-home-course-card__image img {
  height: auto;
  min-height: 0;
  aspect-ratio: 2.35 / 1;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:nth-child(3) {
  grid-column: 1 / -1;
}

.apex-v2.apex-v2--home .apex-c-home-course-card:nth-child(3) .apex-c-home-course-card__image img {
  aspect-ratio: 4 / 1;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__body {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__title {
  min-width: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__more {
  flex: 0 0 auto;
  margin: 0;
  color: var(--apex-v2-color-text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__more a {
  position: static;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

.apex-v2.apex-v2--home .apex-c-home-course-card__more a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.apex-v2.apex-v2--home .apex-c-home-instructors {
  position: relative;
  width: calc(100vw - 8px);
  min-height: 320px;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  color: #fff;
  margin-bottom: 80px;
}

.apex-v2.apex-v2--home .apex-c-home-instructors::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .18));
  content: "";
  pointer-events: none;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__body {
  position: relative;
  z-index: 1;
  width: min(100%, var(--apex-v2-content-width));
  margin: 0 auto;
  padding: 48px 24px;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__body .apex-c-kicker {
  color: #fff;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__body .apex-c-section-title,
.apex-v2.apex-v2--home .apex-c-home-instructors__body p {
  color: #fff;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__body > p {
  max-width: 420px;
  margin: 20px 0 0;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__actions {
  margin-top: 28px;
}

.apex-v2.apex-v2--home .apex-c-home-instructors__actions .wp-block-button__link {
  border: 1px solid #fff;
  color: #fff;
}

.apex-v2.apex-v2--home .apex-c-home-rental {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  min-height: 330px;
  background: var(--apex-v2-color-surface-muted);
  margin-bottom: 80px;
}

.apex-v2.apex-v2--home .apex-c-home-rental > .wp-block-group__inner-container {
  display: contents;
}

.apex-v2.apex-v2--home .apex-c-home-rental__body {
  min-width: 0;
  padding: 62px 44px 62px max(24px, calc((100vw - var(--apex-v2-content-width)) / 2));
}

.apex-v2.apex-v2--home .apex-c-home-rental > .wp-block-group__inner-container .apex-c-home-rental__body {
  padding-left: 44px;
}

.apex-v2.apex-v2--home .apex-c-home-rental__body > .apex-c-kicker {
  color: var(--apex-v2-color-text);
  font-size: 46px;
  font-style: italic;
  letter-spacing: -.04em;
  line-height: 1;
}

.apex-v2.apex-v2--home .apex-c-home-rental__accent {
  color: var(--apex-v2-color-primary);
}

.apex-v2.apex-v2--home .apex-c-home-rental__body .apex-c-section-title {
  font-size: 32px;
}

.apex-v2.apex-v2--home .apex-c-home-rental__body > p {
  margin: 18px 0 0;
}

.apex-v2.apex-v2--home .apex-c-home-rental__body > .wp-block-buttons {
  margin-top: 28px;
}

.apex-v2.apex-v2--home .apex-c-home-rental__image {
  min-width: 0;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
}

.apex-v2.apex-v2--home .apex-c-home-rental__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apex-v2.apex-v2--home .apex-c-home-utility {
  padding-bottom: 70px;
}

.apex-v2.apex-v2--home .apex-c-home-utility__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
}

.apex-v2.apex-v2--home .apex-c-home-apply {
  padding-right: 44px;
}

.apex-v2.apex-v2--home .apex-c-home-faq {
  padding-left: 44px;
  border-left: 1px solid var(--apex-v2-color-primary);
}

.apex-v2.apex-v2--home .apex-c-home-faq .apex-c-section-title {
  font-size: 30px;
  letter-spacing: .08em;
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li {
  position: relative;
  display: grid;
  grid-template-rows: 25px 72px minmax(22px, 1fr);
  min-width: 0;
  min-height: 146px;
  margin: 0;
  padding: 14px 8px 12px;
  border: 1px solid var(--apex-v2-color-border);
  background: var(--apex-v2-color-surface);
  align-items: center;
  justify-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li > span:last-child {
  display: block;
  grid-row: 3;
  max-width: 100%;
  min-width: 0;
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li::after {
  display: block;
  grid-row: 2;
  width: 54px;
  height: 54px;
  margin: 10px auto 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li .apex-c-home-apply__index {
  grid-row: 1;
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li:nth-child(1)::after {
  background-image: url("../images/icon02.png");
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li:nth-child(2)::after {
  background-image: url("https://apex-ara.com/wp-content/uploads/2026/08/icon03.png");
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li:nth-child(3)::after {
  background-image: url("../images/icon05.png");
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li:nth-child(4)::after {
  background-image: url("https://apex-ara.com/wp-content/uploads/2026/08/icon06.png");
}

.apex-v2.apex-v2--home .apex-c-home-apply__steps li + li::before {
  position: absolute;
  top: 50%;
  left: -11px;
  color: var(--apex-v2-color-primary);
  content: "›";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.apex-v2.apex-v2--home .apex-c-home-utility__link {
  display: inline-flex;
  margin: 20px 0;
  border-bottom: 1px solid;
  color: var(--apex-v2-color-text);
  font-weight: 700;
  text-decoration: none;
  align-items: center;
}

.apex-v2.apex-v2--home .apex-c-home-news .apex-c-home-utility__link {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 20px auto;
}

.apex-v2.apex-v2--home .apex-c-home-utility__link a {
  color: inherit;
  text-decoration: none;
}

.apex-v2.apex-v2--home .apex-c-home-utility__link::before {
  flex: 0 0 auto;
  margin-right: 8px;
  color: var(--apex-v2-color-primary);
  content: "›";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.apex-v2.apex-v2--home .apex-c-cta__body p {
  color: inherit;
  text-align: center;
}

.apex-v2.apex-v2--home .apex-c-home-related {
  padding-bottom: 70px;
  background: var(--apex-v2-color-surface-muted);
  margin-bottom: 80px;
}

.apex-v2.apex-v2--home .apex-c-home-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.apex-v2.apex-v2--home .apex-c-home-related__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  min-width: 0;
  margin: 0;
  color: var(--apex-v2-color-text);
  background: var(--apex-v2-color-surface);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.apex-v2.apex-v2--home .apex-c-home-related__card-body strong a {
  position: static;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

.apex-v2.apex-v2--home .apex-c-home-related__card-body strong a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.apex-v2.apex-v2--home .apex-c-home-related__card figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.apex-v2.apex-v2--home .apex-c-home-related__card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.apex-v2.apex-v2--home .apex-c-home-related__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 22px;
}

.apex-v2.apex-v2--home .apex-c-home-related__card-body strong {
  font-size: 18px;
  line-height: 1.5;
}

.apex-v2.apex-v2--home .apex-c-home-related__card-body small {
6  margin-top: 10px;
  color: var(--apex-v2-color-muted);
  line-height: 1.5;
}

/* ========================================
   12. レスポンシブ
======================================== */

/* タブレット */
@media (max-width: 900px) {
  /* 共通 */
  .apex-v2 {
    --apex-v2-section-space: 48px;
    --apex-v2-font-size-body: 14px;
    --apex-v2-font-size-heading: 27px;
  }

  .apex-v2 .apex-c-info-grid--2col > .wp-block-image,
  .apex-v2 .apex-c-info-grid--2col > .wp-block-group__inner-container > .wp-block-image {
    margin-top: var(--ark-mt--inner, var(--ark-mt--s));
  }

  .apex-v2 .apex-c-hero__title {
    font-size: 48px;
  }

  .apex-v2 .apex-c-hero__lead {
    font-size: 16px;
  }

  .apex-v2 .apex-c-hero {
    min-height: 250px;
    background-position: center;
  }

  .apex-v2 .apex-c-hero__inner {
    padding: 50px 24px;
  }

  /* お問い合わせ */
  .apex-v2.apex-v2--contact .apex-c-table {
    margin-right: 0;
    margin-left: 0;
  }

  .apex-v2 .apex-c-info-grid--2col {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .apex-v2 .apex-c-info-box + .apex-c-info-box {
    border-top: 1px solid var(--apex-v2-color-border);
    border-left: 0;
  }

  .apex-v2 .apex-c-cta {
    display: block;
    height: auto;
    max-width: 560px;
    margin: 20px 16px 48px;
  }

  .apex-v2 .apex-c-cta__media,.apex-v2.apex-v2--qa .apex-c-cta__media {
    min-height: 180px;
    clip-path: none;
  }

  .apex-v2 .apex-c-cta::after,
  .apex-v2 .apex-c-cta__media::after {
    display: none;
  }

  .apex-v2 .apex-c-cta__body {
    padding: 34px 24px;
    text-align: center;
  }

  .apex-v2 .apex-c-cta__actions {
    margin-right: auto;
    margin-left: auto;
  }

  .apex-v2 .apex-c-cta__actions .wp-block-button__link {
    font-size: 16px;
  }

  /* Q&A */
  /* 申し込み方法 */
  .apex-v2.apex-v2--howto .apex-c-apply-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-flow__item:nth-child(3n + 1)::before {
    display: none;
  }

  .apex-v2.apex-v2--howto .apex-c-pre-check__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
  }

  /* プライバシーポリシー */
  /* インストラクター紹介 */
  .apex-v2.apex-v2--instructor .apex-c-profile__hero > .wp-block-group__inner-container,
  .apex-v2.apex-v2--instructor .apex-c-profile__hero--reverse > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "meta";
    gap: 0;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__visual {
    min-height: 0;
    padding: 0;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__meta {
    margin-top: 24px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__facts > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__body > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* バイクオークション */
  .apex-v2.apex-v2--auction .apex-c-comparison__desktop-cards {
    display: none;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__cards--mobile {
    display: grid;
    gap: 14px;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__fee {
    margin: 0;
    padding: 14px;
    border: 1px solid #dde4eb;
    border-radius: 13px;
    background: var(--apex-v2-color-surface);
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__fee-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 12px;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__fee-title > .wp-block-group__inner-container > h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__fee-title .apex-c-comparison__fee-icon {
    width: 31px;
    height: 31px;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__targets .apex-c-comparison__card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 50px;
    padding: 10px 42px 10px 10px;
    border: 0;
    border-radius: 10px;
    background: #f7f8fa;
    align-items: center;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__targets .apex-c-comparison__card--ara {
    background: #fffafa;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__targets .apex-c-comparison__card--excluded {
    color: #8c97a5;
    background: #eef1f4;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__target-name {
    display: block;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__target-logo {
    display: block;
    width: 46px;
    margin: 0 0 4px;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__target-store-icon {
    display: block;
    width: 27px;
    margin: 0 0 6px;
  }

  .apex-v2.apex-v2--auction .apex-c-comparison__targets .apex-c-comparison__state {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }

  /* コース／スケジュール案内 */
  .apex-v2.apex-v2--course .apex-c-course-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .apex-v2.apex-v2--course .apex-c-course-index__item:last-child {
    grid-column: auto;
  }

  .apex-v2.apex-v2--course .apex-c-course-grid {
    gap: 22px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card {
    padding: 24px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field:not(:first-child) {
    padding-left: 12px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__title {
    font-size: 28px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__detail-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(210px, .85fr);
    gap: 24px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__detail-meta {
    padding-left: 18px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__map {
    height: 210px;
  }

  .apex-v2.apex-v2--home .apex-c-hero {
    width: 100vw;
    min-height: 420px;
  }

  .apex-v2.apex-v2--home .apex-c-hero__inner {
    padding: 72px 24px 58px;
  }

  .apex-v2.apex-v2--home .apex-c-hero__title {
    font-size: 46px;
  }

  .apex-v2.apex-v2--home .apex-c-hero__lead {
    font-size: 19px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__grid,
  .apex-v2.apex-v2--home .apex-c-home-features__grid {
    grid-template-columns: 1fr;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__content {
    padding-top: 44px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__aside {
    max-width: 640px;
    margin: 0 auto;
    align-self: center;
  }

  .apex-v2.apex-v2--home .apex-c-home-features__grid {
    gap: 28px;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card--featured {
    grid-row: auto;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card:nth-child(3) {
    display: block;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card:nth-child(3) .apex-c-home-course-card__image img {
    aspect-ratio: 2.35 / 1;
  }

  .apex-v2.apex-v2--home .apex-c-home-instructors {
    width: 100vw;
    min-height: 360px;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental {
    grid-template-columns: 1fr;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__body {
    padding: 50px 24px;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__image {
    min-height: 270px;
  }

  .apex-v2.apex-v2--home .apex-c-home-utility__grid {
    grid-template-columns: 1fr;
  }

  .apex-v2.apex-v2--home .apex-c-home-apply {
    padding-right: 0;
    padding-bottom: 34px;
  }

  .apex-v2.apex-v2--home .apex-c-home-faq {
    padding: 34px 0 0;
    border-top: 1px solid var(--apex-v2-color-primary);
    border-left: 0;
  }

  .apex-v2.apex-v2--home .apex-c-home-related__grid {
    grid-template-columns: 1fr;
  }

}

/* スマートフォン */
@media (max-width: 600px) {
  /* 共通 */
  .apex-v2 {
    --apex-v2-gutter: 16px;
    --apex-v2-font-size-heading: 24px;
  }

  .apex-v2 .apex-c-section-intro .apex-c-section-title {
    font-size: 21px;
  }

  .apex-v2 .apex-c-section-lead {
    font-size: inherit;
  }

  .apex-v2 .apex-c-table th,
  .apex-v2 .apex-c-table td {
    padding: 14px 16px;
  }

  .apex-v2 .wp-block-button.apex-c-button.apex-c-button--primary > .wp-block-button__link {
    width: 100%;
    font-size: 16px;
  }

  .apex-v2 .apex-c-section-intro {
    display: flex;
    flex-direction: column;
    padding: 44px 20px 28px;
  }

  .apex-v2 .apex-c-section-intro::before {
    display: none;
  }

  .apex-v2 .apex-c-section-intro::after {
    display: block;
    width: 48px;
    margin-top: 14px;
  }

  .apex-v2 .apex-c-section-intro .apex-c-section-title {
    white-space: normal;
  }

  .apex-v2 .apex-c-section-intro__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.85;
  }

  .apex-v2 .apex-c-data-list {
    margin-bottom: 48px;
  }

  .apex-v2 .apex-c-data-list__header {
    min-height: 135px;
    padding: 36px 16px 22px;
    background-position: right top;
    background-size: auto 100%;
  }

  .apex-v2 .apex-c-data-list__item > .wp-block-group__inner-container {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 5px 12px;
    padding: 20px 18px;
  }

  .apex-v2 .apex-c-data-list__index {
    grid-row: 1 / span 2;
    align-self: center;
    white-space: nowrap;
  }

  .apex-v2.apex-v2--paper .apex-c-data-list--inline .apex-c-data-list__item > .wp-block-group__inner-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .apex-v2.apex-v2--paper .apex-c-data-list--inline .apex-c-data-list__value {
    grid-column: auto;
  }

  .apex-v2.apex-v2--paper .apex-c-data-list--inline .apex-c-data-list__body {
    width: 100%;
  }

  .apex-v2 .apex-c-data-list__label,
  .apex-v2 .apex-c-data-list__value {
    grid-column: 2;
    font-size: 14px;
  }

  .apex-v2 .apex-c-info-grid {
    margin: 0 16px 48px;
  }

  .apex-v2 .apex-c-info-box {
    padding: 28px 22px;
  }

  .apex-v2 .apex-c-info-box__title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .apex-v2 .apex-c-info-box__body {
    font-size: 13px;
  }

  .apex-v2 .apex-c-info-box__icon {
    flex-basis: 29px;
    width: 29px;
    height: 29px;
  }

  /* お問い合わせ */
  .apex-v2.apex-v2--contact .ara-cf7__table,
  .apex-v2.apex-v2--contact .ara-cf7__table tbody,
  .apex-v2.apex-v2--contact .ara-cf7__table tr,
  .apex-v2.apex-v2--contact .ara-cf7__table th,
  .apex-v2.apex-v2--contact .ara-cf7__table td {
    display: block;
    width: 100%;
  }

  .apex-v2.apex-v2--contact .ara-cf7__table tr {
    border-bottom: 1px solid var(--apex-v2-color-border);
  }

  .apex-v2.apex-v2--contact .ara-cf7__table tr:last-child {
    border-bottom: 0;
  }

  .apex-v2.apex-v2--contact .ara-cf7__table th {
    padding: 14px 16px 6px;
    border-bottom: 0;
  }

  .apex-v2.apex-v2--contact .ara-cf7__table td {
    padding: 0 16px 16px;
    border-bottom: 0;
  }

  .apex-v2.apex-v2--contact .ara-cf7__table tr:last-child th {
    display: none;
  }

  .apex-v2.apex-v2--contact .ara-cf7__table tr:last-child td {
    padding: 16px;
  }

  .apex-v2.apex-v2--contact .ara-cf7__table input[type="text"],
  .apex-v2.apex-v2--contact .ara-cf7__table input[type="email"],
  .apex-v2.apex-v2--contact .ara-cf7__table input[type="tel"],
  .apex-v2.apex-v2--contact .ara-cf7__table textarea,
  .apex-v2.apex-v2--contact .ara-cf7__table select {
    font-size: 16px;
  }

  .apex-v2.apex-v2--contact .ara-cf7__submit {
    width: 100%;
    min-width: 0;
  }

  .apex-v2 .apex-c-cta__actions .wp-block-buttons {
    flex-direction: column;
  }

  .apex-v2 .apex-c-cta__actions .wp-block-button {
    width: 100%;
  }

  /* Q&A */
  .apex-v2 .apex-c-qa-item {
    padding-bottom: 22px;
  }

  .apex-v2 .apex-c-qa-item + .apex-c-qa-item {
    padding-top: 22px;
  }

  .apex-v2 .apex-c-qa-question {
    gap: 10px;
  }

  .apex-v2 .apex-c-qa-question::before {
    flex-basis: 46px;
    font-size: 14px;
  }

  .apex-v2 .apex-c-qa-answer {
    margin-top: 12px;
    margin-left: 56px;
    font-size: 14px;
  }

  /* 申し込み方法 */
  .apex-v2.apex-v2--howto .apex-c-apply-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--apex-v2-section-space);
  }

  .apex-v2.apex-v2--howto .apex-c-apply-flow__item {
    display: grid;
    grid-template-columns: 42px 48px minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 12px;
    min-height: 66px;
    height: auto;
    margin: 0;
    padding: 12px 10px;
    align-items: center;
    text-align: left;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-flow__item + .apex-c-apply-flow__item::before {
    top: -12px;
    left: 18px;
    font-size: 22px;
    line-height: 1;
    transform: none;
    display: none;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-flow__index {
    grid-column: 1;
    grid-row: 1;
    font-size: 16px;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-flow__icon {
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-flow__title {
    grid-column: 3;
    grid-row: 1;
    font-size: var(--apex-v2-font-size-body);
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 22px 0;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step__title {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step__description {
    font-size: var(--apex-v2-font-size-body);
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step__visual--course figure,
  .apex-v2.apex-v2--howto .apex-c-apply-step__visual--consent figure,
  .apex-v2.apex-v2--howto .apex-c-apply-step__visual--customer figure,
  .apex-v2.apex-v2--howto .apex-c-apply-step__visual--payment figure {
    height: 180px;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step__visual--completion {
    min-height: 180px;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step__visual--completion .apex-c-apply-step__completion-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .apex-v2.apex-v2--howto .apex-c-apply-step__message {
    min-height: 170px;
    padding: 24px;
    font-size: 19px;
  }

  .apex-v2.apex-v2--howto .apex-c-pre-check__title,
  .apex-v2.apex-v2--howto .apex-c-agreement__title {
    font-size: var(--apex-v2-font-size-heading);
  }

  .apex-v2.apex-v2--howto .apex-c-pre-check__grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .apex-v2.apex-v2--howto .apex-c-pre-check__item {
    padding: 20px 16px;
  }

  .apex-v2.apex-v2--howto .apex-c-agreement__lead {
    margin-top: 18px;
    text-align: left;
  }

  .apex-v2.apex-v2--howto .apex-c-agreement__list {
    margin-top: 24px;
  }

  .apex-v2.apex-v2--howto .apex-c-agreement__list li {
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    font-size: var(--apex-v2-font-size-body);
  }

  .apex-v2.apex-v2--howto .apex-c-agreement__list .apex-c-index {
    font-size: 15px;
  }

  /* プライバシーポリシー */
  .apex-v2.apex-v2--privacy-policy .apex-c-section-title {
    font-size: 21px;
  }

  /* インストラクター紹介 */
  .apex-v2.apex-v2--instructor .apex-c-profile {
    margin-top: 52px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__visual {
    padding: 0;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__name-band {
    width: 100%;
    margin-left: 0;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__name-band > .wp-block-group__inner-container {
    padding: 18px 24px 20px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__name {
    font-size: 31.2px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__name-en {
    font-size: 12px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__fact {
    padding: 20px 22px 24px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__body {
    margin-top: 38px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__courses {
    margin-top: 44px;
  }

  .apex-v2.apex-v2--instructor .apex-c-profile__courses .amelia-service {
    margin-top: 18px;
  }


  /* コース／スケジュール案内 */
  .apex-v2.apex-v2--course .apex-c-course-index__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .apex-v2.apex-v2--course .apex-c-course-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card {
    padding: 0;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding: 0;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__title {
    font-size: 24px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__value {
    font-size: 15px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field--price {
    grid-column: 1 / -1;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__header .apex-c-course-card__field--price .apex-c-course-card__value {
    font-size: 18px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__instructor-name {
    font-size: 13px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__details {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__details > summary {
    padding: 15px;
  }
  .apex-v2.apex-v2--course .apex-c-course-card__details[open] > summary {
    padding: 15px;
  }

  .apex-v2.apex-v2--course .apex-c-course-index__title {
    font-size: 17px;
  }
  .apex-v2.apex-v2--course .apex-c-course-card__details > summary::after {
    bottom: 5%;
    top: inherit;
  }
  .apex-v2.apex-v2--course .apex-c-course-card__detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__detail-meta {
    gap: 16px;
    padding: 18px 0 0;
    border-top: 1px solid var(--apex-v2-color-border);
    border-left: 0;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__detail-meta .apex-c-course-card__field + .apex-c-course-card__field {
    padding-top: 16px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__venue {
    margin-top: 20px;
    padding:  18px 10px 10px 10px;
  }

  .apex-v2.apex-v2--course .apex-c-course-card__map {
    height: 180px;
  }

  .apex-v2.apex-v2--home .apex-c-hero {
    min-height: 480px;
  }

  .apex-v2.apex-v2--home .apex-c-hero__inner {
    padding: 54px 20px 48px;
  }

  .apex-v2.apex-v2--home .apex-c-hero__kicker {
    font-size: 13px;
  }

  .apex-v2.apex-v2--home .apex-c-hero__title {
    margin-top: .2em;
    font-size: 36px;
    letter-spacing: 0;
  }

  .apex-v2.apex-v2--home .apex-c-hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .apex-v2.apex-v2--home .apex-c-home-hero__audience {
    margin-top: 18px;
    font-size: 13px;
  }

  .apex-v2.apex-v2--home .apex-c-home-hero__start {
    font-size: 12px;
  }

  .apex-v2.apex-v2--home .apex-c-home-hero__actions {
    margin-top: 22px;
  }

  .apex-v2.apex-v2--home .apex-c-home-news__inner {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 76px;
  }

  .apex-v2.apex-v2--home .apex-c-home-news__list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }

  .apex-v2.apex-v2--home .apex-c-home-news__list time,
  .apex-v2.apex-v2--home .apex-c-home-news__list a {
    grid-area: auto;
  }

  .apex-v2.apex-v2--home .apex-c-home-news__list a {
    font-size: 13px;
    line-height: 1.5;
    padding-left: 0;
  }

  .apex-v2.apex-v2--home .apex-c-section-intro {
    padding: 44px 0 24px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about {
    padding-bottom: 48px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__content {
    padding-top: 38px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__body {
    font-size: 13px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__aside .apex-c-home-about__audience {
    margin: 0 0 -26px;
    padding: 18px 20px;
    font-size: 14px;
  }

  .apex-v2.apex-v2--home .apex-c-home-about__aside img {
    aspect-ratio: 2 / 1;
  }

  .apex-v2.apex-v2--home .apex-c-home-features {
    padding-bottom: 48px;
  }

  .apex-v2.apex-v2--home .apex-c-home-features__grid {
    gap: 24px;
  }

  .apex-v2.apex-v2--home .apex-c-home-features__list {
    grid-template-columns: 1fr;
  }

  .apex-v2.apex-v2--home .apex-c-home-features__list li {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 52px;
    font-size: 14px;
  }

  .apex-v2.apex-v2--home .apex-c-home-courses {
    padding-bottom: 48px;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card,
  .apex-v2.apex-v2--home .apex-c-home-course-card--featured {
    display: block;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card__image img,
  .apex-v2.apex-v2--home .apex-c-home-course-card--featured .apex-c-home-course-card__image img {
    min-height: 0;
    aspect-ratio: 2.55 / 1;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card__body {
    padding: 16px;
  }

  .apex-v2.apex-v2--home .apex-c-home-course-card__title {
    font-size: 18px;
  }

  .apex-v2.apex-v2--home .apex-c-home-instructors {
    min-height: 360px;
  }

  .apex-v2.apex-v2--home .apex-c-home-instructors__media img {
    transform: scale(1.75);
    transform-origin: center bottom;
  }

  .apex-v2.apex-v2--home .apex-c-home-instructors__body {
    padding: 36px 20px;
  }

  .apex-v2.apex-v2--home .apex-c-home-instructors__body > p {
    font-size: 14px;
  }

  .apex-v2.apex-v2--home .apex-c-home-instructors__actions .wp-block-button__link {
    width: 100%;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__body {
    padding: 44px 20px;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__body .apex-c-section-title {
    font-size: 24px;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__body > .apex-c-kicker {
    font-size: 38px;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__body > p {
    font-size: 14px;
  }

  .apex-v2.apex-v2--home .apex-c-home-rental__image {
    min-height: 200px;
  }

  .apex-v2.apex-v2--home .apex-c-home-faq .apex-c-section-title {
    font-size: 26px;
  }

  .apex-v2.apex-v2--home .apex-c-home-utility {
    padding-bottom: 48px;
  }

  .apex-v2.apex-v2--home .apex-c-home-apply__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .apex-v2.apex-v2--home .apex-c-home-apply__steps li {
    grid-template-rows: 22px 50px minmax(20px, 1fr);
    min-height: 114px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .apex-v2.apex-v2--home .apex-c-home-apply__steps li::after {
    width: 42px;
    height: 42px;
    margin: 4px auto;
  }

  .apex-v2.apex-v2--home .apex-c-home-apply__steps li + li::before {
    display: none;
  }

  .apex-v2.apex-v2--home .apex-c-home-related {
    padding-bottom: 48px;
  }

  .apex-v2.apex-v2--home .apex-c-home-related__card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }

  .apex-v2.apex-v2--home .apex-c-home-related__card img {
    min-height: 120px;
  }

  .apex-v2.apex-v2--home .apex-c-home-related__card-body {
    padding: 16px;
  }

  .apex-v2.apex-v2--home .apex-c-home-related__card-body strong {
    font-size: 16px;
  }

  .apex-v2.apex-v2--home .apex-c-home-related__card-body small {
    font-size: 12px;
  }

}
body.page-id-2:has(.apex-v2.apex-v2--home) .apex-c-cta__media {  height: auto !important;}
