@charset "UTF-8";
:root {
  --main-base-color:#fff;
  --text-black:#121821;
  --main-gray-color:#E9EBDF;
  --primary-color:#0BE512;
  --secondary-color:#007A00;
  --color01:#029E01;
  --color02:#DAFF0B;
  --color03:#0F4C05;
  --main-fontJa:"Noto Sans JP",sans-serif;
  --main-fontEn: "Montserrat Alternates", sans-serif;
  --main-fontNum: "Montserrat Alternates", sans-serif;
  --common-r01:8px;
  --common-r02:16px;
  --common-r03:32px;
  --contents-width:1300;
  --contents-width-px:calc(var(--contents-width) * 1px);
  --pc-width:1600;
  --pc-width-px:calc(var(--pc-width) * 1px);
  --sp-width:375;
  --sp-width-px:calc(var(--sp-width) * 1px);
  --loop-width:3200;
  --loop-width-px:calc(var(--loop-width) * 1px);
  --sc01-pd:130px 0 160px;
  --sc02-pd:45px 0 45px;
}
@media (max-width: 960px) {
  :root {
    --loop-width:1600;
    --sc01-pd:65px 0 80px;
    --sc02-pd:45px 0 45px;
  }
}

/**********************
* mv
*************************/
.mv {
  position: relative;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--main-gray-color);
}
@media (max-width: 768px) {
  .mv {
    aspect-ratio: 15/18;
  }
}
.mv .g01 {
  grid-area: 1/1/2/3;
}
.mv .g02 {
  grid-area: 1/1/2/3;
}
.mv .l-inner {
  position: relative;
  width: calc(1300 / 1600 * 100%);
  height: 100%;
}
@media (max-width: 768px) {
  .mv .l-inner {
    width: 92%;
  }
}

.mv-detail {
  width: 100%;
}

.mv-movie {
  position: relative;
  aspect-ratio: 1600/789;
  width: 100%;
  background-size: cover;
  pointer-events: none;
}
@media (max-width: 768px) {
  .mv-movie {
    aspect-ratio: 15/16;
  }
}
.mv-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-movie::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 100/3;
  background: var(--main-gray-color);
  -webkit-mask-image: url(../img/top/mv_bottom.svg);
          mask-image: url(../img/top/mv_bottom.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
}

.mv-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  right: 1%;
  bottom: 19%;
  font-size: 86px;
  font-size: min(86px, 5.37vw);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 120%;
  font-feature-settings: "palt";
  color: var(--text-black);
  z-index: 12;
}
@media (max-width: 768px) {
  .mv-title {
    font-size: 30px;
    font-size: 8vw;
  }
}
.mv-title span {
  position: relative;
  padding: 0;
  display: inline-block;
  opacity: 0;
  transform: translateX(-0.5em);
  transition: 1s ease-in 0s;
  transition-property: opacity, transform;
  background-color: #fff;
}
.mv-title span + span {
  margin-left: 2.2em;
  margin-top: 0.25em;
}
.mv-title.is-show span {
  opacity: 1;
  transform: translateX(0);
}
.mv-title.is-show span::after {
  width: 100%;
}
.mv-title.is-show span:nth-child(2) {
  transition-delay: 0.2s;
}

.mv-swiper {
  position: absolute;
  left: 0;
  top: 7%;
  width: calc(505 / 1300 * 100%);
  aspect-ratio: 605/904;
  border-radius: 20vw;
  overflow: hidden;
  z-index: 11;
}
@media (max-width: 768px) {
  .mv-swiper {
    left: 0;
    top: auto;
    bottom: 15%;
    width: calc(250 / 375 * 100%);
    border-radius: 40vw;
  }
}

.scroll-box {
  position: absolute;
  left: -5%;
  bottom: 19%;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(202px, 202 / var(--contents-width) * 100%);
  aspect-ratio: 1/1;
}
.scroll-box::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/top/sd-circle.svg) no-repeat center/contain;
  -webkit-animation: rotate 12s infinite linear;
          animation: rotate 12s infinite linear;
}
@media (max-width: 768px) {
  .scroll-box::before {
    display: none;
  }
}

.scroll-arrow {
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
          animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .scroll-arrow {
    width: 15px;
  }
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
.rotate {
  -webkit-animation: rotate 12s infinite linear;
          animation: rotate 12s infinite linear;
}

.sec-top-spacer {
  position: relative;
  height: auto;
  width: 100%;
  aspect-ratio: 1600/160;
  background-color: var(--main-gray-color);
}

/* about */
.sec-top-about {
  position: relative;
  padding-top: 195px;
  padding-bottom: 112px;
}
@media (max-width: 960px) {
  .sec-top-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 960px) {
  .sec-top-about .l-inner {
    width: 100%;
  }
}

.about-grid01 {
  position: relative;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-rows: auto;
  grid-template-columns: calc(877 / var(--pc-width) * 100%) 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
}
.about-grid01 .g03 {
  grid-area: 1/1/3/2;
}
.about-grid01 .g01 {
  grid-area: 1/1/2/2;
}
.about-grid01 .g02 {
  grid-area: 1/2/3/3;
}
@media (max-width: 960px) {
  .about-grid01 {
    display: grid;
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "g01" "g03" "g02";
  }
  .about-grid01 .g01 {
    grid-area: g01;
  }
  .about-grid01 .g02 {
    grid-area: g02;
  }
  .about-grid01 .g03 {
    grid-area: g03;
  }
}

.about-title {
  position: relative;
  left: 13%;
  top: -90px;
  z-index: 2;
}
@media (max-width: 960px) {
  .about-title {
    padding: 0 6.5%;
    left: 0;
    top: 0;
    z-index: 1;
  }
}

.about-text {
  padding-top: 45px;
  padding-left: calc(160 / 725 * 100%);
  padding-right: calc(131 / 725 * 100%);
}
@media (max-width: 960px) {
  .about-text {
    margin-top: 40px;
    padding: 0 6.5%;
  }
}

.about-thumb01 {
  position: relative;
  left: 0;
}
@media (max-width: 960px) {
  .about-thumb01 {
    margin-top: 40px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.about-thumb01 picture {
  display: block;
  overflow: hidden;
  border-radius: 0 var(--common-r03) var(--common-r03) 0;
  aspect-ratio: 329/263;
}
@media (max-width: 960px) {
  .about-thumb01 picture {
    border-radius: 0;
    aspect-ratio: 2/1;
  }
}
.about-thumb01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-button {
  margin: 65px auto 0;
  max-width: 315px;
}
@media (max-width: 960px) {
  .about-button {
    margin: 40px auto 0;
    width: 87%;
  }
}

/*  strong */
.sec-top-strong {
  position: relative;
  padding: 160px 0 160px;
}
@media (max-width: 960px) {
  .sec-top-strong {
    padding: 80px 0 80px;
  }
}

.strong-grid01 {
  position: relative;
  counter-reset: number 0;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-rows: auto;
  grid-template-columns: 1fr calc(577 / var(--pc-width) * 100%);
  grid-template-rows: auto auto auto;
  gap: 0;
}
.strong-grid01 .g03 {
  grid-area: 1/1/3/2;
}
.strong-grid01 .g02 {
  grid-area: 1/2/3/3;
}
.strong-grid01 .g01 {
  grid-area: 1/2/2/3;
}
@media (max-width: 960px) {
  .strong-grid01 {
    display: grid;
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "g01" "g02" "g03";
  }
  .strong-grid01 .g01 {
    grid-area: g01;
  }
  .strong-grid01 .g02 {
    grid-area: g02;
  }
  .strong-grid01 .g03 {
    grid-area: g03;
  }
}

.strong-grid01-title {
  position: relative;
  top: 35px;
  left: 9%;
  z-index: 2;
  width: 8em;
}
@media (max-width: 960px) {
  .strong-grid01-title {
    padding: 0 6.5%;
    left: 0;
    top: 0;
    width: 100%;
  }
}

.strong-thumb {
  position: relative;
  top: 175px;
}
@media (max-width: 960px) {
  .strong-thumb {
    margin-top: 40px;
    top: 0;
  }
}
.strong-thumb picture {
  display: block;
  border-radius: var(--common-r03) 0 0 var(--common-r03);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 577/667;
}
@media (max-width: 960px) {
  .strong-thumb picture {
    border-radius: 0;
    aspect-ratio: 2/1;
  }
}
.strong-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.strong-body {
  padding-left: calc(128 / 1223 * 100%);
  padding-right: calc(165 / 1223 * 100%);
}
@media (max-width: 960px) {
  .strong-body {
    padding: 0 6.5%;
  }
}

.strong-item {
  position: relative;
  display: block;
  padding: 46px 9em 46px 1em;
  font-size: 18px;
  font-weight: 500;
}
.strong-item:not(:last-child) {
  border-bottom: 1px solid #BDBDBD;
}
@media (max-width: 960px) {
  .strong-item {
    padding: 30px 1.5em 30px 1em;
  }
}

.strong-title {
  position: relative;
  padding-left: 110px;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 960px) {
  .strong-title {
    padding-left: 15%;
    font-size: 24px;
  }
}
.strong-title::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: var(--main-fontEn);
  font-size: 54px;
  font-weight: 600;
  line-height: 90%;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .strong-title::before {
    top: 0.15em;
    font-size: 24px;
  }
}

.strong-text {
  margin-top: 2em;
  padding-left: 110px;
  font-feature-settings: "palt";
}
@media (max-width: 960px) {
  .strong-text {
    padding-left: 0;
    font-size: 16px;
  }
}

.strong-arrow {
  position: absolute;
  right: 5%;
  bottom: 52px;
  width: 66px;
  height: 66px;
}
@media (max-width: 768px) {
  .strong-arrow {
    position: relative;
    margin-left: auto;
    right: 0;
    bottom: 0;
    width: 33px;
    height: 33px;
  }
}

/* service */
.sec-top-service {
  position: relative;
  padding: 113px 0 156px;
}
@media (max-width: 960px) {
  .sec-top-service {
    padding-top: calc(50 / 375 * 100%);
    padding-bottom: 75px;
  }
}

.service-list {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: flex-start;
  gap: 16px 16px;
}
@media (max-width: 960px) {
  .service-list {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-item:nth-child(even) {
  transform: translateY(72px);
}
@media (max-width: 960px) {
  .service-item:nth-child(even) {
    transform: translateY(0);
  }
}

.service-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 calc(48 / 663 * 100%);
  background-color: #F7F7F2;
  border-radius: var(--common-r01);
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0 0;
  }
}

.service-thumb {
  border-radius: var(--common-r01);
  overflow: hidden;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.service-body {
  position: relative;
  padding: 2em 0;
}
@media (max-width: 768px) {
  .service-body {
    margin-left: auto;
    padding: 1em 0;
    width: 92%;
  }
}

.service-text {
  margin-top: 16px;
  padding-right: calc(32px + 2em);
  font-size: 13px;
  line-height: 160%;
}
@media (max-width: 768px) {
  .service-text {
    margin-top: 16px;
  }
}

.service-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color01);
}
@media (max-width: 768px) {
  .service-title {
    font-size: 18px;
  }
}
.service-title span {
  display: block;
  font-size: 16px;
}
@media (max-width: 768px) {
  .service-title span {
    font-size: 14px;
  }
}

.service-arrow {
  position: absolute;
  right: 1em;
  bottom: 2em;
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .service-arrow {
    bottom: 1em;
  }
}

.service-item:hover .service-thumb img, .service-item:focus .service-thumb img {
  transform: scale(1.2);
}

/* ループスライダー　*/
@-webkit-keyframes infinity-scroll-left {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes infinity-scroll-left2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes infinity-scroll-left2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes infinity-scroll-right {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes infinity-scroll-right {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes infinity-scroll-right2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes infinity-scroll-right2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
.loop-slider-area {
  position: relative;
  padding: 0 0 160px;
  overflow: hidden;
  width: 100%;
  background-color: var(--main-gray-color);
  background-image: url(../img/common/bg_dot.png), url(../img/common/bg_dot.png);
  background-repeat: repeat-y, repeat-y;
  background-size: 60px, 60px;
  background-position: bottom right, top left, top right;
}
@media (max-width: 1600px) {
  .loop-slider-area {
    background-size: 30px, 30px;
  }
}
@media (max-width: 960px) {
  .loop-slider-area {
    background-size: 20px, 20px;
  }
}
@media (max-width: 768px) {
  .loop-slider-area {
    padding: 60px 0;
  }
}
.loop-slider-area::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  padding-top: 25vw;
  height: 0;
  background-color: #fff;
}

.loop-slider-wrap {
  display: flex;
  overflow: hidden;
  width: calc(var(--loop-width) * 2px);
}

.loop-slider {
  display: flex;
  width: var(--loop-width-px);
}
.loop-slider:nth-child(1) {
  -webkit-animation: infinity-scroll-right 60s -30s linear infinite;
          animation: infinity-scroll-right 60s -30s linear infinite;
}
.loop-slider:nth-child(2) {
  -webkit-animation: infinity-scroll-right2 60s linear infinite;
          animation: infinity-scroll-right2 60s linear infinite;
}
.loop-slider li {
  margin-right: 16px;
}

.loop-sider-item {
  border-radius: var(--common-r02);
  overflow: hidden;
  width: calc(600 / var(--contents-width) * 100%);
  aspect-ratio: 6/4;
}
.loop-sider-item img {
  width: 100%;
}

/* company  */
.sec-top-company {
  padding-top: 90px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .sec-top-company {
    padding-top: 0;
    padding-bottom: 75px;
  }
}

.grid-company01 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr calc(800 / var(--pc-width) * 100%);
  grid-template-rows: auto auto;
  gap: 0px 0px;
  grid-template-areas: "g01 g03" "g02 g03";
}
.grid-company01 .g03 {
  grid-area: g03;
}
.grid-company01 .g01 {
  grid-area: g01;
}
.grid-company01 .g02 {
  grid-area: g02;
}
@media (max-width: 960px) {
  .grid-company01 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "g01" "g02" "g03";
  }
}

.company-title,
.company-detail {
  padding-left: calc(200/800 * 100%);
  padding-right: calc(110/800 * 100%);
}
@media (max-width: 960px) {
  .company-title,
.company-detail {
    padding-left: 6.5%;
    padding-right: 6.5%;
  }
}

.company-text01 {
  margin-top: 90px;
  margin-left: auto;
  width: 88%;
}
@media (max-width: 960px) {
  .company-text01 {
    margin-top: 40px;
    margin-left: auto;
    width: 100%;
  }
}

.company-thumb picture {
  display: block;
  overflow: hidden;
  border-radius: var(--common-r03) 0 0 var(--common-r03);
}
@media (max-width: 960px) {
  .company-thumb {
    margin-top: 40px;
  }
  .company-thumb picture {
    border-radius: 0;
  }
}

.menu-company {
  margin-top: 40px;
  margin-left: auto;
  width: 88%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 960px) {
  .menu-company {
    margin-top: 40px;
    margin-left: 0;
    flex-direction: column;
    width: 100%;
  }
}
.menu-company a {
  position: relative;
  padding: 1.75em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.01em;
  border-top: 1px solid #BDBDBD;
  background: rgba(255, 255, 255, 0);
  transition: background ease-in-out 0.3s;
  transition-property: color, background;
}
@media (max-width: 960px) {
  .menu-company a {
    padding: 1em 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid #BDBDBD;
    width: 100%;
    font-size: 16px;
  }
}
.menu-company a:last-child {
  border-bottom: 1px solid #BDBDBD;
}
.menu-company a:hover, .menu-company a:focus {
  color: var(--color01);
}

.menu-company-arrow {
  right: 2.5%;
  width: 44px;
  height: 44px;
}

/* data*/
.sec-top-number {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 960px) {
  .sec-top-number {
    padding-bottom: 60px;
  }
}
.sec-top-number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 108px;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600/362;
  background: url(../img/top/bg_data.webp) no-repeat top center/contain;
}
.sec-top-number .l-inner {
  position: relative;
  max-width: 1246px;
  z-index: 1;
}

.top-title-data {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-data-grid {
  margin: 115px auto 0;
  display: grid;
  grid-template-columns: repeat(11, 1fr); /* 4列 */
  gap: 10px; /* グリッドの間隔 */
  width: calc(1146/ 1246 * 100%);
  max-width: 1146px;
}
@media (max-width: 960px) {
  .top-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .top-data-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-data-item {
  display: flex;
  flex-direction: column;
  padding: 1em 1em 1.5em;
  background-color: #fff;
  border-radius: var(--common-r02);
}
.top-data-item.--large {
  grid-column: span 4;
  grid-row: span 2;
}
@media (max-width: 960px) {
  .top-data-item.--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.top-data-item.--medium {
  grid-column: span 3;
}
@media (max-width: 960px) {
  .top-data-item.--medium {
    grid-column: span 1;
  }
}
.top-data-item.--small {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 960px) {
  .top-data-item.--small {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.top-data-item__title {
  text-align: center;
  padding: 1em 0 1em;
  border-bottom: 1px solid #D9D9D9;
  color: var(--color01);
  font-size: clamp(16px,1.12vw,18px);
  font-weight: 500;
}
.top-data-item__title span {
  position: relative;
  padding-left: 2em;
}
.top-data-item__title span::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: var(--color01);
  -webkit-mask-image: url(../img/common/icon_data.svg);
          mask-image: url(../img/common/icon_data.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.top-data-item__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.top-data-counter .num {
  font-size: clamp(40px,6vw,96px);
  font-weight: 500;
  font-style: italic;
  font-family: var(--main-fontEn);
  color: var(--color01);
}
.top-data-counter .num.small {
  font-size: clamp(32px,4vw,64px);
}
.top-data-counter .unit {
  font-size: clamp(20px,2.37vw,38px);
}
.top-data-counter .unit.small {
  font-size: clamp(12px,1.5vw,24px);
}
.top-data-counter .unit.small02 {
  font-size: clamp(10px,0.87vw,14px);
}
.top-data-counter .unit.small03 {
  font-size: clamp(12px,1.5vw,24px);
}
@media (max-width: 960px) {
  .top-data-counter .num.small {
    font-size: clamp(40px,6vw,96px);
  }
  .top-data-counter .unit {
    font-size: clamp(20px,2.37vw,38px);
  }
  .top-data-counter .unit.small {
    font-size: clamp(20px,2.37vw,38px);
  }
  .top-data-counter .unit.small02 {
    font-size: clamp(20px,2.37vw,38px);
  }
}

.top-data-text {
  margin-top: 1em;
}

.top-data-caution {
  margin: 1em auto 0;
  width: 91.974317817%;
  font-size: 14px;
}

/* recruit */
.sec-top-recruit {
  padding-top: 160px;
  padding-bottom: 185px;
}
@media (max-width: 960px) {
  .sec-top-recruit {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.sec-top-recruit .l-inner {
  max-width: 1343px;
}

.grid-recruit01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  aspect-ratio: 1342/710;
  background: url(../img/top/recruit.webp) no-repeat center/contain;
  border-radius: var(--common-r03);
  overflow: hidden;
  color: #FFF;
  text-align: center;
}
@media (max-width: 960px) {
  .grid-recruit01 {
    aspect-ratio: 750/1065;
    background-size: cover;
    background-image: url(../img/top/recruit_sp.webp);
  }
}

.recruit-title01 {
  font-size: 184px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  text-transform: capitalize;
  font-size: clamp(32px,11.5vw,184px);
}
.recruit-text01 {
  margin-top: 0.75em;
  font-size: 20px;
  line-height: 210%;
  letter-spacing: 0.01em;
}
@media (max-width: 960px) {
  .recruit-text01 {
    font-size: 14px;
  }
}

.recruit-button {
  position: relative;
  top: -30px;
  z-index: 2;
  margin: 0 auto 0;
  width: 536px;
}
@media (max-width: 960px) {
  .recruit-button {
    width: 300px;
  }
}