@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Albert Sans", "Zen Kaku Gothic Antique", "Hiragino Sans", "メイリオ", sans-serif;
  font-weight: 500;
  color: #323d4b;
  line-height: 1.75;
  letter-spacing: 0.08em;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Lazy loading placeholder style */
img.js-lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.js-lazy.is-loaded {
  opacity: 1;
}

a {
  color: #323d4b;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button, input, textarea, select {
  border: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  background-color: transparent;
}

button, input[type=checkbox], input[type=radio], select {
  cursor: pointer;
}

textarea, select {
  appearance: none;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.l-header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100vh - 100%);
  background: rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 30;
  transition: opacity 0.2s ease, visibility 0s 0.2s;
}
.l-header.is-mega-open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}
@media (min-width: 64rem) {
  .l-header::before {
    display: block;
  }
}
.l-header__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 30rem) {
  .l-header__inner {
    padding-inline: 1.5rem;
  }
}
.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.625rem;
}
@media (min-width: 48rem) {
  .l-header__content {
    min-height: 5.5rem;
    gap: 1.875rem;
  }
}
.l-header__logo-img {
  width: 100%;
  min-width: 5.625rem;
  max-width: 8.5625rem;
}
.l-header__nav {
  display: none;
}
@media (min-width: 64rem) {
  .l-header__nav {
    display: flex;
    align-items: center;
    column-gap: 1.875rem;
  }
}
.l-header__nav-item {
  position: static;
  display: flex;
  align-items: center;
}
.l-header__nav-item.is-open .c-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 40;
  transition-delay: 0s;
}
.l-header__nav-item.is-open .c-mega-menu::before {
  transform: scaleY(1);
}
.l-header__nav-item.is-open .c-mega-menu__heading, .l-header__nav-item.is-open .c-mega-menu__column li, .l-header__nav-item.is-open .c-mega-menu__image {
  opacity: 1;
  transform: translateY(0);
}
.l-header__nav-link {
  min-height: 2rem;
  padding-block: 0.3125rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.l-header__nav-link.current {
  color: #0065b0;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-link:hover {
    color: #0065b0;
  }
}
.l-header__nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3125rem 0.5rem;
  background-color: #0065b0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.125rem;
  line-height: 1.3125rem;
  letter-spacing: 0.08em;
  width: 8.125rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-button:hover {
    background-color: rgb(0, 71.7329545455, 125);
  }
}

/* Mega Menu用調整 */
/* フォーカス時の可視性確保 */
.l-header__nav-link:focus,
.l-header__nav-button:focus,
.c-mobile-menu a:focus,
.c-mobile-menu button:focus {
  outline: 2px solid #005bac; /* ブランドカラー等に合わせて調整してください */
}

/* クリックで開くメガメニュー用 */
.l-header__nav-item.is-open .c-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-header__nav-item.is-open .c-mega-menu::before {
  transform: scaleY(1);
}

.l-header__nav-item.is-open .c-mega-menu__heading,
.l-header__nav-item.is-open .c-mega-menu__column li,
.l-header__nav-item.is-open .c-mega-menu__image {
  opacity: 1;
  transform: translateY(0);
}

.l-footer {
  background: #333;
  color: #ffffff;
  padding: 1.25rem 0 0.75rem;
}
@media (min-width: 64rem) {
  .l-footer {
    padding: 2.75rem 0 0.75rem;
  }
}
.l-footer__logo {
  margin-bottom: 1.25rem;
}
@media (min-width: 64rem) {
  .l-footer__logo {
    margin-bottom: 2.5rem;
  }
}
.l-footer__logo img {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.l-footer__description {
  color: #f3f4f6;
  font-size: 0.875rem;
  max-width: 24rem;
  margin-bottom: 3rem;
}
.l-footer__nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}
@media (min-width: 64rem) {
  .l-footer__nav {
    flex-direction: row;
    gap: 0;
  }
}
.l-footer__nav-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .l-footer__nav-list {
    gap: 1.875rem;
    flex-direction: row;
    justify-content: center;
  }
}
.l-footer__nav-link {
  color: #f3f4f6;
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-link:hover {
    border-color: currentColor;
  }
}
.l-footer__nav-button {
  width: 100%;
  text-align: center;
}
@media (min-width: 64rem) {
  .l-footer__nav-button {
    width: fit-content;
  }
}
.l-footer__nav-button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0.3125rem 1.25rem;
  background-color: #0065b0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.125rem;
  line-height: 1.3125rem;
  letter-spacing: 0.08em;
  width: 100%;
  max-width: 22.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-button-link:hover {
    background-color: rgb(0, 71.7329545455, 125);
  }
}
@media (min-width: 64rem) {
  .l-footer__nav-button-link {
    width: fit-content;
  }
}
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #6b7280;
  padding-top: 0.8125rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 64rem) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-footer__copyright {
  color: #e5e7eb;
  text-align: center;
  font-size: 0.75rem;
}
.l-footer__note {
  color: #e5e7eb;
  font-size: 0.75rem;
  text-align: center;
}
.l-footer__note a {
  color: currentColor;
  border-bottom: 1px solid currentColor;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__note a:hover {
    border-color: transparent;
  }
}

.l-container {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.l-container--narrow {
  max-width: 72rem;
}
.l-container--medium {
  max-width: 63rem;
  padding-inline: 1.9375rem;
}
.l-container--small {
  max-width: 54.5rem;
  padding-inline: 1.9375rem;
}
.l-container__inner-gray {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2.25rem 1.375rem;
}
@media (min-width: 30rem) {
  .l-container {
    padding-inline: 1.25rem;
  }
}
@media (min-width: 64rem) {
  .l-container {
    padding-inline: 1.5rem;
  }
}

.l-section {
  padding-block: 4rem 5rem;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .l-section {
    padding-block: 7.5rem 8.125rem;
  }
}
.l-section--bg-gray {
  background: #E9EBEF;
}
.l-section--bg-gray-opacity-60 {
  background: rgba(233, 235, 239, 0.6);
}
.l-section--bg-l-gray {
  background: rgba(217, 217, 217, 0.15);
}
.l-section--bg-grad-blue {
  background: linear-gradient(220.21deg, #0088ED 7.48%, #0082E3 12.53%, #0075CC 29.37%, #006CBC 46.2%, #0066B3 65.57%, #0065B0 91.66%);
}
.l-section--bg-grad-blue-white {
  --_grad-width: calc((1228.11 / 2) / 750 * 100vw);
  --_grad-height: calc((1085.91 / 2) / 750 * 100vw);
  --_grad-pos-x: right calc(((1228.11 / 2) - 492.55) / 750 * 100vw);
  --_grad-pos-y: top calc((667.23 - (1085.91 / 2)) / 750 * 100vw);
  background: radial-gradient(var(--_grad-width) var(--_grad-height) at var(--_grad-pos-x) var(--_grad-pos-y), #0088ED 0%, rgba(54, 161, 240, 0.79) 23%, rgba(188, 224, 250, 0.26) 75%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 48rem) {
  .l-section--bg-grad-blue-white {
    --_grad-width: calc((1419.02 / 2) / 1366 * 100vw);
    --_grad-height: calc((1177.77 / 2) / 1366 * 100vw);
    --_grad-pos-x: right;
    --_grad-pos-y: top;
  }
}
.l-section--cta {
  position: relative;
  padding-block: 2.5rem;
  color: #ffffff;
  min-height: 18.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 48rem) {
  .l-section--cta {
    padding-block: 3.75rem;
    min-height: 28.5rem;
  }
}
.l-section--cta::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(249.61deg, #0088ED 7.48%, #0085E8 10.01%, #0077CF 28.53%, #006DBE 47.89%, #0066B3 68.09%, #0065B0 91.66%);
  opacity: 0.7;
  pointer-events: none;
}
.l-section--cta::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/cta-area_bg.jpg) no-repeat;
  background-size: cover;
  background-position: 58% top;
}
@media (min-width: 48rem) {
  .l-section--cta::after {
    background-position: center 35%;
  }
}
.l-section--cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}
@media (min-width: 48rem) {
  .l-section--cta__inner {
    padding-top: 5rem;
  }
}
.l-section--cta__inner h3 {
  font-size: 2.125rem;
  text-align: center;
  letter-spacing: 0.18em;
}
@media (min-width: 48rem) {
  .l-section--cta__inner h3 {
    font-size: 4rem;
  }
}
.l-section--cta__inner p {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 3.5625rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .l-section--cta__inner p {
    font-size: 1.125rem;
    text-align: left;
  }
}
.l-section--cta__inner a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #ffffff;
}
.l-section--cta__inner a::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
}
.l-section--allow-overflow {
  overflow: visible;
}

.l-page-header {
  padding-block: 2.5rem 3.5rem;
  background: #ffffff;
}
@media (min-width: 48rem) {
  .l-page-header {
    padding-block: 5rem 7.25rem;
  }
}
.l-page-header--separator {
  padding-block: 2.5rem;
  border-bottom: 1px solid #000000;
}
@media (min-width: 48rem) {
  .l-page-header--separator {
    padding-block: 5rem;
  }
}
.l-page-header--article {
  max-width: 61.5rem;
  margin: auto;
  padding: 2.5rem 0;
}
@media (min-width: 48rem) {
  .l-page-header--article {
    padding: 7.9375rem 0 6.625rem;
  }
}
.l-page-header--article .l-page-header__title {
  text-align: center;
}
.l-page-header--interview {
  max-width: 60.25rem;
  margin: auto;
  padding: 2.5rem 0;
}
@media (min-width: 48rem) {
  .l-page-header--interview {
    padding: 4rem 0 9rem;
  }
}
.l-page-header--interview span {
  display: inline-block;
  font-size: 1.25rem;
  color: #0065b0;
  font-weight: 600;
  line-height: 3.8;
}
.l-page-header__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .l-page-header__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 1.5rem;
  }
}
.l-page-header__heading-whith-image {
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .l-page-header__heading-whith-image {
    margin-bottom: 0;
  }
}
.l-page-header__image {
  width: 8.5rem;
}
@media (min-width: 48rem) {
  .l-page-header__image {
    width: 10.5rem;
    margin-bottom: 0;
  }
}

.l-animated-background-wrapper {
  background-color: hsl(204, 0%, 100%);
  background-image: radial-gradient(circle at 0% 0%, hsla(296, 77%, 84%, 0.35) 3%, transparent 40%), radial-gradient(circle at 20% 100%, hsla(237, 77%, 84%, 0.35) 3%, transparent 40%), radial-gradient(circle at 80% 0%, hsla(187, 77%, 84%, 0.35) 3%, transparent 40%), radial-gradient(circle at 100% 100%, hsla(127, 77%, 84%, 0.35) 3%, transparent 40%), radial-gradient(circle at 50% 50%, hsla(62, 77%, 84%, 0.35) 3%, transparent 40%);
  background-size: 400% 400%;
  animation: gradientBG 20s ease-in-out infinite;
}

.l-content {
  max-width: 56.25rem;
  margin: 0 auto;
}
.l-content--large {
  max-width: 60rem;
  margin: 0 auto;
}
.l-content--medium {
  max-width: 50rem;
  margin: 0 auto;
}
.l-content--pillar {
  position: relative;
  z-index: 2;
}

.content-wrapper {
  max-width: 56.25rem;
  margin: 0 auto;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.c-button {
  --button-color-primary: #ffffff;
  --button-color-secondary: #3d5a6e;
  --button-border-color: transparent;
  width: fit-content;
  min-width: 45.33333vw;
  min-height: 2.25rem;
  padding: 0.25rem 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  color: var(--button-color-primary);
  border: 1px solid var(--button-border-color);
  border-radius: 0.125rem;
  transition: all 0.2s ease-in-out;
  background-color: var(--button-color-secondary);
  cursor: pointer;
}
@media (min-width: 48rem) {
  .c-button {
    min-width: 16.875rem;
    min-height: 3.25rem;
    padding-inline: 1rem;
    font-size: 1rem;
  }
}
.c-button__text {
  flex: 1;
}
.c-button::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
}
.c-button[target=_blank]::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgNi43OTAwNFYxNEgxNS42NTA0VjE1SDNWNi43OTAwNEg0Wk0xNy41IDVWMTIuMTY5OUg1LjkxMDE2VjVIMTcuNVpNNi45MTAxNiAxMS4xNjk5SDE2LjVWNkg2LjkxMDE2VjExLjE2OTlaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
}
.c-button--secondary {
  font-size: 0.75rem;
}
@media (min-width: 48rem) {
  .c-button--secondary {
    font-size: 0.875rem;
  }
}
.c-button--muted {
  --button-color-secondary: #3d5a6e;
  --button-border-color: rgba(61, 90, 110, 0.15);
  color: var(--button-color-secondary);
  border-color: var(--button-border-color);
  background-color: transparent;
  font-weight: 500;
}
@media (min-width: 48rem) {
  .c-button--muted {
    gap: 3.125rem;
  }
}
.c-button--anchor::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEwLjUwNDggMTUuNjE1NkwxMC40OTUgMTUuNzE2MkMxMC40NDg1IDE1Ljk0NDIgMTAuMjQ2NSAxNi4xMTU2IDEwLjAwNDggMTYuMTE1NkM5Ljc2MzA1IDE2LjExNTYgOS41NjEwNiAxNS45NDQyIDkuNTE0NTMgMTUuNzE2Mkw5LjUwNDc3IDE1LjYxNTZMOS41MDQ3NyAzLjYxNTZDOS41MDQ3NyAzLjMzOTQ2IDkuNzI4NjIgMy4xMTU2IDEwLjAwNDggMy4xMTU2QzEwLjI4MDkgMy4xMTU2IDEwLjUwNDggMy4zMzk0NiAxMC41MDQ4IDMuNjE1NkwxMC41MDQ4IDE1LjYxNTZaIiBmaWxsPSIjMzIzRTRDIi8+PHBhdGggZD0iTTE0Ljk3MjQgMTEuNjQ5NEMxNS4xNjU3IDExLjg0NjQgMTUuMTYzMiAxMi4xNjMgMTQuOTY2NiAxMi4zNTY1TDEwLjM1MDMgMTYuODg2OEMxMC4xNTU5IDE3LjA3NzMgOS44NDQ1NSAxNy4wNzczIDkuNjUwMTUgMTYuODg2OEw1LjAzMzkzIDEyLjM1NjVDNC44MzcyOCAxMi4xNjMgNC44MzQ4MSAxMS44NDY0IDUuMDI4MDcgMTEuNjQ5NEM1LjIyMTUyIDExLjQ1MjcgNS41MzgxNCAxMS40NTAzIDUuNzM1MTEgMTEuNjQzNkwxMC4wMDA3IDE1LjgyOTFMMTQuMjY1NCAxMS42NDM2QzE0LjQ2MjMgMTEuNDUwMyAxNC43NzkgMTEuNDUyOCAxNC45NzI0IDExLjY0OTRaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
}
.c-button--back {
  flex-direction: row-reverse;
  font-weight: 700;
  color: var(--button-color-primary);
  border-color: var(--button-color-secondary);
  background-color: var(--button-color-primary);
}
.c-button--back::after {
  transform: rotateZ(180deg);
}
.c-button--submit {
  font-weight: 700;
  color: var(--button-color-primary);
  background-color: var(--button-color-secondary);
}
.c-button--line {
  color: #ffffff;
  background-color: #25D366;
}
.c-button--full {
  width: 100%;
  max-width: none;
}
@media (max-width: 47.9375rem) {
  .c-button--sp-full {
    width: 100%;
    min-width: 45.33333vw;
    max-width: none;
  }
}
.c-button--white {
  --button-color-primary: #3d5a6e;
  --button-color-secondary: #ffffff;
  --button-border-color: #ffffff;
}
.c-button--blue {
  --button-color-secondary: #0065b0;
  --button-border-color: #0065b0;
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: 0.7;
  }
}

.c-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .c-button-group {
    gap: 2.5rem;
  }
}

.c-button-link-group {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 30rem) {
  .c-button-link-group {
    margin: 0;
    align-items: center;
    gap: 6%;
  }
}

.c-button-block {
  border-radius: 0.25rem;
  background-color: rgba(140, 150, 160, 0.1);
}
.c-button-block__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  padding: 1rem 2.5rem 1rem 1.5rem;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .c-button-block__link {
    padding-inline: 2rem 2.5rem;
  }
}
.c-button-block__link::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #8c96a0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1rem;
}
@media (min-width: 48rem) {
  .c-button-block__link::after {
    right: 1.5rem;
  }
}
.c-button-block__link:has(.c-button-block__text) {
  padding-inline: 1.5rem;
  padding-bottom: 2rem;
}
.c-button-block__link:has(.c-button-block__text)::after {
  top: auto;
  bottom: 0.5rem;
}
@media (min-width: 48rem) {
  .c-button-block__link:has(.c-button-block__text)::after {
    bottom: 1.5rem;
  }
}
@media (min-width: 48rem) {
  .c-button-block__link:has(.c-button-block__text) {
    padding-bottom: 3.3125rem;
  }
}
.c-button-block__title {
  color: #3d5a6e;
  font-size: 0.875rem;
  font-weight: 700;
}
.c-button-block__text {
  font-size: 0.875rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-button-block__link:hover {
    opacity: 0.8;
  }
}

.c-button-top {
  position: fixed;
  bottom: 0.5rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  background: #0065b0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
@media (min-width: 30rem) {
  .c-button-top {
    bottom: 1rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 48rem) {
  .c-button-top {
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
.c-button-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .c-button-top:hover {
    background: rgb(0, 71.7329545455, 125);
    transform: translateY(-5px);
  }
}

.c-button-filter {
  max-width: 43.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3125rem;
}
@media (min-width: 48rem) {
  .c-button-filter {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}
.c-button-filter__item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 4.375rem;
  font-size: 0.625rem;
  font-weight: bold;
  padding: 0.3125rem;
  letter-spacing: 0.1em;
  border: 1px solid #E9EBEF;
  border-radius: 0.25rem;
  color: #3d5a6e;
}
@media (min-width: 48rem) {
  .c-button-filter__item {
    min-width: 5rem;
    font-size: 0.875rem;
    padding: 0.3125rem 0.625rem 0.0625rem;
  }
}
.c-button-filter__item.active {
  background-color: #0065b0;
  color: #ffffff;
}

.c-flex {
  display: flex;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .c-flex {
    gap: 1.5rem;
  }
}
.c-flex--wrap {
  flex-wrap: wrap;
}
.c-flex--no-wrap {
  flex-wrap: nowrap;
}
.c-flex--justify-start {
  justify-content: flex-start;
}
.c-flex--justify-end {
  justify-content: flex-end;
}
.c-flex--justify-center {
  justify-content: center;
}
.c-flex--justify-between {
  justify-content: space-between;
}
.c-flex--justify-around {
  justify-content: space-around;
}
.c-flex--justify-evenly {
  justify-content: space-evenly;
}
.c-flex--align-start {
  align-items: flex-start;
}
.c-flex--align-end {
  align-items: flex-end;
}
.c-flex--align-center {
  align-items: center;
}
.c-flex--align-baseline {
  align-items: baseline;
}
.c-flex--align-stretch {
  align-items: stretch;
}
.c-flex--direction-row {
  flex-direction: row;
}
.c-flex--direction-row-reverse {
  flex-direction: row-reverse;
}
.c-flex--direction-column {
  flex-direction: column;
}
.c-flex--direction-column-reverse {
  flex-direction: column-reverse;
}
.c-flex--gap-8 {
  gap: 0.5rem;
}
@media (max-width: 29.9375rem) {
  .c-flex--mob-direction-column {
    flex-direction: column;
  }
  .c-flex--mob-align-center {
    align-items: center;
  }
}

.c-radio,
.c-checkbox {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.c-radio--vertical,
.c-checkbox--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.c-radio--vertical-center,
.c-checkbox--vertical-center {
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.c-radio__label,
.c-checkbox__label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .c-radio__label,
  .c-checkbox__label {
    font-size: 1rem;
  }
}

.c-input {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (min-width: 48rem) {
  .c-input {
    flex-direction: row;
    column-gap: 2.5rem;
  }
}
fieldset .c-input .c-input__label {
  margin-bottom: 0.5rem;
}
.c-input__label {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: #3d5a6e;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 48rem) {
  .c-input__label {
    width: 15.4375rem;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
  }
}
.c-input__name {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 48rem) {
  .c-input__name {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .c-input__name .c-input__text {
    width: 17rem;
  }
}
.c-input__text {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.c-input__text::placeholder {
  color: rgba(61, 90, 110, 0.5);
}
.c-input__text:focus {
  outline: none;
  border-color: #0065b0;
  box-shadow: 0 0 0 3px rgba(0, 91, 171, 0.2);
}

.c-textarea {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (min-width: 48rem) {
  .c-textarea {
    flex-direction: row;
    column-gap: 2.5rem;
  }
}
.c-textarea__label {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: #3d5a6e;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 48rem) {
  .c-textarea__label {
    width: 15.4375rem;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
  }
}
.c-textarea__text {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.c-textarea__text::placeholder {
  color: rgba(61, 90, 110, 0.5);
}
.c-textarea__text:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 91, 171, 0.2);
}

.c-select {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (min-width: 48rem) {
  .c-select {
    flex-direction: row;
    align-items: center;
    column-gap: 2.5rem;
  }
}
.c-select__label {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: #3d5a6e;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 48rem) {
  .c-select__label {
    width: 15.4375rem;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
  }
}
.c-select__dropdown {
  position: relative;
}
.c-select__dropdown::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  display: block;
  content: "";
  width: 0.4375rem;
  height: 0.25rem;
  background: #3d5a6e;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEwLjUwNDggMTUuNjE1NkwxMC40OTUgMTUuNzE2MkMxMC40NDg1IDE1Ljk0NDIgMTAuMjQ2NSAxNi4xMTU2IDEwLjAwNDggMTYuMTE1NkM5Ljc2MzA1IDE2LjExNTYgOS41NjEwNiAxNS45NDQyIDkuNTE0NTMgMTUuNzE2Mkw5LjUwNDc3IDE1LjYxNTZMOS41MDQ3NyAzLjYxNTZDOS41MDQ3NyAzLjMzOTQ2IDkuNzI4NjIgMy4xMTU2IDEwLjAwNDggMy4xMTU2QzEwLjI4MDkgMy4xMTU2IDEwLjUwNDggMy4zMzk0NiAxMC41MDQ4IDMuNjE1NkwxMC41MDQ4IDE1LjYxNTZaIiBmaWxsPSIjMzIzRTRDIi8+PHBhdGggZD0iTTE0Ljk3MjQgMTEuNjQ5NEMxNS4xNjU3IDExLjg0NjQgMTUuMTYzMiAxMi4xNjMgMTQuOTY2NiAxMi4zNTY1TDEwLjM1MDMgMTYuODg2OEMxMC4xNTU5IDE3LjA3NzMgOS44NDQ1NSAxNy4wNzczIDkuNjUwMTUgMTYuODg2OEw1LjAzMzkzIDEyLjM1NjVDNC44MzcyOCAxMi4xNjMgNC44MzQ4MSAxMS44NDY0IDUuMDI4MDcgMTEuNjQ5NEM1LjIyMTUyIDExLjQ1MjcgNS41MzgxNCAxMS40NTAzIDUuNzM1MTEgMTEuNjQzNkwxMC4wMDA3IDE1LjgyOTFMMTQuMjY1NCAxMS42NDM2QzE0LjQ2MjMgMTEuNDUwMyAxNC43NzkgMTEuNDUyOCAxNC45NzI0IDExLjY0OTRaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  pointer-events: none;
}
.c-select__options {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #ffffff;
}
@media (min-width: 48rem) {
  .c-select__options {
    min-width: 17rem;
  }
}
.c-select__options:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 91, 171, 0.2);
}

.c-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .c-grid {
    gap: 1.5rem;
  }
}
.c-grid--align-center {
  align-items: center;
}
.c-grid--justify-items-start {
  justify-items: start;
}
.c-grid--justify-items-end {
  justify-items: end;
}
.c-grid--nogap {
  gap: 0;
}
@media (max-width: 29.9375rem) {
  .c-grid--mob-nogap {
    gap: 0;
  }
}
.c-grid--col-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 30rem) {
  .c-grid--col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-grid--col-2-up_md {
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .c-grid--col-2-up_md {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-grid--col-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 30rem) {
  .c-grid--col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 48rem) {
  .c-grid--col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-grid--col-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 30rem) {
  .c-grid--col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 48rem) {
  .c-grid--col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 64rem) {
  .c-grid--col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-grid--gap-30 {
  gap: 1.875rem;
}
.c-grid__item {
  order: initial;
}
.c-grid__item--order-1 {
  order: 1;
}
.c-grid__item--order-2 {
  order: 2;
}

.c-label {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  font-weight: 700;
}
.c-label--wide {
  width: 100%;
}
.c-label--blue {
  background-color: #0065b0;
  color: #ffffff;
}
.c-label--light-blue {
  background-color: #cfe3ff;
}
.c-label--gray {
  background-color: #e5e7eb;
}
.c-label__number {
  font-size: 1.2em;
}
.c-label--required {
  padding: 0.3125rem 0.6875rem 0.1875rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  background-color: #0065b0;
}
.c-label--optional {
  padding: 0.25rem 0.625rem 0.125rem;
  color: #323d4b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  border: 1px solid #323d4b;
  background-color: #ffffff;
}

.c-link {
  font-size: 0.8125rem;
  color: #0065b0;
  border-bottom: 1px solid currentColor;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-link:hover {
    border-color: transparent;
  }
}
@media (min-width: 48rem) {
  .c-link {
    font-size: 1rem;
  }
}
.c-link--noborder {
  border: none;
}
.c-link--icon::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: text-top;
  width: 1rem;
  height: 1rem;
  vertical-align: baseline;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
}
.c-link--icon[target=_blank]::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgNi43OTAwNFYxNEgxNS42NTA0VjE1SDNWNi43OTAwNEg0Wk0xNy41IDVWMTIuMTY5OUg1LjkxMDE2VjVIMTcuNVpNNi45MTAxNiAxMS4xNjk5SDE2LjVWNkg2LjkxMDE2VjExLjE2OTlaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
}
.c-link--pdf {
  color: inherit;
  border-color: transparent;
}
.c-link--pdf::before {
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: text-bottom;
  width: 1.25rem;
  height: 1.25rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEzLjAxOTUgMS4wMDgzN0MxMy4wOTk4IDEuMDI0NjkgMTMuMTc0IDEuMDY1MjMgMTMuMjMyNyAxLjEyNTU1TDE3LjgwNzkgNS44MjEyQzE3LjkwODYgNS44OTkyMiAxNy45NzQ1IDYuMDIyMjUgMTcuOTc0OCA2LjE2MTg3TDE4IDE3LjY4NzZMMTcuOTkzNSAxNy44MTk4QzE3LjkyOTIgMTguNDY2MyAxNy4zOTYzIDE4Ljk3NDEgMTYuNzUwOCAxOC45NzQxTDE2Ljc1MTYgMTguOTc0OUw0LjI4MzM3IDE5QzMuNTk1MSAxOSAzLjAzMzkxIDE4LjQyMjQgMy4wMzMzNyAxNy43MTUyTDMgMi4zMDQwN0MzLjAwMDA0IDEuNTk2NjcgMy41NjAxIDEuMDE4NzggNC4yNDgzNyAxLjAxODQxTDEyLjkzODIgMUwxMy4wMTk1IDEuMDA4MzdaTTQuMjUgMS44NzQ2OEM0LjAyMzAzIDEuODc0NjggMy44MzMzNyAyLjA2NzU3IDMuODMzMzMgMi4zMDMyM0wzLjg2NjcgMTcuNzEzNUMzLjg2NjggMTcuOTQ4OSA0LjA1NTA3IDE4LjE0MTcgNC4yODE3NCAxOC4xNDIxTDE2Ljc1IDE4LjExNzhDMTYuOTc2NyAxOC4xMTc4IDE3LjE2NjIgMTcuOTI0NSAxNy4xNjY3IDE3LjY4OTJMMTcuMTQxNCA2LjM0ODUyTDEyLjc2NjQgMS44NTcxTDQuMjUgMS44NzQ2OFoiIGZpbGw9IiMzMjNFNEMiLz48cGF0aCBkPSJNMTIuNzk1NyAxLjAzMjY0QzEyLjk1MTQgMC45NjYzMSAxMy4xMzA3IDEuMDAyOTkgMTMuMjQ5OCAxLjEyNTU1TDE3Ljg1MjcgNS44NTk3MUMxNy45NzE4IDUuOTgyMjcgMTguMDA3NSA2LjE2NjY3IDE3Ljk0MyA2LjMyNjc2QzE3Ljg3ODUgNi40ODY3NCAxNy43MjY1IDYuNTkxMjYgMTcuNTU4MSA2LjU5MTI2SDEzLjc4NzhDMTMuMDk1MiA2LjYwMDAyIDEyLjUzODYgNi4wMTY3MSAxMi41Mzg2IDUuMzEzMTRWMS40Mjg1NUMxMi41Mzg2IDEuMjU1MjQgMTIuNjQwMSAxLjA5ODk5IDEyLjc5NTcgMS4wMzI2NFpNMTMuMzcxOSA1LjMxMzE0QzEzLjM3MTkgNS41NTAyNiAxMy41NjAyIDUuNzM4MDQgMTMuNzc5NiA1LjczNDE1SDE2LjU1MjJMMTMuMzcxOSAyLjQ2MzFWNS4zMTMxNFoiIGZpbGw9IiMzMjNFNEMiLz48cGF0aCBkPSJNNy41MDY5MSA4LjQzMjQ5QzcuMzI0OTQgOC4zNTAwOCA3LjEwOTg3IDguMzEzNDUgNi44NyA4LjMxMzQ1SDUuMTgyNkM1LjEyNDcgOC4zMTM0NSA1LjA4MzMzIDguMzY4MzkgNS4wODMzMyA4LjQzMjQ5VjEyLjQ2MTRDNS4wODMzMyAxMi41MjU1IDUuMTMyOTcgMTIuNTcxMiA1LjE5MDg3IDEyLjU3MTJINS44NjkxNEM1LjkyNzA0IDEyLjU3MTIgNS45Njg0IDEyLjUxNjMgNS45Njg0IDEyLjQ1MjJWMTAuOTIzSDYuODdDNy4xMDk4NyAxMC45MjMgNy4zMjQ5NCAxMC44NzcyIDcuNTA2OTEgMTAuNzk0OEM3LjY5NzE2IDEwLjcwMzMgNy44NDYwNSAxMC41NjU5IDcuOTQ1MzEgMTAuMzY0NUM4LjA0NDU3IDEwLjE3MjIgOC4wOTQxOSA5LjkxNTg3IDguMDk0MTkgOS42MDQ1NUM4LjA5NDE5IDkuMjkzMjMgOC4wNDQ1NyA5LjAzNjc4IDcuOTM3MDQgOC44NTM2NUM3LjgzNzc4IDguNjYxMzYgNy42ODg4OCA4LjUxNDkgNy40OTg2MyA4LjQzMjQ5SDcuNTA2OTFaTTUuOTY4NCA5LjIzODI2SDYuNzc5MDFDNi45MTEzNiA5LjIzODI2IDcuMDEwNjEgOS4yNjU3MSA3LjA4NTA1IDkuMzI5ODFDNy4xNTEyMyA5LjM4NDc1IDcuMTg0MzIgOS40NzYyNSA3LjE4NDMyIDkuNjEzNkM3LjE4NDMyIDkuNzUwOTUgNy4xNTEyNCA5Ljg1MTczIDcuMDkzMzMgOS45MDY2N0M3LjAxODg5IDkuOTcwNzcgNi45MTk2MiA5Ljk5ODIxIDYuNzg3MjggOS45OTgyMUg1Ljk3NjY3VjkuMjI5MUw1Ljk2ODQgOS4yMzgyNloiIGZpbGw9IiMzMjNFNEMiLz48cGF0aCBkPSJNMTAuODczNiA4LjUzMzJDMTAuNTkyNCA4LjM4NjY5IDEwLjI2MTYgOC4zMTM0NSA5Ljg5NzYgOC4zMTM0NUg4LjY5ODIzQzguNjQwMzIgOC4zMTM0NSA4LjU5ODk2IDguMzY4MzkgOC41OTg5NiA4LjQzMjQ5VjEyLjQ2MTRDOC41OTg5NiAxMi41MjU1IDguNjQ4NTkgMTIuNTcxMiA4LjcwNjQ5IDEyLjU3MTJIOS45MDU4N0MxMC4yNjk4IDEyLjU3MTIgMTAuNjAwNyAxMi40ODg4IDEwLjg4MTkgMTIuMzQyM0MxMS4xNjMyIDEyLjE4NjcgMTEuMzk0OCAxMS45NDg2IDExLjU1MTkgMTEuNjI4MUMxMS43MDkxIDExLjMxNjggMTEuNzkxOCAxMC45MTM4IDExLjc4MzUgMTAuNDM3N0MxMS43NzUzIDkuOTYxNTcgMTEuNzAwOCA5LjU0OTU5IDExLjU0MzYgOS4yMzgyNkMxMS4zODY1IDguOTI2OTQgMTEuMTU0OSA4LjY4ODg2IDEwLjg3MzYgOC41MzMyWk05LjQ3NTc0IDkuMjI5MUg5Ljg0Nzk4QzEwLjE2MjMgOS4yMjkxIDEwLjQxMDQgOS4zMjA2MSAxMC41OTI0IDkuNTEyODlDMTAuNzc0NCA5LjcwNTE4IDEwLjg2NTQgMTAuMDE2NSAxMC44NjU0IDEwLjQzNzdDMTAuODY1NCAxMC44NTg5IDEwLjc3NDQgMTEuMTYxMSAxMC41OTI0IDExLjM1MzRDMTAuNDAyMiAxMS41NDU2IDEwLjE2MjMgMTEuNjQ2NCA5Ljg0Nzk4IDExLjY0NjRIOS40NzU3NFY5LjIyOTFaIiBmaWxsPSIjMzIzRTRDIi8+PHBhdGggZD0iTTE1LjAwMDUgOC4yOTQ5OUgxMi40Njk0QzEyLjQxMTUgOC4yOTQ5OSAxMi4zNzAxIDguMzQ5OTMgMTIuMzcwMSA4LjQxNDAzVjEyLjQ0MjlDMTIuMzcwMSAxMi41MDcgMTIuNDE5OCAxMi41NTI4IDEyLjQ3NzcgMTIuNTUyOEgxMy4xNTU5QzEzLjIxMzggMTIuNTUyOCAxMy4yNTUyIDEyLjQ5NzggMTMuMjU1MiAxMi40MzM3VjEwLjg0MDVIMTQuODQzM0MxNC45MDEyIDEwLjg0MDUgMTQuOTQyNiAxMC43ODU2IDE0Ljk0MjYgMTAuNzIxNVYxMC4wMjU2QzE0Ljk0MjYgOS45NjE0OSAxNC44OTMgOS45MTU3MSAxNC44MzUxIDkuOTE1NzFIMTMuMjM4NlY5LjIxMDY0SDE0Ljk4MzlDMTUuMDQxOCA5LjIxMDY0IDE1LjA4MzIgOS4xNTU3IDE1LjA4MzIgOS4wOTE2VjguMzk1N0MxNS4wODMyIDguMzMxNiAxNS4wMzM2IDguMjg1ODIgMTQuOTc1NyA4LjI4NTgyTDE1LjAwMDUgOC4yOTQ5OVoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0065b0;
}
@media (hover: hover) and (pointer: fine) {
  .c-link--pdf:hover {
    color: #0065b0;
  }
}

.c-list {
  list-style: none;
}
.c-list:has(.c-list__item) {
  padding-left: 1rem;
  list-style-type: disc;
}
@media (min-width: 48rem) {
  .c-list:has(.c-list__item) {
    padding-left: 1.5rem;
  }
}
.c-list__item {
  margin-bottom: 0.25em;
  font-size: 0.875rem;
}
@media (min-width: 48rem) {
  .c-list__item {
    padding-left: 0.25rem;
    font-size: 1rem;
  }
}
.c-list__item--blue::marker {
  font-size: 0.5em;
  color: #0065b0;
}
.c-list--plain:has(.c-list__item) {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.c-list--plain > .c-list__item {
  padding: 0;
}
.c-list--number {
  list-style: none;
  counter-reset: conf-counter;
}
.c-list--number > .c-list__item {
  counter-increment: conf-counter;
}
.c-list--number > .c-list__item::marker {
  content: counter(conf-counter) ".";
  font-weight: 700;
}
.c-list--bracket {
  list-style: none;
  counter-reset: bracket-counter;
}
.c-list--bracket:has(.c-list__item) {
  padding-left: 1.5rem;
}
@media (min-width: 48rem) {
  .c-list--bracket:has(.c-list__item) {
    padding-left: 2rem;
  }
}
.c-list--bracket > .c-list__item {
  padding-left: 0.5rem;
  counter-increment: bracket-counter;
}
.c-list--bracket > .c-list__item::marker {
  content: "[" counter(bracket-counter) "]";
  margin-right: 0.5rem;
}
.c-list--paren {
  list-style: none;
  counter-reset: paren-counter;
}
.c-list--paren:has(.c-list__item) {
  padding-left: 1.5rem;
}
@media (min-width: 48rem) {
  .c-list--paren:has(.c-list__item) {
    padding-left: 2rem;
  }
}
.c-list--paren > .c-list__item {
  padding-left: 0.5rem;
  counter-increment: paren-counter;
}
.c-list--paren > .c-list__item::marker {
  content: "(" counter(paren-counter) ")";
  margin-right: 0.5rem;
}
.c-list--gothic-parenthesis {
  list-style: none;
  counter-reset: paren-counter;
}
.c-list--gothic-parenthesis:has(.c-list__item) {
  list-style: none;
  padding-left: 0;
}
.c-list--gothic-parenthesis > .c-list__item {
  position: relative;
  padding-left: 3em;
  counter-increment: paren-counter;
}
.c-list--gothic-parenthesis > .c-list__item::before {
  content: "【" counter(paren-counter) "】";
  position: absolute;
  left: 0;
  font-variant-numeric: tabular-nums;
}
.c-list--gothic-parenthesis:has(.c-heading--group) .c-list__item {
  padding-left: 3em;
}
@media (min-width: 48rem) {
  .c-list--gothic-parenthesis:has(.c-heading--group) .c-list__item {
    padding-left: 3.5em;
  }
}
.c-list--gothic-parenthesis:has(.c-heading--group) .c-list__item::before {
  font-size: 0.9375rem;
}
@media (min-width: 48rem) {
  .c-list--gothic-parenthesis:has(.c-heading--group) .c-list__item::before {
    font-size: 1.25rem;
  }
}
.c-list ol.c-list {
  list-style-type: decimal;
}
.c-list ol.c-list li {
  padding-left: 0.5em;
}
.c-list ol.c-list li::marker {
  font-size: 1em;
}
.c-list--pdf {
  padding: 0;
  text-align: left;
}
.c-list--pdf li {
  border-bottom: 1px solid #f3f4f6;
  padding: 0.9375rem 0.625rem;
}
.c-list--pdf li:last-child {
  border-bottom: none;
}
.c-list--pdf a {
  display: block;
  color: #323d4b;
  text-decoration: none;
  position: relative;
  padding-left: 3.75rem;
  /* Adjust padding to make space for the PDF icon */
  line-height: 1.5;
  transition: color 0.2s;
}
.c-list--pdf a::before {
  content: "PDF";
  display: inline-block;
  background: #dc0100;
  /* Red background for PDF icon */
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-list--pdf a:hover {
  color: #0065b0;
  text-decoration: underline;
}
.c-list--service {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-list--service .c-list__item {
  display: flex;
  align-items: flex-start;
  padding: 1.875rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}
.c-list--service .c-list__item:first-child {
  border-top: 1px solid #f3f4f6;
}
.c-list--service .c-list__item:hover {
  background-color: #d1d5db;
}
.c-list--service .c-list__item a {
  text-decoration: none;
  color: #323d4b;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.c-list--service .c-list__item a:hover .c-list__title {
  color: #0065b0;
}
.c-list--service .c-list__item:hover .c-list__thumbnail img {
  transform: scale(1.05);
}
.c-list--service .c-list__thumbnail {
  flex-shrink: 0;
  width: 9.375rem;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-right: 1.875rem;
}
.c-list--service .c-list__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.c-list--service .c-list__content {
  flex-grow: 1;
  text-align: left;
}
.c-list--service .c-list__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.c-list--service .c-list__description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0.625rem;
}
.c-list--service .c-list__link-text {
  font-size: 0.9rem;
  color: #0065b0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  white-space: nowrap;
}
.c-list--service .c-list__link-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
  transition: transform 0.2s ease;
}
@media (min-width: 30rem) {
  .c-list--service .c-list__item a {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
  .c-list--service .c-list__title {
    font-size: 1.5rem;
  }
  .c-list--service .c-list__thumbnail {
    width: 10rem;
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
.c-list--about {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 50rem;
}
.c-list--about li {
  background: #e0f2fe;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.1rem;
}
.c-list--about li strong {
  font-weight: 700;
}
.c-list--master-data {
  list-style: none;
  padding-left: 0;
}
.c-list--master-data li {
  margin-bottom: 0.5rem;
}
.c-list--master-data li span {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  line-height: 1.3;
}
.c-list--tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.c-list--tag span {
  background: #0065b0;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 3.125rem;
  font-weight: 500;
}
.c-list--faq {
  margin-top: 2.5rem;
}
.c-list--faq__item {
  border-bottom: 1px solid #e5e7eb;
}
.c-list--faq__question {
  font-weight: 700;
  padding: 1.25rem;
  padding-left: 3.125rem;
  position: relative;
}
.c-list--faq__question::before {
  content: "Q";
  position: absolute;
  left: 1rem;
  font-size: 1.5rem;
  color: #0065b0;
}
.c-list--faq__answer {
  padding: 0 1.25rem 1.25rem 3.125rem;
  position: relative;
  line-height: 1.8;
}
.c-list--faq__answer::before {
  content: "A";
  position: absolute;
  left: 1rem;
  font-size: 1.5rem;
  color: #0065b0;
}

/* Desktop Navigation (Mega Menu) */
.c-mega-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s 0.2s;
  pointer-events: none;
}
.c-mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.c-mega-menu__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  display: flex;
  gap: 3rem;
  position: relative;
  z-index: 46;
}
@media (min-width: 30rem) {
  .c-mega-menu__inner {
    padding-inline: 1.5rem;
  }
}
.c-mega-menu__heading, .c-mega-menu__column li, .c-mega-menu__image {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.c-mega-menu__image {
  flex: 0 0 18.75rem;
}
.c-mega-menu__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.c-mega-menu__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.c-mega-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}
.c-mega-menu__close:hover .c-mega-menu__close-bar {
  background-color: #004a9a;
}
.c-mega-menu__close-bar {
  position: absolute;
  width: 1.25rem;
  height: 0.125rem;
  background-color: #323d4b;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.c-mega-menu__close-bar:nth-child(1) {
  transform: rotate(45deg);
}
.c-mega-menu__close-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.c-mega-menu__heading {
  font-size: 1rem;
  font-weight: 700;
  flex: 0 0 22.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #0065b0;
}
.c-mega-menu__heading a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease-in-out;
}
.c-mega-menu__heading a::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: text-top;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: baseline;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0065b0;
}
@media (hover: hover) and (pointer: fine) {
  .c-mega-menu__heading a:hover {
    color: #0065b0;
  }
}
.c-mega-menu__columns {
  display: flex;
  gap: 5.625rem;
  flex: 0 0 auto;
}
.c-mega-menu__column ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 13.4375rem;
  list-style: none;
}
.c-mega-menu__column li {
  font-size: 0.875rem;
  font-weight: 500;
}
.c-mega-menu__column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease-in-out;
}
.c-mega-menu__column a::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: baseline;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0065b0;
}
.c-mega-menu__column a[target=_blank]::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgNi43OTAwNFYxNEgxNS42NTA0VjE1SDNWNi43OTAwNEg0Wk0xNy41IDVWMTIuMTY5OUg1LjkxMDE2VjVIMTcuNVpNNi45MTAxNiAxMS4xNjk5SDE2LjVWNkg2LjkxMDE2VjExLjE2OTlaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
}
@media (hover: hover) and (pointer: fine) {
  .c-mega-menu__column a:hover {
    color: #0065b0;
  }
}

/* Mobile Menu */
.c-mobile-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 64rem) {
  .c-mobile-button {
    display: none;
  }
}
.c-mobile-button__bar {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #323d4b;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  height: 100dvh;
  padding: env(safe-area-inset-top) env(safe-area-inset-bottom);
  background: #ffffff;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 64rem) {
  .c-mobile-menu {
    display: none;
  }
}
.c-mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.c-mobile-menu__close {
  position: sticky;
  top: 0;
  margin-block: 0.75rem;
  margin-inline: auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.c-mobile-menu__close-bar {
  position: absolute;
  width: 1.75rem;
  height: 0.0625rem;
  background-color: #323d4b;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.c-mobile-menu__close-bar:nth-child(1) {
  transform: rotate(45deg);
}
.c-mobile-menu__close-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.c-mobile-menu__list {
  list-style: none;
  padding-bottom: 3.75rem;
}
.c-mobile-menu__item {
  border-bottom: 1px solid #E9EBEF;
}
.c-mobile-menu__link-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.625rem 1.875rem;
  background: none;
  border: none;
  text-decoration: none;
  color: #323d4b;
  transition: color 0.2s;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
}
.c-mobile-menu__link-button::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: baseline;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0065b0;
}
.c-mobile-menu__accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.625rem 1.875rem;
  background: none;
  border: none;
  text-decoration: none;
  color: #323d4b;
  transition: color 0.2s;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.c-mobile-menu__accordion-button::after {
  flex-shrink: 0;
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: linear-gradient(#0065b0, #0065b0), linear-gradient(#0065b0, #0065b0);
  background-size: 1rem 0.125rem, 0.125rem 1rem;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease;
}
.c-mobile-menu__accordion-button[aria-expanded=true] {
  border-bottom: 1px solid #E9EBEF;
}
.c-mobile-menu__item.is-open .c-mobile-menu__accordion-button::after {
  background-size: 1rem 0.125rem, 0 0;
}
.c-mobile-menu__arrow {
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid #323d4b;
  border-bottom: 2px solid #323d4b;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.c-mobile-menu__submenu {
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
.c-mobile-menu__submenu li:first-child {
  margin-top: 1.875rem;
}
.c-mobile-menu__submenu li:last-child {
  margin-bottom: 1.875rem;
}
.c-mobile-menu__submenu__link-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.875rem;
  background: none;
  border: none;
  text-decoration: none;
  color: #323d4b;
  transition: color 0.2s;
  text-align: left;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
}
.c-mobile-menu__submenu__link-button::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: baseline;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0065b0;
}
.c-mobile-menu__submenu__link-button[target=_blank]::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgNi43OTAwNFYxNEgxNS42NTA0VjE1SDNWNi43OTAwNEg0Wk0xNy41IDVWMTIuMTY5OUg1LjkxMDE2VjVIMTcuNVpNNi45MTAxNiAxMS4xNjk5SDE2LjVWNkg2LjkxMDE2VjExLjE2OTlaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
}
.c-mobile-menu__button {
  margin-top: 3.125rem;
  padding-inline: 1.875rem;
}
.c-mobile-menu__button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3125rem 1.25rem;
  background-color: #0065b0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.125rem;
  line-height: 1.3125rem;
  letter-spacing: 0.08em;
  width: 100%;
  max-width: 22.5rem;
  text-decoration: none;
}

.c-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (min-width: 64rem) {
  .c-mobile-overlay {
    display: none;
  }
}
.c-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-height: 480px) and (orientation: landscape) {
  .c-mobile-menu__list {
    padding-block: 2.5rem 3rem;
  }
}
/* Removed unused modal component styles (no corresponding markup/scripts). */
/* ==== from _breadcrumb.scss ==== */
.c-breadcrumb {
  padding: 0.4375rem 0;
  font-size: 0.75rem;
  background-color: #E9EBEF;
  white-space: nowrap;
  overflow: auto;
}
@media (min-width: 48rem) {
  .c-breadcrumb {
    overflow: hidden;
    font-size: 0.75rem;
    line-height: 2.333;
  }
}
.c-breadcrumb ol {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.c-breadcrumb li {
  display: flex;
  align-items: center;
}
.c-breadcrumb li + li::before {
  content: ">";
  margin: 0 0.5rem;
  color: #8c96a0;
}
.c-breadcrumb li:last-child {
  color: #323d4b;
  font-weight: 500;
}
.c-breadcrumb a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb a:hover {
    color: #0065b0;
    text-decoration: none;
  }
}

.breadcrumb-nav li + li::before {
  content: ">";
  margin: 0 0.5rem;
  color: #f3f4f6;
}

/* --- pagination --- */
.c-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.c-pagination a,
.c-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.125rem;
  text-decoration: none;
  color: #3d5a6e;
  font-weight: 500;
  transition: all 0.2s;
}
.c-pagination a.next, .c-pagination a.dots,
.c-pagination span.next,
.c-pagination span.dots {
  border: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination a:hover {
    background: rgba(61, 90, 110, 0.15);
    color: white;
    text-decoration: none;
  }
}
.c-pagination .current {
  background: #3d5a6e;
  color: white;
}
.c-pagination .c-icon {
  width: 1.125rem;
}

/* ==== from _pagination.scss ==== */
/* Pagination styles from original style.scss */
/* Removed unused `.c-pagination` styles (HTML未実装). */
/* ==== from _tab.scss ==== */
/* Removed unused `.c-tab` UI styles (HTML未実装). */
.c-tab__header {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  gap: 0;
}
@media (min-width: 48rem) {
  .c-tab__header {
    margin-bottom: 6.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 47.9375rem) {
  .c-tab__header::after {
    content: "";
    position: absolute;
    background-color: #8c96a0;
    height: 0.0625rem;
    inset: 0;
    margin: auto;
  }
}

.c-tab-button {
  --button-color: inherit;
  --button-icon: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-block: 0.625rem;
  padding: 0.1875rem 0.625rem;
  color: var(--button-color);
  font-size: 0.6875rem;
  font-weight: 700;
  background-color: transparent;
  border: none;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .c-tab-button {
    gap: 0.5rem;
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 64rem) {
  .c-tab-button {
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
  }
}
.c-tab-button::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 1.875rem;
  background-image: var(--button-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .c-tab-button::before {
    width: 3.25rem;
    height: 2.25rem;
  }
}
@media (min-width: 64rem) {
  .c-tab-button::before {
    width: 4.0625rem;
    height: 3rem;
  }
}
@media (max-width: 47.9375rem) {
  .c-tab-button:nth-child(odd) {
    border-right: 1px solid #8c96a0;
  }
}
@media (min-width: 48rem) {
  .c-tab-button {
    border-right: 1px solid #8c96a0;
  }
  .c-tab-button:first-child {
    border-left: 1px solid #8c96a0;
  }
}
.c-tab-button--mobility {
  --button-color: #0065b0;
}
.c-tab-button--mobility::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_mobility.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_mobility_hover.png");
}
.c-tab-button--reuse {
  --button-color: #00b4a9;
}
.c-tab-button--reuse::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_reuse.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_reuse_hover.png");
}
.c-tab-button--human {
  --button-color: #CCAA19;
}
.c-tab-button--human::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_human.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_human_hover.png");
}
.c-tab-button--estate {
  --button-color: #785F41;
}
.c-tab-button--estate::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_estate.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_estate_hover.png");
}
.c-tab-button--sports {
  --button-color: #AA5F19;
}
.c-tab-button--sports::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_sports.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_sports_hover.png");
}
.c-tab-button--agriculture {
  --button-color: #0F9154;
}
.c-tab-button--agriculture::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_agriculture.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_agriculture_hover.png");
}
.c-tab-button--regional {
  --button-color: #D796A0;
}
.c-tab-button--regional::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_regional.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_regional_hover.png");
}
.c-tab-button--education {
  --button-color: #1B3C9B;
}
.c-tab-button--education::before {
  --button-icon: url("/wp-content/themes/proto/assets/images/common/icon_education.png");
  --button-hover-icon: url("/wp-content/themes/proto/assets/images/common/icon_education_hover.png");
}
.c-tab-button.is-active {
  color: #ffffff;
  background-color: var(--button-color);
}
.c-tab-button.is-active::before {
  background-image: var(--button-hover-icon);
}
@media (hover: hover) and (pointer: fine) {
  .c-tab-button:hover {
    color: #ffffff;
    background-color: var(--button-color);
  }
  .c-tab-button:hover::before {
    background-image: var(--button-hover-icon);
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  text-align: left;
  border: 1px solid #e5e7eb;
  word-break: break-all;
  overflow-wrap: anywhere;
}
@media (min-width: 48rem) {
  .c-table th,
  .c-table td {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
.c-table th {
  width: 25%;
  color: #323d4b;
}
.c-table td {
  background: #ffffff;
}
.c-table--definition {
  display: block;
  margin: 1.5rem 0;
}
.c-table--definition {
  width: 100%;
  max-width: 50rem;
  margin: 1.5rem auto;
  border-collapse: collapse;
}
.c-table--definition th,
.c-table--definition td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem;
  text-align: left;
}
.c-table--definition th {
  font-weight: 700;
  width: 30%;
}
.c-table--definition td span {
  font-size: 0.9em;
  margin-left: 0.5rem;
}
.c-table--definition .note {
  text-align: left;
  background-color: #ffffff;
}
.c-table--plan th {
  background-color: #0065b0;
  color: #ffffff;
}
.c-table--plan td:first-child {
  width: 1%;
  font-weight: 700;
  white-space: nowrap;
}
.c-table--outline tr {
  border-bottom: 1px solid #323d4b;
}
.c-table--outline tr:last-child {
  border: none;
}
.c-table--outline th,
.c-table--outline td {
  display: block;
  border: none;
}
@media (min-width: 48rem) {
  .c-table--outline th,
  .c-table--outline td {
    display: table-cell;
  }
}
.c-table--outline th {
  width: 100%;
  padding: 1.5rem 0 0;
  color: #3D5A6E;
  font-size: 0.875rem;
  vertical-align: top;
}
@media (min-width: 48rem) {
  .c-table--outline th {
    width: 14%;
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
}
.c-table--outline td {
  padding: 1rem 0;
  vertical-align: top;
  font-size: 0.8125rem;
}
@media (min-width: 48rem) {
  .c-table--outline td {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
}
.c-table--outline dl dt {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 48rem) {
  .c-table--outline dl dt {
    font-size: 1rem;
  }
}
.c-table--outline dl dd {
  font-size: 0.8125rem;
}
@media (min-width: 48rem) {
  .c-table--outline dl dd {
    font-size: 1rem;
  }
}
.c-table--outline dl dd + dt {
  margin-top: 0.75rem;
}
.c-table--outline__annotation {
  font-size: 0.75rem;
}
.c-table__group-title {
  padding: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.c-table__annotation {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
.c-table__subtable {
  width: 100%;
}
.c-table__subtable th,
.c-table__subtable td {
  border: none;
  padding: 0.25rem 0;
}
.c-table__subtable th {
  background: none;
  width: auto;
}
.c-table--financial {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.9375rem;
  background-color: #ffffff;
}
.c-table--financial th,
.c-table--financial td {
  border: 1px solid #e5e7eb;
  padding: 0.625rem;
  font-size: 0.9rem;
}
.c-table--financial thead th {
  background-color: rgba(217, 217, 217, 0.15);
  color: #3D5A6E;
  font-weight: 700;
  text-align: center;
}
.c-table--financial tbody th {
  background-color: rgba(217, 217, 217, 0.15);
  color: #3D5A6E;
  font-weight: 700;
  text-align: left;
}
.c-table--financial th {
  width: auto;
}
.c-table--financial td {
  text-align: right;
}
.c-table--financial .c-text--footnote {
  font-size: 0.875rem;
  color: #888;
}

.c-table-container {
  overflow-x: auto;
  margin-top: 1.25rem;
}

.c-table-wrap {
  overflow: hidden;
}

.c-table--officers .c-table__group-title {
  background-color: #0065b0;
  color: #ffffff;
  border-bottom: 1px solid #004a9a;
}

/* Timeline styles from original style.scss */
.c-timeline {
  display: flex;
  justify-content: space-between;
  max-width: 56.25rem;
  margin: 0 auto 1.5rem;
  position: relative;
}
.c-timeline::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #005bab;
}
.c-timeline__item {
  text-align: center;
  width: 18%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.c-timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.c-timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  border: 4px solid #005bab;
  border-radius: 50%;
  z-index: 1;
}
.c-timeline__year {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 2rem;
}
@media (max-width: 47.9375rem) {
  .c-timeline__year {
    font-weight: 500;
    font-size: 1rem;
  }
}
.c-timeline__event {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}
.c-timeline + .c-text {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 2.5rem;
}
.c-timeline--vertical-container {
  max-width: 56.25rem;
  margin: 2.5rem auto 0 auto;
}
.c-timeline--vertical-container .c-timeline--vertical {
  position: relative;
  padding-left: 2.875rem;
  border-left: 3px solid #e9ecef;
}
.c-timeline--vertical-container .c-timeline--vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.1875rem;
  width: 0.1875rem;
  height: 0.9375rem;
  background-color: #ffffff;
  z-index: 2;
}
.c-timeline--vertical-container .c-timeline--vertical__item {
  position: relative;
  margin-bottom: 3.125rem;
}
.c-timeline--vertical-container .c-timeline--vertical__item:last-child {
  margin-bottom: 0;
}
.c-timeline--vertical-container .c-timeline--vertical__item::before {
  content: "";
  position: absolute;
  left: -3.84375rem;
  top: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #005bab;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px #005bab;
  border-radius: 50%;
  z-index: 3;
}
.c-timeline--vertical-container .c-timeline--vertical__year {
  font-size: 1.8rem;
  font-weight: 700;
  color: #005bab;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.c-timeline--vertical-container .c-timeline--vertical__entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.9375rem;
}
.c-timeline--vertical-container .c-timeline--vertical__month {
  flex-shrink: 0;
  width: 3.125rem;
  font-weight: 700;
  font-size: 1rem;
}
.c-timeline--vertical-container .c-timeline--vertical__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem 0;
}
@media (min-width: 48rem) {
  .c-timeline--vertical-container .c-timeline--vertical__details {
    flex-direction: row;
  }
}
.c-timeline--vertical-container .c-timeline--vertical__category {
  padding: 0.1875rem 0.75rem;
  border-radius: 3.125rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  margin-right: 0.9375rem;
  white-space: nowrap;
}
.c-timeline--vertical-container .c-timeline--vertical__description {
  font-size: 1rem;
  line-height: 1.7;
}
.c-timeline--vertical-container .c-timeline--vertical__cat-business {
  background-color: #6c757d;
}
.c-timeline--vertical-container .c-timeline--vertical__cat-merchandise {
  background-color: #adb5bd;
}
@media (max-width: 47.9375rem) {
  .c-timeline--vertical-container {
    padding-left: 1rem;
  }
  .c-timeline--vertical-container .c-timeline--vertical {
    padding-left: 1.5625rem;
  }
  .c-timeline--vertical-container .c-timeline--vertical__item::before {
    left: -2.40625rem;
  }
  .c-timeline--vertical-container .c-timeline--vertical__year {
    font-size: 1.5rem;
  }
  .c-timeline--vertical-container .c-timeline--vertical__month {
    margin-bottom: 0.5rem;
  }
}

.c-heading {
  color: #3d5a6e;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.c-heading--lv1 {
  font-size: 1.3125rem;
}
@media (min-width: 48rem) {
  .c-heading--lv1 {
    font-size: 2.5rem;
  }
}
.c-heading--hero {
  font-size: 1.3125rem;
}
@media (min-width: 48rem) {
  .c-heading--hero {
    font-size: 2.5rem;
  }
}
.c-heading--section {
  font-size: 1.1875rem;
}
@media (min-width: 48rem) {
  .c-heading--section {
    font-size: 1.875rem;
  }
}
.c-heading--block {
  font-size: 1.0625rem;
}
@media (min-width: 48rem) {
  .c-heading--block {
    font-size: 1.5rem;
  }
}
.c-heading--group {
  font-size: 0.9375rem;
}
@media (min-width: 48rem) {
  .c-heading--group {
    font-size: 1.25rem;
  }
}
.c-heading--item {
  font-size: 0.8125rem;
}
@media (min-width: 48rem) {
  .c-heading--item {
    font-size: 1rem;
  }
}
.c-heading--subtitle {
  font-size: 0.6875rem;
}
@media (min-width: 48rem) {
  .c-heading--subtitle {
    font-size: 0.75rem;
  }
}
.c-heading--hero-en {
  color: #3d5a6e;
  font-family: "DM Sans", "Hiragino Sans", "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  font-size: 2.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
  word-break: break-word;
}
@media (min-width: 48rem) {
  .c-heading--hero-en {
    font-size: 5.9375rem;
  }
}
.c-heading--section-en {
  color: #3d5a6e;
  font-family: "DM Sans", "Hiragino Sans", "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: -0.02em;
  word-break: break-word;
}
@media (min-width: 48rem) {
  .c-heading--section-en {
    font-size: 2.5rem;
  }
}
.c-heading--block-en {
  color: #3d5a6e;
  font-family: "DM Sans", "Hiragino Sans", "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.02em;
  word-break: break-word;
}
@media (min-width: 48rem) {
  .c-heading--block-en {
    font-size: 1.75rem;
  }
}
@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .c-heading--hero-en, .c-heading--section-en, .c-heading--block-en {
    font-weight: 500;
  }
}
.c-heading--line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.c-heading--line::after {
  content: "";
  flex-grow: 1;
  width: auto;
  height: 0.0625rem;
  display: block;
  background: currentColor;
}
@media (min-width: 48rem) {
  .c-heading--line {
    gap: 2rem;
  }
}
.c-heading--line-accent {
  position: relative;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
}
.c-heading--line-accent::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 2.25rem;
  height: 0.0625rem;
  background-color: currentColor;
}
@media (min-width: 48rem) {
  .c-heading--line-accent {
    font-size: 2.5rem;
    letter-spacing: 0.18em;
  }
  .c-heading--line-accent::after {
    width: 4rem;
    height: 0.125rem;
  }
}
.c-heading--home-section {
  font-size: 1.875rem;
}
@media (min-width: 48rem) {
  .c-heading--home-section {
    font-size: 4rem;
  }
}
.c-heading--home-subsection {
  color: #3D5A6E;
  font-size: 1.0625rem;
}
@media (min-width: 48rem) {
  .c-heading--home-subsection {
    font-size: 1.875rem;
  }
}

.c-text {
  font-size: 0.8125rem;
}
.c-text:not(:last-of-type) {
  margin-bottom: 1.25rem;
}
.c-text--small {
  font-size: 0.75rem;
}
@media (min-width: 48rem) {
  .c-text {
    font-size: 1rem;
  }
  .c-text--small {
    font-size: 0.875rem;
  }
}

.c-summary {
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 48rem) {
  .c-summary {
    font-size: 0.875rem;
  }
}

.c-lead {
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 48rem) {
  .c-lead {
    font-size: 1.125rem;
  }
}

.c-note {
  font-size: 0.6875rem;
  font-weight: 400;
}
@media (min-width: 48rem) {
  .c-note {
    font-size: 0.75rem;
  }
}

.c-scroll-guide {
  color: #0065B0;
  display: grid;
  justify-items: center;
  row-gap: 1.875rem;
  padding-bottom: 0.1875rem;
}
.c-scroll-guide__text {
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.c-scroll-guide__line {
  height: 15.3125rem;
  width: 0.0625rem;
  background-color: currentColor;
  position: relative;
}
.c-scroll-guide__dot {
  width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  top: 0;
  left: calc(50% - 0.1875rem);
  translate: 0 -3px;
  animation: scroll-dot-move 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scroll-dot-move {
  0% {
    top: 0;
    scale: 0;
  }
  20% {
    top: 0;
    scale: 1;
  }
  80% {
    top: 100%;
    scale: 1;
  }
  100% {
    top: 100%;
    scale: 0;
  }
}
.p-hero__inner {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 48rem) {
  .p-hero__inner {
    flex-direction: row;
    position: relative;
  }
}
.p-hero__content {
  z-index: 1;
}
@media (min-width: 48rem) {
  .p-hero__content {
    width: 52.4305555556%;
    max-width: 32.5rem;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    paint-order: stroke;
  }
}
.p-hero__header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .p-hero__header {
    margin-bottom: 2.5rem;
    gap: 1.75rem;
  }
}
.p-hero__heading {
  color: #3d5a6e;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 48rem) {
  .p-hero__heading {
    font-size: 3.75rem;
    line-height: 1.3;
  }
}
.p-hero__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .p-hero__body {
    gap: 2rem;
  }
}
.p-hero__body h2 {
  letter-spacing: 0.05em;
}
.p-hero__image img {
  width: 100%;
  height: auto;
}
@media (min-width: 48rem) {
  .p-hero__image {
    display: block;
    position: absolute;
    right: 0;
    z-index: 0;
  }
}
@media (min-width: 48rem) {
  .p-hero--noimage .p-hero__content {
    width: 100%;
    max-width: fit-content;
  }
}
.p-hero--product .p-hero__image {
  margin-left: auto;
  width: 86.7605633803%;
}
@media (min-width: 48rem) {
  .p-hero--product .p-hero__image {
    width: 47.4637681159%;
  }
}
.p-hero--mobility .p-hero__image {
  margin-bottom: 2.5625rem;
}
@media (min-width: 48rem) {
  .p-hero--mobility .p-hero__image {
    width: 50%;
    margin-top: 1.3020833333%;
    margin-left: -39.5833333333%;
  }
}
.p-hero--personal .p-hero__header {
  margin-bottom: 0.625rem;
}
.p-hero--personal .p-hero__body {
  gap: 3.75rem;
}
.p-hero--personal .p-hero__image {
  margin-bottom: 2.5625rem;
}
@media (min-width: 48rem) {
  .p-hero--personal .p-hero__image {
    width: 47.5694444444%;
    margin-top: -4.3402777778%;
    margin-left: -39.5833333333%;
  }
}
.p-hero--job .p-hero__image {
  margin: 0 auto 4.375rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .p-hero--job .p-hero__image {
    width: 47.4637681159%;
  }
}
.p-hero--proto .p-hero__heading {
  margin-top: 3.75rem;
}
@media (min-width: 48rem) {
  .p-hero--proto .p-hero__heading {
    margin-top: 0;
  }
}
.p-hero--proto .p-hero__image {
  margin-left: auto;
}
@media (min-width: 48rem) {
  .p-hero--proto .p-hero__image {
    width: 42.2101449275%;
  }
}
.p-hero--sustainability .p-hero__image {
  margin: 0 auto 4.375rem;
  width: 90%;
}
@media (min-width: 48rem) {
  .p-hero--sustainability .p-hero__image {
    top: -2.1875rem;
    width: 41.3949275362%;
  }
}

/* Logo Slider */
:root {
  --proto-logo-width: 220px;
  --proto-logo-height: 120px;
  --proto-logo-gap: 20px;
  --proto-logo-count: 18;
  --proto-logo-speed: 80s;
}

.p-proto-logo-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 0;
  overflow: hidden;
}

/* 左右のフェード */
.p-proto-logo-container {
  position: relative;
}

.p-proto-logo-container::before,
.p-proto-logo-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.p-proto-logo-container::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.p-proto-logo-container::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* ロゴのスタイル */
.p-proto-logo-item {
  padding: 0 10px; /* ロゴ間の余白 */
}

.p-proto-logo-item a,
.p-proto-logo-item .p-proto-logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  aspect-ratio: 336 / 180;
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, .1);
  border-radius: 4px;
  transition: opacity 0.3s ease;
  overflow: hidden;
  margin: 10px 0;
}

.p-proto-logo-item a:hover {
  opacity: 0.7;
}

.p-proto-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* スマホ表示（768px以下） */
@media (max-width: 768px) {
  :root {
    --proto-logo-width: 140px;
    --proto-logo-height: 80px;
    --proto-logo-gap: 10px;
    --proto-logo-speed: 80s;
  }
  
  .p-proto-logo-section {
    padding: 40px 0 0;
  }

  .p-proto-logo-item a,
  .p-proto-logo-item .p-proto-logo-image {
    height: 80px;
  }
}

.p-news-card {
  display: grid;
  grid-template-columns: 1fr;
}
.p-news-card__item {
  padding-block: 1rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 1rem;
}
.p-news-card__date {
  font-family: "DM Sans", "Hiragino Sans", "メイリオ", sans-serif;
  color: #8c96a0;
  font-size: 0.75rem;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  margin-bottom: 0.5rem;
}
@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .p-news-card__date {
    font-weight: 500;
  }
}
.p-news-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.p-news-card__title--pdf {
  display: flex;
  gap: 0.25rem;
}
.p-news-card__title--pdf::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEzLjAxOTUgMS4wMDgzN0MxMy4wOTk4IDEuMDI0NjkgMTMuMTc0IDEuMDY1MjMgMTMuMjMyNyAxLjEyNTU1TDE3LjgwNzkgNS44MjEyQzE3LjkwODYgNS44OTkyMiAxNy45NzQ1IDYuMDIyMjUgMTcuOTc0OCA2LjE2MTg3TDE4IDE3LjY4NzZMMTcuOTkzNSAxNy44MTk4QzE3LjkyOTIgMTguNDY2MyAxNy4zOTYzIDE4Ljk3NDEgMTYuNzUwOCAxOC45NzQxTDE2Ljc1MTYgMTguOTc0OUw0LjI4MzM3IDE5QzMuNTk1MSAxOSAzLjAzMzkxIDE4LjQyMjQgMy4wMzMzNyAxNy43MTUyTDMgMi4zMDQwN0MzLjAwMDA0IDEuNTk2NjcgMy41NjAxIDEuMDE4NzggNC4yNDgzNyAxLjAxODQxTDEyLjkzODIgMUwxMy4wMTk1IDEuMDA4MzdaTTQuMjUgMS44NzQ2OEM0LjAyMzAzIDEuODc0NjggMy44MzMzNyAyLjA2NzU3IDMuODMzMzMgMi4zMDMyM0wzLjg2NjcgMTcuNzEzNUMzLjg2NjggMTcuOTQ4OSA0LjA1NTA3IDE4LjE0MTcgNC4yODE3NCAxOC4xNDIxTDE2Ljc1IDE4LjExNzhDMTYuOTc2NyAxOC4xMTc4IDE3LjE2NjIgMTcuOTI0NSAxNy4xNjY3IDE3LjY4OTJMMTcuMTQxNCA2LjM0ODUyTDEyLjc2NjQgMS44NTcxTDQuMjUgMS44NzQ2OFoiIGZpbGw9IiMzMjNFNEMiLz48cGF0aCBkPSJNMTIuNzk1NyAxLjAzMjY0QzEyLjk1MTQgMC45NjYzMSAxMy4xMzA3IDEuMDAyOTkgMTMuMjQ5OCAxLjEyNTU1TDE3Ljg1MjcgNS44NTk3MUMxNy45NzE4IDUuOTgyMjcgMTguMDA3NSA2LjE2NjY3IDE3Ljk0MyA2LjMyNjc2QzE3Ljg3ODUgNi40ODY3NCAxNy43MjY1IDYuNTkxMjYgMTcuNTU4MSA2LjU5MTI2SDEzLjc4NzhDMTMuMDk1MiA2LjYwMDAyIDEyLjUzODYgNi4wMTY3MSAxMi41Mzg2IDUuMzEzMTRWMS40Mjg1NUMxMi41Mzg2IDEuMjU1MjQgMTIuNjQwMSAxLjA5ODk5IDEyLjc5NTcgMS4wMzI2NFpNMTMuMzcxOSA1LjMxMzE0QzEzLjM3MTkgNS41NTAyNiAxMy41NjAyIDUuNzM4MDQgMTMuNzc5NiA1LjczNDE1SDE2LjU1MjJMMTMuMzcxOSAyLjQ2MzFWNS4zMTMxNFoiIGZpbGw9IiMzMjNFNEMiLz48cGF0aCBkPSJNNy41MDY5MSA4LjQzMjQ5QzcuMzI0OTQgOC4zNTAwOCA3LjEwOTg3IDguMzEzNDUgNi44NyA4LjMxMzQ1SDUuMTgyNkM1LjEyNDcgOC4zMTM0NSA1LjA4MzMzIDguMzY4MzkgNS4wODMzMyA4LjQzMjQ5VjEyLjQ2MTRDNS4wODMzMyAxMi41MjU1IDUuMTMyOTcgMTIuNTcxMiA1LjE5MDg3IDEyLjU3MTJINS44NjkxNEM1LjkyNzA0IDEyLjU3MTIgNS45Njg0IDEyLjUxNjMgNS45Njg0IDEyLjQ1MjJWMTAuOTIzSDYuODdDNy4xMDk4NyAxMC45MjMgNy4zMjQ5NCAxMC44NzcyIDcuNTA2OTEgMTAuNzk0OEM3LjY5NzE2IDEwLjcwMzMgNy44NDYwNSAxMC41NjU5IDcuOTQ1MzEgMTAuMzY0NUM4LjA0NDU3IDEwLjE3MjIgOC4wOTQxOSA5LjkxNTg3IDguMDk0MTkgOS42MDQ1NUM4LjA5NDE5IDkuMjkzMjMgOC4wNDQ1NyA5LjAzNjc4IDcuOTM3MDQgOC44NTM2NUM3LjgzNzc4IDguNjYxMzYgNy42ODg4OCA4LjUxNDkgNy40OTg2MyA4LjQzMjQ5SDcuNTA2OTFaTTUuOTY4NCA5LjIzODI2SDYuNzc5MDFDNi45MTEzNiA5LjIzODI2IDcuMDEwNjEgOS4yNjU3MSA3LjA4NTA1IDkuMzI5ODFDNy4xNTEyMyA5LjM4NDc1IDcuMTg0MzIgOS40NzYyNSA3LjE4NDMyIDkuNjEzNkM3LjE4NDMyIDkuNzUwOTUgNy4xNTEyNCA5Ljg1MTczIDcuMDkzMzMgOS45MDY2N0M3LjAxODg5IDkuOTcwNzcgNi45MTk2MiA5Ljk5ODIxIDYuNzg3MjggOS45OTgyMUg1Ljk3NjY3VjkuMjI5MUw1Ljk2ODQgOS4yMzgyNloiIGZpbGw9IiMzMjNFNEMiLz48cGF0aCBkPSJNMTAuODczNiA4LjUzMzJDMTAuNTkyNCA4LjM4NjY5IDEwLjI2MTYgOC4zMTM0NSA5Ljg5NzYgOC4zMTM0NUg4LjY5ODIzQzguNjQwMzIgOC4zMTM0NSA4LjU5ODk2IDguMzY4MzkgOC41OTg5NiA4LjQzMjQ5VjEyLjQ2MTRDOC41OTg5NiAxMi41MjU1IDguNjQ4NTkgMTIuNTcxMiA4LjcwNjQ5IDEyLjU3MTJIOS45MDU4N0MxMC4yNjk4IDEyLjU3MTIgMTAuNjAwNyAxMi40ODg4IDEwLjg4MTkgMTIuMzQyM0MxMS4xNjMyIDEyLjE4NjcgMTEuMzk0OCAxMS45NDg2IDExLjU1MTkgMTEuNjI4MUMxMS43MDkxIDExLjMxNjggMTEuNzkxOCAxMC45MTM4IDExLjc4MzUgMTAuNDM3N0MxMS43NzUzIDkuOTYxNTcgMTEuNzAwOCA5LjU0OTU5IDExLjU0MzYgOS4yMzgyNkMxMS4zODY1IDguOTI2OTQgMTEuMTU0OSA4LjY4ODg2IDEwLjg3MzYgOC41MzMyWk05LjQ3NTc0IDkuMjI5MUg5Ljg0Nzk4QzEwLjE2MjMgOS4yMjkxIDEwLjQxMDQgOS4zMjA2MSAxMC41OTI0IDkuNTEyODlDMTAuNzc0NCA5LjcwNTE4IDEwLjg2NTQgMTAuMDE2NSAxMC44NjU0IDEwLjQzNzdDMTAuODY1NCAxMC44NTg5IDEwLjc3NDQgMTEuMTYxMSAxMC41OTI0IDExLjM1MzRDMTAuNDAyMiAxMS41NDU2IDEwLjE2MjMgMTEuNjQ2NCA5Ljg0Nzk4IDExLjY0NjRIOS40NzU3NFY5LjIyOTFaIiBmaWxsPSIjMzIzRTRDIi8+PHBhdGggZD0iTTE1LjAwMDUgOC4yOTQ5OUgxMi40Njk0QzEyLjQxMTUgOC4yOTQ5OSAxMi4zNzAxIDguMzQ5OTMgMTIuMzcwMSA4LjQxNDAzVjEyLjQ0MjlDMTIuMzcwMSAxMi41MDcgMTIuNDE5OCAxMi41NTI4IDEyLjQ3NzcgMTIuNTUyOEgxMy4xNTU5QzEzLjIxMzggMTIuNTUyOCAxMy4yNTUyIDEyLjQ5NzggMTMuMjU1MiAxMi40MzM3VjEwLjg0MDVIMTQuODQzM0MxNC45MDEyIDEwLjg0MDUgMTQuOTQyNiAxMC43ODU2IDE0Ljk0MjYgMTAuNzIxNVYxMC4wMjU2QzE0Ljk0MjYgOS45NjE0OSAxNC44OTMgOS45MTU3MSAxNC44MzUxIDkuOTE1NzFIMTMuMjM4NlY5LjIxMDY0SDE0Ljk4MzlDMTUuMDQxOCA5LjIxMDY0IDE1LjA4MzIgOS4xNTU3IDE1LjA4MzIgOS4wOTE2VjguMzk1N0MxNS4wODMyIDguMzMxNiAxNS4wMzM2IDguMjg1ODIgMTQuOTc1NyA4LjI4NTgyTDE1LjAwMDUgOC4yOTQ5OVoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0065b0;
  flex-shrink: 0;
}
.p-news-card__label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.p-news-card__label .c-label:empty {
  display: none;
}
.p-news-card__image {
  position: relative;
  aspect-ratio: 300/180;
  border-radius: 0.25rem;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}
.p-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 30rem) {
  .p-news-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-news-card__item {
    padding: 1rem;
  }
}
@media (min-width: 48rem) {
  .p-news-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.625rem;
  }
  .p-news-card__item {
    padding: 0;
    gap: 1.5rem;
  }
  .p-news-card__title {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news-card__item:hover .p-news-card__image img {
    transform: scale(1.05);
  }
}
.p-news-card--framed {
  position: relative;
  gap: 0;
}
.p-news-card--framed-wrap {
  position: relative;
  padding: 6.25rem 0 3.125rem;
}
.p-news-card--framed-wrap::before {
  position: absolute;
  top: 6.25rem;
  left: -0.9375rem;
  z-index: 0;
  content: "";
  display: block;
  width: calc(100vw + 1.875rem);
  height: 0.0625rem;
  background-color: #E9EBEF;
}
.p-news-card--framed-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 0.0625rem;
  height: 100%;
  background-color: #E9EBEF;
}
.p-news-card--framed-heading {
  position: absolute;
  top: 2.125rem;
  left: 0.9375rem;
}
@media (max-width: 200px) {
  .p-news-card--framed-heading {
    top: 1.25rem;
  }
}
.p-news-card--framed-heading-group-top {
  position: absolute;
  top: 3.625rem;
  z-index: 1;
  display: flex;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-inline: 1.25rem;
  gap: 0.9375rem;
}
@media (min-width: 48rem) {
  .p-news-card--framed-heading-group-top {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 200px) {
  .p-news-card--framed-heading-group-top {
    top: 1.25rem;
  }
}
.p-news-card--framed .p-news-card__item {
  position: relative;
  padding: 0.9375rem;
  background-color: transparent;
}
.p-news-card--framed .p-news-card__item::before {
  position: absolute;
  top: -6.25rem;
  right: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 0.0625rem;
  height: calc(100% + 9.375rem);
  background-color: #E9EBEF;
  pointer-events: none;
}
.p-news-card--framed .p-news-card__item::after {
  position: absolute;
  right: -1.875rem;
  bottom: 0;
  z-index: 0;
  content: "";
  display: block;
  width: calc(100vw + 2rem);
  height: 0.0625rem;
  background-color: #E9EBEF;
  pointer-events: none;
}
.p-news-card--framed .p-news-card__item:nth-of-type(3n)::after {
  position: absolute;
  left: -100vw;
  bottom: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 200vw;
  height: 0.0625rem;
  background-color: #E9EBEF;
}
.p-news-card--framed-wrap--low {
  position: relative;
  padding-block: 2rem;
}
.p-news-card--framed-wrap--low::before {
  position: absolute;
  top: 2rem;
  left: -0.9375rem;
  z-index: 0;
  content: "";
  display: block;
  width: 100vw;
  height: 0.0625rem;
  background-color: #E9EBEF;
}
.p-news-card--framed-wrap--low::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 0.0625rem;
  height: 100%;
  background-color: #E9EBEF;
}
.p-news-card--framed-wrap--low .p-news-card__item::after {
  width: 100vw;
  right: -0.9375rem;
}
.p-news-card--framed-wrap--low .p-news-card__item::before {
  height: calc(100% + 3.75rem);
  top: -1.875rem;
}
.p-news-card--framed-wrap--low .p-news-card__item:nth-of-type(3n)::after {
  width: 100vw;
  left: -0.9375rem;
}
.p-news-card--framed-wrap--top {
  position: relative;
  padding: 11.875rem 0 7.5rem;
}
.p-news-card--framed-wrap--top::before {
  position: absolute;
  top: 11.875rem;
  left: -0.9375rem;
  z-index: 0;
  content: "";
  display: block;
  width: 100vw;
  height: 0.0625rem;
  background-color: #E9EBEF;
}
.p-news-card--framed-wrap--top::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 0.0625rem;
  height: 100%;
  background-color: #E9EBEF;
}
.p-news-card--framed-wrap--top .p-news-card__item::after {
  width: 100vw;
  right: -0.9375rem;
}
.p-news-card--framed-wrap--top .p-news-card__item::before {
  height: calc(100% + 19.375rem);
  top: -11.875rem;
}
.p-news-card--framed-wrap--top .p-news-card__item:nth-of-type(3n)::after {
  width: 100vw;
  left: -0.9375rem;
}
@media (min-width: 48rem) {
  .p-news-card--framed {
    padding-inline: 0;
  }
  .p-news-card--framed-wrap {
    padding-block: 6.25rem;
    margin-inline: -1.5rem;
  }
  .p-news-card--framed-wrap::before {
    left: -100vw;
    width: 200vw;
  }
  .p-news-card--framed-wrap::after {
    left: 0;
  }
  .p-news-card--framed .p-news-card__item {
    padding: 1.5rem;
  }
  .p-news-card--framed .p-news-card__item::before {
    height: calc(100% + 12.5rem);
  }
  .p-news-card--framed .p-news-card__item::after {
    right: -6.25rem;
    width: 100vw;
  }
  .p-news-card--framed-heading {
    margin-left: 1.5rem;
  }
  .p-news-card--framed-wrap--low {
    padding-block: 2.5rem;
  }
  .p-news-card--framed-wrap--low::before {
    top: 2.5rem;
    left: -100vw;
    width: 200vw;
  }
  .p-news-card--framed-wrap--low::after {
    left: 0;
  }
  .p-news-card--framed-wrap--low .p-news-card__item::before {
    top: -2.5rem;
    height: calc(100% + 5rem);
  }
  .p-news-card--framed-wrap--top {
    padding: 13.75rem 0 7.5rem;
  }
  .p-news-card--framed-wrap--top::before {
    top: 13.75rem;
    left: -100vw;
    width: 200vw;
  }
  .p-news-card--framed-wrap--top::after {
    left: 0;
  }
  .p-news-card--framed-wrap--top .p-news-card__item::before {
    top: -13.75rem;
    height: calc(100% + 21.25rem);
  }
}

.p-movie-card {
  display: grid;
  grid-template-columns: 1fr;
}
.p-movie-card__item {
  padding-block: 1rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 1rem;
}
.p-movie-card__label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  color: #3d5a6e;
  font-size: 0.6875rem;
  font-weight: 700;
}
.p-movie-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: left;
}
.p-movie-card__image {
  position: relative;
  aspect-ratio: 300/180;
  border-radius: 0.25rem;
  overflow: hidden;
}
.p-movie-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.p-movie-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}
.p-movie-card__play-icon svg {
  width: 1.875rem;
  height: 1.875rem;
  fill: #fff;
}
@media (min-width: 30rem) {
  .p-movie-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-movie-card__item {
    padding: 1rem;
  }
}
@media (min-width: 48rem) {
  .p-movie-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.625rem;
  }
  .p-movie-card__item {
    padding: 0;
    gap: 1.5rem;
  }
  .p-movie-card__label, .p-movie-card__title {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-movie-card__item:hover .p-movie-card__image img {
    transform: scale(1.05);
  }
  .p-movie-card__item:hover .p-movie-card__play-icon {
    background-color: rgba(0, 91, 171, 0.8);
  }
}
.p-movie-card--framed {
  position: relative;
  gap: 0;
}
.p-movie-card--framed-wrap {
  position: relative;
  padding: 6.25rem 0 3.125rem;
}
.p-movie-card--framed-wrap::before {
  position: absolute;
  top: 6.25rem;
  left: -0.9375rem;
  z-index: 0;
  content: "";
  display: block;
  width: calc(100vw + 1.875rem);
  height: 0.0625rem;
  background-color: #E9EBEF;
}
.p-movie-card--framed-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 0.0625rem;
  height: 100%;
  background-color: #E9EBEF;
}
.p-movie-card--framed-heading {
  position: absolute;
  top: 2.125rem;
  left: 0.9375rem;
}
.p-movie-card--framed .p-movie-card__item {
  position: relative;
  padding: 0.9375rem;
  background-color: transparent;
}
.p-movie-card--framed .p-movie-card__item::before {
  position: absolute;
  top: -6.25rem;
  right: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 0.0625rem;
  height: calc(100% + 9.375rem);
  background-color: #E9EBEF;
}
.p-movie-card--framed .p-movie-card__item::after {
  position: absolute;
  right: -1.875rem;
  bottom: 0;
  z-index: 0;
  content: "";
  display: block;
  width: calc(100vw + 2rem);
  height: 0.0625rem;
  background-color: #E9EBEF;
}
.p-movie-card--framed .p-movie-card__item:nth-of-type(3n)::after {
  position: absolute;
  left: -100vw;
  bottom: 0;
  z-index: 0;
  content: "";
  display: block;
  width: 200vw;
  height: 0.0625rem;
  background-color: #E9EBEF;
}
@media (min-width: 48rem) {
  .p-movie-card--framed {
    padding-inline: 0;
  }
  .p-movie-card--framed-wrap {
    padding-block: 6.25rem;
    margin-inline: -1.5rem;
  }
  .p-movie-card--framed-wrap::before {
    left: -100vw;
    width: 200vw;
  }
  .p-movie-card--framed-wrap::after {
    left: 0;
  }
  .p-movie-card--framed .p-movie-card__item {
    padding: 1.5rem;
  }
  .p-movie-card--framed .p-movie-card__item::before {
    height: calc(100% + 12.5rem);
  }
  .p-movie-card--framed .p-movie-card__item::after {
    right: -6.25rem;
    width: 100vw;
  }
  .p-movie-card--framed-heading {
    left: 1.5rem;
  }
}

.p-business-card {
  --color-title: #323d4b;
  --color-subtitle: #8c96a0;
  --color-text: #323d4b;
  --background: #ffffff;
  --card-color: inherit;
  width: 83%;
  display: grid;
  gap: 1.25rem;
  margin: auto;
}
.p-business-card--shadow .p-business-card__item {
  box-shadow: 4px 4px 10px 0px var(--card-color);
  transition: box-shadow 0.2s ease-in-out;
}
.p-business-card__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
  padding: 1.5rem;
  border-radius: 0.25rem;
  background-color: #ffffff;
  height: 100%;
  overflow: hidden;
}
.p-business-card__item * {
  transition: color 0.2s ease-in-out;
}
.p-business-card__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  background: var(--background);
  pointer-events: none;
}
.p-business-card__item::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--color-text);
  position: absolute;
  bottom: 1.25rem;
  right: 0.625rem;
  transition: background-color 0.2s ease-in-out;
}
.p-business-card__item--mobility {
  --card-color: #0065b04D;
  --background: #0065b0;
}
.p-business-card__item--mobility .p-business-card__title {
  --color-title: #0065b0;
}
.p-business-card__item--mobility .p-business-card__image::before {
  height: 4.038125rem;
  width: 6.5625rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_mobility_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--reuse {
  --card-color: #00b4a94D;
  --background: #00b4a9;
}
.p-business-card__item--reuse .p-business-card__title {
  --color-title: #00b4a9;
}
.p-business-card__item--reuse .p-business-card__image::before {
  height: 4.375rem;
  width: 4.375rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_reuse_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--human-resources {
  --card-color: #CCAA194D;
  --background: #CCAA19;
}
.p-business-card__item--human-resources .p-business-card__title {
  --color-title: #CCAA19;
}
.p-business-card__item--human-resources .p-business-card__image::before {
  height: 4.375rem;
  width: 4.375rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_human_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--estate {
  --card-color: #785F414D;
  --background: #785F41;
}
.p-business-card__item--estate .p-business-card__title {
  --color-title: #785F41;
}
.p-business-card__item--estate .p-business-card__image::before {
  height: 4.375rem;
  width: 4.375rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_estate_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--sports {
  --card-color: #AA5F194D;
  --background: #AA5F19;
}
.p-business-card__item--sports .p-business-card__title {
  --color-title: #AA5F19;
}
.p-business-card__item--sports .p-business-card__image::before {
  height: 4.375rem;
  width: 4.375rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_sports_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--agriculture {
  --card-color: #0F91544D;
  --background: #0F9154;
}
.p-business-card__item--agriculture .p-business-card__title {
  --color-title: #0F9154;
}
.p-business-card__item--agriculture .p-business-card__image::before {
  height: 4.375rem;
  width: 4.1875rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_agriculture_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--regional {
  --card-color: #D796A04D;
  --background: #D796A0;
}
.p-business-card__item--regional .p-business-card__title {
  --color-title: #D796A0;
}
.p-business-card__item--regional .p-business-card__image::before {
  height: 4.2625rem;
  width: 5.0625rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_regional_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__item--education {
  --card-color: #1B3C9B4D;
  --background: #1B3C9B;
}
.p-business-card__item--education .p-business-card__title {
  --color-title: #1B3C9B;
}
.p-business-card__item--education .p-business-card__image::before {
  height: 3.75rem;
  width: 4.875rem;
  background: url(/wp-content/themes/proto/assets/images/common/icon_education_hover.png) no-repeat;
  background-size: contain;
}
.p-business-card__image {
  position: relative;
}
.p-business-card__image::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  content: "";
  height: 100%;
  width: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-business-card__image img {
  transition: opacity 0.2s ease;
}
.p-business-card__content {
  position: relative;
  display: grid;
  grid-auto-rows: auto;
  grid-template-rows: minmax(0, 1fr) auto;
  flex: 1;
  min-height: 0;
  height: 100%;
  gap: 1rem;
}
.p-business-card__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}
.p-business-card__title {
  color: var(--color-title);
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: normal;
}
.p-business-card__subtitle {
  color: var(--color-subtitle);
  font-size: 0.625rem;
  font-weight: 700;
}
.p-business-card__body {
  align-self: end;
  min-height: 3.5em;
}
.p-business-card__text {
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 700;
}
@media (min-width: 30rem) {
  .p-business-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-business-card__image {
    text-align: left;
  }
}
@media (min-width: 48rem) {
  .p-business-card {
    width: 100%;
    gap: 0.75rem;
  }
  .p-business-card__item {
    gap: 2.25rem;
    padding: 1.75rem 1.25rem;
  }
  .p-business-card__item::after {
    right: 1.25rem;
  }
  .p-business-card__content {
    gap: 1.25rem;
  }
  .p-business-card__title {
    font-size: 1.5rem;
  }
  .p-business-card__subtitle {
    font-size: 0.75rem;
  }
  .p-business-card__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 64rem) {
  .p-business-card {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .p-business-card__item {
    gap: 5rem;
    padding: 2.1875rem 1.5rem;
  }
  .p-business-card__item::after {
    bottom: 1.25rem;
    right: 1.5rem;
  }
  .p-business-card__content {
    gap: 1.5rem;
  }
  .p-business-card__header {
    gap: 0.75rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-business-card__item:hover, .p-business-card__item:focus-visible {
    --color-title: #ffffff;
    --color-subtitle: #ffffff;
    --color-text: #ffffff;
    box-shadow: none;
  }
  .p-business-card__item:hover::before, .p-business-card__item:focus-visible::before {
    opacity: 1;
  }
  .p-business-card__item:hover .p-business-card__title, .p-business-card__item:focus-visible .p-business-card__title {
    --color-title: #ffffff;
  }
  .p-business-card__item:hover .p-business-card__image::before, .p-business-card__item:focus-visible .p-business-card__image::before {
    opacity: 1;
  }
  .p-business-card__item:hover .p-business-card__image img, .p-business-card__item:focus-visible .p-business-card__image img {
    opacity: 0;
  }
}

.p-service-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.p-service-card__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.p-service-card__title {
  flex: 1;
  position: relative;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
}
.p-service-card__image {
  position: relative;
  aspect-ratio: 323/184;
  border-radius: 0.1875rem;
  overflow: hidden;
  background-color: #ffffff;
}
.p-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .p-service-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.875rem;
  }
  .p-service-card__item {
    padding: 0;
    gap: 1.5rem;
  }
  .p-service-card__content::after {
    bottom: 0.5625rem;
  }
  .p-service-card__title {
    font-size: 1.25rem;
  }
  .p-service-card__image {
    aspect-ratio: 336/180;
    border-radius: 0.25rem;
  }
}

a.p-service-card__item .p-service-card__content {
  display: flex;
  gap: 0.25rem;
}
@media (min-width: 48rem) {
  a.p-service-card__item .p-service-card__content {
    align-items: baseline;
    gap: 0.5rem;
  }
}
a.p-service-card__item .p-service-card__content::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #323d4b;
  transition: background-color 0.2s ease-in-out;
}
a.p-service-card__item[target=_blank] .p-service-card__content::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgNi43OTAwNFYxNEgxNS42NTA0VjE1SDNWNi43OTAwNEg0Wk0xNy41IDVWMTIuMTY5OUg1LjkxMDE2VjVIMTcuNVpNNi45MTAxNiAxMS4xNjk5SDE2LjVWNkg2LjkxMDE2VjExLjE2OTlaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
  width: 1rem;
  height: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  a.p-service-card__item:hover .p-service-card__image img {
    transform: scale(1.05);
  }
}

.p-info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 48rem) {
  .p-info-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}
.p-info-card__item {
  display: grid;
  align-content: baseline;
  gap: 0.625rem;
  padding: 1.0625rem 1.375rem;
  background-color: #EDEFF2;
  border-radius: 0.25rem;
}
@media (min-width: 48rem) {
  .p-info-card__item {
    padding: 1.875rem 2.5rem;
    border-radius: 0.125rem;
  }
}
.p-info-card__title {
  display: flex;
  align-items: center;
  gap: 1.1875rem;
}
@media (min-width: 48rem) {
  .p-info-card__title {
    gap: 1.5rem;
  }
}
.p-info-card__title-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-info-card__image {
  width: 3.125rem;
}
@media (min-width: 48rem) {
  .p-info-card__image {
    width: 4.8125rem;
  }
}

.p-image-link-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.p-image-link-card__item {
  display: grid;
  gap: 0.75rem;
}
.p-image-link-card__image {
  aspect-ratio: 336/180;
  border-radius: 0.25rem;
  overflow: hidden;
}
.p-image-link-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.p-image-link-card__content {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  width: 100%;
}
.p-image-link-card__content h3 {
  flex: 1;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.8;
}
.p-image-link-card__content::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #323d4b;
  transition: background-color 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .p-image-link-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-image-link-card__item:hover .p-image-link-card__image img {
    transform: scale(1.05);
  }
}

.p-price-card {
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  text-align: center;
  padding: 2rem 1.5rem;
}
.p-price-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-price-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0065b0;
  overflow-wrap: anywhere;
  margin-bottom: 1.5rem;
}
.p-price-card__tax {
  font-size: 1rem;
  font-weight: 400;
}
.p-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-price-card__features li {
  margin-bottom: 0.75rem;
  position: relative;
  text-align: left;
}
.p-price-card__features li:not(.p-price-card__main)::before {
  content: "✓";
  color: #0065b0;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.p-price-card__features li:not(.p-price-card__main) {
  padding-left: 1.5rem;
}
.p-price-card__features .p-price-card__main {
  font-weight: 700;
}
.p-price-card__features .p-price-card__retail-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0065b0;
}
.p-price-card--recommended {
  border-color: #0065b0;
  border-width: 2px;
}

.p-card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.p-card--image, .p-card__image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.p-card--image img, .p-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.p-card:hover .p-card--image img,
.p-card:hover .p-card__image img {
  transform: scale(1.05);
}
.p-card:hover .p-card--news__title,
.p-card:hover .p-card__news-title {
  color: #0065b0;
}
.p-card:hover .p-card--news__link,
.p-card:hover .p-card__news-link {
  color: #004a9a;
}
.p-card--content, .p-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.p-card__link:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.p-card__link--news {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.p-card__link--news:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.p-card__news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0065b0;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 3.125rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.p-card__news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.p-card__news-title {
  font-weight: 700;
  color: #323d4b;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  flex-grow: 1;
}
.p-card__news-excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.p-card__news-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #0065b0;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.p-card__news-link svg {
  width: 1.125rem;
  height: 1.125rem;
}
.p-card--business {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.p-card--business:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.p-card--business:hover h4 {
  color: #0065b0;
  text-decoration: none;
}
.p-card--business .p-card__image {
  height: 11.25rem;
  overflow: hidden;
}
.p-card--business .p-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card--business .p-card__content {
  padding: 1.5rem;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-card--business h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #323d4b;
  transition: color 0.2s ease;
}
.p-card--business p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.p-card--trouble {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.p-card--trouble img {
  height: 5rem;
  margin-bottom: 1rem;
}
.p-card--trouble p {
  font-weight: 700;
  line-height: 1.5;
}
.p-card--price {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-align: center;
  padding: 2rem 1.5rem;
  transition: all 0.2s ease;
}
.p-card--price:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.p-card--price--recommended {
  border-color: #0065b0;
  border-width: 0.125rem;
}
.p-card--price--recommended .p-card--price__price {
  color: #0065b0;
}
.p-card--price__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-card--price__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0065b0;
  margin-bottom: 1.5rem;
}
.p-card--price__tax {
  font-size: 1rem;
  font-weight: 400;
}
.p-card--price__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-card--price__features li {
  margin-bottom: 0.75rem;
  position: relative;
  text-align: left;
}
.p-card--price__features li.p-card--price-main {
  font-weight: 700;
}
.p-card--price__features li.p-card--price-main.p-card--price-retail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0065b0;
}
.p-card--price__features li.p-card--price-main.p-card--price-retail img {
  height: 1.2em;
}
.p-card--price__features li:not(.p-card--price-main) {
  padding-left: 1.5rem;
}
.p-card--price__features li:not(.p-card--price-main)::before {
  content: "✓";
  color: #0065b0;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.p-card--solution {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.p-card--solution-reverse {
  flex-direction: row-reverse;
}
.p-card--solution__image {
  flex: 1;
  max-width: 50%;
}
.p-card--solution__image img {
  border-radius: 0.5rem;
}
.p-card--solution__text {
  flex: 1;
}
.p-card--solution__text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-card--solution__text p {
  line-height: 1.8;
}
.p-card--solution, .p-card--solution-reverse {
  flex-direction: column;
  gap: 1.5rem;
}
.p-card--solution .p-card--solution__image, .p-card--solution-reverse .p-card--solution__image {
  max-width: 100%;
}
.p-card--solution .p-card--solution__text h3, .p-card--solution-reverse .p-card--solution__text h3 {
  font-size: 1.5rem;
}
@media (min-width: 30rem) {
  .p-card--solution, .p-card--solution-reverse {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.p-card--feature {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.p-card--feature__header {
  padding: 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.p-card--feature__header .p-card--feature__title {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.p-card--feature__header .p-card--feature__title .p-card--feature__logo {
  height: 1.2em;
}
.p-card--feature__catch {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin-top: 0.5rem;
}
.p-card--feature__body {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}
.p-card--feature__description {
  flex: 1;
}
.p-card--feature__description p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.p-card--feature__image {
  flex: 1;
  max-width: 45%;
  text-align: center;
}
.p-card--feature__image img {
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.p-card--feature__image .p-card--feature__caption {
  font-size: 0.875rem;
  color: #666666;
  margin-top: 0.5rem;
}
.p-card--feature__service {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f0f7ff;
  border-radius: 0.5rem;
}
.p-card--feature__service img {
  height: 2.5rem;
  width: auto;
}
.p-card--feature__service p {
  margin: 0;
  font-size: 0.9rem;
}
.p-card--feature.p-card--feature-compact .p-card--feature__body {
  align-items: center;
}
@media (min-width: 30rem) {
  .p-card--feature .p-card--feature__body {
    flex-direction: row;
  }
  .p-card--feature .p-card--feature__image {
    max-width: 50%;
  }
  .p-card--feature .p-card--feature__service {
    flex-direction: row;
  }
}
.p-card--use-case {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.p-card--use-case img {
  height: 3.75rem;
}
.p-card--use-case__text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-card--use-case__text h4 img {
  height: 1.2em;
}
.p-card--use-case__text p {
  line-height: 1.7;
}

.p-card-info {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.p-card-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.p-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9375rem;
}
.p-card-info p {
  color: #666666;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.p-card-info ul {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.p-card-info li {
  margin-bottom: 0.75rem;
}
.p-card-info li a {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
.p-card-info li a:hover {
  background-color: neutral(150);
  text-decoration: none;
  opacity: 1;
}
.p-card-info li a::after {
  content: "›";
  font-size: 1.125rem;
  color: #0065b0;
}
.p-card-info .c-btn {
  width: fit-content;
}

.p-card--cta {
  background: rgb(0, 71.7329545455, 125);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  display: block;
}
.p-card--cta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.p-card--cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
@media (min-width: 30rem) {
  .p-card--cta {
    padding: 2.5rem;
  }
  .p-card--cta h3 {
    font-size: 1.8rem;
  }
}

.p-card--training {
  display: flex;
  align-items: flex-start;
  flex: 1;
  background: #f9f9f9;
  border-radius: 0.5rem;
  gap: 0.375rem;
  padding: 0.75rem;
}
.p-card--training__image {
  flex-shrink: 0;
  width: 2.5rem;
}
.p-card--training__text {
  flex: 1;
  display: grid;
  gap: 0.5rem;
}
.p-card--training__text-ttl {
  font-size: 1rem;
  font-weight: 700;
}
.p-card--training__text-list {
  list-style: none;
  padding-left: 0;
}
@media (min-width: 30rem) {
  .p-card--training {
    gap: 1rem;
    padding: 1rem;
  }
  .p-card--training__image {
    width: auto;
  }
  .p-card--training__text-ttl {
    font-size: 1.1rem;
  }
}

.p-card--image-link {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  color: #ffffff;
  text-decoration: none;
}
.p-card--image-link img {
  display: block;
  width: 100%;
  height: 15.625rem;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-card--image-link:hover img {
  transform: scale(1.05);
}
.p-card--image-link .p-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.875rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.p-card--image-link .p-card__content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.p-card--image-link .p-card__content p {
  font-size: 1rem;
  opacity: 0.9;
}
.p-card--image-link__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.p-map-container {
  width: 100%;
  height: 15.625rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card:hover .p-card--news__title,
.card:hover .p-card__news-title {
  color: #0065b0;
}
.card:hover .p-card--news__link,
.card:hover .p-card__news-link {
  color: #004a9a;
}

.card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.p-card--news-link-wrap {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.p-card--news-link-wrap:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.p-card--news__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0065b0;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 3.125rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.p-card--news__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.p-card--news__title {
  font-weight: 700;
  color: #323d4b;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  flex-grow: 1;
}
.p-card--news__excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.p-card--news__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #0065b0;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.p-card--news__link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.p-card-stat {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.p-card-stat__label {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 0.5rem;
}
.p-card-stat__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0065b0;
}
.p-card-stat__unit {
  font-size: 1rem;
  margin-left: 0.25rem;
}
.p-card-stat--simple {
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.p-card-stat--simple .p-card-stat__label {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.75rem;
}
.p-card-stat--simple .p-card-stat__value {
  font-size: 3rem;
}
.p-card-stat--simple .p-card-stat__unit {
  font-size: 1.125rem;
}

.p-card-link {
  display: block;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  color: #323d4b;
}
.p-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #0065b0;
  text-decoration: none;
}

.p-card-vision__icon {
  height: 12.5rem;
  margin-bottom: 1.5rem;
}
.p-card-vision h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #323d4b;
  margin-bottom: 1rem;
}
.p-card-vision p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
  margin-bottom: 1.5em;
}

.p-card-office {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-block: 1.25rem;
}
.p-card-office h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
}
.p-card-office__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 30rem) {
  .p-card-office__details {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-card-office__details.p-card-office__details--with-image {
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 30rem) {
  .p-card-office__details.p-card-office__details--with-image {
    grid-template-columns: 12.5rem 1fr;
  }
}
@media (min-width: 64rem) {
  .p-card-office__details.p-card-office__details--with-image {
    grid-template-columns: 12.5rem 1fr 1fr;
  }
}
.p-card-office__image {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-card-office__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-card-office__info th,
.p-card-office__info td {
  padding: 0.5rem 0;
  vertical-align: top;
}
.p-card-office__info th {
  font-weight: 700;
  width: 3.125rem;
}
.p-card-office .p-map-container {
  order: 3;
}
@media (min-width: 30rem) {
  .p-card-office .p-map-container {
    grid-column: 1/span 2;
  }
}
@media (min-width: 64rem) {
  .p-card-office .p-map-container {
    grid-column: auto;
  }
}
@media (min-width: 64rem) {
  .p-card-office__image {
    order: 1;
  }
  .p-card-office__info {
    order: 2;
  }
}

.p-card-company {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 0.875rem 1.875rem;
  overflow-wrap: anywhere;
}
@media (min-width: 48rem) {
  .p-card-company {
    max-width: 36.25rem;
    padding: 1.875rem;
  }
}
.p-card-company__logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 12.5rem;
  margin: 0 auto;
}
.p-card-company__logo img {
  width: 100%;
}
@media (min-width: 48rem) {
  .p-card-company__logo {
    max-width: 15rem;
    height: 7.5rem;
  }
}
.p-card-company__details {
  flex-grow: 1;
}
.p-card-company__table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #323d4b;
}
.p-card-company__table tr {
  border-bottom: 1px solid #323d4b;
}
.p-card-company__table th,
.p-card-company__table td {
  display: block;
  text-align: left;
  vertical-align: top;
}
@media (min-width: 48rem) {
  .p-card-company__table th,
  .p-card-company__table td {
    display: table-cell;
  }
}
.p-card-company__table tr:last-child th,
.p-card-company__table tr:last-child td {
  border-bottom: none;
}
.p-card-company__table th {
  padding: 0.75rem 0 0;
  font-weight: 700;
  color: #3d5a6e;
  font-size: 0.875rem;
}
@media (min-width: 48rem) {
  .p-card-company__table th {
    width: 7.5rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
  }
}
.p-card-company__table td {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
}
@media (min-width: 48rem) {
  .p-card-company__table td {
    padding: 0.75rem 0;
    font-size: 1rem;
  }
}
.p-card-company__table .p-card-company__name {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #3d5a6e;
}
@media (min-width: 48rem) {
  .p-card-company__table .p-card-company__name {
    font-size: 1.25rem;
  }
}
.p-card-company__button-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 48rem) {
  .p-card-company__button-group {
    flex-wrap: wrap;
    gap: 1.5rem 0.5rem;
    margin-top: 2rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-card-company__button-group .c-button {
    width: 100%;
    max-width: 14.5rem;
    min-width: auto;
  }
}

.p-card-movie {
  position: relative;
  z-index: 0;
  background: #ffffff;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.p-card-movie:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.p-card-movie:hover .p-card-movie__play-icon {
  background-color: rgba(0, 91, 171, 0.8);
}
.p-card-movie__thumbnail {
  position: relative;
  z-index: -1;
}
.p-card-movie__thumbnail img {
  display: block;
  width: 100%;
}
.p-card-movie__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.p-card-movie__play-icon svg {
  width: 1.875rem;
  height: 1.875rem;
  fill: #ffffff;
}
.p-card-movie__info {
  padding: 1.25rem;
  text-align: left;
}
.p-card-movie__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3125rem;
}
.p-card-movie__text {
  color: #666666;
}

@media (min-width: 30rem) {
  .info-card ul.ir-library-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
.p-card--feature__title .p-card--feature__logo {
  height: 1.2em;
}

.p-business-list:not(.p-business-list:last-child) {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(140, 150, 160, 0.4);
}
.p-business-list__item {
  padding-bottom: 1.75rem;
}
.p-business-list__item:not(.p-business-list__item:last-of-type) {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(140, 150, 160, 0.4);
}
.p-business-list__item-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-business-list__link {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.2s ease-in-out;
}
.p-business-list__image {
  text-align: center;
}
.p-business-list__image img {
  transition: transform 0.2s ease-in-out;
}
.p-business-list__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.p-business-list__text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: #8c96a0;
  font-size: 0.625rem;
  font-weight: 400;
}
.p-business-list__text-link::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
}
@media (min-width: 48rem) {
  .p-business-list:not(.p-business-list:last-of-type) {
    margin-bottom: 5rem;
  }
  .p-business-list__item-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    border-radius: 0.5rem;
  }
  .p-business-list__item-inner .p-business-list__image {
    width: 12.70833%;
    max-width: 7.625rem;
    text-align: left;
  }
  .p-business-list__link {
    padding: 1.875rem;
    flex-direction: row;
    align-items: flex-start;
    border-radius: 0.5rem;
  }
  .p-business-list__image {
    width: 25%;
    max-width: 14.0625rem;
    flex-shrink: 0;
  }
  .p-business-list__content {
    flex-grow: 1;
    gap: 1.5rem;
  }
  .p-business-list__text-link {
    font-size: 0.75rem;
  }
  .p-business-list__item {
    padding-bottom: 2.25rem;
  }
  .p-business-list__item:not(.p-business-list__item:last-of-type) {
    margin-bottom: 2.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-business-list__link:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .p-business-list__link:hover .p-business-list__image img {
    transform: scale(1.03);
  }
}

.p-services-list-wrap {
  padding: 2.25rem 1.375rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.125rem;
}
@media (min-width: 48rem) {
  .p-services-list-wrap {
    padding: 4rem 2.5rem 2.5rem;
  }
}
.p-services-list-wrap > .c-heading--block {
  margin-bottom: 0.3em;
}
@media (min-width: 48rem) {
  .p-services-list-wrap > .c-heading--block {
    margin-bottom: 0.75rem;
  }
}
.p-services-list-wrap > .c-heading--item {
  margin-bottom: 1.3125rem;
}
@media (min-width: 48rem) {
  .p-services-list-wrap > .c-heading--item {
    margin-bottom: 3.0625rem;
  }
}
.p-services-list__item:not(.p-services-list__item:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-services-list__inner {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.1875rem;
  border-radius: 0.25rem;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .p-services-list__inner {
    padding: 1.625rem 3.5rem 1.625rem 1.25rem;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
}
.p-services-list__link {
  position: relative;
  padding: 1rem 1rem 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.1875rem;
  border-radius: 0.25rem;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .p-services-list__link {
    padding: 1.625rem 3.5rem 1.625rem 1.25rem;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
}
.p-services-list__link::after {
  position: absolute;
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #323d4b;
  bottom: 1.75rem;
  right: 1.875rem;
  transition: background-color 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .p-services-list__link::after {
    bottom: 1.75rem;
    right: 3.5rem;
  }
}
.p-services-list__image {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .p-services-list__image {
    width: 16.25rem;
    height: 11rem;
    flex-shrink: 0;
  }
}
.p-services-list__image img {
  width: auto;
  height: 5rem;
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 48rem) {
  .p-services-list__image img {
    width: 100%;
    height: 100%;
  }
}
.p-services-list__content {
  display: grid;
  gap: 0.3125rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-services-list__link:hover .p-services-list__image img {
    transform: scale(1.05);
  }
}

.p-image-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.p-image-list__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.875rem;
}
@media (min-width: 48rem) {
  .p-image-list__item {
    align-items: center;
    flex-direction: row;
    gap: 2.5rem;
  }
}
.p-image-list__item--reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.875rem;
}
@media (min-width: 48rem) {
  .p-image-list__item--reverse {
    align-items: center;
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
}
.p-image-list__image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 48rem) {
  .p-image-list__image {
    flex: 0 0 40%;
  }
}
.p-image-list__content .c-heading {
  font-size: 1.3125rem;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .p-image-list__content .c-text {
    line-height: 2;
  }
}

/* ==== from _business-grid.scss ==== */
/* --- Business-grid --- */
.p-business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 30rem) {
  .p-business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 48rem) {
  .p-business-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-business-grid--pillar {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 30rem) {
  .p-business-grid--pillar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 48rem) {
  .p-business-grid--pillar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-contents {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .p-contents {
    margin-bottom: 4rem;
    gap: 1.5rem;
  }
}

/* --- Accordion --- */
.p-accordion__item {
  border-bottom: 1px solid #e5e7eb;
}
.p-accordion__button {
  background: #f9f9f9;
  width: 100%;
  border: none;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}
.p-accordion__button:has(.p-accordion__icon-q) {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
.p-accordion__button .p-accordion__icon-q {
  font-size: 1.5rem;
  color: #0065b0;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.p-accordion__button:hover {
  background-color: #f3f4f6;
}
.p-accordion__button::after {
  content: "+";
  font-size: 2rem;
  color: #0065b0;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.p-accordion__button.active::after {
  content: "-";
  top: calc(50% - 0.1875rem);
}
@media (min-width: 30rem) {
  .p-accordion__button {
    padding: 1.25rem;
    font-size: 1.125rem;
  }
}
.p-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #ffffff;
}
.p-accordion__body p {
  position: relative;
}
.p-accordion__body .text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
}
.p-accordion__body-content {
  padding: 0.9375rem;
}
.p-accordion__body-content:has(.p-accordion__icon-a) {
  padding-left: 3.125rem;
}
@media (min-width: 30rem) {
  .p-accordion__body-content {
    padding: 2rem;
  }
}
.p-accordion__icon-a {
  font-size: 1.5rem;
  color: #0065b0;
  position: absolute;
  left: -1.9375rem;
  top: -0.125rem;
}

/* --- box --- */
.p-box {
  display: block;
  padding: 2rem 1.5rem;
  border-radius: 0.25rem;
}
.p-box--white {
  background-color: #ffffff !important;
}
.p-box--white-opacity-30 {
  background-color: rgba(255, 255, 255, 0.3);
}
.p-box--blue {
  background-color: #eef5ff !important;
}
.p-box--blue-line {
  background-color: #eef5ff !important;
  border: 1px solid #cfe3ff;
}
.p-box--gray {
  background-color: #E9EBEF;
}
.p-box--muted {
  background-color: rgba(140, 150, 160, 0.1);
}
.p-box--video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.p-box--video-wrap {
  max-width: 50rem;
  margin: auto;
}
.p-box--video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 48rem) {
  .p-box {
    padding: 3.5rem 4.5rem;
  }
}

.p-image-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-top: 2rem;
  transition: box-shadow 0.2s ease;
}
.p-image-text-block__image {
  flex: 1;
  width: 100%;
  max-width: 22.5rem;
}
.p-image-text-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-image-text-block__text {
  flex: 1;
  padding: 1.5rem;
  text-align: center;
}
.p-image-text-block__text h3 {
  font-size: 1.5rem;
  color: #0065b0;
  margin-bottom: 0.9375rem;
}
.p-image-text-block__text p {
  margin-bottom: 1rem;
  color: #323d4b;
}
@media (min-width: 30rem) {
  .p-image-text-block {
    flex-direction: row;
    gap: 2rem;
  }
  .p-image-text-block__image {
    max-width: 26.25rem;
  }
  .p-image-text-block__text {
    padding: 2rem;
    text-align: left;
  }
}
@media (min-width: 48rem) {
  .p-image-text-block {
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.p-image-text-block-link {
  display: block;
  transition: transform 0.2s ease;
}
.p-image-text-block-link:hover {
  transform: translateY(-8px);
  text-decoration: none;
}
.p-image-text-block-link:hover .image-text-block {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==== from _section-title.scss ==== */
.c-heading--bordered-bottom-thin {
  border-bottom: 2px solid #005bab;
  padding-bottom: 0.625rem;
}

.p-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.p-section-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
@media (min-width: 30rem) {
  .p-section-title {
    margin-bottom: 2.5rem;
  }
  .p-section-title h2 {
    font-size: 2rem;
  }
}
@media (min-width: 48rem) {
  .p-section-title {
    margin-bottom: 3rem;
  }
  .p-section-title h2 {
    font-size: 3rem;
  }
}
.p-section-title p {
  display: block;
}

.p-section-title--top p {
  margin-left: 0;
  font-size: 1rem;
}
@media (min-width: 30rem) {
  .p-section-title--top p {
    font-size: 1.125rem;
  }
}
@media (min-width: 48rem) {
  .p-section-title--top p {
    font-size: 1.25rem;
  }
}

.p-section-title--job h2 {
  color: #323d4b;
  display: inline-block;
  vertical-align: baseline;
}
@media (min-width: 48rem) {
  .p-section-title--job h2 {
    display: inline-block;
  }
}
.p-section-title--job p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.8;
}
@media (min-width: 30rem) {
  .p-section-title--job p {
    font-size: 1.1rem;
  }
}

/* ==== from _intro-text.scss ==== */
.p-section-intro {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #555;
}
.p-section-intro--primary {
  color: #323d4b;
}

.p-panel,
.content-block {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 60rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 30rem) {
  .p-panel,
  .content-block {
    padding: 2rem;
  }
}
@media (min-width: 48rem) {
  .p-panel,
  .content-block {
    padding: 2.5rem;
  }
}

.p-panel--plain {
  background: none;
  box-shadow: none;
  padding: 0;
}
.p-panel--large {
  max-width: 62.5rem;
}
.p-panel:last-child {
  margin-bottom: 0;
}

.content-block--plain {
  background: none;
  box-shadow: none;
  padding: 0;
}
.content-block--large {
  max-width: 62.5rem;
}
.content-block:last-child {
  margin-bottom: 0;
}
.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #323d4b;
  text-align: center;
}
@media (min-width: 30rem) {
  .content-block h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 48rem) {
  .content-block h2 {
    font-size: 2rem;
  }
}

.p-pillar__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 30rem) {
  .p-pillar__title {
    font-size: 2rem;
  }
}
.p-pillar h3 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 30rem) {
  .p-pillar h3 {
    font-size: 2rem;
  }
}

/* --- job selection flow --- */
.p-selection-flow {
  list-style: none;
  margin: 0;
  padding-left: 3.125rem;
}
.p-selection-flow__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}
.p-selection-flow__item:last-child {
  margin-bottom: 0;
}
.p-selection-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -1rem;
  top: 4.375rem;
  bottom: -2.5rem;
  width: 0.125rem;
  background-color: #0065b0;
  z-index: 1;
}
.p-selection-flow__icon {
  position: absolute;
  left: -3.125rem;
  top: 0;
  width: 4.375rem;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.p-selection-flow__icon-circle {
  width: 4.375rem;
  height: 4.375rem;
  border: 2px solid #0065b0;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-selection-flow__sprite-icon {
  display: inline-block;
  background-image: url("/wp-content/themes/proto/assets/images/job/new/icon_sprite.png");
  background-repeat: no-repeat;
}
.p-selection-flow__sprite-icon-1 {
  width: 3rem;
  height: 3rem;
  background-position: 0.0625rem 0.375rem;
}
.p-selection-flow__sprite-icon-2 {
  width: 3rem;
  height: 3rem;
  background-position: -3.4375rem 0;
}
.p-selection-flow__sprite-icon-3 {
  width: 3rem;
  height: 3rem;
  background-position: -6.625rem 0.0625rem;
}
.p-selection-flow__sprite-icon-4 {
  width: 3rem;
  height: 3rem;
  background-position: -10.25rem 0;
}
.p-selection-flow__sprite-icon-5 {
  width: 3.4375rem;
  height: 3.6875rem;
  background-position: -13.75rem 0;
}
.p-selection-flow__sprite-icon-6 {
  width: 3.5625rem;
  height: 3rem;
  background-position: -17.6875rem 0;
}
.p-selection-flow__content {
  flex-grow: 1;
  padding-left: 2.5rem;
  padding-top: 0.75rem;
}
.p-selection-flow__content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.p-selection-flow__content p {
  margin-bottom: 1rem;
}
.p-selection-flow__action {
  margin: 0;
}
.p-selection-flow .c-btn {
  margin: 0;
}

/* --- service-list --- */
.p-service-list h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0065b0;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 30rem) {
  .p-service-list h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 48rem) {
  .p-service-list h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.p-service-list__lead {
  margin-bottom: 1.875rem;
}

.p-timeline {
  display: flex;
  justify-content: space-between;
  max-width: 56.25rem;
  margin: 0 auto 1.5rem;
  position: relative;
}
.p-timeline::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #f9f9f9;
}
.p-timeline__item {
  text-align: center;
  width: 18%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.p-timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  border: 4px solid #0065b0;
  border-radius: 50%;
  z-index: 1;
}
.p-timeline__year {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 2rem;
}
.p-timeline__event {
  font-size: 0.9rem;
  color: #666666;
  margin-top: 0.5rem;
}
.p-timeline + .c-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 2.5rem;
}

/* --- modal --- */
.p-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.p-modal__content {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  max-width: 56.25rem;
  width: 90%;
  position: relative;
}
.p-modal__close {
  position: absolute;
  top: -4.625rem;
  right: 0;
  background: none;
  border: none;
  font-size: 3.75rem;
  color: #ffffff;
  cursor: pointer;
}
.p-modal__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}
.p-modal__video-wrapper iframe,
.p-modal__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-modal__title {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-home-hero {
  position: relative;
  overflow: clip;
}
.p-home-hero__inner {
  position: relative;
  max-width: 85.375rem;
  margin-inline: auto;
  padding-top: 4.2rem;
  padding-inline: 1.5rem;
}
.p-home-hero__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 103.66%;
  height: 100%;
  margin: -3.074667% -1.83% 0;
  background-image: url(/wp-content/themes/proto/assets/images/common/hero-logo.png?20260508);
  background-repeat: no-repeat;
  background-size: contain;
}
.p-home-hero__slider {
  display: grid;
  position: relative;
  z-index: 1;
  justify-items: center;
  padding-bottom: 7rem;
}
.p-home-hero__slides {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 46.1875rem;
  z-index: 1;
  justify-items: center;
}
.p-home-hero__slide {
  display: block;
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 100%;
  max-width: 46.1875rem;
}
.p-home-hero__slide:not(.is-active) {
  pointer-events: none;
}
.p-home-hero__slide.is-next .p-home-hero__slide-text {
  transform: translateX(100px);
}
.p-home-hero__slide.is-active .p-home-hero__slide-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.p-home-hero__slide.is-prev .p-home-hero__slide-text {
  transform: translateX(-100px);
}
.p-home-hero__slide.is-active .p-home-hero__slide-button {
  opacity: 1;
}
.p-home-hero__slide:hover .p-home-hero__slide-button {
  transform: scale(1.2);
}
.p-home-hero__slide:hover .p-home-hero__slide-button::before {
  transform: scale(0.9);
}
.p-home-hero__slide-image {
  display: block;
  width: 100%;
  visibility: hidden;
}
.p-home-hero__slide-image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-hero__slide-text {
  display: flex;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: min(100%, 21rem);
  bottom: auto;
  flex-direction: column;
  justify-content: center;
  color: #0065B0;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.45;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.p-home-hero__slide-title {
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.p-home-hero__canvas {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 46.1875rem;
  aspect-ratio: 739/535;
  border-radius: 0.1875rem;
  overflow: clip;
  rotate: none;
  filter: drop-shadow(10px 10px 2px rgba(50, 62, 76, 0.15));
}
.p-home-hero__canvas canvas {
  position: absolute;
  inset: 0;
}
.p-home-hero__slide-button {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(0, 101, 176, 0.5019607843);
  display: grid;
  place-items: center;
  z-index: 1;
  opacity: 0;
  transition: transform 0.3s ease-out;
}
.p-home-hero__slide-button::before {
  content: "";
  display: block;
  width: 0.375rem;
  aspect-ratio: 1;
  border-radius: inherit;
  background-color: #0065B0;
  transition: transform 0.3s ease-out;
}
.p-home-hero__scroll-guide {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 480px) {
  .p-home-hero__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 768px) {
  .p-home-hero__inner {
    padding-top: 6.75rem;
    padding-inline: 1.5rem;
  }
  .p-home-hero__inner::before {
    width: calc(100% + 3.125rem);
    margin: -1.5rem -1.5625rem 0;
  }
  .p-home-hero__slider {
    width: 100%;
    padding-bottom: 10rem;
  }
  .p-home-hero__slides {
    max-width: calc(100% - 12rem);
  }
  .p-home-hero__slide {
    max-width: calc(100% - 12rem);
  }
  .p-home-hero__slide-text {
    top: calc(100% + 1.5rem);
    left: 0;
    width: 100%;
    font-size: 1.875rem;
    line-height: 1.4;
  }
  .p-home-hero__slide-title {
    font-size: 0.75rem;
  }
  .p-home-hero__canvas {
    max-width: calc(100% - 12rem);
    filter: drop-shadow(20px 20px 4px rgba(50, 62, 76, 0.15));
  }
  .p-home-hero__slide-button {
    right: 1.875rem;
    bottom: 1.875rem;
    width: 3.75rem;
  }
  .p-home-hero__slide-button::before {
    width: 0.625rem;
  }
  .p-home-hero__scroll-guide {
    display: block;
  }
}
@media (min-width: 1024px) {
  .p-home-hero__slider {
    --hero-slide-gap: 1.75rem;
    --hero-slide-text-min-width: 17.5rem;
    --hero-slide-image-width: min(46.1875rem, calc(100% - var(--hero-slide-text-min-width) - var(--hero-slide-gap)));
    width: 100%;
    max-width: 69rem;
    margin: 0 auto;
    padding-bottom: 2.625rem;
  }
  .p-home-hero__slides {
    width: 100%;
    max-width: none;
    justify-items: stretch;
  }
  .p-home-hero__slide {
    max-width: none !important;
  }
  .p-home-hero__slide.is-next .p-home-hero__slide-text {
    transform: translate(100px, -50%);
  }
  .p-home-hero__slide.is-active .p-home-hero__slide-text {
    transform: translate(0, -50%);
  }
  .p-home-hero__slide.is-prev .p-home-hero__slide-text {
    transform: translate(-100px, -50%);
  }
  .p-home-hero__slide-image {
    width: var(--hero-slide-image-width);
    max-width: none;
  }
  .p-home-hero__slide-text {
    top: 80%;
    right: 0;
    left: calc(var(--hero-slide-image-width) + var(--hero-slide-gap));
    width: auto;
    font-size: 1.5rem;
    line-height: 1.35;
    transform: translate(0, -50%);
  }
  .p-home-hero__slide-title {
    font-size: 0.875rem;
  }
  .p-home-hero__canvas {
    width: var(--hero-slide-image-width);
    justify-self: start;
  }
  .p-home-hero__slide-button {
    right: auto;
    left: calc(var(--hero-slide-image-width) - 5.625rem);
  }
}

.p-home-about {
  display: grid;
  row-gap: 3.125rem;
}
@media (min-width: 48rem) {
  .p-home-about {
    row-gap: 5rem;
  }
}
.p-home-about__item {
  display: grid;
  row-gap: 1.25rem;
}
@media (min-width: 48rem) {
  .p-home-about__item {
    grid-template-columns: 14.6875rem 1fr;
    column-gap: 4rem;
  }
}
.p-home-about__head {
  border-inline: 1px solid #ffffff;
  padding-inline: 0.75rem;
  width: fit-content;
}
@media (min-width: 48rem) {
  .p-home-about__head {
    display: grid;
    place-items: center;
    padding-inline: 1rem;
    width: unset;
  }
}
.p-home-about__heading {
  font-size: 1.0625rem;
  line-height: 1;
}
@media (min-width: 48rem) {
  .p-home-about__heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 48rem) {
  .p-home-about__body {
    font-size: 2.5rem;
  }
}

.p-home-sustainability-wrap {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2.8125rem 1.125rem 1.25rem;
}
@media (min-width: 48rem) {
  .p-home-sustainability-wrap {
    padding: 7.75rem 3.375rem 3.5625rem;
  }
}
@media (min-width: 48rem) {
  .p-home-sustainability__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0.3125rem;
    overflow: clip;
  }
}
.p-home-sustainability__item {
  display: block;
  position: relative;
}
.p-home-sustainability__item:first-child .p-home-sustainability__image {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  overflow: clip;
}
.p-home-sustainability__item:last-child .p-home-sustainability__image {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  overflow: clip;
}
@media (min-width: 48rem) {
  .p-home-sustainability__image {
    border-radius: unset !important;
  }
}
.p-home-sustainability__image img {
  width: 100%;
}
.p-home-sustainability__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.1875rem 1rem;
  font-size: 1.0625rem;
  color: #ffffff;
  display: flex;
  align-items: end;
  column-gap: 1em;
}
@media (min-width: 48rem) {
  .p-home-sustainability__content {
    font-size: 1.5rem;
    padding: 1.25rem 2rem;
  }
}
.p-home-sustainability__content::after {
  flex-shrink: 0;
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
  margin-bottom: calc((1lh - 0.8125rem) / 2);
}
.p-home-sustainability__title {
  flex-grow: 1;
}

.p-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}
.p-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.p-hero-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), transparent);
}
.p-hero-slide__content {
  position: absolute;
  top: 63%;
  left: 0;
  transform: translateY(-50%);
  color: #ffffff;
  padding: 0 1rem;
  width: 100%;
}
.p-hero-slide__content .p-hero-slide__category,
.p-hero-slide__content .p-hero-slide__title,
.p-hero-slide__content .p-hero-slide__subtitle,
.p-hero-slide__content .p-hero-slide__name,
.p-hero-slide__content .p-hero-slide__role,
.p-hero-slide__content .p-hero-slide__quote,
.p-hero-slide__content .p-hero-slide__btn-group {
  opacity: 0;
  transform: translateY(50px);
}
.p-hero-slide__content.animate .p-hero-slide__category {
  animation: slideUpFadeIn 0.4s ease-out 0.2s forwards;
}
.p-hero-slide__content.animate .p-hero-slide__title {
  animation: slideUpFadeIn 0.4s ease-out 0.3s forwards;
}
.p-hero-slide__content.animate .p-hero-slide__subtitle {
  animation: slideUpFadeIn 0.4s ease-out 0.6s forwards;
}
.p-hero-slide__content.animate .p-hero-slide__name {
  animation: slideUpFadeIn 0.4s ease-out 0.7s forwards;
}
.p-hero-slide__content.animate .p-hero-slide__role {
  animation: slideUpFadeIn 0.4s ease-out 0.7s forwards;
}
.p-hero-slide__content.animate .p-hero-slide__quote {
  animation: slideUpFadeIn 0.4s ease-out 1s forwards;
}
.p-hero-slide__content.animate .p-hero-slide__btn-group {
  animation: slideUpFadeIn 0.4s ease-out 1.3s forwards;
}
.p-hero-slide__category {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  background: #0065b0;
  color: #ffffff;
  padding: 0.3125rem 0.625rem;
  border-radius: 3.125rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  font-size: 0.6rem;
}
.p-hero-slide__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.p-hero-slide__subtitle {
  font-size: 1.25rem;
  color: #0065b0;
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-hero-slide__name {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.p-hero-slide__role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
.p-hero-slide__quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 37.5rem;
}
.p-hero-slide__btn-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-hero-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(to right, #0065b0, #1e40af);
  color: #ffffff;
  padding: 1.25rem 0.3125rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.25);
  justify-content: center;
  width: 100%;
}
.p-hero-slide__btn:not(.p-hero-slide__btn-outline):hover {
  background: linear-gradient(to right, #004a9a, #1e3a8a);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.3);
}
.p-hero-slide__btn.p-hero-slide__btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
}
.p-hero-slide__btn.p-hero-slide__btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.3);
}
.p-hero-slide__indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
}
.p-hero-slide__indicator {
  width: 2.5rem;
  height: 0.5rem;
  background: rgba(252, 204, 204, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.p-hero-slide__indicator.is-active {
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.p-hero-slide__indicator.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0065b0, rgb(12.8, 151.7897727273, 255));
  border-radius: 0.25rem;
}
.p-hero-slide__nav-btn {
  display: none;
}
@media (min-width: 48rem) {
  .p-hero-slide__content {
    top: 50%;
    padding: 0 0 0 7.5rem;
    width: auto;
    max-width: 50rem;
  }
  .p-hero-slide__category {
    gap: 0.5rem;
    padding: 0.5rem 0.9375rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
  }
  .p-hero-slide__title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 3.75rem;
  }
  .p-hero-slide__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .p-hero-slide__quote {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
  .p-hero-slide__btn-group {
    gap: 1rem;
  }
  .p-hero-slide__btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: auto;
  }
  .p-hero-slide__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  .p-hero-slide__nav-btn.is-prev {
    left: 2rem;
  }
  .p-hero-slide__nav-btn.is-next {
    right: 2rem;
  }
  .p-hero-slide__nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
  }
}

/* Animation */
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-vision__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.p-vision .c-text {
  font-size: 1.1rem;
  line-height: 2;
}

.p-vision strong {
  color: #005bab;
  font-weight: 700;
}

.p-timeline {
  display: flex;
  justify-content: space-between;
  max-width: 56.25rem;
  margin: 0 auto 1.5rem;
  position: relative;
}

.p-timeline::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #e9ecef;
}

.p-timeline__item {
  text-align: center;
  width: 18%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.p-timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border: 4px solid #005bab;
  border-radius: 50%;
  z-index: 1;
}

.p-timeline__year {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 2rem;
}

.p-timeline__event {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

.p-timeline + .c-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 2.5rem;
}

.p-pillar h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.p-pillar .p-intro-text {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #333;
}

#economic-business {
  background-color: #f9fafb;
}

#social-business {
  background-color: #f9fafb;
}

.p-snapshot .p-intro-text,
.p-diversity .p-intro-text,
.p-related-links .p-intro-text,
.p-sustainability .p-intro-text,
.p-recruit .p-intro-text {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #555;
}

.p-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .p-snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .p-snapshot-grid {
    grid-template-columns: 1fr;
  }
  .p-hero-section--proto-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #333;
  }
  .p-vision__title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .p-pillar h3 {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
  }
}
.p-diversity-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .p-diversity-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-diversity-grid-new {
    grid-template-columns: 1fr;
  }
}
.p-related-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .p-related-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .p-related-links-grid {
    grid-template-columns: 1fr;
  }
}
.p-image-text-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-top: 3rem;
  transition: box-shadow 0.2s ease;
}

.p-image-text-block-link {
  display: block;
  transition: transform 0.2s ease;
}

.p-image-text-block-link:hover {
  transform: translateY(-8px);
  text-decoration: none;
}

.p-image-text-block-link:hover .image-text-block {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .p-image-text-block {
    flex-direction: column;
  }
}
.p-image-text-block .p-image-text-block__image {
  flex: 1;
  min-width: 40%;
}

.p-image-text-block .p-image-text-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-image-text-block .p-image-text-block__text {
  flex: 1;
  padding: 2.5rem;
}

.p-image-text-block__text h3 {
  font-size: 1.8rem;
  color: #005bab;
  margin-bottom: 0.9375rem;
}

.p-image-text-block__text p {
  margin-bottom: 1.25rem;
  color: #333;
}

.p-sustainability .p-image-text-block__text h3 {
  color: #10b981;
  font-size: 1.6rem;
}

.p-recruit .p-image-text-block__text h3 {
  color: #005bab;
  font-size: 1.6rem;
}

/* --- Proto top message --- */
.p-message-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}

@media (max-width: 768px) {
  .p-image-text-block .p-image-text-block__text {
    flex: 1;
    padding: 1.25rem;
  }
  .p-image-text-block {
    gap: 0;
  }
  .p-sustainability .p-image-text-block__text h3 {
    color: #10b981;
    font-size: 1.4rem;
  }
}
.p-message__photo {
  flex-shrink: 0;
  text-align: center;
}

.p-message__photo img {
  width: 100%;
  border-radius: 0.5rem;
}

.p-message__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.p-message__text p {
  line-height: 1.8;
  margin-bottom: 1em;
}

.p-message__signature {
  text-align: right;
  margin-top: auto;
  padding-top: 1.25rem;
}

/* --- Proto company message --- */
.p-message-banner {
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
}

.p-message-banner img {
  width: 100%;
  border-radius: 0.5rem;
}

.p-message-body p {
  line-height: 2;
  margin-bottom: 2em;
}

.p-closing-message {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.p-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  text-align: center;
}

@media (max-width: 768px) {
  .p-vision-grid {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.p-highlight-text {
  color: #005bab;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
}

.p-highlight-text span {
  color: #333;
}

.p-highlight-img {
  display: block;
  margin: 1.875rem auto;
}

/* --- Proto address --- */
.p-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .p-location-grid {
    grid-template-columns: 15rem 1fr;
  }
}
.p-location-nav {
  position: sticky;
  top: 5rem;
  /* ヘッダーの高さに応じて調整 */
  background: #fff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-self: start;
  /* スティッキーが正しく動作するように */
}

.p-location-nav__header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

.p-location-nav ul {
  list-style: none;
}

.p-location-nav li {
  margin-bottom: 0.625rem;
}

.p-location-nav a {
  font-weight: 500;
  color: #333;
}

.p-location-nav a:hover,
.p-location-nav a.active {
  color: #005bab;
}

.p-location-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  padding-bottom: 0.9375rem;
  border-bottom: 2px solid #005bab;
}

@media (max-width: 768px) {
  .p-location-content h2 {
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .p-location-nav {
    position: static;
  }
  .p-location-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
  }
  .p-location-nav__header .p-location-nav__arrow {
    width: 0.75rem;
    height: 0.75rem;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .p-location-nav.active .p-location-nav__header .p-location-nav__arrow {
    transform: rotate(-135deg);
  }
  .p-location-nav ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
  }
}
/* ==== from _graph-grid.scss ==== */
.p-graph-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.875rem;
  margin-top: 2.5rem;
}
@media (max-width: 47.9375rem) {
  .p-graph-grid {
    grid-template-columns: 1fr;
  }
}
.p-graph-grid__title {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.9375rem;
  color: #3D5A6E;
}

/* ==== from _diversity-grid.scss ==== */
.p-diversity__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  align-items: stretch;
}
@media (max-width: 63.9375rem) {
  .p-diversity__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 47.9375rem) {
  .p-diversity__grid {
    grid-template-columns: 1fr;
  }
}

.p-card-stat {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.p-card-stat__label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.p-card-stat__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #323d4b;
}
.p-card-stat__unit {
  font-size: 1rem;
  margin-left: 0.25rem;
}
.p-card-stat--simple {
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.p-card-stat--simple .p-card-stat__label {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.75rem;
}
.p-card-stat--simple .p-card-stat__value {
  font-size: 3rem;
}
.p-card-stat--simple .p-card-stat__unit {
  font-size: 1.125rem;
}

.p-card-chart {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}
.p-card-chart__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* --- card-stat --- */
.p-card-stat {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.p-card-stat .p-card-stat--label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.p-card-stat .p-card-stat--value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005bab;
}

.p-card-stat .p-card-stat--unit {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.p-card-stat-simple {
  text-align: center;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.p-card-stat-simple .p-card-stat--label {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.p-card-stat-simple .p-card-stat--value {
  font-size: 3rem;
}

.p-card-stat-simple .p-card-stat--unit {
  font-size: 1.2rem;
}

/* ==== from _chart.scss ==== */
.c-pie-chart-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-grow: 1;
}

@property --p {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
.c-pie-chart {
  flex-shrink: 0;
  width: 100%;
  max-width: 9.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  transition: --p 1s;
  --p: 0;
}
.p-diversity.animate .c-pie-chart {
  --p: 77;
  background: conic-gradient(#4a90e2 calc(var(--p) * 1%), #a4c8f0 0);
}

.c-pie-chart--legend {
  list-style: none;
  font-size: 1.1rem;
}
.c-pie-chart--legend li {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}

.c-pie-chart--legend-color {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  margin-right: 0.625rem;
}

.c-pie-chart--legend-color-a {
  background-color: #4a90e2;
}

.c-pie-chart--legend-color-b {
  background-color: #a4c8f0;
}

.c-bar-chart {
  margin-bottom: 1.5rem;
}
.c-bar-chart__label {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #323d4b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.c-bar-chart__track {
  background-color: #e9ecef;
  border-radius: 0.5rem;
  height: 1.125rem;
  overflow: hidden;
}
.c-bar-chart__fill {
  height: 100%;
  border-radius: 0.5rem;
  background-color: #005bab;
  width: 0;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-business-content {
  --bg-business-icon: inherit;
  --heading-color: #3d5a6e;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 1.5rem;
}
@media (min-width: 48rem) {
  .p-business-content {
    flex-direction: row;
    position: relative;
  }
}
.p-business-content__detail {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  z-index: 1;
}
@media (min-width: 48rem) {
  .p-business-content__detail {
    width: 39.58333%;
    max-width: 23.75rem;
    row-gap: 4.5rem;
  }
}
.p-business-content__text {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media (min-width: 48rem) {
  .p-business-content__text {
    row-gap: 2.5rem;
  }
}
.p-business-content__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6.75rem;
  height: 4.125rem;
  background-image: var(--bg-business-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media (min-width: 48rem) {
  .p-business-content__text::after {
    top: 0.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 4.625rem;
  }
}
@media (min-width: 64rem) {
  .p-business-content__text::after {
    top: 1.0625rem;
    right: -4rem;
    width: 10.5625rem;
    height: 6.5rem;
  }
}
.p-business-content__heading {
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-size: 1.3125rem;
}
@media (min-width: 48rem) {
  .p-business-content__heading {
    font-size: 2.5rem;
  }
}
.p-business-content__button {
  max-width: 10.625rem;
}
@media (min-width: 48rem) {
  .p-business-content__button {
    max-width: fit-content;
  }
}
.p-business-content__image {
  margin-inline: -1rem;
}
@media (min-width: 48rem) {
  .p-business-content__image {
    display: block;
    width: 67.5%;
    margin-inline: 0;
    position: absolute;
    right: -6.25%;
    z-index: 0;
  }
}
.p-business-content__image img {
  width: 100%;
  height: auto;
}
.p-business-content--mobility {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_mobility.png");
  --heading-color: #0065b0;
}
.p-business-content--reuse {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_reuse.png");
  --heading-color: #00b4a9;
}
.p-business-content--human {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_human.png");
  --heading-color: #CCAA19;
}
.p-business-content--estate {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_estate.png");
  --heading-color: #785F41;
}
.p-business-content--sports {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_sports.png");
  --heading-color: #AA5F19;
}
.p-business-content--agriculture {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_agriculture.png");
  --heading-color: #0F9154;
}
.p-business-content--regional {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_regional.png");
  --heading-color: #D796A0;
}
.p-business-content--education {
  --bg-business-icon: url("/wp-content/themes/proto/assets/images/product/heading_icon_education.png");
  --heading-color: #0065b0;
}

.p-product-intro {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.1875rem;
}
.p-product-intro__image {
  text-align: center;
}
.p-product-intro__image img {
  max-width: 86.26198%;
}
@media (min-width: 48rem) {
  .p-product-intro {
    flex-direction: row;
    gap: 2rem;
  }
  .p-product-intro .p-contents {
    width: 32.5rem;
  }
  .p-product-intro .p-contents .c-heading {
    letter-spacing: 0.05em;
  }
  .p-product-intro__image {
    flex-shrink: 0;
    width: calc(100% - 32.5rem - 2rem);
    text-align: right;
  }
  .p-product-intro__image img {
    max-width: 100%;
  }
}
.p-product-intro-magazine .p-product-intro__image img {
  max-width: 47.92332%;
}
@media (min-width: 48rem) {
  .p-product-intro-magazine .p-contents {
    width: 31.6875rem;
  }
  .p-product-intro-magazine .p-product-intro__image {
    width: calc(100% - 31.6875rem - 2rem);
    text-align: right;
  }
  .p-product-intro-magazine .p-product-intro__image img {
    max-width: 100%;
    margin-right: 3.75rem;
  }
}

.p-job-box {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}
.p-job-box__header {
  background-color: #f9f9f9;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.p-job-box__header h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.p-job-box__header span {
  font-size: 0.9rem;
  color: #666666;
}
.p-job-box__content {
  padding: 1rem;
}

.p-job-entry {
  background-color: #ffffff;
  padding: 1.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}
.p-job-entry__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.p-job-entry__header img {
  height: 3.75rem;
}
.p-job-entry__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0065b0;
}
.p-job-entry__content {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.p-job-entry__button {
  text-align: center;
}

.p-training-content {
  gap: 0;
  position: relative;
  padding: 1.5rem 0 1.5rem 3.75rem;
}
.p-training-content::before {
  content: "";
  display: block;
  width: 0.25rem;
  background: #e0e0e0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.4375rem;
}
.p-training-content:first-child::before {
  border-radius: 0.25rem 0.25rem 0 0;
}
.p-training-content:last-child::before {
  border-radius: 0 0 0.25rem 0.25rem;
}
.p-training-content__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #0065b0;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  position: absolute;
  top: 1.5rem;
  left: 0;
  line-height: 1.2;
}
.p-training-content__step em {
  font-style: normal;
  font-size: 1rem;
}
@media (min-width: 30rem) {
  .p-training-content {
    padding-left: 5rem;
    gap: 1rem;
  }
  .p-training-content::before {
    left: 1.875rem;
  }
  .p-training-content .p-training-content__step {
    font-size: 0.875rem;
    width: 4rem;
    height: 4rem;
  }
  .p-training-content .p-training-content__step em {
    font-size: 1.5rem;
  }
}

.p-card--training {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  flex: 1;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}
.p-card--training__image {
  flex-shrink: 0;
  width: 2.5rem;
}
.p-card--training__text {
  flex: 1;
  display: grid;
  gap: 0.5rem;
}
.p-card--training__text-ttl {
  font-size: 1rem;
  font-weight: 700;
}
.p-card--training__text-list {
  list-style: none;
  padding-left: 0;
}
@media (min-width: 30rem) {
  .p-card--training {
    gap: 1rem;
    padding: 1rem;
  }
  .p-card--training__image {
    width: auto;
  }
  .p-card--training__text-ttl {
    font-size: 1.1rem;
  }
}

.p-flex {
  display: flex;
}
.p-flex--sp-column {
  flex-direction: column;
}
.p-flex--gap-24 {
  gap: 1.5rem;
}
@media (min-width: 30rem) {
  .p-flex {
    flex-direction: inherit;
  }
}

.p-data-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 0.75rem);
  height: 17.5rem;
  background: #e6eef5;
  padding: 2rem;
}
.p-data-box--center {
  width: 100%;
}
.p-data-box .scaled-image {
  border: none;
}
@media (max-width: 47.9375rem) {
  .p-data-box {
    width: 100%;
    height: 100%;
  }
}

.p-interview {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.p-interview__image {
  flex-shrink: 0;
  width: 100%;
  height: 15.625rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-interview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview__content {
  flex-grow: 1;
  text-align: left;
}
.p-interview__content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.p-interview__content p {
  line-height: 1.8;
}
@media (min-width: 30rem) {
  .p-interview {
    flex-direction: row;
    gap: 2.5rem;
  }
  .p-interview__image {
    width: 18.75rem;
    height: 12.5rem;
  }
}

.p-interview-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.p-interview-intro__image {
  flex-shrink: 0;
  width: 13.75rem;
}
.p-interview-intro__image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.p-interview-intro__text {
  text-align: center;
}
.p-interview-intro__text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.p-interview-intro__text-role {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
}
.p-interview-intro__text-role + p {
  line-height: 1.8;
}
@media (min-width: 30rem) {
  .p-interview-intro {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3.75rem;
  }
  .p-interview-intro__image {
    width: 18.75rem;
  }
  .p-interview-intro__text {
    text-align: left;
  }
  .p-interview-intro__text h2 {
    font-size: 2rem;
  }
  .p-interview-intro__text-role {
    font-size: 1.1rem;
  }
}

.p-interview-qa {
  margin-bottom: 2.5rem;
}
.p-interview-qa h3 {
  margin-bottom: 1rem;
}
.p-interview-qa p {
  margin-bottom: 1.5em;
}
.p-interview-qa img {
  margin-block: 1.875rem;
  border-radius: 0.5rem;
}

.p-interview-price {
  background-color: #ffffff;
  padding: 1.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}
.p-interview-price__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.p-interview-price__header img {
  height: 3.75rem;
}
.p-interview-price__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0065b0;
}
.p-interview-price__content {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.p-interview-price__button {
  text-align: center;
}

.p-table--plan {
  table-layout: fixed;
}
.p-table--plan th,
.p-table--plan td {
  font-size: 0.8125rem;
  padding: 0.625rem 0.25rem;
}
.p-table--plan thead th {
  color: #ffffff;
  background: #005bab;
}
.p-table--plan tbody tr {
  background: #f1f2f7;
}
.p-table--plan tbody tr th {
  font-weight: normal;
  text-align: center;
}
.p-table--plan tbody tr:nth-child(odd) th,
.p-table--plan tbody tr:nth-child(odd) td {
  background-color: #f1f2f7;
}
.p-table--plan tbody tr:nth-child(even) th,
.p-table--plan tbody tr:nth-child(even) td {
  background-color: #ffffff;
}
.p-table--plan.u-align-center th,
.p-table--plan.u-align-center td {
  text-align: center;
}
@media (min-width: 30rem) {
  .p-table--plan th,
  .p-table--plan td {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

.p-heading-border {
  border-bottom: 1px solid #ccc;
}

.p-grid {
  display: grid;
  gap: 2rem;
}
.p-grid--gap-24 {
  gap: 1.5rem;
}

.p-btn-link-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.p-btn-link-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #333333;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: #f0f0f0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
}
.p-btn-link-group a:hover {
  text-decoration: none;
  background-color: #e0e0e0;
}

.p-sustainability .p-image-text-block__text h3 {
  color: #3d5a6e;
  font-size: 1.4rem;
}
@media (min-width: 30rem) {
  .p-sustainability .p-image-text-block__text h3 {
    font-size: 1.6rem;
  }
}

.p-recruit .p-image-text-block__text h3 {
  color: #0065b0;
  font-size: 1.6rem;
}

.p-news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .p-news-meta {
    margin-bottom: 4rem;
  }
}
.p-news-meta__date {
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 48rem) {
  .p-news-meta__date {
    font-size: 0.875rem;
  }
}
.p-news-meta__category {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  padding: 0.2rem 1.6rem;
  color: #0065B0;
  background-color: rgba(61, 90, 110, 0.1019607843);
  border: none;
}
@media (min-width: 48rem) {
  .p-news-meta__category {
    font-size: 0.875rem;
  }
}

.p-news-content {
  max-width: 61.5rem;
  margin-inline: -1rem;
  padding: 2.5rem 1rem;
  background-color: #fff;
  overflow-wrap: anywhere;
  /* 3カラムの場合のgapの幅 */
  /* リスト */
}
@media (min-width: 48rem) {
  .p-news-content {
    margin-inline: auto;
    padding: 4.375rem 4.25rem;
  }
}
.p-news-content h2.wp-block-heading {
  position: relative;
  font-size: 1.875rem;
  text-align: left;
  padding-left: 0.9375rem;
  margin-bottom: 3.875rem;
  border-left: 5px solid #3D5A6E;
}
.p-news-content h2.wp-block-heading::after {
  position: absolute;
  left: -0.3125rem;
  bottom: -2.25rem;
  display: block;
  content: "";
  width: calc(100% + 0.3125rem);
  height: 0.125rem;
  background-color: #3D5A6E;
}
.p-news-content h3.wp-block-heading {
  font-size: 1.5rem;
  margin: 4.3125rem 0 1.75rem;
}
.p-news-content h4.wp-block-heading {
  font-size: 1.125rem;
}
@media (min-width: 48rem) {
  .p-news-content h4.wp-block-heading {
    font-size: 1.25rem;
  }
}
.p-news-content h5.wp-block-heading {
  font-size: 1rem;
  margin-top: 0;
  letter-spacing: 0.2em;
  line-height: 2;
}
.p-news-content p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
@media (min-width: 48rem) {
  .p-news-content p {
    font-size: 1rem;
  }
}
.p-news-content p em {
  color: #0065B0;
  font-style: initial;
  font-weight: 700;
}
.p-news-content p span {
  background-color: transparent;
  font-weight: 500;
}
.p-news-content p a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-content p a:hover {
    text-decoration: none;
  }
}
.p-news-content p.has-small-font-size {
  font-size: 0.75rem;
}
.p-news-content p.has-medium-font-size {
  font-size: 1rem !important;
}
.p-news-content p.has-large-font-size {
  font-size: 1.125rem;
}
.p-news-content p.has-x-large-font-size {
  font-size: 1.3125rem;
}
.p-news-content .wp-block-image {
  margin-bottom: 1rem;
}
.p-news-content .wp-block-image img {
  width: 100%;
}
.p-news-content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 4.85%;
}
@media (min-width: 48rem) {
  .p-news-content .wp-block-columns {
    margin-bottom: 4.375rem;
  }
}
.p-news-content .wp-block-column {
  flex: 1;
}
.p-news-content .wp-block-columns:has(> .wp-block-column:nth-child(3):last-child) {
  gap: 3%;
}
.p-news-content .wp-block-column h4.wp-block-heading {
  margin: 0 0 1.75rem;
}
.p-news-content .wp-block-list:not(.u-bullet--small) li {
  margin-left: 1.2em;
  text-indent: -0.6em;
}

.p-news-related {
  max-width: 61.5rem;
  margin: auto;
}
.p-news-related .c-heading--section {
  margin-bottom: 4rem;
}
.p-news-related .p-news-card__content {
  gap: 0;
}
.p-news-related .p-news-card__date {
  margin-bottom: 0.5rem;
}
.p-news-related .p-news-card__title {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 30rem) {
  .p-news-related .p-news-card__title {
    font-size: 1rem;
    font-weight: 500;
  }
}
.p-news-related .p-news-card__label .c-label {
  padding: 0.125rem 1rem;
  color: #0065b0;
}

.u-bullet--small {
  list-style: none;
  padding: 0;
}

.u-bullet--small li {
  list-style: none !important;
  position: relative;
  margin-left: 0 !important;
  padding-left: 0.8em;
}

.u-bullet--small li::marker {
  display: none;
}

.u-bullet--small li::before {
  content: "";
  background: #333;
  border-radius: 100%;
  width: 0.25rem;
  height: 0.25rem;
  display: block;
  position: absolute;
  left: 0;
  margin-top: 0.75em;
}

.u-separator-top-bottom {
  margin-block: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
@media (min-width: 48rem) {
  .u-separator-top-bottom {
    margin-block: 5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

/* 旧エディタ調整 */
.p-news-standard-editor {
  color: #323d4b;
}
.p-news-standard-editor p {
  margin-bottom: 1.4em;
}
.p-news-standard-editor a {
  color: #1183c0;
}

.p-sitemap {
  -webkit-text-size-adjust: 100%;
}
.p-sitemap h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #005bab;
}
@media (min-width: 30rem) {
  .p-sitemap h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}
.p-sitemap h2 a {
  color: #0065b0;
  transition: all 0.2s ease-in-out;
}
.p-sitemap h2 a::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: text-top;
  width: 1rem;
  height: 1rem;
  vertical-align: baseline;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjE3OTcgNS4wMTMzMkMxNC4zNzY2IDQuODIwMDQgMTQuNjkzMyA0LjgyMjQ5IDE0Ljg4NjcgNS4wMTkxOEwxOS40MTcgOS42MzUzOUMxOS42MDc1IDkuODI5ODEgMTkuNjA3NSAxMC4xNDEyIDE5LjQxNyAxMC4zMzU2TDE0Ljg4NjcgMTQuOTUxOEMxNC42OTMzIDE1LjE0ODUgMTQuMzc2NiAxNS4xNTA5IDE0LjE3OTcgMTQuOTU3N0MxMy45ODMgMTQuNzY0MiAxMy45ODA1IDE0LjQ0NzYgMTQuMTczOCAxNC4yNTA2TDE3Ljg4NDggMTAuNDY5NEgxQzAuNzIzODU4IDEwLjQ2OTQgMC41IDEwLjI0NTUgMC41IDkuOTY5MzhDMC41MDAyMTEgOS42OTM0MSAwLjcyMzk4OCA5LjQ2OTM4IDEgOS40NjkzOEgxNy44NTM1TDE0LjE3MzggNS43MjAzNUMxMy45ODA1IDUuNTIzMzkgMTMuOTgzIDUuMjA2NzcgMTQuMTc5NyA1LjAxMzMyWiIgZmlsbD0iIzMyM0U0QyIvPjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.p-sitemap h2 a[target=_blank]::after {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgNi43OTAwNFYxNEgxNS42NTA0VjE1SDNWNi43OTAwNEg0Wk0xNy41IDVWMTIuMTY5OUg1LjkxMDE2VjVIMTcuNVpNNi45MTAxNiAxMS4xNjk5SDE2LjVWNkg2LjkxMDE2VjExLjE2OTlaIiBmaWxsPSIjMzIzRTRDIi8+PC9zdmc+");
}
@media (hover: hover) and (pointer: fine) {
  .p-sitemap h2 a:hover {
    color: rgb(0, 71.7329545455, 125);
  }
}

.p-inquiry__box {
  margin-bottom: 3.5rem;
  padding: 2rem 1.5rem;
  border-radius: 0.25rem;
  background-color: #E9EBEF;
}
@media (min-width: 48rem) {
  .p-inquiry__box {
    margin-bottom: 7rem;
    padding: 3.5rem 4.5rem;
  }
}
.p-inquiry__box-muted {
  margin-bottom: 5rem;
  padding: 2rem 1.5rem;
  border-radius: 0.125rem;
  background-color: rgba(140, 150, 160, 0.1);
}
@media (min-width: 48rem) {
  .p-inquiry__box-muted {
    padding: 3.5rem 4.5rem 4.5rem;
  }
}
.p-inquiry__confirm {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (min-width: 48rem) {
  .p-inquiry__confirm {
    flex-direction: row;
    align-items: center;
    column-gap: 2.5rem;
  }
}
.p-inquiry__label {
  color: #3d5a6e;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 48rem) {
  .p-inquiry__label {
    width: 15.4375rem;
    flex-shrink: 0;
    font-size: 1rem;
  }
}

.c-label--optional,
.c-label--required {
  justify-content: center;
  min-width: 3.3125rem;
}

.p-inquiry__box-muted p {
  font-size: 1rem;
  line-height: 2.25;
  word-break: break-all;
}
@media (min-width: 768px) {
  .p-inquiry__box-muted p .c-select__options {
    min-width: auto;
  }
}
.p-inquiry__confirm.-top {
  align-items: flex-start;
}
.p-inquiry__confirm .c-text span {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.p-inquiry .c-input > span,
.p-inquiry .c-textarea > span {
  width: 100%;
}
.p-inquiry textarea {
  resize: vertical;
}
.p-inquiry .c-input__wrap .c-text {
  display: block;
  margin-bottom: 0.625rem;
}
.p-inquiry .c-textarea__label em {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: normal;
}
.p-inquiry .c-select__dropdown::after {
  content: none;
}
.p-inquiry .c-select__dropdown select {
  height: 3.25rem;
  appearance: auto;
}
.p-inquiry .c-checkbox [data-name=agreement] span {
  margin: 0;
}
.p-inquiry .c-checkbox [data-name=agreement] label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-inquiry .c-checkbox [name="agreement[]"] {
  order: 2;
}
.p-inquiry .c-radio__vertical .wpcf7-form-control,
.p-inquiry .c-radio__vertical .wpcf7-form-control {
  display: flex;
}
.p-inquiry .c-radio__vertical .wpcf7-form-control {
  flex-flow: column;
}
.p-inquiry .c-radio__horizontal .wpcf7-form-control {
  display: flex;
  gap: 1rem;
}
.p-inquiry .c-error__text {
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.625rem;
}
.p-inquiry .c-input__name.-set {
  gap: 1.5rem 1rem;
}
.p-inquiry .c-input__zip {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.p-inquiry .c-input__zip > * {
  display: grid;
  grid-template-columns: 5.9375rem 1fr;
  gap: 1rem;
  font-size: 0.9rem;
}
@media (max-width: 300px) {
  .p-inquiry .c-input__zip > * {
    grid-template-columns: 1fr;
  }
}
.p-inquiry .c-input__zip input {
  height: 52px;
}
.p-inquiry .c-input__zip-title {
  padding-top: 8px;
}
.p-inquiry .c-input__zip .wpcf7-not-valid-tip {
  font-size: 1rem;
}
.p-inquiry .c-button-wrap {
  display: inline-block;
  position: relative;
}
.p-inquiry .c-button-wrap::after {
  content: "";
  display: block;
  top: calc(50% - 0.625rem);
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjcwMzcgNi4xMzUxOEMxNC44OTM3IDUuOTU0OTQgMTUuMjAxOCA1Ljk1NDk1IDE1LjM5MTkgNi4xMzUxOEwyMCAxMC41MDU1TDE1LjM5MTkgMTQuODY1QzE1LjIwMTcgMTUuMDQ0OSAxNC44OTM1IDE1LjA0NTEgMTQuNzAzNyAxNC44NjVDMTQuNTE0IDE0LjY4NDcgMTQuNTEzOCAxNC4zOTI0IDE0LjcwMzcgMTQuMjEyM0wxOC4xMzUxIDEwLjk2NjFIMC40ODY2NjlDMC4yMTc4ODkgMTAuOTY2MSAwIDEwLjc1OTUgMCAxMC41MDQ2QzYuMTY5NGUtMDUgMTAuMjQ5NyAwLjIxNzkyNyAxMC4wNDMgMC40ODY2NjkgMTAuMDQzSDE4LjEzNkwxNC43MDM3IDYuNzg3ODRDMTQuNTEzNiA2LjYwNzYgMTQuNTEzNiA2LjMxNTQyIDE0LjcwMzcgNi4xMzUxOFoiIGZpbGw9IiMzMjNFNEMiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  color: #FFF;
  background-color: currentColor;
}
.p-inquiry .c-button-wrap .wpcf7-spinner {
  position: absolute;
  bottom: -2.5rem;
  left: -2rem;
  margin: 0;
}
.p-inquiry .confirm_button,
.p-inquiry .c-button--back,
.p-inquiry .wpcf7-submit {
  justify-content: center;
  position: relative;
  font-weight: 700;
  padding-inline: 2rem;
}
.p-inquiry .c-button-group {
  text-align: center;
}
.p-inquiry .c-button-group .c-button:disabled {
  color: #8c96a0;
  background: rgba(140, 150, 160, 0.1);
}
.p-inquiry .c-button-group .c-button--back {
  color: var(--button-color-secondary);
}
.p-inquiry .c-button--back::after {
  position: absolute;
  left: 0.5rem;
}
.p-inquiry .confirm_button::after,
.p-inquiry .c-button-wrap::after {
  position: absolute;
  right: 0.5rem;
}
.p-inquiry .confirm_button[disabled] {
  opacity: 1;
  cursor: not-allowed;
}
.p-inquiry .-confirm {
  display: none;
}
.p-inquiry .-confirm .c-input__zip {
  display: block;
}
.p-inquiry .-confirm .c-input__zip > * {
  display: block;
}
.p-inquiry .wpcf7-form-control-wrap {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
.p-inquiry .wpcf7-form-control-wrap input::-webkit-contacts-auto-fill-button,
.p-inquiry .wpcf7-form-control-wrap textarea::-webkit-contacts-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
.p-inquiry .wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}
.p-inquiry #attachment .wpcf7-form-control-wrap {
  flex-flow: wrap;
  align-items: center;
}
.p-inquiry #attachment .cf7-remove-btn {
  display: inline-block;
  height: 1.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75rem;
  cursor: pointer;
}

.grecaptcha-badge {
  bottom: 100px !important;
}

@media (max-width: 768px) {
  .c-input__text,
  .c-textarea__text,
  .c-select__options {
    padding: 0.75rem;
  }
  .c-input__name {
    display: grid;
    grid-template-columns: calc(50% - 0.25rem) calc(50% - 0.25rem);
  }
  #attachment {
    display: flex;
    flex-flow: column;
  }
  .c-input__zip > * {
    display: block;
  }
  .c-button-wrap {
    position: relative;
    width: 100%;
  }
  .c-button-wrap .wpcf7-spinner {
    position: absolute;
    bottom: -1.75rem;
    left: 50% !important;
    transform: translateX(-50%);
    margin: 0;
  }
  .c-input__name.-set {
    gap: 0.75rem 0.5rem;
  }
  #attachment .wpcf7-file {
    max-width: 88.13559%;
    font-size: 0.875rem;
  }
}
/* --- interview --- */
.p-interview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.75em;
}
@media (min-width: 30rem) {
  .p-interview-meta {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 2.5rem;
  }
}
.p-interview-date {
  width: 100%;
  font-family: "Albert Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
}
@media (min-width: 30rem) {
  .p-interview-date {
    width: fit-content;
  }
}
.p-interview-category {
  width: calc(50% - 0.3125rem);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.8 !important;
  text-align: center;
  padding: 0.2rem;
  background-color: rgba(61, 90, 110, 0.1019607843);
  border: none !important;
}
@media (min-width: 30rem) {
  .p-interview-category {
    width: 11.25rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.8 !important;
    text-align: center;
    padding: 0.2rem;
    margin-left: 0.90625rem !important;
  }
}
.p-interview-category:empty {
  display: none;
}
.p-interview-hero-content {
  margin-bottom: 3.125rem;
}
@media (min-width: 30rem) {
  .p-interview-hero-content {
    margin-bottom: 5rem;
  }
}
.p-interview-hero-image {
  display: block;
  margin-bottom: 1.75em;
}
@media (min-width: 30rem) {
  .p-interview-hero-image {
    margin-bottom: 4em;
  }
}
.p-interview-hero-image img {
  width: 100%;
}
.p-interview-hero-title {
  font-size: 1.5625rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 30rem) {
  .p-interview-hero-title {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.p-interview-hero-text {
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (min-width: 30rem) {
  .p-interview-hero-text {
    font-size: 1rem;
  }
}
.p-interview-content h3.wp-block-heading {
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.16em;
  margin-bottom: 1.5625rem;
}
@media (min-width: 30rem) {
  .p-interview-content h3.wp-block-heading {
    font-size: 1.25rem;
    line-height: 2.05;
    margin-bottom: 2rem;
  }
}
.p-interview-content h4.wp-block-heading {
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
@media (min-width: 30rem) {
  .p-interview-content h4.wp-block-heading {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1rem;
  }
}
.p-interview-content p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2rem;
}
@media (min-width: 30rem) {
  .p-interview-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.p-interview-content p:last-of-type {
  margin-bottom: 0;
}
.p-interview-content figure {
  margin-bottom: 2rem;
}
@media (min-width: 30rem) {
  .p-interview-content figure {
    margin-bottom: 4rem;
  }
}
.p-interview-profile {
  max-width: 60.3125rem;
  margin: auto;
}
@media (min-width: 30rem) {
  .p-interview-profile {
    display: flex;
    align-items: center;
    flex-direction: initial;
    gap: 2.5rem;
  }
}
.p-interview-profile__image {
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 383/215;
}
@media (min-width: 30rem) {
  .p-interview-profile__image {
    flex-basis: 40.5%;
    margin-bottom: 0;
  }
}
.p-interview-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview-profile__text p {
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media (min-width: 30rem) {
  .p-interview-profile__text p {
    font-size: 1rem;
  }
}
.p-interview-profile__role {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #323d4b;
}
.p-interview-new-articles {
  max-width: 60.3125rem;
  margin: auto;
}
.p-interview-new-articles .c-heading--section {
  margin-bottom: 4rem;
}
.p-interview-new-articles .p-news-card {
  gap: 2.625rem;
}
@media (min-width: 48rem) {
  .p-interview-new-articles .p-news-card__item {
    gap: 1rem;
  }
}
.p-interview-new-articles .p-news-card__content {
  gap: 0;
}
.p-interview-new-articles .p-news-card__date {
  margin-bottom: 0.5rem;
}
.p-interview-new-articles .p-news-card__title {
  margin-bottom: 1.75rem;
}

.p-policy__pmark {
  width: auto;
}
.p-policy__iframe {
  width: 100%;
  height: 37.5rem;
  border: 1px solid #0065b0;
  border-radius: 0.25rem;
}
@media (min-width: 64rem) {
  .p-policy__iframe {
    height: 50rem;
  }
}

/* ==== from _customer-harassment-policy.scss ==== */
.p-customer-harassment-policy .p-date-block {
  text-align: right;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}
.p-customer-harassment-policy .c-text--footnote {
  margin-top: 1.875rem;
  font-size: 0.9rem;
  color: #666666;
  text-align: left;
}

/* ==== from _policy-graph.scss ==== */
.p-security .p-date-block,
.p-humanrights .p-date-block,
.p-customer-harassment-policy .p-date-block {
  text-align: right;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.p-security .c-text--footnote,
.p-customer-harassment-policy .c-text--footnote {
  margin-top: 1.875rem;
  font-size: 0.9rem;
  color: #555;
  text-align: left;
}

.p-humanrights__priority-title, .p-humanrights .p-priority-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

/* ==== from _policy-sections.scss ==== */
.p-policy-list {
  list-style: none;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1.875rem;
}
.p-policy-list__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-policy-list__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0065b0;
  margin-bottom: 0.5rem;
}
.p-policy-list__text {
  line-height: 1.8;
  padding-left: 1em;
}

.p-privacy-statement-list {
  padding-left: 0;
  list-style-type: none;
  counter-reset: policy-counter;
  margin-bottom: 1.5rem;
}
.p-privacy-statement-list li {
  counter-increment: policy-counter;
  font-size: 1rem;
  line-height: 1.8;
}
.p-privacy-statement-list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.p-privacy-statement-list li::before {
  content: "［ " counter(policy-counter) " ］";
  font-weight: 700;
  margin-right: 0.5rem;
}

.p-policy-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0065b0;
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
}

/* ==== from _sitemap.scss (policy sections) ==== */
.p-socialmediapolicy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #323d4b;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 0.9375rem;
  border-bottom: 3px solid #0065b0;
}
@media (min-width: 30rem) {
  .p-socialmediapolicy h2 {
    font-size: 2rem;
  }
}
.p-socialmediapolicy h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0065b0;
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
}
@media (min-width: 30rem) {
  .p-socialmediapolicy h3 {
    font-size: 1.5rem;
  }
}
.p-socialmediapolicy h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5625rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 30rem) {
  .p-socialmediapolicy h4 {
    font-size: 1.25rem;
  }
}
.p-socialmediapolicy p {
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.p-socialmediapolicy ul {
  list-style-position: inside;
  padding-left: 1em;
  margin-bottom: 1.5em;
}
.p-socialmediapolicy li {
  margin-bottom: 0.8em;
  line-height: 1.8;
}

.p-privacypolicy h1,
.p-privacypolicy h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #323d4b;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 30rem) {
  .p-privacypolicy h1,
  .p-privacypolicy h2 {
    font-size: 2rem;
  }
}
@media (min-width: 48rem) {
  .p-privacypolicy h1,
  .p-privacypolicy h2 {
    font-size: 2.5rem;
  }
}
.p-privacypolicy .c-date-block {
  text-align: right;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  color: #555;
}
.p-privacypolicy .p-panel p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}
.p-privacypolicy .p-panel .c-number {
  font-weight: 700;
  margin-right: 0.5rem;
}
.p-privacypolicy .p-panel dl {
  margin-bottom: 1.5rem;
}
.p-privacypolicy .p-panel dt {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0065b0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0065b0;
}
.p-privacypolicy .p-panel dd {
  margin-left: 0;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}
.p-privacypolicy .p-panel dd ul {
  list-style-type: disc;
  margin-left: 1.25rem;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

/* ==== from _security.scss ==== */
.p-security .p-date-block {
  text-align: right;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}
.p-security .c-text--footnote {
  margin-top: 1.875rem;
  font-size: 0.9rem;
  color: #666666;
  text-align: left;
}

/* ==== from _humanrights.scss ==== */
.p-humanrights__date-block, .p-humanrights .p-date-block {
  text-align: right;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}
.p-humanrights__priority-title, .p-humanrights .p-priority-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

/* Utility */
.u {
  /* ===== 非表示コンテンツ ===== */
  /* ===== 背景色 ===== */
  /* ===== タイポグラフィ ===== */
  /* --- フォント --- */
  /* --- フォントサイズ --- */
  /* --- フォントウェイト --- */
  /* --- テキストカラー --- */
  /* --- 水平方向配置 --- */
  /* --- 行の高さ --- */
  /* --- 幅 --- */
  /* --- マージン・パディング --- */
  /* スマホ用 */
  /* --- PC用(768px以上) マージン・パディング --- */
  /* --- 角丸・影 --- */
  /* --- ボーダー --- */
  /* --- ボーダーカラー --- */
  /* --- 区切り線 --- */
  /* --- 改行切り替え --- */
  /* --- 改行調整 --- */
  /* --- スクロール枠 --- */
}
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.u-bg-white {
  background: #ffffff !important;
}
.u-bg-white-opacity-60 {
  background: rgba(255, 255, 255, 0.6) !important;
}
.u-bg-gray {
  background: #f3f4f6 !important;
}
.u-bg-l-blue {
  background: #e0f2fe !important;
}
.u-font-en {
  font-family: "DM Sans", "Hiragino Sans", "メイリオ", sans-serif !important;
  font-weight: 600 !important;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  word-break: break-word;
}
@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .u-font-en {
    font-weight: 500 !important;
  }
}
.u-fz-Xsmall {
  font-size: 0.625rem !important;
}
@media (min-width: 48rem) {
  .u-fz-Xsmall {
    font-size: 0.75rem !important;
  }
}
.u-fz-small {
  font-size: 0.75rem !important;
}
@media (min-width: 48rem) {
  .u-fz-small {
    font-size: 0.875rem !important;
  }
}
.u-fz-medium {
  font-size: 0.875rem !important;
}
@media (min-width: 48rem) {
  .u-fz-medium {
    font-size: 1rem !important;
  }
}
.u-fz-large {
  font-size: 1rem !important;
}
@media (min-width: 48rem) {
  .u-fz-large {
    font-size: 1.125rem !important;
  }
}
.u-fz-14 {
  font-size: 0.875rem !important;
}
.u-fz-16 {
  font-size: 1rem !important;
}
.u-fz-19 {
  font-size: 1.1875rem !important;
}
.u-fz-20 {
  font-size: 1.25rem !important;
}
.u-fw-regular {
  font-weight: 400 !important;
}
.u-fw-medium {
  font-weight: 500 !important;
}
.u-fw-bold {
  font-weight: 700 !important;
}
.u-fc-primary {
  color: #323d4b !important;
}
.u-fc-secondary {
  color: #3d5a6e !important;
}
.u-fc-secondary-light {
  color: rgba(61, 90, 110, 0.15) !important;
}
.u-fc-white {
  color: #ffffff !important;
}
.u-fc-blue {
  color: #0065b0 !important;
}
.u-fc-green {
  color: #00b4a9 !important;
}
.u-fc-red {
  color: #dc0100 !important;
}
.u-fc-muted {
  color: #8c96a0 !important;
}
.u-align-left {
  text-align: left !important;
}
.u-align-center {
  text-align: center !important;
}
.u-align-right {
  text-align: right !important;
}
@media (min-width: 48rem) {
  .u-align-center-pc {
    text-align: center !important;
  }
}
.u-lh-XXsmall {
  line-height: 1;
}
.u-lh-Xsmall {
  line-height: 1.25;
}
.u-lh-small {
  line-height: 1.5;
}
.u-lh-medium {
  line-height: 1.75;
}
.u-lh-large {
  line-height: 2;
}
.u-w-full {
  width: 100% !important;
}
.u-w-15per {
  width: 15% !important;
}
.u-w-25per {
  width: 25% !important;
}
.u-w-30per {
  width: 30% !important;
}
.u-max-w900 {
  max-width: 56.25rem !important;
  margin-inline: auto !important;
}
.u-m-block-0 {
  margin-block: 0 !important;
}
.u-m-block-2 {
  margin-block: 0.125rem !important;
}
.u-m-block-4 {
  margin-block: 0.25rem !important;
}
.u-m-block-8 {
  margin-block: 0.5rem !important;
}
.u-m-block-10 {
  margin-block: 0.625rem !important;
}
.u-m-block-16 {
  margin-block: 1rem !important;
}
.u-m-block-20 {
  margin-block: 1.25rem !important;
}
.u-m-block-24 {
  margin-block: 1.5rem !important;
}
.u-m-block-30 {
  margin-block: 1.875rem !important;
}
.u-m-block-32 {
  margin-block: 2rem !important;
}
.u-m-block-40 {
  margin-block: 2.5rem !important;
}
.u-m-block-48 {
  margin-block: 3rem !important;
}
.u-m-block-50 {
  margin-block: 3.125rem !important;
}
.u-m-block-56 {
  margin-block: 3.5rem !important;
}
.u-m-block-60 {
  margin-block: 3.75rem !important;
}
.u-m-block-64 {
  margin-block: 4rem !important;
}
.u-m-block-70 {
  margin-block: 4.375rem !important;
}
.u-m-block-72 {
  margin-block: 4.5rem !important;
}
.u-m-block-80 {
  margin-block: 5rem !important;
}
.u-m-block-88 {
  margin-block: 5.5rem !important;
}
.u-m-block-90 {
  margin-block: 5.625rem !important;
}
.u-m-block-96 {
  margin-block: 6rem !important;
}
.u-m-block-100 {
  margin-block: 6.25rem !important;
}
.u-m-block-104 {
  margin-block: 6.5rem !important;
}
.u-m-block-110 {
  margin-block: 6.875rem !important;
}
.u-m-block-112 {
  margin-block: 7rem !important;
}
.u-m-block-120 {
  margin-block: 7.5rem !important;
}
.u-m-block-128 {
  margin-block: 8rem !important;
}
.u-m-block-130 {
  margin-block: 8.125rem !important;
}
.u-m-block-136 {
  margin-block: 8.5rem !important;
}
.u-m-block-140 {
  margin-block: 8.75rem !important;
}
.u-m-block-144 {
  margin-block: 9rem !important;
}
.u-m-block-150 {
  margin-block: 9.375rem !important;
}
.u-m-block-152 {
  margin-block: 9.5rem !important;
}
.u-m-block-160 {
  margin-block: 10rem !important;
}
.u-m-inline-0 {
  margin-inline: 0 !important;
}
.u-m-inline-2 {
  margin-inline: 0.125rem !important;
}
.u-m-inline-4 {
  margin-inline: 0.25rem !important;
}
.u-m-inline-8 {
  margin-inline: 0.5rem !important;
}
.u-m-inline-10 {
  margin-inline: 0.625rem !important;
}
.u-m-inline-16 {
  margin-inline: 1rem !important;
}
.u-m-inline-20 {
  margin-inline: 1.25rem !important;
}
.u-m-inline-24 {
  margin-inline: 1.5rem !important;
}
.u-m-inline-30 {
  margin-inline: 1.875rem !important;
}
.u-m-inline-32 {
  margin-inline: 2rem !important;
}
.u-m-inline-40 {
  margin-inline: 2.5rem !important;
}
.u-m-inline-48 {
  margin-inline: 3rem !important;
}
.u-m-inline-50 {
  margin-inline: 3.125rem !important;
}
.u-m-inline-56 {
  margin-inline: 3.5rem !important;
}
.u-m-inline-60 {
  margin-inline: 3.75rem !important;
}
.u-m-inline-64 {
  margin-inline: 4rem !important;
}
.u-m-inline-70 {
  margin-inline: 4.375rem !important;
}
.u-m-inline-72 {
  margin-inline: 4.5rem !important;
}
.u-m-inline-80 {
  margin-inline: 5rem !important;
}
.u-m-inline-88 {
  margin-inline: 5.5rem !important;
}
.u-m-inline-90 {
  margin-inline: 5.625rem !important;
}
.u-m-inline-96 {
  margin-inline: 6rem !important;
}
.u-m-inline-100 {
  margin-inline: 6.25rem !important;
}
.u-m-inline-104 {
  margin-inline: 6.5rem !important;
}
.u-m-inline-110 {
  margin-inline: 6.875rem !important;
}
.u-m-inline-112 {
  margin-inline: 7rem !important;
}
.u-m-inline-120 {
  margin-inline: 7.5rem !important;
}
.u-m-inline-128 {
  margin-inline: 8rem !important;
}
.u-m-inline-130 {
  margin-inline: 8.125rem !important;
}
.u-m-inline-136 {
  margin-inline: 8.5rem !important;
}
.u-m-inline-140 {
  margin-inline: 8.75rem !important;
}
.u-m-inline-144 {
  margin-inline: 9rem !important;
}
.u-m-inline-150 {
  margin-inline: 9.375rem !important;
}
.u-m-inline-152 {
  margin-inline: 9.5rem !important;
}
.u-m-inline-160 {
  margin-inline: 10rem !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-2 {
  margin-top: 0.125rem !important;
}
.u-mt-4 {
  margin-top: 0.25rem !important;
}
.u-mt-8 {
  margin-top: 0.5rem !important;
}
.u-mt-10 {
  margin-top: 0.625rem !important;
}
.u-mt-16 {
  margin-top: 1rem !important;
}
.u-mt-20 {
  margin-top: 1.25rem !important;
}
.u-mt-24 {
  margin-top: 1.5rem !important;
}
.u-mt-30 {
  margin-top: 1.875rem !important;
}
.u-mt-32 {
  margin-top: 2rem !important;
}
.u-mt-40 {
  margin-top: 2.5rem !important;
}
.u-mt-48 {
  margin-top: 3rem !important;
}
.u-mt-50 {
  margin-top: 3.125rem !important;
}
.u-mt-56 {
  margin-top: 3.5rem !important;
}
.u-mt-60 {
  margin-top: 3.75rem !important;
}
.u-mt-64 {
  margin-top: 4rem !important;
}
.u-mt-70 {
  margin-top: 4.375rem !important;
}
.u-mt-72 {
  margin-top: 4.5rem !important;
}
.u-mt-80 {
  margin-top: 5rem !important;
}
.u-mt-88 {
  margin-top: 5.5rem !important;
}
.u-mt-90 {
  margin-top: 5.625rem !important;
}
.u-mt-96 {
  margin-top: 6rem !important;
}
.u-mt-100 {
  margin-top: 6.25rem !important;
}
.u-mt-104 {
  margin-top: 6.5rem !important;
}
.u-mt-110 {
  margin-top: 6.875rem !important;
}
.u-mt-112 {
  margin-top: 7rem !important;
}
.u-mt-120 {
  margin-top: 7.5rem !important;
}
.u-mt-128 {
  margin-top: 8rem !important;
}
.u-mt-130 {
  margin-top: 8.125rem !important;
}
.u-mt-136 {
  margin-top: 8.5rem !important;
}
.u-mt-140 {
  margin-top: 8.75rem !important;
}
.u-mt-144 {
  margin-top: 9rem !important;
}
.u-mt-150 {
  margin-top: 9.375rem !important;
}
.u-mt-152 {
  margin-top: 9.5rem !important;
}
.u-mt-160 {
  margin-top: 10rem !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-2 {
  margin-right: 0.125rem !important;
}
.u-mr-4 {
  margin-right: 0.25rem !important;
}
.u-mr-8 {
  margin-right: 0.5rem !important;
}
.u-mr-10 {
  margin-right: 0.625rem !important;
}
.u-mr-16 {
  margin-right: 1rem !important;
}
.u-mr-20 {
  margin-right: 1.25rem !important;
}
.u-mr-24 {
  margin-right: 1.5rem !important;
}
.u-mr-30 {
  margin-right: 1.875rem !important;
}
.u-mr-32 {
  margin-right: 2rem !important;
}
.u-mr-40 {
  margin-right: 2.5rem !important;
}
.u-mr-48 {
  margin-right: 3rem !important;
}
.u-mr-50 {
  margin-right: 3.125rem !important;
}
.u-mr-56 {
  margin-right: 3.5rem !important;
}
.u-mr-60 {
  margin-right: 3.75rem !important;
}
.u-mr-64 {
  margin-right: 4rem !important;
}
.u-mr-70 {
  margin-right: 4.375rem !important;
}
.u-mr-72 {
  margin-right: 4.5rem !important;
}
.u-mr-80 {
  margin-right: 5rem !important;
}
.u-mr-88 {
  margin-right: 5.5rem !important;
}
.u-mr-90 {
  margin-right: 5.625rem !important;
}
.u-mr-96 {
  margin-right: 6rem !important;
}
.u-mr-100 {
  margin-right: 6.25rem !important;
}
.u-mr-104 {
  margin-right: 6.5rem !important;
}
.u-mr-110 {
  margin-right: 6.875rem !important;
}
.u-mr-112 {
  margin-right: 7rem !important;
}
.u-mr-120 {
  margin-right: 7.5rem !important;
}
.u-mr-128 {
  margin-right: 8rem !important;
}
.u-mr-130 {
  margin-right: 8.125rem !important;
}
.u-mr-136 {
  margin-right: 8.5rem !important;
}
.u-mr-140 {
  margin-right: 8.75rem !important;
}
.u-mr-144 {
  margin-right: 9rem !important;
}
.u-mr-150 {
  margin-right: 9.375rem !important;
}
.u-mr-152 {
  margin-right: 9.5rem !important;
}
.u-mr-160 {
  margin-right: 10rem !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-2 {
  margin-bottom: 0.125rem !important;
}
.u-mb-4 {
  margin-bottom: 0.25rem !important;
}
.u-mb-8 {
  margin-bottom: 0.5rem !important;
}
.u-mb-10 {
  margin-bottom: 0.625rem !important;
}
.u-mb-16 {
  margin-bottom: 1rem !important;
}
.u-mb-20 {
  margin-bottom: 1.25rem !important;
}
.u-mb-24 {
  margin-bottom: 1.5rem !important;
}
.u-mb-30 {
  margin-bottom: 1.875rem !important;
}
.u-mb-32 {
  margin-bottom: 2rem !important;
}
.u-mb-40 {
  margin-bottom: 2.5rem !important;
}
.u-mb-48 {
  margin-bottom: 3rem !important;
}
.u-mb-50 {
  margin-bottom: 3.125rem !important;
}
.u-mb-56 {
  margin-bottom: 3.5rem !important;
}
.u-mb-60 {
  margin-bottom: 3.75rem !important;
}
.u-mb-64 {
  margin-bottom: 4rem !important;
}
.u-mb-70 {
  margin-bottom: 4.375rem !important;
}
.u-mb-72 {
  margin-bottom: 4.5rem !important;
}
.u-mb-80 {
  margin-bottom: 5rem !important;
}
.u-mb-88 {
  margin-bottom: 5.5rem !important;
}
.u-mb-90 {
  margin-bottom: 5.625rem !important;
}
.u-mb-96 {
  margin-bottom: 6rem !important;
}
.u-mb-100 {
  margin-bottom: 6.25rem !important;
}
.u-mb-104 {
  margin-bottom: 6.5rem !important;
}
.u-mb-110 {
  margin-bottom: 6.875rem !important;
}
.u-mb-112 {
  margin-bottom: 7rem !important;
}
.u-mb-120 {
  margin-bottom: 7.5rem !important;
}
.u-mb-128 {
  margin-bottom: 8rem !important;
}
.u-mb-130 {
  margin-bottom: 8.125rem !important;
}
.u-mb-136 {
  margin-bottom: 8.5rem !important;
}
.u-mb-140 {
  margin-bottom: 8.75rem !important;
}
.u-mb-144 {
  margin-bottom: 9rem !important;
}
.u-mb-150 {
  margin-bottom: 9.375rem !important;
}
.u-mb-152 {
  margin-bottom: 9.5rem !important;
}
.u-mb-160 {
  margin-bottom: 10rem !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-2 {
  margin-left: 0.125rem !important;
}
.u-ml-4 {
  margin-left: 0.25rem !important;
}
.u-ml-8 {
  margin-left: 0.5rem !important;
}
.u-ml-10 {
  margin-left: 0.625rem !important;
}
.u-ml-16 {
  margin-left: 1rem !important;
}
.u-ml-20 {
  margin-left: 1.25rem !important;
}
.u-ml-24 {
  margin-left: 1.5rem !important;
}
.u-ml-30 {
  margin-left: 1.875rem !important;
}
.u-ml-32 {
  margin-left: 2rem !important;
}
.u-ml-40 {
  margin-left: 2.5rem !important;
}
.u-ml-48 {
  margin-left: 3rem !important;
}
.u-ml-50 {
  margin-left: 3.125rem !important;
}
.u-ml-56 {
  margin-left: 3.5rem !important;
}
.u-ml-60 {
  margin-left: 3.75rem !important;
}
.u-ml-64 {
  margin-left: 4rem !important;
}
.u-ml-70 {
  margin-left: 4.375rem !important;
}
.u-ml-72 {
  margin-left: 4.5rem !important;
}
.u-ml-80 {
  margin-left: 5rem !important;
}
.u-ml-88 {
  margin-left: 5.5rem !important;
}
.u-ml-90 {
  margin-left: 5.625rem !important;
}
.u-ml-96 {
  margin-left: 6rem !important;
}
.u-ml-100 {
  margin-left: 6.25rem !important;
}
.u-ml-104 {
  margin-left: 6.5rem !important;
}
.u-ml-110 {
  margin-left: 6.875rem !important;
}
.u-ml-112 {
  margin-left: 7rem !important;
}
.u-ml-120 {
  margin-left: 7.5rem !important;
}
.u-ml-128 {
  margin-left: 8rem !important;
}
.u-ml-130 {
  margin-left: 8.125rem !important;
}
.u-ml-136 {
  margin-left: 8.5rem !important;
}
.u-ml-140 {
  margin-left: 8.75rem !important;
}
.u-ml-144 {
  margin-left: 9rem !important;
}
.u-ml-150 {
  margin-left: 9.375rem !important;
}
.u-ml-152 {
  margin-left: 9.5rem !important;
}
.u-ml-160 {
  margin-left: 10rem !important;
}
.u-p-block-0 {
  padding-block: 0 !important;
}
.u-p-block-2 {
  padding-block: 0.125rem !important;
}
.u-p-block-4 {
  padding-block: 0.25rem !important;
}
.u-p-block-8 {
  padding-block: 0.5rem !important;
}
.u-p-block-10 {
  padding-block: 0.625rem !important;
}
.u-p-block-16 {
  padding-block: 1rem !important;
}
.u-p-block-20 {
  padding-block: 1.25rem !important;
}
.u-p-block-24 {
  padding-block: 1.5rem !important;
}
.u-p-block-30 {
  padding-block: 1.875rem !important;
}
.u-p-block-32 {
  padding-block: 2rem !important;
}
.u-p-block-40 {
  padding-block: 2.5rem !important;
}
.u-p-block-48 {
  padding-block: 3rem !important;
}
.u-p-block-50 {
  padding-block: 3.125rem !important;
}
.u-p-block-56 {
  padding-block: 3.5rem !important;
}
.u-p-block-60 {
  padding-block: 3.75rem !important;
}
.u-p-block-64 {
  padding-block: 4rem !important;
}
.u-p-block-70 {
  padding-block: 4.375rem !important;
}
.u-p-block-72 {
  padding-block: 4.5rem !important;
}
.u-p-block-80 {
  padding-block: 5rem !important;
}
.u-p-block-88 {
  padding-block: 5.5rem !important;
}
.u-p-block-90 {
  padding-block: 5.625rem !important;
}
.u-p-block-96 {
  padding-block: 6rem !important;
}
.u-p-block-100 {
  padding-block: 6.25rem !important;
}
.u-p-block-104 {
  padding-block: 6.5rem !important;
}
.u-p-block-110 {
  padding-block: 6.875rem !important;
}
.u-p-block-112 {
  padding-block: 7rem !important;
}
.u-p-block-120 {
  padding-block: 7.5rem !important;
}
.u-p-block-128 {
  padding-block: 8rem !important;
}
.u-p-block-130 {
  padding-block: 8.125rem !important;
}
.u-p-block-136 {
  padding-block: 8.5rem !important;
}
.u-p-block-140 {
  padding-block: 8.75rem !important;
}
.u-p-block-144 {
  padding-block: 9rem !important;
}
.u-p-block-150 {
  padding-block: 9.375rem !important;
}
.u-p-block-152 {
  padding-block: 9.5rem !important;
}
.u-p-block-160 {
  padding-block: 10rem !important;
}
.u-p-inline-0 {
  padding-inline: 0 !important;
}
.u-p-inline-2 {
  padding-inline: 0.125rem !important;
}
.u-p-inline-4 {
  padding-inline: 0.25rem !important;
}
.u-p-inline-8 {
  padding-inline: 0.5rem !important;
}
.u-p-inline-10 {
  padding-inline: 0.625rem !important;
}
.u-p-inline-16 {
  padding-inline: 1rem !important;
}
.u-p-inline-20 {
  padding-inline: 1.25rem !important;
}
.u-p-inline-24 {
  padding-inline: 1.5rem !important;
}
.u-p-inline-30 {
  padding-inline: 1.875rem !important;
}
.u-p-inline-32 {
  padding-inline: 2rem !important;
}
.u-p-inline-40 {
  padding-inline: 2.5rem !important;
}
.u-p-inline-48 {
  padding-inline: 3rem !important;
}
.u-p-inline-50 {
  padding-inline: 3.125rem !important;
}
.u-p-inline-56 {
  padding-inline: 3.5rem !important;
}
.u-p-inline-60 {
  padding-inline: 3.75rem !important;
}
.u-p-inline-64 {
  padding-inline: 4rem !important;
}
.u-p-inline-70 {
  padding-inline: 4.375rem !important;
}
.u-p-inline-72 {
  padding-inline: 4.5rem !important;
}
.u-p-inline-80 {
  padding-inline: 5rem !important;
}
.u-p-inline-88 {
  padding-inline: 5.5rem !important;
}
.u-p-inline-90 {
  padding-inline: 5.625rem !important;
}
.u-p-inline-96 {
  padding-inline: 6rem !important;
}
.u-p-inline-100 {
  padding-inline: 6.25rem !important;
}
.u-p-inline-104 {
  padding-inline: 6.5rem !important;
}
.u-p-inline-110 {
  padding-inline: 6.875rem !important;
}
.u-p-inline-112 {
  padding-inline: 7rem !important;
}
.u-p-inline-120 {
  padding-inline: 7.5rem !important;
}
.u-p-inline-128 {
  padding-inline: 8rem !important;
}
.u-p-inline-130 {
  padding-inline: 8.125rem !important;
}
.u-p-inline-136 {
  padding-inline: 8.5rem !important;
}
.u-p-inline-140 {
  padding-inline: 8.75rem !important;
}
.u-p-inline-144 {
  padding-inline: 9rem !important;
}
.u-p-inline-150 {
  padding-inline: 9.375rem !important;
}
.u-p-inline-152 {
  padding-inline: 9.5rem !important;
}
.u-p-inline-160 {
  padding-inline: 10rem !important;
}
.u-pt-0 {
  padding-top: 0 !important;
}
.u-pt-2 {
  padding-top: 0.125rem !important;
}
.u-pt-4 {
  padding-top: 0.25rem !important;
}
.u-pt-8 {
  padding-top: 0.5rem !important;
}
.u-pt-10 {
  padding-top: 0.625rem !important;
}
.u-pt-16 {
  padding-top: 1rem !important;
}
.u-pt-20 {
  padding-top: 1.25rem !important;
}
.u-pt-24 {
  padding-top: 1.5rem !important;
}
.u-pt-30 {
  padding-top: 1.875rem !important;
}
.u-pt-32 {
  padding-top: 2rem !important;
}
.u-pt-40 {
  padding-top: 2.5rem !important;
}
.u-pt-48 {
  padding-top: 3rem !important;
}
.u-pt-50 {
  padding-top: 3.125rem !important;
}
.u-pt-56 {
  padding-top: 3.5rem !important;
}
.u-pt-60 {
  padding-top: 3.75rem !important;
}
.u-pt-64 {
  padding-top: 4rem !important;
}
.u-pt-70 {
  padding-top: 4.375rem !important;
}
.u-pt-72 {
  padding-top: 4.5rem !important;
}
.u-pt-80 {
  padding-top: 5rem !important;
}
.u-pt-88 {
  padding-top: 5.5rem !important;
}
.u-pt-90 {
  padding-top: 5.625rem !important;
}
.u-pt-96 {
  padding-top: 6rem !important;
}
.u-pt-100 {
  padding-top: 6.25rem !important;
}
.u-pt-104 {
  padding-top: 6.5rem !important;
}
.u-pt-110 {
  padding-top: 6.875rem !important;
}
.u-pt-112 {
  padding-top: 7rem !important;
}
.u-pt-120 {
  padding-top: 7.5rem !important;
}
.u-pt-128 {
  padding-top: 8rem !important;
}
.u-pt-130 {
  padding-top: 8.125rem !important;
}
.u-pt-136 {
  padding-top: 8.5rem !important;
}
.u-pt-140 {
  padding-top: 8.75rem !important;
}
.u-pt-144 {
  padding-top: 9rem !important;
}
.u-pt-150 {
  padding-top: 9.375rem !important;
}
.u-pt-152 {
  padding-top: 9.5rem !important;
}
.u-pt-160 {
  padding-top: 10rem !important;
}
.u-pr-0 {
  padding-right: 0 !important;
}
.u-pr-2 {
  padding-right: 0.125rem !important;
}
.u-pr-4 {
  padding-right: 0.25rem !important;
}
.u-pr-8 {
  padding-right: 0.5rem !important;
}
.u-pr-10 {
  padding-right: 0.625rem !important;
}
.u-pr-16 {
  padding-right: 1rem !important;
}
.u-pr-20 {
  padding-right: 1.25rem !important;
}
.u-pr-24 {
  padding-right: 1.5rem !important;
}
.u-pr-30 {
  padding-right: 1.875rem !important;
}
.u-pr-32 {
  padding-right: 2rem !important;
}
.u-pr-40 {
  padding-right: 2.5rem !important;
}
.u-pr-48 {
  padding-right: 3rem !important;
}
.u-pr-50 {
  padding-right: 3.125rem !important;
}
.u-pr-56 {
  padding-right: 3.5rem !important;
}
.u-pr-60 {
  padding-right: 3.75rem !important;
}
.u-pr-64 {
  padding-right: 4rem !important;
}
.u-pr-70 {
  padding-right: 4.375rem !important;
}
.u-pr-72 {
  padding-right: 4.5rem !important;
}
.u-pr-80 {
  padding-right: 5rem !important;
}
.u-pr-88 {
  padding-right: 5.5rem !important;
}
.u-pr-90 {
  padding-right: 5.625rem !important;
}
.u-pr-96 {
  padding-right: 6rem !important;
}
.u-pr-100 {
  padding-right: 6.25rem !important;
}
.u-pr-104 {
  padding-right: 6.5rem !important;
}
.u-pr-110 {
  padding-right: 6.875rem !important;
}
.u-pr-112 {
  padding-right: 7rem !important;
}
.u-pr-120 {
  padding-right: 7.5rem !important;
}
.u-pr-128 {
  padding-right: 8rem !important;
}
.u-pr-130 {
  padding-right: 8.125rem !important;
}
.u-pr-136 {
  padding-right: 8.5rem !important;
}
.u-pr-140 {
  padding-right: 8.75rem !important;
}
.u-pr-144 {
  padding-right: 9rem !important;
}
.u-pr-150 {
  padding-right: 9.375rem !important;
}
.u-pr-152 {
  padding-right: 9.5rem !important;
}
.u-pr-160 {
  padding-right: 10rem !important;
}
.u-pb-0 {
  padding-bottom: 0 !important;
}
.u-pb-2 {
  padding-bottom: 0.125rem !important;
}
.u-pb-4 {
  padding-bottom: 0.25rem !important;
}
.u-pb-8 {
  padding-bottom: 0.5rem !important;
}
.u-pb-10 {
  padding-bottom: 0.625rem !important;
}
.u-pb-16 {
  padding-bottom: 1rem !important;
}
.u-pb-20 {
  padding-bottom: 1.25rem !important;
}
.u-pb-24 {
  padding-bottom: 1.5rem !important;
}
.u-pb-30 {
  padding-bottom: 1.875rem !important;
}
.u-pb-32 {
  padding-bottom: 2rem !important;
}
.u-pb-40 {
  padding-bottom: 2.5rem !important;
}
.u-pb-48 {
  padding-bottom: 3rem !important;
}
.u-pb-50 {
  padding-bottom: 3.125rem !important;
}
.u-pb-56 {
  padding-bottom: 3.5rem !important;
}
.u-pb-60 {
  padding-bottom: 3.75rem !important;
}
.u-pb-64 {
  padding-bottom: 4rem !important;
}
.u-pb-70 {
  padding-bottom: 4.375rem !important;
}
.u-pb-72 {
  padding-bottom: 4.5rem !important;
}
.u-pb-80 {
  padding-bottom: 5rem !important;
}
.u-pb-88 {
  padding-bottom: 5.5rem !important;
}
.u-pb-90 {
  padding-bottom: 5.625rem !important;
}
.u-pb-96 {
  padding-bottom: 6rem !important;
}
.u-pb-100 {
  padding-bottom: 6.25rem !important;
}
.u-pb-104 {
  padding-bottom: 6.5rem !important;
}
.u-pb-110 {
  padding-bottom: 6.875rem !important;
}
.u-pb-112 {
  padding-bottom: 7rem !important;
}
.u-pb-120 {
  padding-bottom: 7.5rem !important;
}
.u-pb-128 {
  padding-bottom: 8rem !important;
}
.u-pb-130 {
  padding-bottom: 8.125rem !important;
}
.u-pb-136 {
  padding-bottom: 8.5rem !important;
}
.u-pb-140 {
  padding-bottom: 8.75rem !important;
}
.u-pb-144 {
  padding-bottom: 9rem !important;
}
.u-pb-150 {
  padding-bottom: 9.375rem !important;
}
.u-pb-152 {
  padding-bottom: 9.5rem !important;
}
.u-pb-160 {
  padding-bottom: 10rem !important;
}
.u-pl-0 {
  padding-left: 0 !important;
}
.u-pl-2 {
  padding-left: 0.125rem !important;
}
.u-pl-4 {
  padding-left: 0.25rem !important;
}
.u-pl-8 {
  padding-left: 0.5rem !important;
}
.u-pl-10 {
  padding-left: 0.625rem !important;
}
.u-pl-16 {
  padding-left: 1rem !important;
}
.u-pl-20 {
  padding-left: 1.25rem !important;
}
.u-pl-24 {
  padding-left: 1.5rem !important;
}
.u-pl-30 {
  padding-left: 1.875rem !important;
}
.u-pl-32 {
  padding-left: 2rem !important;
}
.u-pl-40 {
  padding-left: 2.5rem !important;
}
.u-pl-48 {
  padding-left: 3rem !important;
}
.u-pl-50 {
  padding-left: 3.125rem !important;
}
.u-pl-56 {
  padding-left: 3.5rem !important;
}
.u-pl-60 {
  padding-left: 3.75rem !important;
}
.u-pl-64 {
  padding-left: 4rem !important;
}
.u-pl-70 {
  padding-left: 4.375rem !important;
}
.u-pl-72 {
  padding-left: 4.5rem !important;
}
.u-pl-80 {
  padding-left: 5rem !important;
}
.u-pl-88 {
  padding-left: 5.5rem !important;
}
.u-pl-90 {
  padding-left: 5.625rem !important;
}
.u-pl-96 {
  padding-left: 6rem !important;
}
.u-pl-100 {
  padding-left: 6.25rem !important;
}
.u-pl-104 {
  padding-left: 6.5rem !important;
}
.u-pl-110 {
  padding-left: 6.875rem !important;
}
.u-pl-112 {
  padding-left: 7rem !important;
}
.u-pl-120 {
  padding-left: 7.5rem !important;
}
.u-pl-128 {
  padding-left: 8rem !important;
}
.u-pl-130 {
  padding-left: 8.125rem !important;
}
.u-pl-136 {
  padding-left: 8.5rem !important;
}
.u-pl-140 {
  padding-left: 8.75rem !important;
}
.u-pl-144 {
  padding-left: 9rem !important;
}
.u-pl-150 {
  padding-left: 9.375rem !important;
}
.u-pl-152 {
  padding-left: 9.5rem !important;
}
.u-pl-160 {
  padding-left: 10rem !important;
}
@media (min-width: 768px) {
  .u-m-block-0-pc {
    margin-block: 0 !important;
  }
  .u-m-block-2-pc {
    margin-block: 0.125rem !important;
  }
  .u-m-block-4-pc {
    margin-block: 0.25rem !important;
  }
  .u-m-block-8-pc {
    margin-block: 0.5rem !important;
  }
  .u-m-block-10-pc {
    margin-block: 0.625rem !important;
  }
  .u-m-block-16-pc {
    margin-block: 1rem !important;
  }
  .u-m-block-20-pc {
    margin-block: 1.25rem !important;
  }
  .u-m-block-24-pc {
    margin-block: 1.5rem !important;
  }
  .u-m-block-30-pc {
    margin-block: 1.875rem !important;
  }
  .u-m-block-32-pc {
    margin-block: 2rem !important;
  }
  .u-m-block-40-pc {
    margin-block: 2.5rem !important;
  }
  .u-m-block-48-pc {
    margin-block: 3rem !important;
  }
  .u-m-block-50-pc {
    margin-block: 3.125rem !important;
  }
  .u-m-block-56-pc {
    margin-block: 3.5rem !important;
  }
  .u-m-block-60-pc {
    margin-block: 3.75rem !important;
  }
  .u-m-block-64-pc {
    margin-block: 4rem !important;
  }
  .u-m-block-70-pc {
    margin-block: 4.375rem !important;
  }
  .u-m-block-72-pc {
    margin-block: 4.5rem !important;
  }
  .u-m-block-80-pc {
    margin-block: 5rem !important;
  }
  .u-m-block-88-pc {
    margin-block: 5.5rem !important;
  }
  .u-m-block-90-pc {
    margin-block: 5.625rem !important;
  }
  .u-m-block-96-pc {
    margin-block: 6rem !important;
  }
  .u-m-block-100-pc {
    margin-block: 6.25rem !important;
  }
  .u-m-block-104-pc {
    margin-block: 6.5rem !important;
  }
  .u-m-block-110-pc {
    margin-block: 6.875rem !important;
  }
  .u-m-block-112-pc {
    margin-block: 7rem !important;
  }
  .u-m-block-120-pc {
    margin-block: 7.5rem !important;
  }
  .u-m-block-128-pc {
    margin-block: 8rem !important;
  }
  .u-m-block-130-pc {
    margin-block: 8.125rem !important;
  }
  .u-m-block-136-pc {
    margin-block: 8.5rem !important;
  }
  .u-m-block-140-pc {
    margin-block: 8.75rem !important;
  }
  .u-m-block-144-pc {
    margin-block: 9rem !important;
  }
  .u-m-block-150-pc {
    margin-block: 9.375rem !important;
  }
  .u-m-block-152-pc {
    margin-block: 9.5rem !important;
  }
  .u-m-block-160-pc {
    margin-block: 10rem !important;
  }
  .u-m-inline-0-pc {
    margin-inline: 0 !important;
  }
  .u-m-inline-2-pc {
    margin-inline: 0.125rem !important;
  }
  .u-m-inline-4-pc {
    margin-inline: 0.25rem !important;
  }
  .u-m-inline-8-pc {
    margin-inline: 0.5rem !important;
  }
  .u-m-inline-10-pc {
    margin-inline: 0.625rem !important;
  }
  .u-m-inline-16-pc {
    margin-inline: 1rem !important;
  }
  .u-m-inline-20-pc {
    margin-inline: 1.25rem !important;
  }
  .u-m-inline-24-pc {
    margin-inline: 1.5rem !important;
  }
  .u-m-inline-30-pc {
    margin-inline: 1.875rem !important;
  }
  .u-m-inline-32-pc {
    margin-inline: 2rem !important;
  }
  .u-m-inline-40-pc {
    margin-inline: 2.5rem !important;
  }
  .u-m-inline-48-pc {
    margin-inline: 3rem !important;
  }
  .u-m-inline-50-pc {
    margin-inline: 3.125rem !important;
  }
  .u-m-inline-56-pc {
    margin-inline: 3.5rem !important;
  }
  .u-m-inline-60-pc {
    margin-inline: 3.75rem !important;
  }
  .u-m-inline-64-pc {
    margin-inline: 4rem !important;
  }
  .u-m-inline-70-pc {
    margin-inline: 4.375rem !important;
  }
  .u-m-inline-72-pc {
    margin-inline: 4.5rem !important;
  }
  .u-m-inline-80-pc {
    margin-inline: 5rem !important;
  }
  .u-m-inline-88-pc {
    margin-inline: 5.5rem !important;
  }
  .u-m-inline-90-pc {
    margin-inline: 5.625rem !important;
  }
  .u-m-inline-96-pc {
    margin-inline: 6rem !important;
  }
  .u-m-inline-100-pc {
    margin-inline: 6.25rem !important;
  }
  .u-m-inline-104-pc {
    margin-inline: 6.5rem !important;
  }
  .u-m-inline-110-pc {
    margin-inline: 6.875rem !important;
  }
  .u-m-inline-112-pc {
    margin-inline: 7rem !important;
  }
  .u-m-inline-120-pc {
    margin-inline: 7.5rem !important;
  }
  .u-m-inline-128-pc {
    margin-inline: 8rem !important;
  }
  .u-m-inline-130-pc {
    margin-inline: 8.125rem !important;
  }
  .u-m-inline-136-pc {
    margin-inline: 8.5rem !important;
  }
  .u-m-inline-140-pc {
    margin-inline: 8.75rem !important;
  }
  .u-m-inline-144-pc {
    margin-inline: 9rem !important;
  }
  .u-m-inline-150-pc {
    margin-inline: 9.375rem !important;
  }
  .u-m-inline-152-pc {
    margin-inline: 9.5rem !important;
  }
  .u-m-inline-160-pc {
    margin-inline: 10rem !important;
  }
  .u-mt-0-pc {
    margin-top: 0 !important;
  }
  .u-mt-2-pc {
    margin-top: 0.125rem !important;
  }
  .u-mt-4-pc {
    margin-top: 0.25rem !important;
  }
  .u-mt-8-pc {
    margin-top: 0.5rem !important;
  }
  .u-mt-10-pc {
    margin-top: 0.625rem !important;
  }
  .u-mt-16-pc {
    margin-top: 1rem !important;
  }
  .u-mt-20-pc {
    margin-top: 1.25rem !important;
  }
  .u-mt-24-pc {
    margin-top: 1.5rem !important;
  }
  .u-mt-30-pc {
    margin-top: 1.875rem !important;
  }
  .u-mt-32-pc {
    margin-top: 2rem !important;
  }
  .u-mt-40-pc {
    margin-top: 2.5rem !important;
  }
  .u-mt-48-pc {
    margin-top: 3rem !important;
  }
  .u-mt-50-pc {
    margin-top: 3.125rem !important;
  }
  .u-mt-56-pc {
    margin-top: 3.5rem !important;
  }
  .u-mt-60-pc {
    margin-top: 3.75rem !important;
  }
  .u-mt-64-pc {
    margin-top: 4rem !important;
  }
  .u-mt-70-pc {
    margin-top: 4.375rem !important;
  }
  .u-mt-72-pc {
    margin-top: 4.5rem !important;
  }
  .u-mt-80-pc {
    margin-top: 5rem !important;
  }
  .u-mt-88-pc {
    margin-top: 5.5rem !important;
  }
  .u-mt-90-pc {
    margin-top: 5.625rem !important;
  }
  .u-mt-96-pc {
    margin-top: 6rem !important;
  }
  .u-mt-100-pc {
    margin-top: 6.25rem !important;
  }
  .u-mt-104-pc {
    margin-top: 6.5rem !important;
  }
  .u-mt-110-pc {
    margin-top: 6.875rem !important;
  }
  .u-mt-112-pc {
    margin-top: 7rem !important;
  }
  .u-mt-120-pc {
    margin-top: 7.5rem !important;
  }
  .u-mt-128-pc {
    margin-top: 8rem !important;
  }
  .u-mt-130-pc {
    margin-top: 8.125rem !important;
  }
  .u-mt-136-pc {
    margin-top: 8.5rem !important;
  }
  .u-mt-140-pc {
    margin-top: 8.75rem !important;
  }
  .u-mt-144-pc {
    margin-top: 9rem !important;
  }
  .u-mt-150-pc {
    margin-top: 9.375rem !important;
  }
  .u-mt-152-pc {
    margin-top: 9.5rem !important;
  }
  .u-mt-160-pc {
    margin-top: 10rem !important;
  }
  .u-mr-0-pc {
    margin-right: 0 !important;
  }
  .u-mr-2-pc {
    margin-right: 0.125rem !important;
  }
  .u-mr-4-pc {
    margin-right: 0.25rem !important;
  }
  .u-mr-8-pc {
    margin-right: 0.5rem !important;
  }
  .u-mr-10-pc {
    margin-right: 0.625rem !important;
  }
  .u-mr-16-pc {
    margin-right: 1rem !important;
  }
  .u-mr-20-pc {
    margin-right: 1.25rem !important;
  }
  .u-mr-24-pc {
    margin-right: 1.5rem !important;
  }
  .u-mr-30-pc {
    margin-right: 1.875rem !important;
  }
  .u-mr-32-pc {
    margin-right: 2rem !important;
  }
  .u-mr-40-pc {
    margin-right: 2.5rem !important;
  }
  .u-mr-48-pc {
    margin-right: 3rem !important;
  }
  .u-mr-50-pc {
    margin-right: 3.125rem !important;
  }
  .u-mr-56-pc {
    margin-right: 3.5rem !important;
  }
  .u-mr-60-pc {
    margin-right: 3.75rem !important;
  }
  .u-mr-64-pc {
    margin-right: 4rem !important;
  }
  .u-mr-70-pc {
    margin-right: 4.375rem !important;
  }
  .u-mr-72-pc {
    margin-right: 4.5rem !important;
  }
  .u-mr-80-pc {
    margin-right: 5rem !important;
  }
  .u-mr-88-pc {
    margin-right: 5.5rem !important;
  }
  .u-mr-90-pc {
    margin-right: 5.625rem !important;
  }
  .u-mr-96-pc {
    margin-right: 6rem !important;
  }
  .u-mr-100-pc {
    margin-right: 6.25rem !important;
  }
  .u-mr-104-pc {
    margin-right: 6.5rem !important;
  }
  .u-mr-110-pc {
    margin-right: 6.875rem !important;
  }
  .u-mr-112-pc {
    margin-right: 7rem !important;
  }
  .u-mr-120-pc {
    margin-right: 7.5rem !important;
  }
  .u-mr-128-pc {
    margin-right: 8rem !important;
  }
  .u-mr-130-pc {
    margin-right: 8.125rem !important;
  }
  .u-mr-136-pc {
    margin-right: 8.5rem !important;
  }
  .u-mr-140-pc {
    margin-right: 8.75rem !important;
  }
  .u-mr-144-pc {
    margin-right: 9rem !important;
  }
  .u-mr-150-pc {
    margin-right: 9.375rem !important;
  }
  .u-mr-152-pc {
    margin-right: 9.5rem !important;
  }
  .u-mr-160-pc {
    margin-right: 10rem !important;
  }
  .u-mb-0-pc {
    margin-bottom: 0 !important;
  }
  .u-mb-2-pc {
    margin-bottom: 0.125rem !important;
  }
  .u-mb-4-pc {
    margin-bottom: 0.25rem !important;
  }
  .u-mb-8-pc {
    margin-bottom: 0.5rem !important;
  }
  .u-mb-10-pc {
    margin-bottom: 0.625rem !important;
  }
  .u-mb-16-pc {
    margin-bottom: 1rem !important;
  }
  .u-mb-20-pc {
    margin-bottom: 1.25rem !important;
  }
  .u-mb-24-pc {
    margin-bottom: 1.5rem !important;
  }
  .u-mb-30-pc {
    margin-bottom: 1.875rem !important;
  }
  .u-mb-32-pc {
    margin-bottom: 2rem !important;
  }
  .u-mb-40-pc {
    margin-bottom: 2.5rem !important;
  }
  .u-mb-48-pc {
    margin-bottom: 3rem !important;
  }
  .u-mb-50-pc {
    margin-bottom: 3.125rem !important;
  }
  .u-mb-56-pc {
    margin-bottom: 3.5rem !important;
  }
  .u-mb-60-pc {
    margin-bottom: 3.75rem !important;
  }
  .u-mb-64-pc {
    margin-bottom: 4rem !important;
  }
  .u-mb-70-pc {
    margin-bottom: 4.375rem !important;
  }
  .u-mb-72-pc {
    margin-bottom: 4.5rem !important;
  }
  .u-mb-80-pc {
    margin-bottom: 5rem !important;
  }
  .u-mb-88-pc {
    margin-bottom: 5.5rem !important;
  }
  .u-mb-90-pc {
    margin-bottom: 5.625rem !important;
  }
  .u-mb-96-pc {
    margin-bottom: 6rem !important;
  }
  .u-mb-100-pc {
    margin-bottom: 6.25rem !important;
  }
  .u-mb-104-pc {
    margin-bottom: 6.5rem !important;
  }
  .u-mb-110-pc {
    margin-bottom: 6.875rem !important;
  }
  .u-mb-112-pc {
    margin-bottom: 7rem !important;
  }
  .u-mb-120-pc {
    margin-bottom: 7.5rem !important;
  }
  .u-mb-128-pc {
    margin-bottom: 8rem !important;
  }
  .u-mb-130-pc {
    margin-bottom: 8.125rem !important;
  }
  .u-mb-136-pc {
    margin-bottom: 8.5rem !important;
  }
  .u-mb-140-pc {
    margin-bottom: 8.75rem !important;
  }
  .u-mb-144-pc {
    margin-bottom: 9rem !important;
  }
  .u-mb-150-pc {
    margin-bottom: 9.375rem !important;
  }
  .u-mb-152-pc {
    margin-bottom: 9.5rem !important;
  }
  .u-mb-160-pc {
    margin-bottom: 10rem !important;
  }
  .u-ml-0-pc {
    margin-left: 0 !important;
  }
  .u-ml-2-pc {
    margin-left: 0.125rem !important;
  }
  .u-ml-4-pc {
    margin-left: 0.25rem !important;
  }
  .u-ml-8-pc {
    margin-left: 0.5rem !important;
  }
  .u-ml-10-pc {
    margin-left: 0.625rem !important;
  }
  .u-ml-16-pc {
    margin-left: 1rem !important;
  }
  .u-ml-20-pc {
    margin-left: 1.25rem !important;
  }
  .u-ml-24-pc {
    margin-left: 1.5rem !important;
  }
  .u-ml-30-pc {
    margin-left: 1.875rem !important;
  }
  .u-ml-32-pc {
    margin-left: 2rem !important;
  }
  .u-ml-40-pc {
    margin-left: 2.5rem !important;
  }
  .u-ml-48-pc {
    margin-left: 3rem !important;
  }
  .u-ml-50-pc {
    margin-left: 3.125rem !important;
  }
  .u-ml-56-pc {
    margin-left: 3.5rem !important;
  }
  .u-ml-60-pc {
    margin-left: 3.75rem !important;
  }
  .u-ml-64-pc {
    margin-left: 4rem !important;
  }
  .u-ml-70-pc {
    margin-left: 4.375rem !important;
  }
  .u-ml-72-pc {
    margin-left: 4.5rem !important;
  }
  .u-ml-80-pc {
    margin-left: 5rem !important;
  }
  .u-ml-88-pc {
    margin-left: 5.5rem !important;
  }
  .u-ml-90-pc {
    margin-left: 5.625rem !important;
  }
  .u-ml-96-pc {
    margin-left: 6rem !important;
  }
  .u-ml-100-pc {
    margin-left: 6.25rem !important;
  }
  .u-ml-104-pc {
    margin-left: 6.5rem !important;
  }
  .u-ml-110-pc {
    margin-left: 6.875rem !important;
  }
  .u-ml-112-pc {
    margin-left: 7rem !important;
  }
  .u-ml-120-pc {
    margin-left: 7.5rem !important;
  }
  .u-ml-128-pc {
    margin-left: 8rem !important;
  }
  .u-ml-130-pc {
    margin-left: 8.125rem !important;
  }
  .u-ml-136-pc {
    margin-left: 8.5rem !important;
  }
  .u-ml-140-pc {
    margin-left: 8.75rem !important;
  }
  .u-ml-144-pc {
    margin-left: 9rem !important;
  }
  .u-ml-150-pc {
    margin-left: 9.375rem !important;
  }
  .u-ml-152-pc {
    margin-left: 9.5rem !important;
  }
  .u-ml-160-pc {
    margin-left: 10rem !important;
  }
  .u-p-block-0-pc {
    padding-block: 0 !important;
  }
  .u-p-block-2-pc {
    padding-block: 0.125rem !important;
  }
  .u-p-block-4-pc {
    padding-block: 0.25rem !important;
  }
  .u-p-block-8-pc {
    padding-block: 0.5rem !important;
  }
  .u-p-block-10-pc {
    padding-block: 0.625rem !important;
  }
  .u-p-block-16-pc {
    padding-block: 1rem !important;
  }
  .u-p-block-20-pc {
    padding-block: 1.25rem !important;
  }
  .u-p-block-24-pc {
    padding-block: 1.5rem !important;
  }
  .u-p-block-30-pc {
    padding-block: 1.875rem !important;
  }
  .u-p-block-32-pc {
    padding-block: 2rem !important;
  }
  .u-p-block-40-pc {
    padding-block: 2.5rem !important;
  }
  .u-p-block-48-pc {
    padding-block: 3rem !important;
  }
  .u-p-block-50-pc {
    padding-block: 3.125rem !important;
  }
  .u-p-block-56-pc {
    padding-block: 3.5rem !important;
  }
  .u-p-block-60-pc {
    padding-block: 3.75rem !important;
  }
  .u-p-block-64-pc {
    padding-block: 4rem !important;
  }
  .u-p-block-70-pc {
    padding-block: 4.375rem !important;
  }
  .u-p-block-72-pc {
    padding-block: 4.5rem !important;
  }
  .u-p-block-80-pc {
    padding-block: 5rem !important;
  }
  .u-p-block-88-pc {
    padding-block: 5.5rem !important;
  }
  .u-p-block-90-pc {
    padding-block: 5.625rem !important;
  }
  .u-p-block-96-pc {
    padding-block: 6rem !important;
  }
  .u-p-block-100-pc {
    padding-block: 6.25rem !important;
  }
  .u-p-block-104-pc {
    padding-block: 6.5rem !important;
  }
  .u-p-block-110-pc {
    padding-block: 6.875rem !important;
  }
  .u-p-block-112-pc {
    padding-block: 7rem !important;
  }
  .u-p-block-120-pc {
    padding-block: 7.5rem !important;
  }
  .u-p-block-128-pc {
    padding-block: 8rem !important;
  }
  .u-p-block-130-pc {
    padding-block: 8.125rem !important;
  }
  .u-p-block-136-pc {
    padding-block: 8.5rem !important;
  }
  .u-p-block-140-pc {
    padding-block: 8.75rem !important;
  }
  .u-p-block-144-pc {
    padding-block: 9rem !important;
  }
  .u-p-block-150-pc {
    padding-block: 9.375rem !important;
  }
  .u-p-block-152-pc {
    padding-block: 9.5rem !important;
  }
  .u-p-block-160-pc {
    padding-block: 10rem !important;
  }
  .u-p-inline-0-pc {
    padding-inline: 0 !important;
  }
  .u-p-inline-2-pc {
    padding-inline: 0.125rem !important;
  }
  .u-p-inline-4-pc {
    padding-inline: 0.25rem !important;
  }
  .u-p-inline-8-pc {
    padding-inline: 0.5rem !important;
  }
  .u-p-inline-10-pc {
    padding-inline: 0.625rem !important;
  }
  .u-p-inline-16-pc {
    padding-inline: 1rem !important;
  }
  .u-p-inline-20-pc {
    padding-inline: 1.25rem !important;
  }
  .u-p-inline-24-pc {
    padding-inline: 1.5rem !important;
  }
  .u-p-inline-30-pc {
    padding-inline: 1.875rem !important;
  }
  .u-p-inline-32-pc {
    padding-inline: 2rem !important;
  }
  .u-p-inline-40-pc {
    padding-inline: 2.5rem !important;
  }
  .u-p-inline-48-pc {
    padding-inline: 3rem !important;
  }
  .u-p-inline-50-pc {
    padding-inline: 3.125rem !important;
  }
  .u-p-inline-56-pc {
    padding-inline: 3.5rem !important;
  }
  .u-p-inline-60-pc {
    padding-inline: 3.75rem !important;
  }
  .u-p-inline-64-pc {
    padding-inline: 4rem !important;
  }
  .u-p-inline-70-pc {
    padding-inline: 4.375rem !important;
  }
  .u-p-inline-72-pc {
    padding-inline: 4.5rem !important;
  }
  .u-p-inline-80-pc {
    padding-inline: 5rem !important;
  }
  .u-p-inline-88-pc {
    padding-inline: 5.5rem !important;
  }
  .u-p-inline-90-pc {
    padding-inline: 5.625rem !important;
  }
  .u-p-inline-96-pc {
    padding-inline: 6rem !important;
  }
  .u-p-inline-100-pc {
    padding-inline: 6.25rem !important;
  }
  .u-p-inline-104-pc {
    padding-inline: 6.5rem !important;
  }
  .u-p-inline-110-pc {
    padding-inline: 6.875rem !important;
  }
  .u-p-inline-112-pc {
    padding-inline: 7rem !important;
  }
  .u-p-inline-120-pc {
    padding-inline: 7.5rem !important;
  }
  .u-p-inline-128-pc {
    padding-inline: 8rem !important;
  }
  .u-p-inline-130-pc {
    padding-inline: 8.125rem !important;
  }
  .u-p-inline-136-pc {
    padding-inline: 8.5rem !important;
  }
  .u-p-inline-140-pc {
    padding-inline: 8.75rem !important;
  }
  .u-p-inline-144-pc {
    padding-inline: 9rem !important;
  }
  .u-p-inline-150-pc {
    padding-inline: 9.375rem !important;
  }
  .u-p-inline-152-pc {
    padding-inline: 9.5rem !important;
  }
  .u-p-inline-160-pc {
    padding-inline: 10rem !important;
  }
  .u-pt-0-pc {
    padding-top: 0 !important;
  }
  .u-pt-2-pc {
    padding-top: 0.125rem !important;
  }
  .u-pt-4-pc {
    padding-top: 0.25rem !important;
  }
  .u-pt-8-pc {
    padding-top: 0.5rem !important;
  }
  .u-pt-10-pc {
    padding-top: 0.625rem !important;
  }
  .u-pt-16-pc {
    padding-top: 1rem !important;
  }
  .u-pt-20-pc {
    padding-top: 1.25rem !important;
  }
  .u-pt-24-pc {
    padding-top: 1.5rem !important;
  }
  .u-pt-30-pc {
    padding-top: 1.875rem !important;
  }
  .u-pt-32-pc {
    padding-top: 2rem !important;
  }
  .u-pt-40-pc {
    padding-top: 2.5rem !important;
  }
  .u-pt-48-pc {
    padding-top: 3rem !important;
  }
  .u-pt-50-pc {
    padding-top: 3.125rem !important;
  }
  .u-pt-56-pc {
    padding-top: 3.5rem !important;
  }
  .u-pt-60-pc {
    padding-top: 3.75rem !important;
  }
  .u-pt-64-pc {
    padding-top: 4rem !important;
  }
  .u-pt-70-pc {
    padding-top: 4.375rem !important;
  }
  .u-pt-72-pc {
    padding-top: 4.5rem !important;
  }
  .u-pt-80-pc {
    padding-top: 5rem !important;
  }
  .u-pt-88-pc {
    padding-top: 5.5rem !important;
  }
  .u-pt-90-pc {
    padding-top: 5.625rem !important;
  }
  .u-pt-96-pc {
    padding-top: 6rem !important;
  }
  .u-pt-100-pc {
    padding-top: 6.25rem !important;
  }
  .u-pt-104-pc {
    padding-top: 6.5rem !important;
  }
  .u-pt-110-pc {
    padding-top: 6.875rem !important;
  }
  .u-pt-112-pc {
    padding-top: 7rem !important;
  }
  .u-pt-120-pc {
    padding-top: 7.5rem !important;
  }
  .u-pt-128-pc {
    padding-top: 8rem !important;
  }
  .u-pt-130-pc {
    padding-top: 8.125rem !important;
  }
  .u-pt-136-pc {
    padding-top: 8.5rem !important;
  }
  .u-pt-140-pc {
    padding-top: 8.75rem !important;
  }
  .u-pt-144-pc {
    padding-top: 9rem !important;
  }
  .u-pt-150-pc {
    padding-top: 9.375rem !important;
  }
  .u-pt-152-pc {
    padding-top: 9.5rem !important;
  }
  .u-pt-160-pc {
    padding-top: 10rem !important;
  }
  .u-pr-0-pc {
    padding-right: 0 !important;
  }
  .u-pr-2-pc {
    padding-right: 0.125rem !important;
  }
  .u-pr-4-pc {
    padding-right: 0.25rem !important;
  }
  .u-pr-8-pc {
    padding-right: 0.5rem !important;
  }
  .u-pr-10-pc {
    padding-right: 0.625rem !important;
  }
  .u-pr-16-pc {
    padding-right: 1rem !important;
  }
  .u-pr-20-pc {
    padding-right: 1.25rem !important;
  }
  .u-pr-24-pc {
    padding-right: 1.5rem !important;
  }
  .u-pr-30-pc {
    padding-right: 1.875rem !important;
  }
  .u-pr-32-pc {
    padding-right: 2rem !important;
  }
  .u-pr-40-pc {
    padding-right: 2.5rem !important;
  }
  .u-pr-48-pc {
    padding-right: 3rem !important;
  }
  .u-pr-50-pc {
    padding-right: 3.125rem !important;
  }
  .u-pr-56-pc {
    padding-right: 3.5rem !important;
  }
  .u-pr-60-pc {
    padding-right: 3.75rem !important;
  }
  .u-pr-64-pc {
    padding-right: 4rem !important;
  }
  .u-pr-70-pc {
    padding-right: 4.375rem !important;
  }
  .u-pr-72-pc {
    padding-right: 4.5rem !important;
  }
  .u-pr-80-pc {
    padding-right: 5rem !important;
  }
  .u-pr-88-pc {
    padding-right: 5.5rem !important;
  }
  .u-pr-90-pc {
    padding-right: 5.625rem !important;
  }
  .u-pr-96-pc {
    padding-right: 6rem !important;
  }
  .u-pr-100-pc {
    padding-right: 6.25rem !important;
  }
  .u-pr-104-pc {
    padding-right: 6.5rem !important;
  }
  .u-pr-110-pc {
    padding-right: 6.875rem !important;
  }
  .u-pr-112-pc {
    padding-right: 7rem !important;
  }
  .u-pr-120-pc {
    padding-right: 7.5rem !important;
  }
  .u-pr-128-pc {
    padding-right: 8rem !important;
  }
  .u-pr-130-pc {
    padding-right: 8.125rem !important;
  }
  .u-pr-136-pc {
    padding-right: 8.5rem !important;
  }
  .u-pr-140-pc {
    padding-right: 8.75rem !important;
  }
  .u-pr-144-pc {
    padding-right: 9rem !important;
  }
  .u-pr-150-pc {
    padding-right: 9.375rem !important;
  }
  .u-pr-152-pc {
    padding-right: 9.5rem !important;
  }
  .u-pr-160-pc {
    padding-right: 10rem !important;
  }
  .u-pb-0-pc {
    padding-bottom: 0 !important;
  }
  .u-pb-2-pc {
    padding-bottom: 0.125rem !important;
  }
  .u-pb-4-pc {
    padding-bottom: 0.25rem !important;
  }
  .u-pb-8-pc {
    padding-bottom: 0.5rem !important;
  }
  .u-pb-10-pc {
    padding-bottom: 0.625rem !important;
  }
  .u-pb-16-pc {
    padding-bottom: 1rem !important;
  }
  .u-pb-20-pc {
    padding-bottom: 1.25rem !important;
  }
  .u-pb-24-pc {
    padding-bottom: 1.5rem !important;
  }
  .u-pb-30-pc {
    padding-bottom: 1.875rem !important;
  }
  .u-pb-32-pc {
    padding-bottom: 2rem !important;
  }
  .u-pb-40-pc {
    padding-bottom: 2.5rem !important;
  }
  .u-pb-48-pc {
    padding-bottom: 3rem !important;
  }
  .u-pb-50-pc {
    padding-bottom: 3.125rem !important;
  }
  .u-pb-56-pc {
    padding-bottom: 3.5rem !important;
  }
  .u-pb-60-pc {
    padding-bottom: 3.75rem !important;
  }
  .u-pb-64-pc {
    padding-bottom: 4rem !important;
  }
  .u-pb-70-pc {
    padding-bottom: 4.375rem !important;
  }
  .u-pb-72-pc {
    padding-bottom: 4.5rem !important;
  }
  .u-pb-80-pc {
    padding-bottom: 5rem !important;
  }
  .u-pb-88-pc {
    padding-bottom: 5.5rem !important;
  }
  .u-pb-90-pc {
    padding-bottom: 5.625rem !important;
  }
  .u-pb-96-pc {
    padding-bottom: 6rem !important;
  }
  .u-pb-100-pc {
    padding-bottom: 6.25rem !important;
  }
  .u-pb-104-pc {
    padding-bottom: 6.5rem !important;
  }
  .u-pb-110-pc {
    padding-bottom: 6.875rem !important;
  }
  .u-pb-112-pc {
    padding-bottom: 7rem !important;
  }
  .u-pb-120-pc {
    padding-bottom: 7.5rem !important;
  }
  .u-pb-128-pc {
    padding-bottom: 8rem !important;
  }
  .u-pb-130-pc {
    padding-bottom: 8.125rem !important;
  }
  .u-pb-136-pc {
    padding-bottom: 8.5rem !important;
  }
  .u-pb-140-pc {
    padding-bottom: 8.75rem !important;
  }
  .u-pb-144-pc {
    padding-bottom: 9rem !important;
  }
  .u-pb-150-pc {
    padding-bottom: 9.375rem !important;
  }
  .u-pb-152-pc {
    padding-bottom: 9.5rem !important;
  }
  .u-pb-160-pc {
    padding-bottom: 10rem !important;
  }
  .u-pl-0-pc {
    padding-left: 0 !important;
  }
  .u-pl-2-pc {
    padding-left: 0.125rem !important;
  }
  .u-pl-4-pc {
    padding-left: 0.25rem !important;
  }
  .u-pl-8-pc {
    padding-left: 0.5rem !important;
  }
  .u-pl-10-pc {
    padding-left: 0.625rem !important;
  }
  .u-pl-16-pc {
    padding-left: 1rem !important;
  }
  .u-pl-20-pc {
    padding-left: 1.25rem !important;
  }
  .u-pl-24-pc {
    padding-left: 1.5rem !important;
  }
  .u-pl-30-pc {
    padding-left: 1.875rem !important;
  }
  .u-pl-32-pc {
    padding-left: 2rem !important;
  }
  .u-pl-40-pc {
    padding-left: 2.5rem !important;
  }
  .u-pl-48-pc {
    padding-left: 3rem !important;
  }
  .u-pl-50-pc {
    padding-left: 3.125rem !important;
  }
  .u-pl-56-pc {
    padding-left: 3.5rem !important;
  }
  .u-pl-60-pc {
    padding-left: 3.75rem !important;
  }
  .u-pl-64-pc {
    padding-left: 4rem !important;
  }
  .u-pl-70-pc {
    padding-left: 4.375rem !important;
  }
  .u-pl-72-pc {
    padding-left: 4.5rem !important;
  }
  .u-pl-80-pc {
    padding-left: 5rem !important;
  }
  .u-pl-88-pc {
    padding-left: 5.5rem !important;
  }
  .u-pl-90-pc {
    padding-left: 5.625rem !important;
  }
  .u-pl-96-pc {
    padding-left: 6rem !important;
  }
  .u-pl-100-pc {
    padding-left: 6.25rem !important;
  }
  .u-pl-104-pc {
    padding-left: 6.5rem !important;
  }
  .u-pl-110-pc {
    padding-left: 6.875rem !important;
  }
  .u-pl-112-pc {
    padding-left: 7rem !important;
  }
  .u-pl-120-pc {
    padding-left: 7.5rem !important;
  }
  .u-pl-128-pc {
    padding-left: 8rem !important;
  }
  .u-pl-130-pc {
    padding-left: 8.125rem !important;
  }
  .u-pl-136-pc {
    padding-left: 8.5rem !important;
  }
  .u-pl-140-pc {
    padding-left: 8.75rem !important;
  }
  .u-pl-144-pc {
    padding-left: 9rem !important;
  }
  .u-pl-150-pc {
    padding-left: 9.375rem !important;
  }
  .u-pl-152-pc {
    padding-left: 9.5rem !important;
  }
  .u-pl-160-pc {
    padding-left: 10rem !important;
  }
}
.u-radius-0 {
  border-radius: 0 !important;
}
.u-radius-4 {
  border-radius: 0.25rem !important;
}
.u-radius-8 {
  border-radius: 0.5rem !important;
}
.u-radius-8-top {
  border-radius: 0.5rem 0.5rem 0 0 !important;
}
.u-radius-8-bottom {
  border-radius: 0 0 0.5rem 0.5rem !important;
}
.u-radius-50 {
  border-radius: 3.125rem !important;
}
.u-shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.u-no-shadow {
  box-shadow: none !important;
}
.u-border {
  border: 1px solid #f3f4f6;
}
.u-border-top {
  border-top: 1px solid #f3f4f6;
}
.u-border-bottom {
  border-bottom: 1px solid #f3f4f6;
}
.u-border-color-secondary {
  border-color: #3d5a6e !important;
}
.u-separator-top {
  margin-top: 2.5rem;
  padding-top: 1.875rem;
  border-top: 1px solid #f3f4f6;
}
.u-separator-bottom {
  margin-bottom: 2.5rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #f3f4f6;
}
.u-separator-bottom-small {
  padding-bottom: 0.375rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}
.u-br-pc {
  display: none;
}
.u-br-sp {
  display: block;
}
@media (min-width: 48rem) {
  .u-br-pc {
    display: block;
  }
  .u-br-sp {
    display: none;
  }
}
.u-wb-keep-all {
  word-break: keep-all;
}
.u-scroll-x {
  overflow-x: auto;
}
.u-scroll-x img {
  max-width: fit-content;
}
@media (min-width: 48rem) {
  .u-scroll-x {
    overflow-x: unset;
  }
  .u-scroll-x img {
    max-width: 100%;
  }
}

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