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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

img,
picture {
  display: block;
  max-width: 100%;
}

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

body {
  min-width: 320px;
  color: #111827;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #ffffff;
  letter-spacing: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

::selection {
  color: #ffffff;
  background: #00246b;
}

.l-container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

@media (max-width: 768px) {
  .l-container {
    width: min(100% - 32px, 1280px);
  }
}
.l-section {
  padding: 96px 0;
}
.l-section--pale {
  background: #f5f7fb;
}
.l-section--compact {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .l-section {
    padding: 64px 0;
  }
  .l-section--compact {
    padding: 56px 0;
  }
}
.l-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 2px solid rgba(0, 36, 107, 0.95);
  backdrop-filter: blur(12px);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  padding-left: clamp(24px, 5vw, 64px);
  gap: 24px;
}
.l-header__logo {
  flex: 0 0 auto;
}
.l-header__logo img {
  width: 96px;
  height: 56px;
  object-fit: contain;
}
.l-header__toggle {
  display: none;
}
.l-header__nav {
  display: flex;
  align-self: stretch;
  margin-left: auto;
}
.l-header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 1.8vw, 32px);
  height: 100%;
}
.l-header__item {
  position: relative;
  display: flex;
  align-items: center;
  color: #001f5b;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.l-header__item > a:not(.c-button) {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 8px 0;
}
.l-header__item > a:not(.c-button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: #e60012;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.l-header__item > a:not(.c-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.l-header__item--current:not(.l-header__item--contact) > a:not(.c-button)::after {
  transform: scaleX(1);
}
.l-header__item--has-dropdown > a:not(.c-button) {
  gap: 8px;
}
.l-header__item--has-dropdown > a:not(.c-button)::before {
  width: 6px;
  height: 6px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  order: 2;
}
.l-header__item--has-dropdown:hover .l-header__dropdown, .l-header__item--has-dropdown:focus-within .l-header__dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.l-header__item--contact {
  align-self: stretch;
  margin-left: clamp(8px, 1.8vw, 24px);
}
.l-header__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 30;
  min-width: 184px;
  padding: 8px;
  visibility: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 31, 91, 0.14);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.l-header__dropdown-item a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  color: #001f5b;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 4px;
  transition: color 0.28s ease, background 0.28s ease;
}
.l-header__dropdown-item a:hover, .l-header__dropdown-item a:focus-visible {
  color: #e60012;
  background: #f5f7fb;
}
.l-header__mobile-subitem {
  display: none;
}
.l-header .c-button {
  gap: 8px;
  align-self: stretch;
  min-width: 166px;
  min-height: 80px;
  height: 100%;
  padding: 0 32px;
  border-radius: 0;
  box-shadow: none;
}
.l-header .c-button::after {
  display: none;
}
.l-header .c-button:hover {
  background: #d80010;
  box-shadow: none;
  transform: none;
}

@media (max-width: 1024px) {
  .l-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 24px;
  }
  .l-header__nav {
    align-self: auto;
    width: 100%;
    margin-left: 0;
  }
  .l-header__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
    height: auto;
  }
  .l-header__item--contact {
    align-self: auto;
    margin-left: 0;
  }
  .l-header__dropdown {
    top: calc(100% + 8px);
  }
  .l-header .c-button {
    min-height: 48px;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 72px;
  }
  .l-header {
    position: fixed;
    width: 100%;
    z-index: 100;
  }
  .l-header::before {
    position: fixed;
    inset: 0;
    z-index: 80;
    visibility: hidden;
    content: "";
    pointer-events: none;
    background: rgba(0, 18, 58, 0.48);
    opacity: 0;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .l-header__inner {
    position: relative;
    min-height: auto;
    padding: 8px 16px;
    flex-direction: row;
    align-items: center;
  }
  .l-header__logo img {
    width: 88px;
    height: 52px;
  }
  .l-header__toggle {
    position: relative;
    z-index: 110;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-left: auto;
    color: #001f5b;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid rgba(0, 36, 107, 0.16);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0, 31, 91, 0.12);
    transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  }
  .l-header__toggle-line {
    position: absolute;
    left: 13px;
    width: 24px;
    height: 2px;
    transform-origin: center;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
  }
  .l-header__toggle-line:nth-child(1) {
    top: 17px;
  }
  .l-header__toggle-line:nth-child(2) {
    top: 24px;
  }
  .l-header__toggle-line:nth-child(3) {
    top: 31px;
  }
  .l-header__toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    display: block;
    width: min(86vw, 380px);
    height: 100dvh;
    padding: 104px 24px 32px;
    overflow-y: auto;
    visibility: hidden;
    background: linear-gradient(118deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62% 74%, transparent 74% 100%), linear-gradient(160deg, #001f5b 0%, #00246b 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: -24px 0 56px rgba(0, 18, 58, 0.28);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.36s ease, opacity 0.28s ease, visibility 0.28s ease;
  }
  .l-header__list {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .l-header__item {
    display: block;
    color: #ffffff;
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .l-header__item > a:not(.c-button) {
    display: flex;
    justify-content: space-between;
    min-height: 58px;
    padding: 16px 0;
    color: #ffffff;
  }
  .l-header__item > a:not(.c-button)::after {
    display: none;
  }
  .l-header__item--has-dropdown > a:not(.c-button)::before {
    width: 8px;
    height: 8px;
    border-color: currentColor;
    transition: transform 0.28s ease;
  }
  .l-header__item--has-dropdown:hover .l-header__dropdown, .l-header__item--has-dropdown:focus-within .l-header__dropdown {
    opacity: 0;
    transform: none;
  }
  .l-header__item--has-dropdown.is-dropdown-open > a:not(.c-button)::before {
    transform: rotate(225deg);
  }
  .l-header__item--has-dropdown.is-dropdown-open .l-header__dropdown {
    display: none !important;
  }
  .l-header__item--contact {
    margin-top: 24px;
    border-top: 0;
  }
  .l-header__dropdown {
    display: none !important;
  }
  .l-header__mobile-subitem {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.34s ease, opacity 0.28s ease;
  }
  .l-header__mobile-subitem a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px 10px 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .l-header__item--has-dropdown.is-dropdown-open ~ .l-header__mobile-subitem {
    max-height: 48px;
    opacity: 1;
  }
  .l-header .c-button {
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    justify-content: center;
    border-radius: 8px;
  }
  body.is-menu-open {
    overflow: hidden;
  }
  body.is-menu-open .l-header::before {
    visibility: visible;
    opacity: 1;
  }
  body.is-menu-open .l-header__nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  body.is-menu-open .l-header__toggle {
    color: #ffffff;
    background: #e60012;
    border-color: #e60012;
  }
  body.is-menu-open .l-header__toggle-line:nth-child(1) {
    top: 24px;
    transform: rotate(45deg);
  }
  body.is-menu-open .l-header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  body.is-menu-open .l-header__toggle-line:nth-child(3) {
    top: 24px;
    transform: rotate(-45deg);
  }
  body.is-menu-open .l-header .l-header__item--has-dropdown {
    display: block !important;
  }
  body.is-menu-open .l-header .l-header__item--has-dropdown .l-header__dropdown {
    display: none !important;
  }
  body.is-menu-open .l-header .l-header__item--has-dropdown.is-dropdown-open .l-header__dropdown {
    display: none !important;
  }
}
.l-footer {
  color: #ffffff;
  padding: 80px 0 32px;
  background: linear-gradient(135deg, #001f5b 0%, #061640 100%);
}
.l-footer__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.l-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 88px;
  padding: 8px;
  background: #ffffff;
  border-radius: 8px;
}
.l-footer__logo img {
  width: 132px;
  height: 74px;
}
.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  max-width: 720px;
  font-weight: 700;
}
.l-footer__list a {
  transition: color 0.28s ease;
}
.l-footer__list a:hover {
  color: #ff9aa2;
}
.l-footer__company {
  padding-top: 40px;
}
.l-footer__name {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.5;
}
.l-footer__offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.l-footer__office {
  display: grid;
  gap: 4px;
  padding: 24px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.l-footer__office strong {
  color: #ffffff;
  font-size: 17px;
}
.l-footer__office span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}
.l-footer__copy {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 768px) {
  .l-footer {
    padding-top: 64px;
  }
  .l-footer__head {
    flex-direction: column;
  }
  .l-footer__list {
    justify-content: flex-start;
    gap: 10px 18px;
  }
  .l-footer__offices {
    grid-template-columns: 1fr;
  }
}
.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 54px;
  padding: 14px 28px;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.c-button::after {
  display: inline-block;
  margin-left: 12px;
  content: ">";
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transform: translateX(0);
  transition: transform 0.28s ease;
}
.c-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.c-button:hover::after {
  transform: translateX(4px);
}
.c-button__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.c-button--red {
  background: #e60012;
}
.c-button--white {
  color: #001f5b;
  background: #ffffff;
}
.c-button--outline {
  color: #00246b;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.36);
  box-shadow: none;
}
.c-button--outline:hover {
  color: #ffffff;
  background: #00246b;
  box-shadow: none;
}
.c-button--small {
  min-width: 132px;
  min-height: 44px;
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .c-button {
    min-width: 100%;
  }
}
.c-title {
  margin-bottom: 32px;
}
.c-title--center {
  text-align: center;
}
.c-title__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.c-title__sub::before {
  width: 32px;
  height: 2px;
  content: "";
  background: #e60012;
}
.c-title--center .c-title__sub::after {
  width: 32px;
  height: 2px;
  content: "";
  background: #e60012;
}
.c-title__main {
  color: #001f5b;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.35;
}

.c-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.c-card:hover {
  border-color: rgba(0, 36, 107, 0.18);
  box-shadow: 0 24px 48px rgba(0, 31, 91, 0.18);
  transform: translateY(-6px);
}

.c-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
}
.c-table__title {
  padding: 14px 24px;
  color: #ffffff;
  font-size: 17px;
  background: #00246b;
}
.c-table__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-top: 1px solid #e5e7eb;
}
.c-table__row dt,
.c-table__row dd {
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.7;
}
.c-table__row dt {
  color: #001f5b;
  font-weight: 700;
  background: #f5f7fb;
}
.c-table__row dd {
  margin: 0;
}
.c-table tr + tr th,
.c-table tr + tr td {
  border-top: 1px solid #e5e7eb;
}
.c-table th,
.c-table td {
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
.c-table th {
  color: #001f5b;
  font-weight: 700;
  background: #f5f7fb;
}
.c-table td {
  margin: 0;
  background: #ffffff;
}

@media (max-width: 768px) {
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
  .c-table__row {
    grid-template-columns: 1fr;
  }
  .c-table__row dd {
    padding-top: 10px;
  }
}
.c-page-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  text-decoration: none;
  pointer-events: none;
  visibility: hidden;
  background: #00246b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, background 0.28s ease;
}
.c-page-top::before {
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}
.c-page-top:hover, .c-page-top:focus-visible {
  background: #e60012;
  transform: translateY(8px);
}
.c-page-top:focus-visible {
  outline: 3px solid rgba(230, 0, 18, 0.3);
  outline-offset: 4px;
}
.c-page-top.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.c-page-top.is-active:hover, .c-page-top.is-active:focus-visible {
  transform: translateY(-4px);
}
.c-page-top__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .c-page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
.p-page-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #ffffff;
  background: #001f5b;
}
.p-page-hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
}
.p-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(0, 18, 58, 0.97) 0%, rgba(0, 31, 91, 0.88) 42%, rgba(0, 85, 175, 0.26) 70%, rgba(0, 31, 91, 0.18) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14));
}
.p-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(116deg, transparent 0 49%, rgba(255, 255, 255, 0.09) 49% 58%, transparent 58% 100%), radial-gradient(rgba(255, 255, 255, 0.42) 1.3px, transparent 1.3px);
  background-position: center, right 112px top 132px;
  background-size: auto, 24px 24px;
  opacity: 0.82;
}
.p-page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  padding: 80px 0;
}
.p-page-hero__sub {
  margin-bottom: 8px;
  color: #ff4b57;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-page-hero__sub::after {
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  content: "";
  background: #e60012;
}
.p-page-hero__title {
  margin-top: 24px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
}
.p-page-hero__lead {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.6;
}
.p-page-hero__text {
  max-width: 700px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}
.p-page-hero--ai .p-page-hero__image {
  object-position: center 46%;
  filter: saturate(0.96) contrast(1.04);
}
.p-page-hero--ai::after {
  background: linear-gradient(105deg, rgba(0, 18, 58, 0.96) 0%, rgba(0, 31, 91, 0.84) 42%, rgba(0, 85, 175, 0.36) 72%, rgba(0, 31, 91, 0.24) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .p-page-hero {
    min-height: 520px;
  }
  .p-page-hero__image {
    object-position: center;
  }
  .p-page-hero::after {
    background: linear-gradient(90deg, rgba(0, 31, 91, 0.96) 0%, rgba(0, 31, 91, 0.78) 100%);
  }
  .p-page-hero__inner {
    min-height: 520px;
    padding: 64px 0;
  }
  .p-page-hero--ai .p-page-hero__image {
    object-position: 62% center;
  }
}
.p-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: #001f5b;
}
.p-hero__image, .p-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-hero__image {
  z-index: 0;
  display: block;
  object-fit: cover;
  animation: hero-bg-zoom 7s ease-out both;
}
.p-hero__overlay {
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 31, 91, 0.94) 0%, rgba(0, 31, 91, 0.78) 40%, rgba(0, 31, 91, 0.34) 72%, rgba(0, 31, 91, 0.18) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.36) 100%);
}
.p-hero__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(116deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 42% 52%, transparent 52% 100%), radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-position: center, left 8vw top 120px;
  background-size: auto, 18px 18px;
  opacity: 0;
  animation: hero-decor-in 1s ease 0.25s both;
}
.p-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: 40px;
  align-items: center;
  min-height: 720px;
  padding: 80px 0;
}
.p-hero__content {
  min-width: 0;
  animation: hero-copy-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s both;
}
.p-hero__label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.p-hero__title {
  font-size: clamp(48px, 6.4vw, 108px);
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.p-hero__lead {
  margin-top: 32px;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 700;
  line-height: 1.8;
}
.p-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  animation: hero-buttons-in 0.8s ease 0.65s both;
}
.p-hero__chara {
  position: relative;
  align-self: end;
  width: min(42vw, 520px);
  margin: 0 0 -12px auto;
  filter: drop-shadow(0 28px 40px rgba(0, 18, 58, 0.36));
  animation: hero-chara-in 1s cubic-bezier(0.18, 0.82, 0.28, 1) 0.45s both;
}
.p-hero__chara::before {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: -1;
  width: 72%;
  height: 18%;
  content: "";
  background: rgba(0, 18, 58, 0.26);
  border-radius: 50%;
  filter: blur(16px);
  transform: rotate(-5deg);
}
.p-hero__chara img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-hero--movie-only {
  min-height: 90vh;
  overflow: hidden;
  background: #001f5b;
}
.p-hero--movie-only .p-hero__movie {
  display: block;
  width: 100%;
  height: 90vh;
  min-height: 640px;
  object-fit: cover;
}

@keyframes hero-bg-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
@keyframes hero-decor-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-buttons-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-chara-in {
  0% {
    opacity: 0;
    transform: translateX(72px) translateY(24px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateX(-6px) translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .p-hero {
    min-height: auto;
  }
  .p-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(92px, 30vw);
    grid-template-rows: auto auto auto;
    column-gap: 8px;
    row-gap: 16px;
    align-items: center;
    min-height: 422px;
    padding: 32px 0 40px;
  }
  .p-hero__overlay {
    background: linear-gradient(180deg, rgba(0, 31, 91, 0.96) 0%, rgba(0, 31, 91, 0.82) 48%, rgba(0, 31, 91, 0.54) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.36) 100%);
  }
  .p-hero__image {
    object-position: 64% bottom;
  }
  .p-hero__decor {
    background-position: center, left 16px top 40px;
    background-size: auto, 16px 16px;
  }
  .p-hero__content {
    position: relative;
    z-index: 3;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .p-hero__title {
    font-size: clamp(30px, 9.3vw, 38px);
    line-height: 1.2;
    word-break: keep-all;
  }
  .p-hero__lead {
    margin-top: 16px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.75;
  }
  .p-hero__buttons {
    position: relative;
    z-index: 3;
    grid-column: 1/-1;
    grid-row: 3/4;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }
  .p-hero__chara {
    grid-column: 2/3;
    grid-row: 1/3;
    z-index: 2;
    align-self: center;
    justify-self: end;
    width: min(29vw, 116px);
    margin: 0 0 0 -8px;
    filter: drop-shadow(0 16px 24px rgba(0, 18, 58, 0.32));
  }
  .p-hero__chara::before {
    right: 8%;
    bottom: 6%;
    width: 68%;
    height: 14%;
    filter: blur(10px);
  }
  .p-hero--movie-only {
    min-height: 0;
  }
  .p-hero--movie-only .p-hero__movie {
    aspect-ratio: 16/9;
    height: auto;
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__image, .p-hero__decor, .p-hero__content, .p-hero__buttons, .p-hero__chara {
    animation: none;
  }
}
.p-value {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: 96px 0;
  overflow: visible;
  background: #ffffff;
}
.p-value::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(calc(-50vw - 8px));
  z-index: 0;
  content: "";
  pointer-events: none;
  background: rgba(0, 36, 107, 0.045);
  clip-path: polygon(0 0, 74% 0, 58% 100%, 0 100%);
}
.p-value::after {
  position: absolute;
  right: max(24px, (100vw - 1280px) / 2 + 32px);
  bottom: 64px;
  width: 152px;
  height: 96px;
  content: "";
  background-image: radial-gradient(rgba(0, 36, 107, 0.16) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity: 0.42;
}
.p-value__inner {
  display: contents;
}
.p-value__media {
  position: relative;
  z-index: 1;
  grid-column: 1;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 31, 91, 0.14);
}
.p-value__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 72%, rgba(0, 31, 91, 0.18));
  pointer-events: none;
}
.p-value__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.p-value__content {
  position: relative;
  z-index: 1;
  grid-column: 2;
  max-width: none;
  padding: 16px 0;
}
.p-value .c-title__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #e60012;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.p-value .c-title__sub::before {
  display: block;
  width: 40px;
  height: 2px;
  content: "";
  background: #e60012;
}
.p-value__title {
  color: #001f5b;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.3;
}
.p-value__text {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.p-value__table-wrap {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 36, 107, 0.14);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0, 31, 91, 0.08);
}
.p-value__sign {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 36, 107, 0.06), rgba(0, 36, 107, 0.02));
  border-left: 4px solid #e60012;
  border-radius: 4px;
}
.p-value__sign-sub {
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.p-value__sign-title {
  color: #001f5b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
.p-value__sign-text {
  color: #111827;
  font-size: 14px;
  line-height: 1.8;
}
.p-value__table-title {
  padding: 12px 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(90deg, #001f5b, #00246b);
}
.p-value__table-note {
  margin-top: 1rem;
}
.p-value .c-table {
  width: 100%;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  border-collapse: collapse;
}
.p-value .c-table th,
.p-value .c-table td {
  padding: 12px 24px;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  border-top: 1px solid #e5e7eb;
}
.p-value .c-table th {
  width: 178px;
  color: #001f5b;
  font-weight: 700;
  background: #f3f6fb;
}

@media (max-width: 1024px) {
  .p-value {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
  }
  .p-value__media {
    height: 540px;
  }
}
@media (max-width: 768px) {
  .p-value {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1280px);
    gap: 32px;
    padding: 64px 0;
  }
  .p-value::before, .p-value::after {
    display: none;
  }
  .p-value__media, .p-value__content {
    grid-column: 1;
  }
  .p-value__media {
    height: 360px;
  }
  .p-value__content {
    max-width: none;
    padding: 0;
  }
  .p-value .c-table th,
  .p-value .c-table td {
    display: block;
    width: 100%;
  }
}
.p-service {
  background: #ffffff;
}
.p-service__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.p-service__button {
  min-width: 216px;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 13px;
  border-color: #8a98b5;
}
.p-service__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.p-service__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 31, 91, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.p-service__card:hover {
  border-color: rgba(0, 36, 107, 0.24);
  box-shadow: 0 14px 28px rgba(0, 31, 91, 0.14);
  transform: translateY(-4px);
}
.p-service__image {
  height: 168px;
  overflow: hidden;
  background: #f5f7fb;
}
.p-service__image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.p-service__card:hover .p-service__image img {
  transform: scale(1.05);
}
.p-service__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -32px auto 0;
  color: #00246b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: #ffffff;
  border: 3px solid rgba(0, 36, 107, 0.82);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 31, 91, 0.1);
}
.p-service__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.p-service__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 176px;
  padding: 16px 16px 24px;
  text-align: center;
}
.p-service__title {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-service__text {
  margin-top: 16px;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
}
.p-service__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: #00246b;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.28s ease;
}
.p-service__link::after {
  content: ">";
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.28s ease;
}
.p-service__card:hover .p-service__link {
  color: #e60012;
}
.p-service__card:hover .p-service__link::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .p-service__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .p-service__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .p-service__button {
    width: 100%;
  }
  .p-service__grid {
    grid-template-columns: 1fr;
  }
  .p-service__image {
    height: 220px;
  }
  .p-service__body {
    min-height: auto;
  }
}
.p-service-page {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 36, 107, 0.06) 0%, rgba(255, 255, 255, 0) 42%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.p-service-page::before {
  position: absolute;
  top: 56px;
  right: -120px;
  width: 360px;
  height: 360px;
  content: "";
  border: 42px solid rgba(0, 36, 107, 0.06);
  border-radius: 50%;
}
.p-service-page > .l-container {
  position: relative;
  z-index: 1;
}
.p-service-page__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.1) 0 36%, transparent 36% 100%), linear-gradient(135deg, #001f5b 0%, #00246b 100%);
  border: 1px solid rgba(0, 36, 107, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-service-page__intro::after {
  position: absolute;
  top: 56px;
  left: min(30vw, 360px);
  width: 144px;
  height: 96px;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.3px, transparent 1.3px);
  background-size: 18px 18px;
  opacity: 0.7;
}
.p-service-page__intro .c-title {
  position: relative;
  top: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 48px 40px;
}
.p-service-page__intro .c-title::before {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 72px;
  height: 3px;
  content: "";
  background: #e60012;
}
.p-service-page__intro .c-title__sub {
  color: #ff6a72;
}
.p-service-page__intro .c-title__main {
  color: #ffffff;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.22;
}
.p-service-page__intro > div:last-child {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 48px;
  margin: 40px 40px 40px 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(0, 18, 58, 0.18);
}
.p-service-page__catch {
  color: #001f5b;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0;
}
.p-service-page__text {
  display: grid;
  gap: 16px;
  color: #111827;
  font-size: 16px;
  margin-top: 24px;
  line-height: 2;
}
.p-service-page__text p {
  padding-left: 24px;
  border-left: 2px solid rgba(0, 36, 107, 0.16);
}
.p-service-page__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.16);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 31, 91, 0.1);
}
.p-service-page__nav--four {
  grid-template-columns: repeat(4, 1fr);
}
.p-service-page__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 32px;
  overflow: hidden;
  color: #001f5b;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  background: #ffffff;
  border: 0;
  border-left: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 0;
  box-shadow: none;
  transition: color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.p-service-page__nav-link::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 48px;
  height: 3px;
  content: "";
  background: #e60012;
}
.p-service-page__nav-link::after {
  content: ">";
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.28s ease, transform 0.28s ease;
}
.p-service-page__nav-link:hover {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(230, 0, 18, 0.95), rgba(230, 0, 18, 0.72)), #00246b;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
  transform: none;
}
.p-service-page__nav-link:hover::after {
  color: #ffffff;
  transform: translateX(4px);
}
.p-service-page__section {
  position: relative;
  padding: calc(96px + 32px) 0 96px;
  overflow: hidden;
  counter-increment: service-section;
  border-top: 0;
}
.p-service-page__section:nth-child(even) {
  background: linear-gradient(115deg, rgba(0, 36, 107, 0.05) 0 34%, rgba(255, 255, 255, 0) 34% 100%), #f5f7fb;
}
.p-service-page__section:nth-child(odd) {
  background: #ffffff;
}
.p-service-page__section::before {
  position: absolute;
  top: 24px;
  left: max(24px, (100vw - 1280px) / 2);
  z-index: 0;
  color: rgba(0, 36, 107, 0.075);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  content: counter(service-section, decimal-leading-zero);
}
.p-service-page__block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
}
.p-service-page__block--reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}
.p-service-page__block--reverse .p-service-page__content {
  order: 2;
}
.p-service-page__block--reverse .p-service-page__media {
  order: 1;
}
.p-service-page__content {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 36, 107, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 31, 91, 0.08);
}
.p-service-page__content::before {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 3px;
  content: "";
  background: #e60012;
}
.p-service-page__label {
  margin-bottom: 8px;
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-service-page__heading {
  color: #001f5b;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.35;
}
.p-service-page__body {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  font-size: 16px;
  line-height: 2;
}
.p-service-page__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-service-page__media img {
  height: 100%;
  transition: transform 0.5s ease;
}
.p-service-page__media--traffic img {
  object-position: center top;
}
.p-service-page__block:hover .p-service-page__media img {
  transform: scale(1.035);
}
.p-service-page__license {
  margin-top: 32px;
  padding: 24px;
  background: #f7faff;
  border: 1px solid rgba(0, 36, 107, 0.14);
  border-left: 4px solid #e60012;
  border-radius: 8px;
}
.p-service-page__license-title {
  margin-bottom: 16px;
  color: #001f5b;
  font-size: 17px;
  font-weight: 700;
}
.p-service-page__license-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-service-page__license-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 12px;
  color: #001f5b;
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 999px;
}
.p-service-page__related {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 31, 91, 0.96) 0%, rgba(0, 36, 107, 0.92) 100%);
}
.p-service-page__related .c-title__sub,
.p-service-page__related .c-title__main {
  color: #ffffff;
}
.p-service-page__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-service-page__related-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  min-height: 184px;
  padding: 32px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.p-service-page__related-card::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 132px;
  min-height: 38px;
  padding: 8px 18px;
  margin-top: 16px;
  color: #001f5b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  content: "詳しく見る  >";
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}
.p-service-page__related-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}
.p-service-page__related-card:hover::after {
  color: #ffffff;
  background: #e60012;
  border-color: #e60012;
  transform: translateX(4px);
}
.p-service-page__related-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}
.p-service-page__related-en {
  color: #ff6a72;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-service-page__related-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.p-service-page__related-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .p-service-page__intro, .p-service-page__block, .p-service-page__block--reverse {
    grid-template-columns: 1fr;
  }
  .p-service-page__intro {
    grid-template-columns: 1fr;
  }
  .p-service-page__intro .c-title {
    position: relative;
    top: auto;
    min-height: 220px;
  }
  .p-service-page__intro > div:last-child {
    margin: 0 24px 24px;
    padding: 32px;
  }
  .p-service-page__block--reverse .p-service-page__content,
  .p-service-page__block--reverse .p-service-page__media {
    order: initial;
  }
}
@media (max-width: 768px) {
  .p-service-page__nav, .p-service-page__nav--four, .p-service-page__related-grid {
    grid-template-columns: 1fr;
  }
  .p-service-page__section {
    padding: 80px 0 64px;
  }
  .p-service-page__block {
    gap: 32px;
  }
  .p-service-page__content {
    padding: 32px 24px;
  }
  .p-service-page__intro .c-title {
    min-height: 184px;
    padding: 40px 24px;
  }
  .p-service-page__intro > div:last-child {
    margin: 0 16px 16px;
    padding: 24px;
  }
  .p-service-page__nav-link {
    min-height: 64px;
  }
  .p-service-page__text p {
    padding-left: 16px;
  }
}
.p-supply-link {
  padding: 0;
  background: #ffffff;
}
.p-supply-link__card {
  position: relative;
  display: block;
  min-height: 430px;
  padding: clamp(32px, 3.2vw, 48px) clamp(40px, 7vw, 96px);
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  background-image: linear-gradient(90deg, rgba(0, 18, 58, 0.98) 0%, rgba(0, 31, 91, 0.92) 28%, rgba(0, 67, 145, 0.42) 58%, rgba(0, 31, 91, 0.08) 100%), url("../images/common/banner-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0;
  transition: transform 0.28s ease;
  border-radius: 8px;
}
.p-supply-link__card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(118deg, transparent 0 30%, rgba(255, 255, 255, 0.07) 30% 42%, transparent 42% 56%, rgba(255, 255, 255, 0.1) 56% 66%, transparent 66% 100%);
  mix-blend-mode: screen;
}
.p-supply-link__card::after {
  position: absolute;
  top: 86px;
  left: min(45vw, 600px);
  width: 168px;
  height: 96px;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.84) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.8;
}
.p-supply-link__card:hover {
  transform: translateY(-4px);
}
.p-supply-link__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.p-supply-link__sub {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.p-supply-link__sub::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  content: "";
  background: #e60012;
}
.p-supply-link__title {
  margin-top: 16px;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}
.p-supply-link__text {
  max-width: 660px;
  margin-top: 16px;
  color: #ffffff;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.75;
}
.p-supply-link__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-width: 288px;
  min-height: 56px;
  padding: 12px 32px;
  margin-top: 24px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: color 0.28s ease, background 0.28s ease;
}
.p-supply-link__button::after {
  content: ">";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 1;
  transition: transform 0.28s ease;
}
.p-supply-link__card:hover .p-supply-link__button {
  color: #001f5b;
  background: #ffffff;
}
.p-supply-link__card:hover .p-supply-link__button::after {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .p-supply-link__card {
    min-height: 430px;
    padding: 40px 24px;
    background-position: center right 28%;
  }
  .p-supply-link__card::after {
    top: 72px;
    right: 24px;
    left: auto;
    width: 120px;
  }
  .p-supply-link__sub {
    font-size: 15px;
  }
  .p-supply-link__title {
    font-size: clamp(36px, 11vw, 52px);
  }
  .p-supply-link__text {
    font-size: 15px;
  }
  .p-supply-link__button {
    width: 100%;
    min-width: 100%;
    min-height: 60px;
    font-size: 17px;
  }
}
.p-company-page {
  position: relative;
  overflow: hidden;
}
.p-company-page__greeting {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 36, 107, 0.06), rgba(255, 255, 255, 0)), #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-company-page__greeting-body {
  min-width: 0;
}
.p-company-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #e60012;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.p-company-page__eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #e60012;
}
.p-company-page__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-company-page__media img {
  height: 100%;
}
.p-company-page__lead {
  color: #001f5b;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
}
.p-company-page__lead > span {
  color: #e60012;
}
.p-company-page__text {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  font-size: 16px;
  line-height: 2.1;
}
.p-company-page__name {
  margin-top: 32px;
  color: #001f5b;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  text-align: right;
}
.p-company-page__overview {
  background: linear-gradient(120deg, rgba(0, 36, 107, 0.08) 0 34%, transparent 34% 100%), #f5f7fb;
}
.p-company-page__access {
  background: radial-gradient(circle at 88% 16%, rgba(0, 36, 107, 0.08) 0 120px, transparent 121px), linear-gradient(180deg, #ffffff 0%, rgba(245, 247, 251, 0.72) 100%);
}
.p-company-page__table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-company-page__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-top: 1px solid #e5e7eb;
}
.p-company-page__row:first-child {
  border-top: 0;
}
.p-company-page__term, .p-company-page__description {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.9;
}
.p-company-page__term {
  color: #001f5b;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(0, 36, 107, 0.1), rgba(0, 36, 107, 0.04));
}
.p-company-page__description {
  background: #ffffff;
}
.p-company-page__access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-company-page__office {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 31, 91, 0.08);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.p-company-page__office:hover {
  border-color: rgba(0, 36, 107, 0.28);
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
  transform: translateY(-4px);
}
.p-company-page__office-image {
  height: 200px;
  overflow: hidden;
  background: #f5f7fb;
}
.p-company-page__office-image img {
  height: 100%;
  transition: transform 0.5s ease;
}
.p-company-page__office:hover .p-company-page__office-image img {
  transform: scale(1.04);
}
.p-company-page__office-body {
  padding: 24px;
  border-top: 4px solid #00246b;
}
.p-company-page__office-title {
  color: #001f5b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.p-company-page__office-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.p-company-page__office-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  font-size: 14px;
  line-height: 1.8;
}
.p-company-page__office-row dt {
  color: #001f5b;
  font-weight: 700;
}
.p-company-page__office-row dd {
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .p-company-page__greeting {
    grid-template-columns: 1fr;
  }
  .p-company-page__access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-company-page__row {
    grid-template-columns: 1fr;
  }
  .p-company-page__term, .p-company-page__description {
    padding: 16px;
  }
  .p-company-page__office-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-company-page__access-grid {
    grid-template-columns: 1fr;
  }
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-recruit-page__intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(116deg, rgba(0, 36, 107, 0.1) 0 38%, rgba(255, 255, 255, 0) 38% 100%), linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
}
.p-recruit-page__intro::after {
  position: absolute;
  right: 8vw;
  bottom: -72px;
  width: 280px;
  height: 280px;
  content: "";
  border: 34px solid rgba(0, 36, 107, 0.07);
  border-radius: 50%;
}
.p-recruit-page__intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-recruit-page__lead {
  color: #001f5b;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-recruit-page__text {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}
.p-recruit-page__person {
  align-self: end;
}
.p-recruit-page__person img {
  height: auto;
  object-fit: contain;
}
.p-recruit-page__person--mascot {
  justify-self: center;
  max-width: 320px;
  margin-bottom: -16px;
}
.p-recruit-page__person--mascot img {
  width: 100%;
  max-height: 360px;
}
.p-recruit-page__steps {
  display: grid;
  gap: 24px;
  counter-reset: training-step;
}
.p-recruit-page__step {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 31, 91, 0.06);
}
.p-recruit-page__step-number {
  display: grid;
  place-items: center;
  min-height: 112px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #001f5b, #00246b);
  border-radius: 8px;
}
.p-recruit-page__step-title {
  color: #001f5b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
.p-recruit-page__step-text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
}
.p-recruit-page__step-note {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 6px 16px;
  color: #001f5b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  background: rgba(0, 36, 107, 0.06);
  border-left: 3px solid #e60012;
  border-radius: 4px;
}
.p-recruit-page__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.p-recruit-page__gallery-item {
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 31, 91, 0.1);
}
.p-recruit-page__gallery-item img {
  height: 100%;
}
.p-recruit-page__benefits {
  background: linear-gradient(120deg, rgba(0, 36, 107, 0.07) 0 32%, transparent 32% 100%), #f5f7fb;
}
.p-recruit-page__benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.p-recruit-page__benefit {
  min-height: 210px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 31, 91, 0.06);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.p-recruit-page__benefit:hover {
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
  transform: translateY(-4px);
}
.p-recruit-page__benefit-number {
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-recruit-page__benefit-title {
  margin-top: 8px;
  color: #001f5b;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}
.p-recruit-page__benefit-text {
  margin-top: 16px;
  color: #111827;
  font-size: 14px;
  line-height: 1.8;
}
.p-recruit-page__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.p-recruit-page__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 8px 16px;
  color: #001f5b;
  font-size: 16px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.18);
  border-radius: 999px;
}
.p-recruit-page__entry {
  position: relative;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../images/recruit/work-style.webp") center/cover no-repeat;
}
.p-recruit-page__entry-box {
  max-width: 880px;
  padding: 48px;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(116deg, transparent 0 52%, rgba(255, 255, 255, 0.1) 52% 64%, transparent 64% 100%), linear-gradient(135deg, #001f5b 0%, #00246b 100%);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-recruit-page__entry-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.45;
}
.p-recruit-page__entry-text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.9;
}
.p-recruit-page__entry-button {
  margin-top: 32px;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .p-recruit-page__intro-inner, .p-recruit-page__benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-recruit-page__intro-inner, .p-recruit-page__step, .p-recruit-page__gallery, .p-recruit-page__benefit-grid {
    grid-template-columns: 1fr;
  }
  .p-recruit-page__person {
    max-width: 280px;
    margin: 0 auto;
  }
  .p-recruit-page__step-number {
    min-height: 72px;
  }
  .p-recruit-page__entry-box {
    padding: 32px 24px;
  }
  .p-recruit-page__intro-inner {
    padding: 32px 24px;
  }
}
.p-contact-page {
  position: relative;
  overflow: hidden;
}
.p-contact-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 36, 107, 0.06), rgba(255, 255, 255, 0)), #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-contact-page__lead {
  color: #001f5b;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 700;
  line-height: 1.55;
  word-break: keep-all;
}
.p-contact-page__text {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}
.p-contact-page__info {
  display: grid;
  gap: 24px;
}
.p-contact-page__info-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 31, 91, 0.06);
}
.p-contact-page__info-title {
  color: #001f5b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.p-contact-page__tel {
  display: inline-flex;
  margin-top: 16px;
  color: #00246b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.p-contact-page__note {
  margin-top: 8px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.8;
}
.p-contact-page__form-section {
  background: linear-gradient(120deg, rgba(0, 36, 107, 0.07) 0 32%, transparent 32% 100%), #f5f7fb;
}
.p-contact-page__form {
  display: grid;
  gap: 24px;
  max-width: 880px;
  padding: 40px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-contact-page__field {
  display: grid;
  gap: 8px;
}
.p-contact-page__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #001f5b;
  font-size: 15px;
  font-weight: 700;
}
.p-contact-page__required {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #e60012;
  border-radius: 999px;
}
.p-contact-page__input, .p-contact-page__select, .p-contact-page__textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  color: #111827;
  font: inherit;
  line-height: 1.6;
  background: #ffffff;
  border: 1px solid #cfd6e3;
  border-radius: 4px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.p-contact-page__input:focus, .p-contact-page__select:focus, .p-contact-page__textarea:focus {
  border-color: rgba(0, 36, 107, 0.72);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 36, 107, 0.12);
}
.p-contact-page__textarea {
  min-height: 180px;
  resize: vertical;
}
.p-contact-page__privacy {
  padding: 24px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.9;
  background: #f5f7fb;
  border-radius: 4px;
}
.p-contact-page__submit {
  justify-self: center;
  min-width: 240px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .p-contact-page__intro {
    grid-template-columns: 1fr;
  }
  .p-contact-page__form {
    padding: 24px;
  }
  .p-contact-page__intro {
    padding: 32px 24px;
  }
  .p-contact-page__submit {
    width: 100%;
  }
}
.cwcf-form-shell {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}

.cwcf-form {
  padding: 30px;
}

.p-thanks-page {
  background: linear-gradient(120deg, rgba(0, 36, 107, 0.07) 0 34%, transparent 34% 100%), #f5f7fb;
}
.p-thanks-page__card {
  position: relative;
  max-width: 920px;
  padding: 48px 40px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-thanks-page__card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  content: "";
  border: 28px solid rgba(0, 36, 107, 0.06);
  border-radius: 50%;
}
.p-thanks-page__body {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin: 32px auto 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}
.p-thanks-page__contact {
  max-width: 520px;
  padding: 24px;
  margin: 32px auto 0;
  background: #f5f7fb;
  border-left: 4px solid #e60012;
  border-radius: 4px;
}
.p-thanks-page__contact-label {
  color: #001f5b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.p-thanks-page__tel {
  display: inline-flex;
  margin-top: 8px;
  color: #00246b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.p-thanks-page__note {
  margin-top: 8px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.7;
}
.p-thanks-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .p-thanks-page__card {
    padding: 40px 24px;
  }
  .p-thanks-page__body {
    font-size: 15px;
  }
  .p-thanks-page__actions {
    flex-direction: column;
  }
  .p-thanks-page__actions .c-button {
    width: 100%;
  }
}
.p-privacy-page {
  background: linear-gradient(135deg, rgba(0, 36, 107, 0.045), rgba(255, 255, 255, 0) 46%), #ffffff;
}
.p-privacy-page__article {
  max-width: 960px;
  padding: 48px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-privacy-page__intro {
  padding: 32px;
  color: #001f5b;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  background: #f5f7fb;
  border-left: 4px solid #e60012;
  border-radius: 4px;
}
.p-privacy-page__section {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #e5e7eb;
}
.p-privacy-page__section h2 {
  color: #001f5b;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}
.p-privacy-page__section p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
}
.p-privacy-page__section ul {
  display: grid;
  gap: 8px;
  padding: 24px 32px;
  margin-top: 16px;
  background: #f5f7fb;
  border-radius: 8px;
}
.p-privacy-page__section li {
  position: relative;
  padding-left: 1.35em;
  font-size: 15px;
  line-height: 1.9;
}
.p-privacy-page__section li::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #e60012;
  border-radius: 50%;
}
.p-privacy-page__contact {
  padding: 24px;
  margin-top: 16px;
  background: #f5f7fb;
  border-radius: 4px;
}
.p-privacy-page__contact p {
  margin-top: 0;
}
.p-privacy-page__contact p + p {
  margin-top: 8px;
}
.p-privacy-page__contact a {
  color: #00246b;
  font-weight: 700;
  text-decoration: none;
}
.p-privacy-page__date {
  margin-top: 40px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 768px) {
  .p-privacy-page__article {
    padding: 32px 24px;
  }
  .p-privacy-page__intro {
    padding: 24px;
  }
  .p-privacy-page__section p {
    font-size: 15px;
  }
  .p-privacy-page__section ul {
    padding: 24px;
  }
}
.p-strength {
  background: #ffffff;
}
.p-strength .c-title {
  margin-bottom: 48px;
}
.p-strength .c-title__sub {
  justify-content: center;
  margin-bottom: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.p-strength .c-title__sub::before, .p-strength .c-title__sub::after {
  display: none;
}
.p-strength .c-title__main {
  margin-top: 4px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.35;
}
.p-strength__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: auto;
}
.p-strength__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 168px;
  padding: 0 40px;
  text-align: center;
}
.p-strength__item + .p-strength__item::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: #b8c2d6;
}
.p-strength__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  object-fit: contain;
}
.p-strength__item > img {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  object-fit: contain;
}
.p-strength__title {
  color: #001f5b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-strength__item > h3 {
  color: #001f5b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-strength__text {
  margin-top: 8px;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}
.p-strength__item > p {
  margin-top: 8px;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .p-strength__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .p-strength__item:nth-child(odd)::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-strength .c-title {
    margin-bottom: 32px;
  }
  .p-strength__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-strength__item {
    min-height: auto;
    padding: 0 24px 32px;
    border-bottom: 1px solid #d7deeb;
  }
  .p-strength__item::before {
    display: none;
  }
  .p-strength__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.p-link-banner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.p-link-banner__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 304px;
  padding: 40px;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 24px rgba(0, 31, 91, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.p-link-banner__card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 31, 91, 0.98) 0%, rgba(0, 31, 91, 0.86) 34%, rgba(0, 31, 91, 0.32) 62%, rgba(0, 31, 91, 0.06) 100%);
}
.p-link-banner__card:hover {
  box-shadow: 0 16px 32px rgba(0, 31, 91, 0.15);
  transform: translateY(-4px);
}
.p-link-banner__card:focus-visible {
  outline: 3px solid rgba(230, 0, 18, 0.35);
  outline-offset: 4px;
}
.p-link-banner__card--recruit {
  background-image: url("../images/index/recruit-banner.webp");
}
.p-link-banner__card--company {
  color: #001f5b;
  background-image: url("../images/index/company-banner.webp");
}
.p-link-banner__card--company::after {
  background: linear-gradient(90deg, rgba(238, 248, 255, 0.96) 0%, rgba(238, 248, 255, 0.88) 38%, rgba(238, 248, 255, 0.48) 64%, rgba(238, 248, 255, 0.06) 100%);
}
.p-link-banner__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.p-link-banner__card--recruit img {
  object-position: center center;
}
.p-link-banner__card--company img {
  object-position: center right;
}
.p-link-banner__card:hover img {
  transform: scale(1.04);
}
.p-link-banner__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
  min-height: 304px;
  padding: 40px 0 40px 40px;
}
.p-link-banner__card > span, .p-link-banner__card > strong, .p-link-banner__card > p, .p-link-banner__card > em {
  position: relative;
  z-index: 1;
  max-width: 300px;
}
.p-link-banner__en {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.p-link-banner__card > span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.p-link-banner__title {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}
.p-link-banner__card > strong {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}
.p-link-banner__text {
  max-width: 260px;
  margin: 24px 0 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}
.p-link-banner__card > p {
  margin: 24px 0 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}
.p-link-banner__button {
  min-width: 184px;
  min-height: 48px;
  padding: 12px 24px;
  box-shadow: none;
}
.p-link-banner__card > em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 184px;
  min-height: 48px;
  padding: 12px 24px;
  color: #001f5b;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.25);
  border-radius: 999px;
}
.p-link-banner__card > em::after {
  margin-left: 16px;
  content: ">";
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.28s ease;
}
.p-link-banner__card:hover > em::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .p-link-banner__body {
    width: 56%;
  }
  .p-link-banner__en {
    font-size: 34px;
  }
  .p-link-banner__card > span {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .p-link-banner__grid {
    grid-template-columns: 1fr;
  }
  .p-link-banner__card, .p-link-banner__body {
    min-height: 280px;
  }
  .p-link-banner__body {
    width: 62%;
    padding: 32px 0 32px 24px;
  }
  .p-link-banner__card {
    padding: 32px 24px;
  }
  .p-link-banner__en {
    font-size: 30px;
  }
  .p-link-banner__card > span {
    font-size: 30px;
  }
  .p-link-banner__title {
    font-size: 20px;
  }
  .p-link-banner__card > strong {
    font-size: 20px;
  }
  .p-link-banner__text {
    margin: 16px 0 24px;
    font-size: 14px;
  }
  .p-link-banner__card > p {
    margin: 16px 0 24px;
    font-size: 14px;
  }
}
.p-news {
  background: #ffffff;
}
.p-news__inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.p-news__head {
  display: grid;
  gap: 32px;
  justify-items: start;
}
.p-news__button {
  min-width: 184px;
}
.p-news__list {
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 8px;
}
.p-news__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 88px minmax(0, 1fr) 24px;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  color: #111827;
  text-decoration: none;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-radius: 0;
  transition: background 0.28s ease, color 0.28s ease;
}
.p-news__item:first-child {
  border-top: 0;
}
.p-news__item::after {
  content: ">";
  color: #001f5b;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color 0.28s ease, transform 0.28s ease;
}
.p-news__item:hover {
  color: #001f5b;
  background: rgba(0, 36, 107, 0.035);
}
.p-news__item:hover::after {
  color: #e60012;
  transform: translateX(4px);
}
.p-news__item time {
  color: #001f5b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.p-news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 2px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  background: #00246b;
  border-radius: 4px;
}
.p-news__title {
  min-width: 0;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}
.p-news__empty {
  padding: 32px;
  color: #001f5b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  background: #ffffff;
}

@media (max-width: 768px) {
  .p-news__inner, .p-news__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .p-news__item {
    min-height: 0;
    padding: 24px;
  }
  .p-news__item::after {
    position: absolute;
    right: 24px;
    bottom: 24px;
  }
}
.p-news-detail {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 36, 107, 0.045), rgba(255, 255, 255, 0) 42%), #ffffff;
}
.p-news-detail::before {
  position: absolute;
  top: 96px;
  right: -96px;
  width: 280px;
  height: 280px;
  content: "";
  border: 34px solid rgba(0, 36, 107, 0.06);
  border-radius: 50%;
}
.p-news-detail__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.p-news-detail__article, .p-news-detail__widget {
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 31, 91, 0.12);
}
.p-news-detail__article {
  overflow: hidden;
}
.p-news-detail__header {
  padding: 48px 48px 32px;
}
.p-news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.p-news-detail__date {
  color: #001f5b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.p-news-detail__category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background: #00246b;
  border-radius: 4px;
  transition: background 0.28s ease;
}
.p-news-detail__category:hover {
  background: #e60012;
}
.p-news-detail__title {
  color: #001f5b;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}
.p-news-detail__eyecatch {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f5f7fb;
}
.p-news-detail__eyecatch img {
  height: 100%;
}
.p-news-detail__content {
  padding: 40px 48px 48px;
  font-size: 16px;
  line-height: 2.05;
}
.p-news-detail__content > * + * {
  margin-top: 24px;
}
.p-news-detail__content h3 {
  padding-left: 16px;
  margin-top: 40px;
  color: #001f5b;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  border-left: 4px solid #e60012;
}
.p-news-detail__content ul {
  display: grid;
  gap: 8px;
  padding: 24px 32px;
  background: #f5f7fb;
  border-radius: 8px;
}
.p-news-detail__content li {
  position: relative;
  padding-left: 1.4em;
}
.p-news-detail__content li::before {
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #e60012;
  border-radius: 50%;
}
.p-news-detail__content .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.p-news-detail__content .wp-block-gallery > * {
  margin-top: 0;
}
.p-news-detail__content .wp-block-gallery.columns-2 .wp-block-image {
  width: calc((100% - 24px) / 2);
}
.p-news-detail__content .wp-block-gallery.columns-3 .wp-block-image {
  width: calc((100% - 24px * 2) / 3);
}
.p-news-detail__content .wp-block-gallery.columns-4 .wp-block-image {
  width: calc((100% - 24px * 3) / 4);
}
.p-news-detail__content .wp-block-image {
  padding-left: 0;
}
.p-news-detail__content .wp-block-image::before {
  display: none;
}
.p-news-detail__content .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-news-detail__content .wp-block-image figcaption {
  margin-top: 8px;
  color: #5f6b7a;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}
.p-news-detail__post-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 32px 48px 48px;
  border-top: 1px solid #e5e7eb;
}
.p-news-detail__post-link, .p-news-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  color: #001f5b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0, 36, 107, 0.22);
  border-radius: 999px;
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.p-news-detail__post-link:hover, .p-news-detail__back:hover {
  color: #ffffff;
  background: #00246b;
  border-color: #00246b;
  transform: translateY(-2px);
}
.p-news-detail__post-link--prev {
  justify-self: start;
}
.p-news-detail__post-link--next {
  justify-self: end;
}
.p-news-detail__back {
  background: #f5f7fb;
}
.p-news-detail__sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}
.p-news-detail__widget {
  padding: 32px;
}
.p-news-detail__widget-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: #001f5b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.p-news-detail__widget-title::before {
  width: 24px;
  height: 2px;
  content: "";
  background: #e60012;
}
.p-news-detail__latest-list, .p-news-detail__category-list {
  display: grid;
}
.p-news-detail__latest-list {
  gap: 16px;
}
.p-news-detail__latest-list a {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.28s ease;
}
.p-news-detail__latest-list a:hover {
  color: #00246b;
}
.p-news-detail__latest-list time {
  color: #001f5b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.p-news-detail__latest-list span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}
.p-news-detail__category-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.28s ease;
}
.p-news-detail__category-list a:hover {
  color: #00246b;
}
.p-news-detail__category-list span {
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
}
.p-news-detail__select-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 13px;
  font-weight: 700;
}
.p-news-detail__select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.2);
  border-radius: 8px;
}
.p-news-detail__empty {
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.p-news-detail__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 32px 48px 48px;
  border-top: 1px solid #e5e7eb;
}
.p-news-detail__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  color: #001f5b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 107, 0.18);
  border-radius: 999px;
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}
.p-news-detail__pagination .page-numbers.current,
.p-news-detail__pagination .page-numbers:hover {
  color: #ffffff;
  background: #00246b;
  border-color: #00246b;
}

.p-page-hero--news {
  min-height: 360px;
}
.p-page-hero--news .p-page-hero__inner {
  min-height: 360px;
}

@media (max-width: 1024px) {
  .p-news-detail__layout {
    grid-template-columns: 1fr;
  }
  .p-news-detail__sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .p-news-detail__header, .p-news-detail__content, .p-news-detail__post-nav {
    padding-right: 24px;
    padding-left: 24px;
  }
  .p-news-detail__post-nav, .p-news-detail__sidebar {
    grid-template-columns: 1fr;
  }
  .p-news-detail__post-link, .p-news-detail__back {
    width: 100%;
  }
  .p-news-detail__post-link--prev, .p-news-detail__post-link--next {
    justify-self: stretch;
  }
}
.p-cta {
  padding-top: 40px;
  padding-bottom: 64px;
}
.p-cta__banner {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 248px;
  align-items: center;
  gap: 32px;
  min-height: 248px;
  padding: 32px 40px 32px 40px;
  overflow: hidden;
  background-color: #e9f5ff;
  background-image: radial-gradient(circle, rgba(0, 36, 107, 0.08) 1px, transparent 1px), linear-gradient(116deg, transparent 0 56%, rgba(255, 255, 255, 0.52) 56% 66%, transparent 66% 100%), linear-gradient(135deg, #f2f9ff 0%, #dcefff 54%, #f7fcff 100%);
  background-size: 8px 8px, 100% 100%, 100% 100%;
  border: 1px solid rgba(0, 36, 107, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 31, 91, 0.1);
}
.p-cta__banner::before {
  position: absolute;
  top: -96px;
  right: -80px;
  width: 260px;
  height: 260px;
  content: "";
  pointer-events: none;
  border: 32px solid rgba(0, 36, 107, 0.06);
  border-radius: 50%;
}
.p-cta__banner::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36%;
  height: 5px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #e60012, rgba(230, 0, 18, 0));
}
.p-cta__mascot {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  margin-bottom: -40px;
}
.p-cta__mascot img {
  width: 276px;
  height: 260px;
  object-fit: contain;
  object-position: center bottom;
}
.p-cta__content {
  position: relative;
  z-index: 1;
  padding: 16px 0 16px 16px;
}
.p-cta__title {
  color: #001f5b;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0;
}
.p-cta__text {
  margin-top: 16px;
  color: #001f5b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
.p-cta__button {
  position: relative;
  z-index: 1;
  justify-self: center;
  min-width: 240px;
  min-height: 64px;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .p-cta__banner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
  .p-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .p-cta {
    padding-bottom: 48px;
  }
  .p-cta__banner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 32px 24px 40px;
    text-align: center;
    border-radius: 16px;
  }
  .p-cta__mascot {
    margin-bottom: -12px;
  }
  .p-cta__mascot img {
    width: 184px;
    height: 184px;
  }
  .p-cta__content {
    padding: 0;
  }
  .p-cta__button {
    grid-column: auto;
    justify-self: stretch;
    min-width: 100%;
  }
  .p-cta__text {
    font-size: 16px;
  }
}
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

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

@media (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
  .u-hidden-pc {
    display: block !important;
  }
}

/*# sourceMappingURL=style.css.map */
