@charset "UTF-8";

:root {
  --page-blue: #014197;
  --heading-blue: #0f6eb1;
  --heading-surface: #f1f9ff;
  --footer-gray: #575757;
  --coral-start: #ff6c6b;
  --coral-end: #ff5a4f;
  --coral-shadow: #c1443a;
  --text: #111;
  --muted: #666;
  --line: #222;
  --error: #c62828;
  --page-width: 1080px;
}

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

html {
  background: #eee;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #eee;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "halt" 1;
  font-weight: 500;
  line-height: 1.65;
  text-spacing-trim: trim-all;
  -webkit-font-smoothing: antialiased;
}

@supports (text-spacing-trim: trim-all) {
  body {
    font-feature-settings: normal;
  }
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  color: #fff;
  background: #111;
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffcf24;
  outline-offset: 3px;
}

.page-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, var(--page-width));
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, .1);
}

.page-titlebar {
  display: grid;
  place-items: center;
  min-height: clamp(100px, 15.833vw, 171px);
  padding: 20px;
  color: #fff;
  background: var(--page-blue);
  text-align: center;
}

.page-titlebar h1 {
  margin: 0;
  font-size: clamp(24px, 3.704vw, 40px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.35;
}

.page-content {
  flex: 1;
  width: 100%;
  padding: clamp(32px, 4.074vw, 44px) clamp(10px, 2.315vw, 25px) clamp(44px, 6.019vw, 65px);
}

.policy-page {
  display: grid;
  gap: clamp(24px, 3.704vw, 40px);
}

.policy-section {
  min-width: 0;
}

.policy-section h2 {
  display: flex;
  align-items: center;
  min-height: clamp(56px, 7.407vw, 80px);
  margin: 0;
  padding: 10px clamp(14px, 2.037vw, 22px);
  border-left: clamp(8px, 1.389vw, 15px) solid var(--heading-blue);
  color: #111;
  background: var(--heading-surface);
  font-size: clamp(18px, 3.148vw, 34px);
  font-weight: 700;
  line-height: 1.4;
}

.information-table {
  width: min(100%, 950px);
  margin: clamp(20px, 3.611vw, 39px) auto 0;
  border: 1px solid var(--line);
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(14px, 3.704vw, 40px);
  line-height: 1.45;
}

.information-table th,
.information-table td {
  min-width: 0;
  padding: clamp(14px, 2.315vw, 25px) clamp(10px, 2.315vw, 25px);
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
  text-align: center;
  vertical-align: middle;
}

.information-table tr:first-child th,
.information-table tr:first-child td {
  border-top: 0;
}

.information-table th {
  width: 40%;
  border-right: 1px solid var(--line);
  background: #f2f2f2;
  font-weight: 700;
}

.information-table td {
  background: #fff;
  font-weight: 500;
}

.information-table a {
  text-underline-offset: .14em;
}

.policy-copy {
  width: min(100%, 950px);
  margin: clamp(18px, 2.778vw, 30px) auto 0;
  font-size: clamp(14px, 2.5vw, 27px);
  font-weight: 500;
  line-height: 1.6667;
}

.policy-copy p {
  margin: 0;
}

.policy-copy p + p {
  margin-top: 1em;
}

.contact-page {
  padding-top: clamp(36px, 5vw, 54px);
  padding-bottom: clamp(52px, 8.333vw, 90px);
}

.contact-form,
.form-panel {
  width: 100%;
  margin: 0;
}

.form-group {
  margin: 0 0 clamp(27px, 4.167vw, 45px);
}

.form-group label {
  display: block;
  margin-bottom: clamp(9px, 1.481vw, 16px);
  font-size: clamp(20px, 3.704vw, 40px);
  font-weight: 700;
  line-height: 1.4;
}

.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  border: 1px solid #333;
  border-radius: 0;
  color: var(--text);
  background: #fff;
  font-size: clamp(16px, 2.315vw, 25px);
  line-height: 1.5;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-group input {
  height: clamp(64px, 9.259vw, 100px);
  padding: 10px clamp(13px, 2.315vw, 25px);
}

.form-group textarea {
  min-height: clamp(190px, 27.778vw, 300px);
  padding: clamp(14px, 2.315vw, 25px);
  resize: vertical;
}

.form-group textarea::placeholder {
  color: #777;
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--page-blue);
  box-shadow: 0 0 0 3px rgba(1, 65, 151, .16);
  outline: 0;
}

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: var(--error);
  background: #fff8f8;
}

.form-error {
  margin: 7px 0 0;
  color: var(--error);
  font-size: clamp(13px, 1.667vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.form-error:empty {
  display: none;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions,
.thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  margin-top: clamp(30px, 4.63vw, 50px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: clamp(62px, 8.148vw, 88px);
  padding: 13px 24px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: clamp(20px, 3.148vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease, box-shadow .15s ease;
}

.contact-confirm-button {
  width: min(87.379%, 900px);
  min-height: clamp(70px, 10.954vw, 118px);
  font-size: clamp(22px, 4.167vw, 45px);
}

.button-coral {
  background: linear-gradient(180deg, var(--coral-start), var(--coral-end));
  box-shadow: 0 clamp(5px, .833vw, 9px) 0 var(--coral-shadow);
}

.button:hover {
  filter: brightness(1.07);
}

.button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--coral-shadow);
}

.button:disabled {
  cursor: wait;
  filter: grayscale(.2);
  opacity: .72;
}

.button-link {
  min-height: 44px;
  padding: 7px 12px;
  border: 0;
  color: var(--page-blue);
  background: transparent;
  font-size: clamp(15px, 1.852vw, 20px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.confirm-panel {
  width: min(100%, 950px);
  margin: 0 auto;
}

.confirm-title {
  margin: 0 0 10px;
  color: var(--page-blue);
  font-size: clamp(24px, 3.704vw, 40px);
  line-height: 1.4;
  text-align: center;
}

.confirm-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(15px, 2.037vw, 22px);
  text-align: center;
}

.confirm-list {
  margin: 0;
  border: 1px solid #b9c5d3;
  overflow: hidden;
}

.confirm-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 32%) minmax(0, 1fr);
  border-top: 1px solid #b9c5d3;
}

.confirm-list > div:first-child {
  border-top: 0;
}

.confirm-list dt,
.confirm-list dd {
  margin: 0;
  padding: clamp(12px, 1.852vw, 20px);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.confirm-list dt {
  color: var(--page-blue);
  background: var(--heading-surface);
  font-weight: 700;
}

.confirm-list dd {
  border-left: 1px solid #b9c5d3;
}

.environment-note {
  margin: 22px 0 0;
  padding: 13px 15px;
  border: 1px solid #efb6b4;
  border-radius: 6px;
  color: #75332f;
  background: #fff5f4;
  font-size: 14px;
  font-weight: 700;
}

.thanks-page {
  display: grid;
  place-items: center;
  padding-top: clamp(44px, 7.407vw, 80px);
  padding-bottom: clamp(56px, 9.259vw, 100px);
}

.thanks-card {
  width: min(100%, 900px);
  padding: clamp(30px, 5.556vw, 60px) clamp(16px, 4.63vw, 50px);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(1, 65, 151, .1);
  text-align: center;
}

.thanks-icon {
  display: grid;
  place-items: center;
  width: clamp(62px, 8.333vw, 90px);
  height: clamp(62px, 8.333vw, 90px);
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--page-blue);
  font-size: clamp(32px, 4.444vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.thanks-kicker {
  margin: 0 0 5px !important;
  color: var(--coral-end);
  font-size: clamp(12px, 1.481vw, 16px);
  font-weight: 700;
  letter-spacing: .15em;
}

.thanks-card h2 {
  margin: 0 0 20px;
  color: var(--page-blue);
  font-size: clamp(24px, 3.704vw, 40px);
  line-height: 1.4;
}

.thanks-card p {
  max-width: 720px;
  margin: 0 auto 12px;
  font-size: clamp(15px, 2.037vw, 22px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(110px, 15.833vw, 171px);
  padding: 24px 20px;
  color: #fff;
  background: var(--footer-gray);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4.63vw, 50px);
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-size: clamp(16px, 2.87vw, 31px);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.footer-nav a::before {
  width: clamp(12px, 2.222vw, 24px);
  height: clamp(14px, 2.593vw, 28px);
  margin-right: clamp(5px, .926vw, 10px);
  background: center / 100% 100% no-repeat url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAcCAYAAAB75n/uAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAM1JREFUeAG11lsRwjAQheEFBThACjhAAhKQQB2Ag0hAQpGAg9QBEn42DOXeNpfNN3MeeMkZTjttBXCapdTCy6FKEZ+8ZiuW+C8UrcQC41zxbMRpNAvJQTxPzvUhnSdlNvK5qCLKXDVNzYKeZ+j6YOvE92zU4fqiWfgldXSaZi71dJpzjYm8Zv2swU64Zfc//wMbR4aeVZRpeZ/DsMBrNhKDNPedSXl0JxzuyHn5RBzcMrVzZkGYYyelsNg5oaDF+tvocfClaOeJgvKdR9wARJnLpCnn+JYAAAAASUVORK5CYII=");
  content: "";
  flex: 0 0 auto;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media (max-width: 640px) {
  .page-shell {
    box-shadow: none;
  }

  .page-content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .policy-section h2 {
    letter-spacing: 0;
  }

  .information-table th,
  .information-table td {
    padding: 14px 8px;
  }

  .policy-copy {
    line-height: 1.75;
  }

  .contact-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-confirm-button {
    width: 92%;
  }

  .confirm-lead {
    text-align: left;
  }

  .confirm-list > div {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .confirm-list dt,
  .confirm-list dd {
    padding: 11px 8px;
  }

  .footer-nav {
    gap: 24px;
  }
}

@media (max-width: 370px) {
  .information-table {
    font-size: 13px;
  }

  .confirm-list > div {
    display: block;
  }

  .confirm-list dd {
    border-top: 1px solid #b9c5d3;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
