html {
  /* font-feature-settings: 'palt'; */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width:1280px) {
  html {
    font-size: calc(100vw / 1280 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  background: #fff;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* 読み込み完了まで全面表示（function.js で fadeOut 後に削除） */
.opening {
  background: #fff;
  inset: 0;
  position: fixed;
  z-index: 100000;
}

/* 1 時間抑制中: .opening より前の同期 JS が html に付与。初回ペイントから非表示 */
html.opening-suppress body.top .opening {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.body_container {
  opacity: 0;
  overflow: hidden;
  transition: .6s ease;
  position: relative;
  z-index: 2;
}

.lazy .body_container {
  opacity: 1;
}

img:not(.cover) {
  height: auto;
  max-width: 100%;
  width: 100%;
}

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

.parallaxA {
  overflow: hidden;
}

.parallaxA img {
  display: block;
  width: 100%;
  will-change: transform;
  transform-origin: center center;
}

a {
  transition: .3s;
}

.anchor {
  display: flex;
  margin-top: -8rem;
  padding-top: 8rem;
}

.recruit .anchor {
  margin-top: -7rem;
  padding-top: 7rem;
}

@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -5rem !important;
    padding-top: 5rem !important;
  }
}

em {
  font-style: normal;
}

.max1000 {
  max-width: 100rem;
  margin: 0 auto;
}

.max1110 {
  max-width: 111rem;
  margin: 0 auto;
}

.max1280 {
  max-width: 128rem;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
//  opening
--------------------------------------------------------------------------- */
.opening {
  transition: .6s ease;
  background: #004EA2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.opening.change {
  background: #fff;
}

.opening .logo {
  width: 47.7rem;
  background-image: url(../img/common/logo01_b.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.change .logo img {
  transition: .6s ease;
}

.opening.change .logo img {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .opening .logo {
    width: 32rem;
    background-image: url(../img/common/logo01_b.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

/* ---------------------------------------------------------------------------
//  f-animation01（テキスト1文字ずつ表示）
--------------------------------------------------------------------------- */
.f-animation01 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.15em);
  transition: opacity 0.45s ease, transform 0.41s ease;
  will-change: opacity, transform;
}

.f-animation01.eng .char {
  /* .eng のグラデ文字（background-clip:text）を、分割後の子 span にも適用 */
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.f-animation01 .char.is_visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------------
//  btnA
--------------------------------------------------------------------------- */
.btnA {
  display: flex;
}

.btnA .btn {
  padding-right: 4.9rem;
  position: relative;
  border-radius: 100vh;
  position: relative;
  height: 7.6rem;
  min-width: 35rem;
  box-shadow: 0 1rem .8rem 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btnA .btn:hover {
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.25);
  /* padding-right: 0; */
}

.btnA .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(-158deg, #5AD5F1 13.48%, #33EDD4 50%, rgba(0, 78, 162, .4) 100%);
  transition: transform 0.3s ease;
  transform: translateX(-50%);
}

.btnA .btn:hover::before {
  transform: translateX(0);
}

.btnA .btn span {
  font-size: 1.8rem;
  position: relative;
}

.btnA .btn::after {
  background-image: url(../img/common/btnA-arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2.91rem;
  height: .6rem;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
  animation: btnAArrowNudge 1.8s ease-in-out infinite;
}

@keyframes btnAArrowNudge {

  0%,
  100% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(1rem);
  }
}

@media screen and (max-width: 768px) {
  .btnA {
    justify-content: center;
  }

  .btnA .btn {
    padding-right: 0;
    height: 6.8rem;
    min-width: 32.5rem;
    box-shadow: 0 .5rem .4rem 0 rgba(0, 0, 0, 0.25);
  }

  .btnA .btn:hover {
    box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, 0.25);
  }

  .btnA .btn span {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------
//  btnB
--------------------------------------------------------------------------- */
.btnB {
  display: flex;
}

.btnB .btn {
  position: relative;
  border-radius: 100vh;
  position: relative;
  height: 7.6rem;
  width: 100%;
  max-width: 35rem;
  box-shadow: 0 1rem .8rem 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.btnB .btn:hover {
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.25);
}

.btnB .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(-158deg, #fff 50%, rgba(70, 225, 226, .7) 100%);
  transition: transform 0.3s ease;
  transform: translateX(-50%);
}

.btnB .btn:hover::before {
  transform: translateX(0);
}

.btnB .btn span {
  font-size: 2.4rem;
  position: relative;
}

.btnB .btn::after {
  background-image: url(../img/common/btnB-arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
  animation: btnAArrowNudge2 1.8s ease-in-out infinite;
}

@keyframes btnAArrowNudge2 {

  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(.4rem);
  }
}

@media screen and (max-width: 768px) {
  .btnB .btn {
    height: 6.8rem;
  }

  .btnB .btn span {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------------------
//  ttlA
--------------------------------------------------------------------------- */
.ttlA {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ttlA span {
  font-family: "Zen Kurenaido";
  font-size: 3.2rem;
  color: #fff;
  background: #004EA2;
  border-radius: .5rem .5rem 0 0;
  padding: 2rem;
  white-space: nowrap;
}

.ttlA span + span {
  margin-top: -2rem;
}

.ttlA span:last-of-type {
  border-radius: 0 .5rem .5rem .5rem;
}

.ttlA span:first-of-type {
  border-radius: .5rem !important;
}

@media screen and (max-width: 768px) {
  .ttlA span {
    font-size: 2rem;
    padding: 1.5rem;
  }

  .ttlA span + span {
    margin-top: -1.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  ttlB
--------------------------------------------------------------------------- */
.ttlB {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ttlB span {
  font-family: "Zen Kurenaido";
  font-size: 3.2rem;
  color: #004EA2;
  background: #fff;
  border-radius: .5rem;
  padding: 2rem;
}

.ttlB span + span {
  margin-top: -2rem;
}

@media screen and (max-width: 768px) {
  .ttlB span {
    font-size: 2rem;
    padding: 1.5rem;
  }

  .ttlB span + span {
    margin-top: -1.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  ttlA.v-left（左から“スーッと”不透明化）
//  位置は動かさず、透明だった部分が左→右に“めくれる/現れる”ように見せる
--------------------------------------------------------------------------- */
.ttlA.v-left span {
  /* opacity: 0; */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  will-change: clip-path, opacity;
}

.ttlA.v-left.is-inview span {
  opacity: 1;
  animation: ttlALeftReveal 1000ms ease forwards;
}

.ttlA.v-left.is-inview span:nth-child(1) {
  animation-delay: 0ms;
}

.ttlA.v-left.is-inview span:nth-child(2) {
  animation-delay: 220ms;
}

@keyframes ttlALeftReveal {
  0% {
    /* opacity: 0; */
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }

  60% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* ---------------------------------------------------------------------------
//  ttlB.v-center（中央から左右へ“スーッと”不透明化）
//  位置は動かさず、中央から外側に向かって現れるように見せる
--------------------------------------------------------------------------- */
.ttlB.v-center span {
  clip-path: inset(0 50% 0 50%);
  -webkit-clip-path: inset(0 50% 0 50%);
  will-change: clip-path, opacity;
}

.ttlB.v-center.is-inview span {
  opacity: 1;
  animation: ttlBCenterReveal 1000ms ease forwards;
}

.ttlB.v-center.is-inview span:nth-child(1) {
  animation-delay: 0ms;
}

.ttlB.v-center.is-inview span:nth-child(2) {
  animation-delay: 220ms;
}

.ttlB.v-center.is-inview span:nth-child(3) {
  animation-delay: 440ms;
}

@keyframes ttlBCenterReveal {
  0% {
    clip-path: inset(0 50% 0 50%);
    -webkit-clip-path: inset(0 50% 0 50%);
  }

  60% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* ---------------------------------------------------------------------------
//  ttlC
--------------------------------------------------------------------------- */
.ttlC {
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Roboto;
  font-size: 8rem;
  font-weight: 700;
  display: inline-block;
}

.ttlC.f-animation01 .char {
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ttlC + .jp {
  font-weight: 500;
}

@media screen and (max-width:768px) {
  .ttlC {
    font-size: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  top-fv
--------------------------------------------------------------------------- */
.top-fv {
  position: relative;
  /* overflow: hidden; */
  height: 83rem;
}

.top-fv .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .2;
}

.top-fv .movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  /* background: #1a8fca; */
  top: 0;
  left: 0;
  /* opacity を落としても目立つように、色のメリハリを強化 */
  filter: saturate(320%) contrast(260%) brightness(165%);
  /* 背景に対して発色を強める（opacity=.1でも目立ちやすくする） */
  opacity: .2;
  pointer-events: none;
  /* display: none; */
}

.fv-bg::before,
.fv-bg::after,
.spot1,
.spot2,
.spot3 {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

/* ベースグラデーション（右上ダークネイビー固定） */
.fv-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, #0a3a6e 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 0% 100%, #a0f0e8 0%, transparent 60%),
    linear-gradient(135deg, #4dd8f0 0%, #1a8fca 50%, #0f4a8a 100%);
  opacity: .3;
}

/* シアンのメインスポット */
.spot1 {
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, #00f0e0 0%, #00c8d8 40%, transparent 70%);
  opacity: 0.3;
  animation: moveSpot1 12s ease-in-out infinite;
}

/* 明るいホワイト寄りスポット */
.spot2 {
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, #c0faff 0%, #80eef8 40%, transparent 70%);
  opacity: 0.78;
  animation: moveSpot2 10s ease-in-out infinite;
}

/* 深いシアンスポット */
.spot3 {
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, #00e8d0 0%, #0098b8 40%, transparent 70%);
  opacity: 0.88;
  animation: moveSpot3 14s ease-in-out infinite;
}

/* 右下のシアンアクセント */
.spot4 {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(circle, #00f8e8 0%, #00c0d4 50%, transparent 70%);
  opacity: 0.9;
  animation: moveSpot4 11s ease-in-out infinite;
}

@keyframes moveSpot1 {
  0% {
    transform: translate(30%, 30%) scale(1);
  }

  25% {
    transform: translate(10%, 50%) scale(1.12);
  }

  50% {
    transform: translate(-20%, 10%) scale(1.18);
  }

  75% {
    transform: translate(50%, -10%) scale(1.1);
  }

  100% {
    transform: translate(30%, 30%) scale(1);
  }
}

@keyframes moveSpot2 {
  0% {
    transform: translate(-10%, 60%) scale(1);
  }

  33% {
    transform: translate(40%, 30%) scale(1.14);
  }

  66% {
    transform: translate(20%, -10%) scale(1.2);
  }

  100% {
    transform: translate(-10%, 60%) scale(1);
  }
}

@keyframes moveSpot3 {
  0% {
    transform: translate(60%, 60%) scale(1);
  }

  30% {
    transform: translate(30%, 80%) scale(1.15);
  }

  60% {
    transform: translate(-10%, 40%) scale(1.22);
  }

  100% {
    transform: translate(60%, 60%) scale(1);
  }
}

@keyframes moveSpot4 {
  0% {
    transform: translate(50%, 20%) scale(1);
  }

  40% {
    transform: translate(70%, 60%) scale(1.16);
  }

  70% {
    transform: translate(20%, 80%) scale(1.22);
  }

  100% {
    transform: translate(50%, 20%) scale(1);
  }
}

.top-fv-slider {
  position: relative;
  z-index: -1;
  height: 60.6rem;
  width: 100%;
}

.top-fv-slider .item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  border-radius: 0 0 3rem 0;
  height: 60.6rem;
  width: calc(91rem + (100% - 100rem) / 2);
  overflow: hidden;
  pointer-events: none;
}

.top-fv-slider .item.active {
  opacity: 1;
  z-index: 2;
}

.indicators {
  position: absolute;
  width: 100rem;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 7.5rem;
  left: 0;
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  z-index: 4;
  pointer-events: auto;
}

.indicators .dot {
  width: 4.5rem;
  height: .4rem;
  background-color: #D9D9D9;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: .3rem;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.indicators .dot.active {
  background-color: #004EA2;
}

.top-fv .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.top-fv .wrap .ttlA {
  position: absolute;
  right: -8.7rem;
  top: -29rem;
}

.top-fv .wrap .eng {
  opacity: 0.93;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Roboto;
  font-weight: 700;
  font-size: 5.5rem;
  padding-top: 4rem;
}

.top-fv .wrap .illust {
  background-image: url(../img/top/fv-illust01.svg);
  width: 47.7rem;
  height: 18.6rem;
  position: absolute;
  right: -10rem;
  top: -2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.top-fv .scroll-down {
  height: 22.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  pointer-events: none;
}

.top-fv .scroll-down button {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 15rem;
  color: #004EA2;
  font-family: Figtree;
  font-weight: 500;
  /* pointer-events: all; */
}

.top-fv .scroll-down button span {
  transform: rotate(180deg);
  display: inline-block;
}

.top-fv .scroll-down::before {
  background-image: url(../img/top/scroll-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: .6rem;
  height: 5.6rem;
  position: absolute;
  left: .6rem;
  bottom: 4rem;
  transform: translateY(0);
  animation: scrollDownBounce 1.4s ease-in-out infinite;
}

@keyframes scrollDownBounce {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(0.6rem);
  }

  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .top-fv {
    height: auto;
  }

  .top-fv-slider {
    height: 29rem;
  }

  .top-fv-slider .item {
    border-radius: 0;
    height: 29rem;
    width: 100%;
  }

  .indicators {
    display: none;
  }

  .top-fv .wrap {
    padding-left: 8rem;
    padding-bottom: 9rem;
  }

  .top-fv .wrap .ttlA {
    right: auto;
    left: 8rem;
    top: -1.5rem;
  }

  .top-fv .wrap .eng {
    font-size: 4.2rem;
    padding-top: 10rem;
  }

  .top-fv .wrap .illust {
    width: 20rem;
    height: 7.8rem;
    right: 1rem;
    top: auto;
    bottom: 4rem;
  }

  .top-fv .scroll-down {
    height: 10rem;
  }

  .top-fv .scroll-down button {
    left: 1.5rem;
    top: auto;
    bottom: 7rem;
    width: 1rem;
    font-size: 1.2rem;
    white-space: nowrap;
    height: 6.5rem;
  }

  .top-fv .scroll-down::before {
    width: .5rem;
    height: 5rem;
    left: 1.5rem;
    bottom: 2rem;
  }
}

/* ---------------------------------------------------------------------------
//  top-sec01
--------------------------------------------------------------------------- */
.top-sec01 {
  /* background: #f5efe8; */
  overflow: hidden;
  position: relative;
}

.top-sec01 .bg-gif {
  background: url(../movie/top-sec01.gif) center center / cover no-repeat;
  inset: 0;
  opacity: .4;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.top-sec01 .wrap {
  position: relative;
  padding: 18rem 0 12rem;
  z-index: 1;
}

.top-sec01 .wrap .p01 {
  width: 50%;
  margin-left: auto;
  font-size: 2rem;
  line-height: 2.6;
  margin-top: 4.5rem;
}

.top-sec01 .wrap .imgs .img {
  position: absolute;
  width: 25rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6rem;
}

.top-sec01 .wrap .imgs .img01 {
  top: 6.5rem;
  left: -2rem;
}

.top-sec01 .wrap .imgs .img02 {
  top: 15rem;
  right: -3rem;
}

.top-sec01 .wrap .imgs .img03 {
  top: 54.5rem;
  left: 19.5rem;
}

@media screen and (max-width: 768px) {
  .top-sec01 .bg-gif {
    background: url(../movie/top-sec01.gif) bottom left / cover no-repeat;
    inset: 0;
    opacity: .4;
    mix-blend-mode: multiply;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .top-sec01 .wrap {
    padding: 16rem 0 6rem;
    z-index: 1;
  }

  .top-sec01 .wrap .p01 {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
    margin-top: 14rem;
  }

  .top-sec01 .wrap .imgs .img {
    width: 10.5rem;
    border-radius: 2rem;
  }

  .top-sec01 .wrap .imgs .img01 {
    top: 8rem;
    left: 2.5rem;
  }

  .top-sec01 .wrap .imgs .img02 {
    top: 4rem;
    right: 2rem;
  }

  .top-sec01 .wrap .imgs .img03 {
    top: 32.5rem;
    left: 17.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  top-sec02
--------------------------------------------------------------------------- */
.top-sec02 {
  position: relative;
}

.top-sec02 .wrap {
  padding: 13rem 0 18rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top-sec02 .wrap .ttlC {
  position: relative;
  z-index: 2;
}

.top-sec02 .wrap .img01 {
  width: calc(89rem + (100vw - 100rem) / 2);
  aspect-ratio: 930/432;
  border-radius: 6rem 0 0 6rem;
  /* background-image: url(../img/top/02-img01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  position: relative;
  left: 21.5rem;
  margin-top: -4rem;
}

.top-sec02 .wrap .box {
  background: #fff;
  border-radius: 6rem;
  padding: 6rem;
  position: relative;
  margin-top: -12rem;
}

.top-sec02 .wrap .box .p01 {
  font-size: 2rem;
  line-height: 2.6;
  position: relative;
  z-index: 2;
  margin-bottom: 7rem;
}

.top-sec02 .wrap .illust01 {
  background-image: url(../img/top/02-illust.svg);
  width: 59.3rem;
  height: 38.9rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -2rem;
  bottom: 16.5rem;
}

@media screen and (max-width: 768px) {
  .top-sec02 .wrap {
    padding: 4rem 0 26rem;
  }

  .top-sec02 .wrap .ttlC {
    position: relative;
    z-index: 2;
    padding: 0 3rem;
  }

  .top-sec02 .wrap .img01 {
    width: 31rem;
    aspect-ratio: 31/36;
    border-radius: 1.5rem 0 0 1.5rem;
    left: auto;
    right: 0;
    margin-left: auto;
    margin-top: -2rem;
  }

  .top-sec02 .wrap .img01 img {
    object-position: 30%;
  }

  .top-sec02 .wrap .box {
    width: 31rem;
    background: #fff;
    border-radius: 2rem;
    padding: 3rem;
    margin-top: -26rem;
  }

  .top-sec02 .wrap .box .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0;
  }

  .top-sec02 .wrap .illust01 {
    width: 25.8rem;
    height: 16.9rem;
    right: -1rem;
    bottom: 6rem;
  }

  .top-sec02 .wrap .box .btnA {
    position: absolute;
    bottom: -8rem;
    left: 2.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  top-sec03
--------------------------------------------------------------------------- */
.top-sec03 {
  position: relative;
  background: #f7f7f7;
}

.top-sec03 .wrap {
  padding: 0 0 12rem;
  position: relative;
}

.top-sec03 .wrap .raw {
  display: flex;
  justify-content: space-between;
}

.top-sec03 .wrap .raw .left {
  width: 35rem;
  margin-top: -1.5rem;
  text-align: justify;
}

.top-sec03 .wrap .raw .left .p01 {
  font-size: 2rem;
  line-height: 2.6;
  margin-top: 2rem;
  margin-bottom: 7rem;
}

.top-sec03 .wrap .raw .right {
  width: 50%;
  padding-top: 13rem;
}

.top-sec03 .wrap .raw .right .cards {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.top-sec03 .wrap .raw .right .cards .card {
  background: #fff;
  border-radius: 3rem;
  width: calc(100% + 12rem);
  position: relative;
  left: -6rem;
  padding: 1.5rem 2rem 3rem;
  position: relative;
  z-index: 2;
}

.top-sec03 .wrap .raw .right .cards .card .dt {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
}

.top-sec03 .wrap .raw .right .cards .card .dt span {
  font-family: Roboto;
  font-weight: 700;
  text-transform: uppercase;
  color: #1F4093;
  display: block;
  font-size: 1.6rem;
  margin-top: .5rem;
}

.top-sec03 .wrap .raw .right .cards .card .dd {
  margin-top: 1.5rem;
}

.top-sec03 .wrap .raw .right .cards .card .dd .img {
  width: 100%;
  aspect-ratio: 578/364;
  overflow: hidden;
  border-radius: 3rem;
}

.top-sec03 .wrap .raw .right .cards .card .dd p {
  border-radius: 2rem 0 0 0;
  position: absolute;
  padding: 1.5rem 2rem 1.5rem 4rem;
  min-width: 28rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 2rem;
  white-space: nowrap;
  line-height: 1.6;
}

.top-sec03 .wrap .illust01 {
  background-image: url(../img/top/03-illust.svg);
  width: 62rem;
  height: 50.8rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: -23rem;
  bottom: 6rem;
}

@media screen and (max-width:768px) {
  .top-sec03 .wrap {
    padding: 0 0 14.5rem;
  }

  .top-sec03 .wrap .raw {
    flex-direction: column;
    align-items: center;
    position: static;
    z-index: 2;
  }

  .top-sec03 .wrap .raw .left {
    width: 100%;
    padding: 0 4rem;
    margin-top: -2rem;
  }

  .top-sec03 .wrap .raw .left .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .top-sec03 .wrap .raw .left .btnA {
    position: absolute;
    bottom: 4rem;
    z-index: 2;
    left: 2.5rem;
  }

  .top-sec03 .wrap .raw .right {
    width: 100%;
    padding: 17.8rem 2.5rem 0;
  }

  .top-sec03 .wrap .raw .right .cards {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
  }

  .top-sec03 .wrap .raw .right .cards .card {
    border-radius: 2rem;
    width: 100%;
    padding: 1.5rem 2.5rem 1.5rem;
    left: 0;
  }

  .top-sec03 .wrap .raw .right .cards .card .dt {
    font-size: 1.8rem;
  }

  .top-sec03 .wrap .raw .right .cards .card .dt span {
    font-size: 1.2rem;
    margin-top: .3rem;
  }

  .top-sec03 .wrap .raw .right .cards .card .dd {
    margin-top: 1rem;
  }

  .top-sec03 .wrap .raw .right .cards .card .dd .img {
    width: 100%;
    border-radius: 1rem;
  }

  .top-sec03 .wrap .raw .right .cards .card .dd p {
    position: static;
    padding: 0;
    min-width: inherit;
    font-size: 1.4rem;
    white-space: nowrap;
    text-align: center;
    margin-top: .5rem;
  }

  .top-sec03 .wrap .illust01 {
    width: 31.6rem;
    height: 25.6rem;
    left: -.2rem;
    bottom: auto;
    top: 19.5rem
  }
}

/* ---------------------------------------------------------------------------
//  top-sec04
--------------------------------------------------------------------------- */
.top-sec04 {
  position: relative;
}

.top-sec04 .wrap {
  padding: 11rem 0 15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top-sec04 .wrap .eng {
  position: relative;
  z-index: 2;
  border-radius: 3rem;
  background: transparent;
  padding: 5rem 14rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: -25rem;
}

.top-sec04 .wrap .eng::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1rem;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.top-sec04 .wrap .eng span {
  position: relative;
  z-index: 1;
  text-align: right;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 .5rem .8rem rgba(0, 0, 0, 0.1);
  font-family: Orbitron;
  font-size: 8rem;
  font-weight: 600;
}

.top-sec04 .wrap .img00 {
  width: calc(89rem + (100vw - 100rem) / 2);
  aspect-ratio: 930/432;
  border-radius: 6rem 0 0 6rem;
  position: relative;
  left: 21.5rem;
  margin-top: -21rem;
}

.top-sec04 .wrap .img00 img {
  object-position: 40% 25%;
}

.top-sec04 .wrap .imgs .img {
  position: absolute;
  width: 34rem;
  filter: drop-shadow(0 .8rem .8rem rgba(0, 0, 0, 0.25));
}

.top-sec04 .wrap .imgs .img01 {
  top: 62.2rem;
  left: -6rem;
}

.top-sec04 .wrap .imgs .img02 {
  top: 90.2rem;
  left: 6rem;
}

.top-sec04 .wrap .box {
  position: relative;
  margin-top: 8rem;
  width: 56rem;
  margin-left: auto;
}

.top-sec04 .wrap .box .p01 {
  font-size: 2rem;
  line-height: 2.6;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.top-sec04 .wrap .illust01 {
  background-image: url(../img/top/04-illust.svg);
  width: 73rem;
  height: 42.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -17rem;
  bottom: 4.5rem;
  z-index: -1;
}

.top-sec04 .wrap .btnA {
  position: absolute;
  left: 0;
  bottom: 15rem;
}

@media screen and (max-width: 768px) {
  .top-sec04 .wrap {
    padding: 4rem 0;
  }

  .top-sec02 .wrap .img01 {
    width: 31rem;
    aspect-ratio: 31/36;
    border-radius: 1.5rem 0 0 1.5rem;
    left: auto;
    right: 0;
    margin-left: auto;
    margin-top: -2rem;
  }

  .top-sec02 .wrap .img01 img {
    object-position: 30%;
  }

  .top-sec04 .wrap .eng {
    border-radius: 0 2rem 2rem 0;
    padding: 2rem 2.5rem;
    left: -.5rem;
  }

  .top-sec04 .wrap .eng::before {
    padding: .5rem;
  }

  .top-sec04 .wrap .eng span {
    text-shadow: 0 .2rem .3rem rgba(0, 0, 0, 0.1);
    font-size: 3.4rem;
  }

  .top-sec04 .wrap .img00 {
    width: 27.5rem;
    aspect-ratio: 27.5/21.5;
    border-radius: 1.5rem 0 0 1.5rem;
    left: auto;
    right: 0;
    margin-left: auto;
    margin-top: -8rem;
  }

  .top-sec04 .wrap .imgs .img {
    width: 13rem;
    filter: drop-shadow(0 .3rem .3rem rgba(0, 0, 0, 0.25));
  }

  .top-sec04 .wrap .imgs .img01 {
    top: 27.2rem;
    left: 2rem;
  }

  .top-sec04 .wrap .imgs .img02 {
    top: 37.8rem;
    left: 7.5rem;
  }

  .top-sec04 .wrap .box {
    margin-top: 22rem;
    width: 100%;
    padding: 0 3.5rem;
  }

  .top-sec04 .wrap .box .ttlA {
    white-space: nowrap;
  }

  .top-sec04 .wrap .box .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .top-sec04 .wrap .illust01 {
    width: 34.2rem;
    height: 20rem;
    right: -1rem;
    bottom: auto;
    top: 37.8rem;
  }

  .top-sec04 .wrap .btnA {
    position: static;
    margin: 3rem auto 0;
  }
}

/* ---------------------------------------------------------------------------
//  top-sec05
--------------------------------------------------------------------------- */
.top-sec05 {
  position: relative;
  border: solid 1px #000;
}

.top-sec05 .wrap {
  padding: 9rem 0;
}

.top-sec05 .wrap .raw {
  display: flex;
  align-items: center;
}

.top-sec05 .wrap .raw .left {
  width: calc(100% - 56rem);
}

.top-sec05 .wrap .raw .left .head {
  padding: 0 1rem;
}

.top-sec05 .wrap .raw .left .news-tab-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 5rem;
}

.top-sec05 .wrap .raw .left .news-tab-btns .tab-btn {
  width: 7rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: #fff;
  border: solid 1px #CBCBCB;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all .3s ease;
}

.top-sec05 .wrap .raw .left .news-tab-btns .tab-btn:hover,
.top-sec05 .wrap .raw .left .news-tab-btns .tab-btn.active {
  background: #004EA2;
  color: #fff;
  border-color: #004EA2;
}

.top-sec05 .wrap .raw .right {
  width: 56rem;
}

.top-sec05 .wrap .raw .right .news-list {
  opacity: 0;
  display: none;
  transition: opacity .3s ease;
}

.top-sec05 .wrap .raw .right .news-list.active {
  display: block;
  opacity: 1;
}

.top-sec05 .wrap .raw .right .news-list .item {
  padding: 3.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.top-sec05 .wrap .raw .right .news-list .item + .item {
  border-top: solid 1px #D8D8D8;
}

.top-sec05 .wrap .raw .right .news-list .item .head {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 17rem;
}

.top-sec05 .wrap .raw .right .news-list .item .head time {
  width: 10rem;
  font-size: 1.8rem;
}

.top-sec05 .wrap .raw .right .news-list .item .head .cat {
  width: 7rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: #fff;
  border: solid 1px #CBCBCB;
  font-size: 1.2rem;
}

.top-sec05 .wrap .raw .right .news-list .item .ttl {
  width: calc(100% - 17rem - 1.8rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  transition: all .3s ease;
}

.top-sec05 .wrap .raw .right .news-list .item:hover .ttl {
  color: #004EA2;
}

@media screen and (max-width: 768px) {
  .top-sec05 .wrap {
    padding: 4rem 2.5rem 14.6rem;
  }

  .top-sec05 .wrap .raw {
    display: block;
  }

  .top-sec05 .wrap .raw .left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .top-sec05 .wrap .raw .left .head {
    padding: 0;
  }

  .top-sec05 .wrap .raw .left .news-tab-btns {
    display: flex;
    gap: 1rem;
    margin: 0;
  }

  .top-sec05 .wrap .raw .left .news-tab-btns .tab-btn {
    width: 6rem;
    height: 6rem;
    font-size: 1.2rem;
  }

  .top-sec05 .wrap .raw .right {
    width: 100%;
    margin-top: 2.5rem;
  }

  .top-sec05 .wrap .raw .right .news-list .item {
    padding: 3rem 0;
    display: block;
    border-top: solid 1px #D8D8D8;
  }

  .top-sec05 .wrap .raw .right .news-list .item:last-of-type {
    border-bottom: solid 1px #D8D8D8;
  }

  .top-sec05 .wrap .raw .right .news-list .item .head {
    width: 100%;
  }

  .top-sec05 .wrap .raw .right .news-list .item .head time {
    width: 9rem;
    font-size: 1.6rem;
  }

  .top-sec05 .wrap .raw .right .news-list .item .ttl {
    width: 100%;
    margin-top: 1rem;
  }

  .top-sec05 .wrap .raw .left .btnA {
    position: absolute;
    bottom: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  top-sec06
--------------------------------------------------------------------------- */
.top-sec06 {
  position: relative;
  padding: 12rem 0 0;
}

.top-sec06 .container {
  border-radius: 5rem 5rem 0 0;
  background: #EFEEE6;
  position: relative;
  padding: 29rem 0 13rem;
}

.top-sec06 .wrap .head {
  border-radius: 0 0 5rem 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem 6rem 4rem;
  top: 0;
}

.top-sec06 .wrap .box {
  position: relative;
  z-index: 2;
}

.top-sec06 .wrap .box .p01 {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2.6;
  position: relative;
  z-index: 2;
  margin-bottom: 7rem;
}

.top-sec06 .wrap .imgs .img {
  width: 100%;
  aspect-ratio: 289/169;
  overflow: hidden;
  border-radius: 1rem;
  width: 28.9rem;
  position: absolute;
}

.top-sec06 .wrap .imgs .img01 {
  width: 46.3rem;
  aspect-ratio: 463/263;
  top: 9rem;
  right: 5.5rem;
}

.top-sec06 .wrap .imgs .img02 {
  right: 22.9rem;
  top: 39.4rem;
}

.top-sec06 .wrap .imgs .img03 {
  right: 5.5rem;
  top: 58.4rem;
}

@media screen and (max-width: 768px) {
  .top-sec06 {
    padding-top: 7rem;
  }

  .top-sec06 .container {
    border-radius: 0;
    padding: 28rem 3rem 32.4rem;
  }

  .top-sec06 .wrap .head {
    border-radius: 0 0 2rem 2rem;
    padding: 1rem 3rem 1rem;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 23rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .top-sec06 .wrap .box {
    position: relative;
    z-index: 2;
  }

  .top-sec06 .wrap .box .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4rem;
  }

  .top-sec06 .wrap .imgs .img {
    width: 19.4rem;
  }

  .top-sec06 .wrap .imgs .img01 {
    width: 31.5rem;
    top: 12rem;
    right: 7.2rem;
  }

  .top-sec06 .wrap .imgs .img02 {
    right: auto;
    top: auto;
    left: 3rem;
    bottom: 18.5rem;
  }

  .top-sec06 .wrap .imgs .img03 {
    right: 3rem;
    top: auto;
    bottom: 5.7rem;
  }
}

/* ---------------------------------------------------------------------------
//  top-07
--------------------------------------------------------------------------- */
.top-07 {
  position: relative;
  padding: 0 0 14rem;
}

.top-07::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 111rem;
  height: calc(100% - 7rem);
  background: #EFEEE6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 0 0 5rem 5rem;
  z-index: -1;
}

.top-07 .wrap {
  text-align: center;
  border: 1px solid rgba(211, 211, 211, .7);
  background: rgba(255, 255, 255, .7);
  position: relative;
  padding: 5rem 0 2rem;
}

.top-07 .ttl {
  font-size: 2.4rem;
  background: #004EA2;
  border-radius: .5rem;
  color: #fff;
  text-align: center;
  height: 5.8rem;
  top: -2.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 20rem;
  margin: auto;
}

.top-07 .p01 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.top-07 .activity-marquee {
  margin-top: 2rem;
  overflow: hidden;
}

.top-07 .activity-track {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  width: max-content;
  animation: activityMarquee var(--loop-duration, 18s) linear infinite;
  will-change: transform;
}

.top-07 .activity-card {
  width: calc((100vw - 7.5rem) / 4);
  flex: 0 0 auto;
}

.top-07 .activity-card .thumb {
  width: 100%;
  aspect-ratio: 310 / 237;
  overflow: hidden;
}

.top-07 .activity-card .cap {
  margin-top: .7rem;
  text-align: center;
  font-size: 1.5rem;
}

.top-07 .activity-card .cap small {
  font-size: 1.3rem;
}

@keyframes activityMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 100rem)), 0, 0);
  }
}

@media screen and (max-width: 768px) {
  .top-07 {
    padding: 0 0 4rem;
  }

  .top-07::before {
    height: 100%;
    border-radius: 0;
  }

  .top-07 .wrap {
    padding: 4rem 0 2rem;
  }

  .top-07 .ttl {
    font-size: 1.7rem;
    height: 4.1rem;
    top: -2.05rem;
    max-width: 14.2rem;
  }

  .top-07 .p01 {
    text-align: center;
  }

  .top-07 .activity-track {
    gap: 1.5rem;
  }

  .top-07 .activity-card {
    width: 28rem;
  }

  .top-07 .activity-card .cap {
    font-size: 1.4rem;
  }

  .top-07 .activity-card .cap small {
    font-size: 1.1rem;
  }
}

/* ---------------------------------------------------------------------------
//  page-fvA
--------------------------------------------------------------------------- */
.page-fvA {
  position: relative;
}

.page-fvA .bg {
  aspect-ratio: 1280 / 360;
  min-height: 36rem;
  overflow: hidden;
  position: relative;
}

.page-fvA .bg::before {
  content: '';
  position: absolute;
  background: #C1C5C7;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  opacity: .2;
}

.page-fvA .wrap {
  position: relative;
}

.page-fvA .wrap .ttlA {
  top: -4.5rem;
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .page-fvA .bg {
    aspect-ratio: 4 / 3;
    min-height: 37.5rem;
  }

  .page-fvA .wrap {
    position: relative;
  }

  .page-fvA .wrap .ttlA {
    top: -3rem;
    position: absolute;
    left: 1rem;
  }

  .page-fvA .wrap .ttlA span {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------------------
//  bread-sec
--------------------------------------------------------------------------- */
.bread-sec {
  position: relative;
}

.bread-sec .wrap {
  padding: 1rem 2rem 0;
}

.bread-sec .wrap .bread {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.2rem;
}

.bread-sec .wrap .bread .item {
  position: relative;
}

.bread-sec .wrap .bread .item a:hover {
  opacity: .7;
}

.bread-sec .wrap .bread .item + .item {
  padding-left: 1.2rem;
}

.bread-sec .wrap .bread .item + .item::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bread-sec .wrap .bread .item:last-of-type {
  pointer-events: none;
}

.bread-sec .wrap .bread .item:last-of-type span {
  display: inline-block;
  max-width: min(36rem, calc(100vw - 16rem));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .bread-sec .wrap {
    padding: 7.5rem 2rem 0;
  }

  .page-fvA:not(:has(.ttlA)) + .bread-sec .wrap {
    padding-top: 1rem;
  }

  .bread-sec .wrap .bread {
    font-size: 1rem;
  }

  .bread-sec .wrap .bread .item:last-of-type span {
    max-width: min(18rem, calc(100vw - 10rem));
  }

  .recruit .bread-sec .wrap {
    padding: 2rem 2rem 0;
  }
}

/* ---------------------------------------------------------------------------
//  page-secA
--------------------------------------------------------------------------- */
.page-secA {
  position: relative;
}

.page-secA .wrap {
  text-align: center;
  padding: 15rem 0 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-secA .wrap .ttl {
  color: #1F4093;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.page-secA .wrap .p01 {
  line-height: 2.25;
}

@media screen and (max-width: 768px) {
  .page-secA .wrap {
    text-align: center;
    padding: 6rem 2rem;
  }

  .page-secA .wrap .ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .page-secA .wrap .p01 {
    line-height: 1.8;
  }
}

/* ---------------------------------------------------------------------------
//  page-secB
--------------------------------------------------------------------------- */
.page-secB {
  position: relative;
}

.page-secB .wrap {
  padding: 8rem 0 13rem;
  line-height: 2.25;
  text-align: justify;
}

.page-secB .wrap .right {
  text-align: right;
}

.page-secB .wrap .center {
  text-align: center;
  justify-content: center;
}

.page-secB .wrap .bg {
  padding: 6rem;
  position: relative;
  left: -6rem;
  width: calc(100% + 12rem);
}

.page-secB .wrap .bg.sky {
  background: #EFFAFF;
}

.page-secB .wrap .bg.sky .ttl02 {
  color: #1F4093;
}

.page-secB .wrap .indent {
  padding-left: 1.6rem;
}

.page-secB .wrap .ttl01 {
  font-size: 3.2rem;
  color: #004EA2;
  font-weight: 500;
  margin-bottom: 6rem;
  text-align: center;
  line-height: normal;
}

.page-secB .wrap .ttl02 {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  gap: .4rem;
  margin-bottom: .6rem;
}

.page-secB .wrap .ttl02 span {
  flex-shrink: 0;
}

.page-secB .wrap .ttl02 em {
  font-style: normal;
}

.page-secB .wrap .ttl03 {
  font-weight: 600;
}

.page-secB .wrap p:has(span) {
  display: flex;
  gap: .2rem;
}

.page-secB .wrap p span {
  flex-shrink: 0;
}

.page-secB .wrap ul li {
  display: flex;
}

.page-secB .wrap ul li span {
  flex-shrink: 0;
}

.page-secB .wrap ol li {
  display: flex;
  gap: .2rem;
}

.page-secB .wrap ol li span {
  flex-shrink: 0;
  min-width: 2rem;
  text-align: right;
}

.page-secB .wrap a {
  color: #2FBAFB;
  text-decoration: underline;
  word-break: break-all;
}

.page-secB .wrap a:hover {
  opacity: .7;
}

@media screen and (max-width:768px) {
  .page-secB .wrap {
    padding: 4rem 2rem 6rem;
    line-height: 1.8;
  }

  .page-secB .wrap .indent {
    padding-left: 0;
  }

  .page-secB .wrap .ttl01 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }

  .page-secB .wrap .ttl02 {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------------------
//  page-secC
--------------------------------------------------------------------------- */
.page-secC {
  position: relative;
}

.page-secC .wrap {
  min-height: 100vh;
  padding: 13rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-secC .wrap .eng {
  opacity: 0.54;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 7rem;
  font-weight: 600;
  font-family: Roboto;
}

.page-secC .wrap .eng.Orbitron {
  font-family: Orbitron;
}

.page-secC .wrap .ttl01 {
  color: #004EA2;
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem 2rem;
  border: solid 1px;
  min-width: 41.2rem;
}

.page-secC .wrap .p01 {
  line-height: 2.25;
  margin-top: 2rem;
  font-weight: 500;
}

.page-secC .wrap .btnA {
  margin-top: 4rem;
}

.page-secC .wrap .blue {
  color: #004EA2;
}

@media screen and (max-width:768px) {
  .page-secC .wrap {
    padding: 10rem 2rem;
  }

  .page-secC .wrap .eng {
    font-size: 5rem;
  }

  .page-secC .wrap .ttl01 {
    padding: 1rem 2rem;
    min-width: 100%;
  }

  .page-secC .wrap .p01 {
    line-height: 1.8;
  }
}

/* ---------------------------------------------------------------------------
//  bnr-sec-recruit
--------------------------------------------------------------------------- */
.bnr-sec-recruit {
  position: relative;
}

.bnr-sec-recruit .wrap {
  padding-bottom: 6rem;
}

.bnr-sec-recruit .wrap .head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bnr-sec-recruit .wrap .head::before {
  content: "";
  height: 5px;
  background: #004EA2;
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.bnr-sec-recruit .wrap .head .eng {
  position: relative;
  border-radius: 3rem;
  background: #fff;
  padding: 8rem 4rem 6rem 6rem;
  width: 50rem;
  top: -3rem;
}

.bnr-sec-recruit .wrap .head .eng::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1rem;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  width: 50rem;
  transform: skewY(-10.3deg);
}

.bnr-sec-recruit .wrap .head .eng span {
  position: relative;
  z-index: 1;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 .5rem .8rem rgba(0, 0, 0, 0.1);
  font-family: Orbitron;
  font-size: 5rem;
  font-weight: 600;
}

.bnr-sec-recruit .wrap .head .img {
  position: absolute;
  width: 34rem;
  bottom: -1rem;
  filter: drop-shadow(0 3.026px 3.026px rgba(0, 0, 0, 0.25));
}

.bnr-sec-recruit .wrap .head .img.img01 {
  right: 31rem;
}

.bnr-sec-recruit .wrap .head .img.img02 {
  right: 0;
}

.bnr-sec-recruit .wrap .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
}

.bnr-sec-recruit .wrap .box .p01 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #004EA2;
}

@media screen and (max-width:768px) {
  .bnr-sec-recruit .wrap {
    padding: 0 2rem 6rem;
  }

  .bnr-sec-recruit .wrap .head .eng {
    border-radius: 0 2rem 2rem 0;
    padding: 4rem 4rem 4rem 3rem;
    width: auto;
    top: 0;
    left: -2.5rem;
  }

  .bnr-sec-recruit .wrap .head .eng::before {
    padding: .5rem;
    width: auto;
  }

  .bnr-sec-recruit .wrap .head .eng span {
    font-size: 2.4rem;
  }

  .bnr-sec-recruit .wrap .head .img {
    width: 12.9rem;
  }

  .bnr-sec-recruit .wrap .head .img.img01 {
    right: 6rem;
    bottom: 4rem;
  }

  .bnr-sec-recruit .wrap .head .img.img02 {
    right: -1rem;
    bottom: -9rem;
    width: 16rem;
  }

  .bnr-sec-recruit .wrap .box {
    display: block;
    margin-top: 6rem;
  }

  .bnr-sec-recruit .wrap .box .p01 {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  bnr-secA
--------------------------------------------------------------------------- */
.bnr-secA {
  position: relative;
  padding: 1rem;
}

.bnr-secA .container {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.bnr-secA .container .bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  border-radius: 5rem;
  overflow: hidden;
  height: 100%;
  width: calc(100% - 4rem);
}

.bnr-secA .container .bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ECDCC1;
  mix-blend-mode: multiply;
  z-index: 2;
}

.bnr-secA.blue .container .bg::before {
  background: #004EA2;
  opacity: .35;
}

.bnr-secA .container .bg img {
  position: relative;
  z-index: 1;
}

.bnr-sec03 .container .bg img {
  object-position: 70% 25%;
}

.bnr-sec04 .container .bg img {
  object-position: 50% 70%;
}

.bnr-secA .container .wrap {
  position: relative;
  z-index: 3;
}

.bnr-secA .container .wrap .raw {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bnr-secA .container .wrap .raw .left {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}

.bnr-secA .container .wrap .raw .left .eng {
  position: relative;
  opacity: .7;
  color: #FDFEFF;
  font-family: Orbitron;
  font-size: 7rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  z-index: 3;
}

@media screen and (max-width:768px) {
  .bnr-secA {
    padding: 0;
  }

  .bnr-secA .container {
    position: relative;
    padding: 6rem 2rem;
  }

  .bnr-secA .container .bg {
    border-radius: 0;
    width: 100%;
  }

  .bnr-secA .container .bg img {
    position: relative;
    z-index: 1;
  }

  .bnr-secA .container .wrap .raw {
    flex-direction: column;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }

  .bnr-secA .container .wrap .raw .left {
    text-align: center;
    font-size: 1.8rem;
  }

  .bnr-secA .container .wrap .raw .left .eng {
    font-size: 3.7rem;
  }
}

/* ---------------------------------------------------------------------------
//  company-sec01
--------------------------------------------------------------------------- */
.company-sec01 .wrap {
  padding: 26rem 0 14rem;
  position: relative;
}

.company-sec01 .wrap .illust01 {
  position: absolute;
  top: 11.6rem;
  right: 0;
  background-image: url(../img/company/01-illust01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 48.1rem;
  height: 26rem;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .company-sec01 .wrap {
    padding: 18rem 2rem 8rem;
  }

  .company-sec01 .wrap .illust01 {
    top: 4rem;
    right: 0;
    left: 0;
    margin: auto;
    width: 30rem;
    height: 14rem;
  }
}

/* ---------------------------------------------------------------------------
//  company-sec02
--------------------------------------------------------------------------- */
.company-sec02 {
  position: relative;
  margin-bottom: 15rem;
}

.company-sec02 .wrap {
  padding: 0 2rem;
  position: relative;
  height: 67.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-sec02 .wrap .bg {
  position: absolute;
  height: 100%;
  width: calc(100% - 4rem);
  top: 0;
  left: 2rem;
  border-radius: 6rem;
  overflow: hidden;
}

.company-sec02 .wrap .bg::before {
  content: '';
  position: absolute;
  background: #C1C5C7;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.company-sec02 .wrap .ttlC {
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 3;
}

.company-sec02 .wrap .p01 {
  color: #fff;
  position: relative;
  font-size: 1.8rem;
  line-height: 2.6;
  text-align: center;
  z-index: 3;
}

@media screen and (max-width:768px) {
  .company-sec02 {
    margin-bottom: 10rem;
  }

  .company-sec02 .wrap {
    padding: 6rem 2rem;
    height: auto;
  }

  .company-sec02 .wrap .bg {
    width: calc(100% - 2rem);
    left: 1rem;
    border-radius: 2rem;
  }

  .company-sec02 .wrap .bg img.cover {
    object-position: 70% 100%;
  }

  .company-sec02 .wrap .ttlC {
    top: -2.5rem;
  }

  .company-sec02 .wrap .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* ---------------------------------------------------------------------------
//  company-sec03
--------------------------------------------------------------------------- */
.company-sec03 {
  position: relative;
}

.company-sec03 .wrap {
  position: relative;
  padding: 13rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.company-sec03 .wrap .bg {
  width: calc(81rem + ((100vw - 100rem) / 2));
  background: #004EA2;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 6rem 0 0 6rem;
}

.company-sec03 .wrap .ttlC {
  text-align: center;
  position: absolute;
  left: -4rem;
  right: 0;
  top: -2.4rem;
  font-size: 4rem;
}

.company-sec03 .wrap .greeting {
  position: absolute;
  left: calc((100vw - 100rem) / 2);
  top: 10.6rem;
}

.company-sec03 .wrap .greeting .ttl {
  font-size: 3.2rem;
  color: #004EA2;
  margin-bottom: 2rem;
}

.company-sec03 .wrap .greeting .img01 {
  width: 31.5rem;
}

.company-sec03 .wrap .greeting .dl {
  width: calc(34.8rem + ((100vw - 100rem) / 2));
  padding: 2rem 0;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  position: relative;
  left: calc((100vw - 100rem) / 2 * -1);
  color: #fff;
  line-height: 1.35;
  padding-left: calc((100vw - 100rem) / 2);
}

.company-sec03 .wrap .greeting .dl dt {
  font-size: 1.8rem;
  font-weight: 500;
}

.company-sec03 .wrap .greeting .dl dd {
  font-size: 2.4rem;
}

.company-sec03 .wrap .box {
  width: 60rem;
  margin-right: calc((100vw - 100rem) / 2);
  color: #fff;
  position: relative;
}

.company-sec03 .wrap .box .p01 {
  width: 60rem;
  line-height: 2.25;
  text-align: justify;
}

@media screen and (max-width:768px) {
  .company-sec03 .wrap {
    padding: 4rem 2rem 6rem 3rem;
    align-items: flex-start;
  }

  .company-sec03 .wrap .bg {
    width: calc(100% - 1rem);
    top: 0;
    right: 0;
    border-radius: 2rem 0 0 2rem;
  }

  .company-sec03 .wrap .ttlC {
    text-align: left;
    position: absolute;
    left: 3rem;
    right: 0;
    top: -2.4rem;
    font-size: 4rem;
  }

  .company-sec03 .wrap .greeting {
    position: relative;
    left: -3rem;
    top: 0;
    background: #fff;
    border-radius: 0 2rem 2rem 0;
    padding-left: 3rem;
    padding-top: 2rem;
  }

  .company-sec03 .wrap .greeting .ttl {
    font-size: 1.6rem;
    margin-bottom: ２rem;
  }

  .company-sec03 .wrap .greeting .img01 {
    width: 100%;
    position: relative;
    left: -6rem;
  }

  .company-sec03 .wrap .greeting .dl {
    width: calc(100% + 3rem);
    padding: 2rem 2rem 2rem 3rem;
    left: -3rem;
    border-radius: 0 0 2rem 0;
  }

  .company-sec03 .wrap .box {
    width: 100%;
    margin-right: 0;
    margin-top: 2rem;
  }

  .company-sec03 .wrap .box .p01 {
    width: 100%;
    line-height: 1.6;
    text-align: justify;
  }
}

/* ---------------------------------------------------------------------------
//  company-sec04
--------------------------------------------------------------------------- */
.company-sec04 {
  position: relative;
}

.company-sec04 .wrap {
  padding: 13rem 0;
}

.company-sec04 .wrap .ttl {
  font-size: 3.2rem;
  color: #1F4093;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
}

.company-sec04 .wrap .dls .dl {
  display: flex;
  border-top: 1px solid rgba(201, 201, 201, 1);
  padding: 1.7rem 9rem;
  line-height: 1.8;
}

.company-sec04 .wrap .dls .dl:last-of-type {
  border-bottom: 1px solid rgba(201, 201, 201, 1);
}

.company-sec04 .wrap .dls .dl .dt {
  font-weight: 500;
  color: #1F4093;
  width: 14rem;
  font-weight: 500;
}

.company-sec04 .wrap .dls .dl .dd {
  width: calc(100% - 14rem);
}

@media screen and (max-width:768px) {
  .company-sec04 .wrap {
    padding: 10rem 2rem 8rem;
  }

  .company-sec04 .wrap .ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .company-sec04 .wrap .dls .dl {
    display: block;
    padding: 1.7rem 1rem;
  }

  .company-sec04 .wrap .dls .dl .dt {
    width: 100%;
  }

  .company-sec04 .wrap .dls .dl .dd {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  company-sec05
--------------------------------------------------------------------------- */
.company-sec05 {
  position: relative;
}

.company-sec05 .wrap01 {
  padding: 0 0 4rem 0;
  border-bottom: 1px solid #C9C9C9;
}

.company-sec05 .wrap01 .eng {
  position: relative;
  z-index: 2;
  border-radius: 0 3rem 3rem 0;
  background: transparent;
  padding: 4rem 0 4rem calc((100vw - 100rem) / 2 + 1rem);
  left: calc(((100vw - 100rem) / 2 + 1rem) * -1);
  width: calc(100% + ((100vw - 100rem) / 2));
}

.company-sec05 .wrap01 .eng::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1rem;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.company-sec05 .wrap01 .eng span {
  position: relative;
  z-index: 1;
  text-align: right;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 .5rem .8rem rgba(0, 0, 0, 0.1);
  font-family: Orbitron;
  font-size: 4rem;
  font-weight: 600;
}

.company-sec05 .wrap01 .box {
  position: relative;
}

.company-sec05 .wrap01 .box .head {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 4rem;
}

.company-sec05 .wrap01 .box .head .ttl {
  color: #004EA2;
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.company-sec05 .wrap01 .box .head .p01 {
  font-size: 2rem;
  line-height: 1.6;
}

.company-sec05 .wrap01 .box .map {
  width: 82.3rem;
  margin-left: auto;
}

.company-sec05 .wrap02 {
  padding: 4rem 0 12rem;
}

.company-sec05 .wrap02 .ttl {
  color: #004EA2;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
}

.company-sec05 .wrap02 .cards {
  display: flex;
  gap: 8rem;
  margin-top: 4rem;
}

.company-sec05 .wrap02 .cards .card {
  width: calc((100% - 8rem) / 2);
}

.company-sec05 .wrap02 .cards .card .eng {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.company-sec05 .wrap02 .cards .card .img {
  aspect-ratio: 460 / 310;
  margin-bottom: 2.5rem;
}

.company-sec05 .wrap02 .cards .card .sub-ttl {
  padding: 1.5rem;
  text-align: center;
  border: solid 1px;
  font-size: 2rem;
  font-weight: 500;
}

.company-sec05 .wrap02 .cards .card .address {
  padding: 1.5rem 0;
  border-bottom: 1px solid #C9C9C9;
  line-height: 1.8;
  position: relative;
}

.company-sec05 .wrap02 .cards .card .map-link {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  position: absolute;
  bottom: 1.7rem;
  right: 0;
}

.company-sec05 .wrap02 .cards .card .map-link:hover {
  opacity: .7;
}

.company-sec05 .wrap02 .cards .card .map-link span {
  text-decoration: underline;
}

.company-sec05 .wrap02 .cards .card .map-link::after {
  background-image: url(../img/company/icon-pin.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2.4rem;
  height: 2.4rem;
}

.company-sec05 .wrap02 .cards .card .access {
  padding: 1.5rem 0;
  line-height: 1.8;
}

.company-sec05 .wrap02 .cards .card .access .dt {
  font-weight: 500;
}

@media screen and (max-width:768px) {
  .company-sec05 .wrap01 .eng {
    border-radius: 0 2rem 2rem 0;
    padding: 2rem 2rem 2rem 4.5rem;
    left: -2.5rem;
    width: calc(100% + .5rem);
  }

  .company-sec05 .wrap01 .eng::before {
    padding: .5rem;
  }

  .company-sec05 .wrap01 .eng span {
    font-size: 3rem;
  }

  .company-sec05 .wrap01 .box .head {
    position: static;
    padding: 0 2rem;
    margin-top: 2rem;
  }

  .company-sec05 .wrap01 .box .head .ttl {
    font-size: 2rem;
  }

  .company-sec05 .wrap01 .box .head .p01 {
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
    line-height: 1.8;
  }

  .company-sec05 .wrap01 .box .map {
    width: 35.5rem;
    position: relative;
    left: -1.8rem;
    margin-top: -10.5rem;
  }

  .company-sec05 .wrap02 {
    padding: 4rem 2rem 6rem;
  }

  .company-sec05 .wrap02 .ttl {
    font-size: 1.8rem;
  }

  .company-sec05 .wrap02 .cards {
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
  }

  .company-sec05 .wrap02 .cards .card {
    width: 100%;
    font-size: 1.4rem;
  }

  .company-sec05 .wrap02 .cards .card .sub-ttl {
    padding: 1rem;
    font-size: 1.8rem;
  }

  .company-sec05 .wrap02 .cards .card .map-link {
    font-size: 1.2rem;
    bottom: 1.6rem;
    gap: .2rem;
  }

  .company-sec05 .wrap02 .cards .card .map-link::after {
    width: 1.8rem;
    height: 1.8rem;
  }

  .company-sec05 .wrap02 .cards .card .access .dt {
    font-weight: 500;
  }
}

/* ---------------------------------------------------------------------------
//  company-sec06
--------------------------------------------------------------------------- */
.company-sec06 {
  position: relative;
  border-top: 1px solid #C9C9C9;
}

.company-sec06 .wrap {
  padding: 13rem 0 20rem;
}

.company-sec06 .wrap .raw {
  display: flex;
  flex-wrap: wrap;
}

.company-sec06 .wrap .raw .left {
  width: calc(50% - 7.4rem);
}

.company-sec06 .wrap .raw .left .ttl {
  font-size: 3.2rem;
  color: #004EA2;
}

.company-sec06 .wrap .raw .right {
  width: calc(50% + 7.4rem);
}

.company-sec06 .wrap .raw .right .history {
  position: relative;
}

.company-sec06 .wrap .raw .right .history .dl::before {
  content: "";
  width: 1px;
  background: #004EA2;
  position: absolute;
  left: calc(3.7rem - .5px);
  z-index: -1;
  height: calc(100% - 3.8rem);
  /* height: 100%; */
  top: 0;
  opacity: .02;
  display: block;
}

.company-sec06 .wrap .raw .right .history .dl {
  display: flex;
  gap: .5rem;
  white-space: nowrap;
}

.company-sec06 .wrap .raw .right .history .dl .dt {
  background: #8EDFFF;
  border-radius: 100%;
  width: 7.4rem;
  height: 7.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.company-sec06 .wrap .raw .right .history .dl:nth-of-type(even) .dt {
  background: #8CF9FE;
}

.company-sec06 .wrap .raw .right .history .dl .dd {
  width: calc(100% - 7.9rem);
}

.company-sec06 .wrap .raw .right .history .dl .dd .item {
  display: flex;
  padding: 2.5rem 0 3.8rem;
  justify-content: space-between;
}

.company-sec06 .wrap .raw .right .history .dl .dd .item span {
  font-weight: 500;
  width: 4rem;
  text-align: center;
}

.company-sec06 .wrap .raw .right .history .dl .dd .item .p01 {
  width: calc(100% - 11rem);
}

@media screen and (max-width:768px) {
  .company-sec06 .wrap {
    padding: 6rem 0;
  }

  .company-sec06 .wrap .raw .left {
    width: 100%;
  }

  .company-sec06 .wrap .raw .left .ttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
  }

  .company-sec06 .wrap .raw .right {
    width: 100%;
  }

  .company-sec06 .wrap .raw .right .history .dl::before {
    left: 2rem;
  }

  .company-sec06 .wrap .raw .right .history .dl {
    gap: .5rem;
  }

  .company-sec06 .wrap .raw .right .history .dl .dt {
    width: 7rem;
    height: 7rem;
    font-size: 1.4rem;
    border-radius: 0 100% 100% 0;
    font-size: 1.4rem;
    padding-right: .5rem;
  }

  .company-sec06 .wrap .raw .right .history .dl .dd {
    width: calc(100% - 7.5rem);
  }

  .company-sec06 .wrap .raw .right .history .dl .dd .item {
    display: flex;
    padding: 2.3rem 0 3.8rem;
    justify-content: space-between;
  }

  .company-sec06 .wrap .raw .right .history .dl .dd .item span {
    font-weight: 500;
    width: 4rem;
    text-align: center;
  }

  .company-sec06 .wrap .raw .right .history .dl .dd .item .p01 {
    width: calc(100% - 5rem);
  }
}

/* ---------------------------------------------------------------------------
//  manufacturing-sec02
--------------------------------------------------------------------------- */
.manufacturing-sec02 {
  position: relative;
}

.manufacturing-sec02 .bg {
  max-width: 128rem;
  width: calc(100% - 4rem);
  border-radius: 6rem;
  overflow: hidden;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  aspect-ratio: 1242/678;
}

.manufacturing-sec02::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 54.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 34.62%, #FFF 100%);
  top: 32rem;
  left: 0;
  z-index: -1;
}

.manufacturing-sec02 .wrap01 {
  padding: 6rem 0 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manufacturing-sec02 .wrap01 .ttlC {
  text-align: center;
}

.manufacturing-sec02 .wrap01 .ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  color: #1F4093;
  margin-top: 5rem;
}

.manufacturing-sec02 .wrap01 .raw {
  display: flex;
  margin-top: 5rem;
}

.manufacturing-sec02 .wrap01 .raw .left {
  width: calc(50% + 1.85rem);
  left: -5rem;
  position: relative;
}

.manufacturing-sec02 .wrap01 .raw .left .eng {
  display: block;
  position: relative;
}

.manufacturing-sec02 .wrap01 .raw .left .eng .orbit-wrap {
  --orbit-tilt: -38deg;
  /* ← ここで楕円の傾き角度を変更できます */
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.manufacturing-sec02 .wrap01 .raw .left .eng .orbit-svg ellipse {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(var(--orbit-tilt));
}

.manufacturing-sec02 .wrap01 .raw .left .eng .orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.manufacturing-sec02 .wrap01 .raw .left .eng .orbit-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: Orbitron;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.86;
  pointer-events: none;
}

/* f-animation01 で分割された .char にグラデーションを継承 */
.manufacturing-sec02 .wrap01 .raw .left .eng .orbit-center.f-animation01 .char {
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manufacturing-sec02 .wrap01 .raw .left .eng .orbit-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a3a6b;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 .4rem #FFF;
  filter: drop-shadow(.4rem .4rem 2rem rgba(0, 0, 0, 0.25));
}

.manufacturing-sec02 .wrap01 .raw .left .eng .dot01 {
  background: radial-gradient(circle at 40% 40%, #a8f0e0, #5dd8c8);
}

.manufacturing-sec02 .wrap01 .raw .left .eng .dot02 {
  background: radial-gradient(circle at 40% 40%, #d8b0f0, #c080d8);
}

.manufacturing-sec02 .wrap01 .raw .left .eng .dot03 {
  background: radial-gradient(circle at 40% 40%, #fce0a0, #f0a060);
}

.manufacturing-sec02 .wrap01 .raw .left .eng .dot04 {
  background: radial-gradient(circle at 40% 40%, #a0d8f8, #60b0f0);
}

.manufacturing-sec02 .wrap01 .raw .right {
  width: calc(50% - 1.85rem);
  margin-left: auto;
}

.manufacturing-sec02 .wrap01 .raw .right .p01 {
  line-height: 2.25;
  font-weight: 500;
}

.manufacturing-sec02 .wrap02 {
  border-radius: 6rem;
  border: 1px solid #BABABA;
  padding: 7rem 0 10rem;
  position: relative;
}

.manufacturing-sec02 .wrap02 .raw {
  display: flex;
  align-items: center;
}

.manufacturing-sec02 .wrap02 .raw .left {
  width: 59rem;
}

.manufacturing-sec02 .wrap02 .raw .left .ttl01 {
  font-size: 2rem;
  font-weight: 500;
  color: #1F4093;
  border-bottom: 1px solid #BABABA;
  margin-bottom: 2rem;
  padding: 0 0 2rem 6rem;
}

.manufacturing-sec02 .wrap02 .raw .left .ttl02 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #1F4093;
  margin-bottom: 1rem;
  padding-left: 6rem;
}

.manufacturing-sec02 .wrap02 .raw .left small {
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 6rem;
  display: block;
}

.manufacturing-sec02 .wrap02 .raw .left .p01 {
  line-height: 2.25;
  padding-left: 6rem;
  padding-right: 12rem;
  margin-top: 3rem;
}

.manufacturing-sec02 .wrap02 .raw .right {
  width: calc(100% - 59rem);
  height: 55.3rem;
  position: relative;
}

.manufacturing-sec02 .wrap02 .raw .right .img {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 52rem;
  top: 0;
  left: 0;
  border-radius: 6rem;
}

.manufacturing-sec02 .wrap02 .deco {
  position: absolute;
  background-image: url(../img/manufacturing/02-img03.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  width: 79rem;
  height: 24rem;
  bottom: -12rem;
  left: -30rem;
}

.manufacturing-sec02 .wrap03 {
  padding: 13rem 0 16rem;
  position: relative;
}

/* --------------- PC横スクロールピン（GSAP ScrollTrigger） --------------- */
@media (min-width: 768.1px) {

  .manufacturing-sec02 .wrap03,
  .manufacturing-sec02 .wrap03 .scrollX {
    overflow: visible !important;
  }

  .manufacturing-sec02 .wrap03 .steps {
    will-change: transform;
  }
}

/* ---------------------------------------------------------------------- */
.manufacturing-sec02 .wrap03 .ttl01 {
  background: #004EA2;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  text-align: center;
  position: relative;
}

.manufacturing-sec02 .wrap03 .ttl01::after {
  content: "";
  height: 100%;
  width: 100vw;
  left: 100%;
  top: 0;
  background: #004EA2;
  position: absolute;
}

.manufacturing-sec02 .wrap03 .scrollX {
  margin-top: 10rem;
}

.manufacturing-sec02 .wrap03 .steps {
  display: flex;
  gap: 4.5rem;
}

.manufacturing-sec02 .wrap03 .steps .step {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manufacturing-sec02 .wrap03 .steps .step + .step::before {
  background-image: url(../img/manufacturing/tri01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 4.8rem;
  height: 5.5rem;
  position: absolute;
  top: 19.6rem;
  left: -3rem;
  z-index: 2;
}

.manufacturing-sec02 .wrap03 .steps .step .eng {
  text-align: center;
  width: 100%;
  left: 0;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-shadow: 0 .3rem .45rem rgba(0, 0, 0, 0.2);
  font-family: Roboto;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.manufacturing-sec02 .wrap03 .steps .step .box {
  flex-grow: 2;
  padding: 3rem;
  border-radius: 3rem;
  border: 1px solid #BABABA;
  position: relative;
  margin-top: -2rem;
}

.manufacturing-sec02 .wrap03 .steps .step .box .ttl02 {
  font-size: 2rem;
  font-weight: 500;
  color: #1F4093;
  margin-bottom: 2rem;
  text-align: center;
}

.manufacturing-sec02 .wrap03 .steps .step .box .childs {
  display: flex;
  gap: 2.8rem;
}

.manufacturing-sec02 .wrap03 .steps .step .box .childs .child {
  width: 30.2rem;
  flex-shrink: 0;
  position: relative;
}

.manufacturing-sec02 .wrap03 .steps .step .box .childs .child + .child::before {
  background-image: url(../img/manufacturing/tri02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 1.6rem;
  height: 3.6rem;
  position: absolute;
  top: 9.7rem;
  left: -2.1rem;
  z-index: 2;
}

.manufacturing-sec02 .wrap03 .steps .step .box .childs .child .img {
  width: 100%;
  aspect-ratio: 302/221;
  overflow: hidden;
}

.manufacturing-sec02 .wrap03 .steps .step .box .childs .child .p01 {
  line-height: 1.5;
  margin-top: 1rem;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .manufacturing-sec02 .bg {
    width: calc(100% - 2rem);
    border-radius: 2rem 2rem 0 0;
    aspect-ratio: 1/1;
  }

  .manufacturing-sec02::before {
    height: 54.3rem;
    top: 20rem;
  }

  .manufacturing-sec02 .wrap01 {
    padding: 6rem 2rem;
  }

  .manufacturing-sec02 .wrap01 .ttlC {
    width: 100%;
  }

  .manufacturing-sec02 .wrap01 .ttl {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .manufacturing-sec02 .wrap01 .raw {
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
  }

  .manufacturing-sec02 .wrap01 .raw .left {
    width: 100%;
    left: 0;
  }

  .manufacturing-sec02 .wrap01 .raw .left .eng .orbit-center {
    font-size: 2.4rem;
  }

  .manufacturing-sec02 .wrap01 .raw .left .eng .orbit-dot {
    font-size: 1.6rem;
  }

  .manufacturing-sec02 .wrap01 .raw .right {
    width: 100%;
    margin-top: 2rem;
    margin-left: auto;
  }

  .manufacturing-sec02 .wrap01 .raw .right .p01 {
    line-height: 1.8;
  }

  .manufacturing-sec02 .wrap02 {
    border-radius: 2rem;
    margin: 0 1rem;
    padding: 4rem 1rem 6rem;
    margin-bottom: 24rem;
  }

  .manufacturing-sec02 .wrap02 .raw {
    flex-direction: column;
  }

  .manufacturing-sec02 .wrap02 .raw .left {
    width: 100%
  }

  .manufacturing-sec02 .wrap02 .raw .left .ttl01 {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 0 2rem 0;
  }

  .manufacturing-sec02 .wrap02 .raw .left .ttl02 {
    font-size: 1.6rem;
    padding-left: 0;
    text-align: center;
  }

  .manufacturing-sec02 .wrap02 .raw .left small {
    font-size: 1.2rem;
    padding-left: 0;
    text-align: center;
  }

  .manufacturing-sec02 .wrap02 .raw .left .p01 {
    line-height: 1.8;
    padding-left: 0;
    padding-right: 0;
    margin-top: 2rem;
    text-align: justify;
    font-size: 1.4rem;
  }

  .manufacturing-sec02 .wrap02 .raw .right {
    width: 70%;
    height: auto;
    aspect-ratio: 1/1;
    margin-left: auto;
    position: absolute;
    bottom: -18rem;
  }

  .manufacturing-sec02 .wrap02 .raw .right .img {
    width: 100%;
    border-radius: 2rem;
    margin-top: 3rem;
    left: auto;
    right: -8rem;
  }

  .manufacturing-sec02 .wrap02 .deco {
    width: 60rem;
    height: 18rem;
    bottom: -34rem;
    left: -12rem;
  }

  .manufacturing-sec02 .wrap03 {
    padding: 13rem 1rem 6rem;
    position: relative;
  }

  .manufacturing-sec02 .wrap03 .ttl01 {
    font-size: 1.8rem;
  }

  .manufacturing-sec02 .wrap03 .scrollX {
    margin-top: 4rem;
  }

  .manufacturing-sec02 .wrap03 .steps {
    flex-direction: column;
    gap: 4rem;
  }

  .manufacturing-sec02 .wrap03 .steps .step {
    flex-shrink: unset;
    width: 100%;
  }

  .manufacturing-sec02 .wrap03 .steps .step + .step::before {
    width: 3rem;
    height: 4rem;
    top: -6rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(90deg);
  }

  .manufacturing-sec02 .wrap03 .steps .step .eng {
    font-size: 3rem;
  }

  .manufacturing-sec02 .wrap03 .steps .step .box {
    padding: 3rem 2rem;
    border-radius: 2rem;
    margin-top: -1.6rem;
  }

  .manufacturing-sec02 .wrap03 .steps .step .box .ttl02 {
    font-size: 1.8rem;
  }

  .manufacturing-sec02 .wrap03 .steps .step .box .childs {
    flex-direction: column;
    gap: 4rem;
  }

  .manufacturing-sec02 .wrap03 .steps .step .box .childs .child {
    width: 30.2rem;
    flex-shrink: 0;
    position: relative;
  }

  .manufacturing-sec02 .wrap03 .steps .step .box .childs .child + .child::before {
    width: 1.5rem;
    height: 2.8rem;
    top: -3.6rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(90deg);
  }

  .manufacturing-sec02 .wrap03 .steps .step .box .childs .child .img {
    width: 100%;
    aspect-ratio: 302/221;
    overflow: hidden;
  }

  .manufacturing-sec02 .wrap03 .steps .step .box .childs .child .p01 {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------
//    .manufacturing-sec03
--------------------------------------------------------------------------- */
.manufacturing-sec03 {
  position: relative;
  background: #EFFAFF;
}

.manufacturing-sec03 .wrap {
  padding: 9rem 0 6rem;
  position: relative;
}

.manufacturing-sec03 .wrap .ttl01 {
  color: #1F4093;
  text-align: center;
  border: solid 1px #1F4093;
  background: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  height: 8.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4.2rem;
  width: 100%;
}

.manufacturing-sec03 .wrap .ttl01 + .p01 {
  text-align: center;
}

.manufacturing-sec03 .wrap .p01 {
  line-height: 2.25;
}

.manufacturing-sec03 .wrap .p01 strong {
  font-weight: 500;
}

.manufacturing-sec03 .wrap .promises {
  margin-top: 4rem;
}

.manufacturing-sec03 .wrap .promises .promise {
  display: flex;
  padding: 4rem 0;
  border-top: 3px solid #004EA2;
  align-items: flex-start;
  flex-wrap: wrap;
}

.manufacturing-sec03 .wrap .promises .promise .ttl02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: calc(50% - 2rem);
}

.manufacturing-sec03 .wrap .promises .promise .ttl02 span {
  width: 12.8rem;
  height: 12.8rem;
}

.manufacturing-sec03 .wrap .promises .promise .ttl02 em {
  width: calc(100% - 14.8rem);
  font-size: 2.4rem;
  font-weight: 500;
  color: #1F4093;
}

.manufacturing-sec03 .wrap .promises .promise .txts {
  width: calc(50% + 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 12.8rem;
  text-align: justify;
}

.manufacturing-sec03 .wrap .promises .promise .cards {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.manufacturing-sec03 .wrap .promises .promise03 .cards {
  align-items: center;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card {
  width: calc((100% - 6rem) / 3);
}

.manufacturing-sec03 .wrap .promises .promise .cards .card.col2 {
  width: calc((100% - 6rem) / 3 * 2 + 3rem);
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .imgs {
  display: flex;
  gap: 3rem;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .imgs .img {
  width: 100%;
  aspect-ratio: 313/221;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card.col2 .imgs .img {
  width: calc((100% - 3rem) / 2);
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .dl .dt {
  font-weight: 500;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .dl .dd {
  line-height: 1.5;
  margin-top: 1rem;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .flow .ttl03 {
  font-size: 2rem;
  background: #004EA2;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: .5rem 0 .7rem;
  margin-bottom: 2rem;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .flow .img {
  border-bottom: solid 1px #BABABA;
}

.manufacturing-sec03 .wrap .promises .promise .cards .card .flow + .dl .dd {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .manufacturing-sec03 .wrap {
    padding: 6rem 2rem 6rem;
    position: relative;
    margin-top: 4rem;
  }

  .manufacturing-sec03 .wrap .ttl01 {
    font-size: 2rem;
    height: 6rem;
    top: -3rem;
    width: calc(100% - 4rem);
    left: 2rem;
  }

  .manufacturing-sec03 .wrap .p01 {
    line-height: 1.8;
  }

  .manufacturing-sec03 .wrap .promises .promise {
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
  }

  .manufacturing-sec03 .wrap .promises .promise .ttl02 {
    gap: 2rem;
    width: 100%;
  }

  .manufacturing-sec03 .wrap .promises .promise .ttl02 span {
    width: 8rem;
    height: 8rem;
  }

  .manufacturing-sec03 .wrap .promises .promise .ttl02 em {
    width: calc(100% - 10rem);
    font-size: 2rem;
  }

  .manufacturing-sec03 .wrap .promises .promise .txts {
    width: 100%;
    margin-top: 2rem;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards {
    flex-direction: column;
    margin-top: 2rem;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards .card {
    width: 100% !important;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards .card .imgs {
    gap: 1rem;
    flex-direction: column;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards .card.col2 .imgs .img {
    width: 100%;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards .card .dl {
    margin-top: 1rem;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards .card .dl .dd {
    font-size: 1.4rem;
    margin-top: .5rem;
  }

  .manufacturing-sec03 .wrap .promises .promise .cards .card .flow .ttl03 {
    font-size: 1.6rem;
    padding: .3rem 0 .5rem;
  }
}

/* ---------------------------------------------------------------------------
//  products-sec02
--------------------------------------------------------------------------- */
.products-sec02 {
  position: relative;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  margin-bottom: 6rem;
}

.products-sec02 .wrap {
  padding: 12rem 0 6rem;
}

.products-sec02 .wrap .btns {
  display: flex;
  gap: 4.8rem;
  justify-content: center;
}

.products-sec02 .wrap .btns .btnB {
  width: calc((100% - 4.8rem) / 3);
  position: relative;
}

.products-sec02 .wrap .btns .btnB::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -6rem;
  position: absolute;
  height: 6.5rem;
  width: 8.9rem;
}

.products-sec02 .wrap .btns .btnB:nth-of-type(1)::before {
  background-image: url(../img/products/02-pict01.svg);
}

.products-sec02 .wrap .btns .btnB:nth-of-type(2)::before {
  background-image: url(../img/products/02-pict02.svg);
  left: 1rem;
}

.products-sec02 .wrap .btns .btnB:nth-of-type(3)::before {
  background-image: url(../img/products/02-pict03.svg);
}

@media screen and (max-width: 768px) {
  .products-sec02 {
    margin-bottom: 4rem;
  }

  .products-sec02 .wrap {
    padding: 12rem 2rem 10rem;
  }

  .products-sec02 .wrap .btns {
    flex-direction: column;
    gap: 11rem;
  }

  .products-sec02 .wrap .btns .btnB {
    width: 100%;
    position: relative;
  }

  .products-sec02 .wrap .btns .btnB::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -6rem;
    position: absolute;
    height: 6.5rem;
    width: 8.9rem;
  }

  .products-sec02 .wrap .btns .btnB:nth-of-type(1)::before {
    background-image: url(../img/products/02-pict01.svg);
  }

  .products-sec02 .wrap .btns .btnB:nth-of-type(2)::before {
    background-image: url(../img/products/02-pict02.svg);
    left: 1rem;
  }

  .products-sec02 .wrap .btns .btnB:nth-of-type(3)::before {
    background-image: url(../img/products/02-pict03.svg);
  }
}

/* ---------------------------------------------------------------------------
//  product-secA
--------------------------------------------------------------------------- */
.product-secA {
  position: relative;
}

.product-secA .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-secA .wrap .head {
  background: #fff;
  border-radius: 0 0 3rem 3rem;
  width: 74.4rem;
  text-align: center;
  padding: 1rem 0 2rem;
  text-align: center;
  color: #1F4093;
  margin-bottom: 5rem;
}

.product-secA .wrap .head .eng {
  font-size: 2.5rem;
  /* font-family: Roboto; */
  font-family: Orbitron;
  font-weight: 600;
  margin-bottom: .7rem;
}

.product-secA .wrap .head .ttl01 {
  font-size: 3.2rem;
  font-weight: 500;
}

.product-secA .wrap .head .ttl01 small {
  font-size: 1.8rem;
}

.product-secA .wrap .txts {
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
}

.product-secA .wrap .txts .ttl02 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #1F4093;
}

.product-secA .wrap .txts .p01 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.25;
}

.product-secA .wrap .btns {
  display: flex;
  gap: 10rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-secA .wrap .btns .btn {
  width: calc((100% - 20rem) / 3);
  text-align: center;
  position: relative;
  padding-bottom: 3rem;
}

.product-secA .wrap .btns .btn::after {
  background-image: url(../img/common/arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 3.6rem;
  height: 1.6rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: btnAArrowNudge2 1.8s ease-in-out infinite;
}

.product-secA .wrap .btns .btn .dt {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.product-secA .wrap .btns .btn .dd {
  border-radius: 6rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-secA .wrap .btns .btn .dd .img {
  transition: transform 0.3s ease;
  border-radius: 6rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-secA .wrap .btns .btn:hover .dd .img {
  transform: scale(1.1);
}

.product-secA .wrap .before_after {
  display: flex;
  gap: 6rem;
  align-items: center;
}

.product-secA .wrap .before_after .before {
  width: 30.4rem;
  position: relative;
}

.product-secA .wrap .before_after .after {
  width: calc(100% - 30.4rem - 6rem);
  position: relative;
}

.product-secA .wrap .before_after .after::before {
  content: '';
  background-image: url(../img/common/arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.6rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: -4rem;
  bottom: 0;
  margin: auto;
}

.product-secA .wrap .before_after span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background: #004EA2;
  width: 10.5rem;
  height: 2.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Orbitron;
  font-weight: 600;
}

@media screen and (max-width:768px) {
  .product-secA .wrap .head {
    border-radius: 0 0 2rem 2rem;
    width: 100%;
    padding: 1rem 2rem 2rem;
    margin-bottom: 4rem;
  }

  .product-secA .wrap .head .eng {
    font-size: 1.6rem;
  }

  .product-secA .wrap .head .ttl01 {
    font-size: 2rem;
    font-weight: 500;
  }

  .product-secA .wrap .head .ttl01 small {
    font-size: 1.2rem;
    /* display: block; */
  }

  .product-secA .wrap .txts .ttl02 {
    font-size: 1.8rem;
  }

  .product-secA .wrap .txts .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .product-secA .wrap .btns {
    gap: 2rem 1rem;
  }

  .product-secA .wrap .btns .btn {
    width: calc((100% - 1rem) / 2);
    padding-bottom: 2.5rem;
  }

  .product-secA .wrap .btns .btn .dt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .product-secA .wrap .btns .btn .dd {
    border-radius: 2rem;
    aspect-ratio: 4/3;
  }

  .product-secA .wrap .btns .btn .dd .img {
    border-radius: 2rem;
    aspect-ratio: 4/3;
  }

  .product-secA .wrap .before_after {
    flex-direction: column;
    gap: 5rem;
  }

  .product-secA .wrap .before_after .before {
    width: 20rem;
  }

  .product-secA .wrap .before_after .after {
    width: 100%;
  }

  .product-secA .wrap .before_after .after::before {
    width: 2rem;
    height: 2.5rem;
    top: -3.8rem;
    left: 0;
    right: 0;
    bottom: auto;
    transform: rotate(90deg);
  }
}

/* ---------------------------------------------------------------------------
//  product-secB
--------------------------------------------------------------------------- */
.product-secB {
  position: relative;
  border-top: 3px solid #004EA2;
}

.product-secB.border-none {
  border-top: none;
}

.product-secB .wrap .head .raw {
  display: flex;
  position: relative;
  padding-top: 10rem;
}

.product-secB .wrap .head .raw .left {
  width: 50%;
  height: 47rem;
  position: relative;
}

.product-secB .wrap .head .raw .img {
  position: absolute;
  height: 100%;
  width: 64rem;
  right: 0;
  top: 0;
  border-radius: 0 6rem 6rem 0;
  overflow: hidden;
}

.product-secB .wrap .head .raw::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 48.2rem;
  height: 47.5rem;
  position: absolute;
  top: 0;
  right: -18.4rem;
  z-index: -1;
}

.product-secB .wrap .head .raw .right {
  padding-left: 8rem;
}

.product-secB .wrap .head .raw .right .ttl01 {
  border: solid 6px #004EA2;
  padding: 2px;
  background: #fff;
  text-align: center;
  margin-bottom: 5rem;
}

.product-secB .wrap .head .raw .right .ttl01 span {
  font-size: 3.2rem;
  color: #1F4093;
  border: solid 1px #004EA2;
  display: block;
  padding: .2rem 0 .6rem;
  line-height: 1;
  font-weight: 500;
}

.product-secB .wrap .head .raw .right .ttl02 {
  font-size: 2.2rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 4rem;
}

.product-secB .wrap .head .raw .right .p01 {
  font-size: 1.6rem;
  line-height: 2.25;
  text-align: justify;
}

.product-secB .wrap .group {
  padding-bottom: 7rem;
}

.product-secB .wrap .group .ttl01 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #1F4093;
  padding: 6rem 0 4rem;
}

.product-secB .wrap .group .item {
  padding: 4rem 0 6rem;
  border-top: solid 1px #BABABA;
}

.product-secB .wrap .group .item .name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.product-secB .wrap .group .item .name.spacecing {
  display: flex;
  justify-content: space-between;
  width: 32.5rem;
}

.product-secB .wrap .group .item .name small {
  font-size: 1.6rem;
  font-weight: 400;
}

.product-secB .wrap .group .item .raw {
  display: flex;
  gap: 4rem;
}

.product-secB .wrap .group .item .raw .left {
  width: 32.5rem;
}

.product-secB .wrap .group .item .raw .left .img {
  aspect-ratio: 325/229;
}

.product-secB .wrap .group .item .raw .right {
  width: calc(100% - 32.5rem - 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-secB .wrap .group .item .raw .right.al-center {
  align-items: center;
}

.product-secB .wrap .group .item .raw .right .dl {
  width: 100%;
}

.product-secB .wrap .group .item .raw .right .dl.half {
  width: calc((100% - 2rem) / 2);
}

.product-secB .wrap .group .item .raw .right .dl .dt {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-secB .wrap .group .item .raw .right .dl .dd {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-secB .wrap .group .item .raw .right .dl .dd .color {
  width: calc(((100rem - 32.5rem - 4rem) - 6rem) / 6);
}

.product-secB .wrap .group .item .raw .right .dl .dd .color .img {
  aspect-ratio: 1/1;
}

.product-secB .wrap .group .item .raw .right .dl .dd .color span {
  font-size: 1.3rem;
  white-space: nowrap;
  text-align: center;
  display: block;
  margin-top: .7rem;
}

@media screen and (max-width:768px) {
  .product-secB .wrap .head .raw {
    flex-direction: column;
    padding-top: 6rem;
  }

  .product-secB .wrap .head .raw::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    width: 20rem;
    height: 20rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .product-secB .wrap .head .raw .left {
    width: calc(100% - 4rem);
    height: auto;
    margin-top: 4rem;
    order: 2;
    left: -2rem;
  }

  .product-secB .wrap .head .raw .img {
    position: static;
    height: auto;
    width: 100%;
    aspect-ratio: 72/47;
    border-radius: 0 2rem 2rem 0;
  }

  .product-secB .wrap .head .raw .right {
    padding: 0 2rem;
  }

  .product-secB .wrap .head .raw .right .ttl01 {
    margin-bottom: 4rem;
  }

  .product-secB .wrap .head .raw .right .ttl01 span {
    font-size: 2.4rem;
  }

  .product-secB .wrap .head .raw .right .ttl02 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .product-secB .wrap .head .raw .right .p01 {
    line-height: 1.8;
    font-size: 1.6rem;
  }

  .product-secB .wrap .group {
    padding-bottom: 6rem;
  }

  .product-secB .wrap .group .ttl01 {
    font-size: 1.8rem;
    padding: 4rem 2rem;
  }

  .product-secB .wrap .group .item {
    padding: 4rem 2rem;
  }

  .product-secB .wrap .group .item .name {
    font-size: 1.6rem;
  }

  .product-secB .wrap .group .item .name.spacecing {
    display: block;
    width: 100%;
  }

  .product-secB .wrap .group .item .name small {
    font-size: 1.2rem;
  }

  .product-secB .wrap .group .item .raw {
    flex-direction: column;
    gap: 2rem;
  }

  .product-secB .wrap .group .item .raw .left {
    width: 100%;
  }

  .product-secB .wrap .group .item .raw .right {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-secB .wrap .group .item .raw .right .dl {
    width: 100% !important;
  }

  .product-secB .wrap .group .item .raw .right .dl .dt {
    font-size: 1.4rem;
  }

  .product-secB .wrap .group .item .raw .right .dl .dd {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .product-secB .wrap .group .item .raw .right .dl .dd .color {
    width: calc((100% - 2rem)/3);
  }

  .product-secB .wrap .group .item .raw .right .dl .dd .color span {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------------------------
//  product-sec01-00
--------------------------------------------------------------------------- */
.product-sec01-00 {
  background: linear-gradient(51deg, rgba(174, 255, 217, .42) 0.48%, rgba(192, 242, 255, .42) 82.34%);
}

.product-sec01-00 .wrap {
  padding: 0 0 13rem;
}

@media screen and (max-width:768px) {
  .product-sec01-00 .wrap {
    padding: 0 2rem 6rem;
  }
}

/* ---------------------------------------------------------------------------
//  product-sec01-01
--------------------------------------------------------------------------- */
.product-sec01-01 .wrap .head .raw::before {
  background-image: url(../img/products/01-01-bg.png);
}

/* ---------------------------------------------------------------------------
//  product-sec01-02
--------------------------------------------------------------------------- */
.product-sec01-02 .wrap .head .raw::before {
  background-image: url(../img/products/01-02-bg.png);
}

/* ---------------------------------------------------------------------------
//  product-sec01-03
--------------------------------------------------------------------------- */
.product-sec01-03 .wrap .head .raw::before {
  background-image: url(../img/products/01-03-bg.png);
}

/* ---------------------------------------------------------------------------
//  product-sec02-00
--------------------------------------------------------------------------- */
.product-sec02-00 {
  background: linear-gradient(51deg, rgba(245, 239, 201, .42) 0.48%, rgba(200, 243, 209, .42) 82.34%);
}

.product-sec02-00 .wrap {
  padding: 0 0 6rem;
}

@media screen and (max-width:768px) {
  .product-sec02-00 .wrap {
    padding: 0 2rem 6rem;
  }
}

/* ---------------------------------------------------------------------------
//  news-sec01
--------------------------------------------------------------------------- */
.news-sec01 {
  position: relative;
}

.news-sec01 .wrap {
  padding-bottom: 4rem;
}

/* ---------------------------------------------------------------------------
//  news-sec02
--------------------------------------------------------------------------- */
.news-sec02 {
  position: relative;
}

.news-sec02 .wrap {
  padding: 0 0 13rem;
  max-width: 68.5rem;
  margin: 0 auto;
}

.news-sec02 .wrap .cats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5rem;
}

.news-sec02 .wrap .cats .cat {
  min-width: 7rem;
  padding: 0 .3rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: #fff;
  border: solid 1px #CBCBCB;
  font-size: 1.4rem;
}

.news-sec02 .wrap .cats .cat.active {
  background: #004EA2;
  color: #fff;
  border-color: #004EA2;
}

@media screen and (max-width:768px) {
  .news-sec02 .wrap {
    padding: 0 2rem 6rem;
  }

  .news-sec02 .wrap .cats {
    margin-bottom: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  archive
--------------------------------------------------------------------------- */
div.archive .item {
  display: flex;
  padding: 3rem 1rem 3rem 0;
  border-bottom: solid 1px #d8d8d8;
  position: relative;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

div.archive .item .arrow {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 100%;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  position: relative;
  transition: .3s;
  animation: arrow01 1.8s ease-in-out infinite;
}

@keyframes arrow01 {

  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateX(.4rem);
  }
}

div.archive .item .arrow::before {
  background-image: url(../img/common/arrow03.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 1.2rem;
  height: 1.8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

div.archive .item .head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 17rem;
  display: flex;
}

div.archive .item .head time {
  font-size: 1.8rem;
  width: 10rem;
}

div.archive .item .head .cat {
  width: 7rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: #fff;
  border: solid 1px #CBCBCB;
  font-size: 1.2rem;
}

div.archive .item .ttl {
  font-size: 1.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  width: calc(100% - 17rem - 6rem - 4.5rem);
  transition: .3s;
}

div.archive .item:hover .ttl {
  color: #00ABD7;
}

@media screen and (max-width:768px) {
  div.archive .item {
    padding: 2rem 4rem 2rem 0;
    gap: 1rem;
  }

  div.archive .item .arrow {
    width: 3rem;
    position: absolute;
    height: 3rem;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  div.archive .item .arrow::before {
    width: 1rem;
    height: 1.2rem;
  }

  div.archive .item .head {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    display: flex;
  }

  div.archive .item .head time {
    font-size: 1.6rem;
    width: 8rem;
  }

  div.archive .item .ttl {
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//   pagination
--------------------------------------------------------------------------- */
.pagination {
  margin-top: 6rem;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pagination .page-numbers {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 100%;
  border: 1px solid rgba(26, 115, 240, .1);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-family: Roboto;
  font-weight: 700;
  line-height: 1;
  transition: .25s ease;
}

.pagination a.page-numbers:hover {
  background-color: #f2fbff;
}

.pagination .page-numbers.current {
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  color: #fff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 100%;
  font-size: 0;
  background-image: url(../img/common/arrow04.svg);
  background-size: 1.4rem;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.pagination .page-numbers.prev {
  margin-right: 2rem;
}

.pagination .page-numbers.next {
  transform: rotate(180deg);
  margin-left: 2rem;
}

.pagination .page-numbers.dots {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 2rem;
  opacity: .4;
}

@media screen and (max-width:768px) {
  .pagination {
    margin-top: 4rem;
  }

  .pagination .page-numbers {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }

  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {
    width: 1.4rem;
    height: 4rem;
    background-color: transparent !important;
  }

  .pagination .page-numbers.prev {
    margin-right: auto;
  }

  .pagination .page-numbers.next {
    margin-left: auto;
  }

  .pagination .page-numbers.dots {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  article-fv
--------------------------------------------------------------------------- */
.article-fv {
  position: relative;
  border-bottom: solid 1px #004EA2;
}

.article-fv .wrap {
  position: relative;
  height: 36rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 2rem 0;
}

.article-fv .wrap .ttl {
  font-size: 3.2rem;
  font-weight: 500;
  color: #1F4093;
  margin-bottom: 4rem;
}

.article-fv .head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 17rem;
  display: flex;
}

.article-fv .head time {
  font-size: 1.8rem;
  width: 10rem;
}

.article-fv .head .cat {
  width: 7rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: #fff;
  border: solid 1px #CBCBCB;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .article-fv .wrap {
    height: 24rem;
    padding: 2rem;
  }

  .article-fv .wrap .ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .article-fv .head time {
    font-size: 1.6rem;
    width: 8rem;
  }

  .article-fv + .bread-sec .wrap {
    padding-top: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//  article-sec01
--------------------------------------------------------------------------- */
.article-sec01 {
  position: relative;
}

.article-sec01 .wrap {
  padding: 8rem 0 13rem;
}

.article-sec01 .wrap .ttl {
  font-size: 2.4rem;
  color: #004EA2;
  font-weight: 500;
  margin-bottom: 4rem;
}

.article-sec01 .wrap .wp-edit > * {
  margin: 1.5rem 0;
  line-height: 1.8;
}

.article-sec01 .wrap .btnA {
  margin-top: 6rem;
  justify-content: center;
}

@media screen and (max-width:768px) {
  .article-sec01 .wrap {
    padding: 4rem 2rem 6rem;
  }

  .article-sec01 .wrap .ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .article-sec01 .wrap .wp-edit > * {
    margin: 1rem 0;
  }

  .article-sec01 .wrap .btnA {
    margin-top: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  contact-fv
--------------------------------------------------------------------------- */
.contact-fv {
  position: relative;
  border-bottom: solid 1px #004EA2;
}

.contact-fv .wrap {
  position: relative;
  height: 36rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 4rem 0;
  align-items: flex-start;
}

.contact-fv .wrap .eng {
  opacity: 0.54;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  font-size: 8rem;
  font-family: Roboto;
  margin-bottom: 2rem;
}

.contact-fv .wrap .ttl {
  padding: .3rem 2rem .5rem;
  background: #2FCFDE;
  color: #fff;
}

.contact-fv + .bread-sec .wrap {
  position: absolute;
  right: 0;
}

@media screen and (max-width: 768px) {
  .contact-fv .wrap {
    height: 24rem;
    padding: 2rem;
  }

  .contact-fv .wrap .eng {
    font-size: 6rem;
    margin-bottom: 1rem;
  }

  .contact-fv .wrap .ttl {
    padding: .3rem 1rem .5rem;
  }

  .contact-fv + .bread-sec .wrap {
    padding-top: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//  contact-sec01
--------------------------------------------------------------------------- */
.contact-sec01 {
  position: relative;
  background: linear-gradient(51deg, rgba(174, 255, 186, .36) 0.48%, rgba(140, 207, 255, .36) 82.34%);
  mix-blend-mode: multiply;
}

.contact-sec01 .wrap {
  padding: 6rem 0;
  max-width: 86rem;
  /* max-width: 100rem; */
  margin: 0 auto;
  line-height: 2.25;
  text-align: justify;
  /* display: flex;
  justify-content: center; */
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .contact-sec01 .wrap {
    padding: 6rem 2rem 4rem;
    line-height: 1.8;
    white-space: normal;
  }
}

/* ---------------------------------------------------------------------------
//  contact-sec02
--------------------------------------------------------------------------- */
.contact-sec02 {
  position: relative;
}

.contact-sec02 .wrap {
  padding: 6rem 0 13rem;
  max-width: 86rem;
  margin: 0 auto;
}

.contact-sec02 .wrap .ttl01 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-sec02 .wrap .ttl02 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-sec02 .wrap .p01 {
  line-height: 2.25;
  text-align: justify;
}

.contact-sec02 .wrap .form-wrap {
  margin-top: 6rem;
}

.contact-sec02 .wrap .form-wrap form {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .contact-sec02 .wrap {
    padding: 4rem 2rem 6rem;
  }

  .contact-sec02 .wrap .ttl01 {
    font-size: 1.8rem;
  }

  .contact-sec02 .wrap .p01 {
    line-height: 1.8;
  }

  .contact-sec02 .wrap .form-wrap {
    margin-top: 4rem;
  }

  .contact-sec02 .wrap .form-wrap form {
    margin-top: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//   wpcf7-form
--------------------------------------------------------------------------- */
/* Contact Form 7 互換: ラベル左・入力右（.wpcf7-form-control-wrap は CF7 標準） */
.form-wrap .last {
  text-align: center !important;
  margin-top: 6rem;
}

.wpcf7-form {
  margin: 0;
}

.wpcf7-form .wpcf7-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 0;
  padding: 2.4rem 0;
  border-top: 1px solid #CBD0D1;
}

.wpcf7-form .wpcf7-contact-row:first-of-type {
  border-top: none;
}

.wpcf7-form .wpcf7-contact-label,
.wpcf7-form .wpcf7-contact-row > .wpcf7-contact-label {
  flex: 0 0 24rem;
  max-width: 100%;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.7rem;
}

.wpcf7-form .wpcf7-contact-row--radio .wpcf7-contact-label {
  padding-top: 1.7rem;
}

.wpcf7-form .wpcf7-contact-required {
  flex-shrink: 0;
  width: 4.4rem;
  height: 2.2rem;
  background: #0F5896;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.wpcf7-form .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
}

.wpcf7-form .wpcf7-contact-field-postal {
  flex: 0 1 22rem;
  max-width: 100%;
}

.wpcf7-form .wpcf7-form-control.wpcf7-text,
.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  background: #F3F3F3;
  padding: 1.5rem 2rem;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #CBD0D1;
}

.wpcf7-form .wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form .wpcf7-form-control.wpcf7-textarea:focus {
  outline: none;
  border-color: #0F5896;
  box-shadow: 0 0 0 1px rgba(15, 88, 150, 0.2);
}

.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  height: 28rem;
  resize: none;
}

/* CF7 バリデーション */
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: #c00;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #c00 !important;
}

/* ラジオ（input は視覚的に隠し、.wpcf7-list-item-label で装飾） */
.wpcf7-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.4rem;
  padding: 1.7rem 0;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.2rem;
  padding-left: 2.8rem;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #CBD0D1;
  border-radius: 50%;
  background: #F3F3F3;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-form .wpcf7-radio input[type="radio"]:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0F5896;
}

.wpcf7-form .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
  border-color: #0F5896;
  box-shadow: inset 0 0 0 0.45rem #0F5896;
}

/* 同意チェック（wpcf7-acceptance） */
.wpcf7-form .wpcf7-contact-row--accept {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.wpcf7-form .wpcf7-contact-row--accept .wpcf7-form-control-wrap {
  flex: 0 1 auto;
}

.wpcf7-form .wpcf7-contact-row--accept .wpcf7-contact-required {
  margin-top: 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  margin: 0;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 3rem;
  line-height: 1.6;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 1px solid #CBD0D1;
  border-radius: 50%;
  background: #F3F3F3;
  border-radius: 0.35rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.55rem;
  height: 1rem;
  margin-top: -0.15rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"]:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0F5896;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: #0F5896;
  border-color: #0F5896;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-form .wpcf7-contact-privacy-link {
  color: #049FFF;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.wpcf7-form .wpcf7-contact-privacy-link:hover {
  opacity: .7;
}

/* 送信・リセット */
.wpcf7-form .wpcf7-contact-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.6rem 2rem;
  margin: 0;
  padding: 2rem 0 0;
}

.wpcf7-form .wpcf7-contact-actions p {
  margin: 0;
}

.wpcf7-form .wpcf7-contact-submit-btn {
  appearance: none;
  cursor: pointer;
  min-width: 22rem;
  max-width: 100%;
  padding: 2rem 3rem;
  border: none;
  background: #0F5896;
  border: solid 1px #0F5896;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  position: relative;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.wpcf7-form .wpcf7-contact-submit-btn:hover {
  background: #0c4a7d;
}

.wpcf7-form .wpcf7-contact-submit-btn::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.28rem;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.wpcf7-form .wpcf7-contact-reset-btn {
  appearance: none;
  cursor: pointer;
  min-width: 17rem;
  padding: 2rem 3rem;
  border: 1px solid #CBD0D1;
  background: #fff;
  color: #666;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.wpcf7-form .wpcf7-contact-reset-btn:hover {
  border-color: #0F5896;
  color: #0F5896;
}

.wpcf7-form .ajax-loader,
.wpcf7-form .wpcf7-spinner {
  vertical-align: middle;
  margin-left: 0.5rem;
}

@media screen and (max-width: 768px) {
  .form-wrap .last {
    text-align: left !important;
    margin-top: 4rem;
  }

  .wpcf7-form .wpcf7-contact-row {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.6rem 0;
  }

  .wpcf7-form .wpcf7-contact-label,
  .wpcf7-form .wpcf7-contact-row > .wpcf7-contact-label {
    flex: none;
    width: 100%;
    padding-top: 0;
  }

  .wpcf7-form .wpcf7-contact-field-postal {
    flex: 1 1 auto;
    width: 100%;
  }

  .wpcf7-form .wpcf7-radio {
    padding: .5rem 0;
  }

  /* 同意行はチェック＋「必須」を横並びのまま、全体をセンター寄せ（PCと同様） */
  .wpcf7-form .wpcf7-contact-row--accept {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .wpcf7-form .wpcf7-contact-row--accept .wpcf7-acceptance-wrap {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 5rem);
  }

  .wpcf7-form .wpcf7-contact-row--accept .wpcf7-contact-required {
    flex-shrink: 0;
  }

  .wpcf7-form .wpcf7-contact-submit-btn {
    padding: 2rem;
    min-width: auto;
    width: 20rem;
    font-size: 1.6rem;
  }

  .wpcf7-form .wpcf7-contact-reset-btn {
    padding: 2rem;
    min-width: auto;
    flex-grow: 2;
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-headA
--------------------------------------------------------------------------- */
.recruit-headA {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.recruit-headA.right {
  align-items: flex-end;
}

.recruit-headA .eng {
  font-family: Orbitron;
  font-size: 8rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.54;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
}

.recruit-headA .ttl01 {
  font-size: 3.2rem;
  font-weight: 500;
}

.recruit-headA .ttl02 {
  padding: .5rem 2rem .7rem;
  font-weight: 500;
  color: #fff;
  background: #2FCFDE;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .recruit-headA .eng {
    font-size: 3.9rem;
  }

  .recruit-headA .ttl01 {
    font-size: 2.4rem;
  }

  .recruit-headA .ttl02 {
    margin-top: .8rem;
    padding: .3rem 1rem .5rem;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-btnA
--------------------------------------------------------------------------- */
.recruit-btnA {
  display: flex;
  position: relative;
}

.recruit-btnA::before {
  content: "";
  width: 200vw;
  height: 1px;
  background: #004EA2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(100%, -50%);
  animation: recruitBtnLinePass 4.8s linear infinite;
}

.recruit-btnA.short::before {
  display: none;
}

@keyframes recruitBtnLinePass {
  0% {
    transform: translate(100%, -50%);
  }

  100% {
    transform: translate(-130%, -50%);
  }
}

.recruit-btnA .btn {
  position: relative;
  border-radius: 100vh;
  position: relative;
  height: 7.6rem;
  min-width: 30rem;
  box-shadow: 0 1rem .8rem 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-btnA .btn:hover {
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.25);
  /* padding-right: 0; */
}

.recruit-btnA .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(158deg, #FFF083 13.48%, #ED8733 100%);
  transition: transform 0.3s ease;
  transform: translateX(-50%);
}

.recruit-btnA .btn:hover::before {
  transform: translateX(0);
}

.recruit-btnA .btn span {
  font-size: 1.8rem;
  position: relative;
}

.recruit-btnA .btn::after {
  background-image: url(../img/common/btnA-arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2.91rem;
  height: .6rem;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
  animation: btnAArrowNudge 1.8s ease-in-out infinite;
}

@media screen and (min-width: 768.1px) {
  .recruit-btnA.short .btn {
    min-width: 19rem;
    padding-bottom: 2rem;
  }

  .recruit-btnA.short .btn::after {
    right: 0;
    left: 0;
    top: auto;
    bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .recruit-btnA {
    justify-content: center;
  }

  .recruit-btnA .btn {
    padding-right: 0;
    height: 6.8rem;
    min-width: 32.5rem;
    box-shadow: 0 .5rem .4rem 0 rgba(0, 0, 0, 0.25);
  }

  .recruit-btnA .btn:hover {
    box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, 0.25);
  }

  .recruit-btnA .btn span {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-btnA::before {
    animation: none;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-fv
--------------------------------------------------------------------------- */
.recruit-fv {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}

.recruit-fv .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.recruit-fv .wrap .ttl {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #004EA2;
  font-size: 2rem;
  font-family: "Zen Kurenaido";
  letter-spacing: calc(1em * (2.24 / 28));
  display: flex;
  justify-content: flex-end;
  padding-left: calc((100vw - 100rem) / 2);
  flex-direction: column;
  line-height: 1.8;
}

.recruit-fv .wrap .ttl span {
  padding-top: 5rem;
}

.recruit-fv .wrap .ttl em {
  font-size: 3.65rem;
  padding-top: 12rem;
}

.recruit-fv .wrap .ttl em strong {
  color: #E8374A;
}

.recruit-fv .wrap .img {
  width: calc(77.2rem + ((100vw - 100rem) / 2));
  position: relative;
}

.recruit-fv .wrap .img .bg {
  border-radius: 6rem 0 0 0;
  background: linear-gradient(180deg, #E4F4FF 54.81%, #FFF 100%);
  position: absolute;
  bottom: 0;
  width: calc(100% + 7.4rem);
  height: calc(100% + 1rem);
  right: 0;
}

.recruit-fv .wrap .img img {
  position: relative;
  bottom: -1.6rem;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .recruit-fv {
    margin-top: 0;
  }

  .recruit-fv .wrap {
    flex-direction: column;
  }

  .recruit-fv .wrap .ttl {
    writing-mode: inherit;
    text-align: center;
    font-size: 1.85rem;
    padding: 2rem 0 1rem;
  }

  .recruit-fv .wrap .ttl span {
    padding-top: 0;
  }

  .recruit-fv .wrap .ttl em {
    font-size: 2.4rem;
    padding-top: 0;
    margin-top: -.5rem;
  }

  .recruit-fv .wrap .img {
    width: 51.4rem;
    left: -6rem;
  }

  .recruit-fv .wrap .img .bg {
    display: none;
  }

  .recruit-fv .wrap .img img {
    bottom: -1rem;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-page-fv
--------------------------------------------------------------------------- */
.recruit-page-fv {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}

.recruit-page-fv .wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.recruit-page-fv .wrap .recruit-headA {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc((100vw - 108rem) / 2);
  justify-content: center;
  z-index: 3;
}

.recruit-page-fv .wrap .img {
  width: calc(61rem + ((100vw - 100rem) / 2));
  position: relative;
  margin-left: auto;
}

.recruit-page-fv .wrap .img img {
  border-radius: 6rem 0 0 0;
}

.recruit-page-fv .wrap .img .bg {
  border-radius: 6rem 0 0 0;
  background: linear-gradient(180deg, #E4F4FF 54.81%, #FFF 100%);
  position: absolute;
  bottom: 0;
  width: calc(100% + 7.4rem);
  height: calc(100% + 1rem);
  right: 0;
  z-index: -1;
}

.recruit-page-fv .wrap .img img {
  position: relative;
  bottom: -1.6rem;
  z-index: 2;
}

.recruit-page-fv .wrap .img .deco {
  position: absolute;
  width: 24.5rem;
  left: -19rem;
  bottom: 0;
  z-index: 1;
}

.recruit-page-fv .wrap .badge {
  position: absolute;
  width: 22rem;
  right: calc((100vw - 108rem) / 2);
  right: 5%;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .recruit-page-fv {
    margin-top: 0;
  }

  .recruit-page-fv .wrap {
    flex-direction: column;
  }

  .recruit-page-fv .wrap .recruit-headA {
    position: relative;
    left: 0;
    padding: 2rem 2rem;
    width: 100%;
  }

  .recruit-page-fv .wrap .img {
    width: 51.4rem;
    height: 27rem;
    left: -2rem;
  }

  .recruit-page-fv .wrap .img .bg {
    display: none;
  }

  .recruit-page-fv .wrap .img img {
    bottom: -1rem;
    border-radius: 0;
  }

  .recruit-page-fv .wrap .img .deco {
    display: none;
  }

  .recruit-page-fv .wrap .badge {
    width: 12rem;
    right: 1rem;
    bottom: 2rem;
    top: auto;
    margin: 0;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-sec00
--------------------------------------------------------------------------- */
.recruit-sec00 {
  position: relative;
  z-index: 2;
  background: linear-gradient(51deg, rgba(174, 255, 186, .48) 0.48%, rgba(140, 207, 255, .48) 82.34%);
}

.recruit-sec00 .lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* -45° の線はそのまま。transform は左→右で rotate 後の translateX がローカル X＝線の延長上 */
.recruit-sec00 .lines .line {
  position: absolute;
  width: 100%;
  background: #fff;
  height: 3px;
  transform-origin: center center;
  bottom: 0;
  top: 0;
  margin: auto;
  animation: recruit-sec00-lines-rain 4.5s linear infinite;
  transform: rotate(-45deg)
}

.recruit-sec00 .lines .line01 {
  left: -50%;
  animation-delay: 0s;
}

.recruit-sec00 .lines .line02 {
  left: -45%;
  animation-delay: 0.55s;
}

.recruit-sec00 .lines .line03 {
  left: -27%;
  animation-delay: 1.1
}

.recruit-sec00 .lines .line04 {
  left: -14%;
  animation-delay: 1.65s;
}

.recruit-sec00 .lines .line05 {
  left: -10%;
  animation-delay: 2.2s;
}

@keyframes recruit-sec00-lines-rain {
  0% {
    transform: rotate(-45deg) translateX(-140%);
  }

  100% {
    transform: rotate(-45deg) translateX(140%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-sec00 .lines .line {
    animation: none !important;
    transform: rotate(-45deg) translateX(0);
  }
}

.recruit-sec00 .wrap {
  padding: 1rem 0 24rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.recruit-sec00 .wrap .imgs .img {
  position: absolute;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.25));
}

/* z-index が小さいスロットから順にフェードイン（data-recruit-imgs-fade） */
.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img {
  opacity: 0;
  animation: recruit-sec00-img-fade-in 0.55s ease forwards;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-7 {
  animation-delay: 0s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-8 {
  animation-delay: 0.12s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-1 {
  animation-delay: 0.24s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-2 {
  animation-delay: 0.36s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-3 {
  animation-delay: 0.48s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-4 {
  animation-delay: 0.6s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-5 {
  animation-delay: 0.72s;
}

.recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img.rs00-slot-6 {
  animation-delay: 0.84s;
}

@keyframes recruit-sec00-img-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-sec00 .wrap .imgs[data-recruit-imgs-fade] .img {
    animation: none !important;
    opacity: 1;
  }
}

/* ランダムと同時指定した場合はランダム優先（フェード無効） */
.recruit-sec00 .wrap .imgs[data-recruit-imgs-random="1"] .img {
  opacity: 1 !important;
  animation: none !important;
}

/* JS が .is-rs00-imgs-transition を付与後、座標の入れ替わりをアニメーション（data-recruit-imgs-random="1" のみ） */
.recruit-sec00 .wrap .imgs[data-recruit-imgs-random="1"].is-rs00-imgs-transition .img {
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    top 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .recruit-sec00 .wrap .imgs[data-recruit-imgs-random="1"].is-rs00-imgs-transition .img {
    transition: none;
  }
}

/* recruit-sec00 画像スロット（PC）— JS は rs00-slot-1 … 8 の付け替えのみ */
.recruit-sec00 .wrap .imgs .img.rs00-slot-1 {
  width: 17rem;
  left: -12rem;
  top: 3rem;
  z-index: 2;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-2 {
  width: 13rem;
  left: 2rem;
  top: 8rem;
  z-index: 3;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-3 {
  width: 15rem;
  left: 24rem;
  top: 19rem;
  z-index: 4;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-4 {
  width: 17rem;
  left: 12rem;
  top: 26.4rem;
  z-index: 5;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-5 {
  width: 13rem;
  left: 25rem;
  top: 40.4rem;
  z-index: 6;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-6 {
  width: 13rem;
  left: 37rem;
  top: 46rem;
  z-index: 7;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-7 {
  width: 18.8rem;
  left: -17rem;
  top: 22rem;
  z-index: 1;
}

.recruit-sec00 .wrap .imgs .img.rs00-slot-8 {
  width: 16.3rem;
  left: 3rem;
  top: 40rem;
  z-index: 1;
}

.recruit-sec00 .wrap .head .ttl {
  display: flex;
  gap: 2rem;
  font-family: Orbitron;
  font-weight: 600;
  white-space: nowrap;
}

.recruit-sec00 .wrap .head .eng01 {
  position: relative;
  border-radius: 1rem;
  padding: 4rem 2rem 4rem 8rem;
  width: 32.6rem;
  top: -3rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.recruit-sec00 .wrap .head .eng01::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1rem;
  background: #fff;
  pointer-events: none;
  width: 32.6rem;
  transform: skewY(-15deg);
  filter: drop-shadow(0 .4rem .4rem rgba(0, 0, 0, 0.25));
}

.recruit-sec00 .wrap .head .eng01 strong span {
  position: relative;
  z-index: 2;
  opacity: 0.86;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.6rem;
}

.recruit-sec00 .wrap .head .eng02 {
  position: relative;
  top: -1.5rem;
  z-index: 10;
}

.recruit-sec00 .wrap .head .eng02 span {
  opacity: 0.86;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  font-size: 11.4rem;
}

.recruit-sec00 .wrap .txts {
  font-size: 1.8rem;
  line-height: 2.25;
}

@media screen and (max-width:768px) {
  .recruit-sec00 .wrap {
    padding: 1rem 0 12rem;
    align-items: center;
  }

  .recruit-sec00 .lines .line {
    width: 150%;
    height: 3px;
  }

  .recruit-sec00 .lines .line01 {
    left: -105%;
    animation-delay: 0s;
  }

  .recruit-sec00 .lines .line02 {
    left: -85%;
    animation-delay: 0.55s;
  }

  .recruit-sec00 .lines .line03 {
    left: -40%;
    animation-delay: 1.1
  }

  .recruit-sec00 .lines .line04 {
    left: 15%;
    animation-delay: 1.65s;
  }

  .recruit-sec00 .lines .line05 {
    left: 20%;
    animation-delay: 2.2s;
  }

  /* recruit-sec00 画像スロット（SP）— 座標はデザインに合わせて調整（JS は付け替えのみ） */
  .recruit-sec00 .wrap .imgs .img.rs00-slot-1 {
    width: 9.6rem;
    left: 1.7rem;
    top: 5.2rem;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-2 {
    width: 7.4rem;
    left: 10.5rem;
    top: 7.5rem;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-3 {
    width: 8.5rem;
    left: 20rem;
    top: 14rem;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-4 {
    width: 9.7rem;
    left: 13.35rem;
    top: 17.5rem;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-5 {
    width: 7.4rem;
    left: 20.5rem;
    top: 26rem;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-6 {
    width: 7.5rem;
    left: 27rem;
    top: 28.5rem;
    z-index: 7;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-7 {
    width: 10.6rem;
    left: -3rem;
    top: 16.4rem;
  }

  .recruit-sec00 .wrap .imgs .img.rs00-slot-8 {
    width: 9.3rem;
    left: 9rem;
    top: 25.5rem;
  }

  .recruit-sec00 .wrap .head .ttl {
    gap: 1rem;
    margin-left: -3rem;
    width: 100%;
  }

  .recruit-sec00 .wrap .head .eng01 {
    border-radius: .6rem;
    padding: 2rem 2rem 2rem 2rem;
    width: 14.7rem;
    top: -3rem;
  }

  .recruit-sec00 .wrap .head .eng01::before {
    width: 14.7rem;
  }

  .recruit-sec00 .wrap .head .eng01 strong span {
    font-size: 2.5rem;
  }

  .recruit-sec00 .wrap .head .eng02 {
    position: relative;
    top: -1rem;
  }

  .recruit-sec00 .wrap .head .eng02 span {
    font-size: 4rem;
  }

  .recruit-sec00 .wrap .txts {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
    margin-top: 30rem;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-sec01
--------------------------------------------------------------------------- */
.recruit-sec01 {
  position: relative;
  margin-top: -9rem;
  z-index: 3;
}

.recruit-sec01 .wrap .raw {
  display: flex;
}

.recruit-sec01 .wrap .raw .right {
  padding: 18rem calc((100vw - 100rem) / 2) 8rem 17rem;
  margin-left: auto;
  border-radius: 6rem 0 0 0;
  background: #FFF;
}

.recruit-sec01 .wrap .raw .right .p01 {
  font-size: 1.8rem;
  line-height: 2.25;
  margin-top: 8rem;
  margin-bottom: 9rem;
}

.recruit-sec01 .wrap .raw .left {
  position: absolute;
  padding: 12rem 7.6rem 20rem calc((100vw - 100rem) / 2);
  border-radius: 0 6rem 0 0;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  top: 9rem;
  left: 0;
  height: calc(100% - 9rem);
}

.recruit-sec01 .wrap .raw .left::before {
  content: "";
  position: absolute;
  border-radius: 0 6.4rem 0 0;
  background: linear-gradient(180deg, #E4F4FF 54.81%, #FFF 100%);
  mix-blend-mode: multiply;
  width: calc(100% + 1.6rem);
  height: calc(100% + 1.6rem);
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: .5;
  pointer-events: none;
}

.recruit-sec01 .wrap .raw .left .jobs {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
  width: 57rem;
  position: relative;
  z-index: 1;
}

.recruit-sec01 .wrap .raw .left .jobs .job {
  color: #fff;
  border: solid 2px;
  border-radius: 100%;
  width: calc((100% - 6rem) / 3);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.recruit-sec01 .wrap .raw .left .jobs .job:hover {
  transform: scale(1.1);
}

.recruit-sec01 .wrap .raw .left .jobs .job .pict {
  height: 9.8rem;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.recruit-sec01 .wrap .raw .left .jobs .job01 .pict img {
  width: 9rem;
}

.recruit-sec01 .wrap .raw .left .jobs .job02 .pict img {
  width: 8.1rem;
}

.recruit-sec01 .wrap .raw .left .jobs .job03 .pict img {
  width: 7.2rem;
}

.recruit-sec01 .wrap .raw .left .jobs .job04 .pict img {
  width: 7.2rem;
}

.recruit-sec01 .wrap .raw .left .jobs .job05 .pict img {
  width: 8.2rem;
}

.recruit-sec01 .wrap .raw .left .jobs .job06 .pict img {
  width: 6.3rem;
}

.recruit-sec01 .wrap .raw .left .jobs .job span {
  height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width:768px) {
  .recruit-sec01 {
    margin-top: 0;
    background: var(--1, linear-gradient(90deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  }

  .recruit-sec01 .wrap .raw {
    flex-direction: column;
  }

  .recruit-sec01 .wrap .raw .right {
    padding: 4rem 2rem 6rem;
    margin-left: auto;
    border-radius: 2rem 0 0 2rem;
    background: #FFF;
    width: calc(100% - 2rem);
    margin-top: -6rem;
  }

  .recruit-sec01 .wrap .raw .right .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .recruit-sec01 .wrap .raw .right .recruit-btnA .btn {
    min-width: 100%;
  }

  .recruit-sec01 .wrap .raw .left {
    position: relative;
    padding: 4rem 2rem 6rem;
    border-radius: 0 2rem 0 0;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background: var(--1, linear-gradient(90deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  }

  .recruit-sec01 .wrap .raw .left::before {
    display: none;
  }

  .recruit-sec01 .wrap .raw .left .jobs {
    gap: 2rem;
    width: 100%;
  }

  .recruit-sec01 .wrap .raw .left .jobs .job {
    width: calc((100% - 2rem) / 2);
    aspect-ratio: 1/1;
  }

  .recruit-sec01 .wrap .raw .left .jobs .job .pict {
    height: 8rem;
    bottom: -.5rem;
  }

  .recruit-sec01 .wrap .raw .left .jobs .job01 .pict img {
    width: calc(9rem * .85);
  }

  .recruit-sec01 .wrap .raw .left .jobs .job02 .pict img {
    width: calc(8.1rem * .85);
  }

  .recruit-sec01 .wrap .raw .left .jobs .job03 .pict img {
    width: calc(7.2rem * .85);
  }

  .recruit-sec01 .wrap .raw .left .jobs .job04 .pict img {
    width: calc(7.2rem * .85);
  }

  .recruit-sec01 .wrap .raw .left .jobs .job05 .pict img {
    width: calc(8.2rem * .85);
  }

  .recruit-sec01 .wrap .raw .left .jobs .job06 .pict img {
    width: calc(6.3rem * .85);
  }

  .recruit-sec01 .wrap .raw .left .jobs .job span {
    height: 5rem;
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-sec02
--------------------------------------------------------------------------- */
.recruit-sec02 {
  position: relative;
  margin: 16rem 0 13rem;
}

.recruit-sec02 .wrap {
  position: relative;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-sec02 .wrap .deco {
  max-width: 110rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(180deg, #E4F4FF 54.65%, rgba(228, 244, 255, 0) 98.33%);
  height: 15.5rem;
  border-radius: 6rem 6rem 0 0;
  width: 100%;
  z-index: -1;
}

.recruit-sec02 .wrap .deco::before {
  content: "";
  background: #fff;
  border-radius: 5rem 5rem 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 3rem);
  height: calc(100% - 1.5rem);
}

.recruit-sec02 .wrap .deco01 {
  top: 4rem;
}

.recruit-sec02 .wrap .deco02 {
  bottom: 0;
  transform: rotate(180deg);
}

.recruit-sec02 .wrap .cards-slider {
  position: relative;
  width: 100%;
  margin-top: 9rem;
  touch-action: pan-y;
}

.recruit-sec02 .wrap .cards {
  position: relative;
  height: 58rem;
  overflow: visible;
}

.recruit-sec02 .wrap .cards .card {
  --rs02-x: 0rem;
  --rs02-y: 0rem;
  --rs02-scale: 1;
  --rs02-opacity: 1;
  --rs02-z: 3;
  width: 18.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* opacity: var(--rs02-opacity); */
  z-index: var(--rs02-z);
  transform: translate3d(calc(-50% + var(--rs02-x)), calc(-50% + var(--rs02-y)), 0) scale(var(--rs02-scale));
  transition: transform 0.55s ease, opacity 0.55s ease, width 0.55s ease;
}

.recruit-sec02 .wrap .cards .card.active {
  width: 34rem;
}

.recruit-sec02 .wrap .cards .card.is-rs02-hidden {
  --rs02-opacity: 0;
  --rs02-scale: 0.86;
  --rs02-z: 1;
  pointer-events: none;
}

.recruit-sec02 .wrap .cards .card.is-rs02-hidden.is-rs02-hidden-left {
  --rs02-x: -58rem;
}

.recruit-sec02 .wrap .cards .card.is-rs02-hidden.is-rs02-hidden-right {
  --rs02-x: 58rem;
}

.recruit-sec02 .wrap .cards .card.is-rs02-pos-m2,
.recruit-sec02 .wrap .cards .card.is-rs02-pos-p2 {
  --rs02-scale: 0.88;
  --rs02-opacity: 0.66;
  --rs02-z: 2;
}

.recruit-sec02 .wrap .cards .card.is-rs02-pos-m2 {
  --rs02-x: -49.6rem;
}

.recruit-sec02 .wrap .cards .card.is-rs02-pos-m1 {
  --rs02-x: -29.25rem;
  --rs02-scale: 0.92;
  --rs02-opacity: 0.86;
  --rs02-z: 4;
}

.recruit-sec02 .wrap .cards .card.is-rs02-pos-0 {
  --rs02-x: 0rem;
  --rs02-y: -4.5rem;
  --rs02-scale: 1;
  --rs02-opacity: 1;
  --rs02-z: 6;
}

.recruit-sec02 .wrap .cards .card.is-rs02-pos-p1 {
  --rs02-x: 29.25rem;
  --rs02-scale: 0.92;
  --rs02-opacity: 0.86;
  --rs02-z: 4;
}

.recruit-sec02 .wrap .cards .card.is-rs02-pos-p2 {
  --rs02-x: 49.6rem;
}

.recruit-sec02 .wrap .cards-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #2FBAFB;
  border: none;
  z-index: 8;
  bottom: -16rem;
  left: 0;
  right: 0;
  margin: auto;
}

.recruit-sec02 .wrap .cards-nav.prev,
.recruit-sec02 .wrap .cards-nav.next {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 100%;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit-sec02 .wrap .cards-nav.prev {
  left: -39rem;
  right: 0;
  padding-right: .4rem;
}

.recruit-sec02 .wrap .cards-nav.next {
  right: -39rem;
  left: 0;
  padding-left: .4rem;
}

.recruit-sec02 .wrap .cards-nav span {
  background-image: url(../img/common/arrow03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.2rem;
  height: 1.8rem;
  margin: auto;
  bottom: 3rem;
}

.recruit-sec02 .wrap .cards-nav.prev span {
  transform: rotate(180deg);
}

.pagination .page-numbers.dots {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 2rem;
  opacity: .4;
}

.recruit-sec02 .wrap .cards .card .comment {
  background-image: url(../img/recruit-top/hukidashi.png);
  width: 18.4rem;
  aspect-ratio: 184 / 96;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  color: #fff;
  color: #FFF;
  text-align: center;
  font-family: "Zen Kurenaido";
  font-size: 1.35rem;
  line-height: 1.5;
  text-align: center;
  padding-top: 2.5rem;
  order: -1;
  margin-bottom: 1.5rem;
}

.recruit-sec02 .wrap .cards .card.active .comment {
  width: 34rem;
  font-size: 2.4rem;
  padding-top: 5rem;
  margin-bottom: 2rem;
}

.recruit-sec02 .wrap .cards .card .link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}

.recruit-sec02 .wrap .cards .card .img {
  border-radius: 1rem;
  aspect-ratio: 340 / 293;
  overflow: hidden;
}

.recruit-sec02 .wrap .cards .card .img img {
  transition: .3s;
}

.recruit-sec02 .wrap .cards .card .link:hover .img img {
  transform: scale(1.1);
}

.recruit-sec02 .wrap .cards .card .dl {
  order: 2;
  text-align: center;
  margin-top: 1rem;
  white-space: nowrap;
}

.recruit-sec02 .wrap .cards .card .dl .dt {
  font-size: 1.6rem;
  font-weight: 500;
}

.recruit-sec02 .wrap .cards .card .dl .dd {
  font-size: 1.4rem;
}

.recruit-sec02 .wrap .cards .card.active .dl .dt {
  font-size: 1.8rem;
  font-weight: 500;
}

.recruit-sec02 .wrap .cards .card.active .dl .dd {
  font-size: 1.6rem;
}

@media screen and (max-width:768px) {
  .recruit-sec02 {
    margin: 9rem 0;
  }

  .recruit-sec02 .recruit-btnA .btn {
    min-width: 30rem !important;
  }

  .recruit-sec02 .wrap .deco {
    height: 9rem;
    border-radius: 2rem 2rem 0 0;
    width: calc(100% - 2rem);
  }

  .recruit-sec02 .wrap .deco::before {
    content: "";
    background: #fff;
    border-radius: 1.5rem 1.5rem 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 2rem);
    height: calc(100% - 1rem);
  }

  .recruit-sec02 .wrap .deco01 {
    top: 2rem;
  }

  .recruit-sec02 .wrap {
    padding-bottom: 6rem;
  }

  .recruit-sec02 .wrap .cards-slider {
    margin-top: 4rem;
  }

  .recruit-sec02 .wrap .cards {
    height: 42rem;
  }

  .recruit-sec02 .wrap .cards .card {
    transition: transform 0.45s ease, opacity 0.45s ease, width 0.45s ease;
  }

  .recruit-sec02 .wrap .cards .card.active {
    width: 23rem;
  }

  .recruit-sec02 .wrap .cards .card:not(.active) .comment,
  .recruit-sec02 .wrap .cards .card:not(.active) .dl {
    display: none;
  }

  .recruit-sec02 .wrap .cards .card .link {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
  }

  /* 画像を基準に上下中央を揃える */
  .recruit-sec02 .wrap .cards .card .img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0;
  }

  .recruit-sec02 .wrap .cards .card .img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .recruit-sec02 .wrap .cards .card.active .comment {
    position: absolute;
    left: 50%;
    bottom: calc(50% + 10.5rem);
    transform: translateX(-50%);
    margin-bottom: 0;
  }

  .recruit-sec02 .wrap .cards .card.active .dl {
    position: absolute;
    left: 50%;
    top: calc(50% + 11.5rem);
    transform: translateX(-50%);
    margin-top: 0;
  }

  .recruit-sec02 .wrap .cards .card .comment {
    width: 13.5rem;
    font-size: 1.05rem;
    padding-top: 1.9rem;
    margin-bottom: 1.1rem;
  }

  .recruit-sec02 .wrap .cards .card.active .comment {
    width: 23rem;
    font-size: 1.6rem;
    padding-top: 3.2rem;
    margin-bottom: 1.3rem;
  }

  .recruit-sec02 .wrap .cards .card .dl .dt {
    font-size: 1.2rem;
  }

  .recruit-sec02 .wrap .cards .card .dl .dd {
    font-size: 1.1rem;
  }

  .recruit-sec02 .wrap .cards .card.active .dl .dt {
    font-size: 1.4rem;
  }

  .recruit-sec02 .wrap .cards .card.active .dl .dd {
    font-size: 1.2rem;
  }

  .recruit-sec02 .wrap .cards .card.is-rs02-pos-m2,
  .recruit-sec02 .wrap .cards .card.is-rs02-pos-p2 {
    --rs02-scale: 0.83;
    --rs02-opacity: 0.35;
  }

  .recruit-sec02 .wrap .cards .card.is-rs02-pos-m2 {
    --rs02-x: -39.7rem;
  }

  .recruit-sec02 .wrap .cards .card.is-rs02-pos-m1 {
    --rs02-x: -21.8rem;
    --rs02-scale: 0.9;
    --rs02-opacity: 0.7;
  }

  .recruit-sec02 .wrap .cards .card.is-rs02-pos-0 {
    --rs02-y: 0rem;
  }

  .recruit-sec02 .wrap .cards .card.is-rs02-pos-p1 {
    --rs02-x: 21.8rem;
    --rs02-scale: 0.9;
    --rs02-opacity: 0.7;
  }

  .recruit-sec02 .wrap .cards .card.is-rs02-pos-p2 {
    --rs02-x: 39.7rem;
  }

  .recruit-sec02 .wrap .cards-nav {
    bottom: -12rem;
  }

  .recruit-sec02 .wrap .cards-nav.prev {
    left: 2rem;
    right: auto;
  }

  .recruit-sec02 .wrap .cards-nav.next {
    right: 1rem;
    left: auto;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-sec03
--------------------------------------------------------------------------- */
.recruit-sec03 {
  position: relative;
  margin: 16rem 0 25rem;
}

.recruit-sec03 .wrap .deco {
  width: 51.5rem;
  position: absolute;
  top: 0;
}

.recruit-sec03 .wrap .deco .img {
  overflow: hidden;
  aspect-ratio: 515/605;
  position: relative;
}

.recruit-sec03 .wrap .deco span {
  background: linear-gradient(180deg, #E4F4FF 54.81%, #FFF 100%);
  mix-blend-mode: multiply;
  width: calc(100% + 5rem);
  height: 100%;
  position: absolute;
  top: -5rem;
  content: "";
  display: block;
}

.recruit-sec03 .wrap .head {
  height: 60.5rem;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: flex-end;
}

.recruit-sec03 .wrap .head::before {
  background-image: url(../img/recruit-top/03-lends.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 34.4rem;
  height: 39.8rem;
  position: absolute;
  top: 0;
  left: 29rem;
  top: 79rem;
  animation: btnAArrowNudge2 1.8s ease-in-out infinite;
}

.recruit-sec03 .wrap .head .deco {
  left: -21.7rem;
}

.recruit-sec03 .wrap .head .deco .img {
  border-radius: 0 6rem 0 0;
}

.recruit-sec03 .wrap .head .deco span {
  border-radius: 0 9rem 0 0;
  left: 0;
}

.recruit-sec03 .wrap .box {
  position: relative;
  display: flex;
  margin-top: 4rem;
}

.recruit-sec03 .wrap .box .txts .p01 {
  font-size: 2rem;
  line-height: 2.25;
  margin-bottom: 5rem;
}

.recruit-sec03 .wrap .box .deco {
  right: -21.7rem;
}

.recruit-sec03 .wrap .box .deco .img {
  border-radius: 6rem 0 0 0;
}

.recruit-sec03 .wrap .box .deco span {
  border-radius: 9rem 0 0 0;
  right: 0;
}

@media screen and (max-width:768px) {
  .recruit-sec03 {
    position: relative;
    margin: 6rem 0 0;
  }

  .recruit-sec03 .wrap {
    padding: 0 2rem;
  }

  .recruit-sec03 .wrap .deco {
    width: 100%;
    position: relative;
  }

  .recruit-sec03 .wrap .deco .img {
    aspect-ratio: 1/ 1;
  }

  .recruit-sec03 .wrap .deco span {
    width: calc(100% + 3rem);
    top: -3rem;
  }

  .recruit-sec03 .wrap .head {
    height: auto;
    flex-direction: column;
  }

  .recruit-sec03 .wrap .head::before {
    width: 30rem;
    height: 30rem;
    left: 1rem;
    top: 40rem;
    animation: btnAArrowNudge2 1.8s ease-in-out infinite;
  }

  .recruit-sec03 .wrap .head .deco {
    left: -4rem;
  }

  .recruit-sec03 .wrap .head .deco .img {
    border-radius: 0 2rem 0 0;
  }

  .recruit-sec03 .wrap .head .deco span {
    border-radius: 0 3rem 0 0;
    left: 0;
  }

  .recruit-sec03 .wrap .head .recruit-headA {
    background: linear-gradient(to bottom, #fff 50%, transparent 100%);
    border-radius: 2rem;
    margin-top: -4rem;
    position: relative;
    padding: 2rem 0 0;
    width: calc(100% - 2rem);
  }

  .recruit-sec03 .wrap .head .recruit-headA .eng {
    font-size: 3.4rem;
  }

  .recruit-sec03 .wrap .box {
    flex-direction: column;
    margin-top: 16rem;
  }

  .recruit-sec03 .wrap .box .txts .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4rem;
  }

  .recruit-sec03 .wrap .box .deco {
    margin-top: 6rem;
    right: 2rem;
    width: 100vw;
  }

  .recruit-sec03 .wrap .box .deco .img {
    border-radius: 0;
    aspect-ratio: 1.5/ 1;
  }

  .recruit-sec03 .wrap .box .deco span {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-sec04
--------------------------------------------------------------------------- */
.recruit-sec04 {
  position: relative;
  background: linear-gradient(51deg, rgba(174, 255, 186, .32) 0.48%, rgba(140, 207, 255, .32) 82.34%);
  mix-blend-mode: multiply;
}

.recruit-sec04 .wrap {
  padding: 10rem 0;
}

.recruit-sec04 .wrap .raw {
  display: flex;
  align-items: center;
}

.recruit-sec04 .wrap .raw .left {
  width: 50%
}

.recruit-sec04 .wrap .raw .left .recruit-headA .eng {
  font-size: 4.6rem;
}

.recruit-sec04 .wrap .raw .left .recruit-headA .ttl01 {
  font-size: 1.8rem;
  margin-bottom: 10rem;
}

.recruit-sec04 .wrap .raw .right {
  width: 50%
}

.recruit-sec04 .wrap .raw .right .news-list {
  opacity: 0;
  display: none;
  transition: opacity .3s ease;
}

.recruit-sec04 .wrap .raw .right .news-list.active {
  display: block;
  opacity: 1;
}

.recruit-sec04 .wrap .raw .right .news-list .item {
  padding: 3.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.recruit-sec04 .wrap .raw .right .news-list .item + .item {
  border-top: solid 1px #D8D8D8;
}

.recruit-sec04 .wrap .raw .right .news-list .item .head {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 17rem;
}

.recruit-sec04 .wrap .raw .right .news-list .item .head time {
  width: 10rem;
  font-size: 1.8rem;
}

.recruit-sec04 .wrap .raw .right .news-list .item .head .cat {
  width: 7rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  border: solid 1px #CBCBCB;
  font-size: 1.2rem;
}

.recruit-sec04 .wrap .raw .right .news-list .item .ttl {
  width: calc(100% - 17rem - 1.8rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  transition: all .3s ease;
}

.recruit-sec04 .wrap .raw .right .news-list .item:hover .ttl {
  color: #004EA2;
}

@media screen and (max-width: 768px) {
  .recruit-sec04 .wrap {
    padding: 6rem 2rem 14.6rem;
  }

  .recruit-sec04 .wrap .raw {
    display: block;
  }

  .recruit-sec04 .wrap .raw .left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .recruit-sec04 .wrap .raw .left .recruit-headA .eng {
    font-size: 3.6rem;
  }

  .recruit-sec04 .wrap .raw .left .recruit-headA .ttl01 {
    font-size: 1.6rem;
    margin-bottom: 2rem
  }

  .top-sec05 .wrap .raw .left .news-tab-btns {
    display: flex;
    gap: 1rem;
    margin: 0;
  }

  .top-sec05 .wrap .raw .left .news-tab-btns .tab-btn {
    width: 6rem;
    height: 6rem;
    font-size: 1.2rem;
  }

  .recruit-sec04 .wrap .raw .right {
    width: 100%;
    margin-top: 2.5rem;
  }

  .recruit-sec04 .wrap .raw .right .news-list .item {
    padding: 3rem 0;
    display: block;
    border-top: solid 1px #D8D8D8;
  }

  .recruit-sec04 .wrap .raw .right .news-list .item:last-of-type {
    border-bottom: solid 1px #D8D8D8;
  }

  .recruit-sec04 .wrap .raw .right .news-list .item .head {
    width: 100%;
  }

  .recruit-sec04 .wrap .raw .right .news-list .item .head time {
    width: 9rem;
    font-size: 1.6rem;
  }

  .recruit-sec04 .wrap .raw .right .news-list .item .ttl {
    width: 100%;
    margin-top: 1rem;
  }

  .recruit-sec04 .wrap .raw .left .btnA {
    position: absolute;
    bottom: 4rem;
  }
}

/* ---------------------------------------------------------------------------
//  recruit-page-sec00
--------------------------------------------------------------------------- */
.recruit-page-sec00 {
  position: relative;
  z-index: 2;
  margin-top: -5rem;
}

.recruit-page-sec00::before {
  content: "";
  border-radius: 0 6rem 6rem 0;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  width: calc(100rem + ((100vw - 100rem) / 2) + 12rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.recruit-page-sec00 .wrap {
  padding: 5rem 0;
}

.recruit-page-sec00 .wrap .read {
  text-align: center;
  font-family: "Zen Kurenaido";
  font-size: 2.8rem;
  color: #fff;
  line-height: 2.25;
  letter-spacing: calc(1em * (2.8 / 28));
}

.recruit-page-sec00 .wrap .read em {
  position: relative;
  display: inline-block;
}

.recruit-page-sec00 .wrap .read em img {
  position: absolute;
  width: 100%;
  max-width: inherit;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.recruit-page-sec00 .wrap .read em img.nami {
  height: .9rem;
}

.recruit-page-sec00 .wrap .read em img.giza {
  height: .9rem;
}

.recruit-page-sec00 .wrap .jobs {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
  position: relative;
  z-index: 1;
  margin-top: 5rem;
}

.recruit-page-sec00 .wrap .jobs .job {
  color: #fff;
  border: solid 1px;
  border-radius: 100%;
  width: calc((100% - 17.5rem) / 6);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.recruit-page-sec00 .wrap .jobs .job:hover {
  transform: scale(1.1);
}

.recruit-page-sec00 .wrap .jobs .job .pict {
  height: calc(100% - 6rem);
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  bottom: -1rem;
}

.recruit-page-sec00 .wrap .jobs .job01 .pict img {
  width: calc(9rem * .8);
}

.recruit-page-sec00 .wrap .jobs .job02 .pict img {
  width: calc(8.1rem * .8);
}

.recruit-page-sec00 .wrap .jobs .job03 .pict img {
  width: calc(7.2rem * .8);
}

.recruit-page-sec00 .wrap .jobs .job04 .pict img {
  width: calc(7.2rem * .8);
}

.recruit-page-sec00 .wrap .jobs .job05 .pict img {
  width: calc(8.2rem * .8);
}

.recruit-page-sec00 .wrap .jobs .job06 .pict img {
  width: calc(6.3rem * .8);
}

.recruit-page-sec00 .wrap .jobs .job span {
  height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-align: center;
}

.recruit-page-sec00 .wrap .profiles {
  display: flex;
  gap: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
}

.recruit-page-sec00 .wrap .profiles .ttl {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 2.8rem;
}

.recruit-page-sec00 .wrap .profiles .profile {
  width: 13rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.recruit-page-sec00 .wrap .profiles .profile .thumb {
  position: relative;
}

.recruit-page-sec00 .wrap .profiles .profile .thumb .img {
  transition: .3s ease;
}

.recruit-page-sec00 .wrap .profiles .profile:hover .thumb .img {
  transform: scale(1.1);
}

.recruit-page-sec00 .wrap .profiles .profile .thumb .pict {
  position: absolute;
  width: 5.2rem;
  right: 1rem;
  bottom: 0;
}

.recruit-page-sec00 .wrap .profiles .profile .dl {
  margin-top: 1.5rem;
}

.recruit-page-sec00 .wrap .profiles .profile .dl .dt {
  font-size: 2rem;
  font-weight: 500;
}

.recruit-page-sec00 .wrap .profiles .profile .dl .dd {}

@media screen and (max-width:768px) {
  .recruit-page-sec00 {
    margin-top: 0;
    transform: translate(0, 0) !important;
  }

  .recruit-page-sec00::before {
    border-radius: 0;
    width: 100%;
  }

  .recruit-page-sec00 .wrap {
    padding: 4rem 2rem;
  }

  .recruit-page-sec00 .wrap .read {
    font-size: 2rem;
    color: #fff;
    line-height: 2;
  }

  .recruit-page-sec00 .wrap .read em {
    position: relative;
    display: inline-block;
  }

  .recruit-page-sec00 .wrap .jobs {
    gap: 2rem;
    width: 100%;
  }

  .recruit-page-sec00 .wrap .jobs .job {
    width: calc((100% - 2rem) / 2);
    aspect-ratio: 1/1;
  }

  .recruit-page-sec00 .wrap .jobs .job .pict {
    height: 8rem;
    bottom: -.5rem;
  }

  .recruit-page-sec00 .wrap .jobs .job01 .pict img {
    width: calc(9rem * .85);
  }

  .recruit-page-sec00 .wrap .jobs .job02 .pict img {
    width: calc(8.1rem * .85);
  }

  .recruit-page-sec00 .wrap .jobs .job03 .pict img {
    width: calc(7.2rem * .85);
  }

  .recruit-page-sec00 .wrap .jobs .job04 .pict img {
    width: calc(7.2rem * .85);
  }

  .recruit-page-sec00 .wrap .jobs .job05 .pict img {
    width: calc(8.2rem * .85);
  }

  .recruit-page-sec00 .wrap .jobs .job06 .pict img {
    width: calc(6.3rem * .85);
  }

  .recruit-page-sec00 .wrap .jobs .job span {
    height: 5rem;
    font-size: 1.6rem;
  }

  .recruit-page-sec00 .wrap .profiles {
    margin-top: 3rem;
  }

  .recruit-page-sec00 .wrap .profiles .ttl {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

/* ---------------------------------------------------------------------------
//  jobs-sec01
--------------------------------------------------------------------------- */
.jobs-sec01 {
  position: relative;
}

.jobs-sec01 .wrap {
  padding: 0 0 13rem;
}

.jobs-sec01 .wrap .jobs .job {
  margin-top: 6.6rem;
  position: relative;
  padding: 3.5rem 0 6rem 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 7.5rem 0;
}

.jobs-sec01 .wrap .jobs .job::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + (100vw - 100rem) / 2);
  height: 100%;
  border: solid 1px #060606;
  border-right: none;
  border-radius: 6rem 0 0 6rem;
}

.jobs-sec01 .wrap .jobs .job .left {
  width: calc(100% - 71.5rem);
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: solid 1px #BABABA;
}

.jobs-sec01 .wrap .jobs .job .left .dl {
  margin-top: 2rem;
  text-align: center;
}

.jobs-sec01 .wrap .jobs .job .left .dl .dt {
  margin-bottom: 1rem;
  color: #004EA2;
  font-weight: 500;
}

.jobs-sec01 .wrap .jobs .job .left .dl .dd {
  line-height: 1.25;
  border-radius: 1rem;
  border: 1px solid #BABABA;
  min-width: 16rem;
  padding: 1rem;
}

.jobs-sec01 .wrap .jobs .job .right {
  width: 71.5rem;
  padding-left: 5rem;
}

.jobs-sec01 .wrap .jobs .job .right .ttl01 {
  font-size: 3.2rem;
  color: #004EA2;
  font-weight: 500;
  margin-bottom: 2rem;
}

.jobs-sec01 .wrap .jobs .job .right .p01 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 3rem;
}

.jobs-sec01 .wrap .jobs .job .right .p02 {
  line-height: 2.25;
  text-align: justify;
  margin-bottom: 2rem;
}

.jobs-sec01 .wrap .jobs .job .right .ttl02 {
  color: #004EA2;
  font-weight: 500;
}

.jobs-sec01 .wrap .jobs .job .right .uls {
  margin-bottom: 3rem;
  display: flex;
  gap: 6rem;
}

.jobs-sec01 .wrap .jobs .job .right .uls .ul li {
  margin-top: 1rem;
  display: flex;
  gap: .3rem;
}

.jobs-sec01 .wrap .jobs .job .right .uls .ul li::before {
  content: "●";
  color: #004EA2;
}

.jobs-sec01 .wrap .jobs .job .right .imgs {
  display: flex;
  gap: 3.5rem
}

.jobs-sec01 .wrap .jobs .job .right .imgs .img {
  width: calc((100% - 3.5rem) / 2);
}

.jobs-sec01 .wrap .jobs .job .bottom {
  width: 100%;
  padding: 2rem 2rem 2rem 4rem;
  border-radius: 100vh;
  border: 1px solid #BABABA;
  background: #EFEEE6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.jobs-sec01 .wrap .jobs .job .bottom .p01 {
  line-height: 2;
  text-align: justify;
  width: 51rem;
}

.jobs-sec01 .wrap .jobs .job .bottom::before {
  content: "";
  position: absolute;
  right: 22rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -6.1rem;
}

.jobs-sec01 .wrap .jobs .job01 .bottom::before {
  width: 17.5rem;
  background-image: url(../img/recruit-jobs/job01-staff.png);
  height: 24.7rem;
}

.jobs-sec01 .wrap .jobs .job02 .bottom::before {
  width: 14rem;
  background-image: url(../img/recruit-jobs/job02-staff.png);
  height: 24.7rem;
}

.jobs-sec01 .wrap .jobs .job05 .bottom::before {
  width: 20rem;
  background-image: url(../img/recruit-jobs/job05-staff.png);
  height: 24.7rem;
}

@media screen and (max-width:768px) {
  .jobs-sec01 .wrap {
    padding: 0 0 6rem;
  }

  .jobs-sec01 .wrap .jobs .job {
    margin-top: 8rem;
    padding: 6rem 2rem 4rem 2rem;
    flex-direction: column;
    gap: 0;
    width: calc(100% - 1rem);
    margin-left: auto;
    position: relative;
  }

  .jobs-sec01 .wrap .jobs .job .pict {
    position: absolute;
    top: -5rem;
    width: 10rem;
  }

  .jobs-sec01 .wrap .jobs .job::before {
    width: 100%;
    border-radius: 2rem 0 0 2rem;
  }

  .jobs-sec01 .wrap .jobs .job .left {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }

  .jobs-sec01 .wrap .jobs .job .left .dl {
    margin-top: 3rem;
    width: 100%;
  }

  .jobs-sec01 .wrap .jobs .job .left .dl .dt {
    margin-bottom: 0;
    color: #004EA2;
    font-weight: 500;
    text-align: left;
  }

  .jobs-sec01 .wrap .jobs .job .left .dl .dd {
    width: 100%;
    padding: 2rem;
    margin-top: 2rem;
    writing-mode: vertical-rl;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .jobs-sec01 .wrap .jobs .job .left .dl .dd .arrow {
    transform: rotate(180deg);
  }

  .jobs-sec01 .wrap .jobs .job .right {
    order: -1;
    width: 100%;
    padding-left: 0;
  }

  .jobs-sec01 .wrap .jobs .job .right .ttl01 {
    font-size: 2.4rem;
  }

  .jobs-sec01 .wrap .jobs .job .right .p01 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .jobs-sec01 .wrap .jobs .job .right .p02 {
    line-height: 1.8;
  }

  .jobs-sec01 .wrap .jobs .job .right .uls {
    flex-direction: column;
    gap: 0;
  }

  .jobs-sec01 .wrap .jobs .job .right .imgs {
    display: flex;
    gap: 1rem
  }

  .jobs-sec01 .wrap .jobs .job .right .imgs .img {
    width: calc((100% - 1rem) / 2);
  }

  .jobs-sec01 .wrap .jobs .job .bottom {
    margin-top: 14rem;
    padding: 4rem 2rem 4rem 2rem;
    border-radius: 2rem;
    flex-direction: column;
  }

  .jobs-sec01 .wrap .jobs .job .bottom .p01 {
    line-height: 1.8;
    width: 100%;
  }

  .jobs-sec01 .wrap .jobs .job .bottom::before {
    right: 0;
    left: 0;
    bottom: auto;
    /* top: calc(24.7rem * .8 *  -1); */
    top: -12rem;
    z-index: -1;
    margin: 0 auto;
  }

  .jobs-sec01 .wrap .jobs .job01 .bottom::before {
    /* width: calc(17.5rem * .8);
    height: calc(24.7rem * .8); */
    right: 3rem;
  }

  .jobs-sec01 .wrap .jobs .job .bottom .recruit-btnA {
    width: 100%;
    margin-top: 2rem;
  }

  .jobs-sec01 .wrap .jobs .job .bottom .recruit-btnA .btn {
    min-width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  profile-sec01
--------------------------------------------------------------------------- */
.profile-sec01 {
  position: relative;
}

.profile-sec01 .wrap {
  padding: 0 0 13rem;
}

.profile-sec01 .wrap .profiles .profile {
  margin-top: 11rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.profile-sec01 .wrap .profiles .profile .left {
  width: 50%;
}

.profile-sec01 .wrap .profiles .profile .left .num {
  color: #004EA2;
  font-size: 2rem;
  font-feature-settings: 'palt' on;
  font-family: Orbitron;
  font-weight: 500;
}

.profile-sec01 .wrap .profiles .profile02 .left .num,
.profile-sec01 .wrap .profiles .profile04 .left .num,
.profile-sec01 .wrap .profiles .profile06 .left .num {
  text-align: right;
}

.profile-sec01 .wrap .profiles .profile .left .num em {
  font-size: 10rem;
}

.profile-sec01 .wrap .profiles .profile .left .p01 {
  font-size: 4.2rem;
  margin-top: 1rem;
  font-weight: 500;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.profile-sec01 .wrap .profiles .profile .left .dl {
  margin-top: 2rem;
  line-height: 1.8;
  margin-top: 3rem;
}

.profile-sec01 .wrap .profiles .profile .left .dl .dt {
  font-size: 2rem;
}

.profile-sec01 .wrap .profiles .profile .left .dl .dd em {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: calc(1em * (12/24));
}

.profile-sec01 .wrap .profiles .profile .left .dl .dd small {
  display: block;
  color: #606060;
  border-top: solid 2px #CBD0D1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: 1.6rem;
}

.profile-sec01 .wrap .profiles .profile .right {
  width: 50%;
  position: relative;
  height: 61.6rem;
}

.profile-sec01 .wrap .profiles .profile02 .right,
.profile-sec01 .wrap .profiles .profile04 .right,
.profile-sec01 .wrap .profiles .profile06 .right {
  order: -1;
}

.profile-sec01 .wrap .profiles .profile .right .img {
  width: 56rem;
  aspect-ratio: 56/61.6;
  border-radius: 3rem 0 0 3rem;
  position: absolute;
  top: 0;
  left: 8rem;
}

.profile-sec01 .wrap .profiles .profile02 .right .img,
.profile-sec01 .wrap .profiles .profile04 .right .img,
.profile-sec01 .wrap .profiles .profile06 .right .img {
  border-radius: 0 3rem 3rem 0;
  right: 8rem;
  left: auto;
}

.profile-sec01 .wrap .profiles .profile .contents {
  width: 100%;
}

.profile-sec01 .wrap .profiles .profile .contents .content {
  display: flex;
  gap: 5rem;
  margin-top: 7rem;
}

.profile-sec01 .wrap .profiles .profile .contents .content.reverse {
  flex-direction: row-reverse;
}

.profile-sec01 .wrap .profiles .profile .contents .content .img {
  width: 36rem;
  aspect-ratio: 36/32;
  border-radius: 1rem;
  overflow: hidden;
}

.profile-sec01 .wrap .profiles .profile .contents .content .txts {
  width: calc(100% - 36rem - 5rem);
}

.profile-sec01 .wrap .profiles .profile .contents .content .txts .ttl {
  font-size: 2.4rem;
  color: #004EA2;
  font-weight: 500;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.profile-sec01 .wrap .profiles .profile .contents .content .txts .p01 {
  line-height: 2.25;
  text-align: justify;
}

.profile-sec01 .wrap .profiles .profile .bottom {
  padding: 2rem 0;
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 10rem;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  color: #fff;
}

.profile-sec01 .wrap .profiles .profile .bottom::before,
.profile-sec01 .wrap .profiles .profile .bottom::after {
  content: "";
  position: absolute;
}

/* 右下角の三角形 */
.profile-sec01 .wrap .profiles .profile .bottom::before {
  width: 6rem;
  height: 6rem;
  right: -1rem;
  bottom: -1rem;
  background: rgba(255, 255, 255, 1);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* 左上角の三角形 */
.profile-sec01 .wrap .profiles .profile .bottom::after {
  width: 4rem;
  height: 4rem;
  right: .5rem;
  bottom: .5rem;
  background: rgba(255, 255, 255, 0.75);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.profile-sec01 .wrap .profiles .profile .bottom .staff {
  position: absolute;
  width: 13.5rem;
  left: -3.6rem;
  bottom: 1.4rem;
}

.profile-sec01 .wrap .profiles .profile .bottom .ttl {
  width: 35rem;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  padding-left: 9rem;
  line-height: 1.8;
  text-align: justify;
  border-right: solid 1px;
}

.profile-sec01 .wrap .profiles .profile .bottom .p01 {
  line-height: 2.25;
  text-align: justify;
  width: calc(100% - 35rem);
  padding: 0 9rem 0 3rem;
}

@media screen and (max-width:768px) {
  .profile-sec01 .wrap {
    padding: 0 2rem 6rem;
  }

  .profile-sec01 .wrap .profiles .profile {
    flex-direction: column;
    margin-top: 6rem;
  }

  .profile-sec01 .wrap .profiles .profile .left {
    width: 100%;
  }

  .profile-sec01 .wrap .profiles .profile .left .num {
    font-size: 1.4rem;
  }

  .profile-sec01 .wrap .profiles .profile .left .num em {
    font-size: 5rem;
  }

  .profile-sec01 .wrap .profiles .profile .left .p01 {
    font-size: 2rem;
  }

  .profile-sec01 .wrap .profiles .profile .left .dl {
    margin-top: 2.4rem;
    line-height: 1.8;
    margin-top: 3rem;
  }

  .profile-sec01 .wrap .profiles .profile .left .dl .dt {
    font-size: 1.6rem;
  }

  .profile-sec01 .wrap .profiles .profile .left .dl .dd em {
    font-size: 2rem;
  }

  .profile-sec01 .wrap .profiles .profile .left .dl .dd small {
    display: inline-block;
    font-size: 1.2rem;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .profile-sec01 .wrap .profiles .profile .right {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }

  .profile-sec01 .wrap .profiles .profile .right .img {
    width: calc(100% - 2rem);
    border-radius: 2rem 0 0 2rem;
    position: relative;
    left: auto;
    right: -2rem;
    margin-left: auto;
  }

  .profile-sec01 .wrap .profiles .profile02 .right .img,
  .profile-sec01 .wrap .profiles .profile04 .right .img,
  .profile-sec01 .wrap .profiles .profile06 .right .img {
    border-radius: 0 2rem 2rem 0;
    right: auto;
    left: -2rem;
    margin-left: 0;
    margin-right: auto;
  }

  .profile-sec01 .wrap .profiles .profile .contents {
    width: 100%;
  }

  .profile-sec01 .wrap .profiles .profile .contents .content {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
  }

  .profile-sec01 .wrap .profiles .profile .contents .content.reverse {
    flex-direction: column;
  }

  .profile-sec01 .wrap .profiles .profile .contents .content .img {
    width: 100%;
    aspect-ratio: 36/32;
    border-radius: 1rem;
    overflow: hidden;
  }

  .profile-sec01 .wrap .profiles .profile .contents .content .txts {
    width: 100%;
  }

  .profile-sec01 .wrap .profiles .profile .contents .content .txts .ttl {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .profile-sec01 .wrap .profiles .profile .contents .content .txts .p01 {
    line-height: 1.8;
  }

  .profile-sec01 .wrap .profiles .profile .bottom {
    padding: 4rem 2rem 3rem 10rem;
    width: 100%;
    flex-direction: column;
    margin-top: 5rem;
    position: relative;
  }

  .profile-sec01 .wrap .profiles .profile .bottom::before {
    right: -1rem;
    bottom: auto;
    top: -1rem;
    transform: rotate(-90deg);
  }

  .profile-sec01 .wrap .profiles .profile .bottom::after {
    right: 0;
    bottom: auto;
    top: 0;
    transform: rotate(-90deg);
  }

  .profile-sec01 .wrap .profiles .profile .bottom .staff {
    position: absolute;
    width: 13.5rem;
    left: -4rem;
    bottom: 6rem;
  }

  .profile-sec01 .wrap .profiles .profile .bottom .ttl {
    width: 100%;
    font-size: 1.8rem;
    padding-left: 0;
    border-right: none;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .profile-sec01 .wrap .profiles .profile .bottom .p01 {
    line-height: 1.8;
    width: 100%;
    padding: 0;
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------
//  environment-sec01
--------------------------------------------------------------------------- */
.environment-sec01 {
  position: relative;
  background: linear-gradient(51deg, rgba(174, 255, 186, .36) 0.48%, rgba(140, 207, 255, .36) 82.34%);
  margin-top: -23.8rem;
}

.environment-sec01 .wrap {
  padding: 36rem 0 13rem;
}

.environment-sec01 .wrap .ttl01 {
  color: #004EA2;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 5rem;
}

.environment-sec01 .wrap .datas {
  display: flex;
  flex-wrap: wrap;
  border-top: dotted 2px rgba(0, 0, 0, .5);
  padding: 2rem 0;
}

.environment-sec01 .wrap .datas:last-of-type {
  border-bottom: dotted 2px rgba(0, 0, 0, .5);
}

.environment-sec01 .wrap .datas .data {
  width: calc(100% / 3);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 39rem; */
}

.environment-sec01 .wrap .datas .data:nth-of-type(2) {
  border-left: dotted 2px rgba(0, 0, 0, .5);
  border-right: dotted 2px rgba(0, 0, 0, .5);
}

.environment-sec01 .wrap .datas .data .dt {
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.environment-sec01 .wrap .datas .data .dt span {
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #004EA2;
  padding: .2rem 0;
  background: #fff;
  border-radius: 100vh;
  text-align: center;
}

.environment-sec01 .wrap .datas .data .dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.environment-sec01 .wrap .datas .data02 .dd,
.environment-sec01 .wrap .datas .data03 .dd,
.environment-sec01 .wrap .datas .data05 .dd,
.environment-sec01 .wrap .datas .data06 .dd {
  flex-grow: 0;
}

.environment-sec01 .wrap .datas .data .dd .head {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
}

.environment-sec01 .wrap .datas .data .dd .head .num {
  font-family: Orbitron;
  font-size: 9rem;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
}

.environment-sec01 .wrap .datas .data04 .dd .head .num {
  font-size: 6.4rem;
}

.environment-sec01 .wrap .datas .data .dd .head small {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  margin-top: 1rem;
}

.environment-sec01 .wrap .datas .data .dd .head em {
  font-size: 2.4rem;
}

.environment-sec01 .wrap .datas .data .dd .p01 {
  line-height: 1.8;
  text-align: justify;
  margin-top: 2rem;
}

.environment-sec01 .wrap .datas .data05 .dd img {
  width: calc(27.1rem * .9);
}

.environment-sec01 .wrap .datas .data06 .dd img {
  width: calc(28.8rem * .9);
}

@media screen and (max-width:768px) {
  .environment-sec01 {
    margin-top: 0;
  }

  .environment-sec01 .wrap {
    padding: 6rem 2rem;
  }

  .environment-sec01 .wrap .ttl01 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .environment-sec01 .wrap .datas {
    padding: 0;
    border-top: none;
    width: 26rem;
    margin: auto;
  }

  .environment-sec01 .wrap .datas:last-of-type {
    border-bottom: dotted 2px rgba(0, 0, 0, .5);
  }

  .environment-sec01 .wrap .datas .data {
    width: 100%;
    padding: 2rem 0;
    border-top: dotted 2px rgba(0, 0, 0, .5);
  }

  .environment-sec01 .wrap .datas .data:nth-of-type(2) {
    border-left: none;
    border-right: none;
  }

  .environment-sec01 .wrap .datas .data .dt {
    height: auto;
  }

  .environment-sec01 .wrap .datas .data .dd .head {
    font-size: 2rem;
  }

  .environment-sec01 .wrap .datas .data .dd .head .num {
    font-size: 5rem;
  }

  .environment-sec01 .wrap .datas .data04 .dd .head .num {
    font-size: 5rem;
  }

  .environment-sec01 .wrap .datas .data .dd .head small {
    font-size: 1.2rem;
    margin-top: .5rem;
  }

  .environment-sec01 .wrap .datas .data .dd .head em {
    font-size: 2.4rem;
  }

  .environment-sec01 .wrap .datas .data .dd .p01 {
    margin-top: 1rem;
  }

  .environment-sec01 .wrap .datas .data05 .dd img {
    width: calc(27.1rem * .6);
  }

  .environment-sec01 .wrap .datas .data06 .dd img {
    width: calc(28.8rem * .6);
  }
}

/* ---------------------------------------------------------------------------
//  environment-sec02
--------------------------------------------------------------------------- */
.environment-sec02 {
  position: relative;
  margin: 13rem 0;
}

.environment-sec02 .wrap {
  padding: 0;
}

.environment-sec02 .wrap .ttl01 {
  color: #004EA2;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 5rem;
  border: solid 1px;
  border-radius: 3rem;
  padding: 2rem 2rem 2.5rem;
}

.environment-sec02 .wrap .boxs {
  display: flex;
  flex-wrap: wrap;
}

.environment-sec02 .wrap .boxs .p01 {
  font-size: 2rem;
  line-height: 2.25;
}

.environment-sec02 .wrap .boxs .ul01 {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.environment-sec02 .wrap .boxs .ul01 .li {
  margin-top: 2rem;
  width: calc((100% - 2.8rem) / 3);
  text-align: center;
}

.environment-sec02 .wrap .boxs .ul01 .li span {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: .5rem;
  display: block;
}

.environment-sec02 .wrap .boxs .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4.5rem;
  position: relative;
}

.environment-sec02 .wrap .boxs .cards::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
  height: .3rem;
}

.environment-sec02 .wrap .boxs .cards .card {
  width: calc((100% - 9rem) / 3);
  padding: 4rem 0;
}

.environment-sec02 .wrap .boxs .cards .card.full {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem;
}

.environment-sec02 .wrap .boxs .cards .card .img {
  border-radius: 3rem;
  overflow: hidden;
  aspect-ratio: 300/240;
}

.environment-sec02 .wrap .boxs .cards .card.full .img {
  width: 40rem;
}

.environment-sec02 .wrap .boxs .cards .card .txts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.environment-sec02 .wrap .boxs .cards .card.full .txts {
  align-items: flex-start;
  width: calc(100% - 44rem);
}

.environment-sec02 .wrap .boxs .cards .card .txts .ttl02 {
  font-size: 2rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/recruit-environment/maru.png);
  background-size: 17rem;
  background-repeat: no-repeat;
  background-position: center;
  color: #004EA2;
  font-weight: 500;
}

.environment-sec02 .wrap .boxs .cards .card .txts .p02 {
  line-height: 2.25;
  text-align: justify;
}

.environment-sec02 .wrap .boxs .cards .card .txts .uls02 {
  display: flex;
  gap: 0 10rem;
}

.environment-sec02 .wrap .boxs .cards .card .txts .uls02 .ul02 {
  margin: 1rem 0 2rem;
}

.environment-sec02 .wrap .boxs .cards .card .txts .uls02 .ul02 .li {
  display: flex;
  color: #004EA2;
  font-weight: 500;
  margin-top: 1rem;
  gap: .5rem;
}

.environment-sec02 .wrap .boxs .box01 {
  width: 50%;
}

.environment-sec02 .wrap .boxs .box02 {
  width: 50%;
}

.environment-sec02 .wrap .boxs .box03 {
  margin-top: 2rem;
  width: 100%;
}

@media screen and (max-width:768px) {
  .environment-sec02 {
    margin: 6rem 0;
  }

  .environment-sec02 .wrap {
    padding: 0 2rem;
  }

  .environment-sec02 .wrap .ttl01 {
    font-size: 2rem;
    margin-bottom: 4rem;
    border-radius: 100vh;
    padding: 1rem 1rem 1.2rem;
  }

  .environment-sec02 .wrap .boxs .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
  }

  .environment-sec02 .wrap .boxs .ul01 {
    gap: 1.4rem;
  }

  .environment-sec02 .wrap .boxs .ul01 .li {
    width: calc((100% - 2.8rem) / 3);
  }

  .environment-sec02 .wrap .boxs .ul01 .li span {
    font-size: 1.2rem;
  }

  .environment-sec02 .wrap .boxs .cards::after {
    display: none;
  }

  .environment-sec02 .wrap .boxs .cards .card {
    width: 100%;
    padding: 0;
    margin-top: 4rem;
  }

  .environment-sec02 .wrap .boxs .cards .card.full {
    display: block;
    gap: 0;
  }

  .environment-sec02 .wrap .boxs .cards .card .img {
    border-radius: 2rem;
  }

  .environment-sec02 .wrap .boxs .cards .card.full .img {
    width: 100%;
  }

  .environment-sec02 .wrap .boxs .cards .card.full .txts {
    align-items: center;
    width: 100%;
  }

  .environment-sec02 .wrap .boxs .cards .card .txts .ttl02 {
    font-size: 1.8rem;
    height: 9rem;
  }

  .environment-sec02 .wrap .boxs .cards .card .txts .p02 {
    line-height: 1.8;
  }

  .environment-sec02 .wrap .boxs .cards .card .txts .uls02 {
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }

  .environment-sec02 .wrap .boxs .cards .card .txts .uls02 .ul02 {
    margin: 1rem 0 2rem;
  }

  .environment-sec02 .wrap .boxs .box01 {
    width: 100%;
  }

  .environment-sec02 .wrap .boxs .box02 {
    width: 100%;
    margin-top: 2rem;
  }

  .environment-sec02 .wrap .boxs .box03 {
    margin-top: 2rem;
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
//  environment-sec03
--------------------------------------------------------------------------- */
.environment-sec03 {
  position: relative;
  margin: 13rem 0;
}

.environment-sec03 .wrap {
  padding: 0;
}

.environment-sec03 .wrap .ttl01 {
  color: #004EA2;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 5rem;
  border: solid 1px;
  border-radius: 3rem;
  padding: 2rem 2rem 2.5rem;
}

.environment-sec03 .wrap .ttl02 {
  border-radius: 0 1rem 1rem 1rem;
  background: linear-gradient(53deg, #46E1E2 0.59%, #46E1E2 1.55%, #00ABD7 97.12%);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  padding: 1.5rem 3rem;
  margin-bottom: 2rem;
}

.environment-sec03 .wrap .p01 {
  font-size: 2rem;
  line-height: 2.25;
  text-align: center;
  margin-bottom: 5rem;
}

.environment-sec03 .wrap .p02 {
  line-height: 2.25;
  text-align: justify;
}

.environment-sec03 .wrap .p02 + .p02 {
  margin-top: 1rem;
}

.environment-sec03 .wrap .p02 strong {
  color: #004EA2;
  display: block;
}

.environment-sec03 .wrap .cards .card {
  display: flex;
  gap: 6rem;
  margin-top: 6rem;
}

.environment-sec03 .wrap .cards .card > * {
  width: calc((100% - 6rem) / 2);
}

.environment-sec03 .wrap .cards .card .img {
  border-radius: 3rem;
  overflow: hidden;
  aspect-ratio: 300/240;
}

.environment-sec03 .wrap .cards .card .ul01 {
  display: flex;
  gap: 1rem;
}

.environment-sec03 .wrap .cards .card .ul01 .li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 2rem) / 3);
}

.environment-sec03 .wrap .cards .card .ul01 .li span {
  text-align: center;
  color: #004EA2;
  font-weight: 500;
  margin-top: .5rem;
  white-space: nowrap;
}

@media screen and (max-width:768px) {
  .environment-sec03 {
    margin: 6rem 0;
  }

  .environment-sec03 .wrap {
    padding: 0 2rem;
  }

  .environment-sec03 .wrap .ttl01 {
    font-size: 2rem;
    margin-bottom: 4rem;
    border-radius: 100vh;
    padding: 1rem 1rem 1.2rem;
  }

  .environment-sec03 .wrap .ttl02 {
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
  }

  .environment-sec03 .wrap .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
  }

  .environment-sec03 .wrap .p02 {
    line-height: 1.8;
  }

  .environment-sec03 .wrap .cards .card {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
  }

  .environment-sec03 .wrap .cards .card > * {
    width: 100%;
  }

  .environment-sec03 .wrap .cards .card .img {
    border-radius: 2rem;
  }

  .environment-sec03 .wrap .cards .card .ul01 {
    display: flex;
    gap: 1rem;
  }

  .environment-sec03 .wrap .cards .card .ul01 .li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 2rem) / 3);
  }

  .environment-sec03 .wrap .cards .card .ul01 .li span {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------------------------
//  entry-fv
--------------------------------------------------------------------------- */
.entry-fv {
  position: relative;
}

.entry-fv + .bread-sec {
  position: absolute;
  z-index: 2;
  right: 0;
  width: 100%;
  top: 8.7rem;
}

.entry-fv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.entry-fv .wrap {
  position: relative;
  height: 36rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 4rem 0;
  align-items: flex-start;
}

.entry-fv .wrap .eng {
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 8rem;
  font-family: Orbitron;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  left: -.3rem;
}

.entry-fv .wrap .ttl {
  padding: .3rem 2rem .5rem;
  background: #2FCFDE;
  color: #fff;
}

.entry-fv .badge {
  position: absolute;
  width: 22rem;
  right: calc((100vw - 108rem) / 2);
  right: 5%;
  bottom: -9rem;
  display: flex;
  align-items: center;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .entry-fv + .bread-sec {
    left: 0;
    right: auto;
    top: 2rem;
  }

  .entry-fv + .bread-sec .bread {
    justify-content: flex-start;
  }

  .entry-fv .wrap {
    height: 24rem;
    padding: 2rem;
  }

  .entry-fv .wrap .eng {
    font-size: 5rem;
    margin-bottom: 1rem;
  }

  .entry-fv .wrap .ttl {
    padding: .3rem 1rem .5rem;
  }

  .entry-fv .badge {
    width: 12rem;
    right: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//  entry-sec01
--------------------------------------------------------------------------- */
.entry-sec01 {
  position: relative;
  z-index: 2;
  background: linear-gradient(51deg, rgba(174, 255, 186, .36) 0.48%, rgba(140, 207, 255, .36) 82.34%);
}

.entry-sec01 .wrap {
  padding: 6rem 0 13rem;
  position: relative;
}

.entry-sec01 .wrap .p01 {
  color: #004EA2;
  font-family: "Zen Kurenaido";
  font-size: 2.8rem;
  line-height: 2.25;
  letter-spacing: calc(1em * (2.8 / 28));
}

.entry-sec01 .wrap .flow-wrap {
  position: absolute;
  bottom: -10rem;
  width: 100%;
}

.entry-sec01 .wrap .flow-wrap .ttl01 {
  text-align: center;
  font-family: Orbitron;
  font-size: 3.2rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.54;
  background: linear-gradient(321deg, #2FBAFB 18.12%, #33EDD4 80.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  margin-bottom: 1rem;
}

/* f-animation01 分割後の .char にもグラデ（clip:text）を適用（.ttlC.f-animation01 .char と同様） */
.entry-sec01 .wrap .flow-wrap .ttl01.f-animation01 .char {
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.entry-sec01 .wrap .flow-wrap .flow {
  display: flex;
  gap: 3rem;
}

.entry-sec01 .wrap .flow-wrap .flow .item {
  width: calc((100% - 15rem) / 6);
  border: 1px solid #004EA2;
  background: #FFF;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}

.entry-sec01 .wrap .flow-wrap .flow .item + .item::before {
  background-image: url(../img/common/arrow05.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 2rem;
  height: 2.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.5rem;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .entry-sec01 .wrap {
    padding: 6rem 2rem 0;
  }

  .entry-sec01 .wrap .p01 {
    font-size: 1.8rem;
    white-space: nowrap;
    line-height: 2;
  }

  .entry-sec01 .wrap .flow-wrap {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 2rem 2rem 0 0;
    padding: 4rem;
    margin-top: 6rem;
  }

  .entry-sec01 .wrap .flow-wrap .ttl01 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }

  .entry-sec01 .wrap .flow-wrap .flow {
    flex-direction: column;
    gap: 3rem;
  }

  .entry-sec01 .wrap .flow-wrap .flow .item {
    width: 100%;
    aspect-ratio: inherit;
    height: 8rem;
  }

  .entry-sec01 .wrap .flow-wrap .flow .item + .item::before {
    position: absolute;
    top: -2.7rem;
    bottom: auto;
    left: 0;
    right: 0;
    transform: rotate(90deg);
  }
}

/* ---------------------------------------------------------------------------
//  entry-sec02
--------------------------------------------------------------------------- */
.entry-sec02 {
  position: relative;
}

.entry-sec02 .wrap {
  padding: 19rem 0 8rem;
  position: relative;
}

.entry-sec02 .wrap .ttl01 {
  color: #004EA2;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 6rem;
}

.entry-sec02 .wrap .dls .dl {
  display: flex;
  padding: 2rem 0 2rem 6rem;
  border-top: solid 1px #CBD0D1;
  line-height: 1.8;
}

.entry-sec02 .wrap .dls .dl:last-of-type {
  border-bottom: solid 1px #CBD0D1;
}

.entry-sec02 .wrap .dls .dl .dt {
  width: 18rem;
  font-weight: 500;
}

.entry-sec02 .wrap .dls .dl .dd {
  width: calc(100% - 18rem);
}

@media screen and (max-width:768px) {
  .entry-sec02 .wrap {
    padding: 4rem 2rem;
  }

  .entry-sec02 .wrap .ttl01 {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }

  .entry-sec02 .wrap .dls .dl {
    display: block;
    padding: 2rem 0;
  }

  .entry-sec02 .wrap .dls .dl .dt {
    width: 100%;
  }

  .entry-sec02 .wrap .dls .dl .dd {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* ---------------------------------------------------------------------------
//  entry-sec03
--------------------------------------------------------------------------- */
.entry-sec03 {
  position: relative;
  margin: 0 0 8rem
}

.entry-sec03 .container {
  padding: 8rem 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.60);
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.20) 100%);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(40px);
  max-width: 118rem;
  margin: 0 auto;
}

.entry-sec03 .container .wrap01 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.entry-sec03 .container .wrap01 .p01 {
  color: #004EA2;
  text-align: center;
  font-size: 2rem;
  line-height: 2.25;
}

.entry-sec03 .container .wrap01 .ttl01 {
  margin: 6rem 0 4rem;
  color: #004EA2;
  background: #004EA2;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  padding: .2rem 2rem .5rem;
}

.entry-sec03 .container .wrap01 .dls {
  display: flex;
  gap: 18rem;
}

.entry-sec03 .container .wrap01 .dls .dl {
  margin: auto;
  line-height: 1.8;
}

.entry-sec03 .container .wrap01 .dls .dl .dt {
  font-weight: 700;
}

.entry-sec03 .container .wrap01 .p02 {
  border-radius: 100vh;
  border: 1px solid;
  color: #004EA2;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: center;
  margin: 4rem 0 6rem;
}

.entry-sec03 .container .wrap02 .head {
  display: flex;
  margin-bottom: 3rem;
}

.entry-sec03 .container .wrap02 .recruit-headA {
  width: 34rem;
}

.entry-sec03 .container .wrap02 .recruit-headA .eng {
  font-size: 6rem;
  line-height: 1;
}

.entry-sec03 .container .wrap02 .txts {
  width: calc(100% - 34rem);
  line-height: 2.25;
}

.entry-sec03 .container .wrap02 .txts strong {
  color: #004EA2;
}

.entry-sec03 .container .wrap02 .form-wrap {
  max-width: 86rem;
  margin: auto;
}

@media screen and (max-width:768px) {
  .entry-sec03 {
    position: relative;
    margin: 0 0 6rem
  }

  .entry-sec03 .container {
    padding: 4rem 2rem 0;
    border: none;
    background: none;
    box-shadow: none;
  }

  .entry-sec03 .container .wrap01 .p01 {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .entry-sec03 .container .wrap01 .ttl01 {
    margin: 4rem 0 3rem;
    font-size: 1.8rem;
  }

  .entry-sec03 .container .wrap01 .dls {
    flex-direction: column;
    gap: 3rem;
  }

  .entry-sec03 .container .wrap01 .p02 {
    font-size: 1.8rem;
    margin: 4rem 0 6rem;
  }

  .entry-sec03 .container .wrap02 .head {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .entry-sec03 .container .wrap02 .recruit-headA {
    width: 100%;
    margin-bottom: 3rem;
  }

  .entry-sec03 .container .wrap02 .recruit-headA .eng {
    font-size: 4.5rem;
    line-height: normal;
  }

  .entry-sec03 .container .wrap02 .txts {
    width: 100%;
    line-height: 1.8;
  }

  .entry-sec03 .container .wrap02 .txts strong {
    color: #004EA2;
  }

  .entry-sec03 .container .wrap02 .form-wrap {
    max-width: 86rem;
    margin: auto;
  }
}

/* ---------------------------------------------------------------------------
//  PC/SP
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}

@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }

  .forPC {
    display: none;
  }
}