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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(31, 73, 125, 0.6);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #2a2a2a;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

main {
  display: block;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.35;
  color: #2a2a2a;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.u-hidden {
  display: none !important;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  background: #1f497d;
  color: #fff;
  border-radius: 4px;
  z-index: 1100;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #e3e8ee;
  box-shadow: 0 2px 12px rgba(18, 35, 59, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  height: 64px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .header-inner {
    height: 80px;
    padding: 0 32px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.header-logo a {
  display: inline-flex;
  align-items: center;
}
.header-logo img {
  width: auto;
  height: 40px;
}
@media (min-width: 768px) {
  .header-logo img {
    height: 52px;
  }
}

.header-nav {
  display: none;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav__link {
  position: relative;
  display: inline-block;
  padding: 10px 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}
.header-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: #e8732c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.header-nav__link:hover {
  opacity: 1;
  color: #1f497d;
}
.header-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-nav__link.is-current {
  color: #1f497d;
}
.header-nav__link.is-current::after {
  transform: scaleX(1);
}
.header-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 1rem;
  padding: 10px 22px;
  background: #e8732c;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.header-nav__cta:hover {
  opacity: 1;
  background: #c25b1a;
  transform: translateY(-1px);
}

.header-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: #1f497d;
  cursor: pointer;
  position: relative;
  z-index: 1060;
}
@media (min-width: 1024px) {
  .header-toggle {
    display: none;
  }
}
.header-toggle__bar, .header-toggle__bar::before, .header-toggle__bar::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  pointer-events: none;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.2s ease;
}
.header-toggle__bar {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-toggle__bar::before {
  top: -7px;
  transform: translateX(-50%);
}
.header-toggle__bar::after {
  top: 7px;
  transform: translateX(-50%);
}
body.is-menu-open .header-toggle {
  color: #fff;
}
body.is-menu-open .header-toggle .header-toggle__bar {
  background: transparent;
}
body.is-menu-open .header-toggle .header-toggle__bar::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
}
body.is-menu-open .header-toggle .header-toggle__bar::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
  background: #fff;
}

body.is-menu-open .site-header {
  z-index: 1060;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: linear-gradient(160deg, #1f497d 0%, #173862 100%);
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
}
body.is-menu-open .drawer {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0s;
}
@media (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
.drawer__inner {
  min-height: 100%;
  padding: 100px 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.drawer__link {
  display: block;
  padding: 6px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  transition: color 0.2s ease;
}
.drawer__link small {
  display: block;
  margin-top: 4px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.drawer__link:hover {
  color: #e8732c;
}
.drawer__link:hover small {
  opacity: 1;
  color: rgba(255, 255, 255, 0.85);
}
.drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  padding: 14px 28px;
  background: #e8732c;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.drawer__cta:hover {
  background: #c25b1a;
  transform: translateY(-1px);
}

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

.site-footer {
  background: #12233b;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 20px 1.5rem;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 5rem 32px 2rem;
  }
}
.site-footer a {
  color: inherit;
}
.site-footer a:hover {
  color: #fff;
  opacity: 1;
}
.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__logo {
  display: inline-block;
  line-height: 0;
}
.site-footer__logo img {
  width: auto;
  height: 64px;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__info {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__info dt {
  display: inline;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-right: 0.5em;
}
.site-footer__info dd {
  display: inline;
  margin: 0;
}
.site-footer__info div + div {
  margin-top: 4px;
}
.site-footer__nav h4 {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #e8732c;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.site-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer__nav a {
  display: inline-block;
  padding: 4px 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer__sub-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  font-size: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__sub-nav li {
  display: inline-flex;
  align-items: center;
}
.site-footer__sub-nav li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 16px;
}
.site-footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.section--soft {
  background-color: #f7f9fc;
}
.section--dark {
  background-color: #12233b;
  color: #fff;
}
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-heading {
    margin-bottom: 3.5rem;
  }
}
.section-heading__label {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-heading__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .section-heading__title {
    font-size: 2.125rem;
  }
}
.section-heading__lead {
  margin-top: 1rem;
  color: #5a6575;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .section-heading__lead {
    font-size: 1rem;
  }
}
.section--dark .section-heading__title {
  color: #fff;
}
.section--dark .section-heading__lead {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  position: relative;
  padding: 8rem 1.25rem 5rem;
  background: linear-gradient(135deg, #1f497d 0%, #2a6496 60%, #173862 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 10.5rem 1.25rem 6.5rem;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0, transparent 50%), radial-gradient(circle at 80% 100%, rgba(232, 115, 44, 0.1) 0, transparent 45%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.page-hero__sub-title, .page-hero__en {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.page-hero__sub-title::before, .page-hero__sub-title::after, .page-hero__en::before, .page-hero__en::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.page-hero__main-title, .page-hero__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.375rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 768px) {
  .page-hero__main-title, .page-hero__title {
    font-size: 3.75rem;
  }
}

.heading-with-line {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
.heading-with-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: linear-gradient(180deg, #e8732c 0%, #c25b1a 100%);
  border-radius: 2px;
}
.heading-with-line__label {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.heading-with-line__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2a2a2a;
}
@media (min-width: 768px) {
  .heading-with-line__title {
    font-size: 1.875rem;
  }
}

.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-width: 180px;
  max-width: 100%;
  padding: 13px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.btn:hover, .btn-outline:hover {
  transform: translateY(-2px);
}
@media (min-width: 480px) {
  .btn, .btn-outline {
    min-width: 200px;
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 768px) {
  .btn, .btn-outline {
    min-width: 240px;
    padding: 16px 32px;
    font-size: 1rem;
  }
}

.btn--primary {
  background: #1f497d;
  color: #fff;
  border-color: #1f497d;
  box-shadow: 0 6px 20px rgba(31, 73, 125, 0.25);
}
.btn--primary:hover {
  background: #173862;
  border-color: #173862;
  box-shadow: 0 10px 28px rgba(31, 73, 125, 0.35);
}

.btn--accent {
  background: #e8732c;
  color: #fff;
  border-color: #e8732c;
  box-shadow: 0 6px 20px rgba(232, 115, 44, 0.28);
}
.btn--accent:hover {
  background: #c25b1a;
  border-color: #c25b1a;
  box-shadow: 0 10px 28px rgba(232, 115, 44, 0.38);
}

.btn--outline, .btn-outline {
  background: transparent;
  color: #1f497d;
  border-color: #1f497d;
}
.btn--outline:hover, .btn-outline:hover {
  background: #1f497d;
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: #1f497d;
  border-color: #fff;
}
.btn--ghost:hover {
  background: #f7f9fc;
  color: #173862;
}

.back-link {
  max-width: 1140px;
  margin: 1.5rem auto;
  padding: 0 20px;
}

.back-link__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #1f497d;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link__item:hover {
  color: #173862;
}

.is-js .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.is-js .fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.is-js .is-stagger .fade-up {
  transition-delay: calc(var(--stagger-index, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .is-js .fade-up,
  .is-js .is-stagger .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }
}
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .spinner {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(31, 73, 125, 0.15);
  border-top-color: #1f497d;
  border-right-color: #1f497d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1f497d;
  color: #fff;
  text-decoration: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  opacity: 1;
  background: #173862;
}
.page-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(2px) rotate(45deg);
}
@media (min-width: 768px) {
  .page-top {
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
  }
}

.mobile-cta {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(18, 35, 59, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}
.mobile-cta__btn:hover, .mobile-cta__btn:active {
  opacity: 0.85;
  color: #fff;
}
.mobile-cta__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-cta__btn--line {
  background: #06c755;
}
.mobile-cta__btn--contact {
  background: #e8732c;
}

@media (max-width: 767px) {
  body.has-mobile-cta {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .page-top {
    bottom: 76px;
  }
}

.post-share {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e3e8ee;
}
.post-share__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #5a6575;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1rem;
}
.post-share__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .post-share__list {
    gap: 0.75rem;
  }
}
.post-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2a2a2a;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.post-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
}
.post-share__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.post-share__btn--x:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.post-share__btn--facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}
.post-share__btn--line:hover {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
}
.post-share__btn--copy {
  font-family: inherit;
}
.post-share__btn--copy:hover {
  background: #1f497d;
  color: #fff;
  border-color: #1f497d;
}
.post-share__btn.is-copied {
  background: #1f497d;
  color: #fff;
  border-color: #1f497d;
}

.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 120px 20px 72px;
  color: #fff;
  background: linear-gradient(135deg, rgba(18, 35, 59, 0.78) 0%, rgba(31, 73, 125, 0.6) 60%, rgba(18, 35, 59, 0.72) 100%), url("../images/common/Hero2.jpg") center/cover no-repeat;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    min-height: 84vh;
    min-height: 84svh;
    padding: 160px 32px 120px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 44, 0.28) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .hero__eyebrow {
    font-size: 0.75rem;
  }
}
.hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.25rem;
    line-height: 1.25;
  }
}
.hero__title strong {
  color: #e8732c;
  font-weight: 700;
}
.hero__lead {
  max-width: 620px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: 1.0625rem;
  }
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero__cta {
    gap: 1rem;
  }
}
.is-js .hero .hero__eyebrow,
.is-js .hero .hero__title,
.is-js .hero .hero__lead,
.is-js .hero .hero__cta {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1), transform 1.4s cubic-bezier(0.19, 1, 0.22, 1), filter 1.4s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.is-js .hero .hero__eyebrow {
  letter-spacing: 0.4em;
}
.is-js .hero .hero__title {
  letter-spacing: 0.08em;
}
.is-js .hero .hero__lead {
  letter-spacing: 0.06em;
}
.is-js body.loading-done .hero .hero__eyebrow {
  transition-delay: 0.3s;
  letter-spacing: 0.2em;
}
.is-js body.loading-done .hero .hero__title {
  transition-delay: 0.55s;
  letter-spacing: 0.02em;
}
.is-js body.loading-done .hero .hero__lead {
  transition-delay: 0.95s;
  letter-spacing: 0.03em;
}
.is-js body.loading-done .hero .hero__cta {
  transition-delay: 1.25s;
}
.is-js body.loading-done .hero .hero__eyebrow,
.is-js body.loading-done .hero .hero__title,
.is-js body.loading-done .hero .hero__lead,
.is-js body.loading-done .hero .hero__cta {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .is-js .hero .hero__eyebrow, .is-js .hero .hero__title, .is-js .hero .hero__lead, .is-js .hero .hero__cta {
    opacity: 1;
    transform: none;
    filter: none;
    letter-spacing: normal;
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero__eyebrow,
  .hero .hero__title,
  .hero .hero__lead,
  .hero .hero__cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-news {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
  max-width: 1140px;
  margin: -36px 16px 0;
  padding: 1rem 1.25rem;
}
@media (min-width: 480px) {
  .hero-news {
    margin: -40px 24px 0;
  }
}
@media (min-width: 768px) {
  .hero-news {
    margin: -48px auto 0;
    padding: 1.25rem 2rem;
  }
}
.hero-news__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .hero-news__inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.hero-news__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  flex-shrink: 0;
}
.hero-news__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8732c;
  box-shadow: 0 0 0 4px rgba(232, 115, 44, 0.2);
}
.hero-news__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #2a2a2a;
  font-size: 0.875rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .hero-news__link {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
.hero-news__link > span {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hero-news__link:hover {
  color: #1f497d;
}
.hero-news__date {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  color: #5a6575;
  flex-shrink: 0;
}
.hero-news__empty {
  color: #5a6575;
  font-size: 0.875rem;
}

.intro {
  padding: 5rem 20px;
}
@media (min-width: 768px) {
  .intro {
    padding: 7.5rem 20px;
  }
}
.intro__grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
  }
}
.intro__label {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.intro__title {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #2a2a2a;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 2.125rem;
  }
}
.intro__title strong {
  color: #1f497d;
}
.intro__text {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5a6575;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .intro__text {
    font-size: 1rem;
  }
}
.intro__visual {
  display: flex;
  justify-content: center;
}
.intro__visual img {
  width: 100%;
  max-width: 200px;
}
@media (min-width: 480px) {
  .intro__visual img {
    max-width: 240px;
  }
}
@media (min-width: 768px) {
  .intro__visual img {
    max-width: 380px;
  }
}

.services {
  padding: 4rem 20px;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .services {
    padding: 6rem 20px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(18, 35, 59, 0.12);
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}
.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f7f9fc;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card__body {
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.service-card__number {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #e8732c;
}
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.5;
}
.service-card__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #5a6575;
}
.service-card__price {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed #e3e8ee;
  font-size: 0.8125rem;
  color: #1f497d;
  font-weight: 700;
}
.service-card__price span {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  margin-right: 4px;
}

.features {
  padding: 4rem 20px;
}
@media (min-width: 768px) {
  .features {
    padding: 6rem 20px;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.feature-item {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-item:hover {
  border-color: #1f497d;
  transform: translateY(-4px);
}
.feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #1f497d 0%, #2a6496 100%);
  color: #fff;
  border-radius: 50%;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
}
.feature-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.feature-item__text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #5a6575;
}

.flow {
  padding: 4rem 20px;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .flow {
    padding: 6rem 20px;
  }
}
.flow__list {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .flow__list {
    gap: 1.5rem;
  }
}

.flow-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
  align-items: start;
}
@media (min-width: 768px) {
  .flow-item {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
  }
}
.flow-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f497d;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .flow-item__num {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
}
.flow-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
@media (min-width: 768px) {
  .flow-item__title {
    font-size: 1.125rem;
  }
}
.flow-item__text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #5a6575;
}

.top-news {
  padding: 4rem 20px;
}
@media (min-width: 768px) {
  .top-news {
    padding: 6rem 20px;
  }
}
.top-news__list {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  list-style: none;
  padding: 0;
  border-top: 1px solid #e3e8ee;
}
.top-news__item {
  border-bottom: 1px solid #e3e8ee;
}
.top-news__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 1.25rem 0.5rem;
  transition: background-color 0.2s ease;
}
@media (min-width: 480px) {
  .top-news__link {
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: center;
  }
}
.top-news__link:hover {
  opacity: 1;
  background: #f7f9fc;
}
.top-news__date {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #5a6575;
  letter-spacing: 0.05em;
}
.top-news__title {
  font-size: 0.9375rem;
  color: #2a2a2a;
  line-height: 1.6;
}
.top-news__more {
  text-align: center;
}
.top-news__empty {
  text-align: center;
  color: #5a6575;
  padding: 2.5rem;
}

.cta-section {
  position: relative;
  padding: 4.5rem 20px;
  background: linear-gradient(135deg, #1f497d 0%, #173862 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 20px;
  }
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232, 115, 44, 0.25) 0, transparent 55%);
  pointer-events: none;
}
.cta-section__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}
.cta-section__label {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-section__title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.45;
  color: #fff;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 2.25rem;
  }
}
.cta-section__text {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .cta-section__text {
    font-size: 1rem;
  }
}

.about-mission {
  padding: 4.5rem 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .about-mission {
    padding: 7.5rem 20px;
  }
}
.about-mission__inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-mission__label {
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e8732c;
  margin-bottom: 1rem;
}
.about-mission__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-mission__title {
    font-size: 2.25rem;
  }
}
.about-mission__title strong {
  color: #1f497d;
}
.about-mission__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #5a6575;
  text-align: left;
}
.about-mission__text p + p {
  margin-top: 1.2em;
}
@media (min-width: 768px) {
  .about-mission__text {
    font-size: 1rem;
  }
}

.about-naming {
  padding: 4rem 20px;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .about-naming {
    padding: 6rem 20px;
  }
}
.about-naming__inner {
  max-width: 880px;
  margin: 0 auto;
}
.about-naming__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .about-naming__card {
    padding: 3rem 3.5rem;
  }
}
.about-naming__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.about-naming__heading small {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
}
.about-naming__heading strong {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .about-naming__heading strong {
    font-size: 1.625rem;
  }
}
.about-naming__text {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5a6575;
}
.about-naming__text p + p {
  margin-top: 1.2em;
}
.about-naming__words {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 480px) {
  .about-naming__words {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.about-naming__word {
  padding: 1.25rem 1rem;
  background: #f7f9fc;
  border-radius: 8px;
  text-align: center;
}
.about-naming__word dt {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f497d;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.about-naming__word dd {
  font-size: 0.8125rem;
  color: #5a6575;
  margin: 0;
}

.about-vision {
  padding: 4rem 20px;
}
@media (min-width: 768px) {
  .about-vision {
    padding: 6rem 20px;
  }
}
.about-vision__inner {
  display: grid;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-vision__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.about-vision__block {
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3e8ee;
}
@media (min-width: 768px) {
  .about-vision__block {
    padding: 2.5rem 2.25rem;
  }
}
.about-vision__block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f497d;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-vision__block h3 {
    font-size: 1.5rem;
  }
}
.about-vision__block p {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5a6575;
}
.about-vision__block p + p {
  margin-top: 1em;
}
.about-vision__block p strong {
  display: block;
  color: #2a2a2a;
  margin-bottom: 4px;
}
.about-vision__label {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.about-staff {
  padding: 4rem 20px;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .about-staff {
    padding: 6rem 20px;
  }
}
.about-staff__card {
  display: grid;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
}
@media (min-width: 768px) {
  .about-staff__card {
    grid-template-columns: 320px 1fr;
    gap: 0;
  }
}
.about-staff__image {
  background: #f7f9fc;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-staff__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 30px;
}
@media (min-width: 768px) {
  .about-staff__image {
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.about-staff__info {
  padding: 1.75rem 1.5rem;
}
@media (min-width: 768px) {
  .about-staff__info {
    padding: 2.5rem;
  }
}
.about-staff__role {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-staff__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-staff__name {
    font-size: 1.625rem;
  }
}
.about-staff__name small {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #5a6575;
}
.about-staff__text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a6575;
}
.about-staff__text p + p {
  margin-top: 0.9em;
}

.about-story {
  padding: 4rem 20px;
}
@media (min-width: 768px) {
  .about-story {
    padding: 6rem 20px;
  }
}
.about-story__inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-story__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #5a6575;
  text-align: left;
}
.about-story__text p + p {
  margin-top: 1.2em;
}
@media (min-width: 768px) {
  .about-story__text {
    font-size: 1rem;
  }
}
.about-story__sign {
  margin-top: 2rem;
  text-align: right;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2a2a2a;
}

.about-profile {
  padding: 4rem 20px;
}
@media (min-width: 768px) {
  .about-profile {
    padding: 6rem 20px;
  }
}
.about-profile__inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-profile__table {
  width: 100%;
  border-collapse: collapse;
}
.about-profile__table tr {
  border-bottom: 1px solid #e3e8ee;
}
.about-profile__table th,
.about-profile__table td {
  padding: 1rem 0.5rem;
  font-size: 0.875rem;
  text-align: left;
  vertical-align: top;
}
@media (min-width: 768px) {
  .about-profile__table th,
  .about-profile__table td {
    padding: 1.25rem 0.75rem;
    font-size: 0.9375rem;
  }
}
.about-profile__table th {
  width: 32%;
  font-weight: 700;
  color: #1f497d;
}
@media (min-width: 768px) {
  .about-profile__table th {
    width: 28%;
  }
}
.about-profile__table td {
  color: #2a2a2a;
  line-height: 1.75;
}

.works-list {
  padding: 4rem 20px 6rem;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .works-list {
    padding: 6rem 20px 7.5rem;
  }
}
.works-list__container {
  max-width: 1140px;
  margin: 0 auto;
}
.works-list__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .works-list__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .works-list__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}
.works-list__item {
  margin: 0;
}
.works-list__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works-list__link:hover {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(18, 35, 59, 0.12);
}
.works-list__link:hover .works-list__thumb img {
  transform: scale(1.06);
}
.works-list__thumb {
  overflow: hidden;
  background: #f7f9fc;
  aspect-ratio: 12/6;
}
.works-list__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.works-list__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.works-list__category {
  display: inline-block;
  padding: 2px 10px;
  background: #f7f9fc;
  color: #1f497d;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  width: fit-content;
}
.works-list__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .works-list__title {
    font-size: 1.0625rem;
  }
}
.works-list__desc {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #5a6575;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .works-list__desc {
    font-size: 0.875rem;
  }
}
.works-list__url {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  color: #1f497d;
  word-break: break-all;
  border-top: 1px dashed #e3e8ee;
}
.works-list__url::before {
  content: "↗";
  font-size: 0.8125rem;
}
.works-list__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 1.25rem;
  color: #5a6575;
  font-size: 0.9375rem;
}

.news-list__bg {
  background: #f7f9fc;
  padding: 4rem 20px 6rem;
}
@media (min-width: 768px) {
  .news-list__bg {
    padding: 6rem 20px 7.5rem;
  }
}

.news-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.news-list .news-item {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.news-list .news-item:hover {
  transform: translateY(-2px);
  border-color: #1f497d;
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
}
.news-list .news-item__link {
  display: block;
  padding: 1.5rem;
  color: inherit;
}
.news-list .news-item__date {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #e8732c;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.news-list .news-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2a2a2a;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .news-list .news-item__title {
    font-size: 1.1875rem;
  }
}
.news-list .news-item__content {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #5a6575;
}

.nav-links,
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.nav-links .page-numbers,
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #5a6575;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-links .page-numbers:hover, .nav-links .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: #1f497d;
  color: #fff;
  border-color: #1f497d;
}
.nav-links .page-numbers.dots,
.pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
}
.nav-links .page-numbers.dots:hover,
.pagination .page-numbers.dots:hover {
  background: transparent;
  color: #5a6575;
}

.contact-intro {
  padding: 4rem 20px 2rem;
}
@media (min-width: 768px) {
  .contact-intro {
    padding: 5rem 20px 2.5rem;
  }
}
.contact-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro__text {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5a6575;
}
@media (min-width: 768px) {
  .contact-intro__text {
    font-size: 1rem;
  }
}

.contact-faq-link {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 0.875rem 1.25rem;
  background: #dde6f1;
  border-left: 4px solid #1f497d;
  border-radius: 4px;
  text-align: left;
}
.contact-faq-link p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0;
}
@media (min-width: 768px) {
  .contact-faq-link p {
    font-size: 0.9375rem;
  }
}
.contact-faq-link a {
  color: #1f497d;
  font-weight: 700;
  text-decoration: underline;
}
.contact-faq-link a:hover {
  text-decoration: none;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 2rem auto 0;
}
@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.contact-method {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  text-align: center;
}
.contact-method__label {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8732c;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-method__value {
  font-size: 1rem;
  font-weight: 700;
  color: #1f497d;
  word-break: break-all;
}
@media (min-width: 768px) {
  .contact-method__value {
    font-size: 0.9rem;
  }
}
.contact-method__value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
.contact-method__value a:hover {
  color: #173862;
}
.contact-method__note {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #5a6575;
}

.contact-form-area {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 20px 6rem;
}
@media (min-width: 768px) {
  .contact-form-area {
    padding: 3rem 20px 7.5rem;
  }
}
.contact-form-area .wpcf7 .wpcf7-form p {
  margin: 0 0 1.25rem;
}
.contact-form-area .wpcf7 .wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.6;
}
.contact-form-area .wpcf7 .wpcf7-form input[type=text],
.contact-form-area .wpcf7 .wpcf7-form input[type=email],
.contact-form-area .wpcf7 .wpcf7-form input[type=tel],
.contact-form-area .wpcf7 .wpcf7-form input[type=url],
.contact-form-area .wpcf7 .wpcf7-form input[type=number],
.contact-form-area .wpcf7 .wpcf7-form textarea,
.contact-form-area .wpcf7 .wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #2a2a2a;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-area .wpcf7 .wpcf7-form input[type=text]:focus,
.contact-form-area .wpcf7 .wpcf7-form input[type=email]:focus,
.contact-form-area .wpcf7 .wpcf7-form input[type=tel]:focus,
.contact-form-area .wpcf7 .wpcf7-form input[type=url]:focus,
.contact-form-area .wpcf7 .wpcf7-form input[type=number]:focus,
.contact-form-area .wpcf7 .wpcf7-form textarea:focus,
.contact-form-area .wpcf7 .wpcf7-form select:focus {
  border-color: #1f497d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 73, 125, 0.15);
}
.contact-form-area .wpcf7 .wpcf7-form input[type=text]::placeholder,
.contact-form-area .wpcf7 .wpcf7-form input[type=email]::placeholder,
.contact-form-area .wpcf7 .wpcf7-form input[type=tel]::placeholder,
.contact-form-area .wpcf7 .wpcf7-form input[type=url]::placeholder,
.contact-form-area .wpcf7 .wpcf7-form input[type=number]::placeholder,
.contact-form-area .wpcf7 .wpcf7-form textarea::placeholder,
.contact-form-area .wpcf7 .wpcf7-form select::placeholder {
  color: #5a6575;
  opacity: 0.7;
}
.contact-form-area .wpcf7 .wpcf7-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form-area .wpcf7 .wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231f497d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  cursor: pointer;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-checkbox,
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-radio {
  display: block;
  margin-top: 0.5rem;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0 1em 0.5em 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-checkbox input[type=checkbox],
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-checkbox input[type=radio],
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-radio input[type=checkbox],
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-radio input[type=radio] {
  width: auto;
  margin: 0;
  accent-color: #1f497d;
  transform: scale(1.1);
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-acceptance {
  display: block;
  margin: 2rem auto 0.5rem;
  padding: 1.25rem 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  text-align: center;
  font-size: 0.875rem;
  color: #2a2a2a;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  line-height: 1.6;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-acceptance input[type=checkbox] {
  width: auto;
  margin: 0;
  accent-color: #1f497d;
  transform: scale(1.25);
  cursor: pointer;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-acceptance a {
  color: #1f497d;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: color 0.2s ease;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-acceptance a:hover {
  color: #e8732c;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-turnstile {
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e3e8ee;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-turnstile + p .wpcf7-acceptance {
  margin-top: 0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-submit {
  appearance: none;
  display: block;
  background: #e8732c;
  color: #fff;
  padding: 14px 48px;
  margin: 2rem auto 0;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 115, 44, 0.3);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  background: #c25b1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 115, 44, 0.4);
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-submit:disabled {
  background: #e8732c;
  cursor: not-allowed;
  transform: none;
  opacity: 1;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #d63838;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-not-valid {
  border-color: #d63838 !important;
}
.contact-form-area .wpcf7 .wpcf7-form .hidden-fields-container {
  display: none;
}
.contact-form-area .wpcf7 .wpcf7-form .wpcf7-spinner {
  margin-left: 0.625rem;
  vertical-align: middle;
}

.wpcf7-response-output {
  width: 100%;
  max-width: 720px;
  margin: 1.5rem auto !important;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  text-align: center;
}
.wpcf7-response-output[aria-hidden=true], .wpcf7-response-output:empty {
  display: none;
}

/* reCAPTCHA バッジの位置調整 */
.grecaptcha-badge {
  visibility: hidden;
}

.price-page {
  padding-bottom: 6rem;
}

.price-note {
  max-width: 1140px;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.5rem;
  background: #f7f9fc;
  border-left: 4px solid #1f497d;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #5a6575;
}
@media (min-width: 768px) {
  .price-note {
    font-size: 0.9375rem;
  }
}
.price-note strong {
  color: #1f497d;
  font-weight: 700;
}

.price-section {
  padding: 4rem 20px 0;
}
@media (min-width: 768px) {
  .price-section {
    padding: 6rem 20px 0;
  }
}
.price-section__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.price-heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2a2a2a;
  margin: 3rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 5px solid #e8732c;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .price-heading {
    font-size: 1.625rem;
  }
}
.price-heading:first-of-type {
  margin-top: 0;
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 480px) {
  .price-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .price-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 480px) {
  .price-cards--maintenance {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .price-cards--maintenance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
}
.price-card--recommend {
  border-color: #1f497d;
  border-width: 2px;
}
.price-card--recommend .price-card__header {
  background: linear-gradient(135deg, #1f497d 0%, #173862 100%);
  color: #fff;
  border-bottom: none;
}
.price-card--recommend .price-card__header .price-card__title,
.price-card--recommend .price-card__header .price-card__sub {
  color: #fff;
}
.price-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  background: #e8732c;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  z-index: 1;
}
.price-card__header {
  padding: 1.25rem 1.25rem 1rem;
  background: #f7f9fc;
  border-bottom: 1px solid #e3e8ee;
}
.price-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f497d;
  margin-bottom: 4px;
  line-height: 1.45;
}
.price-card__sub {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #5a6575;
}
.price-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-card__price {
  font-size: 0.8125rem;
  color: #2a2a2a;
  margin-bottom: 1rem;
  font-weight: 700;
}
.price-card__price span {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.875rem;
  color: #1f497d;
  margin-right: 4px;
}
.price-card__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.price-card__list li {
  position: relative;
  padding: 8px 0 8px 1.375rem;
  font-size: 0.8125rem;
  color: #5a6575;
  line-height: 1.65;
  border-bottom: 1px dashed #e3e8ee;
}
.price-card__list li:last-child {
  border-bottom: none;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #e8732c;
  font-weight: 700;
}
.price-card__cta {
  margin-top: auto;
  padding-top: 1.25rem;
}
.price-card__cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.price-card__cta-note {
  margin: 0.625rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #5a6575;
  text-align: center;
}
.price-card__cta-note a {
  color: #1f497d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.price-card__cta-note a:hover {
  color: #173862;
}

.price-cta {
  position: relative;
  padding: 3rem 1.5rem;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, #1f497d 0%, #173862 100%);
  color: #fff;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .price-cta {
    padding: 4rem 2.5rem;
  }
}
.price-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232, 115, 44, 0.25) 0, transparent 55%);
}
.price-cta > * {
  position: relative;
}
.price-cta__text {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}
.price-cta__text strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .price-cta__text strong {
    font-size: 1.25rem;
  }
}

.policy-card {
  max-width: 880px;
  margin: 4rem auto 6rem;
  padding: 2rem 1.5rem;
  background: #fff;
  color: #2a2a2a;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
  border: 1px solid #e3e8ee;
}
@media (min-width: 768px) {
  .policy-card {
    padding: 3.5rem 4rem;
  }
}
.policy-card__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 4px solid #e8732c;
  line-height: 1.5;
  color: #2a2a2a;
}
@media (min-width: 768px) {
  .policy-card__heading {
    font-size: 1.1875rem;
  }
}
.policy-card__heading:first-of-type {
  margin-top: 0;
}
.policy-card__text {
  font-size: 0.875rem;
  line-height: 1.95;
  color: #5a6575;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .policy-card__text {
    font-size: 0.9375rem;
  }
}
.policy-card__text--right {
  text-align: right;
  color: #5a6575;
  margin-top: 2rem;
}
.policy-card__text a {
  color: #1f497d;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.policy-card__text a:hover {
  color: #173862;
}
.policy-card__text strong {
  color: #2a2a2a;
  font-weight: 700;
}
.policy-card__list {
  margin: 0.5rem 0 1.25rem;
}
.policy-card__list--decimal {
  counter-reset: number;
  list-style: none;
  padding-left: 0.5rem;
}
.policy-card__list--decimal li {
  position: relative;
  padding-left: 2rem;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #5a6575;
}
.policy-card__list--decimal li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f497d;
  font-weight: 700;
}
.policy-card__list--bullet {
  list-style: disc inside;
  padding-left: 1.25rem;
}
.policy-card__list--bullet li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #5a6575;
  margin: 4px 0;
}

.tokushoho-card {
  max-width: 880px;
  margin: 4rem auto 6rem;
  padding: 2rem 1.5rem;
  background: #fff;
  color: #2a2a2a;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
  border: 1px solid #e3e8ee;
}
@media (min-width: 768px) {
  .tokushoho-card {
    padding: 3.5rem 4rem;
  }
}
.tokushoho-card__intro {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a6575;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .tokushoho-card__intro {
    font-size: 0.9375rem;
  }
}
.tokushoho-card__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3e8ee;
}
.tokushoho-card__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #e3e8ee;
}
@media (min-width: 768px) {
  .tokushoho-card__item {
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0;
  }
}
.tokushoho-card__item dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2a2a2a;
  padding-left: 1rem;
  border-left: 4px solid #e8732c;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .tokushoho-card__item dt {
    font-size: 0.9375rem;
    padding-left: 1rem;
  }
}
.tokushoho-card__item dd {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a6575;
}
@media (min-width: 768px) {
  .tokushoho-card__item dd {
    margin: 0;
    font-size: 0.9375rem;
  }
}
.tokushoho-card__item dd a {
  color: #1f497d;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.tokushoho-card__item dd a:hover {
  color: #173862;
}
.tokushoho-card__item dd strong {
  color: #2a2a2a;
  font-weight: 700;
}
.tokushoho-card__updated {
  margin-top: 2rem;
  text-align: right;
  font-size: 0.8125rem;
  color: #5a6575;
}

.post-single {
  padding: 4rem 20px 6rem;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .post-single {
    padding: 5rem 20px 7.5rem;
  }
}
.post-single__content {
  max-width: 820px;
  margin: 0 auto;
}
.post-single__article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
  padding: 1.75rem 1.5rem;
}
@media (min-width: 768px) {
  .post-single__article {
    padding: 3.5rem 4rem;
  }
}
.post-single__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  word-break: break-word;
}
@media (min-width: 768px) {
  .post-single__title {
    font-size: 1.875rem;
  }
}
.post-single__meta {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #5a6575;
  letter-spacing: 0.05em;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e3e8ee;
  margin-bottom: 1.5rem;
}
.post-single__thumbnail {
  margin: 1.5rem 0 2.5rem;
  border-radius: 8px;
  overflow: hidden;
}
.post-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.post-single__body {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #2a2a2a;
}
@media (min-width: 768px) {
  .post-single__body {
    font-size: 1rem;
  }
}
.post-single__body h2,
.post-single__body h3,
.post-single__body h4 {
  font-weight: 700;
  margin: 1.6em 0 0.6em;
  line-height: 1.45;
}
.post-single__body h2 {
  font-size: 1.375rem;
  padding-bottom: 8px;
  border-bottom: 2px solid #e3e8ee;
}
.post-single__body h3 {
  font-size: 1.1875rem;
}
.post-single__body p {
  margin-bottom: 1em;
}
.post-single__body a {
  color: #1f497d;
  text-decoration: underline;
}
.post-single__body a:hover {
  text-decoration: none;
}
.post-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1em 0;
}
.post-single__body ul,
.post-single__body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.post-single__body ul {
  list-style: disc;
}
.post-single__body ol {
  list-style: decimal;
}
.post-single__body blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: #f7f9fc;
  border-left: 4px solid #1f497d;
  color: #5a6575;
}

.faq {
  padding: 4rem 20px 5rem;
  background: #f7f9fc;
}
@media (min-width: 768px) {
  .faq {
    padding: 6rem 20px 7.5rem;
  }
}
.faq__container {
  max-width: 820px;
  margin: 0 auto;
}
.faq__group {
  margin-top: 2.5rem;
}
.faq__group:first-of-type {
  margin-top: 1.5rem;
}
.faq__group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f497d;
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid #e8732c;
}
@media (min-width: 768px) {
  .faq__group-title {
    font-size: 1.25rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-detail {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-detail[open] {
  border-color: #1f497d;
  box-shadow: 0 2px 8px rgba(18, 35, 59, 0.06);
}
.faq-detail__summary {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.5;
  transition: background 0.2s ease;
}
.faq-detail__summary::-webkit-details-marker {
  display: none;
}
.faq-detail__summary:hover {
  background: #f7f9fc;
}
.faq-detail__q-mark, .faq-detail__a-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}
.faq-detail__q-mark {
  background: #1f497d;
  color: #fff;
}
.faq-detail__a-mark {
  background: #e8732c;
  color: #fff;
}
.faq-detail__question {
  flex: 1;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .faq-detail__question {
    font-size: 1rem;
  }
}
.faq-detail__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
  margin-top: 7px;
  transition: transform 0.3s ease;
}
.faq-detail__icon::before, .faq-detail__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #5a6575;
  transform-origin: center;
}
.faq-detail__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-detail__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-detail[open] .faq-detail__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-detail__answer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #e3e8ee;
  background: #f7f9fc;
}
.faq-detail__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.85;
  color: #2a2a2a;
  margin: 4px 0 0;
}
@media (min-width: 768px) {
  .faq-detail__text {
    font-size: 0.9375rem;
  }
}

.not-found-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 5rem 20px;
  background: #f7f9fc;
  text-align: center;
}

.not-found {
  max-width: 560px;
}
.not-found__code {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(72px, 18vw, 140px);
  font-weight: 700;
  line-height: 1;
  color: #1f497d;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.not-found__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2a2a2a;
}
@media (min-width: 768px) {
  .not-found__title {
    font-size: 1.625rem;
  }
}
.not-found__text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #5a6575;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .not-found__text {
    font-size: 0.9375rem;
  }
}
.not-found__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 480px) {
  .not-found__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.not-found__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 1rem 0.75rem;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.not-found__nav-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(18, 35, 59, 0.08);
  border-color: #1f497d;
}
.not-found__nav-en {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1f497d;
  letter-spacing: 0.03em;
}
.not-found__nav-ja {
  font-size: 0.75rem;
  color: #5a6575;
}
.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
