@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Local Noto Sans JP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size-adjust: 0.52;
  color: #212529;
  line-height: 1.7;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: transparent;
  border: none;
  padding: 0;
}

body.is-nav-open {
  overflow: hidden;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0.75em;
  line-height: 1.4;
  font-weight: 700;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2em;
}

li + li {
  margin-top: 0.3em;
}

.u-br--pc,
.u-br--tab,
.u-br--sp {
  display: none;
}

@media (min-width: 1280px) {
  .u-br--pc {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .u-br--tab {
    display: block;
  }
}
@media (max-width: 767px) {
  .u-br--sp {
    display: block;
  }
}
:root {
  --color-primary: #005aad;
  --color-primary-dark: #003a70;
  --color-accent: #48a6ff;
  --color-hero: #00152b;
  --color-hero-dark: black;
  --color-dark: #141619;
  --color-muted: #888888;
  --color-border: #e3e3e3;
  --shadow-soft: 0 8px 20px rgba(0, 32, 96, 0.18);
  --radius: 0;
  --max-width: 1248px;
}

.l-site {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.l-main {
  flex: 1 1 auto;
}

.l-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (max-width: 767px) {
  .l-container {
    padding: 0 16px;
  }
}
.c-header {
  position: sticky;
  top: 0;
  z-index: 901;
  background-color: #ffffff;
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
  min-height: 86px;
}
.c-header__logo-link {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #212529;
  text-decoration: none;
}
.c-header__logo-accent {
  color: #005aad;
}
.c-header__nav {
  margin-left: auto;
  flex: 0 1 auto;
  position: relative;
  z-index: 905;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    height: calc(100vh - 86px);
    height: calc(100dvh - 86px);
    padding: 12px 24px 24px;
  }
}
@media (max-width: 767px) {
  .c-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    height: calc(100vh - 86px);
    height: calc(100dvh - 86px);
    padding: 12px 16px 24px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__nav {
    position: fixed;
    top: 86px;
    left: 0;
    background-color: #ffffff;
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .c-header__nav {
    position: fixed;
    top: 86px;
    left: 0;
    background-color: #ffffff;
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
  }
}
.c-header__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  box-shadow: 0 16px 40px rgba(33, 37, 41, 0.08);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s ease;
  z-index: 911;
}
.c-header__nav .sub-menu li {
  margin: 0;
}
.c-header__nav .sub-menu li + li {
  border-top: 1px solid #e3e3e3;
}
.c-header__nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 8px 0 0 12px;
    background-color: transparent;
    pointer-events: auto;
    transition: none;
  }
  .c-header__nav .sub-menu a {
    padding: 4px 0;
  }
  .c-header__nav .sub-menu li + li {
    border-top: none;
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .c-header__nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 8px 0 0 8px;
    background-color: transparent;
    pointer-events: auto;
    transition: none;
  }
  .c-header__nav .sub-menu a {
    padding: 4px 0;
  }
  .c-header__nav .sub-menu li + li {
    border-top: none;
    margin-top: 8px;
  }
}
.c-header__nav .menu-item:hover > .sub-menu,
.c-header__nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.c-header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-header__nav-list li {
  position: relative;
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
}
.c-header__nav-item {
  position: relative;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__nav-item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-header__nav-item {
    width: 100%;
  }
}
.c-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  letter-spacing: 0.03rem;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.c-header__nav-link:hover, .c-header__nav-link:focus-visible {
  color: #212529;
}
.menu-item-has-children > .c-header__nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__nav-link {
    padding: 4px 0;
    color: #212529;
    font-size: 16px;
    transition: none;
  }
  .menu-item-has-children > .c-header__nav-link::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .c-header__nav-link {
    padding: 4px 0;
    color: #212529;
    font-size: 16px;
    transition: none;
  }
  .menu-item-has-children > .c-header__nav-link::after {
    display: none;
  }
}
@media (max-width: 339px) {
  .c-header__nav-link {
    line-height: 1;
  }
}
.c-header__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #888888;
  cursor: default;
  padding: 8px 0;
  transition: 0.3s ease;
}
.c-header__lang:hover, .c-header__lang:focus-visible {
  color: #212529;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__lang {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0;
    color: #212529;
    transition: none;
  }
}
@media (max-width: 767px) {
  .c-header__lang {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0;
    color: #212529;
    transition: none;
  }
}
.c-header__lang-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
.c-header__lang-label::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__lang-label {
    padding: 4px 0;
  }
  .c-header__lang-label::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .c-header__lang-label {
    padding: 4px 0;
  }
  .c-header__lang-label::after {
    display: none;
  }
}
.c-header__lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 140px;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  box-shadow: 0 12px 24px rgba(33, 37, 41, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 912;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__lang-menu {
    position: static;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0 0 0 16px;
    transition: none;
  }
}
@media (max-width: 767px) {
  .c-header__lang-menu {
    position: static;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0 0 0 12px;
    transition: none;
  }
}
.c-header__lang:hover .c-header__lang-menu, .c-header__lang:focus-within .c-header__lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.c-header__lang-item {
  margin: 0;
}
.c-header__lang-item + .c-header__lang-item {
  border-top: 1px solid #e3e3e3;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__lang-item + .c-header__lang-item {
    border-top: none;
  }
}
@media (max-width: 767px) {
  .c-header__lang-item + .c-header__lang-item {
    border-top: none;
  }
}
.c-header__lang-item span,
.c-header__lang-item a {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  letter-spacing: 0.03rem;
  text-decoration: none;
  transition: 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__lang-item span,
.c-header__lang-item a {
    padding: 4px 0;
    transition: none;
    color: #212529;
  }
}
@media (max-width: 767px) {
  .c-header__lang-item span,
.c-header__lang-item a {
    padding: 4px 0;
    font-size: 16px;
    transition: none;
    color: #212529;
  }
}
.c-header__lang-item.is-active span {
  color: #005aad;
}
.c-header__lang-item a:hover,
.c-header__lang-item a:focus-visible {
  color: #212529;
}
.c-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-header__actions .c-button {
  padding: 12px 16px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__actions {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: auto;
  }
  .c-header__actions .c-button {
    width: 200px;
    font-size: 16px;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .c-header__actions {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: auto;
  }
  .c-header__actions .c-button {
    width: 200px;
    font-size: 16px;
    justify-content: flex-end;
  }
}
.c-header__menu-toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-header__menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 911;
  }
}
@media (max-width: 767px) {
  .c-header__menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 911;
  }
}
.c-header__menu-toggle.is-active .c-header__menu-line:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}
.c-header__menu-toggle.is-active .c-header__menu-line:nth-child(2) {
  opacity: 0;
}
.c-header__menu-toggle.is-active .c-header__menu-line:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
.c-header__menu-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #212529;
  transition: all 0.3s ease;
}
.c-header__menu-line:nth-child(1) {
  top: 0;
}
.c-header__menu-line:nth-child(2) {
  top: 9px;
}
.c-header__menu-line:nth-child(3) {
  bottom: 0;
}

.p-contact-header {
  position: relative;
  padding: 24px 0;
}
.p-contact-header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 72px;
  padding: 0 24px;
}
.p-contact-header__logo {
  display: inline-flex;
  margin-left: auto;
}
.p-contact-header img {
  display: block;
  height: 40px;
  width: auto;
}
@media (max-width: 767px) {
  .p-contact-header {
    padding: 16px 0;
  }
  .p-contact-header__inner {
    padding: 0 16px;
    min-height: 60px;
  }
}

body.is-nav-open {
  overflow: hidden;
}

.c-footer {
  background-color: #ffffff;
  color: #212529;
}
.c-footer__inner {
  max-width: 1080px;
  padding: 72px 24px 32px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .c-footer__inner {
    padding: 56px 16px 24px;
    gap: 32px;
  }
}
.c-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-footer__top {
    flex-direction: column;
    gap: 32px;
  }
}
.c-footer__brand {
  max-width: 320px;
  font-size: 14px;
}
.c-footer__logo {
  width: 240px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-footer__logo {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .c-footer__logo {
    width: 160px;
  }
}
.c-footer__logo-accent {
  color: #005aad;
}
.c-footer__company {
  margin: 12px 0 32px;
  font-size: 16px;
  font-weight: 500;
}
.c-footer__address {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #212529;
}
.c-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 160px));
  gap: 32px;
  flex: 1 1 auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 160px));
  }
}
@media (max-width: 767px) {
  .c-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }
}
.c-footer__nav-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-footer__nav-title:hover, .c-footer__nav-title:focus-visible {
  color: #005aad;
}
.c-footer__nav-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
}
.c-footer__nav-link {
  color: #212529;
  font-weight: 400;
  transition: color 0.3s ease;
  text-decoration: none;
}
.c-footer__nav-link--strong {
  font-weight: 500;
}
.c-footer__nav-link:hover, .c-footer__nav-link:focus-visible {
  color: #005aad;
}
.c-footer__bottom {
  position: relative;
  overflow: hidden;
  font-size: 14px;
  color: #ffffff;
}
.c-footer__bottom-media {
  position: absolute;
  inset: 0;
  z-index: 810;
}
.c-footer__bottom-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-footer__bottom-content {
  position: relative;
  z-index: 811;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  margin-left: max(0px, (100vw - 1200px) / 2);
}
@media (max-width: 767px) {
  .c-footer__bottom-content {
    gap: 12px;
    flex-direction: row;
    align-items: center;
    padding: 16px;
  }
}
.c-footer__bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-footer__bottom-links {
    gap: 8px;
  }
}
.c-footer__bottom-link {
  color: inherit;
  transition: 0.3s ease;
}
.c-footer__bottom-link:hover, .c-footer__bottom-link:focus-visible {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .c-footer__bottom-link {
    font-size: 10px;
  }
}
.c-footer__copyright {
  margin: 0;
}
@media (max-width: 767px) {
  .c-footer__copyright {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 339px) {
  .c-footer__copyright {
    white-space: normal;
  }
}

.l-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 64px;
  align-items: flex-start;
}
.l-two-column > * {
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-two-column {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .l-two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: "Local Noto Sans JP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  border-radius: 0;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  gap: 12px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 339px) {
  .c-button {
    padding: 12px 20px;
  }
}

.c-button--small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.c-button--primary {
  border: 1px solid #005aad;
  background-color: #005aad;
  color: #ffffff;
}
.c-button--primary:hover {
  background-color: #ffffff;
  color: #212529;
  border-color: #212529;
}

.c-button--outline,
.c-button--secondary,
.c-button--ghost {
  border: 1px solid #005aad;
  background-color: #ffffff;
  color: #005aad;
}
.c-button--outline:hover,
.c-button--secondary:hover,
.c-button--ghost:hover {
  color: #212529;
  border-color: #212529;
}

.c-button--outline-white {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.c-button--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.c-button--primary-white {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #00152b;
}
.c-button--primary-white:hover {
  background-color: whitesmoke;
  color: #00152b;
}

.c-button--full {
  width: 100%;
}

.c-button--inline {
  min-width: auto;
  padding-inline: 30px;
}

.c-button--with-icon {
  gap: 12px;
}
.c-button--with-icon svg {
  width: 12px;
  height: 12px;
}

.c-button__icon {
  width: 12px;
  height: 12px;
}

.c-card {
  border-radius: 0;
  border: 1px solid #e3e3e3;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 90, 173, 0.08);
  padding: 24px;
}

.c-card--rounded {
  border-radius: 999px;
}

.c-card__title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 500;
}

.c-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: #888888;
}

.p-page-hero {
  position: relative;
  color: #ffffff;
  padding: 60px 0 60px;
  overflow: hidden;
}

.p-page-hero__breadcrumb-bar {
  background-color: #ffffff;
}

.p-page-hero__breadcrumb {
  margin: 0 auto 8px;
  padding: 0 24px;
  font-size: 12px;
  color: #888888;
  display: flex;
  gap: 8px;
  max-width: 1248px;
}

.p-page-hero__breadcrumb a,
.p-page-hero__breadcrumb span,
.p-page-hero__breadcrumb-sep {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.p-page-hero__breadcrumb a:hover {
  color: #212529;
}

.p-page-hero__breadcrumb span[aria-current=page] {
  color: #212529;
}

.p-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 701;
}
.p-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-page-hero__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 801;
}

.p-page-hero__en {
  margin: 0 0 8px;
  font-size: 1.125rem;
  color: #48a6ff;
}

.p-page-hero__title {
  margin: 0 0 48px;
  font-size: 32px;
  font-weight: 500;
}

.p-page-hero__lead {
  margin: 0 0 36px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.p-page-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .p-page-hero__actions {
    flex-direction: column-reverse;
    align-items: stretch;
    width: fit-content;
  }
}

.p-page-hero--simple {
  background-color: #ffffff;
  color: #212529;
  padding: 60px 0 60px;
}
.p-page-hero--simple .p-page-hero__title {
  color: inherit;
  text-align: left;
  margin-bottom: 0;
}
.p-page-hero--simple .p-page-hero__en {
  color: #005aad;
  text-align: left;
}

.p-page-hero--simple--with-bg {
  background-color: #00152b;
  color: #ffffff;
}
.p-page-hero--simple--with-bg .p-page-hero__title {
  color: #ffffff;
}
.p-page-hero--simple--with-bg .p-page-hero__en {
  color: #7bbfff;
}

.p-page-hero--simple__inner {
  position: relative;
  z-index: 801;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .p-page-hero__breadcrumb {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .p-page-hero {
    padding: 96px 0 80px;
  }
  .p-page-hero__breadcrumb {
    padding: 0 16px;
    font-size: 0.75rem;
  }
  .p-page-hero__lead {
    font-size: 14px;
  }
  .p-page-hero--simple {
    padding: 60px 0;
  }
  .p-page-hero--simple__inner {
    align-items: center;
    padding: 0 16px;
    text-align: center;
  }
  .p-page-hero--simple .p-page-hero__title,
.p-page-hero--simple .p-page-hero__en {
    text-align: center;
  }
}
.c-section {
  padding: 80px 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-section {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .c-section {
    padding: 56px 0;
  }
}

.c-section--white {
  background-color: #ffffff;
}

.c-section--light {
  background-color: #a3d2ff;
}

.c-section--hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.c-section__en {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #005aad;
}

.c-section__en--center {
  text-align: center;
}

.c-section__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

.c-section__title--left {
  text-align: left;
}

.c-section__title--invert {
  color: #ffffff;
}

.c-section__lead {
  margin: 0 auto 32px;
  max-width: 640px;
  font-size: 0.9375rem;
  text-align: center;
  color: #888888;
}

.c-section__lead--center {
  text-align: center;
}

.c-section__subtitle {
  margin: 24px 0 32px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
}

.c-section__cta {
  margin-top: 48px;
  text-align: center;
}

.c-section__cta--center {
  text-align: center;
}

@media (max-width: 767px) {
  .c-section {
    padding: 56px 0;
  }
}
.c-footer-cta {
  padding: 0;
  color: #ffffff;
}
@media (max-width: 767px) {
  .c-footer-cta {
    padding: 56px 0;
  }
}

.c-footer-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .c-footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.c-footer-cta__card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  min-height: 240px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-footer-cta__card {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .c-footer-cta__card {
    padding: 32px;
    margin: 0 40px;
  }
}
@media (max-width: 339px) {
  .c-footer-cta__card {
    padding: 24px;
    margin: 0 24px;
  }
}

.c-footer-cta__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 801;
}
.c-footer-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-footer-cta__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 810;
}

.c-footer-cta__eyebrow {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.c-footer-cta__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

.c-footer-cta__text {
  margin: 8px 0 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.c-footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: "Local Noto Sans JP", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  border-radius: 0;
  min-width: 0;
  background-color: #ffffff;
  color: #212529;
  border: 1px solid currentColor;
  gap: 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .c-footer-cta__button {
    padding: 12px 20px;
    width: 100%;
    min-width: 0;
  }
}

.c-footer-cta__button-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.c-footer-cta__button--download {
  border-color: #212529;
  color: #212529;
}
.c-footer-cta__button--download:hover {
  color: #005aad;
  border-color: #005aad;
}

.c-footer-cta__button--contact {
  border-color: #005aad;
  color: #005aad;
}
.c-footer-cta__button--contact:hover {
  color: #212529;
  border-color: #212529;
}

.c-breadcrumb {
  background-color: #ffffff;
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  font-size: 14px;
  color: #888888;
}

.c-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  white-space: nowrap;
}

.c-breadcrumb__item + .c-breadcrumb__item {
  margin-top: 0;
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: ">";
  color: #888888;
}

.c-breadcrumb__link {
  color: #888888;
  transition: color 0.3s ease;
}

.c-breadcrumb__link:hover,
.c-breadcrumb__link:focus-visible {
  color: #005aad;
}

.c-breadcrumb__current {
  color: #212529;
  font-weight: 500;
}

@media (max-width: 767px) {
  .c-breadcrumb__list {
    padding: 10px 0;
    gap: 8px;
    font-size: 14px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .c-breadcrumb__item {
    gap: 8px;
  }
  .c-breadcrumb__item:last-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .c-breadcrumb__current {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.grecaptcha-badge {
  z-index: 850;
}

.c-form-panel {
  position: relative;
  padding: 40px 48px;
  border: 1px solid #212529;
  background-color: #ffffff;
  border-radius: 0;
}
@media (max-width: 767px) {
  .c-form-panel {
    padding: 32px 20px;
  }
}

/*!
Theme Name: Solunai
Theme URI: https://example.com/solunai
Author: SawSoThin
Author URI: https://example.com
Description: BtoB 向け企業サイト「Solunai」のためのカスタム WordPress テーマ。
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: solunai
*/
