:root {
  --color-surface: #ffffff;
  --color-surface-blue: #edf7fb;
  --color-surface-green: #fafcfb;
  --color-surface-sky: #eff8fc;
  --color-navy: #1f5f8f;
  --color-blue: #1b8ac2;
  --color-text: #1d2b36;
  --color-muted: #5f7280;
  --color-line: #cfe7f6;
  --color-line-soft: #dce6eb;
  --color-line-button: #06c755;
  --font-base:
    "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

.Root {
  scroll-behavior: smooth;
  background-color: var(--color-surface);
}

.Page {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: var(--color-text);
  background-color: var(--color-surface);
  font-family: var(--font-base);
  font-size: 17px;
  line-height: 1.92;
  letter-spacing: 0;
}

@media (max-width: 979px) {
  .Page {
    font-size: 16px;
    line-height: 1.86;
  }
}

.Page[data-drawer-open="true"] {
  overflow: hidden;
}

.VisuallyHidden {
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

.SkipLink {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10; /* headerより上 */
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  color: var(--color-surface);
  background-color: var(--color-navy);
  font-size: 14px;
  line-height: 1.4;
  text-decoration-line: none;
  opacity: 0;
  pointer-events: none;
}

.SkipLink:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
  opacity: 1;
  pointer-events: auto;
}

.Header {
  position: sticky;
  top: 0;
  z-index: 5; /* 固定ヘッダー */
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-right: 52px;
  padding-bottom: 14px;
  padding-left: 52px;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e3ecf1;
}

@media (max-width: 979px) {
  .Header {
    min-height: 72px;
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-left: 16px;
  }
}

.Header-Brand {
  min-width: 210px;
  display: grid;
  gap: 1px;
  color: var(--color-navy);
  line-height: 1.25;
  text-decoration-line: none;
}

@media (max-width: 979px) {
  .Header-Brand {
    min-width: 0;
  }
}

.Header-Brand:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Header-BrandName {
  color: var(--color-blue);
  font-size: 23px;
  font-weight: 800;
}

@media (max-width: 979px) {
  .Header-BrandName {
    font-size: 21px;
  }
}

.Header-BrandLabel {
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 979px) {
  .Header-BrandLabel {
    font-size: 11px;
  }
}

.Header-Nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* ナビの必要幅（約1086px）に操作余白を加え、本文より早くメニューへ切り替える。 */
@media (max-width: 1119px) {
  .Header-Nav {
    display: none;
  }
}

.Header-NavLink {
  color: inherit;
  white-space: nowrap;
  text-decoration-line: none;
}

.Header-NavLink:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Header-NavSupportLink {
  padding-top: 9px;
  padding-right: 15px;
  padding-bottom: 9px;
  padding-left: 15px;
  color: var(--color-navy);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #b8d2e1;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration-line: none;
}

.Header-NavSupportLink:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Header-MenuButton {
  display: none;
  position: relative;
  width: 50px;
  height: 48px;
  color: var(--color-surface);
  background-color: var(--color-navy);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: var(--color-navy);
  border-radius: 12px;
  appearance: none;
  cursor: pointer;
}

@media (max-width: 1119px) {
  .Header-MenuButton {
    display: block;
  }
}

.Header-MenuButton:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Header-MenuIcon {
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  width: 20px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: currentColor;
  border-radius: 999px;
}

.Header-MenuIcon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
}

.Header-MenuIcon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
}

.Main {
  display: block;
}

.Privacy {
  padding-top: 68px;
  padding-bottom: 88px;
  background-color: var(--color-surface);
}

@media (max-width: 979px) {
  .Privacy {
    padding-top: 34px;
    padding-bottom: 58px;
  }
}

.Privacy__Inner {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.Privacy-Intro {
  padding-bottom: 48px;
}

@media (max-width: 979px) {
  .Privacy-Intro {
    padding-bottom: 34px;
  }
}

.Privacy-Title {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: 0;
  color: var(--color-navy);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: 0;
}

@media (max-width: 979px) {
  .Privacy-Title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.38;
  }
}

.Privacy-Section {
  display: grid;
  gap: 18px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e2eaf0;
}

@media (max-width: 979px) {
  .Privacy-Section {
    gap: 16px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

.Privacy-Section:last-child {
  padding-bottom: 0;
}

.Privacy-SectionTitle {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

@media (max-width: 979px) {
  .Privacy-SectionTitle {
    font-size: 19px;
    line-height: 1.5;
  }
}

.Privacy-Text {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.Privacy-List {
  display: grid;
  gap: 4px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 1.2em;
}

.Privacy-Link {
  color: var(--color-blue);
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.Privacy-Link:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Footer {
  scroll-margin-top: 98px;
  padding-top: 40px;
  padding-bottom: 52px;
  color: #f6fbff;
  background-color: var(--color-navy);
}

@media (max-width: 979px) {
  .Footer {
    scroll-margin-top: 84px;
    padding-top: 30px;
    padding-bottom: 108px;
  }
}

.Footer-Nav {
  width: 100%;
  max-width: 960px;
  display: grid;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media (max-width: 979px) {
  .Footer-Nav {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.Footer-NavLink {
  padding-top: 2px;
  padding-bottom: 2px;
  color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  font-size: 16px;
  line-height: 1.8;
  text-decoration-line: none;
}

@media (max-width: 979px) {
  .Footer-NavLink {
    font-size: 15px;
  }
}

.Footer-NavLink:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Footer-Copyright {
  padding-top: 2px;
  padding-bottom: 2px;
  color: #bfe8ff;
  border-bottom-width: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.Drawer {
  display: none;
}

@media (max-width: 1119px) {
  .Drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 7; /* モバイルメニュー */
    display: block;
    overflow-y: auto;
    background-color: var(--color-navy);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-property: opacity, visibility;
    transition-duration: 0.18s;
    transition-timing-function: ease;
  }
}

@media (max-width: 1119px) {
  .Drawer[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.Drawer-Header {
  display: none;
}

@media (max-width: 1119px) {
  .Drawer-Header {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-left: 16px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }
}

.Drawer-Brand {
  display: none;
}

@media (max-width: 1119px) {
  .Drawer-Brand {
    display: grid;
    gap: 1px;
    color: var(--color-surface);
    line-height: 1.25;
    text-decoration-line: none;
  }
}

.Drawer-Brand:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Drawer-BrandName {
  color: var(--color-surface);
  font-size: 21px;
  font-weight: 800;
}

.Drawer-BrandLabel {
  color: var(--color-surface);
  font-size: 11px;
  font-weight: 700;
}

.Drawer-CloseButton {
  display: none;
}

@media (max-width: 1119px) {
  .Drawer-CloseButton {
    position: relative;
    width: 50px;
    height: 48px;
    display: block;
    color: var(--color-surface);
    background-color: var(--color-navy);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    appearance: none;
    cursor: pointer;
  }
}

.Drawer-CloseButton:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Drawer-CloseButton::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  width: 22px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: currentColor;
  border-radius: 999px;
  rotate: 45deg;
}

.Drawer-CloseButton::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  width: 22px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: currentColor;
  border-radius: 999px;
  rotate: -45deg;
}

.Drawer-Nav {
  display: none;
}

@media (max-width: 1119px) {
  .Drawer-Nav {
    display: grid;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

.Drawer-NavLink {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-surface);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration-line: none;
}

.Drawer-NavLink:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #84c7ef;
  outline-offset: 4px;
}

.Drawer-NavIcon {
  display: inline;
}
