@charset "UTF-8";
/* リキッドレイアウト対応 */
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
body {
  font-family: "Zen Maru Gothic", sans-serif;
}
body p {
  letter-spacing: 0.05em;
  line-height: 1.6;
}
body li,
body a,
body h1,
body h2,
body h3,
body h4 {
  letter-spacing: 0.05em;
}

html {
  scroll-behavior: smooth;
}

.section-container {
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title--common {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.section-title--common .section-title--common__main {
  color: #404040;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 51.2px */
  letter-spacing: 1.6px;
  white-space: pre-line;
}
@media screen and (max-width: 1024px) {
  .section-title--common .section-title--common__main {
    font-size: 22px;
    line-height: 160%;
    /* 35.2px */
    letter-spacing: 1.1px;
  }
}
.section-title--common h3 {
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  color: #2bc2ad;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1024px) {
  .section-title--common h3 {
    font-size: 20px;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
  }
}
.section-title--common .section-title--common__sub {
  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;
  gap: 10px;
}

.link-btn--custom {
  max-width: 380px;
  width: 100%;
  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;
  gap: 10px;
  border-radius: 138.462px;
  background: #3ad3be;
  position: relative;
  z-index: 1;
  padding: 16px 30px;
  color: #fff;
  border-radius: 100vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-btn--custom:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 1024px) {
  .link-btn--custom {
    max-width: 260px;
    margin: auto;
  }
}
.link-btn--custom span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 32px */
  letter-spacing: 1px;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .link-btn--custom span {
    font-size: 14px;
    line-height: 160%;
    /* 22.4px */
    letter-spacing: 0.7px;
  }
}
.link-btn--custom svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .link-btn--custom svg {
    right: 15px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

/* インタビューセクション */
.interview-section {
  padding-top: 50px;
  background-image: url(../images/bg/bg_light_green.webp);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .interview-section {
    padding-top: 0;
  }
}
.interview-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 70%;
  height: 100%;
  background-image: url(../images/front-page/interview/cloud.webp);
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .interview-section::after {
    content: unset;
  }
}
.interview-section .interview-section--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  margin-right: calc(50% - 50vw + 20px);
  padding: 170px 0 75px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .interview-section .interview-section--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0 60px;
    gap: 0;
  }
}
.interview-section .interview-section--wrapper .swiper--contents {
  border-radius: 40px;
  background: #feffe7;
  padding: 30px 20px;
  display: block;
}
.interview-section .interview-section--wrapper .swiper--contents .masked-image {
  /* マスク画像を使用して切り抜く */
  /* マスク画像は透明部分が切り抜かれる */
  -webkit-mask-image: url("../images/common/clip.webp");
  mask-image: url("../images/common/clip.webp");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.interview-section .interview-section--wrapper .swiper--contents h4 {
  color: #404040;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
  margin-top: 15px;
}
.interview-section .interview-section--wrapper .swiper--contents time {
  color: #aaa;
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 25.2px */
  letter-spacing: 0.7px;
  margin-top: 15px;
}
.interview-section .interview-section--wrapper .interview-section--wrapper--img {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .interview-section .interview-section--wrapper .interview-section--wrapper--img {
    margin-top: -40px;
    z-index: 2;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.interview-section .interview-section--wrapper .swiper-button-prev {
  left: -3%;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (max-width: 1024px) {
  .interview-section .interview-section--wrapper .swiper-button-prev {
    left: 10%;
  }
}
.interview-section .interview-section--wrapper .swiper-button-next {
  right: 2%;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (max-width: 1024px) {
  .interview-section .interview-section--wrapper .swiper-button-next {
    right: 10%;
  }
}
.interview-section .interview-section--wrapper--content--title .section-title--common .section-title--common__main {
  text-align: left !important;
}
@media screen and (max-width: 1024px) {
  .interview-section .interview-section--wrapper--content--title .section-title--common .section-title--common__main {
    text-align: center !important;
  }
}
.interview-section .interview-section--wrapper--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;
  gap: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .interview-section .interview-section--wrapper--content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .interview-section .interview-section--wrapper--content::after {
    content: "";
    position: absolute;
    bottom: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100%;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    z-index: -1;
    width: 100vw;
    background-image: url(../images/front-page/interview/cloud-sp.webp);
    background-position: center top;
  }
}
.interview-section .interview-section--wrapper--content p {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 210%;
  /* 33.6px */
  letter-spacing: 1.28px;
}
.interview-section .interview-section--wrapper--content .interview-section--wrapper--content--link {
  width: 100%;
}

/* キャリアセクション */
.carrier-section {
  padding-top: 200px;
  padding-bottom: 150px;
  background-image: url(../images/bg/bg_white.webp);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .carrier-section {
    padding-top: 100px;
  }
}
.carrier-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: url(../images/bg/bg_light_green.webp);
}
.carrier-section .left-tree {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  margin: auto;
  z-index: 5;
  width: min(322px, 40%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .carrier-section .left-tree {
    width: min(120px, 35%);
    top: unset;
    left: -17%;
    bottom: -20%;
  }
}
.carrier-section .right-tree {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25%;
  margin: auto;
  z-index: 5;
  width: min(396px, 40%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .carrier-section .right-tree {
    width: min(260px, 42%);
    top: unset;
    right: -18%;
    bottom: -20%;
  }
}
.carrier-section .left-reaf {
  position: absolute;
  bottom: -5%;
  left: -6%;
  margin: auto;
  z-index: 3;
  width: min(400px, 50%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .carrier-section .left-reaf {
    width: min(110px, 35%);
    left: 9%;
  }
}
.carrier-section .right-reaf {
  position: absolute;
  bottom: -5%;
  right: -3%;
  margin: auto;
  z-index: 3;
  width: min(400px, 50%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .carrier-section .right-reaf {
    width: min(110px, 35%);
    right: 9%;
  }
}
.carrier-section .carrier-section--wrapper {
  background-image: url(../images/front-page/carrier/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 50px;
  border-radius: 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper {
    padding: 20px;
    border-radius: 30px;
  }
}
.carrier-section .carrier-section--wrapper .carrier-section--wrapper--title {
  width: min(490px, 100%);
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--title {
    width: min(300px, 80%);
    top: -110px;
  }
}
.carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner {
  background-image: url(../images/bg/bg_light_green.webp);
  background-size: contain;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  padding: 130px 80px;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner {
    padding: 10px 30px 50px 30px;
    border-radius: 30px;
  }
}
.carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .service-section__content--wrapper--link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .service-section__content--wrapper--link-btn {
    margin-top: 20px;
  }
}
.carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content .carrier-section--wrapper--inner--content--img {
    max-width: 100px;
    margin: auto;
  }
}
.carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content .carrier-section--wrapper--inner--content--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content .carrier-section--wrapper--inner--content--text {
    gap: 20px;
  }
}
.carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content .carrier-section--wrapper--inner--content--text p {
  color: #2bc2ad;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 210%;
  /* 37.8px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 1024px) {
  .carrier-section .carrier-section--wrapper .carrier-section--wrapper--inner .carrier-section--wrapper--inner--content .carrier-section--wrapper--inner--content--text p {
    text-align: center;
    font-size: 14px;
    line-height: 210%;
    /* 29.4px */
    letter-spacing: 0.7px;
  }
}

.sp--none {
  width: 100%;
  display: block !important;
}
@media screen and (max-width: 1024px) {
  .sp--none {
    display: none !important;
  }
}

.pc--none {
  width: 100%;
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .pc--none {
    display: block !important;
  }
}

footer {
  overflow: hidden;
  background: url("../images/bg/bg_light_green.webp") repeat center center/40px 40px;
}
footer.footer-variation-about {
  background: url(../images/bg/bg_white.webp) no-repeat center center/100% 100%;
}
footer .footer__bg-wrapper {
  position: relative;
  background: url(../images/footer/footer_sp.webp) no-repeat center center/768px 757px;
  width: 100%;
  height: 757px;
}
@media screen and (min-width: 768px) {
  footer .footer__bg-wrapper {
    background: url(../images/footer/footer_pc.webp) no-repeat center center/2000px 892px;
    height: 892px;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper {
  position: absolute;
  left: 50%;
  bottom: 64px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  place-items: center;
}
@media screen and (min-width: 768px) {
  footer .footer__bg-wrapper .footer__nav-wrapper {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
    gap: 40px;
    bottom: 60px;
    width: 344px;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__contact-link {
  margin: 120px auto 0;
  width: 260px;
  height: 50px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: #3ad3be;
  font-weight: 700;
  border-radius: 100vh;
  grid-template-columns: auto auto;
  gap: 4px;
  justify-content: center;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__contact-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__contact-link {
    width: 310px;
    height: 64px;
    margin: 120px auto 0 0;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__contact-link .footer__contact-link-title {
  line-height: 1;
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__contact-link .footer__contact-link-arrow {
  position: absolute;
  width: 22px;
  height: 22px;
  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;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__contact-link .footer__contact-link-arrow {
    right: 22px;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav {
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav {
    width: 100%;
    margin: 0;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list {
    gap: 20px 24px;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-link {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-link {
    font-size: 18px;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-link::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-link:hover::after {
  content: "";
  opacity: 1;
  display: block;
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-sub-list {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-sub-list {
    margin-top: 10px;
    gap: 8px;
  }
}
footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-sub-list .footer__nav-sub-item .footer__nav-sub-link {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-sub-list .footer__nav-sub-item .footer__nav-sub-link {
    font-size: 16px;
    font-weight: 500;
    position: relative;
  }
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-sub-list .footer__nav-sub-item .footer__nav-sub-link::after {
    content: "";
    opacity: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  footer .footer__bg-wrapper .footer__nav-wrapper .footer__nav .footer__nav-list .footer__nav-item .footer__nav-sub-list .footer__nav-sub-item .footer__nav-sub-link:hover::after {
    content: "";
    opacity: 1;
    display: block;
  }
}
footer .footer__bottom-wrapper {
  padding: 20px 0;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  footer .footer__bottom-wrapper {
    padding: 10px 0;
    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;
    gap: 30px;
  }
}
footer .footer__bottom-wrapper .footer__bottom-inner {
  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;
  gap: 30px;
}
footer .footer__bottom-wrapper .footer__bottom-inner .footer__bottom-link {
  font-size: 13px;
  line-height: 1.6;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  display: block;
  font-weight: 500;
}
footer .footer__bottom-wrapper .footer__copyright {
  font-size: 13px;
  line-height: 1.6;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  footer .footer__bottom-wrapper .footer__copyright {
    margin-top: 0;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding-right: 50px;
  padding-left: 50px;
  padding-top: 50px;
}
.header .header--nav--list--button {
  display: none;
}
.header::before {
  content: "";
  background-image: url(../images/common/cloud.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 162px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.header .header--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header--nav .header--nav--logo {
  position: relative;
  z-index: 2;
}
.header .header--nav .header--nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background-color: #fff;
  padding: 17px 50px;
  border-radius: 100vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .header .header--nav .header--nav--list {
    gap: 10px;
    padding: 17px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list {
    background-image: url(../images/bg/bg_blue.webp);
    background-size: contain;
    background-repeat: repeat;
    padding: 100px 16% 0px 16%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: unset;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    gap: 25px;
  }
  .header .header--nav .header--nav--list::after {
    content: "";
    background-image: url(../images/header/bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    background-position: bottom center;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .header .header--nav .header--nav--list > li {
    position: relative;
  }
  .header .header--nav .header--nav--list > li:not(.header--nav--list-contact) {
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
  }
  .header .header--nav .header--nav--list > li:not(.header--nav--list-contact):not(.header--nav--list-contact):not(.header--nav--list--tree)::after {
    content: "";
    border-bottom: #2bc2ad 4px dotted;
    width: 80%;
    position: absolute;
    bottom: -13px;
    left: 10%;
    z-index: 0;
  }
}
.header .header--nav .header--nav--list a {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header--nav .header--nav--list a:hover {
  color: #3ad3be;
}
@media screen and (max-width: 1280px) {
  .header .header--nav .header--nav--list a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list a {
    font-size: 16px;
  }
}
.header .header--nav .header--nav--list .header--nav--list--tree {
  position: relative;
  z-index: 3;
}
.header .header--nav .header--nav--list .header--nav--list--tree a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: relative;
  z-index: 3;
}
.header .header--nav .header--nav--list .header--nav--list--tree a svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list--tree a svg {
    display: none;
  }
}
.header .header--nav .header--nav--list .header--nav--list--tree .header--nav--list--tree--inner--wrap {
  padding-top: 30px;
  position: absolute;
  top: 5px;
  left: -10px;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  /* アニメーション設定 */
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list--tree .header--nav--list--tree--inner--wrap {
    position: static;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
  }
}
.header .header--nav .header--nav--list .header--nav--list--tree .header--nav--list--tree--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  background-color: #f1fff9;
  border-radius: 20px;
  padding: 20px 15px;
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list--tree .header--nav--list--tree--inner {
    background-color: unset;
    padding: unset;
  }
}
.header .header--nav .header--nav--list .header--nav--list--tree .header--nav--list--tree--inner a {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list--tree .header--nav--list--tree--inner a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list--tree:hover .header--nav--list--tree--inner--wrap {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header .header--nav .header--nav--list .header--nav--list--tree:hover a svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.header .header--nav .header--nav--list .header--nav--list--tree:hover a svg path {
  fill: #3ad3be;
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list-contact {
    width: 100%;
  }
}
.header .header--nav .header--nav--list .header--nav--list-contact a {
  color: #fff;
  border-radius: 100vw;
  background: #3ad3be;
  padding: 10px 25px;
}
@media screen and (max-width: 1024px) {
  .header .header--nav .header--nav--list .header--nav--list-contact a {
    width: 100%;
  }
  .header .header--nav .header--nav--list .header--nav--list-contact a.sp--contact-header {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding-top: 0;
    padding-right: 20px;
    padding-left: 20px;
  }
  .header .header--sp-position {
    position: relative;
  }
  .header .fv-left-reaf01 {
    position: absolute;
    left: 0;
    top: -100px;
    z-index: 2;
    width: min(302px, 23%);
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .header .fv-left-reaf01 {
    top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .header .fv-left-reaf02 {
    position: absolute;
    left: 0;
    top: 35%;
    bottom: 0;
    z-index: 2;
    width: min(302px, 23%);
  }
  .header .fv-bg-right-leaf {
    position: absolute;
    right: 0;
    bottom: 20%;
    top: 0;
    margin: auto;
    z-index: 2;
    width: min(302px, 23%);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header.header--is-active .header--nav--list {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header.header--is-active .header--nav--list--button p {
    opacity: 0;
  }
  .header.header--is-active .header--nav--list--button span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(8px, 8px);
            transform: rotate(45deg) translate(8px, 8px);
  }
  .header.header--is-active .header--nav--list--button span:nth-child(2) {
    -webkit-transform: rotate(-45deg) translate(1px, -1px);
            transform: rotate(-45deg) translate(1px, -1px);
  }
  .header::before {
    content: "";
    background-image: url(../images/common/cloud-sp.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .header .header--nav--list--button {
    background-color: #fff;
    border-radius: 100vw;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 17px 10px;
    display: block;
  }
  .header .header--nav--list--button button {
    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: 10px;
  }
  .header .header--nav--list--button button span {
    display: block;
    background-color: #2bc2ad;
    height: 3px;
    width: 100%;
    max-width: 30px;
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header--nav--list--button button p {
    color: #2bc2ad;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 10px */
    letter-spacing: -0.5px;
    margin-top: -5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header--nav--logo li {
    max-width: 80px;
  }
  .header .header--nav--logo li svg {
    width: 100%;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  scroll-behavior: smooth;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dd {
  margin-left: 0;
}

/* img */
/* ============================================ */
img {
  max-width: 100%;
  height: auto;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address,
em {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

.about {
  color: #404040;
}
.about .about__info {
  padding: 0 32px;
}
.about .about__info .about__info-title {
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .about .about__info .about__info-title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.about .about__info .about__info-anchor {
  max-width: 80%;
  min-width: 260px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 14px;
  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;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .about .about__info .about__info-anchor {
    max-width: 990px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    font-size: 16px;
  }
}
.about .about__info .about__info-anchor .about__info-anchor-item .about__info-anchor-item-link {
  height: 50px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3ad3be;
  border-radius: 100px;
  grid-template-columns: auto auto;
  gap: 4px;
  justify-content: center;
  width: 260px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about .about__info .about__info-anchor .about__info-anchor-item .about__info-anchor-item-link {
    padding-right: 12px;
    height: 64px;
    width: 310px;
  }
}
.about .about__info .about__info-anchor .about__info-anchor-item .about__info-anchor-item-link .about__info-anchor-item-link-number {
  line-height: 1;
}
.about .about__info .about__info-anchor .about__info-anchor-item .about__info-anchor-item-link .about__info-anchor-item-link-title {
  line-height: 1;
}
.about .about__info .about__info-anchor .about__info-anchor-item .about__info-anchor-item-link .about__info-anchor-item-link-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  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;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .about .about__info .about__info-anchor .about__info-anchor-item .about__info-anchor-item-link .about__info-anchor-item-link-arrow {
    right: 22px;
  }
}
.about .about__section-title-wrapper {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper.pc-none {
    display: none;
  }
}
.about .about__section-title-wrapper.sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper.sp-none {
    display: block;
  }
}
.about .about__section-title-wrapper .about__section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper .about__section-title {
    font-size: 32px;
  }
}
.about .about__section-title-wrapper .about__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper .about__section-title span {
    display: inline;
  }
}
.about .about__section-title-wrapper .about__section-title span.block {
  display: block;
}
.about .about__section-title-wrapper .about__section-sub-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper .about__section-sub-title-wrapper {
    gap: 11px;
    margin-top: 10px;
  }
}
.about .about__section-title-wrapper .about__section-sub-title-wrapper .about__section-sub-title {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper .about__section-sub-title-wrapper .about__section-sub-title {
    font-size: 24px;
  }
}
.about .about__section-title-wrapper .about__section-title_leaf01 {
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  -webkit-transform: translateY(-80%) scaleX(-1);
          transform: translateY(-80%) scaleX(-1);
  width: 120px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .about .about__section-title-wrapper .about__section-title_leaf01 {
    left: unset;
    right: -60px;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper .about__section-title_leaf01 {
    left: unset;
    right: -180px;
    top: 50%;
    width: 320px;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
.about .about__section-title-wrapper .about__section-title_leaf01 img {
  width: 100%;
}
.about .about__section-title-wrapper .about__section-title_leaf02 {
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  -webkit-transform: translateY(-70%) scaleX(-1);
          transform: translateY(-70%) scaleX(-1);
  width: 120px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .about .about__section-title-wrapper .about__section-title_leaf02 {
    left: -60px;
    right: unset;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
@media screen and (min-width: 1024px) {
  .about .about__section-title-wrapper .about__section-title_leaf02 {
    top: 50%;
    left: -180px;
    right: unset;
    width: 300px;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
.about .about__message {
  padding: 60px 20px 100px 20px;
}
@media screen and (min-width: 768px) {
  .about .about__message {
    padding: 160px 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .about .about__message {
    padding: 0 100px 160px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .about .about__message {
    padding: 0 180px 180px 180px;
  }
}
.about .about__message .about__message-inner {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner {
    margin-top: 0;
    gap: 20px;
  }
}
.about .about__message .about__message-inner .about__message-left-wrapper {
  position: sticky;
  top: 56px;
  left: 0;
  height: 80svh;
  width: 25%;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-left-wrapper {
    width: 28%;
    height: 100svh;
    top: 150px;
  }
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_tree {
  background: url(../images/about/tree-face.webp) no-repeat top center/contain;
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_tree .js-ohnukisan {
  opacity: 0;
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf01 {
  position: absolute;
  top: 25%;
  left: 16px;
  width: 30px;
  height: 23px;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf01 {
    top: 35%;
    left: 42px;
    width: 75px;
    height: 60px;
  }
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf02 {
  position: absolute;
  top: 50%;
  left: 40px;
  width: 18px;
  height: 34px;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf02 {
    top: 50%;
    left: 180px;
    width: 46px;
    height: 90px;
  }
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf03 {
  position: absolute;
  top: 75%;
  left: 16px;
  width: 18px;
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf03 {
    top: 70%;
    left: 80px;
    width: 46px;
    height: 83px;
  }
}
.about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf04 {
  position: absolute;
  top: 100%;
  left: 16px;
  width: 25px;
  height: 26px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-left-wrapper .about__message-left_inner .about__message-left_leaf04 {
    top: 100%;
    left: 160px;
    width: 66px;
    height: 68px;
  }
}
.about .about__message .about__message-inner .about__message-right-wrapper {
  width: 75%;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-right-wrapper {
    width: 72%;
  }
}
.about .about__message .about__message-inner .about__message-right-wrapper .about__message-right-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #2bc2ad;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-right-wrapper .about__message-right-title {
    font-size: 34px;
  }
}
.about .about__message .about__message-inner .about__message-right-wrapper .about__message-right-title span {
  display: block;
}
.about .about__message .about__message-inner .about__message-right-wrapper .about__message-right-text {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #2bc2ad;
  font-weight: 700;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .about .about__message .about__message-inner .about__message-right-wrapper .about__message-right-text {
    font-size: 24px;
  }
}
.about .about__company-info {
  padding: 120px 20px 100px 20px;
}
@media screen and (min-width: 768px) {
  .about .about__company-info {
    padding: 160px 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .about .about__company-info {
    padding: 0 100px 160px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .about .about__company-info {
    padding: 0 180px 180px 180px;
  }
}
.about .about__company-info .about__company-info-contents {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents {
    margin-top: 0;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-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: 15px;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-list {
    gap: 18px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #a4a4a4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item {
    grid-template-columns: 1fr 9fr;
    padding-bottom: 18px;
    gap: 56px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #a4a4a4;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-title {
    font-size: 16px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #404040;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-text {
    font-size: 16px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-text .about__company-info-list-item-text-link {
  color: #404040;
  text-transform: none;
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-sub-list {
  padding-left: 14px;
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-sub-list .about__company-info-list-item-sub-list-item {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #404040;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-sub-list .about__company-info-list-item-sub-list-item {
    font-size: 16px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-sub-list .about__company-info-list-item-sub-list-item::before {
  content: "・";
  color: #404040;
  font-weight: 500;
  position: absolute;
  left: -14px;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-list .about__company-info-list-item .about__company-info-list-item-sub-list .about__company-info-list-item-sub-list-item::before {
    left: -16px;
    font-size: 16px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-map {
  width: 100%;
  height: 230px;
  margin: 60px auto 0;
  max-width: 500px;
}
@media screen and (min-width: 1024px) {
  .about .about__company-info .about__company-info-contents .about__company-info-map {
    height: 350px;
  }
}
.about .about__company-info .about__company-info-contents .about__company-info-map iframe {
  width: 100%;
  height: 100%;
}

.blog {
  color: #404040;
}
.blog .blog__page-desc {
  padding: 0 30px;
  text-align: center;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .blog .blog__page-desc {
    padding: 0 100px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .blog .blog__page-desc {
    padding: 0 180px;
  }
}
.blog .blog__section {
  padding: 40px 20px 100px 20px;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section {
    padding: 60px 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .blog .blog__section {
    padding: 60px 180px 180px 180px;
  }
}
.blog .blog__section .blog__section-inner {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .blog .blog__section .blog__section-inner {
    max-width: 1200px;
    margin-inline: auto;
  }
}
.blog .blog__section .blog__section-inner .blog__section-title-wrapper {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-title-wrapper {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-title-wrapper.pc-none {
    display: none;
  }
}
.blog .blog__section .blog__section-inner .blog__section-title-wrapper.sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-title-wrapper.sp-none {
    display: block;
  }
}
.blog .blog__section .blog__section-inner .blog__section-title-wrapper .blog__section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-title-wrapper .blog__section-title {
    font-size: 32px;
    text-align: left;
  }
}
.blog .blog__section .blog__section-inner .blog__section-title-wrapper .blog__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-title-wrapper .blog__section-title span {
    display: inline;
  }
}
.blog .blog__section .blog__section-inner .blog__section-title-wrapper .blog__section-title span.block {
  display: block;
}
.blog .blog__section .blog__section-inner .blog__section-sub-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-sub-title-wrapper {
    gap: 11px;
    margin-top: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.blog .blog__section .blog__section-inner .blog__section-sub-title-wrapper .blog__section-sub-title {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__section-sub-title-wrapper .blog__section-sub-title {
    font-size: 24px;
  }
}
.blog .blog__section .blog__section-inner .blog__item {
  max-width: 500px;
  margin: 30px auto 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1200px;
  }
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper {
  position: relative;
  z-index: 200;
  margin-top: -20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper {
    margin-top: 0;
  }
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-category {
  padding: 4px 16px;
  border-radius: 100vh;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-category.mint-green {
  background: #e3f9f6;
  color: #2bc2ad;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-category.pink {
  background: #ffebf3;
  color: #ff5591;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-category.yellow-green {
  background: #eaf9e3;
  color: #3bb03b;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-category.orange {
  background: #fffdf2;
  color: #f9792f;
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #404040;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-title {
    font-size: 22px;
    line-height: 1.7;
    margin-top: 16px;
  }
}
.blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #a4a4a4;
  font-family: "Alegreya Sans SC", sans-serif;
}
@media screen and (min-width: 1024px) {
  .blog .blog__section .blog__section-inner .blog__item .blog__item-info-wrapper .blog__item-date {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 10px;
  }
}
.blog .blog__recommend {
  background: url("../images/bg/bg_light_yellow.webp") repeat center center/40px 40px;
}
.blog .blog__recommend .blog__recommend-tree-wrapper {
  position: relative;
}
.blog .blog__recommend .blog__recommend-tree-wrapper .blog__recommend-tree-left {
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 128px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .blog .blog__recommend .blog__recommend-tree-wrapper .blog__recommend-tree-left {
    left: -100px;
    width: 180px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media screen and (min-width: 1280px) {
  .blog .blog__recommend .blog__recommend-tree-wrapper .blog__recommend-tree-left {
    left: -180px;
    width: 255px;
  }
}
.blog .blog__recommend .blog__recommend-tree-wrapper .blog__recommend-tree-right {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 128px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .blog .blog__recommend .blog__recommend-tree-wrapper .blog__recommend-tree-right {
    right: -100px;
    width: 180px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media screen and (min-width: 1280px) {
  .blog .blog__recommend .blog__recommend-tree-wrapper .blog__recommend-tree-right {
    right: -180px;
    width: 255px;
  }
}
.blog .blog__new {
  padding-top: 130px;
  background: url("../images/bg/bg_white.webp") repeat center center/40px 40px;
  position: relative;
}
.blog .blog__new::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../images/bg/bg_light_green.webp") repeat center center/40px 40px;
  -webkit-mask-image: url("../images/bg/bottom_mask.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("../images/bg/bottom_mask.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .blog .blog__new::after {
    bottom: -24px;
  }
}
@media screen and (min-width: 1900px) {
  .blog .blog__new::after {
    bottom: -32px;
    height: 160px;
  }
}
.blog .blog__new .blog__new-item-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
  margin-top: 90px;
}
@media screen and (min-width: 1024px) {
  .blog .blog__new .blog__new-item-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 1200px;
    margin-inline: auto;
  }
}
.blog .blog__new .blog__new-item-wrapper .blog__item--new {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .blog .blog__new .blog__new-item-wrapper .blog__item--new {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.blog .blog__new .blog__new-item-wrapper .blog__item--new .character-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 150px;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
}
.blog .blog__new .blog__new-item-wrapper .blog__item--new .character-wrapper.even {
  left: unset;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .blog .blog__new .blog__new-item-wrapper .blog__item--new .character-wrapper.even {
    left: 0;
    right: unset;
  }
}
.blog .blog__new .blog__new-item-wrapper .blog__item--new .blog__item-info-wrapper {
  margin-top: -20px;
}
.blog .blog__new .blog__new-item-wrapper .blog__item--new .blog__item-info-wrapper .blog__item-title {
  font-size: 16px;
}
.blog .blog__new .blog__new-item-wrapper .blog__item--new .blog__item-info-wrapper .blog__item-date {
  font-size: 14px;
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper {
  background: #fff;
  padding: 16px 10px;
  border-radius: 16px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper {
    margin-top: 60px;
    padding: 30px 40px;
  }
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-title {
    font-size: 20px;
  }
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 14px;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-list {
    margin-top: 20px;
    gap: 20px 16px;
  }
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-list .blog__list-category-item .blog__list-category-link {
  font-size: 16px;
  color: #3ad3be;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 4px 18px;
  border-radius: 100vh;
  border: 2px solid #3ad3be;
  display: block;
}
@media screen and (min-width: 1024px) {
  .blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-list .blog__list-category-item .blog__list-category-link {
    font-size: 18px;
  }
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-category-wrapper .blog__list-category-list .blog__list-category-item .blog__list-category-link.active {
  background: #3ad3be;
  color: #fff;
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-item-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .blog .blog__list .blog__list-contents-wrapper .blog__list-item-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 60px;
    max-width: 1200px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .blog .blog__list .blog__list-contents-wrapper .blog__list-item-wrapper .blog__item--list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
  }
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-item-wrapper .blog__item--list .blog__item-info-wrapper {
  margin-top: -20px;
}
.blog .blog__list .blog__list-contents-wrapper .blog__list-item-wrapper .blog__item--list .blog__item-info-wrapper .blog__item-title {
  font-size: 16px;
}
.blog .no-post {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  white-space: nowrap;
}
.blog .pagination {
  margin: 40px auto 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .blog .pagination {
    margin: 80px auto 0 auto;
  }
}
.blog .pagination .sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .blog .pagination .sp-none {
    display: block;
  }
}
.blog .pagination .pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.blog .pagination .pagination__item .pagination__link {
  background: #fff;
  border-radius: 100vh;
  border: 1px solid #3ad3be;
  color: #3ad3be;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1024px) {
  .blog .pagination .pagination__item .pagination__link {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
.blog .pagination .pagination__item .pagination__link.pagination__prev, .blog .pagination .pagination__item .pagination__link.pagination__next, .blog .pagination .pagination__item .pagination__link.pagination__last, .blog .pagination .pagination__item .pagination__link.pagination__first {
  background: none;
  border: none;
}
.blog .pagination .pagination__item .pagination__link.pagination__prev svg, .blog .pagination .pagination__item .pagination__link.pagination__next svg, .blog .pagination .pagination__item .pagination__link.pagination__last svg, .blog .pagination .pagination__item .pagination__link.pagination__first svg {
  display: block;
}
.blog .pagination .pagination__item .pagination__link.is-current {
  background-color: #3ad3be;
  color: #fff;
  pointer-events: none;
}

.career {
  color: #404040;
  overflow: hidden;
}
.career .sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .career .sp-none {
    display: block;
  }
}
.career .pc-none {
  display: block;
}
@media screen and (min-width: 1024px) {
  .career .pc-none {
    display: none;
  }
}
.career .pc-l-none {
  display: block;
}
@media screen and (min-width: 1280px) {
  .career .pc-l-none {
    display: none;
  }
}
.career .career__section-first {
  padding: 0 20px 160px 20px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first {
    padding: 0 100px 240px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first {
    padding: 40px 180px 425px 180px;
  }
}
.career .career__section-first .career__section-first-title-wrapper {
  background: url("../images/career/tree-cloud_sp.webp") no-repeat top left/contain;
  padding: 30px 10px 56px 97px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-title-wrapper {
    background: url("../images/career/tree-cloud_pc.webp") no-repeat top left/contain;
    padding: 84px 200px 200px 320px;
    max-width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first-title-wrapper {
    background: url("../images/career/tree-cloud_xl.webp") no-repeat top left/contain;
    padding: 84px 350px 220px 350px;
  }
}
.career .career__section-first .career__section-first-title-wrapper .career__section-first-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #2bc2ad;
  text-transform: uppercase;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-title-wrapper .career__section-first-title {
    font-size: 30px;
  }
}
.career .career__section-first .career__section-first-title-wrapper .career__section-first-title span {
  display: block;
}
.career .career__section-first .career__section-first-title-wrapper .career__section-first-title_birds {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-title-wrapper .career__section-first-title_birds {
    right: -30px;
    bottom: unset;
    top: 30px;
    width: 100px;
    height: 130px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first-title-wrapper .career__section-first-title_birds {
    right: 188px;
    top: 8px;
    width: 152px;
    height: 172px;
  }
}
.career .career__section-first .career__section-first_text-wrapper {
  padding: 0 10px 56px 97px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper {
    padding: 0 0 56px 320px;
    margin-top: -56px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first_text-wrapper {
    padding: 0 0 56px 350px;
    margin-top: -120px;
  }
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text {
  font-size: 13px;
  font-weight: 500;
  color: #24a9a5;
  line-height: 2.2;
  letter-spacing: 0.05em;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text {
    font-size: 24px;
  }
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text:not(:first-child) {
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text:not(:first-child) {
    margin-top: 56px;
  }
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 {
  position: relative;
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf01_img {
  left: -72px;
  bottom: 4px;
  width: 29px;
  height: 23px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf01_img {
    left: -250px;
    bottom: -60px;
    width: 64px;
    height: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf01_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf01_img {
    left: -260px;
    bottom: -30px;
    width: 75px;
    height: 60px;
  }
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf02_img {
  left: -57px;
  bottom: 40px;
  width: 18px;
  height: 34px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf02_img {
    left: -120px;
    bottom: -80px;
    width: 40px;
    height: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf02_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf02_img {
    left: -130px;
    bottom: -60px;
    width: 46px;
    height: 90px;
  }
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf03_img {
  left: -68px;
  bottom: 20px;
  width: 18px;
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf03_img {
    left: -250px;
    bottom: 30px;
    width: 40px;
    height: 83px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf03_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf03_img {
    left: -242px;
    bottom: -10px;
    width: 46px;
    height: 83px;
  }
}
.career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf04_img {
  left: -45px;
  bottom: 40px;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf04_img {
    left: -150px;
    bottom: 0px;
    width: 60px;
    height: 68px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf01 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf02 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf03 .falling-leaf04_img, .career .career__section-first .career__section-first_text-wrapper .career__section-first_text.falling-leaf04 .falling-leaf04_img {
    left: -140px;
    bottom: 0px;
    width: 66px;
    height: 68px;
  }
}
.career .career__section-first .career__section-first-content {
  margin-top: 60px;
  padding: 30px 20px 100px 20px;
  border-radius: 40px;
  max-width: 460px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content {
    margin-top: 60px;
    padding: 60px 90px 110px 90px;
    max-width: none;
  }
}
.career .career__section-first .career__section-first-content.green {
  background-color: #48c392;
}
.career .career__section-first .career__section-first-content .career__section-first-content_title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_title {
    font-size: 26px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_title.white {
  color: #fff;
}
.career .career__section-first .career__section-first-content .career__section-first-content_title.black {
  color: #404040;
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner {
  margin-top: 30px;
  background: #fff;
  padding: 30px 20px 40px 20px;
  border-radius: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_inner {
    padding: 20px 63px 40px 63px;
    margin-top: 40px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner.second {
  margin-top: 120px;
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_title-wrapper {
  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;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_title-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_title-wrapper .career__section-first-content_inner-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #2bc2ad;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_title-wrapper .career__section-first-content_inner-title {
    font-size: 24px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_title-wrapper img {
  width: 55px;
  height: 57px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_title-wrapper img {
    width: 74px;
    height: 76px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 9px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_text {
    font-size: 16px;
    margin: 0 0 0 94px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_character-wrapper {
  position: absolute;
  left: -12px;
  bottom: -80px;
  width: 120px;
  height: 120px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_character-wrapper {
    left: -60px;
    bottom: -80px;
    width: 180px;
    height: 180px;
  }
}
.career .career__section-first .career__section-first-content .career__section-first-content_inner .career__section-first-content_character-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.career .career__section-title-wrapper .career__section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #404040;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .career .career__section-title-wrapper .career__section-title {
    font-size: 32px;
  }
}
.career .career__section-title-wrapper .career__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .career .career__section-title-wrapper .career__section-title span {
    display: inline;
  }
}
.career .career__section-title-wrapper .career__section-title span.block {
  display: block;
}
.career .career__section-title-wrapper .career__section-sub-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .career .career__section-title-wrapper .career__section-sub-title-wrapper {
    gap: 11px;
    margin-top: 10px;
  }
}
.career .career__section-title-wrapper .career__section-sub-title-wrapper .career__section-sub-title {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .career .career__section-title-wrapper .career__section-sub-title-wrapper .career__section-sub-title {
    font-size: 24px;
  }
}
.career .career__section-available {
  padding: 60px 20px 80px 20px;
  background: url("../images/bg/bg_green_footer.webp") repeat center center/40px 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available {
    padding: 80px 100px 80px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .career .career__section-available {
    padding: 50px 180px 180px 180px;
  }
}
.career .career__section-available .career__section-available_bg-wrapper {
  position: absolute;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 185px;
  -o-object-fit: contain;
     object-fit: contain;
  background: url("../images/career/available-tree.webp") repeat-x center center/600px 185px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available_bg-wrapper {
    top: -240px;
    height: 569px;
    background: url("../images/career/available-tree_pc.webp") repeat-x center center/1834px 569px;
  }
}
.career .career__section-available .career__section-available-wrapper {
  background: #feffe4;
  border-radius: 20px;
  padding: 40px 20px 80px 20px;
  position: relative;
  z-index: 100;
  max-width: 460px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper {
    padding: 100px 140px 180px 140px;
    max-width: none;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper {
    gap: 30px;
    margin-top: 60px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #2bc2ad;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-title {
    font-size: 20px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #404040;
  margin-top: 4px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-text {
    font-size: 16px;
    margin-top: 2px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner {
  margin-top: 14px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner {
    padding: 14px 20px;
    border-radius: 16px;
    margin-top: 16px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message-title-wrapper {
    gap: 8px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message-title-wrapper svg {
  width: 30px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message-title-wrapper svg {
    width: 38px;
    height: 30px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message-title-wrapper .career__section-available_item-message-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #404040;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message-title-wrapper .career__section-available_item-message-title {
    font-size: 16px;
  }
}
.career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #404040;
}
@media screen and (min-width: 1024px) {
  .career .career__section-available .career__section-available-wrapper .career__section-available_item-wrapper .career__section-available_item .career__section-available_item-inner .career__section-available_item-message {
    font-size: 16px;
    margin-top: 4px;
  }
}
.career .career__section-flow {
  padding: 140px 30px 80px 30px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
.career .career__section-flow .career__section-flow-wrapper {
  background: url("../images/career/flow.webp") no-repeat center center/cover;
  width: 100%;
  height: 100%;
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: calc(80% + 58px);
  max-width: 1200px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper {
    margin: 60px auto 0 auto;
    gap: 30px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item {
  padding: 8px 10px 10px 10px;
  background: rgba(255, 255, 255, .6);
  border-radius: 14px;
  width: 80%;
  height: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item {
    padding: 10px 20px 14px 20px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -58px;
  z-index: 100;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 100vh;
  border: 1px solid #3ad3be;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item::before {
    width: 100px;
    height: 100px;
    padding: 20px;
    left: -130px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item::after {
  content: "";
  position: absolute;
  top: 25px;
  left: -34px;
  z-index: 10;
  width: 2px;
  height: 100%;
  background: #3ad3be;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item::after {
    top: 50px;
    left: -80px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(1)::before {
  background: #fff url("../images/career/flow01.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(1)::before {
    background: #fff url("../images/career/flow01.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(2)::before {
  background: #fff url("../images/career/flow02.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(2)::before {
    background: #fff url("../images/career/flow02.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(3)::before {
  background: #fff url("../images/career/flow03.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(3)::before {
    background: #fff url("../images/career/flow03.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(4)::before {
  background: #fff url("../images/career/flow04.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(4)::before {
    background: #fff url("../images/career/flow04.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(5)::before {
  background: #fff url("../images/career/flow05.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(5)::before {
    background: #fff url("../images/career/flow05.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(6)::before {
  background: #fff url("../images/career/flow06.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(6)::before {
    background: #fff url("../images/career/flow06.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(7)::before {
  background: #fff url("../images/career/flow07.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(7)::before {
    background: #fff url("../images/career/flow07.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(8)::before {
  background: #fff url("../images/career/flow08.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(8)::before {
    background: #fff url("../images/career/flow08.svg") no-repeat center center/60px 60px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item:nth-child(8)::after {
  display: none;
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item .career__section-flow-item-title {
  color: #2bc2ad;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item .career__section-flow-item-title {
    font-size: 20px;
  }
}
.career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item .career__section-flow-item-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #404040;
}
@media screen and (min-width: 1024px) {
  .career .career__section-flow .career__section-flow-wrapper .career__section-flow-item-wrapper .career__section-flow-item .career__section-flow-item-text {
    font-size: 16px;
    margin-top: 2px;
  }
}

.company {
  color: #404040;
  overflow: hidden;
}
.company .sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .company .sp-none {
    display: block;
  }
}
.company .pc-none {
  display: block;
}
@media screen and (min-width: 1024px) {
  .company .pc-none {
    display: none;
  }
}
.company .pc-l-none {
  display: block;
}
@media screen and (min-width: 1280px) {
  .company .pc-l-none {
    display: none;
  }
}
.company .company__section-first {
  padding: 0 20px 80px 20px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first {
    padding: 0 100px 140px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first {
    padding: 40px 180px 190px 180px;
  }
}
.company .company__section-first .company__section-first-title-wrapper {
  background: url("../images/career/tree-cloud_sp.webp") no-repeat top left/contain;
  padding: 30px 16px 56px 97px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-title-wrapper {
    background: url("../images/career/tree-cloud_pc.webp") no-repeat top left/contain;
    padding: 84px 160px 200px 320px;
    max-width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first-title-wrapper {
    background: url("../images/career/tree-cloud_xl.webp") no-repeat top left/contain;
    padding: 84px 330px 220px 350px;
  }
}
.company .company__section-first .company__section-first-title-wrapper .company__section-first-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #2bc2ad;
  text-transform: uppercase;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: -12px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-title-wrapper .company__section-first-title {
    font-size: 30px;
  }
}
.company .company__section-first .company__section-first-title-wrapper .company__section-first-title span {
  display: block;
}
.company .company__section-first .company__section-first-title-wrapper .company__section-first-title_birds {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-title-wrapper .company__section-first-title_birds {
    right: -30px;
    bottom: unset;
    top: 30px;
    width: 100px;
    height: 130px;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first-title-wrapper .company__section-first-title_birds {
    right: 188px;
    top: 8px;
    width: 152px;
    height: 172px;
  }
}
.company .company__section-first .company__section-first_text-wrapper {
  padding: 0 10px 86px 97px;
  width: 350px;
  margin-top: -8px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper {
    padding: 0 0 100px 320px;
    margin-top: -56px;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first_text-wrapper {
    padding: 0 0 146px 364px;
    margin-top: -120px;
  }
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text {
  font-size: 13px;
  font-weight: 500;
  color: #24a9a5;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text {
    font-size: 24px;
  }
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text:not(:first-child) {
    margin-top: 56px;
  }
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 {
  position: relative;
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf01_img {
  left: -68px;
  bottom: -24px;
  width: 29px;
  height: 23px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf01_img {
    left: -250px;
    bottom: -60px;
    width: 64px;
    height: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf01_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf01_img {
    left: -260px;
    bottom: -130px;
    width: 75px;
    height: 60px;
  }
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf02_img {
  left: -44px;
  bottom: 0px;
  width: 18px;
  height: 34px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf02_img {
    left: -120px;
    bottom: -80px;
    width: 40px;
    height: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf02_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf02_img {
    left: -140px;
    bottom: -130px;
    width: 46px;
    height: 90px;
  }
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf03_img {
  left: -68px;
  bottom: -10px;
  width: 18px;
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf03_img {
    left: -250px;
    bottom: 30px;
    width: 40px;
    height: 83px;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf03_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf03_img {
    left: -250px;
    bottom: -90px;
    width: 46px;
    height: 83px;
  }
}
.company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf04_img {
  left: -45px;
  bottom: 50px;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf04_img {
    left: -150px;
    bottom: 0px;
    width: 60px;
    height: 68px;
  }
}
@media screen and (min-width: 1280px) {
  .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf01 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf02 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf03 .falling-leaf04_img, .company .company__section-first .company__section-first_text-wrapper .company__section-first_text.falling-leaf04 .falling-leaf04_img {
    left: -140px;
    bottom: -20px;
    width: 66px;
    height: 68px;
  }
}
.company .company__section-first .company__section-first-content {
  margin-top: 60px;
  padding: 30px 20px 100px 20px;
  border-radius: 30px;
  max-width: 460px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content {
    margin-top: 0;
    padding: 60px 90px 110px 90px;
    max-width: none;
    border-radius: 40px;
  }
}
.company .company__section-first .company__section-first-content.green {
  background-color: #48c392;
}
.company .company__section-first .company__section-first-content .company__section-first-content_title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_title {
    font-size: 26px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_title.white {
  color: #fff;
}
.company .company__section-first .company__section-first-content .company__section-first-content_title.black {
  color: #404040;
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner {
  margin-top: 30px;
  background: #fff;
  padding: 30px 20px 40px 20px;
  border-radius: 30px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_inner {
    padding: 20px 63px 40px 63px;
    margin-top: 40px;
    border-radius: 40px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner.second {
  margin-top: 110px;
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_title-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_title-wrapper .company__section-first-content_inner-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #2bc2ad;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_title-wrapper .company__section-first-content_inner-title {
    font-size: 24px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_title-wrapper img {
  width: 55px;
  height: 57px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_title-wrapper img {
    width: 74px;
    height: 76px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 9px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_text {
    font-size: 16px;
    margin: 0 0 0 94px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_character-wrapper {
  position: absolute;
  left: -12px;
  bottom: -80px;
  width: 120px;
  height: 120px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_character-wrapper {
    left: -60px;
    bottom: -80px;
    width: 180px;
    height: 180px;
  }
}
.company .company__section-first .company__section-first-content .company__section-first-content_inner .company__section-first-content_character-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.company .company__section-title-wrapper .company__section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #404040;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .company .company__section-title-wrapper .company__section-title {
    font-size: 32px;
  }
}
.company .company__section-title-wrapper .company__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .company .company__section-title-wrapper .company__section-title span {
    display: inline;
  }
}
.company .company__section-title-wrapper .company__section-title span.block {
  display: block;
}
.company .company__section-title-wrapper .company__section-sub-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .company .company__section-title-wrapper .company__section-sub-title-wrapper {
    gap: 11px;
    margin-top: 10px;
  }
}
.company .company__section-title-wrapper .company__section-sub-title-wrapper .company__section-sub-title {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .company .company__section-title-wrapper .company__section-sub-title-wrapper .company__section-sub-title {
    font-size: 24px;
  }
}
.company .company__section-flow {
  padding: 0 30px 100px 30px;
  margin-top: 0;
  position: relative;
  z-index: 10;
}
.company .company__section-flow .company__section-flow-wrapper {
  background: url("../images/career/flow.webp") no-repeat center center/cover;
  width: 100%;
  height: 100%;
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: calc(80% + 58px);
  max-width: 1200px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper {
    margin: 60px auto 0 auto;
    gap: 30px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item {
  padding: 8px 10px 10px 10px;
  background: rgba(255, 255, 255, .6);
  border-radius: 14px;
  width: 80%;
  height: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item {
    padding: 10px 20px 14px 20px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -58px;
  z-index: 100;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 100vh;
  border: 1px solid #3ad3be;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item::before {
    width: 100px;
    height: 100px;
    padding: 20px;
    left: -130px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item::after {
  content: "";
  position: absolute;
  top: 25px;
  left: -34px;
  z-index: 10;
  width: 2px;
  height: 100%;
  background: #3ad3be;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item::after {
    top: 50px;
    left: -80px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(1)::before {
  background: #fff url("../images/career/flow01.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(1)::before {
    background: #fff url("../images/career/flow01.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(2)::before {
  background: #fff url("../images/company/flow02.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(2)::before {
    background: #fff url("../images/company/flow02.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(3)::before {
  background: #fff url("../images/company/flow03.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(3)::before {
    background: #fff url("../images/company/flow03.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(4)::before {
  background: #fff url("../images/career/flow04.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(4)::before {
    background: #fff url("../images/career/flow04.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(5)::before {
  background: #fff url("../images/company/flow05.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(5)::before {
    background: #fff url("../images/company/flow05.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(6)::before {
  background: #fff url("../images/career/flow05.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(6)::before {
    background: #fff url("../images/career/flow05.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(7)::before {
  background: #fff url("../images/career/flow08.svg") no-repeat center center/30px 30px;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(7)::before {
    background: #fff url("../images/career/flow08.svg") no-repeat center center/60px 60px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item:nth-child(7)::after {
  display: none;
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item .company__section-flow-item-title {
  color: #2bc2ad;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item .company__section-flow-item-title {
    font-size: 20px;
  }
}
.company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item .company__section-flow-item-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #404040;
}
@media screen and (min-width: 1024px) {
  .company .company__section-flow .company__section-flow-wrapper .company__section-flow-item-wrapper .company__section-flow-item .company__section-flow-item-text {
    font-size: 16px;
    margin-top: 2px;
  }
}

.contact-company {
  color: #404040;
}
.contact-company .template-parts .head_wrapper .contact-company__title {
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .contact-company .template-parts .head_wrapper .contact-company__title {
    font-size: 52px;
  }
}
.contact-company .template-parts .contact-company__svg-wrapper {
  width: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .contact-company .template-parts .contact-company__svg-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-company .template-parts .contact-company__svg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.contact-company .contact-company__wrapper {
  padding: 40px 24px 100px 24px;
}
@media screen and (min-width: 768px) {
  .contact-company .contact-company__wrapper {
    padding: 40px 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-company .contact-company__wrapper {
    padding: 80px 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-company .contact-company__wrapper {
    padding: 80px 180px 180px 180px;
  }
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner {
  max-width: 1080px;
  margin-inline: auto;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__desc {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__desc {
    font-size: 20px;
  }
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form {
  margin-top: 32px;
  background-color: #fff;
  padding: 60px 20px 40px 20px;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form {
    margin-top: 40px;
    padding: 60px 100px;
  }
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-desc {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-desc span {
  color: #ed2424;
}
@media screen and (min-width: 1024px) {
  .contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-desc {
    font-size: 16px;
  }
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-title {
  font-size: 16px;
  line-height: 1.5;
  color: #404040;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-title span {
  color: #ed2424;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-checkbox-wrapper {
  margin-top: 24px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-checkbox-wrapper .contact-company__form-item-checkbox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px 30px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-checkbox-wrapper .contact-company__form-item-checkbox-inner .wpcf7-list-item {
  margin-left: 0;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-checkbox-wrapper .contact-company__form-item-checkbox-inner .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-checkbox-wrapper .contact-company__form-item-checkbox-inner .wpcf7-list-item label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid #9ca3af;
  cursor: pointer;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-checkbox-wrapper .contact-company__form-item-checkbox-inner .wpcf7-list-item label input[type=checkbox]:checked {
  width: 24px;
  height: 24px;
  background: #54a472 url(../images/contact/check.svg) no-repeat center center;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-textarea {
  width: 100%;
  height: 170px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #54a472;
  background: #f4f5f7;
  resize: none;
  margin-top: 16px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-content .contact-company__form-item .contact-company__form-item-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 56px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #54a472;
  background: #f4f5f7;
  margin-top: 16px;
  display: block;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-privacy-wrapper {
  margin-top: 50px;
  background: #e5e7eb;
  padding: 30px 20px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-privacy-wrapper .contact-company__form-privacy-title {
  font-size: 18px;
  line-height: 1.7;
  color: #1f2937;
  font-weight: 700;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-privacy-wrapper .contact-company__form-privacy-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  margin-top: 16px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-privacy-wrapper .contact-company__form-privacy-text a {
  color: #2460d8;
  text-decoration: underline;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-item-privacy {
  margin-top: 24px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-item-privacy .wpcf7-list-item {
  margin-left: 0;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-item-privacy .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-item-privacy .wpcf7-list-item label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid #9ca3af;
  cursor: pointer;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-item-privacy .wpcf7-list-item label input[type=checkbox]:checked {
  width: 24px;
  height: 24px;
  background: #54a472 url(../images/contact/check.svg) no-repeat center center;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-button-wrapper {
  margin-top: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-button-wrapper .contact-company__form-button {
  border-radius: 100vh;
  background: #54a472;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-button-wrapper input[type=submit] {
  border-radius: 100vh;
  background: #54a472;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}
.contact-company .contact-company__wrapper .contact-company__wrapper-inner .contact-company__form .contact-company__form-area .contact-company__form-button-wrapper .wpcf7-spinner {
  display: none;
}

.contact-confirm {
  color: #404040;
}
.contact-confirm .template-parts .head_wrapper .contact-confirm__title {
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .contact-confirm .template-parts .head_wrapper .contact-confirm__title {
    font-size: 52px;
  }
}
.contact-confirm .template-parts .contact-confirm__svg-wrapper {
  width: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .contact-confirm .template-parts .contact-confirm__svg-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-confirm .template-parts .contact-confirm__svg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.contact-confirm .contact-confirm__wrapper {
  padding: 40px 24px 100px 24px;
}
@media screen and (min-width: 768px) {
  .contact-confirm .contact-confirm__wrapper {
    padding: 40px 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-confirm .contact-confirm__wrapper {
    padding: 80px 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-confirm .contact-confirm__wrapper {
    padding: 80px 180px 180px 180px;
  }
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form {
  margin-top: 32px;
  background-color: #fff;
  padding: 60px 20px;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .contact-confirm .contact-confirm__wrapper .contact-confirm__form {
    margin-top: 40px;
    padding: 60px 100px;
  }
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-desc {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-desc span {
  color: #ed2424;
}
@media screen and (min-width: 1024px) {
  .contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-desc {
    font-size: 16px;
  }
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-content .contact-confirm__form-item .contact-confirm__form-item-title {
  font-size: 16px;
  line-height: 1.5;
  color: #404040;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-content .contact-confirm__form-item .contact-confirm__form-item-title span {
  color: #ed2424;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-content .contact-confirm__form-item .contact-confirm__form-item-wrapper {
  margin-top: 16px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #54a472;
  background: #f4f5f7;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-button-wrapper {
  margin-top: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-button-wrapper .wpcf7-previous {
  display: block !important;
  color: #54a472;
  font-size: 16px;
  line-height: 1.7;
  padding: 20px 30px;
  border-radius: 100vh;
  background: #fff;
  border: 1px solid #54a472;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-button-wrapper .contact-confirm__form-button {
  border-radius: 100vh;
  background: #54a472;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}
.contact-confirm .contact-confirm__wrapper .contact-confirm__form .contact-confirm__form-area .contact-confirm__form-button-wrapper input[type=submit] {
  border-radius: 100vh;
  background: #54a472;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.contact-job {
  color: #404040;
}
.contact-job [data-scope-path="book_boards/show"] {
  max-width: 780px;
  padding-top: 59px;
  padding-bottom: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact-job [data-scope-path="book_boards/show"] {
    padding-top: 0;
  }
}
.contact-job .template-parts .head_wrapper .contact-job__title {
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .contact-job .template-parts .head_wrapper .contact-job__title {
    font-size: 52px;
  }
}
.contact-job .template-parts .contact-job__svg-wrapper {
  width: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .contact-job .template-parts .contact-job__svg-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-job .template-parts .contact-job__svg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.contact-job .contact-job__wrapper {
  padding: 40px 10px 100px 10px;
}
@media screen and (min-width: 768px) {
  .contact-job .contact-job__wrapper {
    padding: 40px 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-job .contact-job__wrapper {
    padding: 80px 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-job .contact-job__wrapper {
    padding: 80px 180px 180px 180px;
  }
}
.contact-job .contact-job__wrapper .contact-job__wrapper-inner {
  max-width: 1080px;
  margin-inline: auto;
}
.contact-job .contact-job__wrapper .contact-job__wrapper-inner .contact-job__desc {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-job .contact-job__wrapper .contact-job__wrapper-inner .contact-job__desc {
    font-size: 20px;
  }
}
.contact-job .contact-job__wrapper .contact-job__wrapper-inner .contact-job__form {
  margin-top: 32px;
  background-color: #fff;
  padding: 20px 10px 0 10px;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .contact-job .contact-job__wrapper .contact-job__wrapper-inner .contact-job__form {
    margin-top: 40px;
    padding: 0;
  }
}
.contact-job .contact-job__wrapper .contact-job__wrapper-inner .contact-job__form .contact-job__form-wrapper {
  display: grid;
  place-items: center;
  overflow-x: scroll;
}
.contact-job .contact-job__wrapper .contact-job__wrapper-inner .contact-job__form .contact-job__form-wrapper iframe body {
  overflow-y: clip;
}

.contact {
  color: #404040;
}
.contact .template-parts .head_wrapper .contact__title {
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .contact .template-parts .head_wrapper .contact__title {
    font-size: 52px;
  }
}
.contact .template-parts .contact__svg-wrapper {
  width: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .contact .template-parts .contact__svg-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact .template-parts .contact__svg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.contact .contact__wrapper {
  padding: 0 20px 100px 20px;
}
@media screen and (min-width: 768px) {
  .contact .contact__wrapper {
    padding: 0 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .contact .contact__wrapper {
    padding: 0 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .contact .contact__wrapper {
    padding: 0 180px 180px 180px;
  }
}
.contact .contact__wrapper .contact__wrapper-inner {
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .contact .contact__wrapper .contact__wrapper-inner {
    margin-top: 100px;
  }
}
.contact .contact__wrapper .contact__wrapper-inner .contact__page-desc {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact .contact__wrapper .contact__wrapper-inner .contact__page-desc {
    font-size: 20px;
  }
}
.contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 26px;
}
@media screen and (min-width: 1024px) {
  .contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper {
    margin-top: 40px;
  }
}
.contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper .contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: #54a472;
  color: #fff;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (min-width: 1024px) {
  .contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper .contact__button {
    padding: 68px 60px;
  }
}
.contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper .contact__button .contact__button-info .contact__button-title-en {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: capitalize;
}
.contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper .contact__button .contact__button-info .contact__button-title {
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.contact .contact__wrapper .contact__wrapper-inner .contact__button-wrapper .contact__button .contact__button-info .contact__button-desc {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.diagnosis {
  color: #404040;
}
.diagnosis .diagnosis__wrapper {
  padding: 0 30px 100px 30px;
}
@media screen and (min-width: 768px) {
  .diagnosis .diagnosis__wrapper {
    padding: 0 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .diagnosis .diagnosis__wrapper {
    padding: 0 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .diagnosis .diagnosis__wrapper {
    padding: 0 180px 180px 180px;
  }
}
.diagnosis .diagnosis__wrapper-inner {
  margin-inline: auto;
  max-width: 800px;
}
@media screen and (min-width: 1024px) {
  .diagnosis .diagnosis__wrapper-inner {
    gap: 40px;
    margin-top: -120px;
  }
}
.diagnosis .diagnosis__wrapper-inner .diagnosis__text-wrapper {
  text-align: center;
}
.diagnosis .diagnosis__wrapper-inner .diagnosis__text-wrapper .diagnosis__title {
  padding: 0 20px;
  max-width: 400px;
  margin: auto;
}
.diagnosis .diagnosis__wrapper-inner .diagnosis__img-wrapper {
  text-align: center;
  max-width: 200px;
  margin-inline: auto;
}
.diagnosis .diagnosis__text {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  /* 36px */
  letter-spacing: 1px;
  color: #404040;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .diagnosis .diagnosis__text {
    font-size: 20px;
  }
}
.diagnosis .diagnosis-wrapper {
  border-radius: 20px;
  background: #FFF;
  padding: 50px 80px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis-wrapper {
    padding: 25px 20px 40px;
    margin-top: 40px;
  }
}
.diagnosis .diagnosis-wrapper .diagnosis-wrapper--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.diagnosis .diagnosis-wrapper .diagnosis-wrapper--title--number {
  position: relative;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.diagnosis .diagnosis-wrapper .diagnosis-wrapper--title--number--text {
  color: #FFF;
  font-family: "Alegreya Sans SC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.diagnosis .diagnosis-wrapper .diagnosis-wrapper--title--question {
  color: #2BC2AD;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 32px */
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis-wrapper .diagnosis-wrapper--title--question {
    font-size: 14px;
  }
}
.diagnosis .diagnosis-wrapper .diagnosis-wrapper--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis-wrapper .diagnosis-wrapper--buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 30px;
  }
}
.diagnosis .diagnosis-wrapper .diagnosis-btn {
  position: relative;
  display: block;
  cursor: pointer;
  border: 2px solid #3AD3BE;
  border-radius: 4px;
  padding: 16px 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis-wrapper .diagnosis-btn {
    max-width: 100%;
  }
}
.diagnosis .diagnosis-wrapper .diagnosis-btn:hover {
  border-color: #3AD3BE;
  background-color: #3AD3BE;
}
.diagnosis .diagnosis-wrapper .diagnosis-btn:hover span {
  color: #fff;
}
.diagnosis .diagnosis-wrapper .diagnosis-btn input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
}
.diagnosis .diagnosis-wrapper .diagnosis-btn span {
  display: block;
  pointer-events: none;
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.diagnosis .back-btn--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.diagnosis .back-btn--wrapper.is-active {
  opacity: 1;
  visibility: visible;
}
.diagnosis .back-btn--wrapper button {
  color: #404040;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 32px */
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .back-btn--wrapper button {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
}
.diagnosis .diagnosis-inner-question {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(30px) scale(0.95);
          transform: translateY(30px) scale(0.95);
}
.diagnosis .diagnosis-inner-question.is-active {
  display: block;
  -webkit-animation: fadeInUpScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: fadeInUpScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@-webkit-keyframes fadeInUpScale {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px) scale(0.95);
            transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes fadeInUpScale {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px) scale(0.95);
            transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.diagnosis .diagnosis__progress {
  margin-top: 130px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__progress {
    margin-top: 85px;
  }
}
.diagnosis .diagnosis__progress-image {
  width: 100px;
  position: absolute;
  top: -100px;
  left: 5%;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-animation: floatPc 3s ease-in-out infinite;
          animation: floatPc 3s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__progress-image {
    max-width: 70px;
    top: -70px;
    -webkit-animation: floatSp 3s ease-in-out infinite;
            animation: floatSp 3s ease-in-out infinite;
  }
}
@-webkit-keyframes floatPc {
  0%, 100% {
    -webkit-transform: translateX(-50px) translateY(0);
            transform: translateX(-50px) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50px) translateY(-15px);
            transform: translateX(-50px) translateY(-15px);
  }
}
@keyframes floatPc {
  0%, 100% {
    -webkit-transform: translateX(-50px) translateY(0);
            transform: translateX(-50px) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50px) translateY(-15px);
            transform: translateX(-50px) translateY(-15px);
  }
}
@-webkit-keyframes floatSp {
  0%, 100% {
    -webkit-transform: translateX(-35px) translateY(0);
            transform: translateX(-35px) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-35px) translateY(-15px);
            transform: translateX(-35px) translateY(-15px);
  }
}
@keyframes floatSp {
  0%, 100% {
    -webkit-transform: translateX(-35px) translateY(0);
            transform: translateX(-35px) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-35px) translateY(-15px);
            transform: translateX(-35px) translateY(-15px);
  }
}
.diagnosis .diagnosis__progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.diagnosis .diagnosis__progress-fill {
  height: 100%;
  background: #3AD3BE;
  border-radius: 4px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  position: relative;
}
.diagnosis .diagnosis__progress-text {
  text-align: center;
  color: #3AD3BE;
  font-family: "Alegreya Sans SC";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__progress-text {
    font-size: 18px;
  }
}
.diagnosis .current-step {
  color: #3AD3BE;
  text-align: center;
  font-family: "Alegreya Sans SC";
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 60.8px */
}
@media screen and (max-width: 1024px) {
  .diagnosis .current-step {
    font-size: 26px;
  }
}
.diagnosis .question-wrapper {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.diagnosis .question-wrapper.is-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.diagnosis .result-wrapper {
  opacity: 0;
  visibility: hidden;
  height: 0;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper {
    scroll-margin-top: 50px;
  }
}
.diagnosis .result-wrapper.is-active {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  visibility: visible;
  height: auto;
  padding-top: 60px;
}
.diagnosis .result-wrapper--character {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--character {
    gap: 10px;
  }
}
.diagnosis .result-wrapper--character img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--character img {
    width: 100px;
  }
}
.diagnosis .result-wrapper--character--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  color: #3AD3BE;
  font-family: "Zen Maru Gothic";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 35.2px */
  letter-spacing: 1.1px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--character--text {
    font-size: 16px;
    gap: 10px;
  }
}
.diagnosis .result-wrapper--character--text strong {
  color: #3AD3BE;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 64px */
  letter-spacing: 2px;
  border-radius: 10px;
  background: #FFF;
  padding: 5px 20px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--character--text strong {
    font-size: 22px;
    padding: 5px 10px;
  }
}
.diagnosis .result-wrapper--character--text div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--character--text div {
    gap: 10px;
  }
}
.diagnosis .result-wrapper--description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--description {
    gap: 30px;
  }
}
.diagnosis .result-wrapper--description--item {
  border-radius: 10px;
  background: #FFF;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.diagnosis .result-wrapper--description--item h3 {
  color: #3AD3BE;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 32.4px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--description--item h3 {
    font-size: 16px;
  }
}
.diagnosis .result-wrapper--description--item p {
  color: #404040;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .result-wrapper--description--item p {
    font-size: 14px;
  }
}
.diagnosis .service-section__content--wrapper--link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .service-section__content--wrapper--link-btn {
    margin-top: 60px;
  }
}
.diagnosis .diagnosis-wrapper--loading {
  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;
  min-height: 200px;
}
.diagnosis .diagnosis-wrapper--loading .loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3AD3BE;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.diagnosis .diagnosis__wrapper--container {
  max-width: 1090px;
  width: 100%;
  margin: auto;
  padding: 0 0 50px 0;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__wrapper--container {
    padding: 0 30px 100px;
  }
}
.diagnosis .diagnosis__wrapper--container .diagnosis__wrapper--container--inner {
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  background: #48C392;
  padding: 80px 45px 120px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__wrapper--container .diagnosis__wrapper--container--inner {
    padding: 50px 20px;
  }
}
.diagnosis .company__section-title-wrapper .company__section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .diagnosis .company__section-title-wrapper .company__section-title {
    font-size: 32px;
  }
}
.diagnosis .company__section-title-wrapper .company__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .diagnosis .company__section-title-wrapper .company__section-title span {
    display: inline;
  }
}
.diagnosis .company__section-title-wrapper .company__section-title span.block {
  display: block;
}
.diagnosis .company__section-title-wrapper .company__section-sub-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .diagnosis .company__section-title-wrapper .company__section-sub-title-wrapper {
    gap: 11px;
    margin-top: 10px;
  }
}
.diagnosis .company__section-title-wrapper .company__section-sub-title-wrapper .company__section-sub-title {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .diagnosis .company__section-title-wrapper .company__section-sub-title-wrapper .company__section-sub-title {
    font-size: 24px;
  }
}
.diagnosis .diagnosis__character-wrapper--item-image {
  width: 250px;
  height: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  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;
  background-color: #fff;
  border-radius: 100vw;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__character-wrapper--item-image {
    width: 160px;
    height: 160px;
  }
}
.diagnosis .diagnosis__character-wrapper--item-image img {
  width: 200px;
  height: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__character-wrapper--item-image img {
    width: 128px;
    height: 128px;
  }
}
.diagnosis .diagnosis__character-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 30px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__character-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .diagnosis .diagnosis__character-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.diagnosis .diagnosis__character-wrapper--item {
  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;
}
.diagnosis .diagnosis__character-wrapper--item h3 {
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 32px */
  letter-spacing: 1px;
  margin-top: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__character-wrapper--item h3 {
    font-size: 18px;
  }
}
.diagnosis .diagnosis__character-wrapper--item p {
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .diagnosis__character-wrapper--item p {
    font-size: 14px;
  }
}
.diagnosis .shere-wrapper {
  border-radius: 10px;
  background: rgba(255, 255, 255, .5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  margin: 60px auto 0;
  padding: 10px 20px;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .diagnosis .shere-wrapper {
    margin: 40px auto 0;
  }
}
.diagnosis .shere-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.diagnosis .shere-wrapper ul a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.diagnosis .shere-wrapper ul a:hover {
  opacity: 0.7;
}
.diagnosis .shere-wrapper p {
  color: #1F2937;
  text-align: center;
  /* 本文/本文S */
  font-family: "Noto Sans JP" sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 23.8px */
  letter-spacing: 0.56px;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
.front-page {
  background-image: url(../images/bg/bg_blue.webp);
  background-size: contain;
  background-repeat: repeat;
  overflow: hidden;
}
.front-page .fv-section--first {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
}
.front-page .fv-section--first.section--hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.front-page .fv-section--first .fv-section--first--logo {
  width: 33vw;
  position: absolute;
  top: 105px;
  left: 102px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--logo {
    width: 50vw;
    top: 50px;
    left: 20px;
  }
}
.front-page .fv-section--first .fv-section--first--title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 620px;
  margin: auto;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--title {
    right: unset;
    left: 5vw;
  }
}
.front-page .fv-section--first .fv-section--first--title span {
  color: #404040;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 96px */
  letter-spacing: 3.84px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--title span {
    font-size: 24px;
  }
}
.front-page .fv-section--first .fv-section--first--wrapper {
  background-image: url(../images/front-page/first/bg.webp);
  background-size: contain;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
}
.front-page .fv-section--first .fv-section--first--wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../images/bg/bg_light_yellow.webp);
  background-size: contain;
  background-repeat: repeat;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--center {
  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;
  position: absolute;
  inset: 0;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--wrapper {
  -webkit-mask-image: url(../images/front-page/first/doar.webp);
          mask-image: url(../images/front-page/first/doar.webp);
  -webkit-mask-size: 55% 100%;
          mask-size: 55% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: scale(0.8, 0.8);
          transform: scale(0.8, 0.8);
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--wrapper {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background-image: url(../images/front-page/first/bg_green.webp);
  background-size: contain;
  background-repeat: repeat;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background-image: url(../images/bg/bg_blue.webp);
  background-size: contain;
  background-repeat: repeat;
}
.front-page .fv-section--first .fv-section--first--wrapper .first-main-image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  position: relative;
  z-index: 1;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner {
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  max-width: 100%;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .left-reaf {
  width: min(400px, 80%);
  position: absolute;
  top: -13%;
  left: 5%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .left-reaf {
    width: min(130px, 80%);
  }
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .right-reaf {
  width: min(400px, 80%);
  position: absolute;
  top: -13%;
  right: 5%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .right-reaf {
    width: min(130px, 80%);
  }
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .left-reaf02 {
  width: min(450px, 80%);
  position: absolute;
  bottom: -35%;
  left: 5%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .left-reaf02 {
    width: min(200px, 80%);
  }
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .right-reaf02 {
  width: min(450px, 80%);
  position: absolute;
  bottom: -35%;
  right: 5%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .right-reaf02 {
    width: min(200px, 80%);
  }
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .senkusha {
  width: min(230px, 18%);
  position: absolute;
  top: 10%;
  left: 15%;
  z-index: 2;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .kenzya {
  width: min(230px, 18%);
  position: absolute;
  top: 0%;
  right: 12%;
  z-index: 2;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .iyashite {
  width: min(230px, 18%);
  position: absolute;
  bottom: 0%;
  left: 10%;
  z-index: 3;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .chowa {
  width: min(230px, 18%);
  position: absolute;
  bottom: 7%;
  left: 27%;
  z-index: 3;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .bannin {
  width: min(230px, 18%);
  position: absolute;
  bottom: 4%;
  left: 46%;
  z-index: 3;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .boukenka {
  width: min(230px, 18%);
  position: absolute;
  bottom: 14%;
  left: 60%;
  z-index: 3;
}
.front-page .fv-section--first .fv-section--first--wrapper .fv-section--first--box--inner .musouka {
  width: min(230px, 18%);
  position: absolute;
  bottom: 1%;
  right: 10%;
  z-index: 3;
}
.front-page img {
  max-width: 100%;
  width: 100%;
}
.front-page .fv-section {
  padding-top: 1500px;
  background-image: url(../images/bg/bg_blue.webp);
  background-size: contain;
  background-repeat: repeat;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section {
    padding-top: 800px;
  }
}
.front-page .fv-section .fv-section__text-container {
  position: relative;
  z-index: 1;
}
.front-page .fv-section .fv-bg-left-leaf {
  position: absolute;
  left: 0;
  top: -100px;
  z-index: 2;
  width: min(302px, 23%);
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section .fv-bg-left-leaf {
    top: 40px;
  }
}
.front-page .fv-section .fv-bg-left-leaf02 {
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: 2;
  width: min(302px, 23%);
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section .fv-bg-left-leaf02 {
    bottom: 40px;
  }
}
.front-page .fv-section .fv-bg-right-leaf {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  width: min(302px, 23%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section .fv-bg-right-leaf {
    top: 10px;
    z-index: 1000;
  }
}
.front-page .fv-section__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  max-width: 48%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section__text {
    max-width: 90%;
    gap: 40px;
  }
}
.front-page .fv-section__text p span {
  color: #24a9a5;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%; /* 52.8px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1024px) {
  .front-page .fv-section__text p span {
    font-size: 13px;
    line-height: 220%; /* 28.6px */
    letter-spacing: 0.65px;
  }
}
.front-page .hasha {
  width: min(230px, 18%);
  position: absolute;
  top: -100px;
  right: 8%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .front-page .hasha {
    top: -10px;
  }
}
.front-page .rentaisha {
  width: min(230px, 18%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  left: 8%;
  z-index: 2;
}
.front-page .fv-section-image--wrapper {
  padding-top: 50px;
  position: relative;
  z-index: 2;
}
.front-page .fv-section-image--wrapper .oonuki-group {
  position: relative;
  z-index: 2;
}
.front-page .fv-section-image--wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/front-page/fv-bg-round.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.front-page .fv-section-image--wrapper .senkusha {
  width: min(230px, 18%);
  position: absolute;
  top: 10%;
  left: 15%;
  z-index: 2;
}
.front-page .fv-section-image--wrapper .kenzya {
  width: min(230px, 18%);
  position: absolute;
  top: 0%;
  right: 12%;
  z-index: 2;
}
.front-page .fv-section-image--wrapper .iyashite {
  width: min(230px, 18%);
  position: absolute;
  bottom: 0%;
  left: 10%;
  z-index: 3;
}
.front-page .fv-section-image--wrapper .chowa {
  width: min(230px, 18%);
  position: absolute;
  bottom: 7%;
  left: 27%;
  z-index: 3;
}
.front-page .fv-section-image--wrapper .bannin {
  width: min(230px, 18%);
  position: absolute;
  bottom: 4%;
  left: 46%;
  z-index: 3;
}
.front-page .fv-section-image--wrapper .boukenka {
  width: min(230px, 18%);
  position: absolute;
  bottom: 14%;
  left: 60%;
  z-index: 3;
}
.front-page .fv-section-image--wrapper .musouka {
  width: min(230px, 18%);
  position: absolute;
  bottom: 1%;
  right: 10%;
  z-index: 3;
}
.front-page .service__section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .front-page .service__section-title {
    font-size: 32px;
  }
}
.front-page .service__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .front-page .service__section-title span {
    display: inline;
  }
}
.front-page .service-section {
  background-image: url(../images/bg/bg_light_yellow.webp);
  background-size: contain;
  background-repeat: repeat;
  padding-bottom: 100px;
}
.front-page .service-section .service-section__content--wrapper {
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.front-page .service-section .service-section__content--wrapper--link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
.front-page .service-section .service-section__content--wrapper--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--image > img {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.front-page .service-section .service-section__content--wrapper--item.service-section__content--wrapper--item--is-active .service-section__content--wrapper--item--image--position > img {
  -webkit-animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
          animation: shake 1s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}
.front-page .service-section .service-section__content--wrapper--item.service-section__content--wrapper--item--is-active .service-section__content--wrapper--item--image > img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 1024px) {
  .front-page .service-section .service-section__content--wrapper--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text--title--image {
    position: static !important;
    margin: unset !important;
  }
}
.front-page .service-section .service-section__content--wrapper--item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .front-page .service-section .service-section__content--wrapper--item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.front-page .service-section .service-section__content--wrapper--item:nth-child(2) .service-section__content--wrapper--item--text--title--image {
  position: static !important;
  margin: unset !important;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--image {
  max-width: 600px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--image .service-section__content--wrapper--item--image--position {
  position: absolute;
  width: min(248px, 42%);
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--image .service-section__content--wrapper--item--image--position01 {
  left: 3%;
  bottom: -18%;
  z-index: 2;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--image .service-section__content--wrapper--item--image--position02 {
  right: 2%;
  bottom: -18%;
  z-index: 2;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--image .service-section__content--wrapper--item--image--position03 {
  left: 3%;
  bottom: -18%;
  z-index: 2;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (max-width: 1024px) {
  .front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--double {
    padding-left: 75px;
    margin-top: -15px;
  }
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--title h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #2bc2ad;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 44.8px */
  letter-spacing: 1.4px;
}
@media screen and (max-width: 1024px) {
  .front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--title h3 {
    font-size: 20px;
    line-height: 160%; /* 32px */
    letter-spacing: 1px;
  }
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--description p {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 210%; /* 33.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--description p {
    font-size: 14px;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.7px;
  }
}
.front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--title--image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -130px;
  margin: auto;
  z-index: 1;
  max-width: 104px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .front-page .service-section .service-section__content--wrapper--item .service-section__content--wrapper--item--text .service-section__content--wrapper--item--text--title--image {
    max-width: 50px;
  }
}
.front-page .job-section {
  padding-top: 250px;
  padding-bottom: 100px;
  background-image: url(../images/bg/bg_white.webp);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .front-page .job-section {
    padding-top: 50px;
  }
}
.front-page .job-section .left-reaf {
  position: absolute;
  left: 0;
  top: -70px;
  z-index: 2;
  width: min(286px, 23%);
}
.front-page .job-section .right-reaf {
  position: absolute;
  right: 0;
  top: -100px;
  z-index: 2;
  width: min(286px, 23%);
}
.front-page .job-section .job-section--wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
@media screen and (max-width: 1024px) {
  .front-page .job-section .job-section--wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.front-page .job-section .job-section--wrapper .job-section--wrapper--item {
  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: 30px;
  margin-top: 60px;
}
.front-page .job-section .job-section--wrapper .job-section--wrapper--item .service-section__content--wrapper--link-btn {
  width: 100%;
  max-width: 310px;
  margin: auto;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .front-page .job-section .job-section--wrapper .job-section--wrapper--item .service-section__content--wrapper--link-btn {
    padding-top: 0;
  }
}
.front-page .job-section .job-section--wrapper .job-section--wrapper--item--img {
  padding: 0 40px;
}
.front-page .job-section .job-section--wrapper .job-section--wrapper--item--text p {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 210%; /* 33.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .front-page .job-section .job-section--wrapper .job-section--wrapper--item--text p {
    font-size: 14px;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.7px;
  }
}

.not-found {
  color: #404040;
}
.not-found .not-found__wrapper {
  padding: 0 20px 100px 20px;
}
@media screen and (min-width: 768px) {
  .not-found .not-found__wrapper {
    padding: 0 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper {
    padding: 0 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .not-found .not-found__wrapper {
    padding: 0 180px 180px 180px;
  }
}
.not-found .not-found__wrapper-inner {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner {
    gap: 40px;
  }
}
.not-found .not-found__wrapper-inner .not-found__description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__description {
    font-size: 16px;
  }
}
.not-found .not-found__wrapper-inner .not-found__item .not-found__title-wrapper .not-found__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.not-found .not-found__wrapper-inner .not-found__item .not-found__title-wrapper .not-found__title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__item .not-found__title-wrapper .not-found__title span {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__item .not-found__title-wrapper .not-found__title {
    font-size: 26px;
  }
}
.not-found .not-found__wrapper-inner .not-found__item .not-found__text-wrapper .not-found__list {
  padding-left: 14px;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__item .not-found__text-wrapper .not-found__list {
    margin-top: 30px;
  }
}
.not-found .not-found__wrapper-inner .not-found__item .not-found__text-wrapper .not-found__list .not-found__list-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__item .not-found__text-wrapper .not-found__list .not-found__list-item {
    font-size: 16px;
  }
}
.not-found .not-found__wrapper-inner .not-found__item .not-found__text-wrapper .not-found__list .not-found__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -14px;
  font-size: 14px;
  color: #404040;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__item .not-found__text-wrapper .not-found__list .not-found__list-item::before {
    font-size: 16px;
    left: -16px;
  }
}
.not-found .not-found__wrapper-inner .not-found__top-link {
  margin: 40px auto 0;
  width: 260px;
  height: 50px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3ad3be;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  grid-template-columns: auto auto;
  gap: 4px;
  justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__top-link {
    width: 380px;
    height: 80px;
    margin: 50px auto 0;
  }
}
.not-found .not-found__wrapper-inner .not-found__top-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.not-found .not-found__wrapper-inner .not-found__top-link .not-found__top-link-title {
  line-height: 1;
  text-transform: uppercase;
}
.not-found .not-found__wrapper-inner .not-found__top-link .not-found__top-link-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  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;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .not-found .not-found__wrapper-inner .not-found__top-link .not-found__top-link-arrow {
    right: 22px;
  }
}

.privacy {
  color: #404040;
}
.privacy .privacy__wrapper {
  padding: 0 20px 100px 20px;
}
@media screen and (min-width: 768px) {
  .privacy .privacy__wrapper {
    padding: 0 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .privacy .privacy__wrapper {
    padding: 0 100px 120px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .privacy .privacy__wrapper {
    padding: 0 180px 180px 180px;
  }
}
.privacy .privacy__wrapper-inner {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .privacy .privacy__wrapper-inner {
    gap: 40px;
  }
}
.privacy .privacy__wrapper-inner .privacy__item .privacy__title-wrapper .privacy__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .privacy .privacy__wrapper-inner .privacy__item .privacy__title-wrapper .privacy__title {
    font-size: 16px;
    font-weight: 700;
  }
}
.privacy .privacy__wrapper-inner .privacy__item .privacy__text-wrapper .privacy__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .privacy .privacy__wrapper-inner .privacy__item .privacy__text-wrapper .privacy__text {
    font-size: 16px;
  }
}
.privacy .privacy__wrapper-inner .privacy__item .privacy__text-wrapper .privacy__list {
  padding-left: 14px;
}
.privacy .privacy__wrapper-inner .privacy__item .privacy__text-wrapper .privacy__list .privacy__list-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
}
.privacy .privacy__wrapper-inner .privacy__item .privacy__text-wrapper .privacy__list .privacy__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -14px;
  color: #404040;
}
.privacy .privacy__wrapper-inner .privacy__top-link {
  margin: 60px auto 0;
  width: 260px;
  height: 50px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3ad3be;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  grid-template-columns: auto auto;
  gap: 4px;
  justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .privacy .privacy__wrapper-inner .privacy__top-link {
    width: 380px;
    height: 80px;
    margin: 80px auto 0;
  }
}
.privacy .privacy__wrapper-inner .privacy__top-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.privacy .privacy__wrapper-inner .privacy__top-link .privacy__top-link-title {
  line-height: 1;
  text-transform: uppercase;
}
.privacy .privacy__wrapper-inner .privacy__top-link .privacy__top-link-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  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;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .privacy .privacy__wrapper-inner .privacy__top-link .privacy__top-link-arrow {
    right: 22px;
  }
}

.service {
  color: #404040;
  overflow: hidden;
}
.service .service__info {
  padding: 0 32px;
}
.service .service__info .service__info-title {
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .service .service__info .service__info-title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.service .service__info .service__info-anchor {
  max-width: 80%;
  min-width: 260px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 14px;
  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;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .service .service__info .service__info-anchor {
    max-width: 990px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    font-size: 16px;
  }
}
.service .service__info .service__info-anchor .service__info-anchor-item .service__info-anchor-item-link {
  height: 50px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3ad3be;
  border-radius: 100px;
  grid-template-columns: auto auto;
  gap: 4px;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .service .service__info .service__info-anchor .service__info-anchor-item .service__info-anchor-item-link {
    padding-right: 12px;
    height: 64px;
  }
}
.service .service__info .service__info-anchor .service__info-anchor-item .service__info-anchor-item-link .service__info-anchor-item-link-number {
  line-height: 1;
}
.service .service__info .service__info-anchor .service__info-anchor-item .service__info-anchor-item-link .service__info-anchor-item-link-title {
  line-height: 1;
}
.service .service__info .service__info-anchor .service__info-anchor-item .service__info-anchor-item-link .service__info-anchor-item-link-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  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;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .service .service__info .service__info-anchor .service__info-anchor-item .service__info-anchor-item-link .service__info-anchor-item-link-arrow {
    right: 22px;
  }
}
.service .service__section {
  padding: 120px 20px 100px 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service .service__section {
    padding: 160px 60px 120px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .service .service__section {
    padding: 0 100px 120px 100px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .service .service__section {
    padding: 0 180px 180px 180px;
  }
}
.service .service__section.section02, .service .service__section.section03 {
  margin-top: 0;
}
.service .service__section .service__section-title-wrapper {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper {
    padding: 152px 0;
  }
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper.pc-none {
    display: none;
  }
}
.service .service__section .service__section-title-wrapper.sp-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper.sp-none {
    display: block;
  }
}
.service .service__section .service__section-title-wrapper .service__section-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper .service__section-title {
    font-size: 32px;
  }
}
.service .service__section .service__section-title-wrapper .service__section-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper .service__section-title span {
    display: inline;
  }
}
.service .service__section .service__section-title-wrapper .service__section-title span.block {
  display: block;
}
.service .service__section .service__section-title-wrapper .service__section-sub-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper .service__section-sub-title-wrapper {
    gap: 11px;
    margin-top: 10px;
  }
}
.service .service__section .service__section-title-wrapper .service__section-sub-title-wrapper .service__section-sub-title {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper .service__section-sub-title-wrapper .service__section-sub-title {
    font-size: 24px;
  }
}
.service .service__section .service__section-title-wrapper .service__section-title_leaf01 {
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  -webkit-transform: translateY(-80%) scaleX(-1);
          transform: translateY(-80%) scaleX(-1);
  width: 120px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .service .service__section .service__section-title-wrapper .service__section-title_leaf01 {
    left: unset;
    right: -60px;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper .service__section-title_leaf01 {
    left: unset;
    right: -180px;
    top: 50%;
    width: 320px;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
.service .service__section .service__section-title-wrapper .service__section-title_leaf01 img {
  width: 100%;
}
.service .service__section .service__section-title-wrapper .service__section-title_leaf02 {
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  -webkit-transform: translateY(-70%) scaleX(-1);
          transform: translateY(-70%) scaleX(-1);
  width: 120px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .service .service__section .service__section-title-wrapper .service__section-title_leaf02 {
    left: -60px;
    right: unset;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-title-wrapper .service__section-title_leaf02 {
    top: 50%;
    left: -180px;
    right: unset;
    width: 300px;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
.service .service__section .service__section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.service .service__section .service__section-intro {
  margin-top: 40px;
  padding: 0 10px;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-intro {
    margin-top: -20px;
    padding: 0;
    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;
    gap: 40px;
  }
}
.service .service__section .service__section-intro .service__section-intro_img-wrapper {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-intro .service__section-intro_img-wrapper {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.service .service__section .service__section-intro .service__section-intro_text-wrapper {
  margin-top: 20px;
}
.service .service__section .service__section-intro .service__section-intro_text-wrapper .service__section-intro_title {
  font-size: 20px;
  font-weight: 700;
  color: #2bc2ad;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-intro .service__section-intro_text-wrapper .service__section-intro_title {
    font-size: 28px;
  }
}
.service .service__section .service__section-intro .service__section-intro_text-wrapper .service__section-intro_title span {
  display: block;
}
.service .service__section .service__section-intro .service__section-intro_text-wrapper .service__section-intro_title-line {
  display: block;
  margin-top: 4px;
}
.service .service__section .service__section-intro .service__section-intro_text-wrapper .service__section-intro_text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 19px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-intro .service__section-intro_text-wrapper .service__section-intro_text {
    font-size: 16px;
  }
}
.service .service__section .service__section-content {
  margin-top: 60px;
  padding: 30px 20px 100px 20px;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content {
    margin-top: 100px;
    padding: 60px 90px 110px 90px;
  }
}
.service .service__section .service__section-content.green {
  background-color: #48c392;
}
.service .service__section .service__section-content.yellow {
  background-color: #faee96;
}
.service .service__section .service__section-content.blue {
  background-color: #71dce2;
}
.service .service__section .service__section-content .service__section-content_title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_title {
    font-size: 26px;
  }
}
.service .service__section .service__section-content .service__section-content_title.white {
  color: #fff;
}
.service .service__section .service__section-content .service__section-content_title.black {
  color: #404040;
}
.service .service__section .service__section-content .service__section-content_inner {
  margin-top: 30px;
  background: #fff;
  padding: 30px 20px 40px 20px;
  border-radius: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_inner {
    padding: 20px 63px 40px 63px;
    margin-top: 40px;
  }
}
.service .service__section .service__section-content .service__section-content_inner.second {
  margin-top: 120px;
}
.service .service__section .service__section-content .service__section-content_inner .service__section-content_title-wrapper {
  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;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_inner .service__section-content_title-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
}
.service .service__section .service__section-content .service__section-content_inner .service__section-content_title-wrapper .service__section-content_inner-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #2bc2ad;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_inner .service__section-content_title-wrapper .service__section-content_inner-title {
    font-size: 24px;
  }
}
.service .service__section .service__section-content .service__section-content_inner .service__section-content_title-wrapper img {
  width: 55px;
  height: 57px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_inner .service__section-content_title-wrapper img {
    width: 74px;
    height: 76px;
  }
}
.service .service__section .service__section-content .service__section-content_inner .service__section-content_text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 9px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_inner .service__section-content_text {
    font-size: 16px;
    margin: 0 0 0 94px;
  }
}
.service .service__section .service__section-content .service__section-content_inner .service__section-content_character-wrapper {
  position: absolute;
  left: -12px;
  bottom: -80px;
  width: 120px;
  height: 120px;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__section-content .service__section-content_inner .service__section-content_character-wrapper {
    left: -60px;
    bottom: -80px;
    width: 180px;
    height: 180px;
  }
}
.service .service__section .service__section-content .service__section-content_inner .service__section-content_character-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service .service__section .service__contact-link {
  display: none;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__contact-link {
    margin: 120px auto 0;
    width: 380px;
    height: 80px;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #3ad3be;
    color: #fff;
    font-weight: bold;
    border-radius: 100px;
    grid-template-columns: auto auto;
    gap: 4px;
    justify-content: center;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .service .service__section .service__contact-link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.service .service__section .service__contact-link .service__info-anchor-item-link-number {
  line-height: 1;
}
.service .service__section .service__contact-link .service__info-anchor-item-link-title {
  line-height: 1;
}
.service .service__section .service__contact-link .service__info-anchor-item-link-arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  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;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .service .service__section .service__contact-link .service__info-anchor-item-link-arrow {
    right: 22px;
  }
}

.single {
  color: #404040;
  padding: 80px 0 0 0;
}
.single .single__article {
  padding: 12px 30px 100px;
}
@media screen and (min-width: 1024px) {
  .single .single__article {
    padding: 100px 100px 120px 100px;
  }
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-fv {
    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;
    gap: 40px;
    max-width: 1080px;
    margin-inline: auto;
  }
}
@media screen and (max-width: ) {
  .single .single__article .single__article-fv {
    gap: 72px;
  }
}
.single .single__article .single__article-fv .single__article-fv-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-fv .single__article-fv-img-wrapper {
    width: 50%;
    height: auto;
  }
}
.single .single__article .single__article-fv .single__article-fv-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .single__article .single__article-fv .single__article-info-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-fv .single__article-info-wrapper {
    margin-top: 0;
    width: 50%;
  }
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-category {
  padding: 4px 16px;
  border-radius: 100vh;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-category.mint-green {
  background: #e3f9f6;
  color: #2bc2ad;
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-category.pink {
  background: #ffebf3;
  color: #ff5591;
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-category.yellow-green {
  background: #eaf9e3;
  color: #3bb03b;
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-category.orange {
  background: #fffdf2;
  color: #f9792f;
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-fv .single__article-info-wrapper .single__article-title {
    font-size: 26px;
  }
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-interview-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
.single .single__article .single__article-fv .single__article-info-wrapper .single__article-date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Alegreya Sans SC", sans-serif;
  color: #a4a4a4;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-content {
    padding-top: 40px;
    max-width: 800px;
    margin-inline: auto;
  }
}
.single .single__article .single__article-content .single__article-h2-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-top: 60px;
}
.single .single__article .single__article-content .single__article-h2-wrapper img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 0;
}
.single .single__article .single__article-content .single__article-h2-wrapper .single__article-h2 {
  font-size: 18px;
  font-weight: 700;
  color: #2bc2ad;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-content .single__article-h2-wrapper .single__article-h2 {
    font-size: 22px;
  }
}
.single .single__article .single__article-content .single__article-p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-content .single__article-p {
    font-size: 16px;
    margin-top: 16px;
  }
}
.single .single__article .single__article-content .single__article-img {
  margin-top: 40px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-content .single__article-img {
    margin-top: 60px;
    max-width: 360px;
    height: auto;
  }
}
.single .single__article .single__article-back-button {
  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;
  gap: 12px;
  margin-top: 60px;
  background: #2bc2ad;
  padding: 12px 24px;
  border-radius: 100vh;
  width: 260px;
  height: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-back-button {
    margin-top: 100px;
    width: 380px;
    height: 80px;
  }
}
.single .single__article .single__article-back-button .single__article-back-button-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .single .single__article .single__article-back-button .single__article-back-button-text {
    font-size: 20px;
  }
}
.single .single__article-recommend {
  padding: 60px 30px 120px 30px;
}
@media screen and (min-width: 1024px) {
  .single .single__article-recommend {
    padding: 100px 100px 130px 100px;
  }
}
.single .single__article-recommend .single__article-recommend-inner {
  max-width: 1080px;
  margin-inline: auto;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-title-wrapper .single__article-recommend-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents {
    margin-top: 80px;
  }
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item {
  display: block;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-img-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-img-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper {
  margin-top: 12px;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-category {
  padding: 4px 16px;
  border-radius: 100vh;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-category.mint-green {
  background: #e3f9f6;
  color: #2bc2ad;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-category.pink {
  background: #ffebf3;
  color: #ff5591;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-category.yellow-green {
  background: #eaf9e3;
  color: #3bb03b;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-category.orange {
  background: #fffdf2;
  color: #f9792f;
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-title {
    font-size: 18px;
  }
}
.single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-date {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #a4a4a4;
  margin-top: 6px;
}
@media screen and (min-width: 1024px) {
  .single .single__article-recommend .single__article-recommend-inner .single__article-recommend-contents .single__article-recommend-wrapper .single__article-recommend-list-item .single__article-recommend-list-item-info-wrapper .single__article-recommend-list-item-date {
    font-size: 16px;
  }
}

.template-parts.keyv {
  padding-top: 84px;
  min-height: 180px;
  background: url("../images/template-parts/sp/keyv_left_dec.webp") no-repeat left top/auto 120px, url("../images/template-parts/sp/keyv_right_dec.webp") no-repeat right top/auto 120px;
}
@media screen and (min-width: 768px) {
  .template-parts.keyv {
    padding-top: 280px;
    min-height: 440px;
    background: url("../images/template-parts/pc/keyv_left_dec.webp") no-repeat left top/auto 420px, url("../images/template-parts/pc/keyv_right_dec.webp") no-repeat right top/auto 420px;
  }
}
.template-parts.keyv .head_wrapper {
  text-align: center;
  padding-top: 12px;
}
.template-parts.keyv .head_wrapper h1 {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .template-parts.keyv .head_wrapper h1 {
    font-size: 40px;
  }
}
.template-parts.keyv .head_wrapper h1::before {
  content: "";
  background: url("../images/template-parts/keyv_head_left_dec.webp") no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 26px;
  height: 26px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .template-parts.keyv .head_wrapper h1::before {
    left: -64px;
    width: 54px;
    height: 54px;
  }
}
.template-parts.breadcrumb {
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .template-parts.breadcrumb {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .template-parts.breadcrumb {
    max-width: 1140px;
  }
}
.template-parts.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .template-parts.breadcrumb ul {
    font-size: 12px;
    gap: 28px;
  }
}
.template-parts.breadcrumb ul li {
  position: relative;
  line-height: 1;
}
.template-parts.breadcrumb ul li::after {
  content: "";
  background: url("../images/template-parts/breadcrumb_arrow.svg") no-repeat center center/contain;
  position: absolute;
  right: -12px;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .template-parts.breadcrumb ul li::after {
    right: -20px;
    width: 12px;
    height: 12px;
  }
}
.template-parts.breadcrumb ul li:last-child::after {
  display: none;
}
.template-parts.breadcrumb ul li a {
  font-weight: 700;
}

.utility.bg-green {
  background: url("../images/bg/bg_light_green.webp") repeat center center/40px 40px;
  position: relative;
}
.utility.bg-green::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../images/bg/bg_light_yellow.webp") repeat center center/40px 40px;
  -webkit-mask-image: url("../images/bg/bottom_mask.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("../images/bg/bottom_mask.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .utility.bg-green::after {
    bottom: -24px;
  }
}
@media screen and (min-width: 1900px) {
  .utility.bg-green::after {
    bottom: -32px;
    height: 160px;
  }
}
.utility.bg-green.is-about::after {
  background: url("../images/bg/bg_white.webp") repeat center center/40px 40px;
}
.utility.after-none::after {
  display: none;
}
.utility.bg-yellow {
  background: url("../images/bg/bg_light_yellow.webp") repeat center center/40px 40px;
  position: relative;
  overflow: hidden;
}
.utility.bg-yellow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../images/bg/bg_light_blue.webp") repeat center center/40px 40px;
  -webkit-mask-image: url("../images/bg/bottom_mask.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("../images/bg/bottom_mask.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .utility.bg-yellow::after {
    bottom: -24px;
  }
}
@media screen and (min-width: 1900px) {
  .utility.bg-yellow::after {
    bottom: -32px;
    height: 160px;
  }
}
.utility.bg-blue {
  background: url("../images/bg/bg_light_blue.webp") repeat center center/40px 40px;
  position: relative;
}
.utility.bg-white {
  background: url("../images/bg/bg_white.webp") repeat center center/40px 40px;
}
.utility.bg-white.is-single {
  position: relative;
  overflow: hidden;
}
.utility.bg-white.is-single::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../images/bg/bg_light_green.webp") repeat center center/40px 40px;
  -webkit-mask-image: url("../images/bg/bottom_mask.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("../images/bg/bottom_mask.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .utility.bg-white.is-single::after {
    bottom: -24px;
  }
}
@media screen and (min-width: 1900px) {
  .utility.bg-white.is-single::after {
    bottom: -32px;
    height: 160px;
  }
}
/*# sourceMappingURL=styles.css.map */
