@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-japanese-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-japanese-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #1c9b05;
  --green-dark: #137e02;
  --pale: #edf7e7;
  --cream: #fff9e2;
  --yellow: #fcc800;
  --red: #ea370d;
  --ink: #262626;
  --gray: #888;
  --line: #d8d8d8;
  --dark: #262626;
  --content: 1060px;
  --form: 912px;
  --header: 130px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

.site-shell {
  width: 100%;
  min-width: 0;
  overflow: clip;
  background: #fff;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), var(--form));
  margin-inline: auto;
}

[hidden] {
  display: none !important;
}

/* Header: XD 1280 canvas / 1060 content / 130 high */
.site-header {
  position: relative;
  z-index: 30;
  width: 100%;
  height: var(--header);
  background: #fff;
  box-shadow: 0 2px 5px rgb(0 0 0 / 7%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  line-height: 1.3;
}

.site-logo strong {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.site-logo span {
  margin-top: 3px;
  color: var(--gray);
  font-size: 11px;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
}

.global-nav > a:not(.header-contact) {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  white-space: nowrap;
}

.global-nav > a:not(.header-contact)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  opacity: 0;
  transform: scaleX(.25);
  transition: .2s ease;
}

.global-nav > a:hover::after,
.global-nav > a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-contact {
  display: grid;
  width: 172px;
  height: 60px;
  color: #fff;
  border-radius: 32px;
  place-items: center;
  background: var(--green);
}

.header-contact:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
}

/* Shared headings and controls */
.heading-center {
  text-align: center;
}

.eyebrow,
.page-hero .en {
  margin: 0;
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.75;
  text-transform: uppercase;
}

.section-heading {
  margin: 16px 0 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
}

.heading-center .section-heading::after {
  display: block;
  width: 74px;
  height: 4px;
  margin: 24px auto 0;
  content: "";
  background: var(--green);
}

.heading-center > p:last-child:not(.eyebrow) {
  margin: 25px auto 0;
  font-size: 20px;
  line-height: 35px;
}

.btn,
.card-button {
  display: inline-grid;
  width: 350px;
  max-width: 100%;
  height: 50px;
  padding: 0 28px;
  color: #fff;
  border: 1px solid var(--green);
  border-radius: 25px;
  place-items: center;
  background: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover,
.card-button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline,
.card-button.btn-outline {
  color: var(--green);
  background: #fff;
}

.btn-white {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.btn-white:hover {
  color: var(--green);
  border-color: #fff;
  background: #fff;
}

.center-action,
.form-submit {
  margin: 0;
  text-align: center;
}

.placeholder-photo {
  position: relative;
  overflow: hidden;
}

.placeholder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo[data-placeholder]::after {
  position: absolute;
  top: 50%;
  right: 30px;
  padding: 4px 18px;
  color: #fff;
  content: attr(data-placeholder);
  background: var(--red);
  font-size: 16px;
  font-weight: 700;
  transform: translateY(-50%);
}

/* Top: exact desktop section heights from XD */
.top-hero {
  position: relative;
  height: 670px;
  background: var(--pale);
}

.top-hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 239px;
  left: max(40px, calc((100% - var(--content)) / 2 + 15px));
  width: 520px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 70px;
}

.hero-copy h1 span {
  display: block;
}

.hero-art {
  position: absolute;
  inset: 0 111px 0 50%;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-side-links {
  position: absolute;
  z-index: 4;
  top: 154px;
  right: 0;
  display: grid;
  width: 111px;
  gap: 10px;
  padding: 18px 11px;
  border-radius: 18px 0 0 18px;
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 3px 12px rgb(0 0 0 / 12%);
}

.hero-side-link {
  display: grid;
  height: 220px;
  padding: 26px 30px;
  color: #fff;
  border-radius: 9px;
  place-items: center;
  background: #ff9418;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  writing-mode: vertical-rl;
}

.hero-side-link + .hero-side-link {
  background: #ff4c53;
}

.scroll-cue {
  position: absolute;
  bottom: 9px;
  left: 54px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: lowercase;
}

.scroll-cue::before {
  display: block;
  width: 1px;
  height: 64px;
  margin: 0 auto 7px;
  content: "";
  background: var(--green);
}

.home-news {
  height: 1042px;
  padding-top: 78px;
  background: var(--pale);
}

.home-news .news-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.news-item {
  display: grid;
  grid-template-columns: 280px 1fr 20px;
  align-items: center;
  width: 100%;
  min-height: 120px;
  padding: 22px 42px;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  background: #fff;
  font-size: 18px;
}

.news-date {
  color: #969696;
  font-size: 16px;
}

.tag {
  display: inline-grid;
  min-width: 75px;
  height: 20px;
  margin-left: 12px;
  padding: 0 8px;
  color: var(--ink);
  border-radius: 5px;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.tag-red {
  min-width: 47px;
  margin-left: 5px;
  background: #e64543;
}

.home-news .center-action {
  margin-top: 48px;
}

.concerns-section {
  height: 857.5px;
  padding-top: 132px;
  background: #fff;
}

.concerns-section .heading-center .section-heading {
  margin-top: 0;
}

.concerns-grid {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 60px;
  margin-top: 61px;
}

.concern-card {
  overflow: hidden;
  width: 500px;
  height: 229px;
  border-radius: 20px;
  background: var(--cream);
}

.concern-card.is-large {
  height: 500px;
}

.concern-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concerns-stack {
  display: grid;
  gap: 42px;
}

#services {
  height: 1480px;
  padding-top: 86px;
}

.bg-green {
  color: #fff;
  background: var(--green);
}

.bg-green .eyebrow {
  color: var(--yellow);
}

.bg-green .heading-center .section-heading::after {
  background: var(--yellow);
}

.services-grid {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 60px;
  margin-top: 51px;
}

.service-card {
  overflow: hidden;
  height: 500px;
  color: var(--ink);
  border-radius: 20px;
  background: #fff;
}

.service-card-image {
  height: 160px;
}

.service-card-body {
  position: relative;
  height: 340px;
  padding: 13px 31px 72px;
}

.service-card h3 {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 28px;
  line-height: 40px;
}

.service-card p {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 28px;
}

.service-card ul {
  margin: 0;
  padding: 7px 0 0 24px;
  border-top: 1px solid var(--green);
  font-size: 16px;
  line-height: 26px;
  list-style: none;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--green);
  content: "●";
  font-size: 9px;
}

.service-card .card-button {
  position: absolute;
  bottom: 22px;
  left: 75px;
}

#strengths {
  height: 946.5px;
  padding-top: 80px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 334px);
  gap: 27px 29px;
  margin-top: 39px;
}

.strength-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 246px;
  padding: 28px 24px;
  border-radius: 10px;
  background: var(--cream);
  text-align: center;
}

.strength-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
}

.strength-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 30px;
}

.strength-card p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}

#flow {
  height: 1187px;
  padding-top: 69px;
}

.flow-list {
  display: grid;
  gap: 12.85px;
  margin-top: 38px;
}

.flow-item {
  display: grid;
  overflow: hidden;
  grid-template-columns: 120px 1fr;
  width: 100%;
  height: 120px;
  border-radius: 60px;
  background: #fff;
}

.flow-number {
  display: grid;
  color: var(--green);
  border-radius: 60px;
  place-items: center;
  background: var(--yellow);
  font-size: 30px;
  line-height: 1;
}

.flow-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 43px;
  color: var(--ink);
}

.flow-text strong {
  color: var(--green);
  font-size: 24px;
  line-height: 40px;
}

.flow-text span {
  font-size: 18px;
  line-height: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 39.765625% 49.21875% 11.015625%;
  width: 100%;
  height: 380.5px;
  overflow: hidden;
}

.gallery-grid::after {
  content: "";
  background: url("../images/xd-instructor.png") center / cover no-repeat;
}

.gallery-grid > div {
  height: 100%;
}

/* Shared 320px lower-page hero */
.page-hero {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  height: 320px;
  background: linear-gradient(90deg, #fff 0 39%, #f7f7f7 50% 100%);
}

.page-hero-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-left: max(40px, calc((100vw - var(--content)) / 2));
}

.page-hero-copy .en {
  color: var(--gray);
}

.page-hero-copy h1 {
  margin: 20px 0 0;
  color: var(--green);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 60px;
}

.page-hero-image {
  height: 320px;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breadcrumb {
  height: 30px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  line-height: 30px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 70px 0;
}

.bg-pale {
  background: var(--pale);
}

/* Course list: exact desktop controls and 1060 x 300 cards */
.course-search {
  height: 200px;
  padding-top: 32px;
  background: #fff;
}

.search-box {
  position: relative;
  width: 648px;
  height: 54px;
  margin-inline: auto;
}

.search-box::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray);
  border-radius: 50%;
  content: "";
}

.search-box::after {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 35px;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--gray);
  transform: rotate(45deg);
}

.search-box input {
  width: 100%;
  height: 54px;
  padding: 0 24px 0 55px;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  font-size: 16px;
}

.search-box input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(28 155 5 / 12%);
}

.filter-buttons {
  display: grid;
  grid-template-columns: repeat(6, 160px);
  gap: 15px;
  margin-top: 32px;
}

.filter-button {
  height: 50px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 25px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: var(--green);
}

.course-results {
  min-height: 3164px;
  padding: 35px 0 138px;
  background: var(--pale);
}

.result-count {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 26px;
}

.course-list {
  display: grid;
  gap: 30px;
}

.course-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 315px;
  padding: 30px 40px 24px 60px;
  border-radius: 20px;
  background: #fff;
}

.course-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 22px;
  content: "";
  background: var(--green);
}

.course-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.course-item h2 {
  margin: 0;
  font-size: 32px;
  line-height: 48px;
}

.course-type {
  display: grid;
  flex: 0 0 146px;
  height: 40px;
  color: var(--green);
  border-radius: 20px;
  place-items: center;
  background: var(--pale);
  font-size: 16px;
  font-weight: 700;
}

.course-target {
  margin: 1px 0 11px;
  font-size: 18px;
  line-height: 30px;
}

.course-meta {
  display: grid;
  grid-template-columns: 2.25fr 1.15fr 1fr 1fr;
  gap: 25px;
  padding-top: 7px;
  border-top: 1px solid #dedede;
}

.course-meta div {
  display: flex;
  flex-direction: column;
}

.course-meta strong {
  color: var(--green);
  font-size: 18px;
  line-height: 30px;
}

.course-meta span {
  font-size: 16px;
  line-height: 28px;
}

.seat-count.few,
.seat-count.full {
  color: var(--red);
  font-weight: 700;
}

.course-item .card-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.no-results {
  padding: 80px 20px;
  text-align: center;
}

/* Course details */
.course-overview {
  height: 1130px;
  color: #fff;
  background: var(--green);
}

.course-overview > .container {
  position: relative;
  height: 100%;
  padding-top: 91px;
}

.course-category {
  position: absolute;
  top: 18px;
  left: 0;
  display: grid;
  width: 146px;
  height: 40px;
  border-radius: 20px;
  place-items: center;
  background: rgb(255 255 255 / 22%);
  font-size: 16px;
  font-weight: 700;
}

.course-overview .heading-center .section-heading {
  margin-top: 0;
}

.course-overview .heading-center .section-heading::after {
  background: var(--yellow);
}

.course-overview .heading-center > p:last-child {
  width: 892px;
  max-width: 100%;
  margin-top: 25px;
  font-size: 18px;
  line-height: 35px;
}

.course-overview .course-summary-grid {
  margin-top: 39px;
}

.course-overview .price-card,
.course-overview .date-card {
  color: var(--ink);
  background: #fff;
}

.course-overview .price-card strong,
.course-overview .date-card strong {
  color: var(--green);
  font-size: 24px;
  line-height: 30px;
}

.course-overview .price-card .price {
  color: var(--ink);
  font-size: 50px;
  line-height: 58px;
}

.course-overview .price-card .price small {
  font-size: 20px;
}

.schedule-card {
  height: 530px;
  margin-top: 49px;
  padding: 31px 51px 39px;
  color: var(--ink);
  border-radius: 20px;
  background: #fff;
}

.schedule-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 24px;
  line-height: 36px;
}

.schedule-card .schedule-list {
  gap: 16px;
  margin-top: 27px;
  padding: 0;
  background: transparent;
}

.schedule-card .schedule-row {
  grid-template-columns: 2.7fr 1fr .8fr;
}

.course-downloads {
  height: 450px;
  padding-top: 166px;
  background: #fff;
}

.course-downloads h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 34px;
  line-height: 48px;
}

.course-downloads .download-grid {
  gap: 22px 24px;
}

.course-downloads .course-note {
  margin-top: 18px;
}

body[data-page="course-detail-a"] .application-section {
  height: 3137.5px;
}

body[data-page="course-detail-b"] .application-section {
  height: 2653.5px;
}

body[data-page^="course-detail"] .form-shell {
  margin-top: 50px;
}

body[data-page^="course-detail"] .form-shell > .form-section-title:first-of-type {
  margin-top: 0;
}

body[data-page^="course-detail"] .form-field input:not([type="radio"]):not([type="checkbox"]),
body[data-page^="course-detail"] .form-field select {
  height: 70px;
}

body[data-page^="course-detail"] .form-field textarea {
  height: 200px;
}

body[data-page^="course-detail"] .payment-options {
  min-height: 70px;
}

body[data-page^="course-detail"] .form-consent {
  width: 444px;
  min-height: 70px;
}

.detail-intro {
  padding: 50px 0 40px;
}

.detail-intro .heading-center {
  padding: 16px 0 35px;
  color: #fff;
  background: var(--green);
}

.detail-intro .heading-center .eyebrow,
.detail-intro .heading-center p {
  color: #fff;
}

.detail-intro .heading-center .section-heading::after {
  background: var(--yellow);
}

.course-summary-grid {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 60px;
  margin-top: 55px;
}

.price-card,
.date-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 180px;
  border-radius: 20px;
  background: var(--cream);
  text-align: center;
}

.price-card .price {
  color: var(--green);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.price-card small,
.date-card p {
  margin: 4px 0 0;
}

body[data-page^="course-detail"] main > .bg-pale {
  padding: 50px 0 65px;
}

.schedule-list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
  padding: 49px 50px;
  border-radius: 20px;
  background: #fff;
}

.schedule-row {
  display: grid;
  grid-template-columns: 2.3fr 1fr .75fr .8fr;
  align-items: center;
  min-height: 120px;
  padding: 0 30px;
  border-radius: 20px;
  background: var(--cream);
}

.schedule-row strong {
  font-size: 18px;
}

.status {
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.status.few,
.status.full {
  color: var(--red);
}

.schedule-link {
  display: grid;
  height: 44px;
  color: #fff;
  border-radius: 22px;
  place-items: center;
  background: var(--green);
  font-weight: 700;
}

.schedule-link.is-disabled {
  background: var(--gray);
}

.system-note,
.course-note {
  margin: 22px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 24px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-grid-spaced {
  margin-top: 46px;
}

.text-green {
  color: var(--green);
}

.detail-box {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}

.detail-box h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 22px;
}

.detail-box p {
  margin: 0;
}

.download-panel {
  margin-top: 54px;
  padding: 45px 74px;
  background: #fff;
}

.download-panel h3 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 34px;
  text-align: center;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}

.download-link {
  display: grid;
  min-height: 70px;
  padding: 0 24px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  place-items: center;
  background: #fff;
  font-weight: 700;
  text-align: center;
}

.download-link:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.application-section {
  padding: 80px 0 95px;
  background: #fff;
}

.application-tabs {
  display: none;
}

.form-shell {
  margin-top: 50px;
}

.form-section-title {
  margin: 62px 0 32px;
  color: var(--green);
  font-size: 34px;
  line-height: 48px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
}

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field > label {
  display: block;
  min-height: 52px;
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.required {
  margin-left: 5px;
  color: var(--red);
  font-size: .8em;
  font-weight: 700;
}

.form-field input:not([type="radio"]):not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  height: 85px;
  padding: 0 28px;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
  outline: 0;
  background: #fff;
  font-size: 18px;
}

.form-field textarea {
  height: 256px;
  padding-block: 22px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(28 155 5 / 12%);
}

.payment-options {
  display: flex;
  align-items: center;
  min-height: 85px;
  gap: 24px;
  padding: 18px 24px;
  border-radius: 5px;
  background: var(--pale);
}

.payment-options label {
  cursor: pointer;
}

.form-consent {
  display: grid;
  width: 468px;
  min-height: 85px;
  margin: 44px auto 0;
  padding: 20px 30px;
  border-radius: 10px;
  place-items: center;
  background: #f0f3f5;
  text-align: center;
}

.form-consent input {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  accent-color: var(--green);
  vertical-align: middle;
}

.form-consent a {
  color: var(--green);
  text-decoration: underline;
}

.form-submit,
.form-shell > .center-action {
  margin-top: 40px;
}

.form-result {
  margin-top: 30px;
  padding: 20px;
  border-radius: 8px;
  background: var(--pale);
  text-align: center;
}

/* Consulting and contact form pages */
.consulting-form-section,
body[data-page="contact"] main > .section {
  padding: 88px 0 95px;
  background: #fff;
}

body[data-page="consulting"] .consulting-form-section {
  height: 1863.5px;
}

body[data-page="contact"] main > .section {
  height: 1763.5px;
}

.consulting-form-section .consulting-intro,
body[data-page="contact"] main > .section > .narrow > .heading-center {
  margin-bottom: 46px;
}

body[data-page="consulting"] .consulting-intro {
  margin-bottom: 82px;
}

body[data-page="contact"] main > .section > .narrow > .heading-center {
  margin-bottom: 24px;
}

.consulting-form-section .form-shell,
body[data-page="contact"] .form-shell {
  margin-top: 0;
}

.form-guidance {
  margin: 42px auto 0;
  font-size: 14px;
  line-height: 26px;
}

.form-guidance p {
  margin-bottom: 3px;
}

.inquiry-methods {
  margin: 0 0 30px;
}

.inquiry-method {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--green);
}

.inquiry-icon {
  display: grid;
  width: 64px;
  height: 64px;
  color: var(--green);
  border: 3px solid var(--green);
  border-radius: 50%;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
}

.inquiry-method > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.inquiry-method h3 {
  margin: 0;
  font-size: 24px;
  line-height: 40px;
}

.inquiry-method a {
  color: var(--green);
  font-size: 38px;
  font-weight: 700;
  text-align: right;
}

.inquiry-method p {
  grid-column: 2;
  margin: -17px 0 0;
  text-align: right;
}

/* Company */
.profile-grid {
  display: grid;
  grid-template-columns: 468px 518px;
  gap: 74px;
  margin-top: 56px;
}

.photo-frame {
  height: 450px;
  border-radius: 20px;
}

.profile-copy h2 {
  margin: 0 0 31px;
  font-size: 28px;
  line-height: 40px;
}

.profile-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 32px;
}

.signature {
  font-size: 20px !important;
  line-height: 34px !important;
}

.signature span,
.signature strong {
  display: block;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 16px 22px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  line-height: 27px;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 200px;
  background: var(--pale);
}

.career-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
  list-style: none;
}

.career-list li {
  display: grid;
  grid-template-columns: 207px 1fr;
  min-height: 60px;
  border-bottom: 1px solid #ddd;
}

.career-list time,
.career-list span {
  padding: 14px 22px;
}

.career-list time {
  background: var(--pale);
}

.qualification-list,
.registration-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-list {
  columns: 2;
  column-gap: 48px;
}

.qualification-list li,
.registration-list li {
  margin-bottom: 6px;
}

.qualification-list li::before,
.registration-list li::before {
  margin-right: 9px;
  color: var(--green);
  content: "●";
  font-size: 8px;
}

.subsection-heading {
  margin: 55px 0 20px;
  color: var(--green);
  font-size: 22px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 334px);
  gap: 29px;
  margin-top: 56px;
}

.mission-card {
  height: 246px;
  padding: 45px 27px 30px;
  border-radius: 10px;
  background: var(--cream);
  text-align: center;
}

.mission-card > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.mission-card h3 {
  margin: 12px 0 13px;
  font-size: 18px;
  line-height: 30px;
}

.mission-card p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}

body[data-page="company"] .company-message {
  height: 810px;
  padding: 91px 0 0;
}

body[data-page="company"] .company-message .heading-center .section-heading {
  margin-top: 0;
}

body[data-page="company"] .company-message .heading-center .section-heading::after,
body[data-page="company"] .company-career .heading-center .section-heading::after,
body[data-page="company"] .company-profile-section .heading-center .section-heading::after,
body[data-page="company"] .company-mission .heading-center .section-heading::after {
  display: none;
}

body[data-page="company"] .company-message .profile-grid {
  margin-top: 68px;
}

body[data-page="company"] .company-career {
  height: 560px;
  padding: 26px 0 0;
}

body[data-page="company"] .company-career .career-list {
  margin-top: 59px;
}

body[data-page="company"] .company-profile-section {
  height: 1000px;
  padding: 64px 0 0;
}

body[data-page="company"] .company-profile-section .company-table {
  margin-top: 60px;
}

body[data-page="company"] .company-profile-section .company-table th {
  width: 200px;
}

.qualification-columns {
  columns: 2;
  column-gap: 45px;
}

body[data-page="company"] .company-mission {
  height: 554.5px;
  padding: 57px 0 0;
}

body[data-page="company"] .company-mission .mission-grid {
  margin-top: 52px;
}

/* Reissue */
.reissue-downloads {
  margin-top: 45px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 83px;
  padding: 18px 22px;
  color: var(--green);
  border-bottom: 1px solid #d5d5d5;
}

.download-item:hover {
  background: var(--pale);
}

.download-item strong,
.download-item small {
  display: block;
}

.download-item strong {
  font-size: 18px;
}

.download-item small {
  margin-top: 2px;
  color: var(--ink);
  font-size: 14px;
}

.download-label {
  flex: 0 0 auto;
  padding: 5px 12px;
  color: #fff;
  border-radius: 5px;
  background: var(--green);
  font-size: 12px;
}

.reissue-guide {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid #d5d5d5;
}

.reissue-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 28px 30px;
  border-bottom: 1px solid #d5d5d5;
  background: linear-gradient(90deg, var(--pale) 0 200px, #fff 200px);
}

.guide-number {
  display: none;
}

.reissue-card h3 {
  grid-row: 1 / 10;
  margin: 0;
  padding-right: 32px;
  font-size: 16px;
  line-height: 27px;
}

.reissue-card p,
.reissue-card ol,
.reissue-card small {
  grid-column: 2;
  margin: 0 0 8px 30px;
  font-size: 16px;
  line-height: 27px;
}

body[data-page="reissue"] .reissue-main {
  height: 2078.5px;
  padding-top: 91px;
  background: #fff;
}

.reissue-inner {
  width: min(calc(100% - 40px), 896px);
  margin-inline: auto;
}

.reissue-download-heading .section-heading,
.reissue-guide-heading .section-heading {
  margin-top: 0;
}

.reissue-download-heading > p:last-child,
.reissue-guide-heading > p:last-child {
  font-size: 20px;
  line-height: 35px;
}

.reissue-downloads {
  margin-top: 36px;
}

.reissue-download-entry {
  padding: 0;
}

.reissue-download-entry p {
  margin: 0;
  font-size: 20px;
  line-height: 35px;
}

.reissue-download-entry a {
  display: inline-block;
  margin-top: 2px;
  color: var(--green);
  font-size: 18px;
  line-height: 30px;
  text-decoration: underline;
}

.reissue-download-entry + .reissue-download-entry {
  margin-top: 21px;
}

.reissue-guide-heading {
  margin-top: 85px;
}

.reissue-guide-heading > p:last-child {
  margin-top: 25px;
  font-size: 16px;
  line-height: 27px;
}

.reissue-table {
  width: 896px;
  max-width: 100%;
  margin-top: 60px;
  border-top: 1px solid #d5d5d5;
}

.reissue-table-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #d5d5d5;
}

.reissue-table-row:nth-child(1) {
  height: 191.5px;
}

.reissue-table-row:nth-child(2) {
  height: 249px;
}

.reissue-table-row:nth-child(3) {
  height: 332.8px;
}

.reissue-table-row h3 {
  margin: 0;
  padding: 23px 22px;
  background: var(--pale);
  font-size: 16px;
  line-height: 27px;
}

.reissue-table-row > div {
  padding: 19px 30px;
  background: #fff;
}

.reissue-table-row p {
  margin: 0 0 13px;
  font-size: 16px;
  line-height: 27px;
}

.reissue-card ol {
  padding-left: 22px;
}

/* News, privacy and utility pages */
.news-index-list {
  display: grid;
  gap: 16px;
}

.news-filter-buttons {
  margin-bottom: 34px;
}

.news-index-list .news-item {
  min-height: 100px;
}

.news-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.news-filter button {
  min-width: 150px;
  height: 46px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 23px;
  background: #fff;
  cursor: pointer;
}

.news-filter button.is-active {
  color: #fff;
  background: var(--green);
}

.article-shell,
.privacy-content {
  width: min(calc(100% - 40px), 912px);
  margin-inline: auto;
}

.article-header {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ddd;
}

.article-header h1 {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.5;
}

.article-body h2,
.privacy-content h2 {
  margin: 48px 0 18px;
  color: var(--green);
  font-size: 26px;
}

.article-body h3,
.privacy-content h3 {
  margin: 34px 0 12px;
  font-size: 20px;
}

.error-page {
  display: grid;
  min-height: 560px;
  padding: 80px 20px;
  place-items: center;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  color: var(--green);
  font-size: 80px;
  line-height: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.page-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: var(--green);
  box-shadow: 0 3px 12px rgb(0 0 0 / 20%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .2s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Exact common contact/footer component: 656.5 + 400 */
.contact-band {
  height: 656.5px;
  padding-top: 75px;
  color: #fff;
  background: var(--green);
  text-align: center;
}

.contact-band .eyebrow {
  color: var(--yellow);
}

.contact-band .section-heading {
  margin-top: 12px;
}

.contact-band .section-heading::after {
  background: var(--yellow);
}

.contact-band > .container > p:not(.eyebrow):not(.center-action) {
  margin: 25px 0 0;
  font-size: 20px;
  line-height: 35px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 334px);
  gap: 29px;
  margin-top: 42px;
}

.contact-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 246px;
  padding: 22px;
  color: var(--ink);
  border-radius: 10px;
  background: #fff;
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  place-items: center;
  font-size: 27px;
  line-height: 1;
}

.contact-card strong {
  font-size: 18px;
  line-height: 30px;
}

.contact-card a,
.contact-card .emphasis {
  margin-top: 4px;
  color: var(--green);
  font-size: 24px;
  line-height: 36px;
}

.contact-card .emphasis {
  text-decoration: underline;
}

.contact-card small {
  margin-top: 6px;
  font-size: 14px;
}

.contact-band .center-action {
  margin-top: 30px;
}

.site-footer {
  height: 400px;
  padding-top: 75px;
  color: #fff;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 65px;
}

.footer-logo {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 700;
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 14px;
  line-height: 30px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 18px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #fff;
  border-radius: 50%;
  content: "›";
  place-items: center;
  background: var(--green);
  font-size: 13px;
  line-height: 18px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 50%);
  font-size: 10px;
  text-align: center;
}

/* TOP desktop fidelity pass: Adobe XD TOP artboard (1280px) is the source of truth. */
@media (min-width: 821px) {
  body[data-page="home"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="home"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="home"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="home"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="home"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="home"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="home"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="home"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="home"] .heading-center .section-heading::after {
    width: 120px;
    height: 5px;
  }

  body[data-page="home"] .top-hero {
    isolation: isolate;
  }

  body[data-page="home"] .hero-xd-layer {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    width: 1280px;
    height: 670px;
    max-width: none;
    transform: translateX(-50%);
  }

  body[data-page="home"] .hero-copy {
    top: 249px;
    left: calc(50% - 515px);
  }

  body[data-page="home"] .hero-art-label {
    position: absolute;
    top: 285px;
    left: calc(50% + 189px);
    display: grid;
    width: 166px;
    height: 41px;
    margin: 0;
    color: #fff;
    place-items: center;
    font-size: 21px;
    font-weight: 700;
    line-height: 35px;
  }

  body[data-page="home"] .hero-side-links {
    top: 73.5px;
    width: 133px;
    height: 520.8px;
    gap: 15px;
    padding: 22px 19px 19px 22px;
    border-radius: 20px 0 0 20px;
    background: #fff;
    box-shadow: 0 3px 12px rgb(0 0 0 / 10%);
  }

  body[data-page="home"] .hero-side-link {
    position: relative;
    width: 92px;
    height: 232px;
    padding: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffa732, #fb8b02);
    font-size: 18px;
    line-height: 20px;
    writing-mode: horizontal-tb;
  }

  body[data-page="home"] .hero-side-reissue {
    background: linear-gradient(180deg, #fe6169, #f44344);
  }

  body[data-page="home"] .hero-side-link > span:last-child {
    position: absolute;
    top: 87px;
    left: 34px;
    letter-spacing: .06em;
    writing-mode: vertical-rl;
  }

  body[data-page="home"] .hero-side-icon {
    position: absolute;
    top: 24px;
    left: 29px;
    width: 34px;
    height: 42px;
    border: 3px solid #fff;
    border-radius: 3px;
  }

  body[data-page="home"] .hero-side-course .hero-side-icon::before,
  body[data-page="home"] .hero-side-course .hero-side-icon::after {
    position: absolute;
    right: 6px;
    left: 6px;
    height: 3px;
    content: "";
    background: #fff;
    box-shadow: 0 8px 0 #fff, 0 16px 0 #fff;
  }

  body[data-page="home"] .hero-side-course .hero-side-icon::before {
    top: 8px;
  }

  body[data-page="home"] .hero-side-reissue .hero-side-icon {
    border-radius: 6px;
  }

  body[data-page="home"] .hero-side-reissue .hero-side-icon::before {
    position: absolute;
    top: 8px;
    left: 7px;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
  }

  body[data-page="home"] .hero-side-reissue .hero-side-icon::after {
    position: absolute;
    right: 6px;
    bottom: 6px;
    left: 6px;
    height: 3px;
    content: "";
    background: #fff;
    box-shadow: 0 -7px 0 #fff;
  }

  body[data-page="home"] .scroll-cue {
    bottom: 5px;
    left: calc(50% - 586px);
    font-size: 18px;
    line-height: 24px;
    writing-mode: vertical-rl;
  }

  body[data-page="home"] .scroll-cue::before {
    display: none;
  }

  body[data-page="home"] .home-news .news-list {
    margin-top: 46.5px;
  }

  body[data-page="home"] .news-item {
    position: relative;
    display: block;
    min-height: 120px;
    padding: 0;
    border-color: #dfe0e0;
  }

  body[data-page="home"] .news-date {
    position: absolute;
    top: 26px;
    left: 43px;
    line-height: 28px;
  }

  body[data-page="home"] .news-title {
    position: absolute;
    top: 60px;
    left: 43px;
    font-size: 18px;
    line-height: 30px;
  }

  body[data-page="home"] .news-arrow {
    position: absolute;
    top: 50%;
    right: 44px;
    width: 11px;
    height: 11px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    transform: translateY(-50%) rotate(45deg);
  }

  body[data-page="home"] .concerns-grid {
    margin-top: 75px;
  }

  body[data-page="home"] .concern-card {
    position: relative;
    background-color: var(--cream);
    background-position: center;
    background-size: 100% 100%;
  }

  body[data-page="home"] .concern-primary {
    background-image: url("../images/xd-concern-primary.png");
  }

  body[data-page="home"] .concern-law {
    background-image: url("../images/xd-concern-law.png");
  }

  body[data-page="home"] .concern-system {
    background-image: url("../images/xd-concern-system.png");
  }

  body[data-page="home"] .concern-card h3,
  body[data-page="home"] .concern-card p,
  body[data-page="home"] .concern-placeholder {
    position: absolute;
    z-index: 1;
    margin: 0;
    text-align: center;
  }

  body[data-page="home"] .concern-card h3 {
    font-size: 24px;
    line-height: 40px;
  }

  body[data-page="home"] .concern-card h3 em {
    color: var(--green);
    font-style: normal;
  }

  body[data-page="home"] .concern-card p {
    font-size: 18px;
    line-height: 30px;
  }

  body[data-page="home"] .concern-placeholder {
    display: grid;
    width: 166px;
    height: 41px;
    color: #fff;
    place-items: center;
    font-size: 21px;
    font-weight: 700;
    line-height: 35px;
  }

  body[data-page="home"] .concern-primary h3 {
    top: 54px;
    left: 0;
    width: 500px;
  }

  body[data-page="home"] .concern-primary .concern-placeholder {
    top: 229px;
    left: 167px;
  }

  body[data-page="home"] .concern-primary p {
    top: 402px;
    left: 39px;
    width: 422px;
  }

  body[data-page="home"] .concern-law h3,
  body[data-page="home"] .concern-system h3 {
    left: 14px;
    width: 275px;
  }

  body[data-page="home"] .concern-law h3 {
    top: 38px;
  }

  body[data-page="home"] .concern-law .concern-placeholder {
    top: 95px;
    left: 294px;
  }

  body[data-page="home"] .concern-law p {
    top: 130px;
    left: 14px;
    width: 275px;
  }

  body[data-page="home"] .concern-system h3 {
    top: 31.5px;
  }

  body[data-page="home"] .concern-system .concern-placeholder {
    top: 90px;
    left: 294px;
  }

  body[data-page="home"] .concern-system p {
    top: 119.5px;
    left: 14px;
    width: 275px;
  }

  body[data-page="home"] .services-grid {
    margin-top: 53px;
  }

  body[data-page="home"] .strength-grid {
    margin-top: 57.5px;
  }

  body[data-page="home"] .strength-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="home"] .strength-icon {
    position: absolute;
    top: 11.5px;
    left: 127px;
    width: 80px;
    height: 80px;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  body[data-page="home"] .strength-card h3 {
    position: absolute;
    top: 103px;
    left: 28px;
    width: 278px;
    margin: 0;
    font-size: 18px;
    line-height: 30px;
  }

  body[data-page="home"] .strength-card p {
    position: absolute;
    top: 146px;
    left: 0;
    width: 334px;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="home"] .flow-list {
    margin-top: 63.1px;
  }

  body[data-page="home"] .flow-item {
    border-radius: 80px;
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="home"] .flow-number {
    border-radius: 80px;
  }

  body[data-page="home"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="home"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="home"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="home"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="home"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="home"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="home"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="home"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="home"] .contact-card a,
  body[data-page="home"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="home"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="home"] .contact-card:nth-child(2) a,
  body[data-page="home"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="home"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="home"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="home"] .site-footer {
    padding-top: 80px;
  }

  body[data-page="home"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="home"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="home"] .site-footer p,
  body[data-page="home"] .site-footer li,
  body[data-page="home"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="home"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="home"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  /* Contact desktop fidelity pass: the supplied 1280px XD export is authoritative. */
  body[data-page="contact"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="contact"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="contact"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="contact"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="contact"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="contact"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="contact"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="contact"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="contact"] .page-hero-image img {
    object-position: 89% center;
  }

  body[data-page="contact"] main > .section {
    padding-top: 70px;
  }

  body[data-page="contact"] main > .section > .narrow > .heading-center {
    margin-bottom: 57px;
  }

  body[data-page="contact"] .heading-center .section-heading {
    margin-top: 0;
  }

  body[data-page="contact"] .heading-center .section-heading::after {
    width: 120px;
    height: 5px;
  }

  body[data-page="contact"] .inquiry-methods {
    position: relative;
    height: 252px;
    margin: 0 0 38px;
  }

  body[data-page="contact"] .inquiry-method {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    min-height: 0;
    border: 0;
  }

  body[data-page="contact"] .inquiry-method:first-child {
    top: 0;
    height: 126px;
  }

  body[data-page="contact"] .inquiry-method:first-child::after {
    position: absolute;
    top: 122px;
    left: 0;
    width: 912px;
    height: 1px;
    content: "";
    background: var(--green);
  }

  body[data-page="contact"] .inquiry-method:nth-child(2) {
    top: 126px;
    height: 126px;
  }

  body[data-page="contact"] .inquiry-icon-img {
    position: absolute;
    left: -12px;
    width: 80px;
    height: 80px;
  }

  body[data-page="contact"] .inquiry-method:first-child .inquiry-icon-img {
    top: 0;
  }

  body[data-page="contact"] .inquiry-method:nth-child(2) .inquiry-icon-img {
    top: 32px;
  }

  body[data-page="contact"] .inquiry-method > div {
    position: absolute;
    inset: 0;
    display: block;
  }

  body[data-page="contact"] .inquiry-method h3,
  body[data-page="contact"] .inquiry-method a,
  body[data-page="contact"] .inquiry-method p {
    position: absolute;
    margin: 0;
  }

  body[data-page="contact"] .inquiry-method h3 {
    left: 79px;
    font-size: 24px;
    line-height: 40px;
  }

  body[data-page="contact"] .inquiry-method:first-child h3 {
    top: 29px;
    width: 288px;
  }

  body[data-page="contact"] .inquiry-method:first-child a {
    top: 8px;
    left: 441px;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    width: 471px;
    height: 53px;
    color: var(--green);
    font-size: 46px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 53px;
    text-align: right;
    white-space: nowrap;
  }

  body[data-page="contact"] .inquiry-method .tel-prefix {
    color: #231815;
    font-size: 22px;
    letter-spacing: 0;
  }

  body[data-page="contact"] .inquiry-method:first-child p {
    top: 71px;
    left: 571px;
    width: 341px;
    font-size: 16px;
    line-height: 28px;
    text-align: right;
  }

  body[data-page="contact"] .inquiry-method:nth-child(2) h3 {
    top: 58px;
    width: 407px;
  }

  body[data-page="contact"] .inquiry-method:nth-child(2) p {
    top: 60px;
    left: 571px;
    width: 341px;
    font-size: 16px;
    line-height: 28px;
    text-align: right;
  }

  body[data-page="contact"] .form-field input:not([type="radio"]):not([type="checkbox"]),
  body[data-page="contact"] .form-field select,
  body[data-page="contact"] .form-field textarea {
    border-color: #888;
  }

  body[data-page="contact"] .form-field input::placeholder,
  body[data-page="contact"] .form-field textarea::placeholder {
    color: #888;
    opacity: 1;
  }

  body[data-page="contact"] .form-field select:required:invalid {
    color: #888;
  }

  body[data-page="contact"] .form-field:nth-child(6) {
    transform: translateY(4px);
  }

  body[data-page="contact"] .form-consent {
    margin-top: 45px;
  }

  body[data-page="contact"] .form-submit {
    margin-top: 44px;
  }

  body[data-page="contact"] .form-submit .btn {
    border: 0;
    border-radius: 24px;
  }

  body[data-page="contact"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="contact"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="contact"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="contact"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="contact"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="contact"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="contact"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="contact"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="contact"] .contact-card a,
  body[data-page="contact"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="contact"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="contact"] .contact-card:nth-child(2) a,
  body[data-page="contact"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="contact"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="contact"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="contact"] .site-footer {
    padding-top: 80px;
  }

  body[data-page="contact"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="contact"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="contact"] .site-footer p,
  body[data-page="contact"] .site-footer li,
  body[data-page="contact"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="contact"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="contact"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="contact"] .page-top {
    display: none;
  }

  /* Consulting desktop fidelity pass: the supplied 1280px XD export is authoritative. */
  body[data-page="consulting"] .site-shell {
    padding-bottom: 117px;
  }

  body[data-page="consulting"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="consulting"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="consulting"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="consulting"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="consulting"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="consulting"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="consulting"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="consulting"] .global-nav > a.is-current::after {
    opacity: 0;
  }

  body[data-page="consulting"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="consulting"] .page-hero-image img {
    object-position: 89% center;
  }

  body[data-page="consulting"] .page-hero {
    grid-template-columns: 41% 59%;
  }

  body[data-page="consulting"] .consulting-form-section {
    height: 1746.5px;
    padding-top: 69px;
  }

  body[data-page="consulting"] .consulting-intro {
    position: relative;
    height: 223px;
    margin-bottom: 65px;
  }

  body[data-page="consulting"] .consulting-intro .section-heading {
    margin-top: 0;
  }

  body[data-page="consulting"] .consulting-intro .section-heading::after {
    width: 120px;
    height: 5px;
  }

  body[data-page="consulting"] .consulting-intro > p {
    position: absolute;
    top: 118px;
    left: 50%;
    width: 733px;
    margin: 0;
    line-height: 35px;
    transform: translateX(-50%);
  }

  body[data-page="consulting"] .form-field input:not([type="radio"]):not([type="checkbox"]),
  body[data-page="consulting"] .form-field select,
  body[data-page="consulting"] .form-field textarea {
    border-color: #888;
  }

  body[data-page="consulting"] .form-field input::placeholder,
  body[data-page="consulting"] .form-field textarea::placeholder {
    color: #888;
    opacity: 1;
  }

  body[data-page="consulting"] .form-field:nth-child(7) {
    transform: translateY(4px);
  }

  body[data-page="consulting"] .form-consent {
    margin-top: 42px;
  }

  body[data-page="consulting"] .form-submit .btn {
    border: 0;
    border-radius: 24px;
  }

  body[data-page="consulting"] .form-guidance {
    width: 733px;
    margin: 42px auto 0;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
  }

  body[data-page="consulting"] .form-guidance p {
    margin-bottom: 0;
  }

  body[data-page="consulting"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="consulting"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="consulting"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="consulting"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="consulting"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="consulting"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="consulting"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="consulting"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="consulting"] .contact-card a,
  body[data-page="consulting"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="consulting"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="consulting"] .contact-card:nth-child(2) a,
  body[data-page="consulting"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="consulting"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="consulting"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="consulting"] .site-footer {
    padding-top: 80px;
  }

  body[data-page="consulting"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="consulting"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="consulting"] .site-footer p,
  body[data-page="consulting"] .site-footer li,
  body[data-page="consulting"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="consulting"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="consulting"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="consulting"] .page-top {
    display: none;
  }

  /* Company desktop fidelity pass: the supplied 1280px XD export is authoritative. */
  body[data-page="company"] .site-shell {
    padding-bottom: 33px;
  }

  body[data-page="company"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="company"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="company"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="company"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="company"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="company"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="company"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="company"] .global-nav > a.is-current::after {
    opacity: 0;
  }

  body[data-page="company"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="company"] .page-hero {
    grid-template-columns: 41% 59%;
  }

  body[data-page="company"] .page-hero-image img {
    object-position: center;
  }

  body[data-page="company"] .company-message,
  body[data-page="company"] .company-career,
  body[data-page="company"] .company-profile-section,
  body[data-page="company"] .company-mission {
    overflow: visible;
  }

  body[data-page="company"] .company-message .heading-center,
  body[data-page="company"] .company-career .heading-center,
  body[data-page="company"] .company-profile-section .heading-center,
  body[data-page="company"] .company-mission .heading-center {
    position: relative;
  }

  body[data-page="company"] .company-message .heading-center .section-heading::after,
  body[data-page="company"] .company-career .heading-center .section-heading::after,
  body[data-page="company"] .company-profile-section .heading-center .section-heading::after,
  body[data-page="company"] .company-mission .heading-center .section-heading::after {
    position: absolute;
    top: 72px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    margin: 0;
    content: "";
    background: var(--green);
    transform: translateX(-50%);
  }

  body[data-page="company"] .company-message .profile-grid {
    margin-top: 95px;
  }

  body[data-page="company"] .profile-copy h2 {
    margin-bottom: 31px;
  }

  body[data-page="company"] .profile-copy p {
    margin-bottom: 0;
  }

  body[data-page="company"] .photo-frame[data-placeholder]::after {
    top: 204px;
    right: auto;
    left: 151px;
    display: grid;
    width: 166px;
    height: 41px;
    padding: 0;
    place-items: center;
    font-size: 21px;
    line-height: 35px;
    transform: none;
  }

  body[data-page="company"] .signature {
    margin-top: 18px;
    font-size: 24px !important;
    line-height: 35px !important;
    text-align: center;
  }

  body[data-page="company"] .narrow {
    width: 896px;
  }

  body[data-page="company"] .company-career .career-list {
    margin-top: 69.3px;
  }

  body[data-page="company"] .career-list li {
    grid-template-columns: 200px 696px;
    height: 60px;
    min-height: 60px;
  }

  body[data-page="company"] .career-list time {
    padding-left: 22px;
  }

  body[data-page="company"] .career-list span {
    padding-left: 29px;
  }

  body[data-page="company"] .company-profile-section .company-table {
    margin-top: 70px;
  }

  body[data-page="company"] .company-table th,
  body[data-page="company"] .company-table td {
    border-right: 0;
    border-left: 0;
  }

  body[data-page="company"] .company-table th {
    width: 200px;
    padding-left: 22px;
  }

  body[data-page="company"] .company-table td {
    padding-left: 29px;
  }

  body[data-page="company"] .company-table tr:nth-child(-n+5) {
    height: 60px;
  }

  body[data-page="company"] .company-table tr:nth-child(6) {
    height: 115px;
  }

  body[data-page="company"] .company-table tr:nth-child(7) {
    height: 255px;
  }

  body[data-page="company"] .company-table tr:nth-child(8) {
    height: 145px;
  }

  body[data-page="company"] .qualification-columns {
    height: 216px;
    columns: 2;
    column-fill: auto;
    column-gap: 45px;
  }

  body[data-page="company"] .company-mission {
    height: 521.5px;
  }

  body[data-page="company"] .company-mission .mission-grid {
    margin-top: 69.5px;
  }

  body[data-page="company"] .mission-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="company"] .mission-icon {
    position: absolute;
    top: 11.5px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="company"] .mission-card h3 {
    position: absolute;
    top: 103px;
    left: 28px;
    width: 278px;
    margin: 0;
  }

  body[data-page="company"] .mission-card p {
    position: absolute;
    top: 146px;
    left: 0;
    width: 334px;
    margin: 0;
  }

  body[data-page="company"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="company"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="company"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="company"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="company"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="company"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="company"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="company"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="company"] .contact-card a,
  body[data-page="company"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="company"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="company"] .contact-card:nth-child(2) a,
  body[data-page="company"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="company"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="company"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="company"] .site-footer {
    padding-top: 80px;
  }

  body[data-page="company"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="company"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="company"] .site-footer p,
  body[data-page="company"] .site-footer li,
  body[data-page="company"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="company"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="company"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="company"] .page-top {
    display: none;
  }

  /* Course detail A desktop fidelity pass: Adobe XD 1280 x 6217 is authoritative. */
  body[data-page="course-detail-a"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="course-detail-a"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="course-detail-a"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="course-detail-a"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="course-detail-a"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="course-detail-a"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="course-detail-a"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="course-detail-a"] .global-nav > a.is-current::after {
    opacity: 0;
  }

  body[data-page="course-detail-a"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="course-detail-a"] .page-hero {
    grid-template-columns: 41% 59%;
  }

  body[data-page="course-detail-a"] .page-hero-image img {
    object-position: center;
  }

  body[data-page="course-detail-a"] .course-overview {
    height: 1208.5px;
    background: linear-gradient(to bottom, var(--green) 0 408.5px, var(--pale) 408.5px 100%);
  }

  body[data-page="course-detail-a"] .course-overview .heading-center .section-heading::after {
    width: 120px;
    height: 5px;
  }

  body[data-page="course-detail-a"] .course-category {
    border: 1px solid #fff;
    background: transparent;
  }

  body[data-page="course-detail-a"] .course-overview .course-summary-grid {
    margin-top: 39px;
  }

  body[data-page="course-detail-a"] .price-card,
  body[data-page="course-detail-a"] .date-card {
    position: relative;
    display: block;
    padding: 0;
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
    text-align: left;
  }

  body[data-page="course-detail-a"] .price-card::before,
  body[data-page="course-detail-a"] .date-card::before {
    position: absolute;
    top: 36px;
    left: 32px;
    display: grid;
    width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 50%;
    place-items: center;
    background: var(--green);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }

  body[data-page="course-detail-a"] .price-card::before {
    content: "¥";
  }

  body[data-page="course-detail-a"] .date-card::before {
    color: var(--green);
    border: 2px solid var(--green);
    content: "◷";
    background: #fff;
    font-size: 30px;
  }

  body[data-page="course-detail-a"] .price-card strong,
  body[data-page="course-detail-a"] .date-card strong {
    position: absolute;
    top: 39.9px;
    left: 102.6px;
  }

  body[data-page="course-detail-a"] .price-card .price {
    position: absolute;
    top: 70px;
    left: 102.6px;
    white-space: nowrap;
  }

  body[data-page="course-detail-a"] .date-card p {
    position: absolute;
    top: 80px;
    left: 101.6px;
    margin: 0;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .schedule-card {
    margin-top: 49px;
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="course-detail-a"] .schedule-card h3 {
    position: relative;
    padding-left: 58px;
  }

  body[data-page="course-detail-a"] .schedule-card h3::before {
    position: absolute;
    top: -9px;
    left: -12px;
    width: 56px;
    height: 56px;
    content: "";
    background: url("../images/xd-icon-calendar.svg") center / contain no-repeat;
  }

  body[data-page="course-detail-a"] .schedule-card .schedule-list {
    margin-top: 32px;
  }

  body[data-page="course-detail-a"] .schedule-card .schedule-row {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="course-detail-a"] .schedule-card .schedule-row::before {
    position: absolute;
    top: 59px;
    left: 29px;
    width: 40px;
    height: 40px;
    content: "";
    background: url("../images/xd-icon-pin.png") center / contain no-repeat;
  }

  body[data-page="course-detail-a"] .schedule-card .schedule-row strong {
    position: absolute;
    top: 20px;
    left: 39.9px;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .schedule-card .schedule-row > span:not(.status) {
    position: absolute;
    top: 63px;
    left: 78.1px;
    font-size: 18px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .schedule-card .status {
    position: absolute;
    top: 20px;
    left: 759px;
    display: grid;
    width: 200px;
    height: 80px;
    border-left: 1px solid #ddd;
    place-items: center;
  }

  body[data-page="course-detail-a"] .course-downloads {
    height: 373.5px;
    padding-top: 90px;
  }

  body[data-page="course-detail-a"] .course-downloads h2 {
    margin-bottom: 33px;
  }

  body[data-page="course-detail-a"] .course-downloads .course-note {
    display: none;
  }

  body[data-page="course-detail-a"] .application-section {
    height: 2985.5px;
    padding: 0;
  }

  body[data-page="course-detail-a"] .application-section > .narrow {
    position: relative;
    height: 100%;
  }

  body[data-page="course-detail-a"] .application-section > .narrow > .heading-center {
    position: absolute;
    top: 89.3px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-a"] .application-section > .narrow > .heading-center .section-heading {
    margin: 0;
  }

  body[data-page="course-detail-a"] .application-section > .narrow > .heading-center .section-heading::after {
    position: absolute;
    top: 72px;
    left: 50%;
    width: 120px;
    height: 5px;
    margin: 0;
    transform: translateX(-50%);
  }

  body[data-page="course-detail-a"] .application-section > .narrow > .heading-center > p {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    margin: 0;
  }

  body[data-page="course-detail-a"] .course-form-a {
    position: absolute;
    inset: 0;
    margin: 0;
  }

  body[data-page="course-detail-a"] .course-form-block,
  body[data-page="course-detail-a"] .lunch-note,
  body[data-page="course-detail-a"] .personal-note,
  body[data-page="course-detail-a"] .application-submit {
    position: absolute;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-a"] .form-section-title {
    margin: 0;
    text-align: left;
  }

  body[data-page="course-detail-a"] .attendance-block {
    top: 282.3px;
    height: 150px;
  }

  body[data-page="course-detail-a"] .attendance-options {
    position: absolute;
    top: 50.7px;
    left: 38px;
    display: flex;
    gap: 102px;
    height: 28px;
  }

  body[data-page="course-detail-a"] .attendance-options label,
  body[data-page="course-detail-a"] .payment-block label {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] input[type="radio"] {
    width: 28px;
    height: 28px;
    margin: 0;
    accent-color: var(--green);
  }

  body[data-page="course-detail-a"] .lunch-note {
    top: 424.9px;
    left: 142px;
    width: 470px;
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }

  body[data-page="course-detail-a"] .participant-block {
    top: 446.9px;
    height: 775px;
  }

  body[data-page="course-detail-a"] .participant-fields-top {
    position: absolute;
    top: 39px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-a"] .participant-fields-bottom {
    position: absolute;
    top: 593px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-a"] .identity-note {
    position: absolute;
    top: 514.6px;
    left: 0;
    width: 770px;
    margin: 0;
    font-size: 16px;
    line-height: 25px;
  }

  body[data-page="course-detail-a"] .personal-note {
    top: 1223.9px;
    left: 142px;
    width: 470px;
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }

  body[data-page="course-detail-a"] .business-block {
    top: 1245.9px;
    height: 970px;
  }

  body[data-page="course-detail-a"] .business-fields {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-a"] .form-grid {
    gap: 40px 24px;
  }

  body[data-page="course-detail-a"] .form-field > label {
    height: 52px;
    min-height: 52px;
  }

  body[data-page="course-detail-a"] .form-field input:not([type="radio"]):not([type="checkbox"]),
  body[data-page="course-detail-a"] .form-field textarea,
  body[data-page="course-detail-a"] .payment-date {
    border-color: #888;
  }

  body[data-page="course-detail-a"] .form-field input::placeholder,
  body[data-page="course-detail-a"] .payment-date::placeholder {
    color: #888;
    opacity: 1;
  }

  body[data-page="course-detail-a"] .payment-block {
    top: 2302.1px;
    height: 160px;
  }

  body[data-page="course-detail-a"] .payment-block .payment-options {
    position: absolute;
    top: 27.6px;
    left: 38px;
    display: flex;
    width: 717px;
    height: 70px;
    min-height: 70px;
    gap: 22px;
    padding: 0;
    background: transparent;
  }

  body[data-page="course-detail-a"] .payment-block .payment-options label:first-child {
    width: 142px;
  }

  body[data-page="course-detail-a"] .payment-date {
    width: 229px;
    height: 70px;
    padding: 0 29px;
    border: 1px solid #888;
    border-radius: 5px;
    font-size: 18px;
  }

  body[data-page="course-detail-a"] .payment-block > p {
    position: absolute;
    top: 103.6px;
    left: 38px;
    margin: 0;
    color: var(--green);
    font-size: 15px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .qualification-block {
    top: 2501.9px;
    height: 330px;
  }

  body[data-page="course-detail-a"] .qualification-required {
    position: absolute;
    top: -20.5px;
    left: 265.5px;
    width: 529px;
    margin: 0;
    color: var(--green);
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .qualification-block .download-link {
    position: absolute;
    top: 36.8px;
    left: 234px;
    width: 444px;
    height: 70px;
  }

  body[data-page="course-detail-a"] .qualification-guidance {
    position: absolute;
    top: 143px;
    left: 0;
    display: grid;
    width: 912px;
    height: 49px;
    margin: 0;
    color: var(--green);
    place-items: center;
    border: 1px solid var(--green);
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .postal-address {
    position: absolute;
    top: 188.2px;
    left: 0;
    width: 912px;
    margin: 0;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
  }

  body[data-page="course-detail-a"] .application-submit {
    top: 2822.1px;
    margin: 0;
  }

  body[data-page="course-detail-a"] .application-submit .btn {
    width: 444px;
    height: 70px;
    color: #fff;
    border: 0;
    border-radius: 5px;
    background: #ff9505;
    font-size: 20px;
  }

  body[data-page="course-detail-a"] .course-back-link {
    display: grid;
    height: 150px;
    place-items: center;
    background: var(--pale);
  }

  body[data-page="course-detail-a"] .course-back-link .btn {
    width: 350px;
    height: 50px;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 24px;
    background: #fff;
  }

  body[data-page="course-detail-a"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="course-detail-a"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="course-detail-a"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="course-detail-a"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="course-detail-a"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="course-detail-a"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="course-detail-a"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .contact-card a,
  body[data-page="course-detail-a"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="course-detail-a"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="course-detail-a"] .contact-card:nth-child(2) a,
  body[data-page="course-detail-a"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="course-detail-a"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="course-detail-a"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="course-detail-a"] .site-footer {
    height: 363px;
    overflow: hidden;
    padding-top: 80px;
  }

  body[data-page="course-detail-a"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="course-detail-a"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="course-detail-a"] .site-footer p,
  body[data-page="course-detail-a"] .site-footer li,
  body[data-page="course-detail-a"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="course-detail-a"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="course-detail-a"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="course-detail-a"] .page-top {
    display: none;
  }

  /* Course detail B desktop fidelity pass: Adobe XD 1280 x 5873 is authoritative. */
  body[data-page="course-detail-b"] .site-shell {
    padding-bottom: 103px;
  }

  body[data-page="course-detail-b"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="course-detail-b"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="course-detail-b"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="course-detail-b"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="course-detail-b"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="course-detail-b"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="course-detail-b"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="course-detail-b"] .global-nav > a.is-current::after {
    opacity: 0;
  }

  body[data-page="course-detail-b"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="course-detail-b"] .page-hero {
    grid-template-columns: 41% 59%;
  }

  body[data-page="course-detail-b"] .page-hero-image img {
    object-position: center;
  }

  body[data-page="course-detail-b"] .course-overview {
    height: 1208.5px;
    background: linear-gradient(to bottom, var(--green) 0 408.5px, var(--pale) 408.5px 100%);
  }

  body[data-page="course-detail-b"] .course-category {
    border: 1px solid #fff;
    background: transparent;
  }

  body[data-page="course-detail-b"] .course-overview .heading-center .section-heading::after {
    width: 120px;
    height: 5px;
  }

  body[data-page="course-detail-b"] .course-overview .course-summary-grid {
    margin-top: 39px;
  }

  body[data-page="course-detail-b"] .price-card,
  body[data-page="course-detail-b"] .date-card {
    position: relative;
    display: block;
    padding: 0;
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
    text-align: left;
  }

  body[data-page="course-detail-b"] .price-card::before,
  body[data-page="course-detail-b"] .date-card::before {
    position: absolute;
    top: 36px;
    left: 32px;
    display: grid;
    width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 50%;
    place-items: center;
    background: var(--green);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
  }

  body[data-page="course-detail-b"] .price-card::before {
    content: "¥";
  }

  body[data-page="course-detail-b"] .date-card::before {
    color: var(--green);
    border: 2px solid var(--green);
    content: "◷";
    background: #fff;
    font-size: 30px;
  }

  body[data-page="course-detail-b"] .price-card strong,
  body[data-page="course-detail-b"] .date-card strong {
    position: absolute;
    top: 39.9px;
    left: 102.6px;
  }

  body[data-page="course-detail-b"] .price-card .price {
    position: absolute;
    top: 70px;
    left: 102.6px;
    white-space: nowrap;
  }

  body[data-page="course-detail-b"] .date-card p {
    position: absolute;
    top: 80px;
    left: 101.6px;
    margin: 0;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .schedule-card {
    margin-top: 49px;
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="course-detail-b"] .schedule-card h3 {
    position: relative;
    padding-left: 58px;
  }

  body[data-page="course-detail-b"] .schedule-card h3::before {
    position: absolute;
    top: -9px;
    left: -12px;
    width: 56px;
    height: 56px;
    content: "";
    background: url("../images/xd-icon-calendar.svg") center / contain no-repeat;
  }

  body[data-page="course-detail-b"] .schedule-card .schedule-list {
    margin-top: 32px;
  }

  body[data-page="course-detail-b"] .schedule-card .schedule-row {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="course-detail-b"] .schedule-card .schedule-row::before {
    position: absolute;
    top: 59px;
    left: 29px;
    width: 40px;
    height: 40px;
    content: "";
    background: url("../images/xd-icon-pin.png") center / contain no-repeat;
  }

  body[data-page="course-detail-b"] .schedule-card .schedule-row strong {
    position: absolute;
    top: 20px;
    left: 39.9px;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .schedule-card .schedule-row > span:not(.status) {
    position: absolute;
    top: 63px;
    left: 78.1px;
    font-size: 18px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .schedule-card .status {
    position: absolute;
    top: 20px;
    left: 759px;
    display: grid;
    width: 200px;
    height: 80px;
    border-left: 1px solid #ddd;
    place-items: center;
  }

  body[data-page="course-detail-b"] .course-downloads {
    height: 373.5px;
    padding-top: 90px;
  }

  body[data-page="course-detail-b"] .course-downloads h2 {
    margin-bottom: 33px;
  }

  body[data-page="course-detail-b"] .course-downloads .course-note {
    display: none;
  }

  body[data-page="course-detail-b"] .application-section {
    height: 2501.5px;
    padding: 0;
  }

  body[data-page="course-detail-b"] .application-section > .narrow {
    position: relative;
    height: 100%;
  }

  body[data-page="course-detail-b"] .application-section > .narrow > .heading-center {
    position: absolute;
    top: 92.6px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-b"] .application-section > .narrow > .heading-center .section-heading {
    margin: 0;
  }

  body[data-page="course-detail-b"] .application-section > .narrow > .heading-center .section-heading::after {
    position: absolute;
    top: 72px;
    left: 50%;
    width: 120px;
    height: 5px;
    margin: 0;
    transform: translateX(-50%);
  }

  body[data-page="course-detail-b"] .application-section > .narrow > .heading-center > p {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    margin: 0;
  }

  body[data-page="course-detail-b"] .course-form-b {
    position: absolute;
    inset: 0;
    margin: 0;
  }

  body[data-page="course-detail-b"] .course-form-block,
  body[data-page="course-detail-b"] .lunch-note,
  body[data-page="course-detail-b"] .personal-note,
  body[data-page="course-detail-b"] .application-submit {
    position: absolute;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-b"] .form-section-title {
    margin: 0;
    text-align: left;
  }

  body[data-page="course-detail-b"] .lunch-note {
    top: 310.5px;
    left: 142px;
    width: 470px;
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }

  body[data-page="course-detail-b"] .participant-block {
    top: 332.5px;
    height: 776px;
  }

  body[data-page="course-detail-b"] .participant-block > .form-section-title {
    margin-left: 51px;
  }

  body[data-page="course-detail-b"] .participant-fields-top {
    position: absolute;
    top: 39px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-b"] .participant-fields-top .form-field:nth-child(5),
  body[data-page="course-detail-b"] .participant-fields-top .form-field:nth-child(6) {
    transform: translateY(-5px);
  }

  body[data-page="course-detail-b"] .participant-fields-bottom {
    position: absolute;
    top: 571px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-b"] .identity-note {
    position: absolute;
    top: 500px;
    left: 0;
    width: 770px;
    margin: 0;
    font-size: 16px;
    line-height: 25px;
  }

  body[data-page="course-detail-b"] .personal-note {
    top: 1110.5px;
    left: 132px;
    width: 470px;
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }

  body[data-page="course-detail-b"] .business-block {
    top: 1134.5px;
    height: 930px;
  }

  body[data-page="course-detail-b"] .business-fields {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
  }

  body[data-page="course-detail-b"] .form-grid {
    gap: 40px 24px;
  }

  body[data-page="course-detail-b"] .form-field > label {
    height: 52px;
    min-height: 52px;
  }

  body[data-page="course-detail-b"] .form-field input:not([type="radio"]):not([type="checkbox"]),
  body[data-page="course-detail-b"] .form-field textarea,
  body[data-page="course-detail-b"] .payment-date {
    border-color: #888;
  }

  body[data-page="course-detail-b"] .form-field input::placeholder,
  body[data-page="course-detail-b"] .payment-date::placeholder {
    color: #888;
    opacity: 1;
  }

  body[data-page="course-detail-b"] .business-fields textarea {
    height: 121px;
  }

  body[data-page="course-detail-b"] .payment-block {
    top: 2111.9px;
    height: 160px;
  }

  body[data-page="course-detail-b"] .payment-block .payment-options {
    position: absolute;
    top: 27.6px;
    left: 38px;
    display: flex;
    width: 717px;
    height: 70px;
    min-height: 70px;
    gap: 22px;
    padding: 0;
    background: transparent;
  }

  body[data-page="course-detail-b"] .payment-block .payment-options label {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .payment-block .payment-options label:first-child {
    width: 142px;
  }

  body[data-page="course-detail-b"] input[type="radio"] {
    width: 28px;
    height: 28px;
    margin: 0;
    accent-color: var(--green);
  }

  body[data-page="course-detail-b"] .payment-date {
    width: 229px;
    height: 70px;
    padding: 0 29px;
    border: 1px solid #888;
    border-radius: 5px;
    font-size: 18px;
  }

  body[data-page="course-detail-b"] .payment-block > p {
    position: absolute;
    top: 103.8px;
    left: 38.5px;
    margin: 0;
    color: var(--green);
    font-size: 15px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .application-submit {
    top: 2309.1px;
    margin: 0;
  }

  body[data-page="course-detail-b"] .application-submit .btn {
    width: 444px;
    height: 70px;
    color: #fff;
    border: 0;
    border-radius: 5px;
    background: #ff9505;
    font-size: 20px;
    transform: translateX(12px);
  }

  body[data-page="course-detail-b"] .course-back-link {
    display: grid;
    height: 150px;
    place-items: center;
    background: var(--pale);
  }

  body[data-page="course-detail-b"] .course-back-link .btn {
    width: 350px;
    height: 50px;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 24px;
    background: #fff;
  }

  body[data-page="course-detail-b"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="course-detail-b"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="course-detail-b"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="course-detail-b"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="course-detail-b"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="course-detail-b"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="course-detail-b"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .contact-card a,
  body[data-page="course-detail-b"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="course-detail-b"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="course-detail-b"] .contact-card:nth-child(2) a,
  body[data-page="course-detail-b"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="course-detail-b"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="course-detail-b"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="course-detail-b"] .site-footer {
    padding-top: 80px;
  }

  body[data-page="course-detail-b"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="course-detail-b"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="course-detail-b"] .site-footer p,
  body[data-page="course-detail-b"] .site-footer li,
  body[data-page="course-detail-b"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="course-detail-b"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="course-detail-b"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="course-detail-b"] .page-top {
    display: none;
  }

  /* Course list desktop fidelity pass: Adobe XD 1280 x 4900 is authoritative. */
  body[data-page="courses"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="courses"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="courses"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="courses"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="courses"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="courses"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="courses"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="courses"] .global-nav > a.is-current::after {
    opacity: 0;
  }

  body[data-page="courses"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="courses"] .page-hero {
    grid-template-columns: 41% 59%;
  }

  body[data-page="courses"] .page-hero-copy {
    padding-left: max(40px, calc((100vw - var(--content)) / 2 - 2px));
  }

  body[data-page="courses"] .page-hero-image img {
    object-position: center;
  }

  body[data-page="courses"] .filter-buttons {
    width: 1035px;
    margin: 32px auto 0;
  }

  body[data-page="courses"] .filter-button {
    color: var(--ink);
    border: 0;
    background: #e5e5e5;
  }

  body[data-page="courses"] .filter-button:hover,
  body[data-page="courses"] .filter-button.is-active {
    color: #fff;
    background: var(--green);
  }

  body[data-page="courses"] .course-item {
    padding: 0;
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="courses"] .course-item h2 {
    position: absolute;
    top: 30px;
    left: 60px;
    width: 713px;
  }

  body[data-page="courses"] .course-type {
    position: absolute;
    top: 32.5px;
    right: 40.3px;
    width: 145.7px;
    height: 40px;
    border: 1px solid var(--green);
    background: #fff;
  }

  body[data-page="courses"] .course-target {
    position: absolute;
    top: 84.5px;
    left: 60px;
    width: 980px;
    margin: 0;
  }

  body[data-page="courses"] .course-meta {
    position: absolute;
    top: 132px;
    left: 60px;
    display: grid;
    grid-template-columns: 343.6px 243.9px 227.4px 165.1px;
    width: 980px;
    height: 84px;
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--green);
  }

  body[data-page="courses"] .course-meta div {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="courses"] .course-meta div::before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 40px;
    height: 40px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  body[data-page="courses"] .course-meta div:nth-child(1)::before {
    background-image: url("../images/xd-icon-calendar.svg");
  }

  body[data-page="courses"] .course-meta div:nth-child(2)::before {
    background-image: url("../images/xd-icon-pin.png");
  }

  body[data-page="courses"] .course-meta div:nth-child(3)::before {
    display: grid;
    color: #fff;
    border-radius: 50%;
    content: "¥";
    place-items: center;
    background: var(--green);
    font-size: 22px;
    font-weight: 700;
  }

  body[data-page="courses"] .course-meta div:nth-child(4)::before {
    background-image: url("../images/xd-icon-people.png");
  }

  body[data-page="courses"] .course-meta strong,
  body[data-page="courses"] .course-meta span {
    position: absolute;
    left: 44.7px;
    white-space: nowrap;
  }

  body[data-page="courses"] .course-meta strong {
    top: 23px;
  }

  body[data-page="courses"] .course-meta span {
    top: 52.5px;
  }

  body[data-page="courses"] .seat-count,
  body[data-page="courses"] .seat-count.few,
  body[data-page="courses"] .seat-count.full {
    color: var(--ink);
    font-weight: 400;
  }

  body[data-page="courses"] .course-item .card-button {
    top: 245px;
    bottom: auto;
  }

  body[data-page="courses"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="courses"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="courses"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="courses"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="courses"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="courses"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="courses"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="courses"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="courses"] .contact-card a,
  body[data-page="courses"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="courses"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="courses"] .contact-card:nth-child(2) a,
  body[data-page="courses"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="courses"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="courses"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="courses"] .site-footer {
    height: 399.5px;
    overflow: hidden;
    padding-top: 80px;
  }

  body[data-page="courses"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="courses"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="courses"] .site-footer p,
  body[data-page="courses"] .site-footer li,
  body[data-page="courses"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="courses"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="courses"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="courses"] .page-top {
    display: none;
  }

  /* Reissue desktop fidelity pass: Adobe XD 1280 x 3615 is authoritative. */
  body[data-page="reissue"] .site-header {
    box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
  }

  body[data-page="reissue"] .header-inner {
    position: relative;
    width: min(calc(100% - 120px), 1160px);
  }

  body[data-page="reissue"] .site-logo {
    position: absolute;
    top: 31px;
    left: 0;
    height: 68px;
    line-height: 1;
  }

  body[data-page="reissue"] .site-logo strong {
    font-size: 24.5px;
    letter-spacing: 0;
    line-height: 40px;
  }

  body[data-page="reissue"] .site-logo span {
    margin-top: -6px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="reissue"] .global-nav {
    position: absolute;
    top: 0;
    left: 611px;
    gap: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  body[data-page="reissue"] .global-nav > a:not(.header-contact) {
    min-height: 18px;
  }

  body[data-page="reissue"] .global-nav > a.is-current::after {
    opacity: 0;
  }

  body[data-page="reissue"] .header-contact {
    width: 150px;
    height: 50px;
    border-radius: 50px;
  }

  body[data-page="reissue"] .page-hero {
    grid-template-columns: 41% 59%;
  }

  body[data-page="reissue"] .page-hero .en {
    text-transform: uppercase;
  }

  body[data-page="reissue"] .page-hero-image img {
    object-position: center;
  }

  body[data-page="reissue"] .reissue-main {
    position: relative;
    height: 2079px;
    padding: 0;
  }

  body[data-page="reissue"] .reissue-inner {
    position: relative;
    width: 896px;
    height: 100%;
    margin: 0 0 0 calc(50% - 417px);
  }

  body[data-page="reissue"] .reissue-download-heading,
  body[data-page="reissue"] .reissue-guide-heading {
    position: absolute;
    left: -31px;
    width: 896px;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-download-heading {
    top: 99.7px;
  }

  body[data-page="reissue"] .reissue-guide-heading {
    top: 1073.2px;
  }

  body[data-page="reissue"] .reissue-download-heading .section-heading,
  body[data-page="reissue"] .reissue-guide-heading .section-heading {
    position: relative;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-download-heading .section-heading::after,
  body[data-page="reissue"] .reissue-guide-heading .section-heading::after {
    position: absolute;
    top: 72px;
    left: 50%;
    width: 120px;
    height: 5px;
    margin: 0;
    transform: translateX(-50%);
  }

  body[data-page="reissue"] .reissue-download-heading > p:last-child,
  body[data-page="reissue"] .reissue-guide-heading > p:last-child {
    position: absolute;
    top: 84px;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-download-heading > p:last-child {
    left: 81.5px;
    width: 733px;
  }

  body[data-page="reissue"] .reissue-guide-heading > p:last-child {
    left: 120px;
    width: 656px;
    font-size: 16px;
    line-height: 27px;
  }

  body[data-page="reissue"] .reissue-downloads {
    position: absolute;
    top: 296.7px;
    left: 0;
    width: 856.4px;
    height: 670px;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-download-entry {
    position: absolute;
    left: 0;
    width: 856.4px;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-download-entry:nth-child(1) { top: 0; }
  body[data-page="reissue"] .reissue-download-entry:nth-child(2) { top: 165.7px; }
  body[data-page="reissue"] .reissue-download-entry:nth-child(3) { top: 302.7px; }
  body[data-page="reissue"] .reissue-download-entry:nth-child(4) { top: 468.7px; }
  body[data-page="reissue"] .reissue-download-entry:nth-child(5) { top: 605.7px; }

  body[data-page="reissue"] .reissue-download-entry p,
  body[data-page="reissue"] .reissue-download-entry a {
    position: absolute;
    left: 0;
    width: 856.4px;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-download-entry a {
    top: 79.7px;
  }

  body[data-page="reissue"] .reissue-download-entry:nth-child(5) a {
    top: 39.8px;
  }

  body[data-page="reissue"] .reissue-table {
    position: absolute;
    top: 1244.5px;
    left: 0;
    width: 896px;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-table-row > div {
    padding-left: 29px;
  }

  body[data-page="reissue"] .contact-band {
    padding-top: 63px;
  }

  body[data-page="reissue"] .contact-band .section-heading {
    position: relative;
    margin-top: 41.5px;
  }

  body[data-page="reissue"] .contact-band .section-heading::after {
    position: absolute;
    top: 44px;
    left: 50%;
    display: block;
    width: 120px;
    height: 5px;
    content: "";
    background: var(--yellow);
    transform: translateX(-50%);
  }

  body[data-page="reissue"] .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    margin-top: 36px;
    line-height: 30px;
  }

  body[data-page="reissue"] .contact-cards {
    margin-top: 37px;
  }

  body[data-page="reissue"] .contact-card {
    position: relative;
    display: block;
    padding: 0;
  }

  body[data-page="reissue"] .contact-icon-img {
    position: absolute;
    top: 13px;
    left: 127px;
    width: 80px;
    height: 80px;
  }

  body[data-page="reissue"] .contact-card strong {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }

  body[data-page="reissue"] .contact-card a,
  body[data-page="reissue"] .contact-card .emphasis {
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    margin: 0;
    line-height: 36px;
  }

  body[data-page="reissue"] .contact-card:first-child a {
    font-size: 34px;
  }

  body[data-page="reissue"] .contact-card:nth-child(2) a,
  body[data-page="reissue"] .contact-card .emphasis {
    font-size: 18px;
  }

  body[data-page="reissue"] .contact-card small {
    position: absolute;
    top: 183px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="reissue"] .contact-band .center-action {
    margin-top: 35px;
  }

  body[data-page="reissue"] .site-footer {
    height: 399.5px;
    overflow: hidden;
    padding-top: 80px;
  }

  body[data-page="reissue"] .footer-grid {
    grid-template-columns: 535.5px 245px 245px;
    gap: 0;
  }

  body[data-page="reissue"] .footer-logo {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
  }

  body[data-page="reissue"] .site-footer p,
  body[data-page="reissue"] .site-footer li,
  body[data-page="reissue"] .site-footer a {
    font-size: 16px;
    line-height: 35px;
  }

  body[data-page="reissue"] .site-footer h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
  }

  body[data-page="reissue"] .copyright {
    margin-top: 42px;
    padding-top: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  body[data-page="reissue"] .page-top {
    display: none;
  }
}

/* Final 1280px overlay corrections shared by the supplied XD artboards. */
@media (min-width: 821px) {
  body[data-page="home"] .hero-copy {
    top: 209px;
  }

  body[data-page="home"] .scroll-cue {
    text-transform: uppercase;
  }

  body[data-page="home"] .home-news .section-heading {
    position: relative;
    top: -9px;
  }

  body[data-page="home"] .home-news .section-heading::after {
    width: 120px;
    height: 5px;
  }

  /* The heading keeps its original flow box so the description and cards stay
     on the XD coordinates; only the visible title is lifted above the rule. */
  body[data-page] .contact-band .section-heading {
    top: -30px;
  }

  body[data-page] .contact-band .section-heading::after {
    top: 74px;
  }

  body[data-page="consulting"] .page-hero-copy h1,
  body[data-page="course-detail-b"] .page-hero-copy h1 {
    white-space: nowrap;
  }

  body[data-page="consulting"] .page-hero-copy,
  body[data-page="course-detail-b"] .page-hero-copy {
    transform: translateY(-25px);
  }

  body[data-page="company"] .photo-frame[data-placeholder]::after {
    display: none;
  }

  body[data-page^="course-detail"] .payment-block > .form-section-title,
  body[data-page="course-detail-a"] .qualification-block > .form-section-title {
    position: relative;
    top: -30px;
  }

  body[data-page="course-detail-a"] .qualification-block .download-link {
    left: 0;
    width: 912px;
  }
}

@media (max-width: 1100px) {
  .global-nav {
    gap: 24px;
  }

  .header-contact {
    width: 150px;
  }

  .concerns-grid,
  .services-grid,
  .course-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4vw;
  }

  .concern-card,
  .service-card {
    width: 100%;
  }

  .strength-grid,
  .contact-cards,
  .mission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-buttons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .profile-grid {
    grid-template-columns: .9fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 76px;
  }

  body {
    font-size: 14px;
    line-height: 1.7;
  }

  .container,
  .narrow,
  .article-shell,
  .privacy-content {
    width: min(calc(100% - 40px), 640px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .site-logo strong {
    font-size: 15px;
  }

  .site-logo span {
    max-width: 245px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    position: absolute;
    left: 9px;
    width: 26px;
    height: 2px;
    content: "";
    background: var(--green);
    transition: .2s ease;
  }

  .menu-toggle::before {
    top: 13px;
  }

  .menu-toggle span {
    top: 21px;
  }

  .menu-toggle::after {
    top: 29px;
  }

  .menu-open .menu-toggle::before {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span {
    opacity: 0;
  }

  .menu-open .menu-toggle::after {
    top: 21px;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 40;
    inset: var(--header) 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    height: calc(100dvh - var(--header));
    padding: 24px 20px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: .2s ease;
  }

  .menu-open .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-nav > a:not(.header-contact) {
    min-height: 62px;
    border-bottom: 1px solid #e7e7e7;
    place-items: center start;
  }

  .header-contact {
    width: 100%;
    height: 54px;
    margin-top: 24px;
  }

  .eyebrow,
  .page-hero .en {
    font-size: 14px;
  }

  .section-heading {
    margin-top: 10px;
    font-size: 26px;
    line-height: 38px;
  }

  .heading-center .section-heading::after {
    width: 50px;
    height: 3px;
    margin-top: 16px;
  }

  .heading-center > p:last-child:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
    line-height: 26px;
  }

  .top-hero {
    height: 600px;
  }

  .hero-copy {
    top: 38px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero-copy h1 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.65;
  }

  .hero-art {
    inset: 190px 0 0;
  }

  .hero-art img {
    object-position: center top;
  }

  .hero-side-links {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    width: auto;
    grid-template-columns: 1fr 1fr;
    padding: 7px;
    border-radius: 12px;
  }

  .hero-side-link {
    height: 48px;
    padding: 0;
    font-size: 13px;
    writing-mode: horizontal-tb;
  }

  .scroll-cue {
    display: none;
  }

  .home-news,
  .concerns-section,
  #services,
  #strengths,
  #flow {
    height: auto;
    padding: 64px 0;
  }

  .home-news .news-list {
    margin-top: 32px;
  }

  .news-item {
    grid-template-columns: 1fr 18px;
    min-height: 112px;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 14px;
  }

  .news-date {
    grid-column: 1 / -1;
    font-size: 12px;
  }

  .tag {
    min-width: 58px;
    margin-left: 6px;
    font-size: 10px;
  }

  .tag-red {
    min-width: 38px;
  }

  .concerns-grid,
  .services-grid,
  .course-summary-grid,
  .profile-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  .concern-card,
  .concern-card.is-large {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .concerns-stack {
    gap: 24px;
  }

  .concerns-stack .concern-card {
    aspect-ratio: 1 / .72;
  }

  .services-grid {
    gap: 24px;
  }

  .service-card {
    height: auto;
    min-height: 500px;
  }

  .service-card-body {
    height: 340px;
    padding-inline: 24px;
  }

  .service-card .card-button {
    right: 24px;
    left: 24px;
    width: auto;
  }

  .strength-grid,
  .mission-grid,
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .strength-card,
  .mission-card,
  .contact-card {
    height: auto;
    min-height: 210px;
  }

  .flow-list {
    gap: 12px;
    margin-top: 32px;
  }

  .flow-item {
    grid-template-columns: 70px 1fr;
    height: auto;
    min-height: 118px;
    border-radius: 22px;
  }

  .flow-number {
    border-radius: 22px 0 0 22px;
    font-size: 22px;
  }

  .flow-text {
    padding: 20px;
  }

  .flow-text strong {
    font-size: 18px;
    line-height: 30px;
  }

  .flow-text span {
    font-size: 13px;
    line-height: 23px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    height: 260px;
  }

  .gallery-grid > div:nth-child(n + 2),
  .gallery-grid::after {
    display: none;
  }

  .page-hero {
    position: relative;
    display: block;
    height: 300px;
  }

  .page-hero-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    justify-content: center;
    padding: 0 24px;
    background: linear-gradient(90deg, rgb(255 255 255 / 96%) 0 38%, rgb(255 255 255 / 48%) 72%, transparent 100%);
  }

  .page-hero-copy h1 {
    margin-top: 10px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.35;
  }

  .page-hero-image {
    width: 100%;
    height: 300px;
  }

  .breadcrumb {
    height: auto;
    min-height: 34px;
    line-height: 34px;
  }

  .section,
  .section-sm,
  .application-section,
  .consulting-form-section,
  body[data-page="contact"] main > .section {
    padding: 64px 0;
  }

  body[data-page="consulting"] .consulting-form-section,
  body[data-page="contact"] main > .section,
  body[data-page="company"] .company-message,
  body[data-page="company"] .company-career,
  body[data-page="company"] .company-profile-section,
  body[data-page="company"] .company-mission,
  body[data-page="reissue"] .reissue-main,
  body[data-page="course-detail-a"] .application-section,
  body[data-page="course-detail-b"] .application-section,
  .course-overview,
  .course-downloads {
    height: auto;
    padding: 64px 0;
  }

  .course-overview > .container {
    padding-top: 44px;
  }

  .course-category {
    position: static;
    margin-bottom: 26px;
  }

  .course-overview .course-summary-grid {
    margin-top: 36px;
  }

  .schedule-card {
    height: auto;
    margin-top: 36px;
    padding: 28px 20px;
  }

  .course-downloads h2 {
    font-size: 28px;
  }

  body[data-page="company"] .company-message .profile-grid,
  body[data-page="company"] .company-career .career-list,
  body[data-page="company"] .company-profile-section .company-table,
  body[data-page="company"] .company-mission .mission-grid {
    margin-top: 36px;
  }

  .qualification-columns {
    columns: 1;
  }

  .reissue-download-entry p,
  .reissue-download-entry a {
    font-size: 14px;
    line-height: 26px;
  }

  .reissue-download-entry br {
    display: none;
  }

  .reissue-table {
    margin-top: 42px;
  }

  .reissue-table-row,
  .reissue-table-row:nth-child(1),
  .reissue-table-row:nth-child(2),
  .reissue-table-row:nth-child(3) {
    display: block;
    height: auto;
  }

  .reissue-table-row h3,
  .reissue-table-row > div {
    padding: 18px;
  }

  .reissue-table-row p {
    font-size: 14px;
    line-height: 26px;
  }

  .course-search {
    height: auto;
    padding: 30px 0 36px;
  }

  .search-box {
    width: 100%;
  }

  .filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .filter-button {
    flex: 0 0 130px;
    height: 44px;
    font-size: 14px;
  }

  .course-results {
    min-height: 0;
    padding: 32px 0 64px;
  }

  .course-item {
    height: auto;
    min-height: 380px;
    padding: 26px 22px 88px 34px;
    border-radius: 14px;
  }

  .course-item::before {
    width: 12px;
  }

  .course-item-head {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .course-item h2 {
    font-size: 22px;
    line-height: 1.55;
  }

  .course-type {
    flex-basis: auto;
    width: 120px;
    height: 32px;
    font-size: 12px;
  }

  .course-target {
    margin: 12px 0;
    font-size: 14px;
    line-height: 24px;
  }

  .course-meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .course-meta strong {
    font-size: 13px;
    line-height: 24px;
  }

  .course-meta span {
    font-size: 13px;
    line-height: 22px;
  }

  .course-item .card-button {
    right: 24px;
    bottom: 22px;
    left: 34px;
    width: auto;
    transform: none;
  }

  .detail-intro .heading-center {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .price-card,
  .date-card {
    height: 160px;
  }

  .schedule-list {
    gap: 14px;
    padding: 20px;
  }

  .schedule-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    padding: 18px;
  }

  .schedule-row strong,
  .schedule-link {
    grid-column: 1 / -1;
  }

  .schedule-link {
    margin-top: 4px;
  }

  .download-panel {
    padding: 35px 20px;
  }

  .download-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .download-link,
  .download-link:last-child:nth-child(odd),
  .form-field.full {
    grid-column: auto;
  }

  .form-field > label {
    min-height: 40px;
    font-size: 15px;
  }

  .form-field input:not([type="radio"]):not([type="checkbox"]),
  .form-field select {
    height: 60px;
    padding: 0 16px;
    font-size: 16px;
  }

  .form-field textarea {
    height: 180px;
    padding: 16px;
    font-size: 16px;
  }

  .form-consent {
    width: 100%;
    min-height: 72px;
    margin-top: 32px;
    padding: 16px;
  }

  .form-consent input {
    width: 22px;
    height: 22px;
  }

  .payment-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-method {
    grid-template-columns: 62px 1fr;
    min-height: 126px;
  }

  .inquiry-icon {
    width: 48px;
    height: 48px;
    font-size: 11px;
  }

  .inquiry-method > div {
    display: block;
  }

  .inquiry-method h3 {
    font-size: 17px;
  }

  .inquiry-method a {
    font-size: 24px;
  }

  .inquiry-method p {
    margin: 3px 0 0;
    text-align: left;
  }

  .profile-grid {
    gap: 36px;
  }

  .photo-frame {
    height: auto;
    aspect-ratio: 1 / .9;
  }

  .profile-copy h2 {
    font-size: 22px;
    line-height: 1.55;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table td {
    border-top: 0;
  }

  .career-list li {
    grid-template-columns: 1fr;
  }

  .two-column-list {
    columns: 1;
  }

  .reissue-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    background: #fff;
  }

  .reissue-card h3 {
    grid-row: auto;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--pale);
  }

  .reissue-card p,
  .reissue-card ol,
  .reissue-card small {
    grid-column: 1;
    margin-left: 0;
  }

  .contact-band,
  .site-footer {
    height: auto;
  }

  .contact-band {
    padding: 62px 0;
  }

  .contact-band > .container > p:not(.eyebrow):not(.center-action) {
    font-size: 14px;
    line-height: 26px;
  }

  .contact-band .center-action {
    margin-top: 28px;
  }

  .site-footer {
    padding: 52px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .copyright {
    margin-top: 38px;
  }
}

@media (max-width: 430px) {
  .container,
  .narrow,
  .article-shell,
  .privacy-content {
    width: calc(100% - 32px);
  }

  .top-hero {
    height: 560px;
  }

  .hero-copy {
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-art {
    top: 175px;
  }

  .btn,
  .card-button {
    width: 100%;
  }

  .course-meta {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

/* 2026-07-22 shared refinements */
.site-logo-en b {
  color: var(--green);
  font-weight: inherit;
}

.sp-only {
  display: none;
}

body[data-page="news"] .news-list {
  display: grid;
  gap: 18px;
  margin-block: 32px 40px;
}

/* Seamless, automatically moving photo gallery above the contact section. */
.gallery-grid {
  display: block;
  overflow: hidden;
}

.gallery-grid::after {
  display: none;
}

.gallery-track {
  display: flex;
  width: 200vw;
  height: 100%;
  animation: gallery-marquee 28s linear infinite;
  will-change: transform;
}

.gallery-set {
  display: grid;
  flex: 0 0 100vw;
  grid-template-columns: 39.765625vw 49.21875vw 11.015625vw;
  height: 100%;
}

.gallery-slide,
.gallery-slide img {
  width: 100%;
  height: 100%;
}

.gallery-slide img {
  object-fit: cover;
}

.gallery-grid:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes gallery-marquee {
  to {
    transform: translateX(-100vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}

/* Authoritative TOP review overrides — keep this block at the end. */
@media (min-width: 821px) {
  body[data-page="home"] .concern-primary .concern-art {
    inset: auto 75px auto auto;
    top: 100px;
    width: 350px;
    height: 300px;
    object-fit: contain;
  }

  body[data-page="home"] .concern-primary h3 {
    top: 43px;
  }

  body[data-page="home"] .concern-primary p {
    top: auto;
    bottom: 27px;
  }

  .gallery-track {
    width: 200vw;
  }

  .gallery-set {
    flex: 0 0 100vw;
    grid-template-columns: repeat(5, 20vw);
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .concerns-section .section-heading {
    white-space: normal;
  }

  body[data-page="home"] .concern-card,
  body[data-page="home"] .concern-card.is-large,
  body[data-page="home"] .concerns-stack .concern-card {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    background: var(--cream);
  }

  body[data-page="home"] .concern-primary {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    padding: 24px 20px 22px;
  }

  body[data-page="home"] .concern-primary h3,
  body[data-page="home"] .concern-primary p,
  body[data-page="home"] .concern-primary .concern-art {
    position: static !important;
    width: 100%;
  }

  body[data-page="home"] .concern-primary h3 {
    order: 1;
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    text-align: center;
  }

  body[data-page="home"] .concern-primary .concern-title-break {
    display: block;
  }

  body[data-page="home"] .concern-primary .concern-art {
    order: 2;
    height: 290px;
    margin: 8px auto 4px;
    object-fit: contain;
  }

  body[data-page="home"] .concern-primary p {
    order: 3;
    margin: auto 0 0;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card {
    display: grid;
    min-height: 245px;
    grid-template-columns: minmax(0, 1fr) 46%;
    grid-template-rows: auto 1fr;
    padding: 22px 12px 18px 18px;
  }

  body[data-page="home"] .concerns-stack .concern-card h3,
  body[data-page="home"] .concerns-stack .concern-card p,
  body[data-page="home"] .concerns-stack .concern-card .concern-art {
    position: static !important;
    width: auto;
  }

  body[data-page="home"] .concerns-stack .concern-card h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card p {
    align-self: start;
    grid-column: 1;
    grid-row: 2;
    margin: 24px 0 0;
    font-size: 12px;
    line-height: 1.75;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card .concern-art {
    align-self: center;
    width: 100%;
    height: 205px;
    grid-column: 2;
    grid-row: 1 / 3;
    object-fit: contain;
  }

  body[data-page="home"] .service-consulting {
    min-height: 0;
  }

  body[data-page="home"] .service-consulting .service-card-body {
    display: flex;
    height: auto;
    min-height: 400px;
    flex-direction: column;
    padding-bottom: 24px;
  }

  body[data-page="home"] .service-consulting .card-button {
    position: static;
    width: 100%;
    margin: 32px auto 0;
  }

  .gallery-track {
    width: 780vw;
    animation-name: gallery-marquee-mobile-five;
    animation-duration: 28s;
  }

  .gallery-set {
    flex: 0 0 390vw;
    grid-template-columns: repeat(5, 78vw);
  }

  body[data-page="home"] .concern-primary .concern-title-break {
    display: block;
  }
}

/* 2026-07-25 TOP review: final user-specified corrections.
   This block is intentionally last so it remains authoritative. */
.service-card h3 {
  text-align: center;
}

#flow .heading-center > .section-heading + p {
  margin: 36px auto 0;
}

.site-footer {
  height: auto !important;
  min-height: 400px;
  padding-bottom: 24px;
  overflow: visible;
}

.footer-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
}

.copyright {
  min-height: 50px;
  padding-bottom: 10px;
}

@media (min-width: 821px) {
  .global-nav > a:not(.header-contact)::after {
    bottom: -6px;
  }

  body[data-page="home"] .site-shell,
  body[data-page="home"] .top-hero {
    overflow: visible;
  }

  body[data-page="home"] .top-hero {
    isolation: auto;
  }

  body[data-page="home"] .hero-slideshow {
    overflow: hidden;
  }

  body[data-page="home"] .hero-side-links {
    z-index: 900;
  }

  body[data-page="home"] .scroll-cue {
    bottom: 18px;
    left: calc(50% - 590px);
    display: block;
    width: 30px;
    height: 202px;
    color: var(--green);
    font-size: 0;
    line-height: 1;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    animation: scroll-cue-float 4s ease-in-out infinite;
  }

  body[data-page="home"] .scroll-cue > span {
    position: absolute;
    bottom: 15px;
    left: -25px;
    display: block;
    width: 80px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    text-align: center;
    transform: rotate(-90deg);
  }

  body[data-page="home"] .scroll-cue::before {
    position: absolute;
    top: 0;
    left: 14px;
    display: block;
    width: 2px;
    height: 105px;
    margin: 0;
    content: "";
    background: var(--green);
  }

  body[data-page="home"] .scroll-cue::after {
    position: absolute;
    top: 94px;
    left: 2px;
    width: 17px;
    height: 2px;
    content: "";
    background: var(--green);
    transform: rotate(-52deg);
    transform-origin: right center;
  }

  body[data-page="home"] .concern-primary .concern-art {
    position: absolute;
    top: 100px;
    right: 75px;
    bottom: auto;
    left: auto;
    width: 350px;
    height: 300px;
    object-fit: contain;
  }

  body[data-page="home"] .concern-primary h3 {
    top: 43px;
  }

  body[data-page="home"] .concern-primary p {
    bottom: 27px;
  }

  body[data-page="home"] .strength-card .strength-icon,
  .contact-card .contact-icon-img {
    top: 22px !important;
    left: 50% !important;
    object-position: center !important;
    transform: translateX(-50%);
  }

  .gallery-track {
    width: 200vw;
  }

  .gallery-set {
    flex: 0 0 100vw;
    grid-template-columns: repeat(5, 20vw);
  }
}

@keyframes scroll-cue-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .concerns-section .section-heading {
    white-space: normal;
  }

  body[data-page="home"] .concern-card,
  body[data-page="home"] .concern-card.is-large,
  body[data-page="home"] .concerns-stack .concern-card {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    background: var(--cream);
  }

  body[data-page="home"] .concern-primary {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    padding: 24px 20px 22px;
  }

  body[data-page="home"] .concern-primary h3,
  body[data-page="home"] .concern-primary p,
  body[data-page="home"] .concern-primary .concern-art {
    position: static !important;
    width: 100%;
  }

  body[data-page="home"] .concern-primary h3 {
    order: 1;
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    text-align: center;
  }

  body[data-page="home"] .concern-primary .concern-art {
    order: 2;
    height: 290px;
    margin: 8px auto 4px;
    object-fit: contain;
  }

  body[data-page="home"] .concern-primary p {
    order: 3;
    margin: auto 0 0;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card {
    display: grid;
    min-height: 245px;
    grid-template-columns: minmax(0, 1fr) 46%;
    grid-template-rows: auto 1fr;
    padding: 22px 12px 18px 18px;
  }

  body[data-page="home"] .concerns-stack .concern-card h3,
  body[data-page="home"] .concerns-stack .concern-card p,
  body[data-page="home"] .concerns-stack .concern-card .concern-art {
    position: static !important;
    width: auto;
  }

  body[data-page="home"] .concerns-stack .concern-card h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card p {
    align-self: start;
    grid-column: 1;
    grid-row: 2;
    margin: 24px 0 0;
    font-size: 12px;
    line-height: 1.75;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card .concern-art {
    align-self: center;
    width: 100%;
    height: 205px;
    grid-column: 2;
    grid-row: 1 / 3;
    object-fit: contain;
  }

  body[data-page="home"] .service-consulting {
    min-height: 0;
  }

  body[data-page="home"] .service-consulting .service-card-body {
    display: flex;
    height: auto;
    min-height: 400px;
    flex-direction: column;
    padding-bottom: 24px;
  }

  body[data-page="home"] .service-consulting .card-button {
    position: static;
    width: 100%;
    margin: 32px auto 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 22px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1 !important;
  }

  .gallery-track {
    width: 780vw;
    animation-name: gallery-marquee-mobile-five;
    animation-duration: 28s;
  }

  .gallery-set {
    flex: 0 0 390vw;
    grid-template-columns: repeat(5, 78vw);
  }
}

/* 2026-07-25 annotated correction set v7.
   This is the final authoritative block. Keep it at the end of this file. */

/* One image layer only: do not combine the supplied PNG with a legacy icon. */
body[data-page^="course-detail"] .schedule-card h3::before {
  background: url("../../images/fo-30.png") center / contain no-repeat !important;
  background-image: url("../../images/fo-30.png") !important;
}

body[data-page^="course-detail"] .schedule-card .schedule-row::before {
  background: url("../../images/fo-27.png") center / contain no-repeat !important;
  background-image: url("../../images/fo-27.png") !important;
}

/* Form notes sit beside their section titles. */
body[data-page^="course-detail"] .form-title-row {
  display: grid !important;
  min-height: 44px;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

body[data-page^="course-detail"] .form-title-row .form-section-title {
  margin: 0 !important;
}

body[data-page^="course-detail"] .form-title-row .lunch-note,
body[data-page^="course-detail"] .form-title-row .personal-note {
  position: static !important;
  width: auto !important;
  margin: 0 !important;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-align: left !important;
}

/* Pattern A uses the same compact schedule dropdown as Pattern B. */
body[data-page="course-detail-a"] .schedule-choice-block .form-field {
  margin-top: 8px !important;
}

body[data-page="course-detail-a"] .schedule-choice-block .form-field > label {
  height: 34px !important;
  min-height: 34px !important;
}

body[data-page="course-detail-a"] .schedule-choice-block select {
  width: 100% !important;
  height: 58px !important;
  padding: 0 18px !important;
  border: 1px solid #888 !important;
  border-radius: 5px !important;
  background: #fff !important;
}

/* Shared CTA icons remain visible on every page and breakpoint. */
.contact-card {
  position: relative;
}

.contact-card .contact-icon-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 821px) {
  /* Keep long lower-page hero titles above the photograph and fade layer. */
  .page-hero-copy {
    position: relative;
    z-index: 4 !important;
    overflow: visible !important;
  }

  .page-hero-image {
    z-index: 1 !important;
  }

  body[data-page="consulting"] .page-hero-copy h1 {
    position: relative;
    z-index: 5 !important;
  }

  /* Contact page icons and labels share a clean horizontal baseline. */
  body[data-page="contact"] .inquiry-icon-img {
    left: 0 !important;
    display: block !important;
  }

  body[data-page="contact"] .inquiry-method h3 {
    left: 80px !important;
  }

  /* Pattern A no longer reserves space for the deleted radio schedule list. */
  body[data-page="course-detail-a"] .application-section {
    height: 2920px !important;
  }

  body[data-page="course-detail-a"] .schedule-choice-block {
    top: 250px !important;
    height: 140px !important;
  }

  body[data-page="course-detail-a"] .attendance-block {
    top: 420px !important;
    height: 110px !important;
  }

  body[data-page="course-detail-a"] .participant-block {
    top: 555px !important;
  }

  body[data-page="course-detail-a"] .business-block {
    top: 1355px !important;
  }

  body[data-page="course-detail-a"] .payment-block {
    top: 2410px !important;
  }

  body[data-page="course-detail-a"] .invoice-block {
    top: 2610px !important;
  }

  body[data-page="course-detail-a"] .application-submit {
    top: 2800px !important;
  }
}

@media (max-width: 820px) {
  body[data-page^="course-detail"] .form-title-row {
    display: block !important;
    min-height: 0;
  }

  body[data-page^="course-detail"] .form-title-row .lunch-note,
  body[data-page^="course-detail"] .form-title-row .personal-note {
    margin-top: 8px !important;
    font-size: 13px;
  }

  body[data-page^="course-detail"] .schedule-choice-block select {
    width: 100% !important;
    height: 60px !important;
    padding: 0 14px !important;
    border: 1px solid #888 !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 14px !important;
  }

  .contact-card {
    min-height: 220px !important;
    padding-top: 86px !important;
  }

  .contact-card .contact-icon-img {
    top: 24px !important;
    width: 48px !important;
    height: 48px !important;
  }
}

/* 2026-07-27 confirmed specification adjustments. */
.consulting-notes {
  margin: 32px auto 0;
  padding: 24px 28px;
  border-radius: 8px;
  background: #f5f8f3;
  color: #444;
  font-size: 14px;
  line-height: 1.9;
}

.consulting-notes p {
  margin: 0;
}

.consulting-notes p + p {
  margin-top: 6px;
}

.consulting-notes a {
  color: var(--green);
  text-decoration: underline;
}

.company-registration {
  margin-top: 56px;
}

.company-registration-heading {
  font-size: 30px;
}

.company-registration-list {
  display: grid;
  gap: 12px;
  margin: 38px 0 0;
  padding: 30px 36px;
  border: 1px solid #dfe9dc;
  border-radius: 10px;
  background: #f7fbf5;
  list-style: none;
}

.company-registration-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.8;
}

.company-registration-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.reissue-qa-list {
  display: grid;
  gap: 20px;
  margin: 42px 0 0;
}

.reissue-qa-row {
  overflow: hidden;
  border: 1px solid #dce6d8;
  border-radius: 10px;
  background: #fff;
}

.reissue-question,
.reissue-answer {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
}

.reissue-question {
  border-bottom: 1px solid #e6ece3;
  background: #f4f9f1;
}

.reissue-question > span,
.reissue-answer > span {
  display: grid;
  min-height: 64px;
  color: #fff;
  place-items: center;
  background: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.reissue-question p,
.reissue-answer > div {
  margin: 0;
  padding: 19px 24px;
  line-height: 1.8;
}

.reissue-answer > div p {
  margin: 0;
}

.reissue-answer > div p + p {
  margin-top: 10px;
}

.reissue-answer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reissue-file-pending {
  color: #666;
}

.reissue-documents-pending {
  margin: 0;
  padding: 32px;
  border: 1px dashed #b8c9b2;
  border-radius: 10px;
  background: #f7fbf5;
  line-height: 1.8;
  text-align: center;
}

body[data-page^="course-detail"] .invoice-block,
body[data-page^="course-detail"] .qualification-block,
body[data-page^="course-detail"] .qualification-required {
  display: none !important;
}

@media (min-width: 821px) {
  body[data-page="course-detail-a"] .application-section {
    height: 2735px !important;
  }

  body[data-page="course-detail-a"] .application-submit {
    top: 2615px !important;
  }

  body[data-page="course-detail-b"] .application-section {
    height: 2510px !important;
  }

  body[data-page="course-detail-b"] .application-submit {
    top: 2390px !important;
  }

  body[data-page^="course-detail"] .payment-block .payment-options {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    height: auto !important;
    min-height: 82px !important;
    gap: 12px 22px !important;
    padding: 10px 18px !important;
  }

  body[data-page^="course-detail"] .payment-block .wpcf7-radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  body[data-page^="course-detail"] .payment-block .wpcf7-list-item {
    margin: 0;
  }
}

@media (max-width: 820px) {
  body[data-page^="course-detail"] .application-section,
  body[data-page^="course-detail"] .application-section > .narrow {
    height: auto !important;
  }

  body[data-page^="course-detail"] .application-section > .narrow > .heading-center,
  body[data-page^="course-detail"] .course-form-a,
  body[data-page^="course-detail"] .course-form-b,
  body[data-page^="course-detail"] .course-form-block,
  body[data-page^="course-detail"] .participant-fields-top,
  body[data-page^="course-detail"] .participant-fields-bottom,
  body[data-page^="course-detail"] .business-fields,
  body[data-page^="course-detail"] .identity-note,
  body[data-page^="course-detail"] .application-submit {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
  }

  body[data-page^="course-detail"] .application-section > .narrow > .heading-center {
    margin-bottom: 38px;
  }

  body[data-page^="course-detail"] .course-form-a,
  body[data-page^="course-detail"] .course-form-b {
    margin-top: 0 !important;
  }

  body[data-page^="course-detail"] .course-form-block + .course-form-block {
    margin-top: 46px;
  }

  body[data-page^="course-detail"] .form-section-title {
    margin: 0 0 20px !important;
    font-size: 26px;
    line-height: 1.5;
    text-align: left;
  }

  body[data-page^="course-detail"] .participant-fields-top,
  body[data-page^="course-detail"] .participant-fields-bottom,
  body[data-page^="course-detail"] .business-fields {
    display: grid !important;
    gap: 28px !important;
  }

  body[data-page^="course-detail"] .participant-fields-bottom,
  body[data-page^="course-detail"] .identity-note {
    margin-top: 28px !important;
  }

  body[data-page^="course-detail"] .payment-block .payment-options {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 20px !important;
  }

  body[data-page^="course-detail"] .payment-block .wpcf7-radio {
    display: grid;
    gap: 14px;
  }

  body[data-page^="course-detail"] .payment-block > p {
    position: static !important;
    margin: 14px 0 0 !important;
  }

  body[data-page^="course-detail"] .application-submit {
    margin: 54px 0 0 !important;
  }

  .company-registration {
    margin-top: 44px;
  }

  .company-registration-heading {
    font-size: 24px;
  }

  .company-registration-list {
    margin-top: 30px;
    padding: 24px 20px;
  }

  .reissue-question,
  .reissue-answer {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .reissue-question p,
  .reissue-answer > div {
    padding: 16px;
  }

  .consulting-notes {
    padding: 20px;
  }
}

/* 2026-07-25 annotated review pass v6.
   Keep this block last so obsolete fixed-coordinate rules cannot override it. */

/* Use one artwork layer for course schedule icons. */
body[data-page^="course-detail"] .schedule-card h3::before {
  background: url("../../images/fo-30.png") center / contain no-repeat !important;
}

body[data-page^="course-detail"] .schedule-card .schedule-row::before {
  background: url("../../images/fo-27.png") center / contain no-repeat !important;
}

/* Notes belong to the heading row, not to an independent absolute layer. */
body[data-page^="course-detail"] .form-title-row {
  display: grid;
  min-height: 44px;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

body[data-page^="course-detail"] .form-title-row .form-section-title {
  margin: 0 !important;
}

body[data-page^="course-detail"] .form-title-row .lunch-note,
body[data-page^="course-detail"] .form-title-row .personal-note {
  position: static !important;
  width: auto !important;
  margin: 0 !important;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-align: left !important;
}

/* Pattern A uses the same schedule selector as Pattern B. */
body[data-page="course-detail-a"] .schedule-choice-block .form-field {
  margin-top: 8px;
}

body[data-page="course-detail-a"] .schedule-choice-block .form-field > label {
  height: 34px;
  min-height: 34px;
}

body[data-page="course-detail-a"] .schedule-choice-block select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid #888;
  border-radius: 5px;
  background: #fff;
}

/* Shared CTA artwork must remain visible at every breakpoint. */
.contact-card {
  position: relative;
}

.contact-card .contact-icon-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 821px) {
  /* Long consulting title sits over the photo instead of behind it. */
  .page-hero-copy {
    position: relative;
    z-index: 4;
    overflow: visible;
  }

  .page-hero-image {
    z-index: 1;
  }

  body[data-page="consulting"] .page-hero-copy h1 {
    position: relative;
    z-index: 5;
  }

  /* Contact method icons align to the same left edge as their labels. */
  body[data-page="contact"] .inquiry-icon-img {
    left: 0 !important;
    display: block !important;
  }

  body[data-page="contact"] .inquiry-method h3 {
    left: 80px !important;
  }

  /* Pattern A compacts the obsolete radio-list spacing. */
  body[data-page="course-detail-a"] .application-section {
    height: 2920px !important;
  }

  body[data-page="course-detail-a"] .schedule-choice-block {
    top: 250px !important;
    height: 140px !important;
  }

  body[data-page="course-detail-a"] .attendance-block {
    top: 420px !important;
    height: 110px !important;
  }

  body[data-page="course-detail-a"] .participant-block {
    top: 555px !important;
  }

  body[data-page="course-detail-a"] .business-block {
    top: 1355px !important;
  }

  body[data-page="course-detail-a"] .payment-block {
    top: 2410px !important;
  }

  body[data-page="course-detail-a"] .invoice-block {
    top: 2610px !important;
  }

  body[data-page="course-detail-a"] .application-submit {
    top: 2800px !important;
  }

  body[data-page="course-detail-b"] .participant-block > .form-section-title {
    margin-left: 0 !important;
  }
}

@media (max-width: 820px) {
  body[data-page^="course-detail"] .form-title-row {
    display: block;
    min-height: 0;
  }

  body[data-page^="course-detail"] .form-title-row .lunch-note,
  body[data-page^="course-detail"] .form-title-row .personal-note {
    margin-top: 8px !important;
    font-size: 13px;
  }

  body[data-page^="course-detail"] .schedule-choice-block select {
    width: 100%;
    height: 60px;
    padding: 0 14px;
    border: 1px solid #888;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
  }

  .contact-card {
    min-height: 220px !important;
    padding-top: 86px !important;
  }

  .contact-card .contact-icon-img {
    top: 24px !important;
    width: 48px !important;
    height: 48px !important;
  }
}

/* 2026-07-25 final correction set v5.
   Keep this block last: it resolves the accumulated review overrides above. */

/* Common gallery: every source photo is displayed at a true 16:9 ratio. */
body[data-page="home"] .gallery-grid {
  height: auto !important;
  aspect-ratio: 80 / 9;
  background: var(--green);
}

body[data-page="home"] .gallery-track,
body[data-page="home"] .gallery-set,
body[data-page="home"] .gallery-slide {
  height: 100%;
}

body[data-page="home"] .gallery-slide {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

body[data-page="home"] .gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Shared CTA and company cards: center artwork independently of source canvas. */
.contact-card .contact-icon-img,
body[data-page="company"] .mission-card .mission-icon {
  position: absolute !important;
  top: 22px !important;
  left: 50% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: translateX(-50%) !important;
}

.contact-card .contact-icon-img {
  width: 48px !important;
  height: 48px !important;
}

body[data-page="company"] .mission-card .mission-icon {
  top: 20px !important;
  width: 64px !important;
  height: 64px !important;
}

/* News and policy pages use the same finished visual language as the main pages. */
body[data-page="news"] .news-list {
  gap: 18px;
  margin-block: 38px 44px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 46px auto 0;
  padding: 8px;
  gap: 8px;
  border: 1px solid rgb(17 158 0 / 18%);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 7px 20px rgb(18 85 9 / 8%);
}

.pagination > a,
.pagination > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--green);
  border: 1px solid transparent;
  border-radius: 50%;
  place-items: center;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.pagination > a:hover,
.pagination > a:focus-visible {
  border-color: var(--green);
  outline: 0;
  background: var(--pale);
}

.pagination > .is-current {
  color: #fff;
  background: var(--green);
  box-shadow: 0 4px 10px rgb(16 132 3 / 25%);
}

.pagination > .pagination-arrow {
  font-size: 24px;
  font-weight: 400;
}

.pagination > .is-disabled {
  color: #b9b9b9;
  background: #f3f3f3;
}

body[data-page="privacy"] .policy-list {
  padding-block: 8px 30px;
}

body[data-page="privacy"] .policy-list > p:first-child {
  margin: 0 0 42px;
  padding: 24px 28px;
  border-radius: 10px;
  background: var(--pale);
  font-size: 16px;
  line-height: 2;
}

body[data-page="privacy"] .policy-section {
  margin: 0 0 24px;
  padding: 26px 30px;
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  background: #fafcf9;
}

body[data-page="privacy"] .policy-section h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.5;
}

body[data-page="privacy"] .policy-section p {
  margin: 0;
  line-height: 1.95;
}

/* Course detail primary action: smaller, richer and clearly interactive. */
body[data-page^="course-detail"] .application-submit .btn {
  width: 350px !important;
  height: 52px !important;
  color: #fff !important;
  border: 1px solid rgb(255 142 0 / 75%) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #ffad2f 0%, #ff8f00 100%) !important;
  box-shadow: 0 8px 18px rgb(197 105 0 / 18%) !important;
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: .03em;
  transform: none !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

body[data-page^="course-detail"] .application-submit .btn:hover,
body[data-page^="course-detail"] .application-submit .btn:focus-visible {
  outline: 0;
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgb(197 105 0 / 25%) !important;
  transform: translateY(-2px) !important;
}

@media (min-width: 821px) {
  /* SCROLL can extend below the MV while only the photos remain clipped. */
  body[data-page="home"] .site-shell,
  body[data-page="home"] .top-hero {
    overflow: visible !important;
  }

  body[data-page="home"] .top-hero {
    isolation: auto !important;
  }

  body[data-page="home"] .hero-slideshow {
    overflow: hidden !important;
  }

  body[data-page="home"] .scroll-cue {
    z-index: 60 !important;
  }

  body[data-page="home"] .scroll-cue::after {
    left: 8px !important;
    width: 17px !important;
  }

  body[data-page="home"] .hero-side-links {
    z-index: 1100 !important;
  }

  /* Lower-page photography blends into the white title area. */
  .page-hero-image {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .page-hero-image::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 170px;
    content: "";
    background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 92%) 24%, rgb(255 255 255 / 50%) 60%, transparent 100%);
    pointer-events: none;
  }

  /* Course cards: fixed icon boxes and aligned label/value columns. */
  body[data-page="courses"] .course-meta div::before {
    top: 16px !important;
    left: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
  }

  body[data-page="courses"] .course-meta strong,
  body[data-page="courses"] .course-meta span {
    left: 44px !important;
  }

  body[data-page="courses"] .course-meta strong {
    top: 17px !important;
    font-size: 17px;
    line-height: 26px;
  }

  body[data-page="courses"] .course-meta > div > span {
    top: 47px !important;
    font-size: 15px;
    line-height: 22px;
  }

  body[data-page="courses"] .course-meta .course-date-list {
    top: 47px !important;
    gap: 1px !important;
  }

  body[data-page="courses"] .course-meta .course-date-list > span {
    font-size: 13px !important;
    line-height: 18px !important;
  }

  /* Company mission artwork is mathematically centered in every card. */
  body[data-page="company"] .mission-card h3 {
    top: 106px !important;
  }

  /* Give every form section title breathing room before its fields. */
  body[data-page^="course-detail"] .participant-fields-top {
    top: 56px !important;
  }
}

@media (max-width: 820px) {
  /* SP MV: show the subject, reserve the right rail, and lower the copy. */
  body[data-page="home"] .top-hero {
    overflow: hidden !important;
  }

  body[data-page="home"] .hero-slide:nth-child(1) {
    object-position: 76% center !important;
  }

  body[data-page="home"] .hero-slide:nth-child(2) {
    object-position: 68% center !important;
  }

  body[data-page="home"] .hero-slide:nth-child(3) {
    object-position: 72% center !important;
  }

  body[data-page="home"] .hero-copy {
    top: 235px !important;
    left: 16px !important;
    width: calc(100% - 105px) !important;
  }

  body[data-page="home"] .hero-copy h1 {
    gap: 7px !important;
    font-size: clamp(19px, 5.5vw, 25px) !important;
    line-height: 1.52 !important;
  }

  body[data-page="home"] .hero-side-links {
    z-index: 1100 !important;
  }

  /* All TOP cards receive readable vertical rhythm. */
  body[data-page="home"] .concern-primary {
    min-height: 500px;
    padding: 28px 22px 24px;
  }

  body[data-page="home"] .concern-primary h3 {
    margin-bottom: 14px;
  }

  body[data-page="home"] .concern-primary .concern-art {
    height: 286px;
    margin: 12px auto 14px;
  }

  body[data-page="home"] .concern-primary p {
    margin-top: 12px;
    line-height: 1.85;
  }

  body[data-page="home"] .concerns-stack .concern-card {
    min-height: 270px;
    padding: 26px 16px 22px 20px;
  }

  body[data-page="home"] .concerns-stack .concern-card h3 {
    margin-bottom: 14px;
    line-height: 1.65;
  }

  body[data-page="home"] .concerns-stack .concern-card p {
    margin-top: 30px;
    line-height: 1.9;
  }

  body[data-page="home"] .service-card {
    min-height: 0;
  }

  body[data-page="home"] .service-card-body,
  body[data-page="home"] .service-consulting .service-card-body {
    display: flex !important;
    height: auto !important;
    min-height: 430px !important;
    flex-direction: column;
    padding: 32px 24px 26px !important;
  }

  body[data-page="home"] .service-card-body h3 {
    margin: 0 0 20px !important;
    line-height: 1.45;
  }

  body[data-page="home"] .service-card-body p {
    margin: 0 0 22px !important;
    line-height: 1.85;
  }

  body[data-page="home"] .service-card-body ul {
    margin: 0 0 30px !important;
    padding-top: 18px;
    line-height: 1.75;
  }

  body[data-page="home"] .service-card-body .card-button,
  body[data-page="home"] .service-consulting .card-button {
    position: static !important;
    width: 100% !important;
    margin: auto auto 0 !important;
    transform: none !important;
  }

  body[data-page="home"] .gallery-grid {
    height: auto !important;
    aspect-ratio: 16 / 7;
  }

  body[data-page="home"] .gallery-track {
    width: 780vw !important;
  }

  body[data-page="home"] .gallery-set {
    flex: 0 0 390vw !important;
    grid-template-columns: repeat(5, 78vw) !important;
  }

  body[data-page="home"] .gallery-slide {
    aspect-ratio: 16 / 9;
  }

  body[data-page="company"] .mission-card {
    display: flex !important;
    min-height: 290px !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 22px 24px !important;
  }

  body[data-page="company"] .mission-card .mission-icon {
    position: static !important;
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto 18px !important;
    transform: none !important;
  }

  body[data-page="company"] .mission-card h3,
  body[data-page="company"] .mission-card p {
    position: static !important;
    width: 100% !important;
  }

  body[data-page="company"] .mission-card h3 {
    margin: 0 0 14px !important;
  }

  /* Course detail headings no longer touch the content below. */
  body[data-page^="course-detail"] .form-section-title {
    margin-bottom: 22px !important;
  }

  body[data-page^="course-detail"] .application-section > .narrow > .heading-center {
    margin-bottom: 54px;
  }

  body[data-page^="course-detail"] .application-submit .btn {
    width: min(100%, 350px) !important;
    height: 52px !important;
    font-size: 15px !important;
  }

  .pagination {
    margin-top: 34px;
    padding: 6px;
    gap: 5px;
  }

  .pagination > a,
  .pagination > span {
    width: 38px;
    height: 38px;
  }

  body[data-page="privacy"] .policy-list > p:first-child,
  body[data-page="privacy"] .policy-section {
    padding: 22px 20px;
  }
}

/* 2026-07-25 final XD fidelity pass.
   These rules intentionally override earlier exploratory adjustments. */
.hero-xd-layer,
.hero-art-label {
  display: none !important;
}

body[data-page="home"] .top-hero {
  overflow: hidden;
  background: var(--pale);
}

body[data-page="home"] .hero-slideshow {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--pale);
}

body[data-page="home"] .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: hero-crossfade 15s infinite;
}

body[data-page="home"] .hero-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

body[data-page="home"] .hero-slide:nth-child(2) {
  animation-delay: 5s;
}

body[data-page="home"] .hero-slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes hero-crossfade {
  0%,
  27% {
    opacity: 1;
  }

  33%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body[data-page="home"] .hero-copy {
  z-index: 2;
  top: 222px;
  left: calc(50% - 530px);
  width: 590px;
}

body[data-page="home"] .hero-copy h1 {
  display: grid;
  justify-items: start;
  gap: 7px;
  font-size: 40px;
  line-height: 1.42;
}

body[data-page="home"] .hero-copy h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 0 10px 2px;
  background: rgb(255 255 255 / 94%);
}

body[data-page="home"] .hero-copy h1 em {
  color: var(--green);
  font-style: normal;
}

body[data-page="home"] .hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

body[data-page="home"] .hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
}

body[data-page="home"] .hero-dots .is-active {
  background: var(--green);
}

body[data-page="home"] .hero-side-links {
  position: fixed;
  z-index: 35;
  top: 154px;
  right: 0;
}

body[data-page="home"] .concern-art {
  position: absolute;
  z-index: 0;
  object-fit: contain;
}

body[data-page="home"] .concern-primary .concern-art {
  top: 76px;
  right: 38px;
  bottom: auto;
  left: auto;
  width: 420px;
  height: 350px;
}

body[data-page="home"] .concern-primary h3 {
  top: 43px;
}

body[data-page="home"] .concern-primary p {
  top: auto;
  bottom: 35px;
}

body[data-page="home"] .concern-law .concern-art,
body[data-page="home"] .concern-system .concern-art {
  top: auto;
  right: 9px;
  bottom: 0;
  left: auto;
  width: 245px;
  height: 218px;
}

body[data-page="home"] .concern-law h3,
body[data-page="home"] .concern-system h3 {
  top: 38px;
  left: 22px;
  width: 270px;
}

body[data-page="home"] .concern-law p,
body[data-page="home"] .concern-system p {
  top: 125px;
  left: 28px;
  width: 245px;
}

.strength-icon,
.mission-icon,
.contact-icon-img,
.inquiry-icon-img {
  object-fit: contain !important;
  object-position: center;
}

.strength-icon {
  width: 50px !important;
  height: 50px !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.mission-icon {
  width: 58px !important;
  height: 58px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.contact-icon-img {
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 8px;
}

.inquiry-icon-img {
  width: 58px !important;
  height: 58px !important;
}

.gallery-track {
  width: 200vw;
}

.gallery-set {
  flex: 0 0 100vw;
  grid-template-columns: repeat(5, 20vw);
}

.gallery-slide img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.footer-logo span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.pdf-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 24px;
  width: 24px;
  height: 29px;
  border: 2px solid currentcolor;
  border-radius: 2px;
}

.pdf-icon::before {
  position: absolute;
  top: 7px;
  left: 3px;
  content: "PDF";
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.pdf-icon::after {
  position: absolute;
  right: -2px;
  bottom: 4px;
  left: 3px;
  height: 2px;
  content: "";
  background: currentcolor;
  box-shadow: 0 5px 0 currentcolor;
}

@media (max-width: 820px) {
  body[data-page="home"] .hero-slide {
    object-fit: cover;
  }

  body[data-page="home"] .hero-copy {
    top: 154px;
    left: 18px;
    width: calc(100% - 90px);
  }

  body[data-page="home"] .hero-copy h1 {
    gap: 5px;
    font-size: clamp(21px, 6.5vw, 30px);
    line-height: 1.45;
  }

  body[data-page="home"] .hero-copy h1 span {
    padding: 1px 6px;
  }

  body[data-page="home"] .hero-dots {
    bottom: 12px;
    gap: 9px;
  }

  body[data-page="home"] .hero-dots span {
    width: 7px;
    height: 7px;
  }

  body[data-page="home"] .hero-side-links {
    top: calc(var(--header) + 70px);
  }

  body[data-page="home"] .concern-primary .concern-art {
    top: 72px;
    right: 4%;
    width: 92%;
    height: 68%;
  }

  body[data-page="home"] .concern-primary h3 {
    top: 28px;
    left: 5%;
    width: 90%;
    font-size: 18px;
    line-height: 1.5;
  }

  body[data-page="home"] .concern-primary p {
    bottom: 22px;
    left: 6%;
    width: 88%;
    font-size: 12px;
    line-height: 1.6;
  }

  body[data-page="home"] .concern-law .concern-art,
  body[data-page="home"] .concern-system .concern-art {
    right: 0;
    width: 52%;
    height: 94%;
  }

  body[data-page="home"] .concern-law h3,
  body[data-page="home"] .concern-system h3 {
    top: 24px;
    left: 12px;
    width: 54%;
    font-size: 16px;
    line-height: 1.45;
  }

  body[data-page="home"] .concern-law p,
  body[data-page="home"] .concern-system p {
    top: 94px;
    left: 12px;
    width: 48%;
    font-size: 11px;
    line-height: 1.6;
  }

  .contact-icon-img {
    width: 42px !important;
    height: 42px !important;
  }

  .inquiry-icon-img {
    width: 46px !important;
    height: 46px !important;
  }

  .gallery-track {
    width: 780vw;
    animation-name: gallery-marquee-mobile-five;
  }

  .gallery-set {
    flex-basis: 390vw;
    grid-template-columns: repeat(5, 78vw);
  }
}

@keyframes gallery-marquee-mobile-five {
  to {
    transform: translateX(-390vw);
  }
}

@media (min-width: 821px) {
  body[data-page="reissue"] .reissue-contact-section {
    height: auto !important;
    min-height: 0;
    padding: 70px 0 110px !important;
  }
}

@media (max-width: 820px) {
  body[data-page="reissue"] .reissue-contact-section {
    height: auto !important;
    min-height: 0;
    padding-bottom: 72px;
  }
}

/* 2026-07-25 final XD image set and approved copy adjustments. */
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-note {
  margin-top: 6px !important;
  font-size: 13px !important;
  line-height: 22px !important;
}

.flow-text small {
  display: block;
  font-size: 12px;
  line-height: 20px;
}

.company-as-of {
  margin: 12px 0 0;
  font-size: 13px;
  text-align: right;
}

.course-date-list {
  display: grid;
}

.course-date-list > span {
  display: block;
}

.reissue-hero-note {
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.reissue-pre-guide {
  margin-bottom: 22px;
  color: var(--green);
  text-align: center;
}

.reissue-pre-guide p,
.reissue-postal-note {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
}

.reissue-download-list {
  display: grid;
  gap: 10px;
}

.reissue-download-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 16px;
  line-height: 25px;
  text-decoration: underline;
}

.reissue-download-list img {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reissue-postal-note {
  margin-top: 18px;
  text-align: center;
}

@media (min-width: 821px) {
  body[data-page="reissue"] .reissue-main {
    height: auto;
    padding: 70px 0 80px;
  }

  body[data-page="reissue"] .reissue-inner {
    position: static;
    width: 912px;
    height: auto;
    margin: 0 auto;
  }

  body[data-page="reissue"] .reissue-procedure-heading,
  body[data-page="reissue"] .reissue-download-heading {
    position: static;
    width: auto;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-procedure-heading .section-heading,
  body[data-page="reissue"] .reissue-download-heading .section-heading {
    position: relative;
    margin: 0;
  }

  body[data-page="reissue"] .reissue-procedure-heading .section-heading::after,
  body[data-page="reissue"] .reissue-download-heading .section-heading::after {
    position: static;
    display: block;
    width: 120px;
    height: 5px;
    margin: 22px auto 0;
    transform: none;
  }

  body[data-page="reissue"] .reissue-procedure-heading > p:last-child,
  body[data-page="reissue"] .reissue-download-heading > p:last-child {
    position: static;
    width: auto;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 28px;
  }

  body[data-page="reissue"] .reissue-table {
    position: static;
    width: 100%;
    margin: 42px 0 0;
  }

  body[data-page="reissue"] .reissue-table-row,
  body[data-page="reissue"] .reissue-table-row:nth-child(1),
  body[data-page="reissue"] .reissue-table-row:nth-child(2),
  body[data-page="reissue"] .reissue-table-row:nth-child(3) {
    height: auto;
    min-height: 0;
  }

  body[data-page="reissue"] .reissue-table-row h3,
  body[data-page="reissue"] .reissue-table-row > div {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  body[data-page="reissue"] .reissue-download-heading {
    margin-top: 76px;
  }

  body[data-page="reissue"] .reissue-download-list {
    margin-top: 24px;
  }

  body[data-page="reissue"] .reissue-contact-section {
    height: 1547px;
    padding: 70px 0 0;
  }

  body[data-page="reissue"] .reissue-contact-section > .narrow > .heading-center .section-heading {
    margin-top: 0;
  }

  body[data-page="reissue"] .reissue-contact-section > .narrow > .heading-center .section-heading::after {
    width: 120px;
    height: 5px;
  }

  body[data-page="reissue"] .reissue-contact-section .form-shell {
    margin-top: 54px;
  }

  body[data-page="reissue"] .reissue-contact-section .form-field input:not([type="radio"]):not([type="checkbox"]),
  body[data-page="reissue"] .reissue-contact-section .form-field select,
  body[data-page="reissue"] .reissue-contact-section .form-field textarea {
    border-color: #888;
  }

  body[data-page="reissue"] .reissue-contact-section .form-submit .btn {
    border: 0;
    border-radius: 24px;
  }

  body[data-page="course-detail-b"] .site-shell {
    padding-bottom: 0;
  }

  body[data-page="course-detail-b"] .price-card::before {
    border-radius: 0;
    content: "";
    background: url("../../images/fo-28.png") center / contain no-repeat;
  }

  body[data-page="course-detail-b"] .date-card::before {
    border: 0;
    border-radius: 0;
    content: "";
    background: url("../../images/fo-32.png") center / contain no-repeat;
  }

  body[data-page="course-detail-b"] .schedule-card h3::before {
    background-image: url("../../images/fo-30.png"), url("../images/xd-icon-calendar.svg");
  }

  body[data-page="course-detail-b"] .schedule-card .schedule-row::before {
    background-image: url("../../images/fo-27.png"), url("../images/xd-icon-pin.png");
  }

  body[data-page="course-detail-b"] .application-section {
    height: 2635.5px;
  }

  body[data-page="course-detail-b"] .schedule-choice-block {
    top: 250px;
    height: 140px;
  }

  body[data-page="course-detail-b"] .schedule-choice-block .form-field {
    margin-top: 8px;
  }

  body[data-page="course-detail-b"] .schedule-choice-block .form-field > label {
    height: 34px;
    min-height: 34px;
  }

  body[data-page="course-detail-b"] .schedule-choice-block select {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid #888;
    border-radius: 5px;
    background: #fff;
  }

  body[data-page="course-detail-b"] .lunch-note {
    top: 410.5px;
  }

  body[data-page="course-detail-b"] .participant-block {
    top: 432.5px;
  }

  body[data-page="course-detail-b"] .personal-note {
    top: 1210.5px;
  }

  body[data-page="course-detail-b"] .business-block {
    top: 1234.5px;
  }

  body[data-page="course-detail-b"] .payment-block {
    top: 2211.9px;
  }

  body[data-page="course-detail-b"] .invoice-block {
    top: 2400px;
    height: 100px;
  }

  body[data-page="course-detail-b"] .invoice-options {
    display: flex;
    gap: 64px;
    margin: 18px 0 0 38px;
  }

  body[data-page="course-detail-b"] .invoice-options label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
  }

  body[data-page="course-detail-b"] .application-submit {
    top: 2520px;
  }

  body[data-page="course-detail-a"] .price-card::before {
    border-radius: 0;
    content: "";
    background: url("../../images/fo-28.png") center / contain no-repeat;
  }

  body[data-page="course-detail-a"] .date-card::before {
    border: 0;
    border-radius: 0;
    content: "";
    background: url("../../images/fo-32.png") center / contain no-repeat;
  }

  body[data-page="course-detail-a"] .schedule-card h3::before {
    background-image: url("../../images/fo-30.png"), url("../images/xd-icon-calendar.svg");
  }

  body[data-page="course-detail-a"] .schedule-card .schedule-row::before {
    background-image: url("../../images/fo-27.png"), url("../images/xd-icon-pin.png");
  }

  body[data-page="course-detail-a"] .application-section {
    height: 3065.5px;
  }

  body[data-page="course-detail-a"] .schedule-choice-block {
    top: 282.3px;
    height: 220px;
  }

  body[data-page="course-detail-a"] .schedule-choice-block > p {
    margin: 4px 0 12px;
    font-size: 14px;
  }

  body[data-page="course-detail-a"] .schedule-choice-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body[data-page="course-detail-a"] .schedule-choice-options label {
    display: flex;
    align-items: center;
    min-height: 42px;
    gap: 14px;
    padding: 6px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: var(--cream);
    font-size: 15px;
  }

  body[data-page="course-detail-a"] .schedule-choice-options label.is-unavailable {
    color: #888;
    background: #f3f3f3;
  }

  body[data-page="course-detail-a"] .attendance-block {
    top: 532.3px;
  }

  body[data-page="course-detail-a"] .lunch-note {
    top: 674.9px;
  }

  body[data-page="course-detail-a"] .participant-block {
    top: 696.9px;
  }

  body[data-page="course-detail-a"] .personal-note {
    top: 1473.9px;
  }

  body[data-page="course-detail-a"] .business-block {
    top: 1495.9px;
  }

  body[data-page="course-detail-a"] .payment-block {
    top: 2552.1px;
  }

  body[data-page="course-detail-a"] .invoice-block {
    top: 2750px;
    height: 130px;
  }

  body[data-page="course-detail-a"] .invoice-options {
    display: flex;
    gap: 64px;
    margin: 25px 0 0 38px;
  }

  body[data-page="course-detail-a"] .invoice-options label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
  }

  body[data-page="course-detail-a"] .application-submit {
    top: 2942px;
  }

  body[data-page="courses"] .course-meta div:nth-child(1)::before {
    background-image: url("../../images/fo-30.png"), url("../images/xd-icon-calendar.svg");
  }

  body[data-page="courses"] .course-meta div:nth-child(2)::before {
    background-image: url("../../images/fo-27.png"), url("../images/xd-icon-pin.png");
  }

  body[data-page="courses"] .course-meta div:nth-child(3)::before {
    border-radius: 0;
    content: "";
    background: url("../../images/fo-28.png") center / contain no-repeat;
  }

  body[data-page="courses"] .course-meta div:nth-child(4)::before {
    background-image: url("../../images/fo-19.png"), url("../images/xd-icon-people.png");
  }

  body[data-page="courses"] .course-meta .course-date-list {
    top: 49px;
    display: grid;
    gap: 0;
  }

  body[data-page="courses"] .course-meta .course-date-list > span {
    position: static;
    font-size: 14px;
    line-height: 20px;
  }

  body[data-page="company"] .site-shell {
    padding-bottom: 0;
  }

  body[data-page="company"] .company-mission {
    height: 597.5px;
  }

  body[data-page="company"] .company-table tr:nth-child(-n+6) {
    height: 60px;
  }

  body[data-page="company"] .company-table tr:nth-child(7) {
    height: 115px;
  }

  body[data-page="company"] .company-table tr:nth-child(8) {
    height: 300px;
  }

  body[data-page="consulting"] .site-shell {
    padding-bottom: 0;
  }

  body[data-page="consulting"] .consulting-form-section {
    height: 1360px;
  }

  body[data-page="consulting"] .consulting-intro {
    height: 180px;
    margin-bottom: 40px;
  }

  body[data-page="home"] .hero-art-label {
    top: 28px;
    left: calc(50% - 580px);
    width: 150px;
    height: 32px;
    background: var(--red);
    font-size: 15px;
    line-height: 32px;
  }

  body[data-page="home"] .concern-card {
    background-image: none;
  }

  body[data-page="home"] .concern-art {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body[data-page="home"] .flow-list {
    margin-top: 35px;
  }

  .gallery-set {
    grid-template-columns: repeat(4, 25vw);
  }
}

@media (max-width: 820px) {
  body[data-page="reissue"] .reissue-procedure-heading > p:last-child {
    font-size: 14px;
    line-height: 1.8;
  }

  body[data-page="reissue"] .reissue-table {
    position: static;
    width: 100%;
    margin-top: 34px;
  }

  body[data-page="reissue"] .reissue-table-row,
  body[data-page="reissue"] .reissue-table-row:nth-child(1),
  body[data-page="reissue"] .reissue-table-row:nth-child(2),
  body[data-page="reissue"] .reissue-table-row:nth-child(3) {
    height: auto;
  }

  body[data-page="reissue"] .reissue-download-heading {
    margin-top: 58px;
  }

  body[data-page="home"] .hero-art-label {
    top: 14px;
    left: 16px;
    display: grid;
    width: 128px;
    height: 28px;
    margin: 0;
    color: #fff;
    place-items: center;
    background: var(--red);
    font-size: 12px;
    font-weight: 700;
  }

  body[data-page="home"] .concern-art {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body[data-page="home"] .concern-card {
    position: relative;
    background-image: none;
  }

  .gallery-track {
    width: 624vw;
    animation-name: gallery-marquee-mobile-final;
  }

  .gallery-set {
    flex-basis: 312vw;
    grid-template-columns: repeat(4, 78vw);
  }
}

@keyframes gallery-marquee-mobile-final {
  to {
    transform: translateX(-312vw);
  }
}

/* 2026-07-22 smartphone-only refinements. Desktop coordinates stay unchanged. */
@media (max-width: 820px) {
  .sp-only {
    display: initial;
  }

  /* Lower-page MVs use the photo across the full canvas with one dark layer. */
  .page-hero {
    position: relative;
    display: block;
    overflow: hidden;
    background: #222;
  }

  .page-hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: rgb(0 0 0 / 38%);
    pointer-events: none;
  }

  .page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-copy {
    z-index: 2;
    background: none;
  }

  .page-hero-copy .en,
  .page-hero-copy h1 {
    color: #fff;
    text-shadow: 0 2px 8px rgb(0 0 0 / 35%);
  }

  .page-hero-copy .en {
    opacity: .9;
  }

  .page-hero .placeholder-photo[data-placeholder]::after {
    z-index: 3;
  }

  /* TOP right-side menu follows the right edge just like the desktop design. */
  body[data-page="home"] .hero-side-links {
    position: fixed;
    z-index: 35;
    top: calc(var(--header) + 70px);
    right: 0;
    bottom: auto;
    left: auto;
    display: grid;
    width: 72px;
    height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 6px 8px 8px;
    border-radius: 14px 0 0 14px;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 3px 12px rgb(0 0 0 / 14%);
  }

  body[data-page="home"] .hero-side-link {
    position: relative;
    width: 58px;
    height: 138px;
    padding: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffa732, #fb8b02);
    font-size: 13px;
    line-height: 1.25;
    writing-mode: horizontal-tb;
  }

  body[data-page="home"] .hero-side-reissue {
    background: linear-gradient(180deg, #fe6169, #f44344);
  }

  body[data-page="home"] .hero-side-link > span:last-child {
    position: absolute;
    top: 49px;
    left: 20px;
    letter-spacing: .04em;
    writing-mode: vertical-rl;
  }

  body[data-page="home"] .hero-side-icon {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 23px;
    height: 29px;
    border: 2px solid #fff;
    border-radius: 3px;
  }

  body[data-page="home"] .hero-side-course .hero-side-icon::before,
  body[data-page="home"] .hero-side-course .hero-side-icon::after {
    position: absolute;
    right: 4px;
    left: 4px;
    height: 2px;
    content: "";
    background: #fff;
    box-shadow: 0 6px 0 #fff, 0 12px 0 #fff;
  }

  body[data-page="home"] .hero-side-course .hero-side-icon::before {
    top: 6px;
  }

  body[data-page="home"] .hero-side-reissue .hero-side-icon {
    border-radius: 5px;
  }

  body[data-page="home"] .hero-side-reissue .hero-side-icon::before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
  }

  body[data-page="home"] .hero-side-reissue .hero-side-icon::after {
    position: absolute;
    right: 4px;
    bottom: 4px;
    left: 4px;
    height: 2px;
    content: "";
    background: #fff;
    box-shadow: 0 -5px 0 #fff;
  }

  body[data-page="home"] .concerns-section .section-heading {
    white-space: nowrap;
  }

  body[data-page="home"] .service-consulting {
    min-height: 540px;
  }

  body[data-page="home"] .service-consulting .service-card-body {
    height: 380px;
  }

  /* Three course categories per row without horizontal scrolling. */
  body[data-page="courses"] .filter-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
    padding-bottom: 0;
    overflow: visible;
  }

  body[data-page="courses"] .filter-button {
    width: 100%;
    min-width: 0;
    height: 44px;
    font-size: 12px;
  }

  /* Company table labels and mission icons. */
  body[data-page="company"] .company-profile-section .company-table th {
    display: block;
    width: 100%;
  }

  body[data-page="company"] .mission-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    object-fit: contain;
  }

  /* Course detail schedule status and payment-date input. */
  body[data-page^="course-detail"] .schedule-row .status {
    align-self: center;
    justify-self: end;
    width: auto;
    color: var(--green);
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
  }

  body[data-page^="course-detail"] .schedule-row .status.full,
  body[data-page^="course-detail"] .schedule-row .status.few {
    color: var(--red);
  }

  body[data-page^="course-detail"] .payment-block .payment-options {
    width: 100%;
    gap: 16px;
    padding: 20px;
    border-radius: 10px;
    background: #f5f8f3;
  }

  body[data-page^="course-detail"] .payment-block .payment-date {
    display: block;
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    border: 1px solid #aaa;
    border-radius: 8px;
    outline: 0;
    background: #fff;
    box-shadow: inset 0 1px 3px rgb(0 0 0 / 6%);
    font-size: 16px;
  }

  body[data-page^="course-detail"] .payment-block .payment-date:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgb(28 155 5 / 12%);
  }

  /* On mobile each photo remains large enough to read while flowing. */
  .gallery-track {
    width: 624vw;
    animation-name: gallery-marquee-mobile-final;
    animation-duration: 24s;
  }

  .gallery-set {
    flex-basis: 312vw;
    grid-template-columns: repeat(4, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}

/* Authoritative TOP review overrides. */
@media (min-width: 821px) {
  body[data-page="home"] .concern-primary .concern-art {
    inset: auto 75px auto auto;
    top: 100px;
    width: 350px;
    height: 300px;
    object-fit: contain;
  }

  body[data-page="home"] .concern-primary h3 {
    top: 43px;
  }

  body[data-page="home"] .concern-primary p {
    top: auto;
    bottom: 27px;
  }

  .gallery-track {
    width: 200vw;
  }

  .gallery-set {
    flex: 0 0 100vw;
    grid-template-columns: repeat(5, 20vw);
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .concerns-section .section-heading {
    white-space: normal;
  }

  body[data-page="home"] .concern-card,
  body[data-page="home"] .concern-card.is-large,
  body[data-page="home"] .concerns-stack .concern-card {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    background: var(--cream);
  }

  body[data-page="home"] .concern-primary {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    padding: 24px 20px 22px;
  }

  body[data-page="home"] .concern-primary h3,
  body[data-page="home"] .concern-primary p,
  body[data-page="home"] .concern-primary .concern-art {
    position: static !important;
    width: 100%;
  }

  body[data-page="home"] .concern-primary h3 {
    order: 1;
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    text-align: center;
  }

  body[data-page="home"] .concern-primary .concern-art {
    order: 2;
    height: 290px;
    margin: 8px auto 4px;
    object-fit: contain;
  }

  body[data-page="home"] .concern-primary p {
    order: 3;
    margin: auto 0 0;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card {
    display: grid;
    min-height: 245px;
    grid-template-columns: minmax(0, 1fr) 46%;
    grid-template-rows: auto 1fr;
    padding: 22px 12px 18px 18px;
  }

  body[data-page="home"] .concerns-stack .concern-card h3,
  body[data-page="home"] .concerns-stack .concern-card p,
  body[data-page="home"] .concerns-stack .concern-card .concern-art {
    position: static !important;
    width: auto;
  }

  body[data-page="home"] .concerns-stack .concern-card h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card p {
    align-self: start;
    grid-column: 1;
    grid-row: 2;
    margin: 24px 0 0;
    font-size: 12px;
    line-height: 1.75;
    text-align: left;
  }

  body[data-page="home"] .concerns-stack .concern-card .concern-art {
    align-self: center;
    width: 100%;
    height: 205px;
    grid-column: 2;
    grid-row: 1 / 3;
    object-fit: contain;
  }

  body[data-page="home"] .service-consulting {
    min-height: 0;
  }

  body[data-page="home"] .service-consulting .service-card-body {
    display: flex;
    height: auto;
    min-height: 400px;
    flex-direction: column;
    padding-bottom: 24px;
  }

  body[data-page="home"] .service-consulting .card-button {
    position: static;
    width: 100%;
    margin: 32px auto 0;
  }

  .gallery-track {
    width: 780vw;
    animation-name: gallery-marquee-mobile-five;
    animation-duration: 28s;
  }

  .gallery-set {
    flex: 0 0 390vw;
    grid-template-columns: repeat(5, 78vw);
  }
}

/* Final v7 overrides — do not place rules below this block. */
body[data-page^="course-detail"] .schedule-card h3::before {
  background: url("../../images/fo-30.png") center / contain no-repeat !important;
  background-image: url("../../images/fo-30.png") !important;
}

body[data-page^="course-detail"] .schedule-card .schedule-row::before {
  background: url("../../images/fo-27.png") center / contain no-repeat !important;
  background-image: url("../../images/fo-27.png") !important;
}

body[data-page^="course-detail"] .form-title-row {
  display: grid !important;
  min-height: 44px;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

body[data-page^="course-detail"] .form-title-row .form-section-title {
  margin: 0 !important;
}

body[data-page^="course-detail"] .form-title-row .lunch-note,
body[data-page^="course-detail"] .form-title-row .personal-note {
  position: static !important;
  width: auto !important;
  margin: 0 !important;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-align: left !important;
}

body[data-page="course-detail-a"] .schedule-choice-block .form-field {
  margin-top: 8px !important;
}

body[data-page="course-detail-a"] .schedule-choice-block .form-field > label {
  height: 34px !important;
  min-height: 34px !important;
}

body[data-page="course-detail-a"] .schedule-choice-block select {
  width: 100% !important;
  height: 58px !important;
  padding: 0 18px !important;
  border: 1px solid #888 !important;
  border-radius: 5px !important;
  background: #fff !important;
}

.contact-card {
  position: relative;
}

.contact-card .contact-icon-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 821px) {
  .page-hero-copy {
    position: relative;
    z-index: 4 !important;
    overflow: visible !important;
  }

  .page-hero-image {
    z-index: 1 !important;
  }

  body[data-page="consulting"] .page-hero-copy h1 {
    position: relative;
    z-index: 5 !important;
  }

  body[data-page="contact"] .inquiry-icon-img {
    left: 0 !important;
    display: block !important;
  }

  body[data-page="contact"] .inquiry-method h3 {
    left: 80px !important;
  }

  body[data-page="course-detail-a"] .application-section {
    height: 2920px !important;
  }

  body[data-page="course-detail-a"] .schedule-choice-block {
    top: 250px !important;
    height: 140px !important;
  }

  body[data-page="course-detail-a"] .attendance-block {
    top: 420px !important;
    height: 110px !important;
  }

  body[data-page="course-detail-a"] .participant-block {
    top: 555px !important;
  }

  body[data-page="course-detail-a"] .business-block {
    top: 1355px !important;
  }

  body[data-page="course-detail-a"] .payment-block {
    top: 2410px !important;
  }

  body[data-page="course-detail-a"] .invoice-block {
    top: 2610px !important;
  }

  body[data-page="course-detail-a"] .application-submit {
    top: 2800px !important;
  }
}

@media (max-width: 820px) {
  body[data-page^="course-detail"] .form-title-row {
    display: block !important;
    min-height: 0;
  }

  body[data-page^="course-detail"] .form-title-row .lunch-note,
  body[data-page^="course-detail"] .form-title-row .personal-note {
    margin-top: 8px !important;
    font-size: 13px;
  }

  body[data-page^="course-detail"] .schedule-choice-block select {
    width: 100% !important;
    height: 60px !important;
    padding: 0 14px !important;
    border: 1px solid #888 !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 14px !important;
  }

  .contact-card {
    min-height: 220px !important;
    padding-top: 86px !important;
  }

  .contact-card .contact-icon-img {
    top: 24px !important;
    width: 48px !important;
    height: 48px !important;
  }
}
