@charset "UTF-8";
/* breakpoint
=============================================== */
/* フォント設定
=============================================== */
/* 可変のフォントサイズを計算
=============================================== */
/* display
=============================================== */
.display-pc {
  display: none;
}
@media screen and (max-width: 1400px) {
  .display-pc {
    display: inline-block;
  }
}

.display-tab {
  display: none;
}
@media screen and (max-width: 800px) {
  .display-tab {
    display: inline-block;
  }
}

.display-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .display-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 1400px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hidden-sp {
    display: none;
  }
}

/* style
=============================================== */
body {
  margin: 0 auto;
  max-width: 1920px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #222222;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.inner {
  margin-inline: auto;
  max-width: 1540px;
  padding: 0 20px;
}

img {
  width: 100%;
  height: auto;
}

.sec-title {
  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;
  white-space: nowrap;
}
.sec-title.is-left .en {
  font-family: "bahnschrift", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #007AFF;
  padding-left: 20px;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.1;
  border-left: 4px solid;
}
@media screen and (max-width: 1200px) {
  .sec-title.is-left .en {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .sec-title.is-left .en {
    font-size: 28px;
  }
}
.sec-title.is-left .en.is-white {
  color: white;
}
.sec-title.is-left .ja {
  color: #222222;
  padding-left: 20px;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .sec-title.is-left .ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .sec-title.is-left .ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .sec-title.is-left .ja {
    font-size: 16px;
  }
}
.sec-title.is-left .ja.is-white {
  color: white;
}
.sec-title.is-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-title.is-center .en {
  font-family: "bahnschrift", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #007AFF;
  padding-inline: 20px;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.1;
  border-left: 4px solid;
  border-right: 4px solid;
}
@media screen and (max-width: 1200px) {
  .sec-title.is-center .en {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .sec-title.is-center .en {
    font-size: 28px;
  }
}
.sec-title.is-center .en.is-white {
  color: white;
}
.sec-title.is-center .ja {
  color: #222222;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .sec-title.is-center .ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .sec-title.is-center .ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .sec-title.is-center .ja {
    font-size: 16px;
  }
}
.sec-title.is-center .ja.is-white {
  color: white;
}

.fsz-06 {
  font-size: 0.6em;
}

.fsz-08 {
  font-size: 0.8em;
}

.fsz-12 {
  font-size: 1.2em;
}

.fsz-14 {
  font-size: 1.4em;
}

.fsz-15 {
  font-size: 1.5em;
}

.fsz-16 {
  font-size: 1.6em;
}

.fsz-18 {
  font-size: 1.8em;
}

.fsz-20 {
  font-size: 2em;
}

.commonBtn {
  font-family: "Blinker", sans-serif;
  font-weight: 600;
  font-style: normal;
  width: 425px;
  height: 60px;
  border-radius: 30px;
  color: white;
  font-size: 32px;
  font-weight: 600;
  background-image: -webkit-gradient(linear, left top, right top, from(#49DF54), color-stop(45%, #1CDFD2), to(#007AFF));
  background-image: linear-gradient(to right, #49DF54 0%, #1CDFD2 45%, #007AFF 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-inline: 40px 15px;
  position: relative;
}
.commonBtn:hover .arrow {
  width: 30px;
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}
@media screen and (max-width: 1000px) {
  .commonBtn {
    width: 300px;
    font-size: 24px;
    padding-inline: 30px 10px;
  }
}
@media screen and (max-width: 800px) {
  .commonBtn {
    width: 325px;
  }
}
.commonBtn::after {
  position: absolute;
  content: "";
  width: 40px;
  aspect-ratio: 1;
  border-radius: 20px;
  border: 1px solid white;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.commonBtn .icon {
  width: 0.8em;
  height: 0.8em;
}
.commonBtn .arrow {
  position: absolute;
  width: 30%;
  height: 2px;
  background-color: white;
  top: 50%;
  right: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.commonBtn .arrow::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: white;
  top: 50%;
  right: -2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header {
  position: relative;
  height: 80px;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .header {
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .header {
    height: 50px;
  }
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  width: 405px;
  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;
}
@media screen and (max-width: 1000px) {
  .header__logo {
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .header__btn {
    width: 250px;
    height: 40px;
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 0;
  }
  .header__btn::after {
    display: none;
  }
  .header__btn .arrow {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header__btn {
    width: 100px;
    height: 30px;
    font-size: 16px;
  }
}

.mainvisual {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  max-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .mainvisual {
    max-height: auto;
    height: calc(100vh - 60px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual {
    height: calc(100vh - 45px);
  }
}
.mainvisual__bg {
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 80%;
}
@media screen and (max-width: 800px) {
  .mainvisual__title {
    height: 60%;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__title {
    height: 50%;
  }
}

.vision {
  padding-block: 160px;
}
@media screen and (max-width: 1400px) {
  .vision {
    padding-block: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .vision {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .vision {
    padding-block: 50px;
  }
}
.vision__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .vision__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .vision__inner {
    -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;
  }
}
.vision__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.vision__text {
  margin-top: 2em;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .vision__text {
    font-size: 16px;
  }
}
.vision__img {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .vision__img {
    width: 40%;
  }
}
@media screen and (max-width: 1000px) {
  .vision__img {
    max-width: 600px;
    width: 100%;
  }
}
.vision__img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#007AFF), to(#1CDFD2));
  background-image: linear-gradient(to bottom right, #007AFF, #1CDFD2);
  top: 40px;
  left: 40px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .vision__img::after {
    top: 20px;
    left: 20px;
  }
}

.merit {
  padding-block: 80px 160px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#007AFF), to(#1CDFD2));
  background-image: linear-gradient(to bottom right, #007AFF, #1CDFD2);
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .merit {
    padding-block: 60px 100px;
  }
}
@media screen and (max-width: 1000px) {
  .merit {
    padding-block: 40px 80px;
  }
}
.merit__swiper {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .merit__swiper {
    margin-top: 60px;
  }
}
@media screen and (max-width: 800px) {
  .merit__swiper {
    margin-top: 40px;
  }
}
.merit__swiper-item {
  height: auto;
  padding: 60px 20px 40px;
  background-color: white;
  position: relative;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  scale: 0.9;
}
@media screen and (max-width: 1200px) {
  .merit__swiper-item {
    padding: 40px 20px 30px;
  }
}
.merit__swiper-item.swiper-slide-active {
  scale: 1;
}
.merit__swiper-item-inner {
  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;
  position: relative;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.merit__swiper-label {
  font-family: "bahnschrift", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #007AFF;
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .merit__swiper-label {
    font-size: 64px;
  }
}
@media screen and (max-width: 800px) {
  .merit__swiper-label {
    font-size: 48px;
  }
}
@media screen and (max-width: 600px) {
  .merit__swiper-label {
    font-size: 45px;
  }
}
.merit__swiper-img {
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .merit__swiper-img {
    margin-top: 40px;
  }
}
.merit__swiper-title {
  margin-top: 24px;
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .merit__swiper-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .merit__swiper-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .merit__swiper-title {
    font-size: 20px;
  }
}
.merit__swiper-text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
}
.merit__swiper-text .is-text-blue {
  color: #007AFF;
}
.merit__swiper .swiper-pagination-bullets {
  bottom: -80px !important;
}
@media screen and (max-width: 1000px) {
  .merit__swiper .swiper-pagination-bullets {
    bottom: -60px !important;
  }
}
@media screen and (max-width: 800px) {
  .merit__swiper .swiper-pagination-bullets {
    bottom: -40px !important;
  }
}
.merit__swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: white;
  opacity: 0.44;
  margin: 0 20px;
}
@media screen and (max-width: 1000px) {
  .merit__swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 600px) {
  .merit__swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.merit__swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.greeting {
  padding-block: 160px;
}
@media screen and (max-width: 1400px) {
  .greeting {
    padding-block: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .greeting {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .greeting {
    padding-block: 50px;
  }
}
.greeting__body {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .greeting__body {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .greeting__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .greeting__body {
    gap: 20px;
  }
}
.greeting__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.greeting__text {
  margin-top: 1.4em;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 2;
}
.greeting__text:first-of-type {
  margin-top: 2em;
}
@media screen and (max-width: 1200px) {
  .greeting__text {
    font-size: 16px;
  }
}
.greeting__img {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .greeting__img {
    width: 40%;
  }
}
@media screen and (max-width: 1000px) {
  .greeting__img {
    width: 100%;
    max-width: 600px;
  }
}
.greeting__img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#007AFF), to(#1CDFD2));
  background-image: linear-gradient(to bottom right, #007AFF, #1CDFD2);
  top: 40px;
  left: 40px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .greeting__img::after {
    top: 20px;
    left: 20px;
  }
}

.work {
  padding-block: 80px;
  background-color: #EEF6FF;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .work {
    padding-block: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .work {
    padding-block: 40px;
  }
}
.work__content {
  position: relative;
  padding-block: 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: 40px;
}
.work__content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .work__content {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .work__content {
    gap: 10px;
  }
}
.work__woman {
  position: absolute;
  height: 100%;
  width: auto;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-10%, 15%);
          transform: translate(-10%, 15%);
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .work__woman {
    height: 60%;
    -webkit-transform: translate(-5%, 10%);
            transform: translate(-5%, 10%);
  }
}
@media screen and (max-width: 800px) {
  .work__woman {
    height: 55%;
    -webkit-transform: translate(0, 5%);
            transform: translate(0, 5%);
  }
}
@media screen and (max-width: 600px) {
  .work__woman {
    height: 40%;
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
  }
}
.work__man {
  position: absolute;
  height: 100%;
  width: auto;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(10%, 15%);
          transform: translate(10%, 15%);
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .work__man {
    height: 60%;
    -webkit-transform: translate(5%, 10%);
            transform: translate(5%, 10%);
  }
}
@media screen and (max-width: 800px) {
  .work__man {
    height: 55%;
    -webkit-transform: translate(0, 5%);
            transform: translate(0, 5%);
  }
}
@media screen and (max-width: 600px) {
  .work__man {
    height: 40%;
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
  }
}
.work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .work__list {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .work__list {
    gap: 10px;
  }
}
.work__item {
  width: 420px;
  height: 140px;
  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: #007AFF;
  color: white;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .work__item {
    font-size: 18px;
    width: 350px;
    height: 120px;
  }
}
@media screen and (max-width: 1200px) {
  .work__item {
    font-size: 16px;
    width: 300px;
    height: 100px;
  }
}
@media screen and (max-width: 600px) {
  .work__item {
    font-size: 14px;
    width: 100%;
    height: 60px;
  }
}
.work__item::after {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid white;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 1400px) {
  .work__item::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .work__item::after {
    border-width: 1px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
  }
}
@media screen and (max-width: 600px) {
  .work__item::after {
    border-width: 1px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px;
  }
}

.routine__head {
  aspect-ratio: 3/1;
  background: url("../img/routine_head-bg.webp") no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 600px) {
  .routine__head {
    aspect-ratio: 3/2;
  }
}
.routine__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  padding: 25px 70px;
}
@media screen and (max-width: 600px) {
  .routine__title {
    padding: 10px 20px;
  }
}
.routine__body {
  padding-block: 80px;
}
@media screen and (max-width: 1200px) {
  .routine__body {
    padding-block: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .routine__body {
    padding-block: 40px;
  }
}
.routine__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: 100px;
}
@media screen and (max-width: 800px) {
  .routine__list {
    gap: 80px;
  }
}
.routine__item {
  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;
}
.routine__item-scheduleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .routine__item-scheduleWrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .routine__item-scheduleWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.routine__item-profile {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 380px;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .routine__item-profile {
    width: 100%;
  }
}
.routine__item-profile__img {
  aspect-ratio: 38/31;
}
.routine__item-profile__name {
  margin-top: 16px;
  font-size: 1.1em;
  font-weight: 600;
}
.routine__item-profile__name .tenure {
  margin-left: 8px;
}
.routine__item-profile__reason {
  margin-top: 24px;
}
.routine__item-profile__reason-title {
  color: #007AFF;
  font-size: 1.1em;
  font-weight: 600;
}
.routine__item-profile__reason-text {
  margin-top: 16px;
  font-size: 1em;
  font-weight: 500;
  line-height: 2;
}
.routine__item-schedule {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.routine__item-schedule-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.routine__item-schedule-title .icon {
  width: 59px;
}
@media screen and (max-width: 600px) {
  .routine__item-schedule-title .icon {
    width: 40px;
  }
}
.routine__item-schedule-title .text {
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
}
.routine__item-schedule__list {
  margin-top: 24px;
}
.routine__item-schedule__lead {
  margin-top: 16px;
  padding-left: 85px;
}
@media screen and (max-width: 600px) {
  .routine__item-schedule__lead {
    padding-left: 0;
  }
}
.routine__item-schedule__task {
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
}
.routine__item-schedule__task::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #007AFF;
  top: 0;
  left: 30px;
  overflow: hidden;
  z-index: 1;
}
.routine__item-schedule__task:last-child {
  padding-bottom: 0;
}
.routine__item-schedule__task:last-child::after {
  display: none;
}
.routine__item-schedule__task-time {
  position: relative;
  z-index: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 59px;
  color: #007AFF;
  background-color: white;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  padding-left: 18px;
  position: relative;
}
.routine__item-schedule__task-time::before {
  position: absolute;
  content: "";
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #007AFF;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.routine__item-schedule__task-content h4 {
  color: #007AFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.routine__item-schedule__task-content h4:not(:first-of-type) {
  margin-top: 16px;
}
.routine__item-schedule__task-content p {
  font-size: 16px;
  line-height: 2;
}
.routine__item-message {
  background-color: #EEF6FF;
  padding: 40px 40px 80px;
}
@media screen and (max-width: 1000px) {
  .routine__item-message {
    padding: 20px 20px 40px;
  }
}
.routine__item-message__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.routine__item-message__title .icon {
  width: 62px;
}
@media screen and (max-width: 600px) {
  .routine__item-message__title .icon {
    width: 40px;
  }
}
.routine__item-message__title .text {
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
}
.routine__item-message__body {
  padding-left: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .routine__item-message__body {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .routine__item-message__body {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .routine__item-message__body {
    padding-left: 0;
  }
}
.routine__item-message__text {
  margin-top: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
.routine__item-message__text .lead {
  color: #007AFF;
  font-size: 1.1em;
  font-weight: 600;
}
.routine__item-message__text .desc {
  margin-top: 16px;
  font-size: 1em;
  font-weight: 500;
  line-height: 2;
}
.routine__item-message__text .refresh {
  margin-top: 24px;
  font-size: 1em;
}
.routine__item-message__text .refresh .label {
  color: #007AFF;
  font-size: 1.1em;
  font-weight: bold;
  margin-right: 8px;
}
.routine__item-message__img {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .routine__item-message__img {
    width: 100%;
  }
}

.active {
  padding-block: 50px 80px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#007AFF), to(#1CDFD2));
  background-image: linear-gradient(to bottom right, #007AFF, #1CDFD2);
  position: relative;
}
.active::after {
  position: absolute;
  content: "";
  width: 50%;
  aspect-ratio: 1;
  background: url("../img/active_bg-img.webp") no-repeat center center/cover;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, 0);
          transform: translate(-25%, 0);
  z-index: 1;
}
.active__inner {
  position: relative;
  z-index: 2;
}
.active__list {
  margin-top: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  .active__list {
    margin-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .active__list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .active__list {
    margin-top: 40px;
  }
}
.active__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 20px;
  background-color: white;
  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;
}
.active__item-label {
  font-family: "bahnschrift", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #007AFF;
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .active__item-label {
    font-size: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .active__item-label {
    font-size: 40px;
  }
}
.active__item-img {
  max-width: 500px;
}
.active__item-title {
  margin-top: 16px;
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1400px) {
  .active__item-title {
    font-size: 20px;
  }
}
.active__item-text {
  width: 100%;
  font-size: 16px;
  line-height: 2;
}
.active__message {
  margin-top: 80px;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .active__message {
    font-size: 20px;
    text-align: left;
  }
}
@media screen and (max-width: 800px) {
  .active__message {
    margin-top: 40px;
    font-size: 16px;
  }
}

.career {
  padding-block: 160px;
}
@media screen and (max-width: 1400px) {
  .career {
    padding-block: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .career {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .career {
    padding-block: 50px 20px;
  }
}
.career__inner {
  padding-right: 0;
}
.career__body {
  margin-top: 40px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 40px;
}
.career__content {
  min-width: 1000px;
}
.career__flow {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
}
@media screen and (max-width: 1000px) {
  .career__flow {
    gap: 16px;
  }
}
.career__flow-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 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: 8px;
}
.career__flow-item:nth-of-type(1) .is-label, .career__flow-item:nth-of-type(2) .is-label {
  background-color: #007AFF;
}
.career__flow-item:nth-of-type(1) .is-color, .career__flow-item:nth-of-type(2) .is-color {
  color: #007AFF;
}
.career__flow-item:nth-of-type(3) .is-label {
  background-color: #0658AA;
}
.career__flow-item:nth-of-type(3) .is-color {
  color: #0658AA;
}
.career__flow-item:nth-of-type(4) .is-label {
  background-color: #FF8327;
}
.career__flow-item:nth-of-type(4) .is-color {
  color: #FF8327;
}
.career__flow-item:nth-of-type(5) .is-label {
  background-color: #FF8327;
}
.career__flow-item:nth-of-type(5) .is-color {
  color: #FF8327;
}
.career__flow-label {
  padding: 6px 0 8px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .career__flow-label {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .career__flow-label {
    font-size: 18px;
  }
}
.career__flow p {
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .career__flow p {
    font-size: 14px;
  }
}

.mentor {
  padding-block: 80px;
  background-color: #EEF6FF;
}
@media screen and (max-width: 1200px) {
  .mentor {
    padding-block: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .mentor {
    padding-block: 40px;
  }
}
.mentor__body {
  margin-top: 40px;
}
.mentor__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .mentor__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.mentor__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 24px;
  border: 4px solid #007AFF;
  padding: 40px 16px;
  background-color: white;
}
@media screen and (max-width: 1200px) {
  .mentor__item {
    padding: 32px 12px;
  }
}
@media screen and (max-width: 800px) {
  .mentor__item {
    border: 2px solid #007AFF;
  }
}
.mentor__item-title {
  margin: 0 auto;
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .mentor__item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .mentor__item-title {
    font-size: 18px;
  }
}
.mentor__item-text {
  margin-inline: auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 2.5;
}
@media screen and (max-width: 1000px) {
  .mentor__item-text {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 600px) {
  .mentor__item-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.data {
  padding-block: 80px;
}
@media screen and (max-width: 1200px) {
  .data {
    padding-block: 60px;
  }
}
@media screen and (max-width: 600px) {
  .data {
    padding-block: 40px;
  }
}
.data__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10%;
}
@media screen and (max-width: 1200px) {
  .data__list {
    gap: 20px 5%;
  }
}
.data__item {
  width: 25%;
  min-width: 150px;
}

.jobDesc {
  background-color: #EEF6FF;
  padding-inline: 20px;
}
.jobDesc__inner {
  padding-block: 80px;
  background-color: white;
}
@media screen and (max-width: 1200px) {
  .jobDesc__inner {
    padding-block: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .jobDesc__inner {
    padding-block: 40px;
  }
}
.jobDesc__list {
  margin-top: 40px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 1200px) {
  .jobDesc__list {
    gap: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .jobDesc__list {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .jobDesc__list {
    width: 100%;
    gap: 15px;
  }
}
.jobDesc__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .jobDesc__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .jobDesc__item {
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .jobDesc__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .jobDesc__item {
    font-size: 16px;
    -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: 4px;
  }
}
.jobDesc__item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9em;
  color: #007AFF;
  font-weight: bold;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 600px) {
  .jobDesc__item dt {
    font-size: 18px;
    width: auto;
  }
}

.process__head {
  aspect-ratio: 192/32;
  background: url("../img/process_head-bg.webp") no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .process__head {
    aspect-ratio: 3/1;
  }
}
@media screen and (max-width: 600px) {
  .process__head {
    aspect-ratio: 3/2;
  }
}
.process__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  padding: 25px 70px;
}
@media screen and (max-width: 600px) {
  .process__title {
    padding: 10px 20px;
  }
}
.process__body {
  margin-top: 40px;
}
.process__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .process__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.process__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 40px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-inline: 2em;
  letter-spacing: 0.5em;
  position: relative;
  padding-left: 2%;
}
@media screen and (max-width: 1200px) {
  .process__item {
    font-size: 32px;
    padding-inline: 1.5em;
    padding-left: 3%;
  }
}
@media screen and (max-width: 1000px) {
  .process__item {
    font-size: 24px;
    padding-inline: 1em;
    padding-left: 4%;
  }
}
@media screen and (max-width: 800px) {
  .process__item {
    font-size: 20px;
    padding-inline: 1em;
    padding-left: 6%;
  }
}
@media screen and (max-width: 600px) {
  .process__item {
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    padding-inline: 0;
    padding-block: 2em 1em;
  }
  .process__item:not(:first-child) {
    padding-block: 3em 1em;
  }
  .process__item::after {
    top: 99% !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 15/1 !important;
    clip-path: polygon(0 0, 100% 0, 50% 100%) !important;
  }
}
.process__item::after {
  position: absolute;
  content: "";
  height: 100%;
  aspect-ratio: 1/10;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 0;
  left: 99%;
  z-index: 2;
}
.process__item .note {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 800px) {
  .process__item .note {
    font-size: 12px;
  }
}
.process__item:nth-child(1) {
  background-color: #007AFF;
}
.process__item:nth-child(1)::after {
  background-color: #007AFF;
}
.process__item:nth-child(2) {
  background-color: #0658AA;
}
.process__item:nth-child(2)::after {
  background-color: #0658AA;
}
.process__item:nth-child(3) {
  background-color: #00407F;
}
.process__item:nth-child(3)::after {
  background-color: #00407F;
}
.process__item:nth-child(4) {
  background-color: #04C3AD;
}
.process__item:nth-child(4)::after {
  background-color: #04C3AD;
}
.process__item:nth-child(5) {
  background-color: #0AA39E;
}
.process__item:nth-child(5)::after {
  display: none;
}

.faq {
  padding-block: 80px;
  background-color: #EEF6FF;
}
@media screen and (max-width: 1200px) {
  .faq {
    padding-block: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .faq {
    padding-block: 40px;
  }
}
.faq__list {
  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;
}
@media screen and (max-width: 1200px) {
  .faq__list {
    gap: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .faq__list {
    gap: 16px;
  }
}
.faq__question {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px rgba(6, 88, 170, 0.4);
          box-shadow: 4px 4px 8px rgba(6, 88, 170, 0.4);
  position: relative;
}
.faq__question::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 11px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #007AFF;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.is-open .faq__question::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 600px) {
  .faq__question::after {
    right: 16px;
  }
}
.faq__question-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .faq__question-label {
    font-size: 16px;
  }
}
.faq__answer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px rgba(6, 88, 170, 0.4);
          box-shadow: 4px 4px 8px rgba(6, 88, 170, 0.4);
  -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .faq__answer {
    padding: 0 16px;
  }
}
.is-open .faq__answer {
  opacity: 1;
  max-height: 500px;
  padding: 20px 58px;
}
@media screen and (max-width: 600px) {
  .is-open .faq__answer {
    padding: 16px 16px;
  }
}
.faq__answer-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .faq__answer-label {
    font-size: 16px;
  }
}

.company {
  padding-block: 160px;
}
@media screen and (max-width: 1400px) {
  .company {
    padding-block: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .company {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .company {
    padding-block: 50px;
  }
}
.company__body {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .company__body {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .company__body {
    -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;
  }
}
.company__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: 24px;
}
@media screen and (max-width: 600px) {
  .company__list {
    gap: 15px;
  }
}
.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}
@media screen and (max-width: 600px) {
  .company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
.company__item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5em;
  color: #007AFF;
  font-size: 24px;
  font-weight: bold;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 1200px) {
  .company__item dt {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .company__item dt {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .company__item dt {
    width: auto;
  }
}
.company__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .company__item dd {
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  .company__item dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .company__item dd {
    font-size: 16px;
  }
}
.company__item-detail {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4em;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .company__item-detail {
    -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: 0;
  }
}
@media screen and (max-width: 1200px) {
  .company__item-detail {
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  .company__item-detail {
    font-size: 14px;
  }
}
.company__item-detail .label {
  color: #007AFF;
  font-weight: bold;
  margin-right: 8px;
}
.company__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .company__img {
    width: 100%;
  }
}
.company__map {
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 1500/320;
}
@media screen and (max-width: 800px) {
  .company__map {
    aspect-ratio: 2/1;
  }
}
.company__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry {
  padding-block: 80px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#007AFF), to(#1CDFD2));
  background-image: linear-gradient(to bottom right, #007AFF, #1CDFD2);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .entry {
    padding-block: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .entry {
    padding-block: 40px;
  }
}
.entry::after {
  position: absolute;
  content: "";
  width: 50%;
  aspect-ratio: 1;
  background: url("../img/active_bg-img.webp") no-repeat center center/cover;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, 0);
          transform: translate(-25%, 0);
  z-index: 1;
}
.entry__body {
  margin-top: 40px;
  background-color: white;
}
.entry__inner {
  padding-block: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .entry__inner {
    padding-bottom: 180px;
  }
}
.entry__inner::before, .entry__inner::after {
  position: absolute;
  content: "";
  width: 20%;
  max-width: 260px;
  aspect-ratio: 1/2;
}
@media screen and (max-width: 600px) {
  .entry__inner::before, .entry__inner::after {
    width: 100px;
  }
}
.entry__inner::before {
  background: url("../img/entry01.webp") no-repeat left bottom/contain;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .entry__inner::before {
    left: 50%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.entry__inner::after {
  background: url("../img/entry02.webp") no-repeat right bottom/contain;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 600px) {
  .entry__inner::after {
    right: 50%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.entry__text {
  color: #007AFF;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .entry__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .entry__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .entry__text {
    font-size: 16px;
  }
}
.entry__items {
  margin: 40px auto;
  max-width: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 24px;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .entry__items {
    max-width: 480px;
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .entry__items {
    max-width: 450px;
    font-size: 18px;
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .entry__items {
    margin: 20px 0;
    max-width: 400px;
    font-size: 16px;
  }
}
.entry__items span.item {
  position: relative;
  display: inline-block;
  padding-left: 1em;
}
.entry__items span.item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #007AFF;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .entry__items span.name {
    width: 100%;
    display: block;
    text-align: right;
  }
}
.entry__links {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
@media screen and (max-width: 800px) {
  .entry__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.footer {
  background-color: #0658AA;
  width: 100%;
  height: 80px;
  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;
  color: white;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */