@charset "UTF-8";
/**************************************/
/* -------------------------
 * トップ共通
 * ------------------------- */
/* 吹き出し（黒）*/
.bubble {
  color: #fffefe;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  margin-bottom: 0.9rem;
  padding: 1.4rem 2.6rem;
  border-radius: 100vmax;
  background-color: #333;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 834px) {
  .bubble {
    font-size: 1.5rem;
    padding: 1rem 1.8rem;
  }
}
.bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 0.9rem 0.5rem 0 0.5rem;
  border-color: #333 transparent transparent;
  translate: -50% 100%;
}

/* 数字（円） */
/* マーク付きリスト */
/* 背景 */
.sec-bg--yellow {
  background-color: var(--bg-yellow);
}

.sec-bg--check {
  background-color: #fff;
  background-image: linear-gradient(0deg, #f7f7f7 1px, transparent 1px), linear-gradient(90deg, #f7f7f7 1px, transparent 1px);
  background-size: 30px 30px;
  background-repeat: repeat;
}

.sec-bg--rounded-top {
  border-radius: min(4vw, 60px) min(4vw, 60px) 0 0;
}

/* ドット線 */
/* 見出し */
@media (max-width: 834px) {
  .sec-ttl {
    margin-bottom: 3rem !important;
  }
}

.sec-ttl--with-sideline {
  font-size: var(--f70);
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  color: #333;
}
.sec-ttl--with-sideline::before, .sec-ttl--with-sideline::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: radial-gradient(circle, currentColor 0.3rem, transparent 0.3rem);
  background-size: 1.2rem 0.6rem;
  background-repeat: repeat-x;
  background-position: center center;
  height: 0.6rem;
}
@media (max-width: 834px) {
  .sec-ttl--with-sideline {
    gap: 1rem;
  }
}

.sec-label--with-border-bg {
  color: #fff;
  font-weight: bold;
  font-size: var(--f32);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100vmax;
  padding: 0.5rem 2rem;
  line-height: 1.5;
  background: url(../img/top/ttl-bg.webp) no-repeat center center/cover;
  position: absolute;
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
}

/* -------------------------
 * アニメーション
 * ------------------------- */
/* -------------------------
 * 追従ボタン
 * ------------------------- */
.floating-btn {
  position: fixed;
  z-index: 25;
  bottom: 2rem;
  right: 2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s ease, visibility 0s linear 0.8s;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}
.floating-btn.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.8s ease, visibility 0s linear 0s;
  transition: opacity 0.8s ease, visibility 0s linear 0s;
}
@media (max-width: 499px) {
  .floating-btn {
    width: 90%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: 3rem;
  }
}

.floating-btn-pc {
  width: 20rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background: url(../img/top/floating-pc.webp) no-repeat center center/cover;
}
@media (max-width: 834px) {
  .floating-btn-pc {
    width: 14rem;
  }
}
@media (max-width: 499px) {
  .floating-btn-pc {
    display: none;
  }
}
.floating-btn-pc .floating-btn-txt {
  margin-top: -56%;
}
@media (max-width: 499px) {
  .floating-btn-pc .floating-btn-txt {
    margin-top: -30%;
  }
}

.floating-btn-txt {
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.47;
  text-align: center;
}
@media (max-width: 834px) {
  .floating-btn-txt {
    font-size: 1.1rem;
  }
}

.floating-btn-sp {
  position: relative;
  background: var(--main-pink);
  color: #fff;
  width: 100%;
  height: 8rem;
  line-height: 1;
  border-radius: 100vmax;
  display: none;
}
@media (max-width: 499px) {
  .floating-btn-sp {
    display: block;
  }
}
.floating-btn-sp .floating-btn-txt {
  font-size: 1.7rem;
  line-height: 1.27;
  position: absolute;
  left: 14%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.floating-btn-sp__img {
  position: absolute;
  right: 11%;
  bottom: 0;
  max-width: 12.5rem;
  width: 25%;
}

/* -------------------------
 * ヒーローエリア
 * ------------------------- */
.top-hero-area {
  background-color: #e6fefe;
  overflow: clip;
}

/* -------------------------
 * MV
 * ------------------------- */
.top-mv {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 12rem;
}
@media (max-width: 834px) {
  .top-mv {
    padding-top: 0;
  }
}

.top-mv__inner {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 1500px;
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 77rem;
}
@media (max-width: 834px) {
  .top-mv__inner {
    width: 100%;
    height: 100vh;
  }
}

.top-mv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5vw;
}
@media (max-width: 834px) {
  .top-mv__content {
    width: 100%;
    margin-top: 0;
    padding-top: 22vw;
  }
}
@media (max-width: 499px) {
  .top-mv__content {
    padding-top: 0;
  }
}

.top-mv__label {
  font-weight: bold;
  font-size: var(--f28);
  color: #fff;
  background: var(--main-green);
  border-radius: 10px;
  line-height: 1;
  padding: 1rem 2rem;
}

.top-mv__catch {
  max-width: 48rem;
  width: 100%;
  margin-block: 3rem 4rem;
}
@media (max-width: 834px) {
  .top-mv__catch {
    width: 67vw;
    margin-block: 2rem;
  }
}

.top-mv__lead {
  font-weight: bold;
  font-size: var(--f24);
  margin-bottom: 10rem;
}
@media (max-width: 834px) {
  .top-mv__lead {
    line-height: 1.5;
    margin-bottom: 4rem;
  }
}
@media (max-width: 499px) {
  .top-mv__lead {
    margin-bottom: 3rem;
  }
}

.top-mv__imgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.is-loaded .top-mv__img-item {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.top-mv__img-item {
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: 0.1s opacity linear, 0.5s transform cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.5s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.top-mv__img-item:nth-child(1) {
  width: 19vw;
  max-width: 31.9rem;
  left: max(3vw, 11rem);
  top: 0;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media (max-width: 834px) {
  .top-mv__img-item:nth-child(1) {
    top: 5%;
    left: 28vw;
    width: 36vw;
  }
}
@media (max-width: 499px) {
  .top-mv__img-item:nth-child(1) {
    width: 28vw;
    top: 8%;
    left: 32vw;
  }
}
.top-mv__img-item:nth-child(2) {
  width: 18vw;
  max-width: 30.3rem;
  left: 0;
  bottom: 20%;
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
@media (max-width: 834px) {
  .top-mv__img-item:nth-child(2) {
    width: 37vw;
    bottom: unset;
    top: 5%;
    left: unset;
    right: -12vw;
  }
}
@media (max-width: 499px) {
  .top-mv__img-item:nth-child(2) {
    width: 27vw;
    top: 12%;
    right: -5vw;
  }
}
.top-mv__img-item:nth-child(3) {
  width: 17vw;
  max-width: 31.5rem;
  left: max(5vw, 18rem);
  bottom: 2%;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
@media (max-width: 834px) {
  .top-mv__img-item:nth-child(3) {
    bottom: unset;
    top: 11%;
    left: -10vw;
    width: 36vw;
  }
}
@media (max-width: 499px) {
  .top-mv__img-item:nth-child(3) {
    width: 28vw;
    top: 17%;
    left: -7vw;
  }
}
.top-mv__img-item:nth-child(4) {
  width: 16vw;
  max-width: 26.2rem;
  right: max(3vw, 14rem);
  top: 0;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
@media (max-width: 834px) {
  .top-mv__img-item:nth-child(4) {
    width: 31vw;
    top: unset;
    bottom: 0;
    left: -5vw;
  }
}
@media (max-width: 499px) {
  .top-mv__img-item:nth-child(4) {
    width: 24vw;
    bottom: 18%;
    left: -2vw;
  }
}
.top-mv__img-item:nth-child(5) {
  width: 18vw;
  max-width: 31.8rem;
  right: -1.5vw;
  bottom: 38%;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
@media (max-width: 834px) {
  .top-mv__img-item:nth-child(5) {
    bottom: 0;
    right: -5vw;
    width: 33vw;
  }
}
@media (max-width: 499px) {
  .top-mv__img-item:nth-child(5) {
    width: 30vw;
    bottom: 14%;
    right: -6.5vw;
  }
}
.top-mv__img-item:nth-child(6) {
  width: 18vw;
  max-width: 30.1rem;
  right: max(2vw, 13rem);
  bottom: 5%;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
@media (max-width: 834px) {
  .top-mv__img-item:nth-child(6) {
    width: 33vw;
    bottom: -7%;
    right: 34vw;
  }
}
@media (max-width: 499px) {
  .top-mv__img-item:nth-child(6) {
    width: 32vw;
    bottom: 6%;
    right: 38vw;
  }
}

.top-mv__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  background: url(../img/top/mv_bg.webp) no-repeat center;
  background-size: contain;
  aspect-ratio: 2846/1128;
  top: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}
@media (max-width: 834px) {
  .top-mv__bg {
    width: 188%;
  }
}

/* -------------------------
 * イントロスライダー
 * ------------------------- */
.top-intro {
  z-index: 20;
  position: relative;
  margin-top: 12rem;
}
@media (max-width: 834px) {
  .top-intro {
    margin-top: 0rem;
  }
}

.top-intro-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
.top-intro-slider::-webkit-scrollbar {
  display: none;
}

.top-intro-slider__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  -webkit-animation: slide 40s linear infinite;
          animation: slide 40s linear infinite;
  padding-right: 1em;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.top-intro-slider__item {
  width: 42.5rem;
  height: auto;
  aspect-ratio: 425/300;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media (max-width: 834px) {
  .top-intro-slider__item {
    width: 32rem;
  }
}
@media (max-width: 499px) {
  .top-intro-slider__item {
    width: 20rem;
  }
}
.top-intro-slider__item img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* -------------------------
 * お悩み
 * ------------------------- */
.top-problem {
  width: 100%;
  height: auto;
  padding-block: 14rem 8rem;
  position: relative;
  z-index: 19;
  margin-top: -3rem;
  position: relative;
  z-index: 11;
  background-image: url(../img/top/problem_circle-bg.webp);
  background-position: center;
  background-repeat: repeat;
  -webkit-mask-image: url(../img/top/problem_circle-mask.webp), -webkit-gradient(linear, left top, left bottom, color-stop(0, black), to(black));
  -webkit-mask-image: url(../img/top/problem_circle-mask.webp), linear-gradient(black 0, black 100%);
  mask-image: url(../img/top/problem_circle-mask.webp), -webkit-gradient(linear, left top, left bottom, color-stop(0, black), to(black));
  mask-image: url(../img/top/problem_circle-mask.webp), linear-gradient(black 0, black 100%);
  --curve-height: 27rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  will-change: mask-size;
  -webkit-mask-size: 100% var(--curve-height), 100% calc(100% - var(--curve-height) + 1px);
  mask-size: 100% var(--curve-height), 100% calc(100% - var(--curve-height) + 1px);
  -webkit-mask-position: 0 0, 50% 100%;
  mask-position: 0 0, 50% 100%;
}
@media (max-width: 1359px) {
  .top-problem {
    --curve-height: 10vw;
  }
}
@media (max-width: 834px) {
  .top-problem {
    margin-top: -2rem;
    padding-block: 7rem 5rem;
  }
}

.top-problem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 6rem;
}
@media (max-width: 834px) {
  .top-problem__head {
    margin-bottom: 2rem;
    gap: 0.5em;
  }
}

.top-problem__lead {
  line-height: 0.92;
  font-weight: bold;
  font-size: var(--f24);
}
@media (max-width: 834px) {
  .top-problem__lead {
    line-height: 1.4;
  }
}

.top-problem__head-img {
  max-width: 73.2rem;
  width: 100%;
}

.top-problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .top-problem__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 639px) {
  .top-problem__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.top-problem__list > li {
  border-radius: 20px;
  border: solid 2px #333;
  padding: 2.5rem 9% 1rem;
  background: #fff;
}
.top-problem__list > li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top-problem__list > li:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.top-problem__list > li:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 834px) {
  .top-problem__list > li {
    border-radius: 10px;
  }
}
@media (max-width: 639px) {
  .top-problem__list > li {
    padding-top: 1.5rem;
  }
}
.top-problem__list > li:nth-child(1) .top-problem__list-img {
  aspect-ratio: 117/179;
  width: 31%;
}
.top-problem__list > li:nth-child(2) .top-problem__list-img {
  aspect-ratio: 116/168;
  width: 31%;
}
.top-problem__list > li:nth-child(3) .top-problem__list-img {
  aspect-ratio: 198/175;
  width: 53%;
}

.top-problem__list-img {
  margin-inline: auto;
}

.top-problem__list-label {
  border-radius: 100vmax;
  background: #d1f8f8;
  color: #00a099;
  font-weight: bold;
  font-size: var(--f21);
  text-align: center;
  width: 100%;
  line-height: 1;
  padding: 1rem;
}

.top-problem__list-txt {
  font-size: var(--f21);
  font-weight: bold;
  line-height: 1.52;
  margin-block: 1.5rem 2rem;
  text-align: center;
}

/* -------------------------
 * 特定技能外国人の雇用
 * ------------------------- */
.top-solution {
  background: url(../img/top/solution_bg.png) no-repeat center center/cover;
  padding: 7rem 1rem;
  position: relative;
}
@media (max-width: 834px) {
  .top-solution {
    padding-block: 3rem 12rem;
  }
}
.top-solution::before {
  background: url(../img/top/solution_item01.webp) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  width: 20%;
  max-width: 24.4rem;
  aspect-ratio: 488/402;
  bottom: 0;
  left: calc((100vw - min(1140px, 90vw)) / 2);
  z-index: 0;
}
@media (max-width: 834px) {
  .top-solution::before {
    width: 11.7rem;
  }
}
.top-solution::after {
  background: url(../img/top/solution_item02.webp) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  width: 15%;
  max-width: 18.6rem;
  aspect-ratio: 372/420;
  bottom: 0;
  right: calc((100vw - min(1140px, 90vw)) / 2);
  z-index: 0;
}
@media (max-width: 834px) {
  .top-solution::after {
    width: 9rem;
  }
}

.top-solution__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.top-solution__catch {
  font-size: var(--f24);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.top-solution__ttl {
  color: var(--main-yellow);
  font-weight: bold;
  font-size: var(--f60);
  line-height: 1;
}

/* -------------------------
 * 特定技能外国人雇用とは？
 * ------------------------- */
.top-about {
  padding-block: 9rem 12rem;
}

.top-about__content {
  border-radius: 20px;
  border: solid 2px #333;
  background-color: #fff;
  padding: 8rem 7%;
}
@media (max-width: 834px) {
  .top-about__content {
    border-radius: 10px;
    padding: 3rem 5%;
  }
}

.top-about__ttl {
  color: var(--main-green);
  font-weight: bold;
  font-size: var(--f42);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block: 1.5rem 4rem;
  line-height: 1.5;
  background-image: radial-gradient(circle, currentColor 0.2rem, transparent 0.2rem);
  background-size: 0.8rem 0.8rem;
  background-repeat: repeat-x;
  background-position: left bottom 0.2rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 834px) {
  .top-about__ttl {
    margin-bottom: 2.5rem;
  }
}

.top-about__img {
  max-width: 92.4rem;
  width: 94%;
  margin-inline: auto;
  margin-bottom: 6rem;
}
@media (max-width: 834px) {
  .top-about__img {
    margin-bottom: 2rem;
    width: 100%;
  }
}

/* -------------------------
 * ATSの特定技能外国人雇用支援サービス
 * ------------------------- */
.top-support {
  padding-block: 12rem 16rem;
}
@media (max-width: 834px) {
  .top-support {
    padding-bottom: 13rem !important;
  }
}

.top-support__ttl {
  max-width: 68.9rem;
  width: 80%;
  margin-inline: auto;
  margin-block: 3.5rem 5rem;
}
@media (max-width: 834px) {
  .top-support__ttl {
    margin-block: 2rem 3rem;
    width: 100%;
  }
}

.top-support__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7.5rem;
}
@media (max-width: 1024px) {
  .top-support__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.5rem 3%;
  }
}
@media (max-width: 834px) {
  .top-support__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
    margin-top: 5.5rem;
  }
}
.top-support__list > li {
  position: relative;
  border-radius: 20px;
  padding: 6rem 9% 3rem;
}
.top-support__list > li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top-support__list > li:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.top-support__list > li:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 834px) {
  .top-support__list > li {
    border-radius: 10px;
    padding: 4rem 5% 3rem;
  }
}
.top-support__list > li:nth-child(1) {
  background-color: #8dc129;
}
.top-support__list > li:nth-child(1) .top-support__label {
  background-color: #8dc129;
}
.top-support__list > li:nth-child(2) {
  background-color: #00c3bb;
}
.top-support__list > li:nth-child(2) .top-support__label {
  background-color: #00c3bb;
}
.top-support__list > li:nth-child(3) {
  background-color: #6e7aea;
}
.top-support__list > li:nth-child(3) .top-support__label {
  background-color: #6e7aea;
}

.top-support__label-img {
  width: 9.3rem;
  position: absolute;
  top: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 834px) {
  .top-support__label-img {
    width: 7rem;
    top: -3rem;
  }
}

.top-support__list-img img {
  border-radius: 10px;
}

.top-support__list-ttl-wrap {
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 2rem;
}
@media (max-width: 834px) {
  .top-support__list-ttl-wrap {
    margin-block: 1.4rem;
  }
}

.top-support__list-sub-ttl {
  font-size: var(--f18);
  line-height: 1.7;
}

.top-support__list-ttl {
  font-size: var(--f24);
  line-height: 1.7;
}

.top-support__list-desc {
  font-size: var(--f14);
  color: #fff;
  line-height: 1.71;
}

/* -------------------------
 * support
 * 介護分野に精通するATSが
 * 確実な採用成功をサポートします
 * ------------------------- */
.top-support-detail {
  padding-top: 8rem;
  border-radius: 20px;
  border: solid 2px #333;
  background-color: #fff;
  margin-top: 10rem;
}
@media (max-width: 834px) {
  .top-support-detail {
    margin-top: 3rem;
    padding-top: 3rem;
    border-radius: 10px;
  }
}
.top-support-detail > *:not(.top-support-detail__strength) {
  margin-left: 7%;
  margin-right: 7%;
}
@media (max-width: 834px) {
  .top-support-detail > *:not(.top-support-detail__strength) {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.top-support-detail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 2.8rem;
  margin-top: -14rem;
}
@media (max-width: 1240px) {
  .top-support-detail__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 3rem;
    margin-top: 0;
  }
}
@media (max-width: 834px) {
  .top-support-detail__head {
    margin-bottom: 2rem;
  }
}

.top-support-detail__head-item {
  aspect-ratio: 294/280;
  max-width: 29.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1240px) {
  .top-support-detail__head-item {
    margin-left: 16%;
  }
}
@media (max-width: 499px) {
  .top-support-detail__head-item {
    margin-left: 26%;
  }
}

.top-support-detail__head-img {
  max-width: 15.5rem;
  margin-top: -6rem;
  position: relative;
  z-index: 1;
  margin-left: -16%;
}
@media (max-width: 834px) {
  .top-support-detail__head-img {
    max-width: 13.5rem;
  }
}

.top-support-detail__head-bubble-area {
  position: relative;
  max-width: 25.3rem;
}
@media (max-width: 499px) {
  .top-support-detail__head-bubble-area {
    max-width: 21.3rem;
  }
}

.top-support-detail__head-bubble-txt {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  font-size: var(--f16);
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.top-support-detail__head-bubble-txt .yellow {
  color: var(--main-yellow);
  font-size: var(--f18);
}
.top-support-detail__head-bubble-txt .strong {
  font-size: var(--f24);
}

.top-support-detail__catch {
  text-align: center;
  margin-left: -7%;
  margin-bottom: 5%;
}
@media (max-width: 1240px) {
  .top-support-detail__catch {
    margin-left: 0;
    margin-bottom: 3rem;
  }
}

.top-support-detail__catch-inner {
  display: inline;
  color: var(--main-green);
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 1.7;
  background-image: radial-gradient(circle, currentColor 0.2rem, transparent 0.2rem);
  background-size: 0.8rem 0.8rem;
  background-repeat: repeat-x;
  background-position: left bottom 0.2rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 1240px) {
  .top-support-detail__catch-inner {
    font-size: var(--f42);
  }
}
@media (max-width: 399px) {
  .top-support-detail__catch-inner {
    font-size: 1.8rem;
  }
}

.top-support-detail__flex {
  display: grid;
  grid-template-columns: 490fr 418fr;
  gap: 2rem 7%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 97.8rem;
  margin-inline: auto;
}
@media (max-width: 834px) {
  .top-support-detail__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-support-detail__flex-img img {
  border-radius: 10px;
}

.top-support-detail__summary {
  padding: 3rem 3% 3rem 4.2%;
  border-radius: 20px;
  background-color: #d7f3fc;
  color: #40c5f1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 7rem;
}
@media (max-width: 1240px) {
  .top-support-detail__summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 834px) {
  .top-support-detail__summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-block: 3rem;
    border-radius: 10px;
  }
}

.top-support-detail__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-support-detail__logo-txt {
  font-weight: bold;
  font-size: var(--f13);
  text-align: center;
}

.top-support-detail__logo-img {
  max-width: 21.2rem;
  width: 65%;
}

.top-support-detail__summary-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1240px) {
  .top-support-detail__summary-list {
    width: 100%;
  }
}
@media (max-width: 834px) {
  .top-support-detail__summary-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.top-support-detail__summary-list > li {
  background: #fff;
  padding: 2rem 14%;
  border-radius: 10px;
}

.top-support-detail__summary-txt {
  text-align: center;
  font-weight: bold;
  font-size: var(--f24);
  line-height: 1.2;
}
.top-support-detail__summary-txt .sub {
  font-weight: 500;
  font-size: var(--f15);
}

.top-support-detail__strength {
  background: url(../img/top/support_strength-bg.webp) no-repeat center center/cover;
  padding: 5rem 5% 0;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 834px) {
  .top-support-detail__strength {
    border-radius: 0 0 10px 10px;
    padding-top: 3rem;
  }
}

.top-support-detail__strength-lead {
  font-size: var(--f24);
  font-weight: bold;
  text-align: center;
  margin-block: 1.85rem 1rem;
}
@media (max-width: 834px) {
  .top-support-detail__strength-lead {
    line-height: 1.4;
    margin-top: 0.5rem;
  }
}

.top-support-detail__strength-catch {
  margin-inline: auto;
  max-width: 72.4rem;
  width: 73.1%;
}
@media (max-width: 834px) {
  .top-support-detail__strength-catch {
    width: 100%;
  }
}

.top-support-detail__strength-img {
  max-width: 21.4rem;
  width: 20%;
  margin-inline: auto;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  margin-top: 1rem;
}
@media (max-width: 834px) {
  .top-support-detail__strength-img {
    width: 45%;
  }
}

/* -------------------------
 * サービスについて
 * ------------------------- */
.top-service-flow-wrap {
  background-color: #fff;
  background-image: linear-gradient(0deg, #f7f7f7 1px, transparent 1px), linear-gradient(90deg, #f7f7f7 1px, transparent 1px);
  background-size: 30px 30px;
  background-repeat: repeat;
  padding-block: 10rem 16rem;
  margin-top: -6rem;
}
@media (max-width: 834px) {
  .top-service-flow-wrap {
    padding-bottom: 13rem !important;
  }
}

.top-service__ttl {
  margin-bottom: 7rem;
}

.top-service__head-desc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 7%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 6rem 8rem;
}
@media (max-width: 1240px) {
  .top-service__head-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-block: 2.5rem 3rem;
  }
}

@media (max-width: 1240px) {
  .top-service__head-catch {
    text-align: center;
  }
}

.top-service__head-catch-inner {
  display: inline;
  color: var(--main-green);
  font-weight: bold;
  font-size: var(--f42);
  line-height: 1.7;
  background-image: radial-gradient(circle, currentColor 0.2rem, transparent 0.2rem);
  background-size: 0.8rem 0.8rem;
  background-repeat: repeat-x;
  background-position: left bottom 0.2rem;
  padding-bottom: 0.6rem;
}

.top-service__nav {
  padding: 2rem;
  border-radius: 35px;
  background-color: #f2f2f2;
  margin-bottom: 9rem;
}
@media (max-width: 834px) {
  .top-service__nav {
    margin-bottom: 2rem;
    border-radius: 10px;
  }
}

.top-service__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-service__nav-list > li {
  font-weight: bold;
}

.top-service__nav-item-mark {
  width: 2.8rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  background: var(--main-green);
  display: grid;
  place-content: center;
}
.top-service__nav-item-mark .material-symbols-outlined {
  color: #fff;
  font-size: 1.6rem;
}

.top-service__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-service__nav-link:hover {
  opacity: 0.7;
}

/* -------------------------
 * serviceコンテンツ
 * ------------------------- */
.top-service__list > li:not(:last-child) {
  padding: 9rem 7% 12rem;
  border-radius: 20px;
  background-color: #fff;
  border: solid 2px #333;
}
@media (max-width: 834px) {
  .top-service__list > li:not(:last-child) {
    border-radius: 10px;
    padding: 6rem 5% 3rem;
  }
}
@media (max-width: 499px) {
  .top-service__list > li:not(:last-child) {
    padding-top: 4.5rem;
  }
}

.top-service__list-item + .top-service__list-item {
  margin-top: 9rem;
}
@media (max-width: 834px) {
  .top-service__list-item + .top-service__list-item {
    margin-top: 3.5rem;
  }
}

.top-service__list-head {
  position: relative;
}

.top-service__list-ttl {
  top: -5%;
}
@media (max-width: 834px) {
  .top-service__list-ttl {
    top: -2rem;
  }
}

.top-service__list-img-area {
  position: relative;
}

.top-service__list-main-img img {
  border-radius: 20px;
}
@media (max-width: 834px) {
  .top-service__list-main-img img {
    border-radius: 10px;
    aspect-ratio: 4/3;
  }
}

.top-service__list-overlay-txt {
  position: absolute;
  left: 4%;
  bottom: 8%;
  font-size: var(--f32);
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 834px) {
  .top-service__list-overlay-txt {
    bottom: 6%;
  }
}
.top-service__list-overlay-txt .strong {
  color: var(--main-pink);
}

.top-service__list-desc {
  margin-block: 4rem 6rem;
}
@media (max-width: 834px) {
  .top-service__list-desc {
    margin-block: 1.5rem 3rem;
  }
}

/* -------------------------
 * 任意的支援サービス
 * ------------------------- */
.top-service-optional__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.6%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1240px) {
  .top-service-optional__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 834px) {
  .top-service-optional__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-service-optional__list-img-area {
  position: relative;
}

.top-service-optional__list-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-weight: 900;
  color: #fff;
  font-size: var(--f24);
  display: grid;
  place-content: center;
  background: var(--main-green);
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
  padding-bottom: 0.2em;
}
@media (max-width: 834px) {
  .top-service-optional__list-num {
    width: 3.8rem;
  }
}

.top-service-optional__list-img img {
  border-radius: 20px;
}
@media (max-width: 834px) {
  .top-service-optional__list-img img {
    border-radius: 10px;
  }
}

.top-service-optional__list-ttl-wrap {
  line-height: 1.5;
  font-weight: bold;
  margin-block: 2rem;
  text-align: center;
}
@media (max-width: 834px) {
  .top-service-optional__list-ttl-wrap {
    margin-block: 1.4rem 1rem;
  }
}

.top-service-optional__list-sub-ttl {
  color: var(--main-green);
  font-size: var(--f15);
}

.top-service-optional__list-ttl {
  font-size: var(--f24);
}

.top-service-optional__list-desc {
  font-size: var(--f14);
}

/* -------------------------
 * 義務的支援サービス
 * アコーディオン
 * ------------------------- */
.accordion__item {
  display: grid;
  grid-template-rows: -webkit-min-content 0fr;
  grid-template-rows: min-content 0fr;
  -webkit-transition: opacity 0.7s linear, visibility 0.7s linear grid-template-rows 300ms ease;
  transition: opacity 0.7s linear, visibility 0.7s linear grid-template-rows 300ms ease;
  cursor: pointer;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 20px;
}
@media (max-width: 834px) {
  .accordion__item {
    border-radius: 10px;
  }
}
.accordion__item.open {
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
}
.accordion__item.open .open-close-btn {
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion__item .accordion__detail {
  overflow: hidden;
}

.accordion__item + .accordion__item {
  margin-top: 2rem;
}

.accordion__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 2.5rem;
  padding-inline: 3%;
}
@media (max-width: 834px) {
  .accordion__summary {
    padding-inline: 5%;
    padding-block: 1.5rem;
  }
}

.accordion__detail-inner {
  padding-inline: 3%;
}
@media (max-width: 834px) {
  .accordion__detail-inner {
    padding-inline: 5%;
  }
}

.open-close-btn {
  display: grid;
  place-items: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.open-close-btn .material-symbols-outlined {
  font-size: 3rem;
  display: block;
  line-height: 1;
  color: var(--main-green);
}

.accordion__summary-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
}
@media (max-width: 834px) {
  .accordion__summary-body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 834px) {
  .accordion__summary-body--with-label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 0;
    grid-template-areas: "index ttl" "label label";
  }
}
@media (max-width: 834px) {
  .accordion__summary-body--with-label .accordion__ttl {
    grid-area: ttl;
  }
}
@media (max-width: 834px) {
  .accordion__summary-body--with-label .accordion__index {
    grid-area: index;
  }
}
@media (max-width: 834px) {
  .accordion__summary-body--with-label .accordion__head-labels {
    grid-area: label;
  }
}

.accordion__index {
  font-weight: 900;
  color: #fff;
  font-size: var(--f24);
  display: grid;
  place-content: center;
  background: var(--main-green);
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
  padding-bottom: 0.2em;
  margin-right: 0.5em;
}
@media (max-width: 834px) {
  .accordion__index {
    width: 3.8rem;
  }
}
@media (max-width: 834px) {
  .accordion__index {
    font-size: 1.3rem;
    width: 2.4rem;
  }
}

.accordion__ttl {
  font-weight: bold;
  font-size: var(--f24);
  margin-right: 0.3em;
}
@media (max-width: 834px) {
  .accordion__ttl {
    font-size: 1.6rem;
    margin-top: -0.2em;
  }
}

.accordion__head-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.accordion__head-labels > li {
  background: #333;
  border-radius: 100vmax;
  color: #fff;
  font-weight: bold;
  font-size: var(--f14);
  line-height: 1;
  padding: 0.8rem 1.5rem;
}

.accordion__detail-inner-item {
  border-top: 2px dotted #d4d4d4;
  padding-block: 4.3rem 5rem;
}
@media (max-width: 834px) {
  .accordion__detail-inner-item {
    padding-block: 2.5rem;
  }
}

.accordion__detail-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .accordion__detail-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2em;
  }
}

.accordion__detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 834px) {
  .accordion__detail-list {
    width: 100%;
  }
}
.accordion__detail-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3em;
}
.accordion__detail-list > li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--main-green);
  border-radius: 100vmax;
  margin-top: 0.6em;
}

/* -------------------------
 * 支援対象について
 * ------------------------- */
.top-service-target__ttl {
  font-size: var(--f32);
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-green);
  gap: 1.2rem;
  margin-bottom: 5rem;
}
@media (max-width: 834px) {
  .top-service-target__ttl {
    gap: 1rem;
    margin-bottom: 3rem;
  }
}
.top-service-target__ttl::before, .top-service-target__ttl::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--main-green);
  background-image: radial-gradient(circle, currentColor 0.3rem, transparent 0.3rem);
  background-size: 1.2rem 0.6rem;
  background-repeat: repeat-x;
  background-position: center center;
  height: 0.6rem;
}

.top-service-target__flex {
  display: grid;
  grid-template-columns: 570fr 560fr;
  gap: 2.5rem 6%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .top-service-target__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.5rem;
  }
}
@media (max-width: 499px) {
  .top-service-target__flex {
    gap: 3rem;
  }
}

.top-service-target__img-area {
  position: relative;
}
@media (max-width: 834px) {
  .top-service-target__img-area {
    width: 80%;
  }
}
.top-service-target__img-area::after {
  background: url(../img/top/service_target02.webp) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  width: 40%;
  max-width: 22.6rem;
  aspect-ratio: 452/396;
  bottom: -10%;
  left: -14%;
  z-index: 0;
}

.top-service-target__img img {
  border-radius: 10px;
}

@media (max-width: 834px) {
  .top-service-target__body {
    width: 100%;
    margin-inline: auto;
  }
}

.top-service-target__catch {
  font-weight: bold;
  font-size: var(--f28);
}
@media (max-width: 834px) {
  .top-service-target__catch {
    text-align: center;
  }
}

.top-service-target__desc {
  margin-block: 2.5rem 4rem;
}
@media (max-width: 834px) {
  .top-service-target__desc {
    margin-block: 1rem 1.5rem;
    text-align: center;
  }
}
@media (max-width: 499px) {
  .top-service-target__desc {
    text-align: left;
  }
}

.top-service-target__dl-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.top-service-target__dl-list dt,
.top-service-target__dl-list dd {
  padding-block: 3.2rem;
}
.top-service-target__dl-list dt:first-of-type,
.top-service-target__dl-list dd:first-of-type {
  padding-top: 0;
}
.top-service-target__dl-list dt {
  width: 23%;
  margin-right: 0.2rem;
  border-bottom: 1px solid #d7d7d7;
  font-weight: bold;
  font-size: var(--f18);
  color: var(--main-green);
}
@media (max-width: 639px) {
  .top-service-target__dl-list dt {
    width: 100%;
    border-bottom: none;
    padding: 1.6rem 0 0 0;
  }
}
.top-service-target__dl-list dd {
  width: 76%;
  border-bottom: 1px solid #d7d7d7;
  padding-left: 1.6rem;
}
@media (max-width: 639px) {
  .top-service-target__dl-list dd {
    min-width: 14rem;
    padding: 1rem 0 1.6rem 0;
    width: 100%;
  }
}
@media (max-width: 639px) {
  .top-service-target__dl-list dd:first-of-type {
    padding-top: 1rem;
  }
}

/* -------------------------
 * 入国・受け入れの流れ
 * ------------------------- */
.top-flow {
  margin-top: 12rem;
}
@media (max-width: 834px) {
  .top-flow {
    margin-top: 5rem;
  }
}

.top-flow__lead {
  text-align: center;
  margin-block: 4rem 9rem;
  width: 90%;
  margin-inline: auto;
}
@media (max-width: 834px) {
  .top-flow__lead {
    text-align: left;
    margin-block: 2.5rem 4rem;
  }
}

.top-flow__img-area {
  position: relative;
}

.top-flow__label {
  top: -4%;
}
@media (max-width: 834px) {
  .top-flow__label {
    top: -3%;
  }
}
@media (max-width: 499px) {
  .top-flow__label {
    top: -2.5%;
    font-size: 1.4rem;
  }
}

.top-flow__img-wrap {
  padding-top: 2rem;
  border-radius: 20px;
  border: solid 2px #333;
  background-color: #e5fdfd;
  overflow: clip;
}
@media (max-width: 834px) {
  .top-flow__img-wrap {
    border-radius: 10px;
    padding-top: 1.5rem;
  }
}

@media (max-width: 834px) {
  .top-flow__img {
    overflow-x: auto;
    width: 100%;
  }
}
@media (max-width: 834px) {
  .top-flow__img img {
    display: block;
    width: 1000px;
    height: auto;
    max-width: none;
  }
}

/* -------------------------
 * 支援委託契約の概要
 * ------------------------- */
.top-agreement {
  margin-top: -6rem;
  padding-block: 13rem 16rem;
}
@media (max-width: 834px) {
  .top-agreement {
    padding-bottom: 13rem !important;
  }
}

.top-agreement__ttl {
  font-weight: bold;
  font-size: var(--f70);
  text-align: center;
  margin-bottom: 9rem;
}

.top-agreement__flex {
  display: grid;
  grid-template-columns: 600fr 539fr;
  gap: 3rem 5.2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 9rem;
}
@media (max-width: 834px) {
  .top-agreement__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
}

.top-agreement__flex-img img {
  border-radius: 20px;
}
@media (max-width: 834px) {
  .top-agreement__flex-img img {
    border-radius: 10px;
  }
}

@media (max-width: 834px) {
  .top-agreement__catch {
    text-align: center;
  }
}

.top-agreement__catch-inner {
  display: inline;
  color: var(--main-green);
  font-weight: bold;
  font-size: var(--f42);
  line-height: 1.7;
  background-image: radial-gradient(circle, currentColor 0.2rem, transparent 0.2rem);
  background-size: 0.8rem 0.8rem;
  background-repeat: repeat-x;
  background-position: left bottom 0.2rem;
  padding-bottom: 0.6rem;
}

.top-agreement__desc {
  margin-top: 4rem;
}
@media (max-width: 834px) {
  .top-agreement__desc {
    margin-top: 2rem;
  }
}

.top-agreement__item {
  padding: 7rem 7% 9rem;
  border-radius: 20px;
  border: solid 2px #333;
  background-color: #fff;
}
@media (max-width: 834px) {
  .top-agreement__item {
    border-radius: 10px;
    padding: 3rem 5%;
  }
}
.top-agreement__item.top-agreement-price {
  padding-block: 7rem 9rem;
  padding-inline: 0;
}
@media (max-width: 834px) {
  .top-agreement__item.top-agreement-price {
    padding-block: 3rem;
  }
}
.top-agreement__item + .top-agreement__item {
  margin-top: 9rem;
}
@media (max-width: 834px) {
  .top-agreement__item + .top-agreement__item {
    margin-top: 4rem;
  }
}

.top-agreement-price__inner {
  padding-inline: 7%;
}
@media (max-width: 834px) {
  .top-agreement-price__inner {
    padding-inline: 5%;
  }
}

.top-agreement__label {
  position: static;
  -webkit-transform: none;
          transform: none;
  width: 100%;
  margin-bottom: 3rem;
}
.top-agreement__label.fade-up {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}
.top-agreement__label.fade-up.is-shown {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (max-width: 834px) {
  .top-agreement__label {
    margin-bottom: 2rem;
  }
}

.top-agreement-step__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media (max-width: 834px) {
  .top-agreement-step__list {
    gap: 3rem;
  }
}
.top-agreement-step__list > li {
  padding: 3rem 3%;
  border-radius: 20px;
  background-color: #f4f4f4;
  display: grid;
  grid-template-columns: 31rem 1fr;
  gap: 1.5rem 7%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .top-agreement-step__list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
  }
}
@media (max-width: 499px) {
  .top-agreement-step__list > li {
    padding-block: 2rem;
  }
}
.top-agreement-step__list > li:not(:last-child) {
  position: relative;
}
.top-agreement-step__list > li:not(:last-child)::after {
  font-family: "Material Symbols Outlined";
  content: "\e313";
  font-weight: 500;
  font-size: 4rem;
  display: inline-block;
  position: absolute;
  bottom: -4.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: var(--main-green);
  line-height: 1;
}
@media (max-width: 834px) {
  .top-agreement-step__list > li:not(:last-child)::after {
    font-size: 3.2rem;
    bottom: -3.3rem;
  }
}

/* -------------------------
 * 支援委託契約の概要
 * ご利用の流れ
 * ------------------------- */
.top-agreement-step__list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 499px) {
  .top-agreement-step__list-head {
    gap: 0.5em;
  }
}

.top-agreement-step__list-icon {
  width: 7rem;
}
@media (max-width: 834px) {
  .top-agreement-step__list-icon {
    width: 5rem;
  }
}
@media (max-width: 499px) {
  .top-agreement-step__list-icon {
    width: 3rem;
  }
}

.top-agreement-step__list-label {
  font-size: var(--f24);
  font-weight: bold;
}

/* -------------------------
 * 支援委託契約の概要
 * (支援委託費用)
 * ------------------------- */
.top-agreement-price {
  position: relative;
}

.top-agreement-price__note {
  font-size: var(--f13);
  text-align: right;
}
@media (max-width: 834px) {
  .top-agreement-price__note {
    text-align: left;
  }
}

.top-agreement-price__note--top {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 834px) {
  .top-agreement-price__note--top {
    top: 0.6rem;
  }
}

.top-agreement-price__head-copy {
  font-weight: bold;
  text-align: center;
  font-size: var(--f32);
}
.top-agreement-price__head-copy .strong {
  border: 2px solid #333;
  padding-inline: 0.2em;
}

.top-agreement-price__structure {
  margin-block: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 834px) {
  .top-agreement-price__structure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-block: 2.5rem 1rem;
  }
}

.top-agreement-price__structure-item {
  padding: 2rem;
  border-radius: 20px;
  background-color: #f4f4f4;
}
@media (max-width: 834px) {
  .top-agreement-price__structure-item {
    width: 100%;
    border-radius: 10px;
  }
}

.top-agreement-price__structure-label {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  margin-inline: auto;
  border-radius: 100vmax;
  font-weight: bold;
  font-size: var(--f21);
}

.top-agreement-price__structure-desc {
  font-size: var(--f15);
  font-weight: bold;
  margin-block: 1rem 0rem;
  text-align: center;
}

.top-agreement-price__structure-price {
  font-weight: bold;
  font-size: var(--f50);
  line-height: 1;
  text-align: center;
}
.top-agreement-price__structure-price .unit {
  font-size: var(--f24);
}

.top-agreement-price__structure-plus-mark {
  border-radius: 100vmax;
  background: var(--main-green);
  width: 4rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-content: center;
}
@media (max-width: 499px) {
  .top-agreement-price__structure-plus-mark {
    width: 2.4rem;
  }
}
.top-agreement-price__structure-plus-mark .material-symbols-outlined {
  color: #fff;
  font-size: 2.4rem;
}

/* -------------------------
 * 支援委託契約の概要
 * (詳細料金一覧)
 * ------------------------- */
.top-agreement-price__detail {
  margin-top: 6rem;
}
@media (max-width: 834px) {
  .top-agreement-price__detail {
    margin-top: 4rem;
  }
}

.top-agreement-price__detail-ttl {
  font-weight: bold;
  font-size: var(--f24);
  padding: 2rem 2rem 2rem 4rem;
  border-radius: 10px;
  background-color: #f4f4f4;
  position: relative;
  line-height: 1;
  margin-bottom: 4rem;
}
@media (max-width: 834px) {
  .top-agreement-price__detail-ttl {
    margin-bottom: 2.5rem;
  }
}
.top-agreement-price__detail-ttl::before {
  background: var(--main-purple);
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.7rem;
  aspect-ratio: 7/30;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2rem;
  z-index: 1;
  border-radius: 10px;
}

.top-agreement-price__detail-items .top-agreement-price__detail-item:not(:first-child) {
  padding-top: 4rem;
}
@media (max-width: 834px) {
  .top-agreement-price__detail-items .top-agreement-price__detail-item:not(:first-child) {
    padding-top: 2rem;
  }
}
.top-agreement-price__detail-items .top-agreement-price__detail-item:not(:last-child) {
  padding-bottom: 4rem;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 834px) {
  .top-agreement-price__detail-items .top-agreement-price__detail-item:not(:last-child) {
    padding-bottom: 2rem;
  }
}

.top-agreement-price__detail-item {
  display: grid;
  grid-template-columns: 24rem 1fr auto;
  gap: 0 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-item {
    grid-template-columns: 1fr auto;
    grid-template-areas: "ttl price" "list list";
  }
}

.top-agreement-price__detail-item-ttl-wrap {
  font-weight: bold;
  color: var(--main-purple);
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-item-ttl-wrap {
    grid-area: ttl;
  }
}
.top-agreement-price__detail-item-ttl-wrap .small {
  font-size: var(--f16);
}

.top-agreement-price__detail-item-ttl-wrap-2row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-agreement-price__detail-item-ttl-wrap-2row hgroup + hgroup {
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-item-ttl-wrap-2row hgroup + hgroup {
    margin-top: 1em;
  }
}

.top-agreement-price__detail-item-sub-ttl {
  font-size: var(--f15);
}

.top-agreement-price__detail-item-ttl {
  font-size: var(--f24);
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-item-ttl {
    line-height: 1.1;
  }
}

.top-agreement-price__detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 834px) {
  .top-agreement-price__detail-list {
    width: 100%;
  }
}
.top-agreement-price__detail-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3em;
}
.top-agreement-price__detail-list > li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--main-green);
  border-radius: 100vmax;
  margin-top: 0.6em;
}
.top-agreement-price__detail-list > li::before {
  background-color: var(--main-purple);
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-list {
    grid-area: list;
  }
}
@media (max-width: 834px) {
  .top-agreement-price__detail-list {
    margin-block: 2rem 1rem;
  }
}

.top-agreement-price__detail-price {
  font-weight: bold;
  margin-top: auto;
  line-height: 1;
  row-gap: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-price {
    text-align: center;
    grid-area: price;
    margin-block: auto;
  }
}
.top-agreement-price__detail-price .price-num {
  font-size: var(--f50);
  grid-area: num;
}
.top-agreement-price__detail-price .unit {
  font-size: var(--f24);
  grid-area: unit;
  margin-top: auto;
  white-space: nowrap;
}
.top-agreement-price__detail-price .note {
  font-size: var(--f15);
  white-space: nowrap;
}
.top-agreement-price__detail-price .price-txt {
  font-size: var(--f32);
  white-space: nowrap;
}

.top-agreement-price__detail-price--low2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5em;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1024px) {
  .top-agreement-price__detail-price--low2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
  }
}

.top-agreement-price__detail-list-inner .note {
  font-size: var(--f12);
  line-height: 1;
  display: block;
  margin-bottom: 0.5em;
}
@media (max-width: 834px) {
  .top-agreement-price__detail-list-inner .note {
    line-height: 1.4;
  }
}

/* -------------------------
 * 支援委託契約の概要
 * (オプション)
 * ------------------------- */
.top-agreement-price__option {
  margin-top: 12rem;
}
@media (max-width: 834px) {
  .top-agreement-price__option {
    margin-top: 5rem;
  }
}

.top-agreement-price__option-label {
  background: var(--main-purple);
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-weight: bold;
  padding: 1rem 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  position: relative;
  font-size: var(--f24);
}
.top-agreement-price__option-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 99.8%;
  width: 1.2rem;
  height: calc(100% - 0.8rem);
  background: var(--main-purple);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.top-agreement-price__option-list {
  padding: 3.5rem 4%;
  border-radius: 0 20px 20px 20px;
  background-color: #f4f4f4;
}
@media (max-width: 834px) {
  .top-agreement-price__option-list {
    border-radius: 0 10px 10px 10px;
    padding: 2rem 5%;
  }
}
.top-agreement-price__option-list > li {
  display: grid;
  grid-template-columns: 10rem 1fr 16rem;
  gap: 0 14%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .top-agreement-price__option-list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-agreement-price__option-list > li:first-child {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #ddd;
}
.top-agreement-price__option-list > li:last-child {
  padding-top: 1em;
}

.top-agreement-price__option-list-ttl {
  font-weight: bold;
  color: var(--main-purple);
  font-size: var(--f24);
  line-height: 1;
}

.top-agreement-price__option-desc {
  line-height: 1.4;
}
@media (max-width: 834px) {
  .top-agreement-price__option-desc {
    margin-block: 1rem 1.5rem;
  }
}
.top-agreement-price__option-desc .note {
  font-size: 1.2rem;
  display: block;
}

.top-agreement-price__option-price {
  font-weight: bold;
  line-height: 1;
  font-size: var(--f40);
  text-align: right;
}
@media (max-width: 834px) {
  .top-agreement-price__option-price {
    text-align: left;
  }
}
.top-agreement-price__option-price .unit {
  font-size: var(--f24);
}

/* -------------------------
 * 補助金・助成金活用で
 * お得にご利用可能です！
 * ------------------------- */
.top-agreement-price .top-agreement-price__inner:first-child {
  margin-bottom: 9rem;
}
@media (max-width: 834px) {
  .top-agreement-price .top-agreement-price__inner:first-child {
    margin-bottom: 4rem;
  }
}
.top-agreement-price .top-agreement-price__inner:last-child {
  background-image: radial-gradient(circle, currentColor 0.2rem, transparent 0.2rem);
  background-size: 0.8rem 0.8rem;
  background-repeat: repeat-x;
  background-position: top center;
  padding-top: 1rem;
  padding-top: 9rem;
}
@media (max-width: 834px) {
  .top-agreement-price .top-agreement-price__inner:last-child {
    padding-top: 3rem;
  }
}

.top-agreement-subsidy__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 6%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-agreement-subsidy__flex-img img {
  border-radius: 20px;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex-img img {
    border-radius: 10px;
  }
}

.top-agreement-subsidy__flex-catch {
  line-height: 1.41;
  font-size: var(--f32);
  font-weight: bold;
  color: var(--main-green);
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex-catch {
    text-align: center;
  }
}

.top-agreement-subsidy__flex-desc {
  margin-block: 3rem;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex-desc {
    margin-block: 1.5rem;
  }
}

.top-agreement-subsidy__flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8em 0.2em;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex-list {
    width: 100%;
  }
}
.top-agreement-subsidy__flex-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3em;
}
.top-agreement-subsidy__flex-list > li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--main-green);
  border-radius: 100vmax;
  margin-top: 0.6em;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.top-agreement-subsidy__flex-list > li {
  width: 48%;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__flex-list > li {
    width: 100%;
  }
}
.top-agreement-subsidy__flex-list > li:last-child {
  width: 100%;
}

.top-agreement-subsidy__cases {
  margin-top: 5rem;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases {
    margin-top: 3rem;
  }
}

.top-agreement-subsidy__cases-ttl {
  font-weight: bold;
  font-size: var(--f24);
  margin-bottom: 5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases-ttl {
    margin-bottom: 2.5rem;
    gap: 1rem;
  }
}
.top-agreement-subsidy__cases-ttl::before, .top-agreement-subsidy__cases-ttl::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 2px dotted #d4d4d4;
}

.top-agreement-subsidy__cases-item {
  padding: 4.5rem 4%;
  border-radius: 20px;
  background-color: #f4f4f4;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases-item {
    border-radius: 10px;
    padding: 2rem 5%;
  }
}
.top-agreement-subsidy__cases-item + .top-agreement-subsidy__cases-item {
  margin-top: 2rem;
}

.top-agreement-subsidy__cases-item--hight-light {
  border: 3px solid var(--main-green);
}

.top-agreement-subsidy__cases-label {
  font-size: var(--f21);
  font-weight: bold;
  color: var(--main-green);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--main-green);
  margin-bottom: 2.5rem;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases-label {
    margin-bottom: 1.5rem;
  }
}

.top-agreement-subsidy__cases-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.top-agreement-subsidy__cases-list > li:first-child {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #ddd;
}
.top-agreement-subsidy__cases-list > li:first-child + :last-child {
  padding-top: 1.5em;
}

@media (max-width: 834px) {
  .top-agreement-subsidy__cases-list-label {
    margin-bottom: 1rem;
  }
}

.top-agreement-subsidy__cases-list-price {
  font-size: var(--f40);
  font-weight: bold;
  line-height: 1;
}
.top-agreement-subsidy__cases-list-price .unit {
  font-size: var(--f24);
}
.top-agreement-subsidy__cases-list-price .tax {
  font-size: var(--f14);
}

.top-agreement-subsidy__cases-highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fb5475;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: -1%;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases-highlight {
    margin-left: 0;
    gap: 0;
  }
}
.top-agreement-subsidy__cases-highlight .material-symbols-outlined {
  font-size: var(--f30);
  font-weight: 500;
  margin-right: -39%;
}
@media (max-width: 834px) {
  .top-agreement-subsidy__cases-highlight .material-symbols-outlined {
    margin-right: 0;
    margin-left: -64%;
  }
}

.top-agreement-subsidy__cases-highlight-txt {
  font-size: clamp(1.6rem, 1.5vw, 2.4rem);
  font-weight: bold;
}
.top-agreement-subsidy__cases-highlight-txt .price {
  font-size: clamp(2.6rem, 2.4vw, 4rem);
  line-height: 1;
  display: inline-block;
}
.top-agreement-subsidy__cases-highlight-txt .tax {
  font-size: var(--f14);
}

/* -------------------------
 * よくあるご質問

 * ------------------------- */
.top-faq {
  margin-top: -6rem;
  padding-block: 13rem 12rem;
}
@media (max-width: 499px) {
  .top-faq {
    padding-block: 5rem 7rem !important;
  }
}

.top-faq__ttl {
  font-weight: bold;
  font-size: var(--f70);
  text-align: center;
  margin-bottom: 6rem;
}

.top-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 499px) {
  .top-faq__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-faq__list > li {
  padding: 3rem 5.1%;
  border-radius: 20px;
  border: solid 2px #333;
  background-color: #fff;
}
.top-faq__list > li:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.top-faq__list > li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top-faq__list > li:nth-child(3) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.top-faq__list > li:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.top-faq__list > li:nth-child(5) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.top-faq__list > li:nth-child(6) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media (max-width: 834px) {
  .top-faq__list > li {
    border-radius: 10px;
  }
}

.top-faq__question-area {
  display: grid;
  grid-template-columns: 100fr 392fr;
  gap: 1rem 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 834px) {
  .top-faq__question-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-faq__question-label {
  color: var(--main-green);
  font-weight: 900;
  font-size: 1.4rem;
}
@media (max-width: 834px) {
  .top-faq__question-label {
    text-align: center;
  }
}

@media (max-width: 834px) {
  .top-faq__question-icon {
    width: 25%;
  }
}

.top-faq__question-question-txt {
  font-size: var(--f21);
  font-weight: bold;
  line-height: 1.52;
}

.top-faq__answer-area {
  padding: 4rem 8.8%;
  border-radius: 20px;
  background-color: #f4f4f4;
}
@media (max-width: 834px) {
  .top-faq__answer-area {
    border-radius: 10px;
    padding: 2rem 5%;
  }
}

/* -------------------------
 * cta
 * ------------------------- */
.top-cta {
  padding-block: 11rem 0;
  background: url(../img/top/cta_bg.webp) no-repeat center center/cover;
  color: #fff;
}
@media (max-width: 834px) {
  .top-cta {
    padding-block: 5rem 0 !important;
  }
}
.top-cta__content {
  position: relative;
  padding-bottom: 12rem;
}
@media (max-width: 834px) {
  .top-cta__content {
    padding-bottom: 24vw;
  }
}
@media (max-width: 499px) {
  .top-cta__content {
    padding-bottom: 42vw;
  }
}
.top-cta__content::before {
  background: url(../img/top/cta_item01.webp) no-repeat center;
  background-size: contain;
  width: 25%;
  max-width: 29rem;
  aspect-ratio: 580/614;
  left: -10%;
  margin-left: 7%;
}
@media (max-width: 499px) {
  .top-cta__content::before {
    left: 0;
    margin-left: 0;
    width: 37%;
  }
}
.top-cta__content::after {
  background: url(../img/top/cta_item02.webp) no-repeat center;
  background-size: contain;
  width: 27%;
  max-width: 32.3rem;
  aspect-ratio: 646/574;
  right: -10%;
  margin-right: 7%;
}
@media (max-width: 499px) {
  .top-cta__content::after {
    right: 0;
    margin-right: 0;
    width: 45%;
  }
}
.top-cta__content::before, .top-cta__content::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.top-cta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lead-area {
  position: relative;
}

.top-cta__lead {
  text-align: center;
}

.top-cta__lead-inner {
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--f24);
  line-height: 1.5;
  display: inline;
  background-image: radial-gradient(circle, var(--main-yellow) 0.2rem, transparent 0.2rem);
  background-size: 0.8rem 0.8rem;
  background-repeat: repeat-x;
  background-position: left bottom 0.2rem;
  padding-bottom: 0.6rem;
}

.top-cta__catch {
  font-weight: bold;
  font-size: var(--f58);
  margin-block: 0 4rem;
  text-align: center;
}
@media (max-width: 834px) {
  .top-cta__catch {
    line-height: 1.4;
    margin-block: 1.5rem 4rem;
  }
}
@media (max-width: 499px) {
  .top-cta__catch {
    margin-bottom: 3rem;
  }
}

.top-cta__bubble {
  background: url(../img/top/cta_bubble.webp) no-repeat center center/cover;
  max-width: 26.4rem;
  width: 16vw;
  aspect-ratio: 264/182;
  display: grid;
  place-content: center;
  position: absolute;
  bottom: 0;
  right: 100%;
}
@media (max-width: 834px) {
  .top-cta__bubble {
    width: 13.1rem;
    bottom: 68%;
  }
}
@media (max-width: 499px) {
  .top-cta__bubble {
    right: 57%;
    bottom: 108%;
  }
}

.top-cta__bubble-txt-img {
  max-width: 14.8rem;
  width: 9vw;
  margin-top: 7%;
}
@media (max-width: 834px) {
  .top-cta__bubble-txt-img {
    width: 7.4rem;
  }
}

.top-cta__tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3em;
  margin-top: 2rem;
}

.top-cta__tel {
  font-size: var(--f54);
  line-height: 1;
  font-weight: 900;
}
@media (max-width: 834px) {
  .top-cta__tel {
    font-size: 3.2rem;
  }
}

@media (min-width: 834px) {
  .top-cta__tel {
    cursor: inherit;
    pointer-events: none;
  }
}
.top-cta__tel-time {
  font-size: var(--f14);
}

/* -------------------------
 * フッター
 * ------------------------- */
.footer {
  padding-block: 4rem;
  background-color: #333;
  color: #fff;
  z-index: 10;
}
@media (max-width: 834px) {
  .footer {
    padding-block: 3rem;
  }
}

.footer__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 834px) {
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__company-info {
  line-height: 1.3;
}

.footer__company-name {
  font-weight: 900;
  font-size: var(--f18);
}
.footer__company-name .tagline {
  font-weight: 500;
  font-size: var(--f13);
}

.footer__site-link {
  font-size: var(--f15);
  text-decoration: underline;
  margin-top: 2em;
}

.footer__address {
  font-size: var(--f13);
  line-height: 1.54;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: var(--f14);
  line-height: 1.43;
}/*# sourceMappingURL=top.css.map */