/* ===== RETHEME ink (§3-3b・2026-07-03 batch) — 原本はサーバ .bak & _server_mirror/css ===== */
@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #16181c;
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

ul, ol {
  padding: 0;
}

h1, h2, h3, p, figure {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #2A3442;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #2A3442;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #2A3442;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #2A3442;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2A3442 0%, #204881 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #2A3442;
  }
  .footer__summary:hover::after {
    background-color: #2A3442;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

#wrapper {
  min-width: 0;
  overflow: clip;
}

#contents {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: #16181c;
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    top: 17px;
    right: 18px;
    z-index: 220;
    display: grid;
    place-content: center;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: #2A3442;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  .sp-menu__line {
    display: block;
    width: 21px;
    height: 2px;
    margin: 2.5px 0;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    z-index: 210;
    visibility: hidden;
    padding: 100px 24px 40px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__nav {
    display: grid;
    max-width: 520px;
    margin: 0 auto;
  }
  .sp-menu__link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 4px;
    border-bottom: 1px solid #e2e4e8;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__link::after {
    margin-left: auto;
    color: #2A3442;
    content: "→";
  }
  .sp-menu__link--contact {
    justify-content: center;
    margin-top: 24px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #2A3442;
  }
  .sp-menu__link--contact::after {
    color: #fff;
  }
}
body#contact {
  --contact-green: #2A3442;
  --contact-green-dark: #234c86;
  --contact-ink: #16181c;
  --contact-muted: #5a6270;
  --contact-light: #f4f6f8;
  --contact-border: #e2e4e8;
  --contact-dark: #2c3340;
  color: var(--contact-ink);
}
body#contact .u-pc {
  display: inline;
}
body#contact .section {
  padding: 112px 0;
}
body#contact .section--light {
  background: var(--contact-light);
}
body#contact .section--dark {
  color: #fff;
  background: var(--contact-dark);
}
body#contact .section__inner {
  width: min(1180px, 100% - 80px);
  margin: 0 auto;
}
body#contact .section__inner--wide {
  width: min(1320px, 100% - 80px);
}
body#contact .section__inner--narrow {
  width: min(920px, 100% - 80px);
}
body#contact .section__inner--form {
  width: min(1240px, 100% - 80px);
}
body#contact .section-label {
  margin-bottom: 14px;
  color: var(--contact-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
}
body#contact .section-label--light {
  color: #729bd5;
}
body#contact .section-title {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
body#contact .section-title--center {
  text-align: center;
}
body#contact .section-title--light {
  color: #fff;
}
body#contact .section-lead {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--contact-muted);
  font-size: 17px;
  line-height: 1.9;
}
body#contact .section-lead--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
body#contact .section-lead--light {
  color: rgba(255, 255, 255, 0.76);
}
body#contact .breadcrumb {
  width: min(1320px, 100% - 80px);
  margin: 0 auto;
  padding: 22px 0;
}
body#contact .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  list-style: none;
  color: #68717e;
  font-size: 13px;
}
body#contact .breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
body#contact .breadcrumb__item + .breadcrumb__item::before {
  margin: 0 10px;
  color: #aab0b7;
  content: "/";
}
body#contact .breadcrumb__link {
  text-underline-offset: 3px;
}
body#contact .contact-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: #656a70;
}
body#contact .contact-hero__media, body#contact .contact-hero__overlay {
  position: absolute;
  inset: 0;
}
body#contact .contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
body#contact .contact-hero__overlay {
  background: linear-gradient(90deg, rgba(16, 21, 28, 0.88) 0%, rgba(16, 21, 28, 0.68) 46%, rgba(16, 21, 28, 0.15) 75%, rgba(16, 21, 28, 0.05) 100%);
}
body#contact .contact-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1320px, 100% - 80px);
  min-height: 690px;
  margin: 0 auto;
  padding: 88px 0;
}
body#contact .contact-hero__eyebrow {
  margin-bottom: 18px;
  color: #78a2dd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
body#contact .contact-hero__title {
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
body#contact .contact-hero__lead {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.8;
}
body#contact .contact-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
  list-style: none;
}
body#contact .contact-hero__point {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
body#contact .contact-hero__point::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #78a2dd;
  content: "";
}
body#contact .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  min-width: 286px;
  min-height: 66px;
  padding: 15px 20px 15px 28px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
body#contact .button__arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border-radius: 50%;
  font-size: 17px;
}
body#contact .button--primary, body#contact .button--submit {
  color: #fff;
  background: var(--contact-green);
  box-shadow: 0 14px 30px rgba(22, 53, 97, 0.22);
}
body#contact .button--primary .button__arrow, body#contact .button--submit .button__arrow {
  color: var(--contact-green);
  background: #fff;
}
body#contact .button--light {
  color: var(--contact-dark);
  background: #fff;
}
body#contact .button--light .button__arrow {
  color: #fff;
  background: var(--contact-dark);
}
body#contact .button:hover {
  transform: translateY(-2px);
}
body#contact .button--primary:hover, body#contact .button--submit:hover {
  background: var(--contact-green-dark);
}
body#contact .contact-reassurance__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 72px;
}
body#contact .reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body#contact .reassurance-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--contact-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(30, 35, 42, 0.06);
}
body#contact .reassurance-card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--contact-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
body#contact .reassurance-card__title {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.5;
}
body#contact .reassurance-card__text {
  margin-bottom: 0;
  color: var(--contact-muted);
  font-size: 14px;
  line-height: 1.8;
}
body#contact .contact-reassurance__figure {
  position: relative;
  margin: 50px 0 0;
}
body#contact .contact-reassurance__image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  object-fit: cover;
}
body#contact .contact-reassurance__caption {
  width: calc(100% - 48px);
  margin: -42px auto 0;
  padding: 22px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(29, 34, 42, 0.14);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transform: translateY(20px);
}
body#contact .topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
body#contact .topic-card {
  display: grid;
  grid-template-columns: 68px 1fr 40px;
  align-items: center;
  width: 100%;
  min-height: 126px;
  padding: 20px 24px;
  border: 1px solid var(--contact-border);
  border-radius: 12px;
  color: var(--contact-ink);
  background: #fff;
  text-align: left;
  box-shadow: 0 8px 24px rgba(30, 35, 42, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body#contact .topic-card:hover, body#contact .topic-card:focus-visible {
  border-color: var(--contact-green);
  box-shadow: 0 14px 34px rgba(28, 58, 99, 0.11);
  transform: translateY(-2px);
}
body#contact .topic-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--contact-green);
  background: #ecf1f7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
body#contact .topic-card__body {
  display: grid;
  gap: 5px;
}
body#contact .topic-card__title {
  font-size: 18px;
  line-height: 1.45;
}
body#contact .topic-card__text {
  color: var(--contact-muted);
  font-size: 13px;
  line-height: 1.65;
}
body#contact .topic-card__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--contact-green);
}
body#contact .contact-form-section__heading {
  max-width: 840px;
  margin-bottom: 56px;
}
body#contact .contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 42px;
}
body#contact .contact-form {
  padding: 48px;
  border: 1px solid var(--contact-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(28, 34, 42, 0.07);
}
body#contact .contact-form__status {
  display: none;
  margin-bottom: 26px;
  padding: 16px 18px;
  border: 1px solid #d6a000;
  border-radius: 8px;
  color: #604b00;
  background: #fff7d8;
  font-weight: 600;
}
body#contact .contact-form__status.is-visible {
  display: block;
}
body#contact .form-group {
  margin: 0 0 34px;
}
body#contact .form-group--topic {
  padding: 0;
  border: 0;
}
body#contact .form-group--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body#contact .form-group--consent {
  margin: 26px 0;
}
body#contact .form-group__legend, body#contact .form-label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}
body#contact .required-badge, body#contact .optional-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 7px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}
body#contact .required-badge {
  color: #fff;
  background: #c74444;
}
body#contact .optional-badge {
  color: #616a75;
  background: #eef0f2;
}
body#contact .form-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
body#contact .form-choice {
  position: relative;
  cursor: pointer;
}
body#contact .form-choice__input {
  position: absolute;
  opacity: 0;
}
body#contact .form-choice__label {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px 12px 46px;
  border: 1px solid #cfd3d8;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
body#contact .form-choice__label::before {
  position: absolute;
  left: 17px;
  width: 18px;
  height: 18px;
  border: 1px solid #9ea5ae;
  border-radius: 50%;
  background: #fff;
  content: "";
}
body#contact .form-choice__input:checked + .form-choice__label {
  border-color: var(--contact-green);
  background: #eef2f8;
}
body#contact .form-choice__input:checked + .form-choice__label::before {
  border: 5px solid var(--contact-green);
}
body#contact .form-choice__input:focus-visible + .form-choice__label {
  outline: 3px solid rgba(46, 95, 163, 0.25);
  outline-offset: 2px;
}
body#contact .conditional-fields {
  margin: -6px 0 34px;
  padding: 26px 26px 1px;
  border-left: 4px solid var(--contact-green);
  border-radius: 0 8px 8px 0;
  background: #f4f6fa;
}
body#contact .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body#contact .form-control {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid #bfc4cc;
  border-radius: 7px;
  color: var(--contact-ink);
  background: #fff;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body#contact select.form-control {
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, #585f6a 50%), linear-gradient(135deg, #585f6a 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
body#contact .form-control--textarea {
  min-height: 190px;
  resize: vertical;
}
body#contact .form-control:focus {
  border-color: var(--contact-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 95, 163, 0.18);
}
body#contact .form-control[aria-invalid=true] {
  border-color: #c74444;
}
body#contact .form-hint, body#contact .form-error {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.6;
}
body#contact .form-hint {
  color: #6a737d;
}
body#contact .form-error {
  min-height: 0;
  color: #b72f2f;
  font-weight: 600;
}
body#contact .form-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
body#contact .form-count {
  flex: 0 0 auto;
  margin: 7px 0 0;
  color: #6a737d;
  font-size: 12px;
}
body#contact .privacy-box {
  margin: 12px 0 24px;
  padding: 24px;
  border-radius: 8px;
  background: var(--contact-light);
}
body#contact .privacy-box__title {
  margin-bottom: 10px;
  font-size: 16px;
}
body#contact .privacy-box__text {
  margin-bottom: 10px;
  color: var(--contact-muted);
  font-size: 13px;
  line-height: 1.8;
}
body#contact .text-link {
  color: var(--contact-green-dark);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}
body#contact .form-consent {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
body#contact .form-consent__input {
  position: absolute;
  opacity: 0;
}
body#contact .form-consent__box {
  position: relative;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-right: 11px;
  border: 1px solid #8d949e;
  border-radius: 4px;
  background: #fff;
}
body#contact .form-consent__input:checked + .form-consent__box {
  border-color: var(--contact-green);
  background: var(--contact-green);
}
body#contact .form-consent__input:checked + .form-consent__box::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}
body#contact .form-consent__input:focus-visible + .form-consent__box {
  outline: 3px solid rgba(46, 95, 163, 0.25);
  outline-offset: 2px;
}
body#contact .form-consent__text {
  font-size: 14px;
  font-weight: 600;
}
body#contact .contact-form__actions {
  display: grid;
  justify-items: center;
  padding-top: 10px;
}
body#contact .button--submit {
  width: min(100%, 420px);
}
body#contact .contact-form__note {
  margin: 12px 0 0;
  color: #69717a;
  font-size: 12px;
  text-align: center;
}
body#contact .contact-form-aside {
  position: sticky;
  top: 30px;
  overflow: hidden;
  border: 1px solid var(--contact-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(30, 35, 42, 0.07);
}
body#contact .contact-form-aside__figure {
  position: relative;
  margin: 0;
}
body#contact .contact-form-aside__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
body#contact .contact-form-aside__body {
  padding: 28px;
}
body#contact .contact-form-aside__label {
  margin-bottom: 9px;
  color: var(--contact-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
body#contact .contact-form-aside__title {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.5;
}
body#contact .contact-form-aside__text {
  margin-bottom: 18px;
  color: var(--contact-muted);
  font-size: 14px;
}
body#contact .contact-form-aside__list {
  display: grid;
  gap: 9px;
  margin: 0;
  list-style: none;
  color: #626b75;
  font-size: 12px;
}
body#contact .contact-form-aside__list li {
  position: relative;
  padding-left: 16px;
}
body#contact .contact-form-aside__list li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--contact-green);
  content: "";
}
body#contact .contact-flow__heading {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: end;
  gap: 64px;
  margin-bottom: 68px;
}
body#contact .contact-flow__figure {
  position: relative;
  margin: 0;
}
body#contact .contact-flow__image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  object-fit: cover;
}
body#contact .flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  list-style: none;
}
body#contact .flow-list__item {
  position: relative;
  min-height: 250px;
  padding: 30px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
body#contact .flow-list__item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
body#contact .flow-list__number {
  display: block;
  margin-bottom: 42px;
  color: #729bd5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#contact .flow-list__title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.5;
}
body#contact .flow-list__text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.8;
}
body#contact .contact-flow__note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: right;
}
body#contact .contact-trust__layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 86px;
}
body#contact .contact-trust__figure {
  position: relative;
  margin: 0;
}
body#contact .contact-trust__image {
  width: 100%;
  aspect-ratio: 6/5;
  border-radius: 14px;
  object-fit: cover;
}
body#contact .trust-list {
  display: grid;
  gap: 14px;
  margin: 38px 0 28px;
}
body#contact .trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--contact-border);
  border-radius: 10px;
  background: #fff;
}
body#contact .trust-item__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--contact-green);
  font-weight: 700;
}
body#contact .trust-item__title {
  margin-bottom: 5px;
  font-size: 17px;
}
body#contact .trust-item__text {
  margin-bottom: 0;
  color: var(--contact-muted);
  font-size: 13px;
}
body#contact .contact-trust__notice {
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid #d8a21d;
  color: #685318;
  background: #fff9e7;
  font-size: 12px;
}
body#contact .faq-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}
body#contact .faq-item {
  border: 1px solid var(--contact-border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
body#contact .faq-item__question {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 15px;
  min-height: 90px;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
}
body#contact .faq-item__question::-webkit-details-marker {
  display: none;
}
body#contact .faq-item__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--contact-green);
  font-size: 17px;
  font-weight: 700;
}
body#contact .faq-item__question-text {
  font-weight: 700;
}
body#contact .faq-item__toggle {
  position: relative;
  width: 24px;
  height: 24px;
}
body#contact .faq-item__toggle::before, body#contact .faq-item__toggle::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: var(--contact-green);
  content: "";
  transition: transform 0.2s ease;
}
body#contact .faq-item__toggle::after {
  transform: rotate(90deg);
}
body#contact .faq-item[open] .faq-item__toggle::after {
  transform: rotate(0);
}
body#contact .faq-item__answer {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 0 24px 26px;
}
body#contact .faq-item__mark--answer {
  color: var(--contact-green);
  background: #edf2f8;
}
body#contact .faq-item__answer p {
  margin: 5px 0 0;
  color: var(--contact-muted);
}
body#contact .contact-closing {
  padding: 108px 40px;
  color: #fff;
  background: var(--contact-green);
  text-align: center;
}
body#contact .contact-closing__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}
body#contact .contact-closing__eyebrow {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
body#contact .contact-closing__title {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.3;
}
body#contact .contact-closing__text {
  margin-bottom: 34px;
  font-size: 17px;
}
body#contact .contact-closing .button {
  margin: 0 auto;
}
body#contact :focus-visible {
  outline: 3px solid rgba(46, 95, 163, 0.4);
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  body#contact .contact-reassurance__layout {
    grid-template-columns: 1fr 360px;
    gap: 44px;
  }
  body#contact .contact-form-layout {
    grid-template-columns: 1fr 300px;
    gap: 28px;
  }
  body#contact .contact-form {
    padding: 36px;
  }
  body#contact .contact-flow__heading {
    grid-template-columns: 1fr 340px;
    gap: 36px;
  }
  body#contact .contact-trust__layout {
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  body#contact .section {
    padding: 88px 0;
  }
  body#contact .section__inner, body#contact .section__inner--wide, body#contact .section__inner--narrow, body#contact .section__inner--form, body#contact .breadcrumb {
    width: min(100% - 60px, 920px);
  }
  body#contact .contact-hero__inner {
    width: calc(100% - 60px);
  }
  body#contact .contact-reassurance__layout, body#contact .contact-trust__layout {
    grid-template-columns: 1fr;
  }
  body#contact .contact-reassurance__figure {
    width: min(100%, 620px);
    margin: 20px auto 0;
  }
  body#contact .contact-reassurance__image {
    aspect-ratio: 16/10;
  }
  body#contact .contact-form-layout {
    grid-template-columns: 1fr;
  }
  body#contact .contact-form-aside {
    position: static;
    display: grid;
    grid-template-columns: 300px 1fr;
  }
  body#contact .contact-form-aside__image {
    height: 100%;
    aspect-ratio: auto;
  }
  body#contact .contact-flow__heading {
    grid-template-columns: 1fr;
  }
  body#contact .contact-flow__figure {
    width: min(100%, 600px);
  }
  body#contact .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#contact .flow-list__item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  body#contact .flow-list__item:nth-child(n+3) {
    border-top: 0;
  }
  body#contact .contact-trust__figure {
    width: min(100%, 680px);
  }
}
@media (max-width: 700px) {
  body#contact .u-pc {
    display: none;
  }
  body#contact .section {
    padding: 72px 0;
  }
  body#contact .section__inner, body#contact .section__inner--wide, body#contact .section__inner--narrow, body#contact .section__inner--form, body#contact .breadcrumb {
    width: calc(100% - 40px);
  }
  body#contact .breadcrumb {
    padding: 15px 0;
  }
  body#contact .contact-hero {
    min-height: 650px;
  }
  body#contact .contact-hero__image {
    object-position: 64% center;
  }
  body#contact .contact-hero__overlay {
    background: linear-gradient(180deg, rgba(18, 22, 28, 0.25) 0%, rgba(18, 22, 28, 0.8) 60%, rgba(18, 22, 28, 0.94) 100%);
  }
  body#contact .contact-hero__inner {
    justify-content: flex-end;
    width: calc(100% - 40px);
    min-height: 650px;
    padding: 70px 0 54px;
  }
  body#contact .contact-hero__title {
    font-size: 49px;
  }
  body#contact .contact-hero__lead {
    font-size: 17px;
  }
  body#contact .contact-hero__points {
    display: grid;
    gap: 7px;
  }
  body#contact .contact-hero__point {
    width: fit-content;
    min-height: 32px;
    font-size: 12px;
  }
  body#contact .button {
    width: 100%;
    min-width: 0;
  }
  body#contact .reassurance-grid, body#contact .topic-grid, body#contact .form-choice-grid, body#contact .form-row {
    grid-template-columns: 1fr;
  }
  body#contact .reassurance-card {
    min-height: 0;
    padding: 24px;
  }
  body#contact .topic-card {
    grid-template-columns: 56px 1fr 34px;
    min-height: 110px;
    padding: 16px;
  }
  body#contact .topic-card__icon {
    width: 46px;
    height: 46px;
  }
  body#contact .contact-form {
    padding: 28px 20px;
    border-radius: 10px;
  }
  body#contact .conditional-fields {
    padding: 22px 18px 1px;
  }
  body#contact .form-control {
    font-size: 16px;
  }
  body#contact .contact-form-aside {
    display: block;
  }
  body#contact .contact-form-aside__image {
    aspect-ratio: 16/9;
  }
  body#contact .contact-flow__figure {
    width: 100%;
  }
  body#contact .flow-list {
    grid-template-columns: 1fr;
  }
  body#contact .flow-list__item {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 0;
  }
  body#contact .flow-list__item:nth-child(n+2) {
    border-top: 0;
  }
  body#contact .flow-list__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  body#contact .flow-list__number {
    margin-bottom: 22px;
  }
  body#contact .contact-flow__note {
    text-align: left;
  }
  body#contact .faq-item__question {
    grid-template-columns: 34px 1fr 24px;
    gap: 11px;
    min-height: 82px;
    padding: 18px 16px;
  }
  body#contact .faq-item__mark {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  body#contact .faq-item__answer {
    grid-template-columns: 34px 1fr;
    gap: 11px;
    padding: 0 16px 22px;
  }
  body#contact .contact-closing {
    padding: 76px 20px;
  }
}
@media (max-width: 568px) {
  body#contact .section-title {
    font-size: 32px;
  }
  body#contact .section-lead {
    margin-bottom: 32px;
    font-size: 15px;
  }
  body#contact .contact-hero__title {
    font-size: 43px;
  }
  body#contact .contact-hero__lead {
    line-height: 1.7;
  }
  body#contact .contact-reassurance__caption {
    width: calc(100% - 24px);
    padding: 18px;
  }
  body#contact .topic-card__title {
    font-size: 16px;
  }
  body#contact .topic-card__text {
    font-size: 12px;
  }
  body#contact .form-meta {
    display: block;
  }
  body#contact .contact-closing__title {
    font-size: 32px;
  }
  body#contact .contact-closing__text {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body#contact html {
    scroll-behavior: auto;
  }
  body#contact *, body#contact *::before, body#contact *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  color: #282d33;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
}

body {
  min-width: 320px;
  color: #282d33;
  background: #fff;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: #183f76;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #2A3442;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #2A3442;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #2A3442;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #2A3442;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 300;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #2A3442;
    box-shadow: 0 10px 30px rgba(16, 21, 27, 0.07);
    cursor: pointer;
  }
  .sp-menu__line {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    visibility: hidden;
    padding: 104px 24px 40px;
    background: rgba(16, 25, 38, 0.98);
    opacity: 0;
    overflow-y: auto;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .sp-menu__nav {
    display: grid;
    gap: 8px;
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .sp-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__link::after {
    content: "→";
  }
  .sp-menu__link--cta {
    justify-content: center;
    margin-top: 20px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #2A3442;
  }
  .sp-menu__link--cta::after {
    display: none;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2A3442 0%, #729cd7 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #2A3442;
  }
  .footer__summary:hover::after {
    background-color: #2A3442;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

/* ===== PHOTO HARMONY + POSTER GRAMMAR（§5-5/§8・2026-07-03） ===== */
main img { filter: saturate(0.78); }
main figure { position: relative; }
main figure::after { content:""; position:absolute; inset:0; background:#2A3442; opacity:0.14; mix-blend-mode:color; pointer-events:none; }
main h1, main h2, main h3, main [class*="__title"] { font-family:'Yu Mincho','Hiragino Mincho ProN','MS Mincho',serif; font-weight:700; letter-spacing:0.03em; }
main [class*="__eyebrow"], main [class*="__en"], main [class*="__label"] { font-family:'Barlow',Arial,sans-serif; font-weight:700; letter-spacing:0.28em; text-transform:uppercase; }
main [class*="__eyebrow"]::after, main [class*="__label"]::after { content:""; display:inline-block; vertical-align:middle; width:34px; height:2px; margin-left:14px; background:#E3B94F; }
main [class*="__number"] { font-family:'Barlow',Arial,sans-serif; letter-spacing:0.02em; }
@media (hover:hover) and (pointer:fine) { main [class*="card"]:hover { transform:translateY(-4px); transition:transform .25s ease; } }
@media (prefers-reduced-motion:reduce) { main [class*="card"]:hover { transform:none; } main img { transition:none; } }


/* ===== BATCHC LP図解表示型オーバーライド（image-design-system v1.1 §7-2）2026-07-03 =====
   図解スロット限定（:has/src指定）: contain・height:auto・原寸比率契約・写真調和フィルタ/ベール解除・caption下置き。
   写真スロット（ヒーロー/CTA帯/背景型/記事サムネ）は不変更。 ===== */
body#contact img[src][src$="/img/contents/contact/form-input.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1200/900}
body#contact :is(div,figure,picture):has(> img[src$="/img/contents/contact/form-input.jpg"]),body#contact :is(div,figure,picture):has(> picture > img[src$="/img/contents/contact/form-input.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#contact picture:has(> img[src$="/img/contents/contact/form-input.jpg"]){position:static;display:block;height:auto;min-height:0}
body#contact img[src][src$="/img/contents/contact/consultation.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1000/1200}
body#contact :is(div,figure,picture):has(> img[src$="/img/contents/contact/consultation.jpg"]),body#contact :is(div,figure,picture):has(> picture > img[src$="/img/contents/contact/consultation.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#contact picture:has(> img[src$="/img/contents/contact/consultation.jpg"]){position:static;display:block;height:auto;min-height:0}
body#contact img[src][src$="/img/contents/contact/response-desk.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1200/900}
body#contact :is(div,figure,picture):has(> img[src$="/img/contents/contact/response-desk.jpg"]),body#contact :is(div,figure,picture):has(> picture > img[src$="/img/contents/contact/response-desk.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#contact picture:has(> img[src$="/img/contents/contact/response-desk.jpg"]){position:static;display:block;height:auto;min-height:0}
body#contact img[src][src$="/img/contents/contact/privacy-care.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1200/1000}
body#contact :is(div,figure,picture):has(> img[src$="/img/contents/contact/privacy-care.jpg"]),body#contact :is(div,figure,picture):has(> picture > img[src$="/img/contents/contact/privacy-care.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#contact picture:has(> img[src$="/img/contents/contact/privacy-care.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/contact/form-input.jpg"])::after,main figure:has(img[src$="/img/contents/contact/consultation.jpg"])::after,main figure:has(img[src$="/img/contents/contact/response-desk.jpg"])::after,main figure:has(img[src$="/img/contents/contact/privacy-care.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/contact/form-input.jpg"]) figcaption,main figure:has(img[src$="/img/contents/contact/consultation.jpg"]) figcaption,main figure:has(img[src$="/img/contents/contact/response-desk.jpg"]) figcaption,main figure:has(img[src$="/img/contents/contact/privacy-care.jpg"]) figcaption{position:static;margin:12px 0 0;padding:0;color:#5A6270;background:none;font-size:12px;right:auto;bottom:auto;left:auto;top:auto;width:auto}

/* ===== UPLIFT batch6 news ink (uplift_20260704) — 下層格上げ指示書 2026-07-04 ===== */
:root {
  --u-theme: #2A3442;
  --u-deep: #16181C;
  --u-tint: #F4F6F8;
  --u-silver: #A8B4C4;
  --u-gold: #F5B500;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- ページトークンをインク台帳へ上書き ---- */
body#contact {
  --contact-green: #2A3442;
  --contact-green-dark: #16181C;
  --contact-dark: #16181C;
  --contact-light: #F4F6F8;
  --contact-border: #E2E5E8;
  --contact-muted: #5A6270;
}

/* ---- セクション骨格・見出し ---- */
body#contact .section { padding: 96px 0; }
body#contact .section--dark { background: linear-gradient(180deg, var(--u-theme) 0%, var(--u-deep) 100%); }
body#contact .section-label {
  color: var(--u-theme);
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
body#contact .section-label::after {
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-left: 14px;
  vertical-align: middle;
  background: #E3B94F;
  content: "";
}
body#contact .section-label--light { color: var(--u-silver); }
body#contact .section-title { font-size: 25px; line-height: 1.6; letter-spacing: 0.03em; }
body#contact .section-lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#contact .section-lead--light { color: rgba(255, 255, 255, 0.78); }

/* ---- ボタン（主CTA=金×radius999） ---- */
body#contact .button { border-radius: 999px; }
body#contact .button--primary,
body#contact .button--submit {
  color: var(--u-ink);
  background: var(--u-gold);
  box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24);
}
body#contact .button--primary .button__arrow,
body#contact .button--submit .button__arrow { color: #fff; background: var(--u-ink); }
body#contact .button--light { color: var(--u-ink); background: var(--u-gold); }
body#contact .button--light .button__arrow { color: #fff; background: var(--u-ink); }
body#contact .button--primary:hover,
body#contact .button--submit:hover,
body#contact .button--light:hover {
  background: var(--u-gold);
  box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32);
  filter: brightness(0.92);
}

/* ---- フォーカス可視（2px・暗地は白） ---- */
body#contact :focus-visible { outline: 2px solid var(--u-theme); outline-offset: 3px; }
body#contact .contact-hero :focus-visible,
body#contact .section--dark :focus-visible,
body#contact .contact-closing :focus-visible { outline-color: #fff; }

/* ---- ヒーロー（ink写真グラデ×白明朝31px） ---- */
body#contact .contact-hero { background: var(--u-deep); }
body#contact .contact-hero__overlay {
  background: linear-gradient(100deg, rgba(22, 24, 28, 0.96) 0%, rgba(42, 52, 66, 0.86) 45%, rgba(42, 52, 66, 0.3) 100%);
}
body#contact .contact-hero__eyebrow { color: var(--u-silver); font-size: 13px; letter-spacing: 0.28em; }
body#contact .contact-hero__eyebrow::before {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--u-silver);
  content: "";
}
body#contact .contact-hero__title { font-size: 31px; line-height: 1.5; letter-spacing: 0.03em; }
body#contact .contact-hero__lead { font-size: 18px; font-weight: 400; line-height: 1.9; }
body#contact .contact-hero__point { font-size: 13px; }
body#contact .contact-hero__point::before { background: var(--u-silver); }
@keyframes uplift62Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#contact .contact-hero__eyebrow { animation: uplift62Fade 0.6s ease 0s both; }
body#contact .contact-hero__title { animation: uplift62Fade 0.6s ease 0.12s both; }
body#contact .contact-hero__lead { animation: uplift62Fade 0.6s ease 0.24s both; }
body#contact .contact-hero__points { animation: uplift62Fade 0.6s ease 0.36s both; }
body#contact .contact-hero__inner > .button { animation: uplift62Fade 0.6s ease 0.48s both; }
@media (prefers-reduced-motion: reduce) {
  body#contact .contact-hero__eyebrow,
  body#contact .contact-hero__title,
  body#contact .contact-hero__lead,
  body#contact .contact-hero__points,
  body#contact .contact-hero__inner > .button { animation: none; }
}

/* ---- 相談前の安心・用件選択 ---- */
body#contact .reassurance-card__number { font-size: 13px; }
body#contact .reassurance-card__title { font-size: 20px; }
body#contact .reassurance-card__text { font-size: 14px; }
body#contact .topic-card__icon {
  width: 58px;
  height: 58px;
  color: var(--u-theme);
  background: rgba(42, 52, 66, 0.08);
  font-family: 'Barlow', Arial, sans-serif;
  letter-spacing: 0;
}
body#contact .topic-card__text { color: var(--u-sub); }

/* ---- フォーム（白地維持・入力UI保護） ---- */
body#contact .contact-form { border-radius: 12px; }
body#contact .contact-form-aside { border-radius: 12px; }
body#contact .contact-form-aside__title { font-size: 20px; }
body#contact .form-control { border-radius: 6px; }
body#contact .form-control:focus {
  border-color: var(--u-theme);
  box-shadow: 0 0 0 2px rgba(42, 52, 66, 0.2);
}
body#contact .form-choice__label { border-radius: 6px; }
body#contact .form-choice__input:checked + .form-choice__label { border-color: var(--u-theme); background: var(--u-tint); }
body#contact .form-choice__input:focus-visible + .form-choice__label { outline: 2px solid var(--u-theme); outline-offset: 2px; }
body#contact .form-consent__input:focus-visible + .form-consent__box { outline: 2px solid var(--u-theme); outline-offset: 2px; }
body#contact .conditional-fields { background: var(--u-tint); }
body#contact .privacy-box { border-radius: 12px; }
body#contact .text-link { color: var(--u-theme); text-decoration: underline; }
body#contact .text-link:hover { color: var(--u-deep); }

/* ---- 送信後の流れ（deep帯） ---- */
body#contact .flow-list__number { color: var(--u-silver); }
body#contact .flow-list__title { font-size: 20px; }
body#contact .flow-list__text { font-size: 14px; }

/* ---- 信頼・FAQ ---- */
body#contact .trust-item { border-radius: 12px; }
body#contact .trust-item__title { font-size: 18px; }
body#contact .trust-item__text { font-size: 14px; }
body#contact .faq-item { border-radius: 12px; }

/* ---- 締めCTA（インク〜deep×金CTA） ---- */
body#contact .contact-closing { background: linear-gradient(135deg, var(--u-theme) 0%, var(--u-deep) 70%); }
body#contact .contact-closing__eyebrow { color: var(--u-silver); font-size: 13px; }
body#contact .contact-closing__title { font-size: 25px; line-height: 1.6; letter-spacing: 0.03em; }
body#contact .contact-closing__text { color: rgba(255, 255, 255, 0.82); font-size: 18px; }

/* ---- レスポンシブ（96→48pxリズム・SPヒーロー） ---- */
@media (max-width: 900px) {
  body#contact .section { padding: 48px 0; }
  body#contact .contact-form-section__heading { margin-bottom: 32px; }
}
@media (max-width: 700px) {
  body#contact .contact-hero__overlay {
    background: linear-gradient(180deg, rgba(22, 24, 28, 0.35) 0%, rgba(22, 24, 28, 0.82) 60%, rgba(22, 24, 28, 0.95) 100%);
  }
}
@media (max-width: 568px) {
  body#contact .contact-hero__title { font-size: 25px; line-height: 1.6; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   contact は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#contact .header__actions { background: #1E8A58; }
body#contact .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#contact .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#contact .header__lang-link.is-current { background: #EDF6F1; }
body#contact .header__lang-button:focus-visible,
body#contact .header__lang-link:focus-visible,
body#contact .header__action-link:focus-visible,
body#contact .header__nav-link:focus-visible,
body#contact .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#contact .header__lang-button:hover { border-color: #1E8A58; }
  body#contact .header__lang-link:hover { background: #EDF6F1; }
  body#contact .header__nav-link:hover { color: #1E8A58; }
}


/* ==== contact-funnel 20260716（ハブ振り分け化に伴う追記） ==== */
body#contact a.topic-card { text-decoration: none; color: inherit; text-align: left; }
body#contact .topic-card { gap: 14px; }
body#contact .topic-card__body { min-width: 0; }
body#contact .contact-hero__eyebrow::before { content: none; }
