@charset "UTF-8";
/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --color-brand: #11355A;
  --color-brand-sub: #ffffff;
  --color-text: #11355A;
  --color-text-sub: #666666;
  --color-nav: #000000;
  --color-required: #FF0000;
  --font-family-base: Shippori Mincho B1, serif;
  --font-family-title: Shippori Mincho B1, serif;
  --font-size-base: 1.6rem;
  --line-height-base: 1.6;
  --container-max-width: 88.8888888889vw;
}

/*-----------------------------------------------
base
-----------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  letter-spacing: 0.04em;
  color: var(--color-text);
}

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

a {
  transition: all 0.3s ease;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (width < 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.container {
  width: 88.8888888889vw;
  margin-inline: auto;
}
.container--white {
  background: #fff;
}
.container__inner {
  padding: 80px 0;
}
@media (width < 600px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .container__inner {
    padding: 24px 0;
  }
}

.section--white {
  color: #fff;
}
.section--white .section__title .en {
  color: #fff;
}
.section--white .section__title .en--prant {
  color: #8BADC9;
}
.section--white .section__title .ja {
  color: #fff;
}
.section--center {
  text-align: center;
}
.section__title {
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.section__title--white .ja {
  color: #fff;
}
.section__title--white .en {
  color: #fff;
}
.section__title .ja,
.section__title .en {
  display: block;
}
.section__title .ja {
  color: #061F45;
  font-size: 4.8rem;
}
.section__title .ja--sm {
  font-size: 4rem;
}
.section__title .en {
  text-transform: capitalize;
  color: #668393;
  font-size: 2rem;
}
.section__title .en--text-transform {
  text-transform: none;
}
@media (width < 600px) {
  .section__title .ja {
    font-size: 2.8rem;
  }
  .section__title .en {
    font-size: 1.2rem;
  }
}

.center {
  text-align: center;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.gap-12 {
  gap: 12px;
}

.gap-24 {
  gap: 24px;
}

.gap-40 {
  gap: 40px;
}

.pt-64 {
  padding-top: 64px;
}

.ptb-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.pt-120 {
  padding-top: 120px;
}
@media (width < 600px) {
  .pt-120 {
    padding-top: 64px;
  }
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (width < 600px) {
  .ptb-120 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-80 {
  margin-bottom: 80px;
}
@media (width < 600px) {
  .mb-80 {
    margin-bottom: 48px;
  }
}

.mtb-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media (width < 600px) {
  .mtb-120 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}
@media (width < 600px) {
  .mb-120 {
    margin-bottom: 64px;
  }
}

.pc-only {
  display: block;
}
@media (width < 1025px) {
  .pc-only {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (width < 1025px) {
  .tb-br {
    display: block;
  }
}

.sp-br {
  display: none;
}
@media (width < 600px) {
  .sp-br {
    display: block;
  }
}

.bg-gray {
  background: #F3F3F3;
}

.sp-only {
  display: none;
}
@media (width < 600px) {
  .sp-only {
    display: block;
  }
}

.center-text {
  text-align: center;
  margin-inline: auto;
}

/*-----------------------------------------------
buttons
-----------------------------------------------*/
._blank {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
._blank::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon-blank.svg) no-repeat center center/contain;
}

/*-----------------------------------------------
Entry Button
-----------------------------------------------*/
.btn {
  max-width: 309px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: 120px;
  background: #0486B7;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 32px;
  border: 1px solid #fff;
}
.btn--md {
  max-width: 360px;
}
.btn--lg {
  max-width: 385px;
  padding: 12px 25px;
}
@media (width < 600px) {
  .btn--lg {
    padding: 12px 16px;
  }
}
.btn__text, .btn__icon {
  position: relative;
  z-index: 1;
}
.btn__icon {
  width: 16px;
  height: 16px;
}
.btn__icon svg path {
  stroke-width: 1.5;
  stroke-linecap: round;
  -webkit-stroke-width: 1.5;
  -webkit-stroke-linecap: round;
}
.btn__icon--white {
  color: #011F39;
}
.btn__icon--job {
  color: #0C52A1;
}
@media (hover: hover) {
  .btn:hover, .btn:focus {
    opacity: 0.8;
  }
}
.btn--primary {
  background: #11355A;
  color: #fff;
}
@media (hover: hover) {
  .btn--primary:hover, .btn--primary:focus {
    color: #fff;
  }
}
.btn--white {
  background: #fff !important;
  color: #011F39;
}
.btn--job {
  color: #0C52A1;
}
@media (width < 600px) {
  .btn--job {
    width: 256px;
  }
}
@media (width < 600px) {
  .btn {
    max-width: 256px;
    padding: 12px 16px;
    gap: 10px;
  }
  .btn--full {
    max-width: 100%;
    width: 100%;
  }
}

.btn--animated {
  overflow: hidden;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .btn--animated:hover, .btn--animated:focus {
    opacity: 1;
    color: #fff;
  }
}
.btn--animated::before, .btn--animated::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  transform: rotate(-90deg);
  transform-origin: top right;
  z-index: 0;
}
.btn--animated::before {
  top: -5px;
  right: -5px;
  background: #194e85;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.15s;
}
.btn--animated::after {
  top: 0;
  right: 0;
  background: #2574c5;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}
.btn--animated .btn__text,
.btn--animated .btn__icon {
  transition: transform 0.2s ease;
}
.btn--animated .btn__icon {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .btn--animated:hover::before, .btn--animated:hover::after, .btn--animated:focus::before, .btn--animated:focus::after {
    transform: rotate(0deg);
  }
  .btn--animated:hover .btn__text, .btn--animated:focus .btn__text {
    transform: translateX(8px);
  }
  .btn--animated:hover .btn__icon, .btn--animated:focus .btn__icon {
    transform: translateX(8px);
    opacity: 0.3;
  }
}
.btn--animated.btn--primary::before {
  background: #194e85;
}
.btn--animated.btn--primary::after {
  background: #1d5b9a;
}
@media (hover: hover) {
  .btn--animated.btn--primary:hover, .btn--animated.btn--primary:focus {
    color: #fff;
  }
}
.btn--animated.btn--basic {
  background: #11355A;
  border: none;
}
.btn--animated.btn--basic::before, .btn--animated.btn--basic::after {
  background: linear-gradient(91.76deg, #04518D -4.32%, #ED8294 67.13%, #E2C980 104.96%);
}

/*-----------------------------------------------
cards
-----------------------------------------------*/
.card {
  background: var(--color-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.card__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  padding: var(--spacing-base);
}
.card__title {
  font-size: var(--font-size-h3);
  margin-bottom: var(--spacing-small);
}
.card__text {
  margin-bottom: var(--spacing-base);
}

/*-----------------------------------------------
swiper
-----------------------------------------------*/
.top-work .swiper {
  padding-bottom: 60px;
}
@media (width < 600px) {
  .top-work .swiper {
    margin-top: 0;
  }
}
.top-work .swiper__title {
  position: relative;
  z-index: 2;
  margin-left: 9.7222222222vw;
  display: inline-block;
  font-size: 120px;
  font-weight: 700;
  line-height: 160%;
  background: linear-gradient(91.76deg, #04518D -4.32%, #4A608F 17.07%, #ED8294 67.13%, #E2C980 104.96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media (width < 1025px) {
  .top-work .swiper__title {
    font-size: 80px;
    margin-left: 0;
    line-height: 1;
    padding-bottom: 40px;
  }
}
.top-work .swiper__num {
  display: none;
  position: absolute;
  bottom: -20%;
  right: -3%;
  font-size: 140px;
  font-weight: 700;
  color: #244360;
  mix-blend-mode: overlay;
}
@media (width < 1025px) {
  .top-work .swiper__num {
    font-size: 94px;
    bottom: -30%;
    right: -3%;
  }
}
@media (width < 600px) {
  .top-work .swiper {
    padding: 0 20px;
  }
}
@media (width < 600px) {
  .top-work .swiper {
    padding-bottom: 80px;
  }
}
.top-work .swiper-slide {
  transform: scale(0.804) !important;
  /* 左右のスライドを小さくする */
  transform-origin: center !important;
  /* スケール変換の基準点を中央に設定 */
  transition: all 0.7s ease !important;
  /* ゆっくり小さくさせる */
}
.top-work .swiper-slide > a {
  display: block;
  width: 100%;
  height: 100%;
}
.top-work .swiper-slide > a:hover img {
  transform: scale(1.1);
}
.top-work .swiper-slide img {
  overflow: hidden;
  height: auto;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.75, 0.3, 0.25, 1);
}
.top-work .swiper-slide > a > p {
  color: #fff;
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 18px;
  font-weight: 700;
}
.top-work .swiper-slide-active {
  transform: scale(1) !important;
  /* 中央のスライドは小さくしない */
  transform-origin: center !important;
  /* スケール変換の基準点を中央に設定 */
  z-index: 1;
  /* 中央のスライドを一番上にする */
}
.top-work .swiper-slide-active > a > p {
  font-size: 32px;
}
@media (width < 1025px) {
  .top-work .swiper-slide-active > a > p {
    font-size: 18px;
  }
}
.top-work .swiper-slide-active .swiper__num {
  display: block;
}

.btn-container {
  padding: 0 20px;
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (width < 600px) {
  .btn-container {
    padding: 0 8px;
    flex-direction: column;
    gap: 48px;
  }
}

.swiper-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.swiper-navigation__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #11355A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.swiper-navigation__btn svg path {
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  -webkit-stroke-width: 1.5;
  -webkit-stroke-linecap: round;
}
.swiper-navigation__btn:hover svg path, .swiper-navigation__btn:focus svg path {
  stroke: #fff !important;
  stroke-width: 1.5 !important;
}
@media (forced-colors: active) {
  .swiper-navigation__btn svg path {
    stroke: ButtonText;
  }
}

/*-----------------------------------------------
無限スライダー
-----------------------------------------------*/
@-webkit-keyframes vertical-animation {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes vertical-animation {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes vertical-animation-reverse {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes vertical-animation-reverse {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
.slider-container {
  height: 800px;
  rotate: 16deg;
}
.slider-container .slider-wrapper {
  display: grid;
  /* slideのmargin-bottom値を全て内包させる為 */
  -webkit-animation: vertical-animation 120s linear infinite;
          animation: vertical-animation 120s linear infinite;
}
.slider-container .slide {
  width: 395px;
  margin: 0 auto 40px;
}
.slider-container .slide img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.slider-container--reverse .slider-wrapper {
  animation: vertical-animation 60s linear infinite reverse;
}
@media (width < 600px) {
  .slider-container {
    rotate: 24deg;
    height: 400px;
  }
  .slider-container .slide {
    width: 200px;
    height: 280px;
    margin: 0 auto 20px;
  }
  .slider-container .slide img {
    width: 100%;
    height: 280px;
  }
  .slider-container--reverse .slide {
    width: 200px;
    height: 200px;
  }
  .slider-container--reverse .slide img {
    height: 200px;
  }
}

/*-----------------------------------------------
form
-----------------------------------------------*/
.page-contact__form {
  margin-bottom: 48px;
  background: var(--bg);
  padding: 64px 110px;
  border-radius: 16px;
}
.page-contact .form__inner {
  padding: 64px 110px;
  background: var(--color-bg-form);
}
.page-contact .red {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-required);
}
.page-contact .text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-form);
}
.page-contact .checkbox-group {
  margin: 10px 0 20px;
  color: #222;
}
.page-contact .checkbox-group input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  vertical-align: bottom;
}
.page-contact input[type=text],
.page-contact input[type=tel],
.page-contact input[type=email],
.page-contact textarea {
  font-size: 1.6rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e5e5;
  background: #fff;
  margin: 20px 0;
}
.page-contact .checkbox-group {
  display: flex;
  gap: 24px;
}
.page-contact .checkbox {
  margin-top: 64px;
  margin-bottom: 44px;
}
.page-contact .checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact .checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 14px;
  display: flex;
  align-items: center;
}
.page-contact .checkbox p {
  color: #4c4c4c;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
.page-contact .checkbox a {
  color: #4c4c4c;
  text-decoration: underline;
  text-underline-offset: 20%;
}
.page-contact .submit-btn {
  background: var(--color-brand-sub);
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0.08em;
  max-width: 500px;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
}
.page-contact .submit-btn:hover {
  opacity: 0.8;
}
.page-contact .privacy__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.page-contact .privacy__description {
  margin-bottom: 40px;
}
@media (width < 600px) {
  .page-contact .form__inner {
    padding: 32px 20px;
  }
  .page-contact .checkbox-group {
    flex-direction: column;
    gap: 16px;
  }
}

/*-----------------------------------------------
animations
-----------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay-1 {
  transition-delay: 0.1s;
}
.fade-in--delay-2 {
  transition-delay: 0.2s;
}
.fade-in--delay-3 {
  transition-delay: 0.3s;
}
.fade-in--delay-4 {
  transition-delay: 0.4s;
}
.fade-in--delay-5 {
  transition-delay: 0.5s;
}

.fade-in--slow {
  transition-duration: 1s;
}
.fade-in--fast {
  transition-duration: 0.3s;
}

.fade-in--slide-up {
  transform: translateY(40px);
}
.fade-in--slide-down {
  transform: translateY(-20px);
}
.fade-in--slide-left {
  transform: translateX(20px);
}
.fade-in--slide-right {
  transform: translateX(-20px);
}

@media (width < 600px) {
  .fade-in {
    transform: translateY(15px);
  }
  .fade-in--slide-up {
    transform: translateY(30px);
  }
}
/*-----------------------------------------------
Links - 汎用リンクスタイル
-----------------------------------------------*/
._blank {
  font-size: 1.4rem;
  text-decoration: none;
  outline: none;
  color: #fff;
}
._blank-text {
  position: relative;
  display: inline-block;
}
._blank-text::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
._blank:hover ._blank-text::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

/*-----------------------------------------------
breadcrumb
-----------------------------------------------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}
.breadcrumb a {
  color: #A7A7A7;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  transition: 0.3s;
  color: #0C52A1;
  opacity: 0.8;
}
.breadcrumb li:not(:last-of-type)::after {
  content: url(../img/page/icon_bread.svg);
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  margin: 0 12px;
  color: #A7A7A7;
  font-weight: 400;
}
.breadcrumb li:last-of-type {
  color: #0C52A1;
}

.schedule_time, .schedule .swiper-slide .schedule_time, .schedule-container .schedule-item .schedule_time {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #2A68AD;
  color: #fff;
  text-align: center;
}

.schedule .swiper-slide .schedule_content, .schedule-container .schedule-item .schedule_content {
  margin-top: 65px;
  width: 100%;
}
.schedule .swiper-slide, .schedule-container .schedule-item {
  width: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.schedule .swiper-slide .schedule_time, .schedule-container .schedule-item .schedule_time {
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
}
.schedule .swiper-slide .schedule_content, .schedule-container .schedule-item .schedule_content {
  border-radius: 12px;
  padding: 20px;
  background: #F5F9FF;
  height: 250px;
}

.schedule {
  position: relative;
  font-size: 14px;
  padding: 0;
  max-width: 1920px;
  width: 94.4444444444%;
  margin-left: auto;
}
.schedule::before {
  position: absolute;
  content: "";
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  border: 1px dashed #2A68AD;
}
@media (width < 600px) {
  .schedule::before {
    width: 67%;
    left: 66%;
  }
}
.schedule ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.schedule li {
  position: relative;
}
.schedule_content_title {
  color: #0C52A1;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.schedule-container {
  position: relative;
  padding: 0;
}
.schedule-container .schedule-area {
  position: relative;
  overflow: hidden;
}
.schedule-container .schedule-wrapper {
  display: flex;
  align-items: stretch;
}
.schedule .swiper-area {
  position: relative;
  overflow: hidden;
}
.schedule .swiper {
  overflow: visible;
}
.schedule .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.schedule .swiper-pagination {
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  z-index: 10;
  width: 100%;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
}
.schedule .swiper-pagination-bullet {
  width: 20%;
  height: 8px;
  background-color: #E6E6E6;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0;
  display: inline-block;
  visibility: visible;
  border-radius: 24px;
}
.schedule .swiper-pagination-bullet:hover {
  background-color: #2A68AD;
}
.schedule .swiper-pagination-bullet-active {
  background-color: #2A68AD;
  width: 30%;
}
@media (width < 600px) {
  .schedule .swiper-pagination-bullet {
    width: 120px;
    height: 6px;
    margin: 0 4px;
  }
  .schedule .swiper-pagination-bullet-active {
    width: 120px;
  }
}

/*-----------------------------------------------
qa-list
-----------------------------------------------*/
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qa {
  max-width: 100%;
  width: 100%;
  background: #F5F9FF;
  padding: 0 20px;
}

.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px 40px;
  color: #193D91;
  font-weight: 700;
  cursor: pointer;
}
@media (width < 600px) {
  .qa summary {
    padding: 20px;
  }
}

.qa summary::before,
.qa p::before {
  position: absolute;
  left: 0;
  color: #CA5068;
  content: "A";
}

.qa summary::before {
  color: #193D91;
  content: "Q";
}
@media (width < 600px) {
  .qa summary::before {
    top: 20px;
  }
}

.qa summary .plus-vertical {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #193D91;
  border-radius: 50%;
}
@media (width < 600px) {
  .qa summary .plus-vertical {
    width: 20px;
    height: 20px;
    right: 0;
  }
}

.qa summary .plus-vertical::before,
.qa summary .plus-vertical::after {
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #193D91;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (width < 600px) {
  .qa summary .plus-vertical::before,
.qa summary .plus-vertical::after {
    width: 1px;
    height: 12px;
  }
}

.qa summary .plus-vertical::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa summary .plus-vertical::after {
  transition: transform 0.3s ease;
}

.qa[open] summary {
  padding-bottom: 16px;
}

.qa[open] summary .plus-vertical::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 40px 30px 40px;
  color: #222222;
  font-weight: 400;
  transition: transform 0.3s, opacity 0.5s;
}
@media (width < 600px) {
  .qa p {
    padding: 0 20px 20px 20px;
  }
}

.qa[open] p {
  transform: none;
  opacity: 1;
}

/*-----------------------------------------------
Header
-----------------------------------------------*/
.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 88.8888888889%;
  font-size: var(--font-size-base);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 40px rgba(143, 168, 189, 0.6);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 64px;
  z-index: 100;
}
.header__inner {
  width: 100%;
  padding: 20px 60px 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (width < 1280px) {
  .header__right {
    gap: 16px;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (width < 1280px) {
  .header__buttons {
    gap: 8px;
  }
}
@media (max-width: 1190px) {
  .header__buttons {
    display: none;
  }
}
.header__catch {
  font-size: 1.4rem;
  font-weight: 700;
  color: #11355A;
  padding-left: 16px;
  border-left: 1px solid #000;
}
.header__logo {
  width: 120px;
  margin: 0;
  max-width: 100%;
  transition: opacity 0.3s;
}
.header__logo a {
  display: flex;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__img {
  width: 64px;
  height: 64px;
  cursor: pointer;
}
.header__img--close {
  position: absolute;
  top: 24px;
  right: 24px;
}
.header__img:hover {
  opacity: 0.8;
}
@media (width < 600px) {
  .header {
    width: 89.34%;
  }
  .header__inner {
    padding: 12px 15.5px;
  }
  .header__logo {
    width: 64px;
  }
  .header__catch {
    font-size: 12px;
  }
  .header__img {
    width: 32px;
    height: 32px;
  }
}

/*-----------------------------------------------
Navigation
-----------------------------------------------*/
.nav {
  max-width: 100%;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav__item {
  margin: 0 0 20px;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s;
}
.nav__item a {
  display: block;
  width: 100%;
  padding: 7px 9.5px;
  color: var(--color-nav);
}
@media (hover: hover) {
  .nav__item a:hover, .nav__item a:focus {
    color: var(--color-brand);
  }
}
.nav__item--contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand);
  border: 1px solid #fff;
  color: #fff;
  margin-left: 0;
}
.nav__item--contact a {
  width: 200px;
  padding: 12px 0;
  font-size: 20px;
  color: #fff;
}
.nav__item--contact a::before {
  content: url(../img/common/i-email.svg);
  display: inline-block;
  width: 25px;
  height: 19px;
  margin-right: 8px;
  vertical-align: bottom;
}
@media (hover: hover) {
  .nav__item--contact:hover, .nav__item--contact:focus {
    opacity: 0.8;
  }
  .nav__item--contact:hover a, .nav__item--contact:focus a {
    color: #fff;
  }
}
.nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  background: rgba(255, 255, 255, 0.86);
  color: #000;
  text-align: center;
  transition: opacity 0.4s ease;
  z-index: 200;
}

/*-----------------------------------------------
Burger Menu
-----------------------------------------------*/
/*-----------------------------------------------
Mega Menu
-----------------------------------------------*/
.header__megamenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 60, 100, 0);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: opacity 2s ease, background 2s ease, visibility 2s, -webkit-backdrop-filter 2s ease;
  transition: opacity 2s ease, background 2s ease, backdrop-filter 2s ease, visibility 2s;
  transition: opacity 2s ease, background 2s ease, backdrop-filter 2s ease, visibility 2s, -webkit-backdrop-filter 2s ease;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .header__megamenu {
    background: transparent;
  }
}
.header__megamenu.is-active {
  opacity: 1;
  visibility: visible;
  background: rgba(3, 36, 90, 0.3);
}
.header__megamenu.is-active .header__megamenu-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) translateY(0) rotate3d(1, 0, 0, 0deg);
  filter: blur(0px);
}
@media (max-width: 1024px) {
  .header__megamenu.is-active .header__megamenu-panel {
    transform: translateY(0) scale(1) rotate3d(1, 0, 0, 0deg);
  }
}
.header__megamenu.is-active .header__megamenu-inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.header__megamenu-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%) scale(0.1) translateY(200px) rotate3d(1, 0, 0, 90deg);
  max-width: 1312px;
  width: 92vw;
  background: linear-gradient(180deg, #0C6A99 20.03%, #63BCE8 95.63%);
  border-radius: 32px;
  padding: 64px;
  overflow-y: auto;
  opacity: 0;
  filter: blur(30px);
  transition: transform 3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s, opacity 2s ease 0.5s, filter 2s ease 0.5s;
}
@media (max-width: 1024px) {
  .header__megamenu-panel {
    position: static;
    transform: translateY(100vh) scale(0.1) rotate3d(1, 0, 0, 90deg);
    max-width: none;
    width: 100vw;
    height: 100%;
    border-radius: 0;
    padding: 64px 20px 40px;
  }
}
@media (width < 600px) {
  .header__megamenu-panel {
    height: auto;
  }
}
.header__megamenu-inner {
  margin: 0 auto;
  display: flex;
  gap: 48px;
  opacity: 0;
  transform: translateY(150px) scale(0.5);
  transition: opacity 1.5s ease 2s, transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2s;
}
@media (max-width: 1024px) {
  .header__megamenu-inner {
    margin: 0;
    flex-direction: column;
    gap: 32px;
    height: 100%;
  }
}
.header__megamenu-left {
  padding-right: 40px;
  border-right: 1px solid #335271;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-width: 280px;
}
@media (max-width: 1024px) {
  .header__megamenu-left {
    min-width: 0;
    border-right: none;
    flex: 0 0 40px;
    margin-bottom: 40px;
  }
}
@media (width < 600px) {
  .header__megamenu-left {
    flex: 0 0 100%;
  }
}
.header__megamenu-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.header__megamenu-logo-block {
  margin-top: 40px;
  text-align: left;
}
@media (max-width: 1024px) {
  .header__megamenu-logo-block {
    display: none;
  }
}
.header__megamenu-logo {
  width: 200px;
  height: 82px;
  margin-bottom: 12px;
}
.header__megamenu-desc {
  color: #fff;
  font-weight: 700;
}
.header__megamenu-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .header__megamenu-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.header__megamenu-section {
  display: flex;
  gap: 12px;
  min-width: 220px;
}
@media (min-width: 1025px) {
  .header__megamenu-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-section {
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-section--no-accordion {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-section--no-accordion .header__megamenu-content {
    max-height: none;
    overflow: visible;
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-section.is-open .header__megamenu-content {
    max-height: 300px;
    margin-top: 12px;
  }
}
.header__megamenu-right {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 1025px) {
  .header__megamenu-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.header__megamenu-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
@media (min-width: 1025px) {
  .header__megamenu-content-wrapper {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-content-wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.header__megamenu-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (min-width: 1025px) {
  .header__megamenu-header {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
    display: inline-block;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-header {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .header__megamenu-content {
    position: relative;
    max-height: none;
    overflow: visible;
    width: 100%;
  }
}
.header__megamenu-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.header__megamenu-title::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
@media (hover: hover) {
  .header__megamenu-title:hover, .header__megamenu-title:focus {
    color: #fff;
  }
  .header__megamenu-title:hover::after, .header__megamenu-title:focus::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@media (max-width: 1024px) {
  .header__megamenu-title {
    font-size: 1.8rem;
    flex: 1;
  }
}
.header__megamenu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
@media (max-width: 1024px) {
  .header__megamenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__megamenu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header__megamenu-icon {
  position: relative;
  width: 12px;
  height: 12px;
}
.header__megamenu-icon::before, .header__megamenu-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease;
}
.header__megamenu-icon::before {
  width: 10px;
  height: 1px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.header__megamenu-icon::after {
  width: 1px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__megamenu-section.is-open .header__megamenu-icon::after {
  transform: rotate(90deg) translate(50%, 0);
  top: 3%;
}
.header__megamenu-section.is-open .header__megamenu-icon::before {
  width: 0;
  height: 0;
}
.header__megamenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 1.4rem;
  flex: 1;
}
.header__megamenu-list li {
  margin-bottom: 4px;
}
.header__megamenu-list li a {
  color: #fff;
  position: relative;
  display: inline-block;
}
.header__megamenu-list li a::before {
  content: "-";
  color: #fff;
}
.header__megamenu-list li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
@media (hover: hover) {
  .header__megamenu-list li a:hover::after, .header__megamenu-list li a:focus::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.header__megamenu-img {
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__megamenu-img {
    border-radius: 4px;
    width: 60px;
    height: 52px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1025px) {
  .header__megamenu-img {
    width: 140px;
  }
}

/*-----------------------------------------------
Modal - 新卒採用エントリー
-----------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal.is-active .modal__panel {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 36, 90, 0.3);
}
.modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 94%;
  max-width: 706px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 64px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (width < 600px) {
  .modal__panel {
    padding: 64px 20px;
  }
}
.modal__inner {
  position: relative;
}
.modal__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #11355A;
  text-align: center;
  margin-bottom: 18px;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #11355A;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.modal__close:hover {
  background-color: #11355A;
}
.modal__close:hover .modal__close-icon::before, .modal__close:hover .modal__close-icon::after {
  background-color: #fff;
}
.modal__close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
}
.modal__close-icon::before, .modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #666;
  border-radius: 1px;
}
.modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__content {
  text-align: center;
}
.modal__buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
}
@media (width < 600px) {
  .modal__buttons {
    flex-direction: column;
  }
}

/*footer
-----------------------------------------------*/
.footer {
  padding-top: 64px;
  color: #fff;
  background-image: url(../img/common/footer_bg.webp), url(../img/common/footer_bg.jpg);
  background-image: -webkit-image-set(url(../img/common/footer_bg.webp) 1x, url(../img/common/footer_bg.jpg) 1x);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.footer__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-entry__inner {
  display: flex;
  justify-content: space-between;
}
@media (width < 1025px) {
  .footer-entry__inner {
    gap: 24px;
    flex-direction: column;
  }
}
.footer-entry__content {
  max-width: 904px;
  width: 100%;
  display: flex;
  gap: 24px;
}
@media (width < 600px) {
  .footer-entry__content {
    flex-direction: column;
  }
}
.footer-entry__link {
  border: none;
  padding: 112px 24px 24px;
  max-width: 440px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  background-image: url(../img/common/card.png);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: color 0.2s ease;
}
.footer-entry__link::before, .footer-entry__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 98%;
  transform: rotate(-90deg);
  transform-origin: top right;
  z-index: 0;
  border-radius: 8px;
  top: 1%;
  left: 0;
}
.footer-entry__link::before {
  background: rgba(144, 209, 240, 0.3);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.15s;
}
.footer-entry__link::after {
  background: rgba(144, 209, 240, 0.5);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}
.footer-entry__link--career {
  background-image: url(../img/common/card_career.png);
}
.footer-entry__link--career::before {
  background: rgba(113, 138, 197, 0.2);
}
.footer-entry__link--career::after {
  background: rgba(113, 138, 197, 0.4);
}
.footer-entry__link:hover::before, .footer-entry__link:hover::after {
  transform: rotate(0deg);
}
.footer-entry__link:hover .footer-entry__text,
.footer-entry__link:hover .footer-entry__arrow {
  transform: translateX(8px);
}
.footer-entry__link:hover .footer-entry__arrow svg {
  opacity: 0.3;
}
.footer-entry__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.footer-entry__text .ja {
  font-size: 40px;
}
@media (width < 1025px) {
  .footer-entry__text .ja {
    font-size: 32px;
  }
}
@media (width < 600px) {
  .footer-entry__text .ja {
    font-size: 24px;
  }
}
.footer-entry__arrow {
  max-width: 48px;
  max-height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: rgba(144, 209, 240, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.footer-entry__arrow svg path {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  -webkit-stroke-width: 1.5;
  -webkit-stroke-linecap: round;
}
.footer-entry__arrow svg {
  transition: opacity 0.2s ease;
}
.footer-entry__arrow--career {
  background: rgba(113, 138, 197, 0.4);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (width < 1025px) {
  .footer-wrap {
    flex-direction: column;
    gap: 64px;
  }
}
.footer__logo img {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
.footer-list {
  max-width: 720px;
}
.footer-list__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 53px 16px;
}
@media (width < 1025px) {
  .footer-list__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 600px) {
  .footer-list__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-list .footer-list__child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list__item {
  display: flex;
  flex-direction: column;
  min-width: 130px;
  margin-bottom: 24px;
}
.footer-list__head {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.footer-list__head .footer__link-text::before {
  content: none;
}
.footer-list__child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 600px) {
  .footer__flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.footer__copyright {
  font-size: 1.4rem;
  background: #1C1C1C;
  color: #fff;
  padding: 24px 0;
  letter-spacing: 0;
  line-height: 1;
}
.footer__copyright .footer__link-text::before {
  content: none;
}
.footer__link {
  font-size: 1.4rem;
  text-decoration: none;
  outline: none;
}
.footer__link-text {
  position: relative;
  display: inline-block;
}
.footer__link-text::before {
  content: "-";
  color: #fff;
}
.footer__link-text::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
.footer__link:hover .footer__link-text::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

/*-----------------------------------------------
top
-----------------------------------------------*/
.top {
  background: #f3f3f3;
}

.top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1490px;
  z-index: -1;
  background-image: url(../img/top/top_bg.webp), url(../img/top/top_bg.png);
  background-image: -webkit-image-set(url(../img/top/top_bg.webp) 1x, url(../img/top/top_bg.png) 1x);
  background-repeat: no-repeat;
  background-position: top right;
}
@media (width < 1025px) {
  .top-bg {
    background-image: url(../img/top/top_bg_sp.webp), url(../img/top/top_bg_sp.png);
    background-image: -webkit-image-set(url(../img/top/top_bg_sp.webp) 1x, url(../img/top/top_bg_sp.png) 1x);
    height: 612px;
  }
}

.top-fv {
  padding: 258px 0 258px;
  max-width: 1030px;
  margin-left: 5.5555555556vw;
}
@media (width < 1025px) {
  .top-fv {
    margin: 0;
    padding: 182px 20px 64px;
  }
}
.top-fv__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.04em;
  color: #11355A;
}
.top-fv__title-desktop {
  display: block;
}
@media (width < 600px) {
  .top-fv__title-desktop {
    display: none;
  }
}
.top-fv__title-mobile {
  display: none;
}
@media (width < 600px) {
  .top-fv__title-mobile {
    display: block;
  }
}
.top-fv__title-text {
  display: inline-block;
  background: #fff;
  padding: 0 24px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.top-fv__title-text-sub {
  letter-spacing: -0.4em;
}
.top-fv__title-text-10 {
  letter-spacing: -0.1em;
}
@media (width < 1280px) {
  .top-fv__title {
    font-size: 54px;
  }
}
@media (width < 1025px) {
  .top-fv__title {
    font-size: 40px;
  }
}
@media (width < 600px) {
  .top-fv__title {
    font-size: 36px;
  }
  .top-fv__title-text {
    padding: 0 12px;
    margin-bottom: 8px;
  }
}
.top-fv__desc {
  color: #7B7B7B;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
@media (width < 1025px) {
  .top-fv__desc {
    margin-bottom: 182px;
  }
}
.top-fv__textbox {
  max-width: 700px;
}
.top-fv__text {
  padding: 16px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.top-about {
  margin-bottom: 57px;
}
.top-about__inner {
  display: flex;
  gap: 5.5555555556vw;
  align-items: flex-end;
}
@media (width < 1280px) {
  .top-about__inner {
    gap: 40px;
  }
}
@media (width < 1025px) {
  .top-about__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.top-about__content {
  width: 61.8055555556vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (width < 1025px) {
  .top-about__content {
    width: 100%;
  }
}

.top-work {
  overflow: hidden;
  background: #fff;
  padding-bottom: 80px;
  position: relative;
}
.top-work__bg {
  position: relative;
  padding-top: 120px;
  padding-bottom: 64px;
}
.top-work__bg:before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/top_brand_bg.webp), url(../img/top/top_brand_bg.png);
  background-image: -webkit-image-set(url(../img/top/top_brand_bg.webp) 1x, url(../img/top/top_brand_bg.png) 1x);
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (width < 1025px) {
  .top-work__bg:before {
    top: 0;
    background-position: top right;
    background-image: url(../img/top/top_brand_bg_sp.webp), url(../img/top/top_brand_bg_sp.png);
    background-image: -webkit-image-set(url(../img/top/top_brand_bg_sp.webp) 1x, url(../img/top/top_brand_bg_sp.png) 1x);
  }
}
@media (width < 600px) {
  .top-work__bg {
    padding-top: 64px;
  }
}
.top-work__container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
@media (width < 1025px) {
  .top-work__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-work__text {
  width: 39.7222222222vw;
}
@media (width < 1025px) {
  .top-work__text {
    width: 100%;
  }
}
.top-work__list {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 64px;
}
@media (width < 600px) {
  .top-work__list {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.top-work__item {
  width: 100%;
  position: relative;
}
.top-work__item a {
  display: block;
}
@media (hover: hover) {
  .top-work__item a:hover img, .top-work__item a:focus img {
    transform: scale(1.1);
  }
}
.top-work__img {
  overflow: hidden;
}
.top-work__img img {
  transition: all 0.5s cubic-bezier(0.75, 0.3, 0.25, 1);
}
@media (width < 600px) {
  .top-work__img {
    aspect-ratio: 376/220;
  }
}
.top-work__item-content {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  bottom: 12px;
  left: 40px;
  z-index: 1;
}
@media (width < 600px) {
  .top-work__item-content {
    font-size: 2.4rem;
  }
}
.top-work__btn {
  margin-left: auto;
}
@media (width < 600px) {
  .top-work__btn {
    margin: 0 auto;
  }
}
@media (width < 600px) {
  .top-work__swiper {
    margin-top: 64px;
  }
}

.top-environment {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(146.69deg, #0C6A99 15.57%, #63BCE8 57.35%, #FFFFFF 76.28%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
}
@media (width < 1025px) {
  .top-environment {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-environment__title .en {
  color: #8BADC9;
  font-size: 2.4rem;
}
.top-environment__title .ja {
  color: #fff;
}
@media (width < 600px) {
  .top-environment__title .en {
    font-size: 1.2rem;
  }
}
.top-environment__inner {
  padding-left: 80px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (width < 1025px) {
  .top-environment__inner {
    max-width: 100%;
    padding: 64px 20px 0;
    margin-bottom: 30px;
  }
}
.top-environment__slider {
  width: calc(100% - 468px);
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  gap: 70px;
}
@media (width < 1025px) {
  .top-environment__slider {
    width: 100%;
  }
}
@media (width < 600px) {
  .top-environment__slider {
    gap: 30px;
  }
}

.top-flow {
  background-image: url(../img/top/top-flow_bg.webp), url(../img/top/top-flow_bg.png);
  background-image: -webkit-image-set(url(../img/top/top-flow_bg.webp) 1x, url(../img/top/top-flow_bg.png) 1x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.top-flow--none {
  display: none;
}
@media (max-width: 1100px) {
  .top-flow {
    padding: 0;
  }
}
.top-flow__inner {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media (max-width: 1100px) {
  .top-flow__inner {
    width: 100%;
    padding: 0;
    padding-bottom: 64px;
  }
}
.top-flow__title {
  padding-top: 64px;
  width: 77.7777777778vw;
  margin-inline: auto;
  margin-bottom: 64px;
}
.top-flow__content {
  max-width: 1022px;
  width: 100%;
  margin-inline: auto;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
}
.top-flow__content--new {
  color: #0574A7;
}
.top-flow__content--mid {
  color: #193D91;
}
@media (max-width: 1100px) {
  .top-flow__content {
    width: 94%;
  }
}
.top-flow__sub-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.top-flow__steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.top-flow__steps::before {
  content: "";
  position: absolute;
  top: 73px;
  width: 97%;
  height: 1px;
  background: #333;
  z-index: 1;
}
.top-flow__steps--mid {
  max-width: 804px;
  margin: 0;
}
.top-flow__steps--mid::before {
  background: #193D91;
}
@media (max-width: 1100px) {
  .top-flow__steps {
    max-width: 345px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
  }
  .top-flow__steps::before {
    content: none;
  }
}
.top-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 160px;
}
.top-flow__step:last-child .top-flow__step-arrow {
  display: none;
}
@media (max-width: 1100px) {
  .top-flow__step {
    flex-direction: row;
    align-items: center;
    max-width: none;
    width: 100%;
    gap: 24px;
  }
  .top-flow__step:last-child .top-flow__step-arrow {
    display: none;
  }
}
.top-flow__step-number {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1100px) {
  .top-flow__step-number {
    margin-bottom: 0;
    order: 0;
    width: 80px;
    text-align: left;
  }
}
.top-flow__step-point {
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #0491BE 0%, #053F80 100%);
  border-radius: 50%;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}
.top-flow__step-point::after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  height: 28px;
  width: 1px;
  z-index: -1;
  background: #0574A7;
}
.top-flow__step-point--mid {
  background: linear-gradient(180deg, #577FDC 0%, #193D91 100%);
}
.top-flow__step-point--mid::after {
  background: #193D91;
}
@media (max-width: 1100px) {
  .top-flow__step-point {
    margin-bottom: 0;
    order: 1;
    flex-shrink: 0;
  }
  .top-flow__step-point:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 88%;
    width: 32px;
    height: 1px;
    background: #0574A7;
  }
  .top-flow__step-point::after {
    bottom: -110px;
    height: 112px;
  }
  .top-flow__step-point--mid:before {
    background: #193D91;
  }
  .top-flow__step-point--last::after {
    content: none;
  }
}
.top-flow__step-box {
  background: #0574A7;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  min-width: 114px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-flow__step-box--mid {
  background: #193D91;
}
@media (max-width: 1100px) {
  .top-flow__step-box {
    margin-bottom: 0;
    order: 2;
    flex: 1;
    max-width: 200px;
  }
}
.top-flow__step-arrow {
  width: 24px;
  height: 24px;
  position: absolute;
  right: -10%;
  top: 80%;
  transform: translateY(-50%);
}
.top-flow__step-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #A6C5D3;
}
.top-flow__step-arrow--mid::after {
  border-top: 12px solid #8897BB;
}
@media (max-width: 1100px) {
  .top-flow__step-arrow {
    bottom: -26px;
    right: auto;
    left: 71%;
    top: auto;
    transform: translateX(-50%);
    order: 3;
  }
  .top-flow__step-arrow::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media (width < 600px) {
  .top-flow__step-arrow {
    left: 76%;
  }
}

/*-----------------------------------------------
fv
-----------------------------------------------*/
.page-fv {
  overflow: hidden;
  position: relative;
  padding: 180px 0 28px;
}
.page-fv::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 60px;
  right: -60px;
  width: 100%;
  height: 100%;
  max-width: 1318px;
  background: url(../img/page/fv_bg.png) no-repeat top right/contain;
}
.page-fv__title {
  display: inline-flex;
  flex-direction: column;
  gap: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 64px;
}
.page-fv__title .en {
  display: inline-block;
  font-size: 120px;
  text-transform: capitalize;
  background: linear-gradient(90deg, #0488B7 0%, #103193 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.page-fv__title .en--lineheight {
  line-height: 1.3;
}
.page-fv__title .ja {
  font-size: 24px;
  color: #050F2D;
}
@media (width < 1025px) {
  .page-fv__title .en {
    font-size: 80px;
  }
}
@media (width < 600px) {
  .page-fv {
    padding: 100px 0 24px;
  }
  .page-fv::before {
    top: 90px;
    right: -28px;
  }
  .page-fv__title {
    gap: 24px;
  }
  .page-fv__title .en {
    font-size: 40px;
  }
  .page-fv__title .ja {
    font-size: 16px;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
.page {
  color: #333;
}
.page__title {
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.page__title .en {
  font-size: 2.4rem;
  letter-spacing: 0;
  color: #8BADC9;
}
.page__title .ja {
  font-size: 4.8rem;
  color: #061F45;
  letter-spacing: 0.04em;
}
.page__title--white .en {
  color: #fff;
}
.page__title--white .ja {
  color: #fff;
}
@media (width < 1025px) {
  .page__title {
    margin-bottom: 24px;
  }
  .page__title .en {
    font-size: 1.2rem;
  }
  .page__title .ja {
    font-size: 2.8rem;
  }
}

/*-----------------------------------------------
business
-----------------------------------------------*/
.business {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.business::before {
  content: "";
  position: absolute;
  top: 68%;
  right: 2%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30%;
  height: 219%;
  background: linear-gradient(135.93deg, #F8F3E3 9.94%, #C3DEF8 69.83%, #149FC5 81.48%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.business__img {
  margin-bottom: 40px;
}
.business__content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.business__sub-title {
  width: 32.2916666667vw;
  font-size: 2.8rem;
  color: #0C52A1;
}
.business__textbox {
  width: 53.8194444444vw;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width < 1025px) {
  .business__sub-title, .business__textbox {
    width: 100%;
  }
  .business__content {
    flex-direction: column;
  }
}
@media (width < 600px) {
  .business::before {
    top: 35%;
    right: -180%;
    width: 100%;
    height: 334%;
  }
  .business__sub-title {
    font-size: 2rem;
  }
}

.feature {
  padding: 120px 0;
  background-color: #fff;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.feature__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.feature__img {
  width: 44.7916666667vw;
}
.feature__content {
  width: 41.3194444444vw;
  color: #333;
}
.feature__title {
  font-size: 2.4rem;
  color: #0C52A1;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.feature__title .num {
  font-size: 1.6rem;
}
@media (width < 1025px) {
  .feature__item {
    flex-direction: column;
  }
  .feature__img {
    width: 100%;
  }
  .feature__content {
    width: 100%;
  }
}
@media (width < 600px) {
  .feature__title {
    font-size: 2rem;
  }
}

.future {
  padding: 80px 0;
  background-color: #116E9D;
  position: relative;
  overflow: hidden;
}
.future::before {
  content: "";
  position: absolute;
  top: 0;
  right: -36%;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/top_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
}
.future__content {
  width: 100%;
  font-weight: 700;
  padding: 64px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
@media (min-width: 1920px) {
  .future::before {
    right: 0;
  }
}
@media (width < 1025px) {
  .future__content {
    padding: 40px 20px;
  }
}

/*-----------------------------------------------
job
-----------------------------------------------*/
#plan {
  scroll-margin-top: 150px;
}
@media (width < 600px) {
  #plan {
    scroll-margin-top: 100px;
  }
}

#construction {
  scroll-margin-top: 150px;
}
@media (width < 600px) {
  #construction {
    scroll-margin-top: 100px;
  }
}

#sales {
  scroll-margin-top: 150px;
}
@media (width < 600px) {
  #sales {
    scroll-margin-top: 100px;
  }
}

.job__sections {
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.job__btn {
  width: 302px;
  padding: 15px 20px;
  font-weight: 700;
  color: #fff;
  background: #0C52A1;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job__btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow-down.svg) no-repeat center center/contain;
  rotate: 90deg;
}
.job__btn:hover {
  opacity: 0.8;
}
.job__fv {
  color: #fff;
  padding: 223px 0 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.job__fv--plan {
  background-image: url(../img/job/job_bg01.jpg);
}
@media (width < 600px) {
  .job__fv--plan {
    background-image: url(../img/job/job_bg01_sp.jpg);
  }
}
.job__fv--construction {
  background-image: url(../img/job/job_bg02.jpg);
}
@media (width < 600px) {
  .job__fv--construction {
    background-image: url(../img/job/job_bg02_sp.jpg);
  }
}
.job__fv--sales {
  background-image: url(../img/job/job_bg03.jpg);
}
@media (width < 600px) {
  .job__fv--sales {
    background-image: url(../img/job/job_bg03_sp.jpg);
  }
}
@media (width < 600px) {
  .job__fv {
    padding: 115px 0 24px;
  }
}
.job__title {
  font-size: 4.8rem;
  color: #fff;
  margin-bottom: 40px;
}
.job__flex {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.job__required {
  font-size: 1.6rem;
  font-weight: 700;
}
.job__required p {
  margin-bottom: 10px;
}
.job__required-list {
  display: flex;
  gap: 12px;
}
.job__required-item {
  padding: 8px 12px;
  background: #E6EEF6;
  border-radius: 2px;
  color: #050F2D;
}
.job__list {
  width: 88.8888888889vw;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (width < 600px) {
  .job__list {
    width: 100%;
    padding: 0 20px;
  }
}
.job__item {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #D1DBE1;
}
.job__item-title {
  width: 35.15625%;
  color: #0C52A1;
  font-size: 2.4rem;
}
.job__item-content {
  width: 62.96875%;
}
.job__item-text {
  margin-bottom: 24px;
}
.job__item-text:last-child {
  margin-bottom: 0;
}
.job__item-bg {
  font-weight: 700;
  padding: 16px 24px;
  background: #F5F9FF;
  margin-bottom: 24px;
}
.job__item-bg:last-child {
  margin-bottom: 0;
}
.job__item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job__item-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 100%;
  background: #0C52A1;
  position: relative;
  left: -15px;
  top: 1px;
}
@media (width < 600px) {
  .job__item-list li {
    margin-left: 10px;
  }
  .job__item-list li::before {
    left: -10px;
  }
}
@media (width < 1280px) {
  .job__item {
    flex-direction: column;
    gap: 24px;
  }
  .job__item-title {
    width: 100%;
  }
  .job__item-content {
    width: 100%;
  }
}
.job__accordion-btn {
  display: none;
  min-width: 32px;
  min-height: 32px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  transition: opacity 0.3s ease;
}
.job__accordion-btn:hover {
  opacity: 0.8;
}
@media (width < 600px) {
  .job__accordion-btn {
    display: flex;
  }
}
.job__accordion-icon {
  width: 32px;
  transition: transform 0.3s ease;
}
.job__accordion-btn[aria-expanded=true] .job__accordion-icon {
  transform: rotate(180deg);
}
@media (width < 600px) {
  .job__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }
  .job__accordion-content.is-open {
    max-height: 5000px;
    transition: max-height 0.5s ease-in;
  }
}
@media (width < 600px) {
  .job__sections {
    flex-direction: column;
    gap: 24px;
  }
  .job__title {
    font-size: 2.4rem;
  }
  .job__btn {
    width: 100%;
  }
  .job__flex {
    flex-direction: column;
  }
}

.flow {
  padding: 64px 0 120px;
  background: #F3F3F3;
}
.flow__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 64px;
}
.flow__title .en {
  font-size: 2rem;
  color: #8BADC9;
}
.flow__title .ja {
  font-size: 4rem;
  color: #11355A;
}

.schedule:has(.swiper-slide:last-child.swiper-slide-active)::before {
  left: 38%;
}

/*-----------------------------------------------
data
-----------------------------------------------*/
.data {
  position: relative;
  overflow: hidden;
}
.data::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 2%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30%;
  height: 219%;
  background: linear-gradient(135.82deg, #F7EDD8 21.21%, #C3DEF8 71.66%, #149FC5 81.47%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.data__desc {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 64px;
}
.data__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.data__flex {
  display: flex;
}
.data__left, .data__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.data__item {
  padding: 48px 48px 32px;
  background: #fff;
  border-radius: 24px;
}
.data__img, .data__content {
  width: 50%;
}
.data__img--111 {
  max-width: 111px;
  min-width: 111px;
}
.data__img--120 {
  max-width: 120px;
  min-width: 120px;
}
.data__img--auto {
  margin: auto;
}
.data__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c52A1;
}
.data__title2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0c52A1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.data__main {
  font-size: 64px;
  line-height: 1;
}
.data__main sup {
  font-size: 16px;
  vertical-align: text-top;
}
.data__main120 {
  font-size: 120px;
}
.data__note {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0c52A1;
  text-align: right;
}
.data__note--left {
  text-align: left;
}
@media screen and (max-width: 1430px) {
  .data__item {
    padding: 32px 32px 24px;
  }
}
@media (width < 1280px) {
  .data__item {
    padding: 40px 20px;
  }
  .data .flex {
    flex-direction: column;
  }
  .data .align-end {
    align-items: center;
  }
  .data__img, .data__content {
    width: 100%;
  }
}
@media (width < 1025px) {
  .data__inner {
    flex-direction: column;
    width: 100%;
  }
  .data__left, .data__right {
    width: 100%;
    display: contents;
  }
  .data__left .data__item:nth-child(1) {
    order: 1;
  }
  .data__right .data__item:nth-child(1) {
    order: 2;
  }
  .data__left .data__item:nth-child(2) {
    order: 3;
  }
  .data__right .data__item:nth-child(2) {
    order: 4;
  }
  .data__left .data__item:nth-child(3) {
    order: 5;
  }
  .data__right .data__item:nth-child(3) {
    order: 6;
  }
  .data__right .data__item:nth-child(4) {
    order: 7;
  }
  .data__img {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .data__img img {
    width: auto;
    height: auto;
  }
  .data__content {
    width: 100%;
  }
  .data__title {
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .data__flex {
    flex-direction: column;
  }
}
@media (width < 600px) {
  .data__desc {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 24px;
  }
  .data__title {
    font-size: 2rem;
  }
  .data__main120 {
    font-size: 64px;
  }
  .data__left .data__item:nth-child(1) .data__content {
    order: -1;
  }
  .data__img {
    text-align: left;
  }
  .data__note {
    text-align: center;
  }
}

/*-----------------------------------------------
environment
-----------------------------------------------*/
#career {
  scroll-margin-top: 150px;
}
@media (width < 600px) {
  #career {
    scroll-margin-top: 100px;
  }
}

#qa {
  scroll-margin-top: 150px;
}
@media (width < 600px) {
  #qa {
    scroll-margin-top: 100px;
  }
}

.environment__sections {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.environment__cta {
  max-width: 1280px;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  margin: 0 auto;
}
.environment__cta-link {
  width: 100%;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.environment__cta-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
@media (width < 600px) {
  .environment__sections {
    flex-direction: column;
    padding: 24px 20px;
  }
  .environment__cta {
    flex-direction: column;
    gap: 24px;
  }
}

.career-path-qa {
  position: relative;
  overflow: hidden;
}
.career-path-qa::before {
  content: "";
  position: absolute;
  top: 32%;
  right: 2%;
  transform: translate(-50%, -50%) rotate(47deg);
  width: 30%;
  height: 150%;
  background: linear-gradient(135.82deg, #F7EDD8 21.21%, #C3DEF8 71.66%, #149FC5 81.47%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.career-path-qa::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 75%;
  transform: translate(-50%, -50%) rotate(127deg);
  width: 30%;
  height: 100%;
  background: linear-gradient(134.4deg, #F8F3E3 36.21%, rgba(234, 141, 160, 0.5) 52.39%, #FFF6F6 88.14%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
@media (width < 600px) {
  .career-path-qa::before {
    top: 37%;
    right: -40%;
    transform: translate(-50%, -50%) rotate(28deg);
    width: 100%;
    height: 65%;
  }
  .career-path-qa::after {
    top: 3280px;
    left: 562px;
    transform: translate(-50%, -50%) rotate(150deg);
    width: 100%;
    height: 65%;
  }
}

.career-path__title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D1DBE1;
}
.career-path__item {
  padding: 80px 20px;
  border-radius: 12px;
  background: rgba(248, 248, 248, 0.6);
}

.example {
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
.example__item {
  width: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.example__year {
  text-align: center;
  display: inline-block;
  padding: 4px 24px;
  font-weight: 700;
  color: #0C52A1;
  background: #fff;
  border-radius: 24px;
}
.example__title {
  font-size: 24px;
  color: #fff;
  background: #3789E6;
  border-radius: 12px 12px 0 0;
  padding: 21px;
  text-align: center;
}
.example__desc {
  padding: 20px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.example__first .example__year {
  margin-bottom: 40px;
}
.example__second .example__year {
  margin-bottom: 35px;
}
.example__second .example__title {
  padding: 41px;
  background: #2E72BF;
}
.example__third .example__year {
  margin-bottom: 30px;
}
.example__third .example__title {
  padding: 61px;
  background: #0C52A1;
}
@media (width < 1025px) {
  .example {
    flex-direction: column;
    align-items: center;
  }
  .example__item {
    max-width: 350px;
    width: 100%;
  }
}

.example2 .example__year {
  color: #CA5068;
}
.example2 .example__first .example__title {
  background: #EA8DA0;
}
.example2 .example__second .example__title {
  background: #EA627D;
}
.example2 .example__third .example__title {
  background: #CA5068;
}

/*-----------------------------------------------
project
-----------------------------------------------*/
.project__title {
  color: #0C52A1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.project__title .ja {
  font-size: 2.4rem;
}
.project__title .en {
  font-size: 1.6rem;
}
.project__item {
  padding: 64px;
  background: rgba(255, 255, 255, 0.4);
}
.project__inner {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.project__wrap {
  width: 100%;
}
.project__img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.project__img img {
  width: 100%;
}
.project__members {
  font-size: 1.2rem;
  line-height: 1.67;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.project__member-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.project__member-name {
  font-size: 2.4rem;
  font-weight: 700;
}
.project__accordion-btn {
  display: flex;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  transition: opacity 0.3s ease;
}
.project__accordion-btn:hover {
  opacity: 0.8;
}
.project__accordion-icon {
  min-width: 32px;
  min-height: 32px;
  transition: transform 0.3s ease;
}
.project__accordion-btn[aria-expanded=true] .project__accordion-icon {
  transform: rotate(180deg);
}
.project__accordion-item {
  padding: 64px 0;
}
.project__accordion-item:not(:first-child) {
  padding: 0 0 64px;
}
.project__accordion-title {
  color: #0C52A1;
  font-size: 2.4rem;
  border-left: 4px solid #0C52A1;
  padding-left: 8px;
  margin-bottom: 40px;
}
.project__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.project__accordion-content.is-open {
  max-height: 5000px;
  transition: max-height 0.5s ease-in;
}
.project__accordion-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (width < 1280px) {
  .project__item {
    padding: 64px 32px;
  }
}
@media screen and (max-width: 1080px) {
  .project__inner {
    flex-direction: column;
  }
}
@media (width < 600px) {
  .project__item {
    padding: 48px 20px;
  }
  .project__title {
    margin-bottom: 24px;
  }
  .project__title .ja {
    font-size: 2.4rem;
  }
  .project__title .en {
    font-size: 1.6rem;
  }
  .project__members {
    flex-direction: column;
  }
  .project__member {
    display: flex;
    justify-content: space-between;
  }
  .project__accordion-item {
    padding: 40px 0;
  }
  .project__accordion-item:not(:first-child) {
    padding: 0 0 40px;
  }
  .project__accordion-title {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */