/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
  --color-accent: #e4007f;
  --color-accent-dark: #c2006c;
  --color-text: #1a1a1a;
  --color-text-secondary: #333;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-border: #e6e6e6;
  --color-footer-bg: #333333;
  --color-footer-text: #ffffff;

  --font-sans: "Noto Sans JP", "Shippori Mincho", sans-serif;
  --font-serif: "Shippori Mincho", "Noto Sans JP", serif;

  --radius-sm: 4px;
  --radius-md: 8px;

  --section-padding-y: 100px;
  --section-padding-y-sp: 48px;

  --container-width: 1080px;
}

/* ==========================================================================
   Fonts (self-hosted)
   ========================================================================== */

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

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

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

@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.section-heading {
  margin-bottom: 40px;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 400;
  font-size: 15px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 4px 4px 0 0 rgba(248, 21, 137, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--outline:hover {
  box-shadow: 4px 4px 0 0 rgba(26, 26, 26, 0.25);
}

.btn--pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  transition: box-shadow 0.2s ease;
  background: transparent;
  background-color: transparent;
}

.btn--pill-outline:hover {
  box-shadow: 4px 4px 0 0 rgba(26, 26, 26, 0.25);
}

.btn__icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.logged-in .site-header {
  top: 32px;
}

.site-header__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.site-header__logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.site-header__logo:hover {
  opacity: 0.75;
}

.site-header__logo-img--pc {
  height: auto;
  width: 262px;
}

.site-header__logo-img--sp {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.site-nav__list a {
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.site-nav__list a:hover {
  opacity: 0.7;
}

.site-header__cta {
  padding: 6px 20px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1.32px;
  transition: opacity 0.3s ease, box-shadow 0.2s ease;
}

.site-header__cta:hover {
  opacity: 0.85;
}

.site-header__cta .btn__icon {
  width: 14px;
  height: 14px;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-header__toggle:hover {
  opacity: 0.7;
}

.site-header__toggle-bar {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

.site-nav-drawer {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}

.site-nav-drawer[hidden] {
  display: none;
}

.site-nav-drawer__close {
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-nav-drawer__close:hover {
  opacity: 0.7;
}

.site-nav-drawer__close img {
  width: 20px;
  height: 20px;
}

.site-nav-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
  font-size: 18px;
  text-align: center;
}

.site-nav-drawer__list a {
  transition: opacity 0.3s ease;
}

.site-nav-drawer__list a:hover {
  opacity: 0.7;
}

.site-nav-drawer__cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

section {
  padding: var(--section-padding-y) 24px;
}

section.hero {
  padding: 0;
}

.message__inner,
.overview__inner,
.concerns__inner,
.solutions__inner,
.reasons__inner,
.process__inner,
.news__inner,
.access__inner,
.contact__inner,
.partners__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.bg-alt {
  background: var(--color-bg-alt);
}

.overview,
.process,
.access {
  background: var(--color-bg-alt);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
}

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

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 18%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero__text {
  max-width: 555px;
}

.hero__headline {
  margin: 0 0 24px;
}

.hero__headline img {
  max-width: 100%;
  height: auto;
}

.hero__lead {
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   Message
   ========================================================================== */

.message__inner {
  text-align: center;
}

.message__headline {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.83;
  margin-bottom: 32px;
  letter-spacing: -0.95px;
}

.message__headline p {
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: -0.95px;
}

.message__photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin: 0 auto 10px;
}

.message__name {
  font-weight: 700;
  margin-bottom: 24px;
}

.message__org {
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.message__title {
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.message__body {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: left;
}

.message__body p {
  margin-bottom: 24px;
  font-size: 14px;
}

/* ==========================================================================
   Overview
   ========================================================================== */

.overview__table {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.overview__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--color-border);
}

.overview__row:last-child {
  border-bottom: none;
}

.overview__row dt {
  position: relative;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  padding: 16px 24px;
  border-right: 1px solid var(--color-border);
}

.overview__row dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  padding: 16px 24px;
}

/* ==========================================================================
   Concerns
   ========================================================================== */

.concerns__inner .section-heading {
  margin-bottom: 32px;
}

.concerns__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 840px;
  margin: 0 auto 32px;
}

.concerns__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.concerns__list li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
}

.concerns__list li:last-child {
  grid-column: 1 / -1;
}

.concerns__lead {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 48px;
}

.concerns__faq {
  max-width: 720px;
  margin: 0 auto;
  border-top: 3px solid var(--color-accent);
  padding: 32px;
  background: var(--color-bg-alt);
}

.concerns__faq-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.concerns__faq-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.concerns__faq-list li {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
}

.concerns__faq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
}

/* ==========================================================================
   Solutions
   ========================================================================== */

.solutions__inner .section-heading {
  margin-bottom: 20px;
}

.solutions__lead {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 20px;
  border-top: 3px solid var(--color-accent);
  background-color: #f8f9fa;
}

.solutions__card {
  padding: 32px;
  border-left: 1px solid var(--color-border);
}

.solutions__card:first-child {
  border-left: none;
}

.solutions__number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.solutions__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.solutions__subtitle {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #666;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.solutions__desc {
  font-size: 13px;
  color: #333;
}

.solutions__services {
  max-width: 720px;
  margin: 0 auto;
  border-top: 3px solid var(--color-accent);
  padding: 32px;
  background-color: #f8f9fa;
}

.solutions__services-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.solutions__services-subtitle {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.solutions__services-lead {
  font-size: 14px;
  margin-bottom: 10px;
}

.solutions__services-list li {
  position: relative;
  padding-left: 10px;
}

.solutions__services-list li p {
  font-size: 14px;
  line-height: 1.78;
}

.solutions__services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
}

.solutions__services-item-title {
  color: #333;
  font-weight: 500;
  line-height: 1.8;
  font-size: 14px;
}

.solutions__services-item-desc {
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

/* ==========================================================================
   Reasons
   ========================================================================== */

.reasons__grid {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.reasons__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
}

.reasons__number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}

.reasons__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.reasons__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.reasons__desc + .reasons__desc {
  margin-top: 12px;
}

/* ==========================================================================
   Process flow
   ========================================================================== */

.process__lead {
  color: var(--color-text-secondary);
  font-size: 14px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 auto 48px;
  max-width: 733px;
}

.process__step {
  padding: 32px;
  border-top: 3px solid var(--color-accent);
  background-color: #fff;
}

.process__number {
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

.process__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.5;
}

.process__subtitle {
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.process__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.process__cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   News section & Filter tabs
   ========================================================================== */

.news__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.news__filter-btn {
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.news__filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.news__filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 632px;
  margin: 0 auto;
}

.news__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: box-shadow 0.2s ease;
}

.news__item:hover {
  box-shadow: 0 12px 28px rgba(20, 20, 30, 0.1);
}

.news__row-heading {
  margin: 0;
}

.news__row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.news__date {
  color: var(--color-text-secondary);
  font-size: 13px;
  flex-shrink: 0;
}

.news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  flex-shrink: 0;
  width: auto;
  white-space: nowrap;
  text-align: center;
}

.news__tag--notice {
  background: #f2f2f2;
  color: #e4007f;
}

.news__tag--press {
  background: #e8f2fe;
  color: #2b7fff;
}

.news__tag--media {
  background: #e6f9f0;
  color: #00b06b;
}

.news__tag--course {
  background: #f3e8ff;
  color: #7e22ce;
}

.news__title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.news__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.news__toggle-icon img {
  width: 14px;
  height: 14px;
}

.news__row[aria-expanded="true"] .news__toggle-icon {
  transform: rotate(45deg);
}

.news__panel {
  padding: 0 24px 24px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.news__panel[hidden] {
  display: none;
}

/* ==========================================================================
   Access
   ========================================================================== */

.access__grid {
  display: flex;
  gap: 40px;
}

.access__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 600 / 350;
  max-width: 600px;
  width: 100%;
}

.access__details {
  max-width: 390px;
  width: 100%;
  display: grid;
  align-items: center;
}

.access__details-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--radius-md);
  padding: 10px;
  background-color: #fff;
}

.access__row {
  display: flex;
  flex-direction: column;
}

.access__row-label {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 8px;
}

.access__row-value {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 8px;
  margin-top: 8px;
}

.access__row-value img {
  opacity: 0;
}

.access__lead {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-top: -24px;
  margin-bottom: 40px;
}

.access__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--color-accent);
}

.access__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.access__value {
  font-size: 12px;
  line-height: 1.38;
  color: #666;
  margin: 0;
}

/* ==========================================================================
   Contact form
   ========================================================================== */

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact__card {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
}

.contact__notice {
  text-align: center;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.contact__notice--success {
  background: #e8f7ee;
  color: #1f7a44;
  border: 1px solid #c2ebd0;
}

.contact__notice--error {
  background: #fdeaea;
  color: #b3261e;
  border: 1px solid #f9c6c6;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact__group {
  margin-bottom: 20px;
}

.contact__group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-main, #333333);
}

.contact__asterisk {
  color: var(--color-accent, #f81589);
  font-weight: 700;
  margin-left: 2px;
}

.contact__group input[type="text"],
.contact__group input[type="email"],
.contact__group select,
.contact__group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact__group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}

.contact__group input[type="text"]::placeholder,
.contact__group input[type="email"]::placeholder,
.contact__group textarea::placeholder {
  color: #a0a0a0;
  opacity: 1;
}

.contact__group input[type="text"]:focus,
.contact__group input[type="email"]:focus,
.contact__group select:focus,
.contact__group textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-accent, #f81589);
  box-shadow: 0 0 0 3px rgba(248, 21, 137, 0.1);
}

.contact__group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__response-note {
  font-size: 13.5px;
  color: #333333;
  text-align: left;
  margin: 16px 0 12px;
}

.contact__submit {
  display: flex;
  justify-content: center;
}

.contact__btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background-color: var(--color-accent, #f81589);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact__btn-submit:hover {
  background-color: #e00078;
}

.contact__divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px 0 24px;
  color: #a0a0a0;
  font-size: 13px;
}

.contact__divider::before,
.contact__divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #eaeaea;
}

.contact__divider span {
  padding: 0 16px;
}

.contact__footer-info {
  font-size: 13px;
  color: #666666;
  line-height: 1.85;
}

.contact__footer-info p {
  margin-bottom: 6px;
}

.contact__footer-info p:last-child {
  margin-bottom: 0;
}

.contact__email-link {
  color: var(--color-accent, #f81589);
  font-weight: 700;
  text-decoration: none;
}

.contact__email-link:hover {
  text-decoration: underline;
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Partner logos
   ========================================================================== */

.partners {
  padding: 0 0 80px;
}

.partners__inner {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.partners__logo img {
  height: auto;
  max-width: 300px;
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.site-footer__cont {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: #fff;
}

.site-footer__top {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 64px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 32px;
}

.site-footer__logo {
  width: 280px;
  margin-bottom: 16px;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.site-footer__name {
  font-weight: 700;
  font-size: 14px;
}

.site-footer__address,
.site-footer__email {
  font-weight: 700;
  font-size: 14px;
}

.site-footer__email a {
  color: inherit;
}

.site-footer__top:nth-child(4) {
  justify-self: flex-end;
}

.site-footer__col-title {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 14px;
}

.site-footer__col ul li {
  margin-bottom: 12px;
  font-size: 13px;
  opacity: 0.85;
}

.site-footer__col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__col ul li a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.site-footer__col ul li a:hover {
  opacity: 0.75;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.site-footer__social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.site-footer__bottom {
  border-top: 1px solid #fff;
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
  max-width: calc(var(--container-width) - 48px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* ==========================================================================
   Responsive: mobile (<768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --section-padding-y: var(--section-padding-y-sp);
  }

  section {
    padding: var(--section-padding-y-sp) 20px;
  }

  .site-header__logo-img--pc {
    display: none;
  }

  .site-header__logo-img--sp {
    display: block;
    height: auto;
    max-width: 76px;
    width: 100%;
  }

  .site-nav,
  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    display: flex;
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero__media {
    position: static;
    width: auto;
    height: 220px;
    margin: 0 20px 0;
  }

  .hero__media img {
    border-radius: var(--radius-md);
  }

  .hero__media::before {
    display: none;
  }

  .site-footer__cont {
    justify-content: center;
  }

  .hero__inner {
    padding: 24px 20px 32px;
  }

  .hero__text {
    max-width: none;
  }

  .hero__headline img {
    max-width: 280px;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .btn {
    flex: 1;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
  }

  .section-title {
    font-size: 24px;
  }

  .overview__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .concerns__list {
    grid-template-columns: 1fr;
  }

  .concerns__lead {
    font-size: 16px;
  }

  .concerns__faq {
    padding: 24px 20px;
  }

  .concerns__faq-list {
    justify-content: flex-start;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .reasons__card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 20px;
  }

  .reasons__title {
    font-size: 16px;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .access__grid {
    flex-direction: column;
    gap: 20px;
  }

  .access {
    padding: 20px 0;
  }

  .access__details-inner {
    padding: 8px 14px;
  }

  .access__row {
    padding: 0 10px;
  }

  .contact__card {
    padding: 24px;
  }

  .partners__inner {
    flex-direction: column;
    align-items: center;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   Profile Modal (PC & SP)
   ========================================================================== */

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-modal[hidden] {
  display: none;
}

.profile-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.profile-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.profile-modal__dialog {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  max-height: 86vh;
  background: #ffffff;
  border-radius: 6px;
  border: none;
  box-shadow: 4px 4px 0 rgba(248, 21, 137, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100vh);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-modal.is-open .profile-modal__dialog {
  transform: translateY(0);
}

.profile-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-modal__close:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #94a3b8;
}

.profile-modal__content {
  overflow-y: auto;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
}

.profile-modal__title {
  font-size: 34px;
  font-weight: 700;
  line-height: .8;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
  min-height: 40px;
}

.profile-modal__meta {
  text-align: center;
  margin-bottom: 10px;
}

.profile-modal__name {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.profile-modal__title-item {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.6;
}

.profile-modal__bio {
  font-size: 14px;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 28px;
  text-align: justify;
}

.profile-modal__section {
  margin-bottom: 24px;
}

.profile-modal__section:last-child {
  margin-bottom: 0;
}

.profile-modal__section-heading {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  color: #F81589;
}

.profile-modal__item {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
}

@media (max-width: 768px) {
  .profile-modal {
    padding: 16px;
  }

  .profile-modal__dialog {
    border-radius: 6px;
    max-height: 90vh;
  }

  .profile-modal__content {
    padding: 32px 24px;
  }

  .profile-modal__close {
    top: 16px;
    right: 16px;
  }

  .profile-modal__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .logged-in .site-header {
    top: 0;
  }
}

/* ==========================================================================
   News Modal Dialog
   ========================================================================== */

.news-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-modal__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #F81589;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.news-modal__body {
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
}

.news-modal__body p {
  margin-bottom: 1em;
}

.news-modal__body p:last-child {
  margin-bottom: 0;
}

.news__more {
  text-align: center;
  margin-top: 36px;
}

.news__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 44px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--color-text-main, #333333);
  color: var(--color-text-main, #333333);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.news__more-btn:hover {
  background: var(--color-accent, #e4007f);
  color: #ffffff;
  border-color: var(--color-accent, #e4007f);
  box-shadow: 0 4px 12px rgba(228, 0, 127, 0.2);
}

/* ==========================================================================
   Contact Form 7 Theme Integration
   ========================================================================== */

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-main, #333333);
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form-control-wrap.acceptance-908,
.wpcf7-form-control-wrap:has(.wpcf7-acceptance),
.wpcf7-acceptance,
.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  line-height: 1;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea,
.wpcf7-select {
  width: 100%;
  padding: 14px 16px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text-main, #333333);
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}

.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-textarea::placeholder {
  color: #a0a0a0;
  opacity: 1;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-select:focus,
.wpcf7-textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-accent, #f81589);
  box-shadow: 0 0 0 3px rgba(248, 21, 137, 0.1);
}

.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__group--acceptance,
.contact__acceptance {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 12px;
  width: 100%;
}

.contact__acceptance-label,
.contact__acceptance label,
.wpcf7-acceptance label,
.wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-main, #333333);
  cursor: pointer;
}

.wpcf7-acceptance input[type="checkbox"],
.contact__group--acceptance input[type="checkbox"],
.contact__acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  accent-color: var(--color-accent, #f81589);
  vertical-align: middle;
  flex-shrink: 0;
  display: block;
}

.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  background: var(--color-accent, #f81589);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin: 10px 0 0;
}

.wpcf7-submit:hover {
  background-color: #e00078;
}

.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  border-radius: 8px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #e8f7ee;
  color: #1f7a44;
  border: 1px solid #c2ebd0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: #fdeaea;
  color: #b3261e;
  border: 1px solid #f9c6c6;
}

.wpcf7-not-valid-tip {
  color: #b3261e;
  font-size: 12px;
  margin-top: 4px;
}

/* Hide floating Google reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  display: none !important;
}

/* Privacy Policy Modal Content Styling */
.privacy-modal__header {
  text-align: center;
  margin-bottom: 32px;
}

.privacy-modal__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #F81589;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.privacy-modal__label::before,
.privacy-modal__label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #F81589;
}

.privacy-modal__title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
  margin: 0;
}

.privacy-modal__body {
  font-size: 14px;
  line-height: 1.85;
  color: #4a4a4a;
}

.privacy-modal__body p {
  margin-bottom: 20px;
}

.privacy-modal__body h2,
.privacy-modal__body h3,
.privacy-modal__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #F81589;
  margin: 28px 0 12px;
}

.privacy-modal__body ul,
.privacy-modal__body ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.privacy-modal__body li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .privacy-modal__header {
    margin-bottom: 24px;
  }

  .privacy-modal__title {
    font-size: 24px;
  }

  .privacy-modal__body h2,
  .privacy-modal__body h3,
  .privacy-modal__body h4 {
    font-size: 15px;
    margin: 24px 0 10px;
  }
}