/*
Theme Name: Bloomia Career
Theme URI: https://example.com/bloomia-career
Author: TSUNAGU
Description: 女性向けキャリアスクールのカスタムWordPressテーマ。
Version: 1.0.5
Requires at least: 6.4
Tested up to: 7.1
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bloomia-career
*/

:root {
  --ink: #39152e;
  --plum: #67204d;
  --coral: #f26b5e;
  --coral-hot: #a83230;
  --coral-hover: #ff8577;
  --ivory: #fff9f1;
  --paper: #fff;
  --blush: #f7ded8;
  --sage: #d9e2cf;
  --line: #d8c9c1;
  --muted: #6b5261;
  --display: "Shippori Mincho", "Yu Mincho", serif;
  --body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --meta: "DM Sans", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 6px 6px 0 var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ivory);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 241, 0.94);
  border-bottom: 1px solid rgba(103, 32, 77, 0.14);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  width: min(1320px, calc(100vw - 48px));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  text-decoration: none;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 48% 52%/60% 44% 56% 40%;
  background-color: var(--coral);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'%3E%3Ctext x='22' y='31' text-anchor='middle' font-family='Georgia,serif' font-size='28' font-weight='700' fill='%2339152e'%3EB%3C/text%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: transparent;
  font-size: 0;
  flex: 0 0 36px;
  transform: rotate(-7deg);
}
.brand__text {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25em;
  min-width: 0;
  font: 600 21px var(--display);
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.brand__text > span,
.brand__text > b {
  white-space: nowrap;
}
.brand__text b {
  color: var(--coral-hot);
}
.primary-nav,
.primary-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.primary-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.primary-menu a:hover {
  color: var(--coral-hot);
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 12px;
}
.nav-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 13px 25px;
  background: var(--coral);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  background: var(--coral-hover);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}
.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  box-shadow: 4px 4px 0 var(--ink);
}
.button--outline {
  background: transparent;
}
.button--full {
  width: 100%;
}
.button:focus-visible,
.text-link:focus-visible,
.primary-menu a:focus-visible,
.course-card a:focus-visible {
  box-shadow: 0 0 0 6px var(--ivory);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding-block: 8px;
  font: 700 13px var(--meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font: 700 12px var(--meta);
  letter-spacing: 0.13em;
}
.eyebrow:before {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}
.section {
  padding: 112px 0;
}
.section-heading h2 {
  margin: 0;
  font: 600 clamp(34px, 4.5vw, 64px) / 1.38 var(--display);
  letter-spacing: -0.05em;
}
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}
.section-heading--split > p {
  max-width: 460px;
  margin: 0 0 10px;
  color: var(--muted);
}
.section-heading--center {
  text-align: center;
}
.section-heading--center .eyebrow {
  justify-content: center;
}
.section-heading--center .eyebrow:after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}
.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  background: var(--blush);
  overflow: hidden;
}
.hero__image-wrap {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}
.hero__image-wrap:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(transparent, rgba(57, 21, 46, 0.2));
}
.hero__image-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 30px;
  color: #fff;
  font: 700 11px var(--meta);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 5vw, 92px);
  position: relative;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(255, 255, 255, 0.65),
      transparent 32%
    ),
    var(--blush);
}
.hero__copy:after {
  content: "✦";
  position: absolute;
  right: 7%;
  bottom: 9%;
  font-size: 52px;
  color: var(--coral);
  transform: rotate(15deg);
}
.hero h1 {
  margin: 0;
  font: 600 clamp(46px, 4.5vw, 70px) / 1.24 var(--display);
  letter-spacing: -0.065em;
}
.hero__headline-main {
  display: block;
  white-space: nowrap;
}
.hero__headline-main > span {
  white-space: nowrap;
}
.hero h1 em {
  display: block;
  color: var(--coral-hot);
  font-style: normal;
  position: relative;
  white-space: normal;
}
.hero h1 em > span {
  display: inline-block;
  white-space: nowrap;
}
.hero h1 em:after {
  content: "";
  position: absolute;
  left: 2%;
  right: -3%;
  bottom: 0.02em;
  height: 8px;
  background: var(--coral);
  opacity: 0.35;
  transform: rotate(-2deg);
}
.hero__lead {
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 2;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.hero__note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  border-block: 1px solid var(--ink);
}
.marquee div {
  width: max-content;
  padding: 12px 0;
  font: 600 13px var(--meta);
  letter-spacing: 0.16em;
  word-spacing: 1em;
}
.marquee i {
  color: var(--coral);
  font-style: normal;
}
.empathy {
  background: var(--ivory);
}
.empathy__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: start;
}
.empathy__voices {
  border-top: 1px solid var(--line);
}
.empathy__voices p {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  margin: 0;
  padding: 23px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.empathy__voices span {
  font: 600 11px var(--meta);
  color: var(--coral-hot);
}
.empathy__answer {
  margin-top: 82px;
  text-align: center;
}
.empathy__answer p {
  margin: 0;
  font: 500 clamp(24px, 3.2vw, 40px) var(--display);
}
.empathy__answer strong {
  position: relative;
  color: var(--coral-hot);
}
.empathy__answer strong:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  background: var(--coral);
}
.reasons {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.reason-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.reason-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.reason-card--large {
  grid-row: span 2;
  min-height: 742px;
  background: var(--ink);
  color: var(--ivory);
}
.reason-card--sage {
  background: var(--sage);
}
.reason-card__number {
  position: absolute;
  top: 22px;
  right: 26px;
  font: 700 12px var(--meta);
  letter-spacing: 0.14em;
}
.reason-card h3 {
  margin: 28px 0 10px;
  font: 600 clamp(24px, 2.5vw, 36px) / 1.5 var(--display);
  letter-spacing: -0.04em;
}
.reason-card p {
  max-width: 530px;
  margin: 0;
  color: inherit;
  opacity: 0.78;
}
.reason-card__art {
  position: relative;
  height: 175px;
  margin-top: 18px;
}
.reason-card--large .reason-card__art {
  height: 400px;
  margin-top: 45px;
}
.art-project {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--coral);
  transform: rotate(-2deg);
  box-shadow: 18px 18px 0 rgba(255, 255, 255, 0.12);
}
.art-project:before,
.art-project:after {
  content: "";
  position: absolute;
  background: var(--ivory);
}
.art-project:before {
  width: 55%;
  height: 1px;
  left: 12%;
  top: 32%;
}
.art-project:after {
  width: 1px;
  height: 48%;
  right: 28%;
  bottom: 15%;
}
.art-project b,
.art-project em {
  position: absolute;
  font: 700 clamp(23px, 4vw, 48px) / 1 var(--meta);
  letter-spacing: -0.05em;
  color: var(--ink);
}
.art-project b {
  left: 10%;
  top: 12%;
}
.art-project em {
  right: 7%;
  bottom: 8%;
  font-style: normal;
}
.art-coach {
  border-radius: 50% 50% 42% 58%;
  background: var(--coral);
  width: 170px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  transform: rotate(7deg);
}
.art-coach span {
  font: 700 54px var(--meta);
}
.art-coach i {
  position: absolute;
  width: 65px;
  height: 65px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  right: -20px;
  bottom: 0;
}
.art-community {
  display: flex;
  justify-content: center;
  align-items: center;
}
.art-community i {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--ink);
  margin-left: -25px;
}
.art-community i:nth-child(2) {
  background: var(--coral);
  transform: translateY(-18px);
}
.art-community i:nth-child(3) {
  background: var(--plum);
}
.courses {
  background: var(--ivory);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.course-card {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.4);
  transition:
    background 0.2s,
    transform 0.2s;
}
.course-card:nth-child(3n + 2) {
  background: rgba(247, 222, 216, 0.46);
}
.course-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}
.course-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 600 11px var(--meta);
  letter-spacing: 0.1em;
}
.course-card__meta span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.course-card h3 {
  margin: 55px 0 14px;
  font: 600 24px var(--display);
}
.course-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.course-card a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-block: 8px;
  font: 700 11px var(--meta);
  letter-spacing: 0.1em;
  text-decoration: none;
}
.support {
  background: var(--blush);
}
.support__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.support__sticky {
  align-self: start;
  position: sticky;
  top: 125px;
}
.support__sticky h2 {
  margin: 0 0 25px;
  font: 600 clamp(35px, 4vw, 56px) / 1.4 var(--display);
  letter-spacing: -0.05em;
}
.support__sticky > p:not(.eyebrow) {
  max-width: 450px;
  margin: 0 0 28px;
  color: var(--muted);
}
.support__steps {
  border-top: 1px solid var(--ink);
}
.support__steps article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 34px 12px;
  border-bottom: 1px solid var(--ink);
}
.support__steps article > span {
  font: 700 11px var(--meta);
  color: var(--coral-hot);
  letter-spacing: 0.1em;
}
.support__steps h3 {
  margin: 0 0 10px;
  font: 600 28px var(--display);
}
.support__steps p {
  margin: 0;
  color: var(--muted);
}
.stories {
  background: var(--paper);
}
.stories .section-heading {
  margin-bottom: 54px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.story-card {
  border: 1px solid var(--ink);
  border-radius: 180px 180px 24px 24px;
  padding: 22px 22px 28px;
  overflow: hidden;
}
.story-card--coral {
  background: var(--blush);
}
.story-card--plum {
  background: var(--plum);
  color: #fff;
}
.story-card--sage {
  background: var(--sage);
}
.story-card__portrait {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--coral);
}
.story-card__portrait:before {
  content: "";
  position: absolute;
  width: 62%;
  height: 70%;
  left: 18%;
  bottom: -26%;
  background: var(--ink);
  border-radius: 50% 50% 20% 20%;
}
.story-card__portrait:after {
  content: "";
  position: absolute;
  width: 36%;
  height: 36%;
  left: 32%;
  top: 22%;
  background: var(--ivory);
  border: 6px solid var(--ink);
  border-radius: 50%;
}
.story-card__portrait span {
  position: absolute;
  z-index: 2;
  right: 18%;
  top: 12%;
  font: 700 40px var(--display);
  color: var(--ink);
}
.story-card__portrait.has-image:before,
.story-card__portrait.has-image:after {
  display: none;
}
.story-card__portrait.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card h3 a {
  display: inline-block;
  min-height: 44px;
}
.portrait-two {
  background: var(--sage);
}
.portrait-three {
  background: var(--ivory);
}
.story-card__tag {
  margin: 24px 0 12px;
  font: 700 11px var(--meta);
  letter-spacing: 0.08em;
}
.story-card h3 {
  margin: 0 0 18px;
  font: 600 22px/1.65 var(--display);
}
.story-card div > p:last-child {
  margin: 0;
  font-size: 12px;
  opacity: 0.75;
}
.sample-note,
.pricing__note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.pricing {
  background: var(--ivory);
}
.price-grid {
  min-width: 0;
  max-width: 100%;
  max-width: 920px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.price-card {
  min-width: 0;
  max-width: 100%;
  position: relative;
  padding: 42px 38px;
  border: 1px solid var(--ink);
  border-radius: 26px;
  background: var(--paper);
}
.price-card--featured {
  padding-block: 56px;
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 12px 12px 0 var(--coral);
}
.price-card__recommend {
  position: absolute;
  top: -16px;
  right: 28px;
  margin: 0;
  background: var(--coral);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
}
.price-card__label {
  font: 700 12px var(--meta);
  letter-spacing: 0.16em;
  color: var(--coral-hot);
}
.price-card--featured .price-card__label {
  color: var(--coral);
}
.price-card h3 {
  margin: 5px 0;
  font: 600 29px var(--display);
}
.price-card > p:nth-of-type(3) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.price-card--featured > p:nth-of-type(3) {
  color: rgba(255, 255, 255, 0.72);
}
.price {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
  align-items: end;
  gap: 5px;
  margin: 24px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.price > small {
  margin-bottom: 7px;
}
.price strong {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font: 600 52px/1 var(--meta);
  letter-spacing: -0.06em;
}
.price span {
  min-width: 0;
  max-width: 100%;
  line-height: 1.2;
}
.price span small {
  display: block;
  font-size: 10px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.price-card li {
  position: relative;
  padding: 9px 0 9px 27px;
}
.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}
.price-card .button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.consultation-form,
.field,
.field input,
.field select,
.button {
  min-width: 0;
  max-width: 100%;
}
.pricing__note {
  text-align: center;
}
.comparison {
  background: var(--paper);
}
.comparison .section-heading {
  margin-bottom: 48px;
}
.table-scroll {
  overflow-x: auto;
}
.comparison table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.comparison th,
.comparison td {
  padding: 20px;
  border: 1px solid var(--line);
  text-align: center;
}
.comparison th:first-child,
.comparison tbody th {
  text-align: left;
}
.comparison thead th {
  font: 700 13px var(--meta);
  letter-spacing: 0.04em;
}
.comparison .is-bloomia {
  background: var(--blush);
  border-color: var(--coral);
}
.faq {
  background: var(--sage);
}
.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.faq__list {
  border-top: 1px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--ink);
}
.faq summary {
  list-style: none;
  position: relative;
  padding: 26px 50px 26px 0;
  font-weight: 700;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  margin-right: 18px;
  font: 700 16px var(--meta);
  color: var(--coral-hot);
}
.faq summary:after {
  content: "＋";
  position: absolute;
  right: 5px;
  top: 22px;
  font-size: 25px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details div {
  padding: 0 44px 25px;
}
.faq details p {
  margin: 0;
  color: var(--muted);
}
.consultation {
  position: relative;
  background: var(--plum);
  color: var(--ivory);
  overflow: hidden;
}
.consultation:before,
.consultation:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--coral);
}
.consultation:before {
  width: 420px;
  height: 420px;
  left: -230px;
  top: -210px;
}
.consultation:after {
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: -100px;
  background: var(--coral);
}
.consultation__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.consultation__copy {
  position: sticky;
  top: 125px;
}
.consultation__copy h2 {
  margin: 0 0 26px;
  font: 600 clamp(40px, 5vw, 65px) / 1.4 var(--display);
  letter-spacing: -0.05em;
}
.consultation__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}
.consultation__copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.consultation__copy li {
  padding: 9px 0;
}
.consultation__copy li:before {
  content: "✦";
  color: var(--coral);
  margin-right: 12px;
}
.consultation__form-wrap {
  padding: 34px;
  background: var(--ivory);
  color: var(--ink);
  border-radius: 28px;
}
.form-status {
  margin: 0 0 26px;
  padding: 15px 17px;
  background: var(--blush);
  border-left: 4px solid var(--coral);
  font-size: 13px;
  line-height: 1.6;
}
.form-status strong {
  display: block;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}
.field label em {
  font-style: normal;
  color: var(--coral-hot);
  font-size: 11px;
}
.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 10px 13px;
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  border-color: var(--plum);
}
.field input[aria-invalid="true"] {
  border-color: #b3261e;
  background: #fff8f7;
}
.field-error {
  display: block;
  min-height: 1.4em;
  color: #9d241d;
  font-size: 12px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 22px;
  font-size: 13px;
}
.check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.form-notice {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.site-footer {
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--ivory);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.brand--footer {
  color: #fff;
}
.site-footer__inner p {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .primary-menu {
  flex-wrap: wrap;
}
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}
.archive-hero,
.single-hero,
.page-hero {
  padding: 100px 0 65px;
  background: var(--blush);
  border-bottom: 1px solid var(--line);
}
.archive-hero h1,
.single-hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font: 600 clamp(40px, 6vw, 76px) / 1.3 var(--display);
  letter-spacing: -0.05em;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-block: 75px 110px;
}
.content-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
}
.content-card__image {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  background: var(--blush);
}
.content-card__body {
  padding: 24px;
}
.content-card__meta {
  font: 700 11px var(--meta);
  color: var(--coral-hot);
  letter-spacing: 0.1em;
}
.content-card h2 {
  margin: 12px 0;
  font: 600 24px/1.45 var(--display);
}
.content-card h2 a {
  text-decoration: none;
}
.content-card p {
  color: var(--muted);
}
.entry-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 75px 24px 110px;
}
.entry-content {
  font-size: 17px;
}
.entry-content > * + * {
  margin-top: 1.5em;
}
.entry-content h2,
.entry-content h3 {
  font-family: var(--display);
  line-height: 1.5;
}
.entry-content a {
  color: var(--coral-hot);
}
.entry-thumbnail {
  margin-bottom: 45px;
  border-radius: 24px;
}
.pagination {
  grid-column: 1/-1;
  margin-top: 30px;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.empty-state {
  grid-column: 1/-1;
  padding: 70px;
  text-align: center;
  background: var(--blush);
  border-radius: 22px;
}
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
@media (max-width: 1100px) {
  .primary-menu {
    gap: 16px;
  }
  .primary-menu a {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 48% 52%;
  }
  .hero__copy {
    padding-inline: 45px;
  }
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-grid {
    gap: 14px;
  }
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }
  .section {
    padding: 76px 0;
  }
  .site-header__inner {
    width: calc(100vw - 32px);
    height: 68px;
  }
  .js .nav-toggle {
    display: block;
  }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 24px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(57, 21, 46, 0.12);
  }
  .js .primary-nav {
    display: none;
  }
  .js .primary-nav.is-open {
    display: block;
  }
  .primary-menu {
    display: block;
  }
  .primary-menu li + li {
    border-top: 1px solid var(--line);
  }
  .primary-menu a {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
  }
  .primary-nav .button {
    width: 100%;
    margin-top: 15px;
  }
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero__copy {
    order: 1;
    padding: 70px 24px 60px;
  }
  .hero__image-wrap {
    order: 2;
    min-height: 520px;
  }
  .hero__image {
    object-position: 52% center;
  }
  .hero__actions {
    flex-wrap: wrap;
  }
  .hero__copy:after {
    font-size: 36px;
  }
  .section-heading--split,
  .empathy__grid,
  .support__layout,
  .faq__layout,
  .consultation__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .section-heading--split {
    margin-bottom: 42px;
  }
  .empathy__answer {
    margin-top: 55px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
  }
  .reason-card--large {
    grid-row: auto;
    min-height: 610px;
  }
  .reason-card--large .reason-card__art {
    height: 320px;
  }
  .support__sticky,
  .consultation__copy {
    position: static;
  }
  .story-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: auto;
  }
  .story-card {
    border-radius: 280px 280px 24px 24px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .price-card--featured {
    order: -1;
  }
  .faq__layout {
    gap: 35px;
  }
  .site-footer__inner,
  .site-footer__legal {
    display: block;
  }
  .site-footer nav {
    margin-top: 30px;
  }
  .site-footer .primary-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__legal span {
    display: block;
    margin-top: 8px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .consultation__form-wrap {
    padding: 24px;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: 66px 0;
  }
  .site-header__inner {
    height: auto;
    min-height: 68px;
    padding-block: 8px;
  }
  .site-header__inner .brand {
    max-width: calc(100% - 58px);
    min-height: 44px;
  }
  .brand__mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 0;
  }
  .brand__text {
    font-size: 18px;
    line-height: 1.2;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .hero__copy {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 45px;
    line-height: 1.32;
  }
  .hero__headline-main {
    white-space: normal;
  }
  .hero__headline-main > span {
    display: inline-block;
  }
  .hero__lead {
    font-size: 16px;
  }
  .hero__actions {
    display: block;
  }
  .hero__actions .text-link {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin-top: 24px;
  }
  .hero__image-wrap {
    min-height: 430px;
  }
  .hero__image-label {
    bottom: 20px;
  }
  .empathy__voices p {
    grid-template-columns: 38px 1fr;
    font-size: 15px;
  }
  .reason-card {
    padding: 24px;
  }
  .reason-card--large {
    min-height: 510px;
  }
  .reason-card--large .reason-card__art {
    height: 250px;
  }
  .reason-card h3 {
    font-size: 26px;
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
  .course-card {
    min-height: 275px;
  }
  .course-card h3 {
    margin-top: 38px;
  }
  .support__steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .story-card {
    padding: 16px 16px 26px;
  }
  .price-card,
  .price-card--featured {
    padding: 38px 24px;
  }
  .price strong {
    font-size: 43px;
  }
  .consultation__form-wrap {
    padding: 20px;
  }
  .table-scroll {
    margin-right: -16px;
    padding-right: 16px;
  }
  .site-footer {
    padding-block: 55px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
@media (forced-colors: active) {
  .button,
  .reason-card,
  .course-card,
  .price-card {
    border: 2px solid ButtonText;
  }
  .eyebrow:before {
    background: CanvasText;
  }
}
