@charset "UTF-8";
/* ==========================================================================
   FLOCSS
   Foundation → Layout → Object（Component → Project → Utility）
   ※ _variables.scss / _mixin.scss は各パーツ側で @use して参照する
   ========================================================================== */
/* Foundation --------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  appearance: none;
}

button {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

address {
  font-style: normal;
}

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

body {
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 350;
  line-height: 1.8125;
  letter-spacing: 0.04em;
  background-color: #0c161f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  color: #fff;
  background-color: rgba(21, 122, 200, 0.6);
}

::placeholder {
  color: #6d6d6d;
}

a {
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

:focus-visible {
  outline: 2px solid #157ac8;
  outline-offset: 2px;
}

.main-bg {
  margin-top: -270px;
  padding-top: 270px;
  background-image: url(../../assets/images/top/section-bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .main-bg {
    margin-top: 0;
    padding-top: 0;
    background-image: url(../../assets/images/top/section-bg-sp.webp);
  }
}

/* Layout ------------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  background-color: rgba(10, 18, 26, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
:root.is-header-hidden .l-header {
  transform: translateY(-100%);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.l-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 100%;
  background-color: #f1f1f1;
}
.l-header__logo img {
  width: 85%;
  height: 100%;
  object-fit: contain;
}
.l-header__body {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 24px;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.l-header__link {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.4;
  white-space: nowrap;
}
.l-header__cta {
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .l-header__cta {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .l-header__inner {
    align-items: flex-start;
  }
  .l-header__logo {
    width: 135px;
    height: 50px;
  }
}

.l-drawer {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
  }
}
.l-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 18, 26, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 64px;
  padding: 71px 32px 60px;
  overflow-y: auto;
  background-color: #0a121a;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.24);
  pointer-events: auto;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-drawer.is-open .l-drawer__overlay {
  opacity: 1;
  visibility: visible;
}
.l-drawer.is-open .l-drawer__panel {
  visibility: visible;
  transform: translateX(0);
}
.l-drawer__toggle {
  position: absolute;
  top: 31px;
  right: 24px;
  width: 28px;
  height: 10px;
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-drawer__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-drawer__toggle span:nth-child(1) {
  top: 0;
}
.l-drawer__toggle span:nth-child(2) {
  top: 100%;
}
.l-drawer__toggle[aria-expanded=true] span {
  top: 50%;
}
.l-drawer__toggle[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg);
}
.l-drawer__toggle[aria-expanded=true] span:nth-child(2) {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .l-drawer__toggle {
    top: 5px;
    right: 8px;
    width: 40px;
    height: 40px;
    background-color: rgba(10, 18, 26, 0.5);
    border-radius: 4px;
    transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .l-drawer__toggle span {
    left: 50%;
    width: 25px;
    transform: translateX(-50%);
  }
  .l-drawer__toggle span:nth-child(1) {
    top: calc(50% - 5px);
  }
  .l-drawer__toggle span:nth-child(2) {
    top: calc(50% + 5px);
  }
  .l-drawer__toggle[aria-expanded=true] {
    background-color: transparent;
  }
  .l-drawer__toggle[aria-expanded=true] span {
    top: 50%;
    width: 28px;
    background-color: #d4d5d6;
  }
  .l-drawer__toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
  }
  .l-drawer__toggle[aria-expanded=true] span:nth-child(2) {
    transform: translateX(-50%) rotate(-45deg);
  }
}
.l-drawer__list {
  display: grid;
  gap: 0;
}
.l-drawer__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: 1rem;
  line-height: 1.5;
}
.l-drawer__link::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 9.4 9.4 2.6M4.6 2.6h4.8v4.8' fill='none' stroke='%23000' stroke-width='1.1' stroke-linecap='square'/%3E%3C/svg%3E") no-repeat center/contain;
}
.l-drawer__cta {
  margin-top: 36px;
}

:root.is-header-hidden .l-drawer:not(.is-open) .l-drawer__toggle {
  transform: translateY(-72px);
}

.l-main {
  display: block;
}

.l-body--fill {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.l-body--fill .l-main {
  flex: 1 0 auto;
}
.l-body--fill .l-footer {
  flex-shrink: 0;
}

.l-main--fill {
  display: flex;
  flex-direction: column;
}

.l-footer {
  padding: 39px 0 32px;
  background-color: #0c161f;
}
.l-footer__inner {
  width: 100%;
  max-width: 1424px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-inline: 24px;
  }
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.l-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 38px;
  }
}
.l-footer__logo {
  flex-shrink: 0;
  width: 148px;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__copyright {
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 0.625rem;
  }
}

/* Object / Component ------------------------------------------------------- */
.c-heading {
  position: relative;
  padding-left: 47px;
}
.c-heading::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 45px;
  height: 1px;
  background: linear-gradient(-90deg, #1E436F 0%, #1873D4 100%);
  transform: rotate(-45deg);
  transform-origin: left bottom;
}
.c-heading__ja {
  display: block;
  margin-left: -2px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-heading__en {
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 100;
  line-height: 1.05;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .c-heading {
    padding-left: 36px;
  }
  .c-heading::before {
    bottom: 15px;
    width: 40px;
  }
  .c-heading__en {
    margin-top: 6px;
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading {
    padding-left: 37px;
  }
  .c-heading::before {
    bottom: 14px;
    width: 35px;
  }
  .c-heading__ja {
    font-size: 0.6875rem;
  }
  .c-heading__en {
    margin-top: 5px;
    font-size: 3.5rem;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 196px;
  min-height: 48px;
  padding: 6px 34px 6px 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-button__icon {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 11px;
  height: 11px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 9.4 9.4 2.6M4.6 2.6h4.8v4.8' fill='none' stroke='%23000' stroke-width='1.1' stroke-linecap='square'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .c-button:hover .c-button__icon {
    transform: translateY(-2px);
  }
}
.c-button--primary {
  background-color: #157ac8;
}
@media (hover: hover) {
  .c-button--primary:hover {
    background-color: #2795e8;
    opacity: 1;
  }
}
.c-button--outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (hover: hover) {
  .c-button--outline:hover {
    background-color: rgba(255, 255, 255, 0.09);
    opacity: 1;
  }
}
.c-button--sm {
  width: 126px;
  min-height: 36px;
  padding: 4px 12px;
}
.c-button--sm .c-button__icon {
  display: none;
}
.c-button--drawer {
  width: 192px;
  min-height: 35px;
  padding: 4px 12px;
}
@media screen and (max-width: 767px) {
  .c-button--drawer {
    width: 80%;
  }
}
.c-button--drawer .c-button__icon {
  display: none;
}
.c-button--submit {
  width: 246px;
  min-height: 48px;
  font-size: 1rem;
}
.c-button--block {
  width: 100%;
}
.c-button:disabled, .c-button[aria-disabled=true] {
  pointer-events: none;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 100%;
    max-width: 280px;
  }
  .c-button--sm {
    width: 126px;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .c-button.c-button--drawer {
    width: 80%;
  }
}
.l-footer__links .c-link {
  font-size: 0.75rem;
}

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.c-link__icon {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M4.4 1.6h6v6M10.4 1.6 5 7M8.2 9.4v1H1.6V3.8h1' fill='none' stroke='%23000' stroke-width='1.1'/%3E%3C/svg%3E") no-repeat center/contain;
}
.c-link--underline {
  color: #80CFF4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-field + .c-field {
  margin-top: 36px;
}
.c-field__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.c-field__label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-field__required {
  color: #80cff4;
  font-size: 0.875rem;
  font-weight: 400;
}
.c-field__body {
  display: grid;
  gap: 18px 24px;
}
.c-field__body--half {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .c-field__body--half {
    grid-template-columns: 1fr;
  }
}
.c-field__sub {
  display: block;
  margin-bottom: 11px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}
.c-field__error {
  margin-top: 8px;
  color: #FF5165;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-field__error {
    font-size: 12px;
  }
}

.c-input {
  width: 100%;
  min-height: 55px;
  font-weight: 400;
  padding: 12px 20px;
  color: #111111;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #f1f1f1;
  border: 1px solid #C2D0E2;
  border-radius: 4px;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-input:focus {
  outline: none;
  border-color: #80cff4;
  box-shadow: 0 0 0 1px #80cff4, 0 0 4px 1px rgba(128, 207, 244, 0.55);
}
.c-input--textarea {
  min-height: 258px;
  resize: vertical;
}
.c-input--error {
  background-color: #fdf0f2;
  border-color: #e0284b;
}

.c-select {
  position: relative;
}
.c-select__control {
  width: 100%;
  min-height: 55px;
  padding: 12px 48px 12px 20px;
  color: #333;
  font-size: 1rem;
  background-color: #f1f1f1;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}
.c-select__control:focus {
  outline: none;
  border-color: #80cff4;
  box-shadow: 0 0 0 1px #80cff4, 0 0 4px 1px rgba(128, 207, 244, 0.55);
}
.c-select__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 8px;
  background-color: #333;
  transform: translateY(-50%);
  pointer-events: none;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23000' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat center/contain;
}

.c-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
}

.c-radio {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
}
.c-radio__input {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.c-radio__input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #157ac8;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}
.c-radio__input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.c-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  cursor: pointer;
}
.c-checkbox__input {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #f1f1f1;
  border-radius: 2px;
  cursor: pointer;
}
.c-checkbox__input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19.5px;
  height: 15px;
  background-color: #157ac8;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10'%3E%3Cpath d='M1 5l4 4 7-8' fill='none' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center/contain;
}
.c-checkbox__input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.c-step {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 380px;
  max-width: 100%;
}
.c-step::before {
  content: "";
  position: absolute;
  top: 3.5px;
  right: 14.5px;
  left: 14.5px;
  height: 1px;
  background-image: linear-gradient(to right, #f1f1f1 0 4px, transparent 4px 5px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
}
.c-step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 32px;
  color: #83888F;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-step__item {
    gap: 24px;
  }
}
.c-step__dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: #f1f1f1;
  border-radius: 50%;
}
.c-step__item--current {
  color: #73B9DB;
  font-weight: 500;
}
.c-step__item--current .c-step__dot {
  background-color: #80cff4;
}
.c-step__item--current .c-step__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  background-color: rgba(128, 207, 244, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-step {
    width: 204px;
  }
}

.c-radio__input.c-input--error,
.c-checkbox__input.c-input--error {
  box-shadow: 0 0 0 2px #e0284b;
}

.c-modal {
  width: min(1024px, 100% - 48px);
  max-height: calc(100dvh - 96px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background-color: #243146;
  border: 0;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), overlay 0.4s allow-discrete, display 0.4s allow-discrete;
}
.c-modal[open] {
  opacity: 1;
}
@starting-style {
  .c-modal[open] {
    opacity: 0;
  }
}
.c-modal::backdrop {
  background-color: rgba(12, 22, 31, 0.82);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), overlay 0.4s allow-discrete, display 0.4s allow-discrete;
}
.c-modal[open]::backdrop {
  opacity: 1;
}
@starting-style {
  .c-modal[open]::backdrop {
    opacity: 0;
  }
}
.c-modal__inner:focus {
  outline: none;
}
.c-modal__inner {
  max-height: calc(100dvh - 96px);
  padding: 56px 64px 52px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.c-modal__close {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 34px;
  height: 34px;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close:focus {
  outline: none;
}
.c-modal__close:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}
@media (hover: hover) {
  .c-modal__close:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1024px) {
  .c-modal {
    width: calc(100% - 40px);
  }
  .c-modal__inner {
    padding: 48px 40px 44px;
  }
}
@media screen and (max-width: 767px) {
  .c-modal {
    max-height: calc(100dvh - 64px);
  }
  .c-modal__inner {
    max-height: calc(100dvh - 64px);
    padding: 44px 24px 32px;
  }
  .c-modal__close {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-modal,
  .c-modal::backdrop {
    transition: none;
  }
}
/* Object / Project --------------------------------------------------------- */
.p-fv {
  position: relative;
  min-height: 779px;
  padding-top: 72px;
  overflow: hidden;
  padding-bottom: 120px;
}
.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../../../assets/images/top/kv-motion-test-animation.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media (min-width: 1441px) {
  .p-fv__bg::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 200px;
    background-image: linear-gradient(180deg, rgba(12, 22, 31, 0) 0%, #0c161f 100%);
  }
}
.p-fv__inner {
  position: relative;
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
}
.p-fv__rule {
  position: absolute;
  top: 500px;
  left: calc(min(733px, 50.9027777778vw) - 233px);
  width: 284px;
  height: 2px;
  background: linear-gradient(-90deg, #1E436F 0%, #1873D4 100%);
  transform: rotate(-45deg);
  transform-origin: left bottom;
  pointer-events: none;
}
.p-fv__title {
  margin-top: 158px;
  padding-left: min(200px, 13.8888888889vw);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: min(155px, 10.7638888889vw);
  font-weight: 100;
  line-height: 0.8516129032;
  letter-spacing: -0.005em;
}
.p-fv__title-row {
  display: block;
}
.p-fv__title-row--indent {
  padding-left: min(102px, 7.0833333333vw);
}
.p-fv__lead {
  margin-top: 46px;
  padding-left: min(733px, 50.9027777778vw);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-fv__buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-left: min(733px, 50.9027777778vw);
}
@media screen and (max-width: 1024px) {
  .p-fv {
    min-height: 0;
    padding-bottom: 100px;
  }
  .p-fv__rule {
    display: none;
  }
  .p-fv__inner {
    width: 100%;
    max-width: 1064px;
    margin-inline: auto;
    padding-inline: 32px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-fv__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .p-fv__title {
    margin-top: 70px;
    padding-left: 0;
    font-size: 4.75rem;
    line-height: 1.12;
  }
  .p-fv__title-row--indent {
    padding-left: 48px;
  }
  .p-fv__lead, .p-fv__buttons {
    padding-left: 0;
  }
  .p-fv__lead {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-bottom: 15px;
  }
  .p-fv__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(12, 22, 31, 0) 38%, #0c161f 64%);
  }
  .p-fv__inner {
    width: 100%;
    max-width: 1064px;
    margin-inline: auto;
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-fv__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    margin-top: 75px;
    font-size: 3.5rem;
    line-height: 1.1272727273;
  }
  .p-fv__title-row--indent {
    padding-left: 0;
  }
  .p-fv__lead {
    position: relative;
    margin-top: 60px;
    padding-left: 47px;
    font-size: 1rem;
    line-height: 2.1333333333;
  }
  .p-fv__lead::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 56px;
    height: 1px;
    background: linear-gradient(-90deg, #1E436F 0%, #1873D4 100%);
    transform: rotate(-45deg);
    transform-origin: left bottom;
  }
  .p-fv__buttons {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 58px;
  }
  .p-fv__buttons .c-button {
    width: 288px;
    max-width: 100%;
  }
}

.p-message {
  position: relative;
  padding-top: 124px;
  padding-bottom: 70px;
}
.p-message__inner {
  width: 100%;
  max-width: 1064px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    padding-inline: 24px;
  }
}
.p-message__body {
  margin-top: 81px;
  padding-left: 103px;
}
.p-message__catch {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-message__catch span {
  margin: -0.2%;
}
.p-message__text {
  max-width: 740px;
  margin-top: 47px;
  font-size: 1rem;
  line-height: 1.8125;
}
.p-message__text + .p-message__text {
  margin-top: 29px;
}
@media screen and (max-width: 1024px) {
  .p-message {
    padding-top: 96px;
  }
  .p-message__body {
    margin-top: 56px;
    padding-left: 0;
  }
  .p-message__catch {
    font-size: 1.75rem;
  }
  .p-message__text {
    margin-top: 44px;
  }
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-top: 84px;
  }
  .p-message__body {
    margin-top: 61px;
  }
  .p-message__catch {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .p-message__text {
    margin-top: 65px;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .p-message__text + .p-message__text {
    margin-top: 26px;
  }
}

.p-feature {
  position: relative;
  z-index: 0;
  padding-top: 214px;
  padding-bottom: 161px;
  overflow: hidden;
}
.p-feature__inner {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
}
.p-feature__item {
  position: relative;
  max-width: min(640px, 44.4444444444vw);
}
.p-feature__item + .p-feature__item {
  margin-top: 158px;
}
.p-feature__item--01 {
  margin-left: min(503px, 34.9305555556vw);
}
.p-feature__item--02 {
  margin-left: min(302px, 20.9722222222vw);
}
.p-feature__item--03 {
  margin-left: min(402px, 27.9166666667vw);
}
.p-feature__badge {
  width: 109px;
  height: 107px;
  margin-top: -6px;
}
.p-feature__badge img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-feature__title {
  margin-top: 38px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-feature__text {
  margin-top: 48px;
  font-size: 1rem;
  line-height: 1.8125;
}
.p-feature__photo {
  position: absolute;
  z-index: -1;
}
.p-feature__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-feature__photo--building {
  top: 41px;
  right: calc(100% + min(181px, 12.5694444444vw));
  width: min(320px, 22.2222222222vw);
  height: min(480px, 33.3333333333vw);
}
.p-feature__photo--monitor {
  top: -35px;
  left: calc(100% + min(96px, 6.6666666667vw));
  width: min(400px, 27.7777777778vw);
  height: min(247px, 17.1527777778vw);
}
.p-feature__photo--meeting {
  top: 347px;
  right: calc(100% + min(82px, 5.6944444444vw));
  width: min(220px, 15.2777777778vw);
  height: min(158px, 10.9722222222vw);
}
.p-feature__photo--warehouse {
  top: -65px;
  left: calc(100% - min(28px, 1.9444444444vw));
  width: min(306px, 21.25vw);
  height: min(203px, 14.0972222222vw);
}
.p-feature__photo--city {
  top: 255px;
  right: calc(100% + min(78px, 5.4166666667vw));
  width: min(240px, 16.6666666667vw);
  height: min(237px, 16.4583333333vw);
}
@media screen and (max-width: 1024px) {
  .p-feature {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .p-feature__inner {
    width: 100%;
    max-width: 1064px;
    margin-inline: auto;
    padding-inline: 32px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-feature__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .p-feature__item, .p-feature__item--01, .p-feature__item--02, .p-feature__item--03 {
    max-width: none;
    margin-left: 0;
  }
  .p-feature__item + .p-feature__item {
    margin-top: 90px;
  }
  .p-feature__title {
    margin-top: 40px;
    font-size: 1.625rem;
  }
  .p-feature__text {
    margin-top: 32px;
  }
  .p-feature__photo, .p-feature__photo--building, .p-feature__photo--monitor, .p-feature__photo--meeting, .p-feature__photo--warehouse, .p-feature__photo--city {
    position: static;
    z-index: auto;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin-top: 32px;
  }
  .p-feature__photo img, .p-feature__photo--building img, .p-feature__photo--monitor img, .p-feature__photo--meeting img, .p-feature__photo--warehouse img, .p-feature__photo--city img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-feature__badge {
    width: 72px;
    height: 71px;
    margin-top: -1px;
  }
  .p-feature__title {
    margin-top: 34px;
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .p-feature__text {
    margin-top: 32px;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .p-feature__photo {
    margin-top: 38px;
  }
  .p-feature__photo img {
    aspect-ratio: 342/200;
  }
  .p-feature__photo--building, .p-feature__photo--warehouse {
    display: none;
  }
  .p-feature__item--02 .p-feature__photo--meeting {
    display: none;
  }
}

.p-service {
  position: relative;
  padding-top: 124px;
  overflow: hidden;
  background-image: linear-gradient(180deg, #132339 0%, #16273e 58%, #101d2b 100%);
}
.p-service__inner {
  width: 100%;
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding-inline: 24px;
  }
}
.p-service__lead {
  margin-top: 39px;
  font-size: 1rem;
  line-height: 1.8125;
  font-weight: 400;
}
.p-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 66px;
  margin-top: 100px;
}
.p-service__number {
  display: inline-block;
  position: relative;
  padding-right: 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: lining-nums;
}
.p-service__number::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 4px;
  width: 79.2px;
  height: 1px;
  background-color: #4D607B;
  transform: rotate(-45deg);
  transform-origin: left top;
}
.p-service__title {
  padding-left: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-service__text {
  margin-top: 24px;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .p-service {
    padding-top: 100px;
  }
  .p-service__list {
    gap: 48px;
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-top: 84px;
  }
  .p-service__lead {
    margin-top: 44px;
    font-size: 1rem;
    line-height: 1.8125;
  }
  .p-service__list {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 70px;
  }
}

.p-network {
  position: relative;
  margin-top: 57px;
}
.p-network::before {
  content: "";
  position: absolute;
  top: 330px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, rgba(112, 141, 202, 0.9) 0%, rgba(30, 67, 111, 0.9) 100%);
}
@media screen and (max-width: 767px) {
  .p-network::before {
    top: 165px;
    background: linear-gradient(90deg, rgba(112, 141, 202, 0.9) 0%, rgba(30, 67, 111, 0.9) 100%);
  }
}
.p-network__arc {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 1440px;
  height: 710px;
  background-image: url(../../assets/images/top/service-bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateX(-50%);
  pointer-events: none;
}
.p-network__body {
  position: relative;
  z-index: 1;
  padding: 72px 40px 0;
  text-align: center;
}
.p-network__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.p-network__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 15px;
  padding-left: 0.2em;
  font-family: "Noto Serif JP", serif;
  font-size: 9rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  font-variant-numeric: lining-nums;
  background: linear-gradient(0deg, #1E436F 0%, #708DCA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-network__unit {
  margin-left: -0.1em;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.25rem;
  background-image: none;
  -webkit-text-fill-color: #fff;
}
.p-network__note {
  margin-top: 50px;
  padding-bottom: 106px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
}
@media screen and (max-width: 1024px) {
  .p-network {
    margin-top: 48px;
  }
  .p-network__arc {
    width: 1320px;
    height: 651px;
  }
  .p-network__body {
    padding-top: 56px;
  }
  .p-network__number {
    font-size: 6rem;
  }
  .p-network__unit {
    font-size: 1.75rem;
  }
  .p-network__note {
    margin-top: 52px;
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 767px) {
  .p-network {
    margin-top: 40px;
  }
  .p-network__arc {
    width: 840px;
    height: 510px;
  }
  .p-network__body {
    padding: 44px 8px 0;
  }
  .p-network__label {
    font-size: 0.875rem;
  }
  .p-network__number {
    margin-top: 0px;
    font-size: 4.5rem;
  }
  .p-network__unit {
    font-size: 1.375rem;
  }
  .p-network__note {
    margin-top: 35px;
    padding-bottom: 40px;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    text-align: left;
    padding-inline: 24px;
  }
}

.p-member {
  padding-top: 124px;
  padding-bottom: 70px;
  background-color: #17202f;
}
.p-member__inner {
  width: 100%;
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-member__inner {
    padding-inline: 24px;
  }
}
.p-member__lead {
  margin-top: 38px;
  font-size: 1rem;
  line-height: 1.8125;
  font-weight: 400;
}
.p-member__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}
.p-member__item {
  position: relative;
  background: linear-gradient(146deg, #29384F 0%, #16232E 50%, #29384F 100%);
  overflow: hidden;
}
.p-member__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2E4568;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-member__item:hover::before {
  opacity: 1;
}
.p-member__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
  text-align: left;
  cursor: pointer;
}
.p-member__photo {
  display: block;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 220/290;
}
.p-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-member__role {
  display: block;
  flex-grow: 1;
  min-height: 40px;
  margin-top: 24px;
  padding-left: 24px;
  color: #F1F1F1;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 350;
  letter-spacing: 0.02em;
}
.p-member__name {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-top: 4px;
  padding-left: 24px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p-member__name::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 20px;
  height: 1px;
  background: linear-gradient(-90deg, #1E436F 0%, #1873D4 100%);
  transform: rotate(-45deg);
  transform-origin: left bottom;
}
.p-member__plus {
  position: absolute;
  right: 24px;
  bottom: 18px;
}
.p-member__plus::before, .p-member__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.p-member__plus::before {
  width: 10px;
  height: 1px;
}
.p-member__plus::after {
  width: 1px;
  height: 10px;
}
.p-member__modal-role {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.6923076923;
  letter-spacing: 0.02em;
}
.p-member__modal-name {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.p-member__modal-profile {
  margin-top: 28px;
  font-size: 0.875rem;
  line-height: 2;
}
.p-member__modal-profile p + p {
  margin-top: 1em;
}
@media screen and (max-width: 1024px) {
  .p-member {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-member__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-member {
    padding-top: 84px;
    padding-bottom: 64px;
  }
  .p-member__lead {
    margin-top: 44px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .p-member__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-top: 62px;
  }
  .p-member__card {
    padding: 24px;
  }
  .p-member__role {
    min-height: auto;
    margin-top: 24px;
  }
  .p-member__name {
    margin-top: 6px;
    font-size: 1.25rem;
  }
  .p-member__plus {
    right: 12px;
    bottom: 12px;
  }
  .p-member__modal-name {
    font-size: 1.25rem;
  }
  .p-member__modal-profile {
    margin-top: 24px;
    line-height: 1.8571428571;
  }
}

.p-profile {
  padding-top: 124px;
  padding-bottom: 82px;
  background-color: #0c161f;
}
.p-profile__inner {
  display: flex;
  gap: 120px;
  width: 100%;
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-profile__inner {
    padding-inline: 24px;
  }
}
.p-profile__head {
  flex-shrink: 0;
  width: 288px;
}
.p-profile__body {
  flex: 1;
  min-width: 0;
}
.p-profile__list {
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 24px;
  row-gap: 32px;
}
.p-profile__term {
  padding-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.7142857143;
  border-bottom: 1px solid #4D607B;
}
.p-profile__desc {
  padding-bottom: 26px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7333333333;
  border-bottom: 1px solid #4D607B;
}
.p-profile__map {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-profile {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-profile__inner {
    flex-direction: column;
    gap: 48px;
  }
  .p-profile__head {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-profile__list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .p-profile__term {
    padding-bottom: 6px;
    border-bottom: none;
  }
  .p-profile__desc {
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
  .p-profile__map {
    display: block;
    margin-top: 4px;
    margin-left: 0;
  }
}

.p-group {
  padding-top: 124px;
  padding-bottom: 123px;
  background-color: #16202E;
}
.p-group__inner {
  width: 100%;
  max-width: 1064px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-group__inner {
    padding-inline: 24px;
  }
}
.p-group__lead {
  margin-top: 38px;
  font-size: 1rem;
  line-height: 1.8125;
  font-weight: 400;
}
.p-group__list {
  margin-top: 80px;
  border-top: 1px solid #4D607B;
}
.p-group__item {
  border-bottom: 1px solid #4D607B;
}
.p-group__link {
  display: flex;
  gap: 24px;
  padding: 35px 18px 19px;
  transition: 0.5s;
}
.p-group__link:hover {
  background-color: #1E2C3E;
  opacity: 1;
}
.p-group__link.--none {
  pointer-events: none;
}
.p-group__logo {
  display: block;
  flex-shrink: 0;
  width: 180px;
  height: 101px;
}
.p-group__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-group__body {
  display: block;
  flex: 1;
  min-width: 0;
}
.p-group__name {
  display: block;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-group__text {
  display: block;
  margin-top: 12px;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
}
.p-group__icon {
  display: block;
  margin-top: 3px;
  margin-left: auto;
  width: 11px;
  height: 11px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M4.4 1.6h6v6M10.4 1.6 5 7M8.2 9.4v1H1.6V3.8h1' fill='none' stroke='%23000' stroke-width='1.1'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  .p-group {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-group__list {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-group {
    padding-top: 84px;
    padding-bottom: 64px;
  }
  .p-group__lead {
    margin-top: 44px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .p-group__list {
    margin-top: 48px;
    padding-inline: 43px;
  }
  .p-group__link {
    flex-direction: column;
    gap: 20px;
    padding: 34px 0 30px;
  }
  .p-group__logo {
    width: 100%;
    height: 142px;
  }
  .p-group__name {
    font-size: 0.9375rem;
  }
  .p-group__text {
    font-size: 0.8125rem;
    line-height: 1.6923076923;
  }
}

.p-recruitment {
  padding-top: 124px;
  padding-bottom: 116px;
  background-color: #0c161f;
}
.p-recruitment__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-recruitment__inner {
    padding-inline: 24px;
  }
}
.p-recruitment__head {
  flex: 1;
  min-width: 0;
}
.p-recruitment__lead {
  margin-top: 38px;
  font-size: 1rem;
  line-height: 1.8125;
  font-weight: 400;
}
.p-recruitment__banners {
  display: grid;
  flex-shrink: 0;
  gap: 41px;
  width: 384px;
  margin-right: 102px;
}
.p-recruitment__banner {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.p-recruitment__banner img {
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .p-recruitment__banner:hover {
    opacity: 1;
  }
  .p-recruitment__banner:hover img {
    transform: scale(1.03);
  }
}
@media screen and (max-width: 1024px) {
  .p-recruitment {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-recruitment__inner {
    flex-direction: column;
    gap: 48px;
  }
  .p-recruitment__banners {
    width: 100%;
    max-width: 420px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitment {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-recruitment__lead {
    margin-top: 26px;
    font-size: 1rem;
  }
  .p-recruitment__banners {
    gap: 20px;
    max-width: none;
  }
}

.p-contact {
  padding-top: 124px;
  padding-bottom: 121px;
  background-color: #17202f;
}
.p-contact__inner {
  width: 100%;
  max-width: 856px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-inline: 24px;
  }
}
.p-contact__lead {
  margin-top: 38px;
  font-size: 1rem;
  line-height: 1.8125;
  font-weight: 400;
}
.p-contact__step {
  margin-top: 78px;
}
.p-contact__form {
  margin-top: 55px;
}
.p-contact__note {
  margin-top: 66px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-contact__agree {
  margin-top: 42px;
}
.p-contact__captcha {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
}
.p-contact__submit {
  margin-top: 56px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .p-contact__step {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-contact__lead {
    margin-top: 26px;
    font-size: 1rem;
    font-weight: 400;
  }
  .p-contact__step {
    margin-top: 36px;
  }
  .p-contact__note {
    margin-top: 36px;
    font-size: 0.875rem;
  }
}

.p-thanks {
  position: relative;
  flex: 1 0 auto;
  padding-top: 164px;
  padding-bottom: 129px;
  overflow: hidden;
  background-color: #0c161f;
}
.p-thanks::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(470px 280px at 400px 320px, rgba(59, 127, 212, 0.34) 0%, rgba(59, 127, 212, 0.12) 52%, rgba(59, 127, 212, 0) 100%);
  pointer-events: none;
}
.p-thanks__inner {
  width: 100%;
  max-width: 856px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-thanks__inner {
    padding-inline: 24px;
  }
}
.p-thanks__inner {
  position: relative;
  z-index: 1;
}
.p-thanks__body {
  margin-top: 68px;
  padding-left: 103px;
}
.p-thanks__catch {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5833333333;
  letter-spacing: 0.04em;
}
.p-thanks__text {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.8125;
}
.p-thanks__action {
  margin-top: 88px;
}
.p-thanks__button {
  width: 179px;
}
@media screen and (max-width: 1024px) {
  .p-thanks {
    padding-top: 152px;
    padding-bottom: 96px;
  }
  .p-thanks__body {
    margin-top: 48px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-top: 128px;
    padding-bottom: 72px;
  }
  .p-thanks__body {
    margin-top: 36px;
  }
  .p-thanks__catch {
    font-size: 1.25rem;
    line-height: 1.75;
  }
  .p-thanks__text {
    margin-top: 20px;
    font-size: 0.9375rem;
  }
  .p-thanks__action {
    margin-top: 72px;
    text-align: center;
  }
  .p-thanks__button {
    width: 100%;
    max-width: 280px;
  }
}

/* Object / Utility --------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .u-tab-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .u-br-pc {
    display: none;
  }
}

.js .u-fade {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js .u-fade.is-inview {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js .u-fade {
    opacity: 1;
    transition: none;
  }
}

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