@charset "UTF-8";
.top_kv {
  position: fixed;
  z-index: 0;
  top: 100px;
  left: 0;
  height: 51.0416667vw;
  width: 100%;
  overflow: hidden;
  /* ユーザーの簡易表示設定に配慮 */
  /* SVGを回すときの安定化（任意） */
}
.top_kv.is-active .desc {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition: all 0.5s;
  transition-delay: 1s;
}
.top_kv.is-active .scroll {
  opacity: 1;
  transition: all 0.6s;
  transition-delay: 2s;
}
.top_kv .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.top_kv .background img {
  width: 100%;
}
.top_kv .copy {
  position: absolute;
  z-index: 2;
  filter: blur(0px);
  top: 10.4166667vw;
  left: 6.77083333vw;
  width: 44.5833333vw;
}
.top_kv .copy img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_kv .desc {
  opacity: 0;
  filter: blur(30px);
  transform: translateX(-25%);
  position: absolute;
  z-index: 2;
  top: 30.4166667vw;
  left: 6.77083333vw;
  width: 42.983333vw;
}
.top_kv .desc img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_kv .image {
  opacity: 1;
  transform: translateX(10%);
  position: absolute;
  z-index: 1;
  top: 0%;
  right: 0;
  width: 53.59375vw;
  height: 100%;
}
.top_kv .scroll {
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 32px;
  right: 32px;
  width: 170px;
  height: 170px;
  z-index: 2;
}
.top_kv .scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35.04px;
  height: 35.04px;
  background-image: url(../img/top/kv/scroll-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top_kv .scroll:hover {
  cursor: pointer;
  opacity: 0.8;
}
.top_kv .scroll .circleimage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  animation: spin var(--spin-duration, 20s) linear infinite;
  will-change: transform;
}
.top_kv .scroll .circleimage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .top_kv .scroll .image {
    animation: none;
  }
}
.top_kv .scroll .image svg {
  transform-origin: center;
  transform-box: fill-box;
}

.top_startbtn {
  background-color: #fff;
  margin-top: calc(51.0416667vw + 100px);
  position: relative;
  z-index: 2;
}
.top_startbtn .btns {
  transform: translateY(-42px);
  display: flex;
  justify-content: center;
}
.top_startbtn .btns a {
  width: 42.5%;
  display: block;
}
.top_startbtn .btns a:nth-of-type(1) {
  transform: translateX(20px);
}
.top_startbtn .btns a:nth-of-type(1):hover {
  opacity: 1;
  transform: scale(1.05) translateX(20px);
}
.top_startbtn .btns a:nth-of-type(2) {
  transform: translateX(-20px);
}
.top_startbtn .btns a:nth-of-type(2):hover {
  opacity: 1;
  transform: scale(1.05) translateX(-20px);
}

.top_blog {
  background-color: #fff;
  position: relative;
  padding-top: 55px;
  padding-bottom: 0px;
  overflow: hidden;
}
.top_blog .heading-gr {
  margin-bottom: 80px;
  display: flex;
  gap: 85px;
  opacity: 0;
  transform: translateY(50px);
}
.top_blog .heading-gr .desc {
  line-height: 2.3;
}
.top_blog .heading-gr.is-animated {
  transition: all 0.5s;
  transform: translateY(0px);
  opacity: 1;
}
.top_blog .content {
  opacity: 0;
  transform: translateY(50px);
}
.top_blog .content .slide .arrows-btns-outer {
  margin-top: 100px;
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 68.8px;
}
.top_blog .content .slide .arrows-btns-outer .arrows-btns {
  transform: translateY(4px);
  display: flex;
  justify-content: right;
  gap: 64.8px;
}
.top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-prev {
  position: relative;
  width: 17.2px;
  height: 27.9px;
}
.top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-prev::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/top/blog/arrow-left-blue.svg);
  width: 17.2px;
  height: 27.9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-next {
  position: relative;
  width: 17.2px;
  height: 27.9px;
}
.top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-next::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/top/blog/arrow-right-blue.svg);
  width: 17.2px;
  height: 27.9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top_blog .content .slide .arrows-btns-outer .morebtn {
  width: 240px;
}
.top_blog .content .slide .arrows-btns-outer .morebtn a {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #056AB8;
  padding-bottom: 13px;
}
.top_blog .content .slide .arrows-btns-outer .morebtn a span {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #056AB8;
}
.top_blog .content .slide .arrows-btns-outer .morebtn a::after {
  content: "";
  -webkit-clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
  clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
  background-color: #056AB8;
  width: 23px;
  height: 18px;
  position: absolute;
  top: 36%;
  right: 16px;
  transform: translateY(-50%);
}
.top_blog .content .slide .item {
  transition: all 0.3s;
}
.top_blog .content .slide .item .thumb {
  width: 100%;
  aspect-ratio: 1/0.75;
  border-radius: 8px;
  overflow: hidden;
}
.top_blog .content .slide .item .thumb.noimage {
  border: solid 2px #eee;
}
.top_blog .content .slide .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.top_blog .content .slide .item .title {
  margin-top: 13px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.006em;
  color: #000000;
}
.top_blog .content .slide .item .sub-info {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.top_blog .content .slide .item .sub-info time {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #888888;
}
.top_blog .content .slide .item .sub-info .cat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #056AB8;
}
.top_blog .content .slide .item .sub-info .cat::before {
  content: "/";
  font-size: 1.3rem;
  line-height: 1.5;
  display: inline-block;
  transform: translateY(-1px);
}
.top_blog .content .slide .item .sub-info .cat li {
  font-size: 1.6rem;
  line-height: 1.5;
}
.top_blog .content .slide .item:hover .thumb img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.top_blog .content .slide .item:hover .title {
  color: #056AB8;
  transition: all 0.3s;
}
.top_blog .content .slide .item:hover .sub-info .cat li {
  color: #056AB8;
  transition: all 0.3s;
}
.top_blog .content.is-animated {
  transition: all 1s;
  transform: translateY(0px);
  opacity: 1;
}

.top_outline {
  position: relative;
  background-color: #fff;
  padding-top: 238px;
  padding-bottom: 6.6183788888vw;
  overflow: hidden;
}
.top_outline::before {
  content: "";
  display: block;
  max-width: 297px;
  width: 18.46875%;
  aspect-ratio: 1/0.95;
  position: absolute;
  top: -50px;
  right: 0;
  background-image: url(../img/top/ashirai-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_outline .content {
  position: relative;
}
.top_outline .content .container {
  opacity: 0;
  transform: translateX(-50px);
  width: 40.416%;
  margin-left: 0;
  margin-right: auto;
}
.top_outline .content .container .heading {
  margin-bottom: 32px;
}
.top_outline .content .container .desc {
  margin-bottom: 24px;
  line-height: 2.5;
  letter-spacing: 0.006em;
  color: #000000;
}
.top_outline .content .container .morebtn {
  width: 240px;
}
.top_outline .content .container .morebtn a {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #056AB8;
  padding-bottom: 13px;
}
.top_outline .content .container .morebtn a span {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #056AB8;
}
.top_outline .content .container .morebtn a::after {
  content: "";
  -webkit-clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
  clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0% 100%);
  background-color: #056AB8;
  width: 23px;
  height: 18px;
  position: absolute;
  top: 36%;
  right: 16px;
  transform: translateY(-50%);
}
.top_outline .content .image {
  position: relative;
  overflow: hidden;
  width: 55.2604167%;
  right: 0;
  top: 0;
  aspect-ratio: 1/0.518378888;
  margin-left: auto;
  margin-right: 0;
  align-self: start;
  margin-top: -385px;
}
.top_outline .content .image img {
  opacity: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ddd;
  transition: opacity 0.3s ease 0.75s;
}
.top_outline .content .image::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 120%;
  height: 100%; /* 行全体なら100%に */
  z-index: 3; /* 画像より前面 */
  background: linear-gradient(to right, #00BFFF, #0486D0);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes bandSweep {
  0% {
    transform: translate(-100%, -50%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translate(100%, -50%);
    opacity: 0;
  }
}
.top_outline .content.is-animated .container {
  transition: all 0.5s;
  transform: translateX(0px);
  opacity: 1;
}
.top_outline .content.is-animated .image {
  /* 発火：帯を走らせる */
  /* 帯が終わった後に画像フェードイン */
}
.top_outline .content.is-animated .image::before {
  animation: bandSweep 1s ease-out both 0.5s;
}
.top_outline .content.is-animated .image img {
  opacity: 1;
}

.top_map {
  background-color: #fff;
  position: relative;
  z-index: 0;
  padding-top: 96px;
  padding-bottom: 161px;
}
.top_map::before {
  content: "";
  width: 23.8541667%;
  aspect-ratio: 1/0.709606987;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/top/map/ashirai-left.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_map::after {
  pointer-events: none;
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: transparent linear-gradient(180deg, var(--unnamed-color-eaeffb) 0%, var(--unnamed-color-eaeffb) 84%, var(--unnamed-color-ffffff) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #EAEFFB 0%, #EAEFFB 84%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  opacity: 0.33;
}
.top_map .content {
  position: relative;
  z-index: 2;
}
.top_map .content .container .lr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top_map .content .container .lr .left {
  margin-top: -140px;
  width: 40%;
  opacity: 0;
  transform: translateX(-50px);
}
.top_map .content .container .lr .right {
  width: 47.2222222%;
  opacity: 0;
  filter: blur(10px);
}
.top_map .content .container .lr .heading-gr {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 34px;
}
.top_map .content .container .lr .heading-gr .subtxt {
  font-size: 1.4rem;
  color: #056AB8;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 500;
  transform: translateY(-5px);
}
.top_map .content .container .lr .desc {
  line-height: 2.5;
}
.top_map .content .container .lr .image {
  position: relative;
}
.top_map .content .container .lr .image .dot {
  width: 2.8%;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  transform-origin: center;
  animation: dot-pulse 1.4s ease-in-out infinite alternate;
  will-change: transform;
  /* 複数並べて時間差をつけたい場合（任意） */
  /* 省エネ配慮 */
}
.top_map .content .container .lr .image .dot:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.3s;
  background-color: #000 !important;
}
@keyframes dot-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
    filter: saturate(100%);
  }
  100% {
    transform: scale(1.5);
    opacity: 1;
    filter: saturate(200%); /* 彩度を上げる */
  }
}
.top_map .content .container .lr .image .dot .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.top_map .content .container .lr .image .dot .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .top_map .content .container .lr .image .dot .dot {
    animation: none;
  }
}
.top_map .content .container .lr .image .branch .dot {
  background-color: #FF842B;
}
.top_map .content .container .lr .image .branch .nagoya {
  top: 66.5%;
  left: 48.7%;
}
.top_map .content .container .lr .image .branch .takasaki {
  top: 56.5%;
  left: 65.2%;
}
.top_map .content .container .lr .image .branch .yokohama {
  top: 63.6%;
  left: 64.1%;
}
.top_map .content .container .lr .image .branch .kansai {
  top: 69.8%;
  left: 40.7%;
}
.top_map .content .container .lr .image .branch .chiba {
  top: 62.5%;
  left: 69.4%;
}
.top_map .content .container .lr .image .branch .nigata {
  top: 48.3%;
  left: 61.5%;
}
.top_map .content .container .lr .image .branch .kobe {
  top: 68.2%;
  left: 37.2%;
}
.top_map .content .container .lr .image .branch .sapporo {
  top: 14.8%;
  left: 70.2%;
}
.top_map .content .container .lr .image .branch .saitama {
  top: 58.5%;
  left: 63.2%;
}
.top_map .content .container .lr .image .branch .hokuriku {
  top: 57.5%;
  left: 47.3%;
}
.top_map .content .container .lr .image .branch .hiroshima {
  top: 71.9%;
  left: 21.8%;
}
.top_map .content .container .lr .image .branch .tohoku {
  top: 46.5%;
  left: 72.5%;
}
.top_map .content .container .lr .image .branch .tokyo {
  top: 61.1%;
  left: 66.5%;
}
.top_map .content .container .lr .image .branch .nagano {
  top: 59.8%;
  left: 55.2%;
}
.top_map .content .container .lr .image .branch .shikoku {
  top: 76.2%;
  left: 22.7%;
}
.top_map .content .container .lr .image .branch .kitakanto {
  top: 58.2%;
  left: 67.6%;
}
.top_map .content .container .lr .image .branch .tokyo-daini {
  top: 60.9%;
  left: 62.9%;
}
.top_map .content .container .lr .image .branch .shizuoka {
  top: 66.6%;
  left: 58.2%;
}
.top_map .content .container .lr .image .branch .kyushu {
  top: 75.5%;
  left: 10.2%;
}
.top_map .content .container .lr .image .eigyo-sho .dot {
  background-color: #FFD800;
}
.top_map .content .container .lr .image .eigyo-sho .doto {
  top: 16.5%;
  left: 80.2%;
}
.top_map .content .container .lr .image .eigyo-sho .okayama {
  top: 68.4%;
  left: 31.2%;
}
.top_map .content .container .lr .image .eigyo-sho .aomori {
  top: 31.5%;
  left: 74.2%;
}
.top_map .content .container .lr .image .eigyo-sho .takamatsu {
  top: 72.6%;
  left: 31.3%;
}
.top_map .content .container .lr .image .eigyo-sho .koriyama {
  top: 52.9%;
  left: 69.1%;
}
.top_map .content .container .lr .image .eigyo-sho .kumamoto {
  top: 81.1%;
  left: 12.2%;
}
.top_map .content .container .lr .image .eigyo-sho .mie {
  top: 68.3%;
  left: 45.8%;
}
.top_map .content.is-animated .lr .left {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.5s;
}
.top_map .content.is-animated .lr .right {
  opacity: 1;
  transition-delay: 0.5s;
  transition-duration: 1s;
  filter: blur(0);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is-open .wrapper .container {
  transform: translateY(0);
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.2s;
  opacity: 1;
}
.modal .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.modal .wrapper .container {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(to right, #00BFFF, #0486D0);
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 8px;
  opacity: 0;
  transform: translateY(75px);
  transition-duration: 0.75s;
}
.modal .wrapper .heading-bar {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  padding: 16px 24px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.modal .wrapper .heading-bar h2 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.5;
}
.modal .wrapper .heading-bar .eng {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
}
.modal .wrapper .heading-bar .cross {
  position: absolute;
  display: block;
  top: 50%;
  right: 8px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
}
.modal .wrapper .heading-bar .cross span {
  top: 50%;
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.modal .wrapper .heading-bar .cross span:nth-child(1) {
  transform: rotate(45deg);
}
.modal .wrapper .heading-bar .cross span:nth-child(2) {
  transform: rotate(-45deg);
}
.modal .wrapper .heading-bar .cross:hover {
  cursor: pointer;
}
.modal .wrapper .content {
  background-color: #fff;
  padding: 20px 40px 20px;
}
.modal .wrapper .content .images {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.modal .wrapper .content .images .image {
  width: auto;
}
.modal .wrapper .content .images .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ddd;
}
.modal .wrapper .content .desc {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.006em;
}

.modal-open {
  overflow: hidden;
}

/* 例：右上に×ボタンを追加した場合の見た目 */
.modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.top_feature {
  position: relative;
  z-index: 2;
  background-color: #fff;
  overflow: hidden;
}
.top_feature .content {
  position: relative;
}
.top_feature .content.is-animated .video-container .video {
  opacity: 1;
  transition-duration: 1s;
  transition-delay: 0.5s;
}
.top_feature .content.is-animated .container {
  opacity: 1;
  transform: translateX(0px);
  transition-duration: 0.5s;
}
.top_feature .video-container {
  padding: 91px 0;
  width: 50%;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to right, #00BFFF, #0486D0);
}
.top_feature .video-container .video {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 61%;
  aspect-ratio: 1/0.65;
  opacity: 0;
}
.top_feature .video-container .video .inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top_feature .video-container .video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_feature .video-container .video .overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.top_feature .video-container .video .overlay > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.top_feature .video-container .video .overlay .play {
  position: relative;
  place-items: center;
  width: 80px;
  height: auto;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 50px;
}
.top_feature .video-container .video .overlay .play:hover {
  transform: scale(1.06);
  opacity: 1;
  cursor: pointer;
}
.top_feature .video-container .video .overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.top_feature .video-container .role {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 4px;
  width: 61%;
  margin-left: auto;
  margin-right: auto;
}
.top_feature .video-container .role::before {
  content: "";
  display: block;
  width: auto;
  height: 3px;
  width: 100%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.top_feature .video-container .role span {
  text-align: right;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.075em;
  display: block;
  min-width: 126px;
}
.top_feature .container {
  position: absolute;
  right: 0;
  top: 16px;
  padding-left: 91px;
  width: 50%;
  opacity: 0;
  transform: translateX(50px);
}
.top_feature .container .heading {
  margin-bottom: 32px;
}
.top_feature .container .desc {
  margin-bottom: 24px;
  line-height: 2.5;
  letter-spacing: 0.006em;
  color: #000000;
}

.top_number {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-top: 151px;
  /* 変数（既存の設計に合わせて） */
}
.top_number .heading {
  position: relative;
  z-index: 1;
  text-align: center;
}
.top_number .heading::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background-color: #0486D0;
}
.top_number .heading h2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.08em;
  padding: 0 17px;
}
.top_number .section {
  padding: 48px 0 0;
}
.top_number .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.top_number .stats {
  /* カード共通 */
  /* エリア割当（スパンあり） */
  /* 横に2カラム分の幅想定 */
  /* 右上に縦長（2行分） */
}
.top_number .stats__grid {
  opacity: 0;
  transform: translateY(100px);
  transition-duration: 0.75s;
  display: grid;
  gap: 20px;
  /* PC 3カラム（最後の salary 列を少し広く） */
  grid-template-columns: 1fr 1fr 1.1fr;
  grid-template-areas: "gender  gender  newgrad" "employees twenties newgrad" "since   sales   cases" "holidays bonus   salary" "overtime tenure  age";
}
.top_number .stats__grid.is-animated {
  opacity: 1;
  transform: translateY(0px);
}
.top_number .stats .card {
  background: #fff;
  color: #000;
  border-radius: 0;
  box-shadow: 0 5px 14px 2px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 46px;
}
.top_number .stats .card__title {
  font-weight: 500;
  margin-bottom: 22px;
}
.top_number .stats .card__num {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}
.top_number .stats .card__unit {
  font-size: 3.5rem;
  margin-left: 4px;
}
.top_number .stats .card__note {
  margin-top: 16px;
}
.top_number .stats .card__split {
  display: grid;
  gap: 10px;
}
.top_number .stats .card--gender {
  grid-area: gender;
}
.top_number .stats .card--newgrad {
  grid-area: newgrad;
}
.top_number .stats .card--employees {
  grid-area: employees;
}
.top_number .stats .card--twenties {
  grid-area: twenties;
}
.top_number .stats .card--since {
  grid-area: since;
}
.top_number .stats .card--sales {
  grid-area: sales;
}
.top_number .stats .card--cases {
  grid-area: cases;
}
.top_number .stats .card--holidays {
  grid-area: holidays;
}
.top_number .stats .card--bonus {
  grid-area: bonus;
}
.top_number .stats .card--salary {
  grid-area: salary;
}
.top_number .stats .card--overtime {
  grid-area: overtime;
}
.top_number .stats .card--tenure {
  grid-area: tenure;
}
.top_number .stats .card--age {
  grid-area: age;
}
.top_number .card__title {
  font-size: 2.1rem;
  text-align: center;
  font-weight: 400;
}
.top_number .card .blue {
  color: #0486D0;
}
.top_number .card .skyblue {
  color: #00BFFF;
}
.top_number .card .pink {
  color: #E44E98;
}
.top_number .card__num.blue {
  color: #0486D0;
}
.top_number .card__num.skyblue {
  color: #00BFFF;
}
.top_number .card__num.pink {
  color: #E44E98;
}
.top_number .card__num.white {
  color: #fff;
}
.top_number .card__num .js-count {
  font-size: 11.7rem;
}
.top_number .card__note {
  font-size: 1.7rem;
  text-align: center;
}
.top_number .card__note strong {
  font-weight: 500;
}
.top_number .card__note span {
  font-weight: 400;
}
.top_number .card--gender .card__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.top_number .card--gender .card__body .card__num {
  position: relative;
  z-index: 2;
  display: block;
  width: 130px;
  overflow: visible;
}
.top_number .card--gender .card__body .card__num .sub {
  display: block;
  font-size: 2.1rem;
  text-align: center;
}
.top_number .card--gender .card__body .video {
  transform: translateY(20px);
  position: relative;
  z-index: 1;
  left: 0%;
  top: 0;
  width: 60%;
}
.top_number .card--newgrad .card__body {
  display: block;
}
.top_number .card--newgrad .card__body .circle {
  margin-top: 100px;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.top_number .card--newgrad .card__body .circle .card__num {
  z-index: 2;
  position: absolute;
}
.top_number .card--newgrad .card__body .circle .card__num .js-count {
  font-size: 8.8rem;
}
.top_number .card--newgrad .card__body .circle .card__num:nth-of-type(1) {
  top: -5%;
  left: 0%;
  transform: translate(0%, -50%);
}
.top_number .card--newgrad .card__body .circle .card__num:nth-of-type(2) {
  bottom: 13%;
  right: 17%;
  transform: translate(0%, -50%);
}
.top_number .card--newgrad .card__body .circle .sub {
  position: relative;
  z-index: 2;
  position: absolute;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 400;
}
.top_number .card--newgrad .card__body .circle .sub:nth-of-type(1) {
  top: 31%;
  left: 32%;
  transform: translate(-50%, -50%);
}
.top_number .card--newgrad .card__body .circle .sub:nth-of-type(2) {
  bottom: 52%;
  right: 25%;
  transform: translate(-50%, 50%);
}
.top_number .card--newgrad .card__body .circle .video {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_number .card--newgrad .card__body .circle .video::after {
  content: "";
  display: block;
  width: 10%;
  height: 17%;
  background-image: url(../img/top/num/icon-line.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 9.2%;
  left: 17.9%;
}
.top_number .card--newgrad .card__body .circle .video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_number .card--twenties .card__num {
  transform: translateY(20px);
}
.top_number .card--since .card__num {
  transform: translateY(0px);
}
.top_number .card--sales .card__num .js-count {
  font-size: 9.8rem;
}
.top_number .card--sales .card__note {
  margin-top: 8px;
  font-size: 1.5rem;
}
.top_number .card--cases {
  text-align: center;
}
.top_number .card--cases .card__body {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.top_number .card--cases .card__num {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_number .card--cases .card__num .js-count {
  font-size: 9.8rem;
}
.top_number .card--cases .card__unit {
  margin-left: 24px;
  transform: translateY(8px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_number .card--cases .card__note {
  position: relative;
  margin-top: 8px;
  font-size: 1.5rem;
  padding: 0 20px;
  display: inline-block;
  color: #0486D0;
}
.top_number .card--cases .card__note::after {
  content: "";
  display: block;
  width: 100%;
  height: 94%;
  position: absolute;
  background-size: contain;
  bottom: -10px;
  left: 0;
  background-image: url(../img/top/num/icon-fukidashi.png);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(50%);
}
.top_number .card--bonus {
  width: 65%;
}
.top_number .card--bonus .card__num {
  transform: translateY(20px);
}
.top_number .card--salary {
  width: 133%;
  transform: translateX(-25%);
}
.top_number .card--salary .card__split > div {
  display: flex;
  justify-content: center;
  gap: 46px;
  align-items: center;
}
.top_number .card--salary .card__split > div .card__num .js-count {
  font-size: 8.8rem;
}
.top_number .card--salary .card__split > div .card__num .card__unit {
  font-size: 2.5rem;
}
.top_number .card--salary .card__split > div .card__tag {
  position: relative;
  font-size: 2.1rem;
  transform: translateY(8px);
  position: relative;
}
.top_number .card--salary .card__split > div .card__tag::after {
  content: "";
  display: block;
  width: 160%;
  height: 51%;
  background-image: url(../img/top/num/icon-arrow-right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: -24.5%;
  bottom: 3%;
}
.top_number .card--salary .card__split > div .card__tag span {
  display: inline-block;
  transform: translateY(2.4px);
  font-size: 4.1rem;
  font-weight: 600;
}
.top_number .card--overtime .card__num .js-count {
  font-size: 9.8rem;
}

.top_tool {
  background-color: #fff;
  position: relative;
  z-index: 0;
  padding-top: 160px;
}
.top_tool::before {
  content: "";
  display: block;
  width: 27.46875%;
  aspect-ratio: 1/0.664621677;
  position: absolute;
  top: -50px;
  right: 0;
  background-image: url(../img/top/ashirai-right-2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_tool .items {
  max-width: 1122px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
}
.top_tool .items.is-animated {
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 0.75s;
}
.top_tool .items .item {
  width: 780px;
}
.top_tool .items .item:hover {
  cursor: pointer;
}
.top_tool .items .item:hover .image img {
  transform: scale(1.05);
  transition: 0.5s;
}
.top_tool .items .item .image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/0.636007828;
  overflow: hidden;
  border-radius: 10px;
}
.top_tool .items .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_tool .items .item .txt-gr {
  position: relative;
  z-index: 2;
  margin-top: -67px;
  padding: 10px 20px;
  border-radius: 0 8px 0 0;
  background-color: #fff;
  width: 60.2739726%;
}
.top_tool .items .item .txt-gr::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../img/top/tool/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.top_tool .items .item .txt-gr h2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #056AB8;
  margin-bottom: 8px;
}

.popup_simulate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.popup_simulate.show {
  opacity: 1;
  visibility: visible;
}
.popup_simulate .wrapper {
  height: 100%;
}
.popup_simulate .outer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.popup_simulate .container {
  position: relative;
  width: 1344px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border: #0486D0 solid 3px;
}
.popup_simulate .container .close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 41px;
  height: 41px;
  z-index: 3;
}
.popup_simulate .container .close:hover {
  cursor: pointer;
}
.popup_simulate .container .close span {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #0486D0;
}
.popup_simulate .container .close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.popup_simulate .container .close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.popup_simulate .container .content {
  position: relative;
  z-index: 2;
  padding: 52px 0;
  width: 55%;
}
.popup_simulate .container .content .heading {
  font-size: 3.6rem;
  font-weight: 600;
  color: #fff;
  background-color: #056AB8;
  display: inline-block;
  padding: 15px 64px 14px 44px;
  letter-spacing: 0.075em;
  margin-bottom: 32px;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.popup_simulate .container .content .desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.top_toparents {
  background-color: #fff;
  position: relative;
  padding-top: 200px;
  overflow: hidden;
}
.top_toparents::before {
  content: "";
  width: 23.8541667%;
  aspect-ratio: 1/0.709606987;
  position: absolute;
  top: 200px;
  z-index: 2;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/top/map/ashirai-left.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_toparents .heading {
  text-align: center;
  margin-bottom: 64px;
}
.top_toparents .heading .common_sectiontitle {
  text-align: left;
  display: inline-block;
}
.top_toparents .content .back {
  padding: 136px 0;
  background-image: url(../img/top/toparents/back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition-duration: 0.75s;
  filter: blur(10px);
}
.top_toparents .content .back .container {
  opacity: 0;
}
.top_toparents .content .back .container .left {
  position: relative;
  z-index: 0;
  width: 50%;
}
.top_toparents .content .back .container .left::after {
  z-index: -1;
  content: "";
  display: block;
  width: 147%;
  height: 174%;
  background-image: url(../img/top/toparents/crowd.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -32%;
  left: -29%;
  pointer-events: none;
}
.top_toparents .content .back.is-animated {
  opacity: 1;
  transition-duration: 0.75s;
  filter: blur(0);
}
.top_toparents .content .back.is-animated .container {
  opacity: 1;
  transition-delay: 0.5s;
  transition-duration: 1s;
}
.top_toparents .content .container {
  position: relative;
  z-index: 2;
  position: relative;
}
.top_toparents .content .container .content {
  width: 50%;
}
.top_toparents .content .container h3 {
  font-size: 3.6rem;
  color: #0486D0;
  padding-bottom: 10px;
  margin-bottom: 45px;
}
.top_toparents .content .container .copy {
  margin-bottom: 35px;
  font-size: 2.4rem;
  color: #000;
  letter-spacing: 0.075em;
  line-height: 1.6;
  font-weight: 600;
}
.top_toparents .content .container .desc {
  line-height: 2.5;
}
.top_toparents .content .image {
  position: absolute;
  z-index: 2;
  top: -25%;
  right: 0;
  width: 38.6729167%;
  aspect-ratio: 1/0.65;
}
.top_toparents .content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ddd;
}
.top_toparents .content .image::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background-image: linear-gradient(to bottom, #00BFFF, #0486D0);
  top: 48px;
  right: 0;
}
.top_toparents .content .block {
  position: relative;
  margin-top: 12vw;
}
.top_toparents .content .block:nth-of-type(2n - 1) {
  transform: translateX(50px);
  opacity: 0;
}
.top_toparents .content .block:nth-of-type(2n - 1).is-animated {
  transform: translateX(0px);
  opacity: 1;
  transition-duration: 0.75s;
}
.top_toparents .content .block:nth-of-type(2n) {
  transform: translateX(-50px);
  opacity: 0;
}
.top_toparents .content .block:nth-of-type(2n).is-animated {
  transform: translateX(0px);
  opacity: 1;
  transition-duration: 0.75s;
}
.top_toparents .content .block:first-of-type {
  margin-top: 100px;
}
.top_toparents .content .block:last-of-type {
  padding-bottom: 100px;
}
.top_toparents .content .block .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.top_toparents .content .block .container::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0486D0;
  position: absolute;
  top: 62px;
  left: 0;
}
.top_toparents .content .block .container--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.top_toparents .content .block--single {
  position: relative;
}
.top_toparents .content .block--single::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 0;
  width: 22.343%;
  aspect-ratio: 1/0.66;
  background-image: url(../img/top/toparents/ashirai-slash.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.top_toparents .content .block--single .container .content {
  width: 100%;
}
.top_toparents .content .block--center {
  width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.top_toparents .content .block--reverse .container .content {
  margin-left: auto;
  margin-right: 0;
}
.top_toparents .content .block--reverse .image {
  right: initial;
  left: 0;
}
.top_toparents .content .block--reverse .image::after {
  top: 48px;
  left: 0;
}
.top_toparents .content .block.welfare {
  padding-top: 100px;
}
.top_toparents .content .block.welfare .image {
  left: 0%;
  transform: translateX(40%);
  width: 27.604%;
  aspect-ratio: 1/1.2854209;
}
.top_toparents .content .block.welfare .image::after {
  top: 37.5px;
  left: initial;
  right: -16px;
}

.top_end {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.top_end .content .back {
  position: relative;
  height: 25vw;
  width: 100%;
  background-image: url(../img/top/end/back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_end .content .back .wrapper {
  position: relative;
  height: 100%;
}
.top_end .content .back .wrapper .items {
  position: absolute;
  left: 2.5%;
  width: 95%;
  bottom: 0;
  transform: translateY(50%);
}
.top_end .content .back .wrapper .items .item .eng {
  font-size: 2.4rem;
  font-weight: 600;
}
.top_end .content .back .items {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition-duration: 0.75s;
}
.top_end .content .back .items a {
  padding: 0 24px;
  width: 48.75%;
  height: 280px;
  display: block;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.top_end .content .back .items a:nth-of-type(1) {
  background-image: linear-gradient(270deg, #00BFFF, #00BFFF, #5ACDF4);
  transform: translateX(5%);
}
.top_end .content .back .items a:nth-of-type(2) {
  background-image: linear-gradient(90deg, #00BFFF, #0486D0, #0486D0);
  transform: translateX(-5%);
}
.top_end .content .back .items a .eng {
  display: block;
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.006em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding-bottom: 16px;
}
.top_end .content .back .items a .ja {
  border-top: 1px solid #fff;
  display: block;
  width: calc(100% - 160px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
}
.top_end .content .back .btns {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  justify-content: center;
}
.top_end .content .back .btns a {
  width: 42.5%;
  display: block;
}
.top_end .content .back .btns a:nth-of-type(1) {
  transform: translateX(20px);
}
.top_end .content .back .btns a:nth-of-type(1):hover {
  opacity: 1;
  transform: scale(1.05) translateX(20px);
}
.top_end .content .back .btns a:nth-of-type(2) {
  transform: translateX(-20px);
}
.top_end .content .back .btns a:nth-of-type(2):hover {
  opacity: 1;
  transform: scale(1.05) translateX(-20px);
}
.top_end .content .back.is-animated .items {
  opacity: 1;
  transition-duration: 0.75s;
}

@media screen and (max-width: 1620px) {
  .top_outline::before {
    top: 80px;
    max-width: 297px;
    width: 10.854167%;
  }
  .top_map {
    position: relative;
    z-index: 0;
    padding-top: 96px;
    padding-bottom: 161px;
  }
  .top_map::before {
    width: 10.854167%;
    transform: translateY(-20%);
  }
  .top_toparents .content .back .container .left {
    width: 58%;
  }
}
@media screen and (max-width: 768px) {
  .top_kv {
    top: 0;
    left: 0;
    width: 100%;
    height: 177.064222vw;
  }
  .top_kv .copy {
    top: 16.416667vw;
    left: 7vw;
    width: 85vw;
  }
  .top_kv .copy img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top_kv .desc {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(50%);
    position: absolute;
    z-index: 2;
    top: initial;
    bottom: 21vw;
    left: 3vw;
    width: 53.983333vw;
  }
  .top_kv .image {
    opacity: 1;
    transform: translateX(0%);
    position: absolute;
    z-index: 1;
    top: initial;
    bottom: 0;
    right: 0;
    width: 95vw;
    height: 134vw;
  }
  .top_kv .scroll {
    display: none;
  }
  .top_startbtn {
    margin-top: calc(177.064222vw - 42px);
    position: relative;
    z-index: 2;
  }
  .top_startbtn .wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .top_startbtn .btns {
    transform: translateY(-24px);
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
  .top_startbtn .btns a {
    width: 50%;
    transform: initial;
    -webkit-clip-path: initial;
            clip-path: initial;
    aspect-ratio: 1/0.366667;
  }
  .top_startbtn .btns a img {
    width: 100%;
  }
  .top_startbtn .btns a:nth-of-type(1) {
    transform: translateX(16px);
  }
  .top_startbtn .btns a:nth-of-type(2) {
    transform: translateX(-16px);
  }
  .top_startbtn .btns a .eng {
    font-size: 2rem;
    padding-bottom: 8px;
  }
  .top_startbtn .btns a .ja {
    padding-top: 2.4px;
    width: 100%;
    padding-top: 8px;
    font-size: 1.5rem;
  }
  .top_blog {
    padding-top: 40px;
  }
  .top_blog .heading-gr {
    display: block;
    margin-bottom: 40px;
    gap: 85px;
  }
  .top_blog .content .slide .arrows-btns-outer {
    margin-top: 40px;
    align-items: center;
    gap: 32px;
  }
  .top_blog .content .slide .arrows-btns-outer .arrows-btns {
    transform: translateY(8px);
    display: flex;
    justify-content: right;
    gap: 64.8px;
  }
  .top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-prev {
    position: relative;
    width: 11.4666666667px;
    height: 18.6px;
  }
  .top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-prev::after {
    width: 11.4666666667px;
    height: 18.6px;
  }
  .top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-next {
    position: relative;
    width: 11.4666666667px;
    height: 18.6px;
  }
  .top_blog .content .slide .arrows-btns-outer .arrows-btns .swiper-button-next::after {
    width: 11.4666666667px;
    height: 18.6px;
  }
  .top_blog .content .slide .arrows-btns-outer .morebtn {
    width: 240px;
  }
  .top_blog .content .slide .arrows-btns-outer .morebtn a {
    padding-bottom: 13px;
    border-bottom: solid 3px #056AB8;
  }
  .top_blog .content .slide .arrows-btns-outer .morebtn a span {
    font-size: 1.4rem;
  }
  .top_blog .content .slide .arrows-btns-outer .morebtn a::after {
    width: 19.1666666667px;
    height: 15px;
  }
  .top_blog .content .slide .item .title {
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .top_blog .content .slide .item .sub-info {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .top_blog .content .slide .item .sub-info time {
    font-size: 1.2rem;
  }
  .top_blog .content .slide .item .sub-info .cat::before {
    content: "/";
    font-size: 1.2rem;
  }
  .top_blog .content .slide .item .sub-info .cat li {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .top_outline {
    position: relative;
    margin-top: -2px;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .top_outline::before {
    width: 24.58333333vw;
    aspect-ratio: 1/0.95;
    position: absolute;
    top: 40px;
    right: 0;
  }
  .top_outline .content .container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .top_outline .content .container .heading {
    margin-bottom: 24px;
  }
  .top_outline .content .container .desc {
    margin-bottom: 24px;
    font-size: 1.4rem;
    line-height: 2;
  }
  .top_outline .content .container .morebtn {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .top_outline .content .container .morebtn a {
    padding-bottom: 6px;
    border-bottom: solid 3px #056AB8;
  }
  .top_outline .content .container .morebtn a span {
    font-size: 1.4rem;
  }
  .top_outline .content .container .morebtn a::after {
    width: 19.1666666667px;
    height: 15px;
  }
  .top_outline .content .image {
    width: 100%;
    right: 0;
    top: 0;
    aspect-ratio: 1/0.518378888;
    margin-left: auto;
    margin-right: 0;
    align-self: start;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .top_map {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .top_map::after {
    pointer-events: none;
    content: "";
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: transparent linear-gradient(180deg, var(--unnamed-color-eaeffb) 0%, var(--unnamed-color-eaeffb) 84%, var(--unnamed-color-ffffff) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #EAEFFB 0%, #EAEFFB 84%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
  }
  .top_map .content {
    position: relative;
    z-index: 2;
  }
  .top_map .content .container .lr {
    display: block;
  }
  .top_map .content .container .lr .left {
    margin-top: 0px;
    width: 100%;
  }
  .top_map .content .container .lr .right {
    width: 100%;
  }
  .top_map .content .container .lr .heading-gr {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 34px;
  }
  .top_map .content .container .lr .image .dot {
    width: 2.8%;
    border: 1px solid #fff;
  }
  .modal .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .modal .wrapper .container {
    width: 100%;
  }
  .modal .wrapper .heading-bar {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 16px 24px 16px 12px;
  }
  .modal .wrapper .heading-bar h2 {
    font-size: 1.7rem;
  }
  .modal .wrapper .heading-bar .eng {
    font-size: 1.3rem;
  }
  .modal .wrapper .heading-bar .cross {
    right: 12px;
    width: 24px;
    height: 24px;
  }
  .modal .wrapper .heading-bar .cross span {
    top: 50%;
  }
  .modal .wrapper .content {
    padding: 20px 12px 20px;
  }
  .modal .wrapper .content .desc {
    margin-top: 12px;
    font-size: 1.4rem;
  }
  .top_feature .content {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }
  .top_feature .video-container {
    padding: 24px 16px;
    width: 100%;
    min-height: initial;
    display: block;
  }
  .top_feature .video-container .video {
    width: 100%;
  }
  .top_feature .video-container .role {
    margin-top: 2.4px;
    width: 100%;
  }
  .top_feature .video-container .role::before {
    height: 2px;
  }
  .top_feature .video-container .role span {
    font-size: 1.5rem;
    min-width: 106px;
  }
  .top_feature .container {
    position: initial;
    right: 0;
    top: 16px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .top_feature .container .heading {
    margin-bottom: 24px;
  }
  .top_feature .container .desc {
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 2;
  }
  .top_number {
    padding-top: 76px;
    padding-bottom: 0px;
  }
  .top_number .heading {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .top_number .heading h2 {
    font-size: 2.4rem;
    padding: 0 24px;
  }
  .top_number .section {
    padding: 48px 0 0;
  }
  .top_number .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .top_number .stats {
    /* カード共通 */
    /* SP：1カラムに自動落ち（順序はマークアップ順） */
  }
  .top_number .stats__grid {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .top_number .stats .card {
    box-shadow: 0 2.5px 7px 1px rgba(0, 0, 0, 0.1);
    padding: 12px 8px 23px;
    width: 100%;
  }
  .top_number .stats .card__title {
    font-weight: 500;
    margin-bottom: 12px;
  }
  .top_number .stats .card__num {
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
  }
  .top_number .stats .card__unit {
    font-size: 3.5rem;
    margin-left: 4px;
  }
  .top_number .stats .card__note {
    margin-top: 16px;
  }
  .top_number .stats .card__split {
    display: grid;
    gap: 10px;
  }
  .top_number .stats__grid {
    grid-template-columns: 1fr;
    grid-template-areas: none; /* エリア解除して縦積み */
  }
  .top_number .stats .card {
    padding: 24px 16px;
  }
  .top_number .stats .card__num {
    font-size: 20px;
  }
  .top_number .card {
    width: 100%;
  }
  .top_number .card__title {
    font-size: 2rem;
  }
  .top_number .card__num .js-count {
    font-size: 4.8rem;
  }
  .top_number .card__note {
    font-size: 1.4rem;
  }
  .top_number .card--gender .card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .top_number .card--gender .card__body .sexuals {
    display: flex;
    gap: 16px;
  }
  .top_number .card--gender .card__body .card__num {
    width: 100%;
  }
  .top_number .card--gender .card__body .card__num .sub {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 8px;
  }
  .top_number .card--gender .card__body .video {
    transform: translateY(0px);
    position: relative;
    z-index: 1;
    left: 0%;
    top: 0;
    width: 100%;
  }
  .top_number .card--newgrad .card__body .circle {
    margin-top: 40px;
  }
  .top_number .card--newgrad .card__body .circle .card__num .js-count {
    font-size: 4.8rem;
  }
  .top_number .card--newgrad .card__body .circle .card__num:nth-of-type(1) {
    top: 0%;
    left: 0%;
  }
  .top_number .card--newgrad .card__body .circle .card__num:nth-of-type(2) {
    bottom: 25%;
  }
  .top_number .card--newgrad .card__body .circle .sub {
    font-size: 1.6rem;
  }
  .top_number .card--twenties .card__num {
    transform: translateY(0px);
  }
  .top_number .card--since .card__num {
    transform: translateY(0px);
  }
  .top_number .card--sales .card__num .js-count {
    font-size: 4.8rem;
  }
  .top_number .card--sales .card__note {
    margin-top: 8px;
    font-size: 1.4rem;
  }
  .top_number .card--cases {
    text-align: center;
  }
  .top_number .card--cases .card__body {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  .top_number .card--cases .card__num {
    margin-top: 12px;
  }
  .top_number .card--cases .card__num .js-count {
    font-size: 5.6rem;
  }
  .top_number .card--cases .card__unit {
    margin-left: 8px;
    transform: translateY(8px);
    font-size: 1.3rem;
  }
  .top_number .card--cases .card__note {
    position: relative;
    margin-top: 8px;
    font-size: 1.5rem;
    padding: 0 20px;
    margin-bottom: 8px;
  }
  .top_number .card--bonus {
    width: 100%;
  }
  .top_number .card--bonus .card__num {
    transform: translateY(0px);
  }
  .top_number .card--salary {
    width: 100%;
    transform: translateX(0);
  }
  .top_number .card--salary .card__split > div {
    justify-content: center;
    gap: 16px;
    align-items: center;
  }
  .top_number .card--salary .card__split > div .card__num .js-count {
    font-size: 4.8rem;
  }
  .top_number .card--salary .card__split > div .card__num .card__unit {
    font-size: 1.6rem;
    display: block;
    text-align: center;
  }
  .top_number .card--salary .card__split > div .card__tag {
    position: relative;
    font-size: 1.7rem;
    transform: translateY(0px);
    position: relative;
  }
  .top_number .card--salary .card__split > div .card__tag::after {
    content: "";
    display: block;
    width: 100%;
    height: 94%;
    background-image: url(../img/top/num/icon-arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .top_number .card--salary .card__split > div .card__tag span {
    display: inline-block;
    transform: translateY(1px);
    font-size: 2.8rem;
    margin-left: 2.4px;
    margin-right: 2.4px;
  }
  .top_number .card--overtime .card__num .js-count {
    font-size: 4.8rem;
  }
  .top_tool {
    padding-top: 82px;
  }
  .top_tool::before {
    top: 0;
  }
  .top_tool .items {
    flex-wrap: wrap;
  }
  .top_tool .items .item {
    width: 100%;
  }
  .top_tool .items .item .txt-gr {
    position: relative;
    z-index: 2;
    margin-top: -67px;
    padding: 10px 20px 10px 12px;
    width: 80.2739726%;
  }
  .top_tool .items .item .txt-gr::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 13.3333333333px;
    height: 13.3333333333px;
  }
  .top_tool .items .item .txt-gr h2 {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  .popup_simulate .container .close {
    width: 32px;
    height: 32px;
  }
  .popup_simulate .container .content {
    padding: 24px;
    width: 100%;
  }
  .popup_simulate .container .content .heading {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
  .top_toparents {
    margin-top: -2px;
    padding-top: 75px;
  }
  .top_toparents::before {
    top: 72px;
  }
  .top_toparents .heading {
    margin-bottom: 32px;
  }
  .top_toparents .content .back {
    padding: 0px 0;
    background-image: url(../img/top/toparents/back.jpg);
    background-image: none;
  }
  .top_toparents .content .back .image-top {
    margin-bottom: 24px;
  }
  .top_toparents .content .back .container .left {
    width: 100%;
  }
  .top_toparents .content .back .container .left::after {
    width: 100%;
    height: 100%;
    background-image: url(../img/top/toparents/crowd-sp.png);
    top: 0%;
    left: 0%;
  }
  .top_toparents .content .container {
    position: relative;
    z-index: 2;
    position: relative;
  }
  .top_toparents .content .container .content {
    width: 100%;
  }
  .top_toparents .content .container h3 {
    font-size: 2.2rem;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
  .top_toparents .content .container .copy {
    margin-bottom: 17.5px;
    font-size: 1.8rem;
  }
  .top_toparents .content .container .desc {
    line-height: 2;
  }
  .top_toparents .content .image {
    margin-top: 0;
    position: relative;
    top: 0;
    width: 90%;
    margin-left: auto;
    margin-right: 0;
  }
  .top_toparents .content .image::after {
    top: initial;
    bottom: -3.4%;
    left: -2.5%;
    right: initial;
  }
  .top_toparents .content .block {
    margin-top: 24px;
    display: flex;
    flex-direction: column-reverse;
  }
  .top_toparents .content .block:first-of-type {
    margin-top: 0px;
  }
  .top_toparents .content .block:last-of-type {
    padding-bottom: 40px;
  }
  .top_toparents .content .block .container {
    margin-top: 32px;
  }
  .top_toparents .content .block .container h3 {
    border-bottom: solid 2px #0486D0;
  }
  .top_toparents .content .block .container::before {
    display: none;
  }
  .top_toparents .content .block .container--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .top_toparents .content .block--single {
    position: relative;
  }
  .top_toparents .content .block--single::after {
    top: 27px;
    right: 0;
    width: 22%;
    aspect-ratio: 1/0.67;
  }
  .top_toparents .content .block--single .container .content {
    width: 100%;
  }
  .top_toparents .content .block--center {
    margin-top: 0;
    width: 100%;
  }
  .top_toparents .content .block--reverse .container .content {
    margin-left: auto;
    margin-right: 0;
  }
  .top_toparents .content .block--reverse .image {
    right: initial;
    left: initial;
    margin-left: 0;
    margin-right: auto;
  }
  .top_toparents .content .block--reverse .image::after {
    top: initial;
    bottom: -3.4%;
    left: initial;
    right: -2.5%;
  }
  .top_toparents .content .block.welfare {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 24px;
    margin-top: 0;
  }
  .top_toparents .content .block.welfare .image {
    margin-left: auto;
    margin-right: 32px;
    left: 0%;
    transform: translateX(0%);
    width: 63%;
    margin-bottom: 40px;
  }
  .top_toparents .content .block.welfare .image::after {
    bottom: -8px;
    left: initial;
    right: -8px;
  }
  .top_end {
    position: relative;
    z-index: 2;
  }
  .top_end .content .back {
    height: 38vw;
    background-image: url(../img/top/end/back.jpg);
  }
  .top_end .content .back .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .top_end .content .back .wrapper .items {
    transform: translateY(0%);
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
  }
  .top_end .content .back .wrapper .items .item .eng {
    font-size: 1.8rem;
  }
  .top_end .content .back .items {
    transform: translateY(0%);
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
  }
  .top_end .content .back .items a {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    -webkit-clip-path: initial;
            clip-path: initial;
    height: initial;
    padding: 16px;
  }
  .top_end .content .back .items a:nth-of-type(1) {
    transform: translateX(0%);
  }
  .top_end .content .back .items a:nth-of-type(2) {
    transform: translateX(0%);
  }
  .top_end .content .back .items a .eng {
    font-size: 2rem;
    padding-bottom: 8px;
  }
  .top_end .content .back .items a .ja {
    padding-top: 2.4px;
    width: 100%;
    padding-top: 8px;
    font-size: 1.5rem;
  }
  .top_end .content .back .btns {
    position: relative;
    height: 100%;
    transform: translateY(0px);
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }
  .top_end .content .back .btns a {
    width: 50%;
    transform: initial;
    -webkit-clip-path: initial;
            clip-path: initial;
    aspect-ratio: 1/0.366667;
  }
  .top_end .content .back .btns a img {
    width: 100%;
  }
  .top_end .content .back .btns a:nth-of-type(1) {
    transform: translateX(16px);
  }
  .top_end .content .back .btns a:nth-of-type(2) {
    transform: translateX(-16px);
  }
  .top_end .content .back .btns a .eng {
    font-size: 2rem;
    padding-bottom: 8px;
  }
  .top_end .content .back .btns a .ja {
    padding-top: 2.4px;
    width: 100%;
    padding-top: 8px;
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=top.css.map */