/* ============================================================
   FOUNDATION: Web Fonts (Noto Sans JP - self-hosted)
   ============================================================ */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-japanese-400.woff2") format("woff2");
  unicode-range: U+3000-9FFF, U+FF00-FFEF, U+3040-309F, U+30A0-30FF;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-japanese-500.woff2") format("woff2");
  unicode-range: U+3000-9FFF, U+FF00-FFEF, U+3040-309F, U+30A0-30FF;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-japanese-600.woff2") format("woff2");
  unicode-range: U+3000-9FFF, U+FF00-FFEF, U+3040-309F, U+30A0-30FF;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-japanese-700.woff2") format("woff2");
  unicode-range: U+3000-9FFF, U+FF00-FFEF, U+3040-309F, U+30A0-30FF;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-jp-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   VENDOR: Basic CSS Reset (replaces kiso.css)
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================================
   FOUNDATION: Variables
   ============================================================ */
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}

:root {
  --layout-width-inner: 1160px;
  --padding-pc: 20px;
  --padding-sp: 15px;
  --color-white: #fff;
  --color-text: #202727;
  --color-primary: #005bac;
  --color-primary-light: #10a6e1;
  --color-primary-dark: #003f7e;
  --color-secondary-blue: #248be7;
  --color-border-light: #cbd7e6;
  --color-text-muted: #788883;
  --color-text-muted-sp: #8b8b8b;
  --color-error: #d44343;
  --color-tab-inactive: #72818e;
  --color-tab-active: #0e73cc;
  --color-tab-bg: rgb(211 224 241 / 80%);
  --color-tab-bg-hover: rgb(211 224 241 / 50%);
  --color-gray-light: #d9d9d9;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-size-base: 1rem;
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --line-height-base: 1.8;
  --letter-spacing-base: 0.03em;
  --header-height: 150px;
  --header-height-sp: 105px;
  --duration-default: 0.3s;
  --hover-opacity: 0.7;
  --easing-zoom: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   FOUNDATION: Base
   ============================================================ */
html {
  scroll-padding-top: var(--header-height);
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: var(--header-height-sp);
  }
}

body {
  overflow-x: clip;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--normal);
  line-height: var(--line-height-base);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-base);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

@media (width <= 767px) {
  [data-device="pc"] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-device="sp"] {
    display: none;
  }
}

button {
  cursor: pointer;
}

a {
  display: block;
  text-decoration: none;
}

h1 {
  margin: 0;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  background-color: rgb(0 0 0 / 50%);
  opacity: 0;
  transition: opacity var(--duration-default);
}

body.is-drawer-open::after {
  pointer-events: auto;
  opacity: 1;
}

/* ============================================================
   LAYOUT: Container
   ============================================================ */
.l-container {
  box-sizing: border-box;
  max-inline-size: calc(var(--layout-width-inner) + var(--padding-pc) * 2);
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-container {
    max-inline-size: calc(var(--layout-width-inner) + var(--padding-sp) * 2);
    padding-inline: var(--padding-sp);
  }
}

/* ============================================================
   LAYOUT: Header
   ============================================================ */
.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 4%);
}

.l-header--fixed {
  position: sticky;
  top: 0;
}

.l-header__topbar {
  display: flex;
  align-items: center;
  height: 34px;
  background-color: var(--color-secondary-blue);
}
@media (max-width: 767px) {
  .l-header__topbar {
    display: none;
  }
}

.l-header__topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.l-header__topbar-code {
  font-size: 11px;
  font-weight: var(--normal);
  color: var(--color-white);
  letter-spacing: 0;
}

.l-header__topbar-nav {
  display: flex;
  align-items: center;
}

.l-header__topbar-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.l-header__topbar-link {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  font-weight: var(--bold);
  line-height: 1.16;
  color: var(--color-white);
  letter-spacing: 0;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-header__topbar-link:hover,
  .l-header__topbar-link:focus {
    opacity: var(--hover-opacity);
  }
}

.l-header__topbar-link--warning {
  text-decoration-line: underline;
  text-decoration-thickness: auto;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-position: from-font;
  text-underline-offset: auto;
}

.l-header__topbar-link--warning::before,
.l-header__topbar-link--shop::before,
.l-header__topbar-link--recruit::before {
  --_width: 14px;
  --_image: "";
  display: inline-block;
  flex-shrink: 0;
  width: var(--_width);
  aspect-ratio: 1;
  content: "";
  background-color: currentcolor;
  mask-image: var(--_image);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.l-header__topbar-link--warning::before {
  --_width: 16px;
  --_image: url("/assets/images/common/icon-warning.svg");
}

.l-header__topbar-link--shop::before {
  --_width: 16px;
  --_image: url("/assets/images/common/icon-shop.svg");
}

.l-header__topbar-link--recruit::before {
  --_width: 18px;
  --_image: url("/assets/images/common/icon-recruit.svg");
}

.l-header__main {
  display: flex;
  align-items: center;
  height: 78px;
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .l-header__main {
    height: 60px;
    border-bottom: 1px solid var(--color-tab-active);
  }
}

.l-header__main-content {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .l-header__main-content {
    gap: 16px;
  }
}

.l-header__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.l-header__logo-link {
  flex-shrink: 0;
  width: min(172px, 100%);
  height: auto;
  aspect-ratio: 172 / 42;
  transition: opacity var(--duration-default);
}
@media (max-width: 767px) {
  .l-header__logo-link {
    width: min(153px, 100%);
    margin-left: -2px;
  }
}
@media (any-hover: hover) {
  .l-header__logo-link:hover,
  .l-header__logo-link:focus {
    opacity: var(--hover-opacity);
  }
}

.l-header__logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
@media (max-width: 767px) {
  .l-header__logo-image {
    image-rendering: -webkit-optimize-contrast;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
}
@media (width <= 1150px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
}

.l-header__nav-item {
  position: relative;
}

.l-header__nav-item + .l-header__nav-item {
  border-left: 1px solid var(--color-border-light);
}

.l-header__nav-link {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 5px 24px;
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--color-text);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-header__nav-link:hover,
  .l-header__nav-link:focus {
    opacity: var(--hover-opacity);
  }
}

.l-header__buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}
@media (width <= 1150px) {
  .l-header__buttons {
    display: none;
  }
}

.l-header__button {
  --_bg-color: transparent;
  --_image: url("");
  display: inline-grid;
  grid-template-columns: auto 1fr;
  column-gap: 6px;
  align-items: center;
  min-width: 137px;
  min-height: 44px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: var(--bold);
  line-height: 1.33;
  color: var(--color-white);
  text-align: center;
  background: var(--_bg-color);
  border-radius: 4px;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-header__button:hover,
  .l-header__button:focus {
    opacity: var(--hover-opacity);
  }
}

.l-header__button::before {
  justify-self: center;
  width: 17px;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-white);
  mask-image: var(--_image);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition:
    translate var(--duration-default),
    background-color var(--duration-default);
}

.l-header__button--banking {
  --_bg-color: linear-gradient(135deg, #2838ca 0%, #2e7dd7 100%);
  --_image: url("/assets/images/common/icon-lock.svg");
}

.l-header__button--densai {
  --_bg-color: linear-gradient(135deg, #1fc1e1 0%, #33d4ee 100%);
  --_image: url("/assets/images/common/icon-densai.svg");
}

.l-header__hamburger {
  position: relative;
  display: none;
  place-items: center;
  margin-left: auto;
  width: 29px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}
@media (width <= 1150px) {
  .l-header__hamburger {
    display: grid;
  }
}
@media (max-width: 767px) {
  .l-header__hamburger {
    width: 28px;
    height: 20px;
  }
}

.l-header__hamburger::before {
  position: absolute;
  inset: -10px;
  content: "";
}

.l-header__hamburger-line {
  --_bg-color: linear-gradient(90deg, #2838ca 0%, #2e7dd7 63%, #76c5ff 100%);
  position: relative;
  width: 100%;
  height: 2px;
  background: var(--_bg-color);
  border-radius: 2px;
  transition: background var(--duration-default);
}

.l-header__hamburger-line::before,
.l-header__hamburger-line::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--_bg-color);
  border-radius: 2px;
  transition: transform var(--duration-default);
}

.l-header__hamburger-line::before {
  transform: translateY(-7px);
}

.l-header__hamburger-line::after {
  transform: translateY(7px);
}

@media (width <= 767px) {
  .l-header__hamburger-line::before {
    transform: translateY(-8px);
  }
  .l-header__hamburger-line::after {
    transform: translateY(8px);
  }
}

.l-header__hamburger.is-active .l-header__hamburger-line {
  background: transparent;
}

.l-header__hamburger.is-active .l-header__hamburger-line::before {
  height: 2.5px;
  background: #2e7dd7;
  transform: rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger-line::after {
  height: 2.5px;
  background: #2e7dd7;
  transform: rotate(-45deg);
}

.l-header__drawer {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 100;
  visibility: hidden;
  width: 100%;
  height: calc(100dvh - 60px);
  overflow-y: auto;
  pointer-events: none;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity var(--duration-default),
    visibility var(--duration-default),
    transform var(--duration-default),
    pointer-events var(--duration-default);
  will-change: opacity, transform;
}
@media (width >= 1151px) {
  .l-header__drawer {
    display: none;
  }
}

.l-header__drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.l-header__drawer-nav {
  padding: 16px 16px 40px;
}

.l-header__drawer-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.l-header__drawer-button {
  --_bg-color: transparent;
  --_image: url("");
  display: inline-grid;
  grid-template-columns: auto 1fr;
  column-gap: 6px;
  align-items: center;
  min-width: 137px;
  min-height: 44px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: var(--bold);
  line-height: 1.33;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  background: var(--_bg-color);
  border-radius: 4px;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-header__drawer-button:hover,
  .l-header__drawer-button:focus {
    opacity: var(--hover-opacity);
  }
}

.l-header__drawer-button::before {
  justify-self: center;
  width: 17px;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-white);
  mask-image: var(--_image);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition:
    translate var(--duration-default),
    background-color var(--duration-default);
}

.l-header__drawer-button--banking {
  --_bg-color: linear-gradient(135deg, #2838ca 0%, #2e7dd7 100%);
  --_image: url("/assets/images/common/icon-lock.svg");
}

.l-header__drawer-button--densai {
  --_bg-color: linear-gradient(135deg, #1fc1e1 0%, #33d4ee 100%);
  --_image: url("/assets/images/common/icon-densai.svg");
}

.l-header__drawer-button-icon {
  display: none;
}

.l-header__drawer-emergency {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
  color: #d44343;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #d44343;
  border-radius: 4px;
}

.l-header__drawer-emergency::before {
  --_width: 16px;
  --_image: url("/assets/images/common/icon-warning.svg");
  display: inline-block;
  flex-shrink: 0;
  width: var(--_width);
  aspect-ratio: 1;
  content: "";
  background-color: currentcolor;
  mask-image: var(--_image);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.l-header__drawer-list {
  margin-top: 24px;
  list-style: none;
}

.l-header__drawer-item {
  border-bottom: 1px solid var(--color-border-light);
}

.l-header__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.45px;
  text-decoration: none;
}

.l-header__drawer-link::after {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 14px;
  content: "";
  background: url("/assets/images/common/icon-chevron-right.svg") center / contain no-repeat;
}

.l-header__drawer-accordion {
  border-bottom: 1px solid var(--color-border-light);
}

.l-header__drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 55px;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.45px;
  cursor: pointer;
  background: none;
  border: none;
}

.l-header__drawer-toggle-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.l-header__drawer-toggle-icon::before,
.l-header__drawer-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-color: #0e73cc;
  transition: transform var(--duration-default) ease-in-out;
}

.l-header__drawer-toggle-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.l-header__drawer-toggle-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.is-expanded .l-header__drawer-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.l-header__drawer-submenu {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  opacity: 0;
}

.l-header__drawer-submenu.is-open {
  height: auto;
  opacity: 1;
}

.l-header__drawer-submenu-link {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-block: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  text-decoration: none;
}

.l-header__drawer-submenu-link::before {
  display: inline-block;
  flex-shrink: 0;
  width: 5px;
  height: 9px;
  content: "";
  background-color: var(--color-tab-active);
  mask-image: url("/assets/images/common/icon-chevron-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.l-header__drawer-submenu-text--external::after {
  display: inline-block;
  width: 0.86lh;
  aspect-ratio: 1 / 1;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  background-color: rgb(114 129 142 / 90%);
  mask-image: url("/assets/images/common/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}

/* ============================================================
   LAYOUT: Footer
   ============================================================ */
.l-footer {
  display: grid;
}

.l-footer__banners {
  padding-block: 64px;
  background-image: url("/assets/images/common/img-banner-bg.png");
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .l-footer__banners {
    padding-block: 24px;
    background-image: url("/assets/images/common/img-banner-bg-sp.png");
  }
}

.l-footer__banners-list {
  --_min-banner-width: 240px;
  --_gap: 24px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_min-banner-width), 1fr));
  gap: var(--_gap);
  width: 100%;
  padding: 48px 40px;
}
@media (max-width: 767px) {
  .l-footer__banners-list {
    padding: 16px;
    --_min-banner-width: 140px;
    --_gap: 16px;
  }
}

.l-footer__banners-list::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-color: var(--color-white);
  border-radius: 8px;
  opacity: 0.7;
  backdrop-filter: blur(15px);
}
@media (max-width: 767px) {
  .l-footer__banners-list::before {
    border-radius: 4px;
  }
}

.l-footer__banners-item {
  position: relative;
}

.l-footer__banners-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-footer__menu {
  padding-block: 51px 48px;
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .l-footer__menu {
    padding-block: 40px;
  }
}

.l-footer__nav {
  --_min-nav-width: 272px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_min-nav-width), 1fr));
  gap: 24px;
}

.l-footer__nav-group {
  display: grid;
  gap: 16px;
  align-content: start;
}

.l-footer__nav-title {
  position: relative;
  padding-block-end: 8px;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.l-footer__nav-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 19%, #76c5ff 30%, var(--color-border-light) 30%);
}

.l-footer__nav-item {
  display: flex;
}

.l-footer__nav-list {
  display: grid;
  gap: 16px;
}

.l-footer__nav-link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover,
  .l-footer__nav-link:focus {
    opacity: var(--hover-opacity);
  }
}

.l-footer__nav-link::before {
  display: inline-block;
  flex-shrink: 0;
  width: 5px;
  height: 8px;
  content: "";
  background-color: var(--color-tab-active);
  mask-image: url("/assets/images/common/icon-chevron-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.l-footer__nav-link:hover::before,
.l-footer__nav-link:focus::before {
  background-color: var(--color-primary);
}

.l-footer__nav-text--pdf::after,
.l-footer__nav-text--external::after {
  --_bg-color: transparent;
  --_image: url("");
  display: inline-block;
  width: 0.86lh;
  aspect-ratio: 1 / 1;
  margin-left: 5px;
  vertical-align: middle;
  content: "";
  background-color: var(--_bg-color);
  mask-image: var(--_image);
  mask-repeat: no-repeat;
  mask-size: contain;
}

.l-footer__nav-text--pdf::after {
  --_bg-color: #eb5757;
  --_image: url("/assets/images/common/icon-pdf.svg");
}

.l-footer__nav-text--external::after {
  --_bg-color: rgb(114 129 142 / 90%);
  --_image: url("/assets/images/common/icon-external-link.svg");
}

.l-footer__privacy {
  padding-block: 48px;
  background-color: var(--color-secondary-blue);
}
@media (max-width: 767px) {
  .l-footer__privacy {
    padding-block: 40px;
  }
}

.l-footer__privacy-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 120px;
  align-items: start;
}
@media (max-width: 767px) {
  .l-footer__privacy-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.l-footer__privacy-title {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .l-footer__privacy-title {
    text-align: center;
  }
}

.l-footer__privacy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 64px;
  align-items: start;
}
@media (max-width: 767px) {
  .l-footer__privacy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.l-footer__privacy-list {
  display: grid;
  gap: 12px;
}

.l-footer__privacy-item {
  display: flex;
}

.l-footer__privacy-link {
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: 0.03em;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-footer__privacy-link:hover,
  .l-footer__privacy-link:focus {
    opacity: var(--hover-opacity);
  }
}

.l-footer__privacy-link--pdf::after {
  display: inline-block;
  width: 0.86lh;
  aspect-ratio: 1 / 1;
  margin-left: 5px;
  vertical-align: middle;
  content: "";
  background-color: currentcolor;
  mask-image: url("/assets/images/common/icon-pdf.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}

.l-footer__copyright {
  background-color: var(--color-secondary-blue);
}

.l-footer__copyright-container {
  border-block-start: 1px solid rgb(255 255 255 / 20%);
}

.l-footer__copyright-text {
  padding-block: 12px;
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: var(--normal);
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .l-footer__copyright-text {
    font-size: 10px;
  }
}

/* ============================================================
   LAYOUT: Main
   ============================================================ */

/* ============================================================
   LAYOUT: Section
   ============================================================ */
.l-section {
  margin-block: 64px;
}
@media (max-width: 767px) {
  .l-section {
    margin-block: 40px;
  }
}

/* ============================================================
   COMPONENT: Button
   ============================================================ */
.c-button {
  --_bg-color: var(--color-white);
  --_color: var(--color-text);
  --_border-color: var(--color-primary);
  --_icon-size: 14px;
  display: inline-grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: min(180px, 100%);
  min-width: 153px;
  min-height: 42px;
  padding-block: 12px;
  padding-inline: 20px;
  font-size: 15px;
  font-weight: var(--medium);
  line-height: 1.46;
  color: var(--_color);
  white-space: nowrap;
  text-decoration: none;
  background-color: var(--_bg-color);
  border: 1px solid var(--_border-color);
  border-radius: calc(infinity * 1px);
  transition: opacity var(--duration-default);
}
@media (max-width: 767px) {
  .c-button {
    padding-block: 8px;
  }
}
@media (any-hover: hover) {
  .c-button:hover,
  .c-button:focus {
    opacity: var(--hover-opacity);
  }
}

.c-button.c-button--pdf {
  grid-template-columns: 1fr auto 1fr;
  column-gap: 11px;
}
@media (max-width: 767px) {
  .c-button.c-button--pdf {
    column-gap: 6px;
  }
}
.c-button.c-button--pdf::before {
  content: "";
}
.c-button.c-button--pdf::after {
  justify-self: start;
  width: var(--_icon-size);
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-error);
  mask-image: url("/assets/images/common/icon-pdf.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-button.c-button--external {
  grid-template-columns: 1fr auto 1fr;
  column-gap: 11px;
}
.c-button.c-button--external::before {
  content: "";
}
.c-button.c-button--external::after {
  justify-self: start;
  width: var(--_icon-size);
  aspect-ratio: 1;
  content: "";
  background-color: currentcolor;
  mask-image: url("/assets/images/common/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-button.c-button--store-map {
  --_border-color: #0e73cc;
  --_icon-size: 17px;
  width: 227px;
  min-height: 50px;
  padding-block: 14px;
  padding-inline: 24px;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .c-button.c-button--store-map {
    min-height: 42px;
    padding-block: 10px;
  }
}

.c-button.c-button--login {
  --_bg-color: linear-gradient(90deg, #2838ca 0%, #2e7dd7 100%);
  --_color: var(--color-white);
  --_border-color: transparent;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 11px;
  background: var(--_bg-color);
  margin-inline: auto;
}
.c-button.c-button--login::before {
  justify-self: end;
  width: var(--_icon-size);
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-white);
  mask-image: url("/assets/images/common/icon-lock.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.c-button.c-button--login::after {
  content: "";
}

.c-button.c-button--orange {
  --_bg-color: #ffa846;
  --_color: var(--color-white);
  --_border-color: transparent;
}

/* ============================================================
   COMPONENT: Breadcrumb
   ============================================================ */
.c-breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  padding-block: 12px;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 8px;
  }
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.c-breadcrumb__item {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: var(--normal);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.c-breadcrumb__link {
  color: var(--color-text);
  transition: color var(--duration-default) ease;
}

.c-breadcrumb__link:hover,
.c-breadcrumb__link:focus {
  opacity: var(--hover-opacity);
}

.c-breadcrumb__current {
  color: var(--color-text);
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  display: block;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  content: "";
  background-image: url("/assets/images/common/icon-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ============================================================
   COMPONENT: Card 1
   ============================================================ */
.c-card-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
  transition:
    transform 0.3s var(--easing-zoom),
    box-shadow 0.3s var(--easing-zoom);
}
@media (max-width: 767px) {
  .c-card-1 {
    min-height: 158px;
    padding: 16px 8px;
  }
}
@media (any-hover: hover) {
  .c-card-1:hover,
  .c-card-1:focus {
    box-shadow: 0 12px 40px rgb(0 0 0 / 12%);
    transform: translateY(-4px);
  }
}

.c-card-1__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .c-card-1__link {
    border-radius: 10px;
  }
}

.c-card-1__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-card-1__icon {
  display: grid;
  align-items: center;
}

.c-card-1__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.c-card-1__title {
  width: 100%;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-card-1__title {
    font-size: 13px;
  }
}

.c-card-1__hgroup {
  display: grid;
  gap: 3px;
  place-items: center;
  width: 100%;
  text-align: center;
}

.c-card-1__subtitle {
  width: 100%;
  font-family: var(--font-family-base);
  font-size: 11px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-card-1__subtitle {
    font-size: 9px;
  }
}

.c-card-1__title span {
  display: block;
  margin-top: -4px;
  font-size: 11px;
  font-weight: var(--bold);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-card-1__title span {
    font-size: 10px;
  }
}

.c-card-1:has(.c-card-1__link:focus-visible) {
  box-shadow: 0 12px 40px rgb(0 0 0 / 12%);
  transform: translateY(-4px);
}

/* ============================================================
   COMPONENT: Card 2
   ============================================================ */
.c-card-2 {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  min-height: 223px;
  padding: 24px;
  container-type: inline-size;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
}
@media (max-width: 767px) {
  .c-card-2 {
    padding: 24px 20px;
  }
}

.c-card-2__header {
  align-self: start;
}

.c-card-2__subtitle {
  margin-top: 4px;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-card-2__subtitle {
    font-size: 12px;
  }
}

.c-card-2__title {
  align-self: start;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-card-2__title {
    font-size: 18px;
  }
}

.c-card-2__content {
  align-self: start;
  margin-top: 16px;
}

.c-card-2__description {
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: var(--normal);
  line-height: 1.46;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-card-2__description {
    font-size: 14px;
    line-height: 1.57;
  }
}

.c-card-2__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-self: end;
  margin-top: 24px;
}
@container (max-width: 360px) {
  .c-card-2__buttons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .c-card-2__buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.c-card-2__buttons .c-button {
  width: 100%;
}

.c-card-2__note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: var(--normal);
  line-height: 1.5;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

/* ============================================================
   COMPONENT: Card Grid
   ============================================================ */
.c-card-grid {
  --_min-card-width: 220px;
  --_gap: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--_min-card-width), 1fr));
  gap: var(--_gap);
}
@media (max-width: 767px) {
  .c-card-grid {
    --_min-card-width: 140px;
  }
}

.c-card-grid--cols-2 {
  --_min-card-width: 350px;
  grid-template-columns: repeat(auto-fill, minmax(var(--_min-card-width), 1fr));
}
@media (max-width: 767px) {
  .c-card-grid--cols-2 {
    --_min-card-width: 313px;
  }
}

/* ============================================================
   COMPONENT: Panel
   ============================================================ */
.c-panel {
  position: relative;
  width: 100%;
  padding: 0 40px 64px;
  border-radius: 8px 8px 0 0;
  isolation: isolate;
}
@media (max-width: 767px) {
  .c-panel {
    padding: 0 0 40px;
  }
}

.c-panel::before {
  position: absolute;
  inset: 180px 0 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to right, rgb(40 56 202 / 10%), rgb(46 125 215 / 10%) 50%, rgb(118 197 255 / 10%));
  border-radius: 8px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-panel::before {
    width: 100vw;
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }
}

/* ============================================================
   COMPONENT: Policy Cards
   ============================================================ */
.c-policy-cards {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 24px 120px;
}
@media (max-width: 767px) {
  .c-policy-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.c-policy-cards__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: center;
  padding: 48px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .c-policy-cards__item {
    gap: 40px;
    padding: 32px 16px;
  }
}

.c-policy-cards__item--start {
  align-items: start;
}

.c-policy-cards__title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-policy-cards__title {
    justify-self: center;
    font-size: 20px;
  }
}

.c-policy-cards__title::after {
  display: block;
  width: 107px;
  height: 3px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 31.5%, #76c5ff 50%, var(--color-border-light) 50%);
}
@media (max-width: 767px) {
  .c-policy-cards__title::after {
    margin-top: 16px;
  }
}

.c-policy-cards__content {
  min-width: 0;
}

/* ============================================================
   COMPONENT: Section Header
   ============================================================ */
.c-section-header {
  display: block;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: var(--bold);
  font-feature-settings: "palt" on;
  line-height: 1.2;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-section-header {
    font-size: 22px;
  }
}

.c-section-header::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 16px;
  content: "";
  background: linear-gradient(to right, #2838ca, #2e7dd7 50px, #76c5ff 80px, var(--color-border-light) 100px);
}

/* ============================================================
   COMPONENT: Store Card
   ============================================================ */
.c-store-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}

.c-store-card__map {
  aspect-ratio: 521 / 347;
}
@media (max-width: 767px) {
  .c-store-card__map {
    aspect-ratio: 345 / 230;
  }
}

.c-store-card__map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px 8px 0 0;
}

.c-store-card__title {
  font-size: 20px;
  font-weight: var(--bold);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-store-card__title {
    font-size: 18px;
    letter-spacing: 0.03em;
  }
}

.c-store-card__info {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 27px 22px;
}
@media (max-width: 767px) {
  .c-store-card__info {
    padding: 24px;
  }
}

.c-store-card__details {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.46;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .c-store-card__details {
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.03em;
  }
}

.c-store-card__tel {
  margin-top: 3px;
}

.c-store-card__access-group {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.c-store-card__label {
  font-size: 14px;
  font-weight: var(--bold);
  letter-spacing: 0.03em;
}

.c-store-card__access-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.c-store-card__access-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.c-store-card__access-item::before {
  --_icon-size: 8px;
  flex-shrink: 0;
  width: var(--_icon-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_icon-size)) / 2);
  content: "";
  background: #ffa846;
  border-radius: calc(infinity * 1px);
}

.c-store-card__buttons {
  justify-self: center;
  margin-top: 24px;
}

/* ============================================================
   COMPONENT: Tab
   ============================================================ */
.c-tab {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 40px 64px;
  border-radius: 8px 8px 0 0;
  isolation: isolate;
}
@media (max-width: 767px) {
  .c-tab {
    padding: 0 0 40px;
  }
}

.c-tab::before {
  position: absolute;
  inset: 180px 0 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to right, rgb(40 56 202 / 10%), rgb(46 125 215 / 10%) 50%, rgb(118 197 255 / 10%));
  border-radius: 8px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-tab::before {
    width: 100vw;
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }
}

.c-tab::after {
  position: absolute;
  inset: 58px 40px 64px;
  z-index: -1;
  pointer-events: none;
  content: "";
  border-radius: 0 0 8px 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 10%);
}
@media (max-width: 767px) {
  .c-tab::after {
    inset: 46px 0 40px;
  }
}

.c-tab__input {
  display: none;
}

.c-tab__label {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  order: -1;
  min-height: 58px;
  padding-block: 16px;
  overflow: visible;
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-tab-inactive);
  cursor: pointer;
  background-color: var(--color-tab-bg);
  border-radius: 8px 8px 0 0;
  transition:
    background-color var(--duration-default),
    color var(--duration-default);
}
@media (max-width: 767px) {
  .c-tab__label {
    min-height: 46px;
    padding-block: 13px;
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .c-tab__label:hover,
  .c-tab__label:focus {
    background-color: var(--color-tab-bg-hover);
  }
}

.c-tab__label::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  border-radius: 8px 8px 0 0;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 10%);
}

.c-tab__panel {
  display: none;
  flex: 1 1 100%;
  flex-direction: column;
  gap: 64px;
  padding: 48px 32px;
  background-color: var(--color-white);
  border-radius: 0 0 8px 8px;
}
@media (max-width: 767px) {
  .c-tab__panel {
    gap: 24px;
    padding: 32px 16px;
  }
}

.c-tab__section {
  display: grid;
  gap: 24px;
}
@media (max-width: 767px) {
  .c-tab__section {
    gap: 16px;
  }
}

.c-tab__section-title {
  font-family: var(--font-family-base);
  font-size: 22px;
  font-weight: var(--bold);
  line-height: 1.5;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-tab__section-title {
    font-size: 18px;
  }
}

.c-tab__label:has(:focus-visible) {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.c-tab__label:has(:checked) + .c-tab__panel {
  display: flex;
}

.c-tab__label:has(:checked) {
  color: var(--color-tab-active);
  background-color: var(--color-white);
}

/* ============================================================
   COMPONENT: Table
   ============================================================ */
.c-table {
  display: grid;
  grid-template-columns: 318px 1fr;
  max-width: 1060px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
  border: 1px solid var(--color-border-light);
}
@media (max-width: 767px) {
  .c-table {
    grid-template-columns: 120px 1fr;
    font-size: 14px;
    font-weight: var(--normal);
  }
}

.c-table__row {
  display: contents;
}

.c-table__dt {
  padding: 16px;
  font-weight: var(--bold);
  background: rgb(118 197 255 / 15%);
}
@media (max-width: 767px) {
  .c-table__dt {
    font-weight: var(--medium);
  }
}

.c-table__row:not(:first-child) .c-table__dt {
  border-top: 1px solid var(--color-border-light);
}

.c-table__dd {
  padding: 16px;
  font-weight: 400;
  border-left: 1px solid var(--color-border-light);
}

.c-table__row:not(:first-child) .c-table__dd {
  border-top: 1px solid var(--color-border-light);
}

/* ============================================================
   COMPONENT: Visual Header
   ============================================================ */
.c-visual-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 275px;
  background-color: var(--color-gray-light);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .c-visual-header {
    height: 163px;
  }
}

.c-visual-header__title {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: var(--semi-bold);
  line-height: 1.4;
  color: var(--color-white);
  text-align: center;
  text-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
@media (max-width: 767px) {
  .c-visual-header__title {
    font-size: 22px;
  }
}

/* ============================================================
   PROJECT: Top Hero
   ============================================================ */
.p-top-hero {
  --slider-speed: 400ms;
  position: relative;
  margin-inline: auto;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-top-hero {
    margin-bottom: 16px;
  }
}

.p-top-hero__link {
  display: block;
}

.p-top-hero__image {
  display: block;
  width: 654px;
  height: auto;
  aspect-ratio: 654 / 310;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-top-hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 178;
  }
}

.p-top-hero .splide__track {
  will-change: transform;
}

.p-top-hero .splide__slide {
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .p-top-hero .splide__slide {
    width: 100% !important;
  }
}

.p-top-hero .splide__slide.is-active {
  pointer-events: auto;
}

.p-top-hero .splide__slide::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-color: rgb(255 255 255 / 85%);
  opacity: 1;
  transition: opacity var(--slider-speed) ease;
}
@media (max-width: 767px) {
  .p-top-hero .splide__slide::after {
    display: none;
  }
}

.p-top-hero .splide__slide.is-active::after {
  opacity: 0;
}

.p-top-hero .splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 27px;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  background-color: var(--color-white);
  background-image: url("/assets/images/common/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 3px 3px 16px rgb(0 0 0 / 10%);
  opacity: 1;
  transform: translateY(-50%);
}

.p-top-hero .splide__arrow::before {
  position: absolute;
  inset: -12px;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background: none;
}

.p-top-hero .splide__arrow svg {
  display: none;
}

.p-top-hero .splide__arrow--prev {
  left: calc(50% - 327px - 16px - 27px);
  transform: translateY(-50%) scaleX(-1);
}

.p-top-hero .splide__arrow--next {
  right: calc(50% - 327px - 16px - 27px);
}

.p-top-hero .splide__pagination {
  position: absolute;
  bottom: -24px;
  left: 50%;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p-top-hero .splide__pagination {
    bottom: -16px;
  }
}

.p-top-hero .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  background-color: var(--color-gray-light);
  border: none;
  border-radius: 50%;
}

.p-top-hero .splide__pagination__page.is-active {
  background-color: var(--color-secondary-blue);
  transform: none;
}

/* ============================================================
   PROJECT: Top Notice
   ============================================================ */
.p-top-notice {
  padding-top: 24px;
}
@media (max-width: 767px) {
  .p-top-notice {
    padding-top: 16px;
  }
}

.p-top-notice__box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
  padding: 12px 24px;
  background-color: var(--color-white);
  border: 2px solid var(--color-error);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-top-notice__box {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
}

.p-top-notice__item {
  display: flex;
}

.p-top-notice__header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.p-top-notice__label::before {
  display: block;
  flex-shrink: 0;
  width: 1.2lh;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-error);
  mask-image: url("/assets/images/common/icon-warning.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}

.p-top-notice__label {
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-error);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-top-notice__label {
    gap: 4px;
    font-size: 12px;
  }
}

.p-top-notice__list {
  display: grid;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-top-notice__list {
    gap: 8px;
  }
}

.p-top-notice__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-top-notice__link {
    font-size: 11px;
  }
}
@media (any-hover: hover) {
  .p-top-notice__link:hover,
  .p-top-notice__link:focus {
    opacity: 0.7;
  }
}

.p-top-notice__link--pdf::after {
  display: inline-block;
  width: 0.85lh;
  aspect-ratio: 1 / 1;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  background-color: #eb5757;
  mask-image: url("/assets/images/common/icon-pdf.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}

/* ============================================================
   PROJECT: Top News
   ============================================================ */
.p-top-news__container {
  display: grid;
  grid-template:
    "header button"
    "list list" / 1fr 180px;
}
@media (max-width: 767px) {
  .p-top-news__container {
    grid-template:
      "header"
      "list"
      "button" / 1fr;
  }
}

.p-top-news__header {
  grid-area: header;
  place-self: end start;
}
@media (max-width: 767px) {
  .p-top-news__header {
    place-self: unset;
  }
}

.p-top-news__header .p-top-news__more {
  flex-basis: 180px;
}

.p-top-news__list {
  display: grid;
  grid-area: list;
  grid-template-columns: max-content 1fr;
  max-height: 288px;
  padding-right: 8px;
  overflow-y: auto;
  list-style: none;
}
@media (max-width: 767px) {
  .p-top-news__list {
    grid-template-columns: 1fr;
    max-height: 420px;
    padding-right: 4px;
  }
}

.p-top-news__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--color-border-light);
}

.p-top-news__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.p-top-news__link {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: 40px;
  align-items: center;
  padding: 16px 0;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (max-width: 767px) {
  .p-top-news__link {
    gap: 8px;
  }
}
@media (any-hover: hover) {
  .p-top-news__link:hover,
  .p-top-news__link:focus {
    opacity: 0.7;
  }
}

.p-top-news__title--pdf::after {
  display: inline-block;
  width: 0.86lh;
  aspect-ratio: 1 / 1;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  background-color: #eb5757;
  mask-image: url("/assets/images/common/icon-pdf.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}

.p-top-news__date {
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text-muted);
}

.p-top-news__title {
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-top-news__title {
    font-size: 14px;
  }
}

.p-top-news__more {
  grid-area: button;
  place-self: end end;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-top-news__more {
    place-self: unset;
    margin-top: 32px;
    margin-bottom: 0;
    text-align: center;
  }
}

/* ============================================================
   PROJECT: Top Services
   ============================================================ */
.p-top-section-title::after {
  width: 108px;
  height: 3px;
  margin-top: 24px;
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 42%, #cbd7e6 42%, #cbd7e6 100%);
}

.p-top-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.p-top-section-title::after {
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-top-section-title::after {
    width: 108px;
  }
}

.p-top-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-top-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.p-top-services__section-title {
  padding-left: 16px;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary);
  border-left: 4px solid var(--color-primary);
}
@media (max-width: 767px) {
  .p-top-services__section-title {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 16px;
  }
}

.p-top-services__section-title:first-child {
  margin-top: 0;
}

/* 個人タブ「かりる」 */
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(1) .c-card-1__icon { width: 62px; height: 45px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(2) .c-card-1__icon { width: 62px; height: 62px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(3) .c-card-1__icon { width: 59px; height: 41px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(4) .c-card-1__icon { width: 46px; height: 46px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(5) .c-card-1__icon { width: 50px; height: 50px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(6) .c-card-1__icon { width: 67px; height: 40px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(7) .c-card-1__icon { width: 49px; height: 49px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(8) .c-card-1__icon { width: 72px; height: 61px; }
.p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(9) .c-card-1__icon { width: 55px; height: 59px; }

@media (max-width: 767px) {
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(1) .c-card-1__icon { width: 47px; height: 34px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(2) .c-card-1__icon { width: 42px; height: 42px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(3) .c-card-1__icon { width: 50px; height: 37px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(4) .c-card-1__icon { width: 40px; height: 40px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(5) .c-card-1__icon { width: 42px; height: 40px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(6) .c-card-1__icon { width: 49px; height: 29px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(7) .c-card-1__icon { width: 39px; height: 39px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(8) .c-card-1__icon { width: 59px; height: 48px; }
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:first-of-type .c-card-1:nth-child(9) .c-card-1__icon { width: 47px; height: 46px; }
}

/* 個人タブ「ためる」 */
.p-top-services .c-tab__panel:first-of-type .c-tab__section:last-of-type .c-card-1:nth-child(1) .c-card-1__icon { width: 73px; height: 53px; }

@media (max-width: 767px) {
  .p-top-services .c-tab__panel:first-of-type .c-tab__section:last-of-type .c-card-1:nth-child(1) .c-card-1__icon { width: 49px; height: 36px; }
}

/* 法人タブ「かりる」 */
.p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(1) .c-card-1__icon { width: 50px; height: 50px; }
.p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(2) .c-card-1__icon { width: 46px; height: 46px; }
.p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(3) .c-card-1__icon { width: 72px; height: 61px; }
.p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(4) .c-card-1__icon { width: 55px; height: 59px; }

@media (max-width: 767px) {
  .p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(1) .c-card-1__icon { width: 40px; height: 40px; }
  .p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(2) .c-card-1__icon { width: 40px; height: 40px; }
  .p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(3) .c-card-1__icon { width: 59px; height: 48px; }
  .p-top-services .c-tab__panel:last-of-type .c-tab__section:first-of-type .c-card-1:nth-child(4) .c-card-1__icon { width: 47px; height: 46px; }
}

/* ============================================================
   PROJECT: Top Other Services
   ============================================================ */
/* 個人タブ */
.p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(1) .c-card-1__icon { width: 60px; height: 60px; }
.p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(2) .c-card-1__icon { width: 48px; height: 48px; }
.p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(3) .c-card-1__icon { width: 53px; height: 37px; }
.p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(4) .c-card-1__icon { width: 51px; height: 51px; }

@media (max-width: 767px) {
  .p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(1) .c-card-1__icon { width: 39px; height: 37px; }
  .p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(2) .c-card-1__icon { width: 36px; height: 36px; }
  .p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(3) .c-card-1__icon { width: 37px; height: 25px; }
  .p-top-other-services .c-tab__panel:first-of-type .c-card-grid .c-card-1:nth-child(4) .c-card-1__icon { width: 36px; height: 36px; }
}

/* 法人タブ */
.p-top-other-services .c-tab__panel:last-of-type .c-card-grid .c-card-1:nth-child(1) .c-card-1__icon { width: 48px; height: 48px; }
.p-top-other-services .c-tab__panel:last-of-type .c-card-grid .c-card-1:nth-child(2) .c-card-1__icon { width: 48px; height: 48px; }
.p-top-other-services .c-tab__panel:last-of-type .c-card-grid .c-card-1:nth-child(3) .c-card-1__icon { width: 53px; height: 37px; }

@media (max-width: 767px) {
  .p-top-other-services .c-tab__panel:last-of-type .c-card-grid .c-card-1:nth-child(1) .c-card-1__icon { width: 36px; height: 36px; }
  .p-top-other-services .c-tab__panel:last-of-type .c-card-grid .c-card-1:nth-child(2) .c-card-1__icon { width: 36px; height: 36px; }
  .p-top-other-services .c-tab__panel:last-of-type .c-card-grid .c-card-1:nth-child(3) .c-card-1__icon { width: 37px; height: 27px; }
}

/* ============================================================
   PROJECT: Personal
   ============================================================ */
.p-personal .c-visual-header {
  background-image: url("/assets/images/personal/img-visual-header-04.png");
}

.p-personal__section-inner {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .p-personal__section-inner {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .p-personal .c-tab__label {
    min-height: 36px;
    padding-block: 8px;
  }
}

@media (max-width: 767px) {
  .p-personal .c-tab::after {
    inset: 36px 0 40px;
  }
}

.p-personal-save {
  display: grid;
  gap: 64px;
}
@media (max-width: 767px) {
  .p-personal-save {
    gap: 24px;
  }
}

.p-personal-save__feature-card {
  min-height: 189px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-personal-save__feature-card {
    min-height: 0;
  }
}

.p-personal-save__feature-card .c-card-2__buttons {
  grid-template-columns: 218px;
  justify-content: start;
}
@media (max-width: 767px) {
  .p-personal-save__feature-card .c-card-2__buttons {
    grid-template-columns: 1fr;
  }
}

.p-personal-save__section {
  gap: 24px;
}

.p-personal-save__policy-list {
  display: grid;
  gap: 16px;
}

.p-personal-save__policy-card {
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}

.p-personal-save__policy-title {
  margin: 0;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-personal-save__policy-title {
    font-size: 18px;
  }
}

.p-personal-save__policy-content {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.46;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-personal-save__policy-content {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.57;
  }
}

.p-personal-save__policy-content p {
  margin: 0;
}

.p-personal-save__policy-content p + p {
  margin-top: 0;
}

.p-personal-services__grid {
  gap: 16px;
}

.p-personal-services__card {
  padding: 24px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}

.p-personal-services__card--top {
  min-height: 223px;
}

.p-personal-services__card--bottom {
  min-height: 255px;
}

.p-personal-services__card .c-card-2__title {
  line-height: 1.4;
}

.p-personal-services__card .c-card-2__subtitle {
  margin-top: 0;
}

.p-personal-services__card .c-card-2__description {
  line-height: 1.47;
}

.p-personal-services__card .c-card-2__note {
  margin-top: 10px;
}

.p-personal-services__card .c-button--orange {
  font-size: 16px;
  font-weight: var(--bold);
}

@media (max-width: 767px) {
  .p-personal-services__card--top,
  .p-personal-services__card--bottom {
    min-height: 0;
  }
}

/* ============================================================
   PROJECT: Business
   ============================================================ */
.p-business .c-visual-header {
  background-image: url("/assets/images/business/img-visual-header-03.png");
}

.p-business__section-inner {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .p-business__section-inner {
    margin-top: 32px;
  }
}

.p-business-other {
  overflow: clip;
}

.p-business-other__lead {
  width: fit-content;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-business-other__lead {
    margin-top: 24px;
    font-size: 14px;
  }
}

.p-business-other__inner {
  padding: 48px 40px;
  margin-top: 40px;
  background: linear-gradient(90deg, rgb(40 56 202 / 10%) 0%, rgb(46 125 215 / 10%) 50%, rgb(118 197 255 / 10%) 100%);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-business-other__inner {
    width: 100vw;
    padding: 48px 0;
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    margin-top: 24px;
    border-radius: 0;
  }
}

.p-business-other__list {
  display: grid;
  gap: 16px;
  max-width: 532px;
  padding: 32px 24px;
  margin-inline: auto;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-business-other__list {
    padding: 24px 16px;
  }
}

.p-business-other__list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-flow: column;
  gap: 8px;
  place-items: start start;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-business-other__list li {
    font-size: 14px;
  }
}

.p-business-other__list li:last-child::after {
  content: "など";
}

.p-business-other__list li:first-child {
  margin-top: 0;
}

.p-business-other__list li::before {
  --_icon-size: 8px;
  width: var(--_icon-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_icon-size)) / 2);
  content: "";
  background: #ffa846;
  border-radius: calc(infinity * 1px);
}

/* ============================================================
   PROJECT: Support
   ============================================================ */
.p-support .c-visual-header {
  background-image: url("/assets/images/support/img-visual-header-02.png");
}

.p-support__section-inner {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .p-support__section-inner {
    margin-top: 32px;
  }
}

/* ============================================================
   PROJECT: Store
   ============================================================ */
.p-store .c-visual-header {
  background-image: url("/assets/images/common/img-visual-header-02-pc.png");
}
@media (max-width: 767px) {
  .p-store .c-visual-header {
    background-image: url("/assets/images/common/img-visual-header-02-sp.png");
  }
}

.p-store__store-content {
  max-width: 1080px;
  margin-inline: auto;
}

.p-store__section-title {
  margin-bottom: 40px;
  text-align: center;
}

.p-store__section-title::after {
  width: 107px;
  margin-inline: auto;
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 42%, #cbd7e6 42%, #cbd7e6 100%);
}
@media (max-width: 767px) {
  .p-store__section-title {
    margin-bottom: 32px;
    font-size: 22px;
  }
}

.p-store__lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.p-store__lead li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.p-store__lead li::before {
  --_icon-size: 8px;
  flex-shrink: 0;
  width: var(--_icon-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_icon-size)) / 2);
  content: "";
  background: #ffa846;
  border-radius: calc(infinity * 1px);
}

.p-store__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-store__card-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
  }
}

.p-store__section {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .p-store__section {
    margin-top: 60px;
  }
}

.p-store__atm-container {
  position: relative;
}

.p-store__atm-table-block {
  max-width: 1080px;
  margin-inline: auto;
}

.p-store__atm-lead {
  --_bullet-size: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: fit-content;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.625;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-store__atm-lead {
    font-size: 14px;
  }
}

.p-store__atm-lead::before {
  flex-shrink: 0;
  width: var(--_bullet-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_bullet-size)) / 2);
  content: "";
  background: #ffa846;
  border-radius: calc(infinity * 1px);
}

.p-store__atm-table-area {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-store__atm-table-area {
    margin-top: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.p-store__atm-scroll-hint {
  display: none;
}
@media (width < 530px) {
  .p-store__atm-scroll-hint {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 40px;
  }
}

.p-store__atm-scroll-icon {
  width: 25px;
  height: 25px;
}

.p-store__atm-scroll-text {
  font-size: 13px;
  font-weight: var(--medium);
  line-height: 1;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .p-store__atm-table-wrap {
    margin-top: 12px;
  }
}

.p-store__atm-table {
  --_table-width: 1080px;
  --_col-name: 380px;
  --_col: 234px;
  width: var(--_table-width);
  margin-inline: auto;
  font-size: 15px;
  font-weight: var(--medium);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
}
@media (width <= 1080px) {
  .p-store__atm-table {
    width: 100%;
    --_col-name: 35%;
    --_col: 21.67%;
  }
}
@media (max-width: 767px) {
  .p-store__atm-table {
    --_table-width: 530px;
    --_col-name: 117px;
    --_col: 138px;
    font-size: 14px;
  }
}

.p-store__atm-col {
  width: var(--_col);
}

.p-store__atm-col--name {
  width: var(--_col-name);
}

.p-store__atm-head,
.p-store__atm-rowhead,
.p-store__atm-cell {
  padding: 16px;
  vertical-align: middle;
  text-align: center;
}
@media (width <= 1080px) {
  .p-store__atm-head,
  .p-store__atm-rowhead,
  .p-store__atm-cell {
    padding: 12px 8px;
  }
}

.p-store__atm-head {
  height: 76px;
  font-weight: var(--medium);
  background: rgb(118 197 255 / 15%);
  border-top: none;
  border-left: 1px solid var(--color-border-light);
}
@media (max-width: 767px) {
  .p-store__atm-head {
    height: 72px;
  }
}

.p-store__atm-head--blank {
  border-left: none;
}

.p-store__atm-head-label,
.p-store__atm-head-time {
  display: block;
}

.p-store__atm-head-time--sp {
  display: none;
}
@media (max-width: 767px) {
  .p-store__atm-head-time--sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .p-store__atm-head-time--pc {
    display: none;
  }
}

.p-store__atm-rowhead {
  height: 60px;
  font-weight: var(--medium);
  border-top: 1px solid var(--color-border-light);
}

.p-store__atm-cell {
  height: 60px;
  border-top: 1px solid var(--color-border-light);
  border-left: 1px solid var(--color-border-light);
}

.p-store__atm-footnote {
  margin-top: 12px;
  font-size: 13px;
  line-height: 22px;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-store__atm-footnote {
    font-size: 12px;
  }
}

.p-store__accessibility {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-store__accessibility {
    margin-top: 80px;
  }
}

.p-store__accessibility .c-panel::before {
  inset: 130px 0 0;
}

.p-store__accessibility-card {
  position: relative;
  z-index: 1;
  max-inline-size: 1080px;
  padding: 48px;
  margin-inline: auto;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-store__accessibility-card {
    padding: 24px;
  }
}

.p-store__accessibility-title {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-store__accessibility-title {
    font-size: 18px;
  }
}

.p-store__accessibility-text {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.87;
}
@media (max-width: 767px) {
  .p-store__accessibility-text {
    font-size: 14px;
    line-height: 1.57;
  }
}

/* ============================================================
   PROJECT: Recruit
   ============================================================ */
.p-recruit .c-visual-header {
  background-image: url("/assets/images/common/img-visual-header-02-pc.png");
}
@media (max-width: 767px) {
  .p-recruit .c-visual-header {
    background-image: url("/assets/images/common/img-visual-header-02-sp.png");
  }
}

.p-recruit__info {
  padding-block: 64px;
  background: linear-gradient(to right, rgb(40 56 202 / 10%), rgb(46 125 215 / 10%) 50%, rgb(118 197 255 / 10%));
}
@media (max-width: 767px) {
  .p-recruit__info {
    padding-block: 40px;
  }
}

.p-recruit__card--ability {
  min-height: 155px;
}

.p-recruit__card--work {
  min-height: 280px;
}
@media (max-width: 767px) {
  .p-recruit__card--work {
    min-height: 437px;
  }
}

.p-recruit__ability {
  font-size: 22px;
  font-weight: var(--semi-bold);
  line-height: 1;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #2838ca 0%, #2e7dd7 63%, #76c5ff 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .p-recruit__ability {
    font-size: 18px;
    line-height: 1.33;
  }
}

.p-recruit__work-list {
  display: grid;
  gap: 16px;
}

.p-recruit__work-item {
  --_bullet-size: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 1.625;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-recruit__work-item {
    font-size: 14px;
    line-height: 1.57;
  }
}

.p-recruit__work-item::before {
  flex-shrink: 0;
  width: var(--_bullet-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_bullet-size)) / 2);
  content: "";
  background: #ffa846;
  border-radius: calc(infinity * 1px);
}

.p-recruit__requirements {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .p-recruit__requirements {
    margin-top: 40px;
  }
}

.p-recruit__section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: normal;
  letter-spacing: 0.03em;
  color: #202727;
}
@media (max-width: 767px) {
  .p-recruit__section-title {
    font-size: 20px;
  }
}

.p-recruit__section-title::after {
  width: 107px;
  margin-inline: auto;
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 50%, #cbd7e6 50%, #cbd7e6 100%);
}
@media (max-width: 767px) {
  .p-recruit__section-title::after {
    width: 107px;
  }
}

.p-recruit__table {
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-recruit__table {
    grid-template-columns: 104px 1fr;
  }
}

.p-recruit__table .c-table__dt {
  font-weight: var(--medium);
}

.p-recruit__table .c-table__dd {
  font-weight: var(--normal);
  line-height: 1.466;
}

.p-recruit__salary-label {
  font-weight: var(--medium);
}

.p-recruit__note {
  max-width: 1060px;
  margin-inline: auto;
  margin-top: 24px;
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-recruit__note {
    font-size: 14px;
    line-height: 1.57;
  }
}

.p-recruit__contact {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-recruit__contact {
    margin-top: 80px;
  }
}

.p-recruit__contact .c-panel::before {
  inset: 130px 0 0;
}

.p-recruit__contact-card {
  position: relative;
  z-index: 1;
  max-inline-size: 1060px;
  padding: 48px;
  margin-inline: auto;
  text-align: center;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-recruit__contact-card {
    padding: 24px;
  }
}

.p-recruit__contact-title {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-recruit__contact-title {
    font-size: 18px;
  }
}

.p-recruit__contact-text {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.87;
}
@media (max-width: 767px) {
  .p-recruit__contact-text {
    font-size: 14px;
    line-height: 1.57;
  }
}

/* ============================================================
   PROJECT: About
   ============================================================ */
.p-about .c-visual-header {
  background-image: url("/assets/images/common/img-visual-header-02-pc.png");
}
@media (max-width: 767px) {
  .p-about .c-visual-header {
    background-image: url("/assets/images/common/img-visual-header-02-sp.png");
  }
}

.p-about__greeting,
.p-about__mission,
.p-about__area,
.p-about__overview,
.p-about__history {
  margin-block: 0;
}

.p-about__greeting {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .p-about__greeting {
    padding-top: 48px;
  }
}

.p-about .c-section-header {
  margin-bottom: 40px;
  text-align: center;
}
.p-about .c-section-header::after {
  width: 107px;
  margin-inline: auto;
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 42%, #cbd7e6 42%, #cbd7e6 100%);
}
@media (max-width: 767px) {
  .p-about .c-section-header {
    margin-bottom: 32px;
    font-size: 22px;
  }
}

.p-about__greeting-content {
  max-width: 1060px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-about__greeting-content {
    font-size: 14px;
    line-height: 1.57;
  }
}

.p-about__greeting-content p + p {
  margin-top: 24px;
}

.p-about__greeting-signature {
  margin-top: 40px;
  text-align: right;
}

.p-about__greeting-position {
  font-size: 15px;
  line-height: 1.6;
}

.p-about__greeting-name {
  display: inline-block;
  width: 83px;
  margin-top: 6px;
}

.p-about__greeting-name img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-about__greeting-position {
    font-size: 14px;
    line-height: 1.57;
  }
  .p-about__greeting-name {
    width: 78px;
  }
}

.p-about__mission {
  position: relative;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .p-about__mission {
    padding-bottom: 48px;
  }
}

.p-about__mission::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 280px;
  content: "";
  background: linear-gradient(to right, rgb(40 56 202 / 10%), rgb(46 125 215 / 10%) 50%, rgb(118 197 255 / 10%));
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p-about__mission::after {
    height: 333px;
  }
}

.p-about__mission-card {
  padding: 0 0 48px;
  background: var(--color-white);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-about__mission-card {
    padding-bottom: 40px;
  }
}

.p-about__mission-title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.03em;
}

.p-about__mission-title::after {
  display: block;
  width: 107px;
  height: 3px;
  margin: 16px auto 0;
  content: "";
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 42%, #cbd7e6 42%, #cbd7e6 100%);
}
@media (max-width: 767px) {
  .p-about__mission-title {
    font-size: 22px;
  }
  .p-about__mission-title::after {
    width: 88px;
  }
}

.p-about__mission-lead {
  margin-top: 48px;
  font-size: 22px;
  font-weight: var(--semi-bold);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #2838ca 0%, #2e7dd7 63%, #76c5ff 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .p-about__mission-lead {
    max-width: 346px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.56;
  }
}

.p-about__mission-image {
  width: 100%;
  max-width: 1060px;
  margin-top: 32px;
  margin-inline: auto;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-about__mission-image {
    max-width: 343px;
    margin-top: 28px;
  }
}

.p-about__motto-card {
  padding: 48px 32px;
  margin-top: 48px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px 0 rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-about__motto-card {
    padding: 48px 16px;
    margin-top: 16px;
    min-height: 459px;
  }
}

.p-about__motto-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 767px) {
  .p-about__motto-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-about__motto-title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.p-about__motto-title::after {
  display: block;
  width: 107px;
  height: 3px;
  margin-top: 16px;
  content: "";
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 42%, #cbd7e6 42%, #cbd7e6 100%);
}
@media (max-width: 767px) {
  .p-about__motto-title {
    font-size: 22px;
    text-align: center;
  }
  .p-about__motto-title::after {
    width: 88px;
    margin-inline: auto;
  }
}

.p-about__motto-main {
  margin-top: 6px;
  font-size: 22px;
  font-weight: var(--semi-bold);
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #2838ca 0%, #2e7dd7 63%, #76c5ff 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .p-about__motto-main {
    max-width: 314px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.56;
    text-align: left;
  }
}

.p-about__motto-image {
  display: block;
  width: 100%;
  max-width: 454px;
  margin-top: 20px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-about__motto-image {
    max-width: 314px;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .p-about__history .p-about__table {
    margin-top: 40px;
  }
  .p-about__overview .p-about__table {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .p-about .c-table {
    grid-template-columns: 104px 1fr;
  }
}

@media (max-width: 767px) {
  .p-about .c-table__dt,
  .p-about .c-table__dd {
    padding: 16px 12px;
  }
}

@media (max-width: 767px) {
  .p-about .c-table__dd {
    line-height: 1.43;
    letter-spacing: 0.03em;
  }
}

.p-about__area {
  --_area-bullet-color: #ffa846;
  padding-top: 64px;
}
@media (max-width: 767px) {
  .p-about__area {
    padding-top: 40px;
  }
}

.p-about__area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1060px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-about__area-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-about__area-map {
  width: 100%;
  max-width: 548px;
  aspect-ratio: 548 / 404;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}
@media (max-width: 767px) {
  .p-about__area-map {
    max-width: 100%;
  }
}

.p-about__area-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about__area-info {
  max-width: 548px;
  color: var(--color-text);
}

.p-about__area-lead {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-about__area-lead {
    font-size: 14px;
  }
}

.p-about__area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  max-width: 500px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-about__area-list {
    gap: 8px 20px;
  }
}

.p-about__area-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  line-height: 1.375;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-about__area-item {
    font-size: 14px;
  }
}

.p-about__area-item::before {
  --_icon-size: 8px;
  flex-shrink: 0;
  width: var(--_icon-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_icon-size)) / 2);
  content: "";
  background: var(--_area-bullet-color);
  border-radius: calc(infinity * 1px);
}

.p-about__area-button {
  margin-top: 32px;
}
.p-about__area-button .c-button {
  width: 180px;
}
@media (max-width: 767px) {
  .p-about__area-button {
    text-align: center;
  }
}

.p-about__table {
  margin-inline: auto;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .p-about__table {
    margin-top: 32px;
  }
}

.p-about__overview {
  padding-top: 64px;
}
@media (max-width: 767px) {
  .p-about__overview {
    padding-top: 40px;
  }
}

.p-about__overview-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  text-align: right;
  letter-spacing: 0.03em;
  max-width: 1060px;
  margin-inline: auto;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .p-about__overview-note {
    font-size: 13px;
  }
}

.p-about__history {
  padding-top: 56px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .p-about__history {
    padding-top: 40px;
    margin-bottom: 80px;
  }
}

.p-about__history-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  max-width: 1060px;
  margin: 88px auto 0;
}
@media (max-width: 767px) {
  .p-about__history-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 56px;
  }
}

.p-about__history-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 258/170;
  object-fit: cover;
}

/* ============================================================
   PAGE: Web口座振替受付サービス
   ============================================================ */
.p-web-koufuri .c-visual-header {
  background-image: url("/assets/images/services/img-visual-header-web-koufuri.png");
}
@media (max-width: 767px) {
  .p-web-koufuri .c-visual-header {
    background-image: url("/assets/images/services/img-visual-header-web-koufuri.png");
  }
}

.p-web-koufuri__body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #202727;
}
.p-web-koufuri__body p + p {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .p-web-koufuri__body {
    font-size: 14px;
    margin-top: 16px;
  }
}

/* 注意ボックス */
.p-web-koufuri__caution {
  margin-top: 16px;
  padding: 32px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-web-koufuri__caution {
    padding: 20px 16px;
  }
}

.p-web-koufuri__caution-title {
  font-size: 15px;
  font-weight: 600;
  color: #202727;
}
@media (max-width: 767px) {
  .p-web-koufuri__caution-title {
    font-size: 13px;
  }
}

.p-web-koufuri__caution-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.p-web-koufuri__caution-list li {
  padding-left: 1em;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}
.p-web-koufuri__caution-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 6px;
  color: #ffa846;
}
@media (max-width: 767px) {
  .p-web-koufuri__caution-list li {
    font-size: 13px;
  }
}

/* 箇条書きリスト */
.p-web-koufuri__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.p-web-koufuri__list li {
  padding-left: 1em;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}
.p-web-koufuri__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 6px;
  color: #ffa846;
}
@media (max-width: 767px) {
  .p-web-koufuri__list li {
    font-size: 13px;
  }
}

/* 注釈テキスト */
.p-web-koufuri__note {
  margin-top: 12px;
  font-size: 13px;
  color: #72818e;
  line-height: 1.7;
}

/* 番号付きステップ */
.p-web-koufuri__steps {
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-web-koufuri__steps li {
  counter-increment: step-counter;
  padding: 8px 0 8px 2.2em;
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  color: #202727;
}
.p-web-koufuri__steps li::before {
  content: counter(step-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #202727;
  width: 1.8em;
}
@media (max-width: 767px) {
  .p-web-koufuri__steps li {
    font-size: 13px;
    padding: 8px 0 8px 2em;
  }
}

/* インラインリンク */
.p-web-koufuri__link {
  display: inline;
  color: #0e73cc;
  text-decoration: underline;
}
.p-web-koufuri__link--pdf {
  padding-right: 20px;
  position: relative;
}
.p-web-koufuri__link--pdf::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("/assets/images/common/icon-pdf.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   PAGE: QR・バーコード決済サービス
   ============================================================ */
.p-qr-payment .c-visual-header {
  background-image: url("/assets/images/services/img-visual-header-qr-densai.png");
}
@media (max-width: 767px) {
  .p-qr-payment .c-visual-header {
    background-image: url("/assets/images/services/img-visual-header-qr-densai.png");
  }
}

.p-qr-payment__logo {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 8px;
}

.p-qr-payment__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.p-qr-payment__services {
  position: relative;
  padding-top: 8px;
}

.p-qr-payment__services-title {
  margin-bottom: 0;
  text-align: center;
}

.p-qr-payment__services-title::after {
  width: 107px;
  margin-inline: auto;
  background: linear-gradient(to right, #2838ca 0%, #2e7dd7 42%, #cbd7e6 42%, #cbd7e6 100%);
}

.p-qr-payment__services-bg {
  position: relative;
  margin-top: 36px;
  margin-bottom: 140px;
  padding: 0;
}

.p-qr-payment__services-bg::before {
  position: absolute;
  top: 113px;
  right: 0;
  left: 0;
  height: 273px;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgb(40 56 202 / 10%) 0%, rgb(46 125 215 / 10%) 50%, rgb(118 197 255 / 10%) 100%);
  border-radius: 8px;
}

.p-qr-payment__services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1080px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.p-qr-payment__service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 26px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
}

.p-qr-payment__service-header {
  text-align: center;
}

.p-qr-payment__service-title {
  margin: 0;
  color: #202727;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--bold);
  line-height: normal;
  letter-spacing: 0.6px;
}

.p-qr-payment__service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.p-qr-payment__logo {
  justify-content: center;
  margin: 0;
}

.p-qr-payment__logo img {
  height: auto;
  max-height: 56px;
}

.p-qr-payment__service-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.47;
  letter-spacing: 0.03em;
}

.p-qr-payment__service-button-wrap {
  margin-top: 0;
  text-align: center;
}

.p-qr-payment__service-button {
  width: 218px;
  min-width: 218px;
  min-height: 48px;
  margin-inline: auto;
  font-size: 15px;
}

@media (max-width: 767px) {
  .p-qr-payment__services-title {
    margin-bottom: 32px;
  }

  .p-qr-payment__services-title::after {
    width: 88px;
  }

  .p-qr-payment__services-bg {
    margin-top: 24px;
    padding: 0;
  }

  .p-qr-payment__services-bg::before {
    top: 111px;
    right: calc(-1 * var(--padding-sp));
    left: calc(-1 * var(--padding-sp));
    height: 600px;
  }

  .p-qr-payment__services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-qr-payment__service-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .p-qr-payment__service-title {
    font-size: 18px;
    letter-spacing: 0.54px;
  }

  .p-qr-payment__service-content {
    gap: 16px;
  }

  .p-qr-payment__service-description {
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.03em;
  }

  .p-qr-payment__service-button-wrap {
    margin-top: 0;
  }

  .p-qr-payment__service-button {
    width: 271px;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    font-size: 15px;
  }
}

/* ============================================================
   SHARED: PDF List (disclosure, fees, regulations, policy)
   ============================================================ */
.p-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-pdf-list__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .p-pdf-list__link:hover {
    opacity: var(--hover-opacity);
  }
}

/* orange bullet dot before text */
.p-pdf-list__link::before {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #ffa846;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .p-pdf-list__link {
    align-items: flex-start;
  }
  .p-pdf-list__link::before {
    margin-top: 10px;
  }
}

/* PDF icon immediately after text */
.p-pdf-list__link::after {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  content: "";
  background-color: var(--color-error);
  mask-image: url("/assets/images/common/icon-pdf.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media (max-width: 767px) {
  .p-pdf-list__link::after {
    margin-top: 7px;
  }
}
/* ============================================================
   SHARED: Info Table (common table style)
   ============================================================ */
.p-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}

.p-info-table th,
.p-info-table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border-light);
  text-align: left;
  vertical-align: top;
}

.p-info-table th {
  background: #f0f5fa;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-info-table,
  .p-info-table tbody,
  .p-info-table tr,
  .p-info-table th,
  .p-info-table td {
    display: block;
    width: 100%;
  }
  .p-info-table thead {
    display: none;
  }
  .p-info-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
  }
  .p-info-table td {
    border: none;
    border-bottom: 1px solid var(--color-border-light);
  }
  .p-info-table td:last-child {
    border-bottom: none;
  }
  .p-info-table td[data-label]::before {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 13px;
    color: #666;
    content: attr(data-label);
  }
}

/* ============================================================
   PAGE: QR PayPay / J-Coin Pay 詳細
   ============================================================ */
.p-qr-paypay .c-visual-header,
.p-qr-jcoin .c-visual-header {
  background-image: url("/assets/images/services/img-visual-header-qr-densai.png");
}
@media (max-width: 767px) {
  .p-qr-paypay .c-visual-header,
  .p-qr-jcoin .c-visual-header {
    background-image: url("/assets/images/services/img-visual-header-qr-densai.png");
  }
}

.p-qr-paypay__body,
.p-qr-jcoin__body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #202727;
}

.p-qr-paypay__body p + p,
.p-qr-jcoin__body p + p {
  margin-top: 12px;
}

.p-qr-paypay__features,
.p-qr-jcoin__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-qr-paypay__features,
  .p-qr-jcoin__features {
    grid-template-columns: 1fr;
  }
}

.p-qr-paypay__feature-card,
.p-qr-jcoin__feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 40px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.7px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
}
@media (max-width: 767px) {
  .p-qr-paypay__feature-card,
  .p-qr-jcoin__feature-card {
    padding: 24px 16px;
  }
}

.p-qr-paypay__feature-card strong,
.p-qr-jcoin__feature-card strong {
  display: block;
  font-weight: 600;
}

.p-qr-paypay__feature-icon,
.p-qr-jcoin__feature-icon {
  flex-shrink: 0;
  width: auto;
  height: 50px;
}

.p-qr-paypay__caution,
.p-qr-jcoin__caution {
  margin-top: 16px;
  padding: 24px 28px;
  background-color: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-qr-paypay__caution,
  .p-qr-jcoin__caution {
    padding: 16px;
  }
}

.p-qr-paypay__caution-title,
.p-qr-jcoin__caution-title {
  font-size: 15px;
  font-weight: 600;
}

.p-qr-paypay__caution-list,
.p-qr-jcoin__caution-list {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-qr-paypay__caution-list li,
.p-qr-jcoin__caution-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.p-qr-paypay__caution-list li::before,
.p-qr-jcoin__caution-list li::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "●";
  color: #ffa846;
  font-size: 8px;
}

.p-qr-paypay__list,
.p-qr-jcoin__list {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-qr-paypay__list li,
.p-qr-jcoin__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.p-qr-paypay__list li::before,
.p-qr-jcoin__list li::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "●";
  color: #ffa846;
  font-size: 8px;
}

.p-qr-paypay__steps,
.p-qr-jcoin__steps {
  padding-left: 22.5px;
  list-style: decimal;
  margin-top: 16px;
}

.p-qr-paypay__steps li,
.p-qr-jcoin__steps li {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.45px;
  color: #202727;
}

.p-qr-paypay__note,
.p-qr-jcoin__note {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

.p-qr-paypay__link,
.p-qr-jcoin__link {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: #0e73cc;
  text-decoration: underline;
}
.p-qr-paypay__link::after,
.p-qr-jcoin__link::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  content: "";
  background-color: #72818e;
  mask-image: url("/assets/images/common/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-qr-paypay__info-card,
.p-qr-jcoin__info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  padding: 32px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-qr-paypay__info-card,
  .p-qr-jcoin__info-card {
    padding: 24px 16px;
  }
}

.p-qr-paypay__info-title,
.p-qr-jcoin__info-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.54px;
  color: #202727;
}

.p-qr-paypay__info-detail,
.p-qr-jcoin__info-detail {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.54px;
  color: #202727;
}
@media (max-width: 767px) {
  .p-qr-paypay__info-title,
  .p-qr-jcoin__info-title,
  .p-qr-paypay__info-detail,
  .p-qr-jcoin__info-detail {
    font-size: 15px;
  }
}

.p-qr-jcoin__info-hours {
  margin-top: 24px;
}

.p-qr-jcoin__info-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.48px;
  color: #202727;
}

.p-qr-jcoin__info-list {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.45px;
  color: #202727;
  list-style: none;
}
.p-qr-jcoin__info-list li {
  line-height: 26px;
}
@media (max-width: 767px) {
  .p-qr-jcoin__info-subtitle {
    font-size: 14px;
  }
  .p-qr-jcoin__info-list {
    font-size: 13px;
  }
  .p-qr-jcoin__info-list li {
    line-height: 22px;
  }
}

/* ============================================================
   PAGE: でんさいネット
   ============================================================ */
.p-densai-net .c-visual-header {
  background-image: url("/assets/images/services/img-visual-header-qr-densai.png");
}
@media (max-width: 767px) {
  .p-densai-net .c-visual-header {
    background-image: url("/assets/images/services/img-visual-header-qr-densai.png");
  }
}

.p-densai-net__body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #202727;
}

.p-densai-net__body p + p {
  margin-top: 12px;
}

.p-densai-net__list {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-densai-net__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.p-densai-net__list li::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "●";
  color: #ffa846;
  font-size: 8px;
}

.p-densai-net__table-wrap {
  margin-top: 16px;
  overflow-x: auto;
}

.p-densai-net__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}

.p-densai-net__table th,
.p-densai-net__table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border-light);
  text-align: center;
  vertical-align: middle;
}

.p-densai-net__table th {
  background: #f0f5fa;
  font-weight: 600;
}

.p-densai-net__note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.p-densai-net__link {
  color: #0e73cc;
  text-decoration: underline;
}

.p-densai-net__fee-text {
  margin-top: 0;
}

.p-densai-net__fee-inline {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.p-densai-net__link--pdf::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  background-color: var(--color-error);
  mask-image: url("/assets/images/common/icon-pdf.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-densai-net__button-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
}

.p-densai-net__button-wrap .c-button {
  margin-inline: 0;
}

.p-densai-net__button-wrap .c-button.c-button--login {
  width: 218px;
  min-width: 218px;
  min-height: 48px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.25;
  border-radius: 50px;
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 12px;
}

.p-densai-net__button-wrap .c-button.c-button--login::before {
  justify-self: auto;
  width: 18px;
}

.p-densai-net__button-wrap .c-button.c-button--login::after {
  display: none;
}

.p-densai-net__table--documents {
  min-width: 100%;
  width: 100%;
  table-layout: fixed;
  font-size: 15px;
  line-height: 1.47;
}

.p-densai-net__table--documents .p-densai-net__col--document {
  width: 43.86%;
}

.p-densai-net__table--documents .p-densai-net__col--corp,
.p-densai-net__table--documents .p-densai-net__col--sole {
  width: 28.07%;
}

.p-densai-net__table--documents th {
  background: rgb(118 197 255 / 15%);
  font-weight: var(--medium);
}

.p-densai-net__table--documents th,
.p-densai-net__table--documents td {
  padding: 16px;
  text-align: center;
  vertical-align: middle;
}

.p-densai-net__table--documents td:first-child {
  line-height: 1.47;
  letter-spacing: 0.03em;
}

.p-densai-net__table--documents tbody tr:nth-child(1) td,
.p-densai-net__table--documents tbody tr:nth-child(4) td,
.p-densai-net__table--documents tbody tr:nth-child(5) td {
  min-height: 76px;
}

.p-densai-net__table--documents tbody tr:nth-child(2) td,
.p-densai-net__table--documents tbody tr:nth-child(3) td {
  min-height: 70px;
}

.p-densai-net__login-note {
  position: relative;
  margin-top: 14px;
  padding-left: 15px;
  font-size: 15px;
  font-weight: var(--medium);
  line-height: 1.47;
  letter-spacing: 0.03em;
}

.p-densai-net__login-note::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 1em;
  font-size: 8px;
  line-height: 1;
  color: #ffa846;
}

@media (max-width: 767px) {
  .p-densai-net__login-note {
    margin-top: 12px;
    font-size: 15px;
  }

  .p-densai-net__button-wrap {
    justify-content: center;
    margin-top: 16px;
  }

  .p-densai-net__button-wrap .c-button {
    margin-inline: auto;
  }

  .p-densai-net__button-wrap .c-button.c-button--login {
    width: min(271px, 100%);
    min-width: 0;
    min-height: 42px;
    padding: 10px 24px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .p-densai-net__table-wrap {
    margin-top: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p-densai-net__table {
    min-width: 720px;
    font-size: 12px;
    line-height: 1.5;
  }

  .p-densai-net__table th,
  .p-densai-net__table td {
    padding: 8px;
    vertical-align: middle;
  }

  .p-densai-net__table th {
    text-align: center;
    white-space: nowrap;
  }

  .p-densai-net__table td:first-child,
  .p-densai-net__table td:nth-child(3) {
    text-align: center;
  }

  .p-densai-net__table-wrap--usage-time,
  .p-densai-net__table-wrap--documents {
    overflow-x: visible;
  }

  .p-densai-net__table--usage-time {
    min-width: 100%;
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
    line-height: 1.38;
  }

  .p-densai-net__table--usage-time .p-densai-net__col--day {
    width: 32.17%;
  }

  .p-densai-net__table--usage-time .p-densai-net__col--time {
    width: 32.75%;
  }

  .p-densai-net__table--usage-time .p-densai-net__col--type {
    width: 35.08%;
  }

  .p-densai-net__table--usage-time th,
  .p-densai-net__table--usage-time td {
    padding: 8px;
    text-align: center;
    vertical-align: middle;
  }

  .p-densai-net__table--usage-time th {
    background: rgb(118 197 255 / 15%);
    font-weight: var(--bold);
    letter-spacing: 0.03em;
  }

  .p-densai-net__table--usage-time td {
    white-space: nowrap;
    line-height: 1.38;
    letter-spacing: 0.03em;
  }

  .p-densai-net__table--usage-time td:first-child {
    white-space: normal;
    line-height: 1.38;
  }

  .p-densai-net__table--usage-time tbody tr:first-child td {
    min-height: 32px;
  }

  .p-densai-net__table--usage-time tbody tr:last-child td {
    min-height: 32px;
  }

  .p-densai-net__table-wrap--usage-time + .p-densai-net__note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.54;
    letter-spacing: 0.03em;
    color: #5f666d;
  }

  .p-densai-net__table--documents {
    min-width: 100%;
    width: 100%;
    table-layout: fixed;
    font-size: 12px;
    line-height: 1.5;
  }

  .p-densai-net__table--documents .p-densai-net__col--document {
    width: 54.78%;
  }

  .p-densai-net__table--documents .p-densai-net__col--corp,
  .p-densai-net__table--documents .p-densai-net__col--sole {
    width: 22.61%;
  }

  .p-densai-net__table--documents th,
  .p-densai-net__table--documents td {
    padding: 8px;
    text-align: center;
    vertical-align: middle;
  }

  .p-densai-net__table--documents td:first-child {
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .p-densai-net__table--documents td:nth-child(2) {
    text-align: center;
  }
}

/* ============================================================
   PAGE: 年金友の会
   ============================================================ */
.p-pension-club {
  --layout-width-inner: 880px;
}

/* ============================================================
   PAGE: 880px content width overrides
   ============================================================ */
.p-web-koufuri,
.p-peter-pan,
.p-qr-paypay,
.p-qr-jcoin,
.p-densai-net,
.p-disclosure,
.p-fees,
.p-regulations,
.p-policy,
.p-emergency-contact {
  --layout-width-inner: 880px;
}

.p-pension-club .c-visual-header {
  background-image: url("/assets/images/services/img-visual-header-03-pc.png");
}
@media (max-width: 767px) {
  .p-pension-club .c-visual-header {
    background-image: url("/assets/images/services/img-visual-header-03-sp.png");
  }
}

.p-pension-club__body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #202727;
}

.p-pension-club__body p + p {
  margin-top: 12px;
}

.p-pension-club__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .p-pension-club__benefits {
    grid-template-columns: 1fr;
  }
}

.p-pension-club__benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  min-height: 180px;
  text-align: center;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
}

.p-pension-club__benefit-label {
  font-size: 18px;
  font-weight: 700;
  color: #248be7;
  letter-spacing: 0.05em;
}

.p-pension-club__benefit-icon {
  object-fit: contain;
}

.p-pension-club__benefit-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.03em;
}

.p-pension-club__note {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

.p-pension-club__dl-table {
  margin-top: 16px;
  border: 1px solid #cbd7e6;
  border-bottom: none;
}

.p-pension-club__dl-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #cbd7e6;
}

.p-pension-club__dl-row dt {
  padding: 16px;
  background: rgba(118, 197, 255, 0.15);
  border-right: 1px solid #cbd7e6;
  font-size: 15px;
  font-weight: 500;
  color: #202727;
  letter-spacing: 0.03em;
}

.p-pension-club__dl-row dd {
  margin: 0;
  padding: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #202727;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-pension-club__dl-row {
    grid-template-columns: 1fr;
  }
  .p-pension-club__dl-row dt {
    border-right: none;
    border-bottom: 1px solid #cbd7e6;
  }
}

.p-pension-club__voices {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
  max-width: 880px;
  margin-inline: auto;
}

.p-pension-club__voices-title {
  display: block;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.2;
  color: #202727;
  text-align: left;
  letter-spacing: 0.6px;
  max-width: 880px;
  margin-inline: auto;
}

.p-pension-club__voices-title::after {
  display: none;
}

.p-pension-club__voice {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.p-pension-club__voice--right {
  flex-direction: row-reverse;
  gap: 16px;
}

.p-pension-club__voice-avatar {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: url("/assets/images/services/icon-user-01.svg") center/contain no-repeat;
}

.p-pension-club__voice-bubble {
  position: relative;
  display: flex;
  flex: 1;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 24px;
  font-size: 15px;
  font-style: normal;
  line-height: 22px;
  color: #202727;
  letter-spacing: 0.45px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 7px 35px rgb(0 0 0 / 8%);
}

.p-pension-club__voice--right .p-pension-club__voice-bubble {
  gap: 16px;
}

.p-pension-club__voice-text {
  flex: 1;
  margin: 0;
}

.p-pension-club__voice--left .p-pension-club__voice-bubble::before {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  content: "";
  border: 10px solid transparent;
  border-right-color: var(--color-white);
  border-left: 0;
  filter: drop-shadow(0 7px 20px rgb(0 0 0 / 8%));
}

.p-pension-club__voice--right .p-pension-club__voice-bubble::before {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  content: "";
  border: 10px solid transparent;
  border-left-color: var(--color-white);
  border-right: 0;
  filter: drop-shadow(0 7px 20px rgb(0 0 0 / 8%));
}

/* ============================================================
   PAGE: ピーターパンカード
   ============================================================ */
.p-peter-pan .c-visual-header {
  background-image: url("/assets/images/services/img-visual-header-04-pc.png");
}
@media (max-width: 767px) {
  .p-peter-pan .c-visual-header {
    background-image: url("/assets/images/services/img-visual-header-04-sp.png");
  }
}

.p-peter-pan__body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #202727;
}

.p-peter-pan__body p + p {
  margin-top: 12px;
}

.p-peter-pan__subtitle {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.p-peter-pan__card-images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.p-peter-pan__card-images img {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 12%);
}

.p-peter-pan__spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 16px;
}

.p-peter-pan__spec-table th,
.p-peter-pan__spec-table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border-light);
  text-align: left;
  vertical-align: top;
}

.p-peter-pan__spec-table th {
  background: #f0f5fa;
  font-weight: 600;
  white-space: nowrap;
  width: 160px;
}
@media (max-width: 767px) {
  .p-peter-pan__spec-table th,
  .p-peter-pan__spec-table td {
    display: block;
    width: 100%;
  }
  .p-peter-pan__spec-table tr {
    display: block;
    border: 1px solid var(--color-border-light);
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
  }
  .p-peter-pan__spec-table th {
    border-bottom: none;
  }
}

.p-peter-pan__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.p-peter-pan__feature-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-peter-pan__feature-item {
  position: relative;
  padding-left: 14px;
}

.p-peter-pan__feature-item::before {
  position: absolute;
  top: calc((1lh - 8px) / 2);
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #ffa846;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .p-peter-pan .c-section-header {
    display: block;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: normal;
    text-align: left;
    letter-spacing: 0.03em;
  }

  .p-peter-pan .c-section-header::after {
    width: 100%;
    height: 2px;
    margin-top: 16px;
    background: linear-gradient(to right, #2838ca 0%, #2e7dd7 100px, #cbd7e6 100px, #cbd7e6 100%);
  }

  .p-peter-pan__body {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.03em;
  }

  .p-peter-pan__body p + p {
    margin-top: 24px;
  }

  .p-peter-pan__subtitle {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33;
  }

  .p-peter-pan__subtitle + p {
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.03em;
  }

  .p-peter-pan__card-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .p-peter-pan__card-images img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .p-peter-pan__spec-table {
    font-size: 13px;
    line-height: 1.69;
    margin-top: 16px;
  }

  .p-peter-pan__spec-table th,
  .p-peter-pan__spec-table td {
    display: table-cell;
    width: auto;
    padding: 8px;
    border: 1px solid #cbd7e6;
    line-height: 1.69;
  }

  .p-peter-pan__spec-table tr {
    display: table-row;
    border: 0;
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
  }

  .p-peter-pan__spec-table th {
    width: 104px;
    font-weight: var(--medium);
    white-space: normal;
    background: rgb(118 197 255 / 15%);
    border-bottom: 1px solid #cbd7e6;
  }

  .p-peter-pan__button-wrap {
    margin-top: 32px;
  }

  .p-peter-pan__button-wrap .c-button {
    min-width: 271px;
    min-height: 44px;
    font-size: 16px;
    font-weight: var(--bold);
    line-height: normal;
    letter-spacing: 0.03em;
    border-radius: 9999px;
  }

  .p-peter-pan__feature-list {
    gap: 12px;
  }

  .p-peter-pan__feature-item {
    padding-left: 15px;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.03em;
  }

  .p-peter-pan__feature-item::before {
    top: 7px;
    width: 8px;
    height: 8px;
  }
}

/* ============================================================
   PAGE: ディスクロージャー / 手数料一覧 / 規定集
   ============================================================ */
.p-disclosure .c-visual-header,
.p-fees .c-visual-header,
.p-regulations .c-visual-header,
.p-policy .c-visual-header {
  background-image: url("/assets/images/common/img-visual-header-02-pc.png");
}
@media (max-width: 767px) {
  .p-disclosure .c-visual-header,
  .p-fees .c-visual-header,
  .p-regulations .c-visual-header,
  .p-policy .c-visual-header {
    background-image: url("/assets/images/common/img-visual-header-02-sp.png");
  }
}

.p-disclosure__body,
.p-fees__body,
.p-regulations__body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.p-disclosure__body p,
.p-fees__body p,
.p-regulations__body p {
  margin-bottom: 16px;
}

/* ============================================================
   PAGE: 紛失・盗難・詐欺被害等の連絡先
   ============================================================ */
.p-emergency-contact .c-visual-header {
  background-image: url("/assets/images/common/img-visual-header-02-pc.png");
}
@media (max-width: 767px) {
  .p-emergency-contact .c-visual-header {
    background-image: url("/assets/images/common/img-visual-header-02-sp.png");
  }
}

.p-emergency-contact__body {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.47;
  color: #202727;
  letter-spacing: 0.03em;
}

.p-emergency-contact__body p + p {
  margin-top: 24px;
}

.p-emergency-contact__table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.p-emergency-contact__table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}

.p-emergency-contact__table th,
.p-emergency-contact__table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border-light);
  text-align: center;
  vertical-align: middle;
}

.p-emergency-contact__table th {
  background: #f0f5fa;
  font-weight: 600;
  white-space: nowrap;
}

.p-emergency-contact__notes {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-emergency-contact__notes li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  font-weight: var(--normal);
  line-height: 1.47;
  letter-spacing: 0.03em;
}

.p-emergency-contact__notes--strong li {
  font-weight: var(--medium);
}

.p-emergency-contact__fraud .p-emergency-contact__body p + p {
  margin-top: 22px;
}

.p-emergency-contact__fraud .p-emergency-contact__table-wrap + p {
  margin-top: 24px;
}

.p-emergency-contact__fraud .p-emergency-contact__notes--link {
  margin-top: 8px;
}

.p-emergency-contact__fraud .p-emergency-contact__notes--strong {
  margin-top: 30px;
}

.p-emergency-contact__fraud .p-emergency-contact__notes--link li {
  display: flex;
  gap: 4px;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.p-emergency-contact__fraud .p-emergency-contact__notes--link .p-emergency-contact__link {
  white-space: nowrap;
}

.p-emergency-contact__fraud .p-emergency-contact__notes--link + p {
  margin-top: 32px;
}

.p-emergency-contact__fraud .p-emergency-contact__notes--strong + p {
  margin-top: 32px;
}

.p-emergency-contact__notes li::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "●";
  color: #ffa846;
  font-size: 8px;
}

.p-emergency-contact__link {
  color: #0e73cc;
  text-decoration: none;
}

.p-emergency-contact__link:hover,
.p-emergency-contact__link:focus {
  text-decoration: underline;
}

.p-emergency-contact__scroll-note {
  display: none;
}

@media (max-width: 767px) {
  .p-emergency-contact .c-section-header {
    display: block;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: normal;
    text-align: left;
    letter-spacing: 0.03em;
  }

  .p-emergency-contact .c-section-header::after {
    width: 100%;
    margin-top: 16px;
    margin-inline: 0;
    background: linear-gradient(to right, #2838ca 0%, #2e7dd7 100px, #cbd7e6 100px, #cbd7e6 100%);
  }

  .p-emergency-contact__body {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.71;
  }

  .p-emergency-contact__body p + p {
    margin-top: 16px;
  }

  .p-emergency-contact__scroll-note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #72818e;
  }

  .p-emergency-contact__table-wrap {
    margin-top: 8px;
  }

  .p-emergency-contact__table {
    min-width: 880px;
    font-size: 14px;
  }

  .p-emergency-contact__table th,
  .p-emergency-contact__table td {
    padding: 8px;
  }

  .p-emergency-contact__notes {
    margin-top: 24px;
    gap: 10px;
  }

  .p-emergency-contact__notes li {
    font-size: 14px;
    line-height: 1.57;
  }

  .p-emergency-contact__fraud .p-emergency-contact__notes--link {
    margin-top: 6px;
  }

  .p-emergency-contact__fraud .p-emergency-contact__notes--link li {
    display: block;
    white-space: normal;
  }

  .p-emergency-contact__fraud .p-emergency-contact__notes--link .p-emergency-contact__link {
    white-space: normal;
    word-break: break-all;
  }

  .p-emergency-contact__fraud .p-emergency-contact__notes--link + p {
    margin-top: 24px;
  }

  .p-emergency-contact__fraud .p-emergency-contact__notes--strong {
    margin-top: 24px;
  }

  .p-emergency-contact__fraud .p-emergency-contact__notes--strong + p {
    margin-top: 24px;
  }
}

/* ============================================================
   UTILITY: Screen Reader Only
   ============================================================ */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}
