@charset "UTF-8";
details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #202020;
  font-size: 16px;
}
body.is-open {
  overflow: hidden;
}

.wrapper {
  overflow-x: hidden;
}

.container {
  position: relative;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}

.inner {
  margin-inline: auto;
  padding-inline: clamp(0.9375rem, 0.3873239437rem + 2.3474178404vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1180px;
  }
}

.button {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button__outer {
  text-align: center;
}

.button-header-contact {
  display: none;
  min-width: 228px;
  padding: 16px 34px;
  border-radius: 9999px;
}
@media screen and (min-width: 992px) {
  .button-header-contact {
    display: block;
  }
}

.button-drawer-menu {
  min-width: 292px;
  padding: 16px 34px;
  border-radius: 9999px;
}

.button-contact-wrapper {
  width: 100%;
  height: 75px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .button-contact-wrapper {
    height: 110px;
  }
}
@media screen and (min-width: 992px) {
  .button-contact-wrapper {
    width: 50%;
    height: 149px;
  }
}

.button-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: clamp(0.9375rem, 0.3873239437rem + 2.3474178404vw, 2.5rem);
}

.button--orange {
  background-color: #dd831d;
  border: 1px solid #dd831d;
}

.button--orange-2 {
  background-color: #dd831d;
  border: 1px solid #dd831d;
}
@media screen and (min-width: 1440px) {
  .button--orange-2 {
    padding-left: 16%;
    padding-right: 16.53%;
  }
}

.button--green {
  background-color: #06c755;
  border: 1px solid #06c755;
}

.button--green-2 {
  background-color: #06c755;
  border: 1px solid #06c755;
}
@media screen and (min-width: 1440px) {
  .button--green-2 {
    padding-left: 20.72%;
    padding-right: 10.19%;
  }
}

.button-contact__icon {
  display: inline-block;
  background-size: cover;
  width: 44px;
  height: 44px;
}

.button-contact__icon-line {
  background-image: url(../img/icon-line.svg);
  width: 44px;
  height: 44px;
  margin-left: -7px;
}
@media screen and (min-width: 768px) {
  .button-contact__icon-line {
    width: 88px;
    height: 88px;
  }
  .button-contact__icon-line + .button-contact__text {
    margin-left: -45px;
  }
}

.button-contact__icon-mail {
  background-image: url(../img/icon-mail.svg);
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .button-contact__icon-mail {
    width: 56px;
    height: 56px;
  }
  .button-contact__icon-mail + .button-contact__text {
    margin-left: -23px;
  }
}

.button-contact__text {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .button-contact__text {
    font-size: 32px;
  }
}

.button-contact__arrow-icon {
  display: inline-block;
  position: relative;
  font-weight: 900;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .button-contact__arrow-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
  }
}
.button-contact__arrow-icon::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.button-contact__arrow-icon-green {
  color: #06c755;
}

.button-contact__arrow-icon-orange {
  color: #dd831d;
}

.button--shiny {
  position: relative;
  overflow: hidden;
}
.button--shiny::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shiny 2.5s ease-in-out infinite;
          animation: shiny 2.5s ease-in-out infinite;
}

@-webkit-keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
}

.section-heading--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-heading__title {
  font-weight: inherit;
}

.section-heading__title--en {
  font-size: clamp(3.875rem, 3.3028169014rem + 2.441314554vw, 5.5rem);
}

.section-heading__title--ja {
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
}

.section-heading__title--orange {
  color: #dd831d;
}

.section-heading__title--blue {
  color: #3babee;
}

.section__bg {
  position: relative;
}
.section__bg::before {
  position: absolute;
  z-index: -10;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
}

.section__bg--blue::before {
  background-color: #e7f6ff;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
  }
  .header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #f2f2f2;
    opacity: 0.5;
    z-index: -10;
  }
}
@media screen and (min-width: 1440px) {
  .header {
    width: calc(100% - 130px);
  }
}

.header__inner {
  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;
  height: inherit;
}
@media screen and (min-width: 1440px) {
  .header__inner {
    max-width: 1310px;
    padding-right: 76px;
    padding-left: 40px;
  }
}

.header__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: clamp(7.75rem, 6.2315140845rem + 6.4788732394vw, 12.0625rem);
}

.header__logo-link {
  display: inline-block;
  height: inherit;
}

.header__text {
  margin-top: 1px;
  font-size: clamp(0.625rem, 0.4049295775rem + 0.9389671362vw, 1.25rem);
  font-weight: 700;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav {
    margin-left: 44px;
  }
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 1100px) {
  .header-nav-list {
    gap: 24px;
  }
}

.header-nav-list__item {
  font-weight: 700;
}

.header-nav-list__item-link {
  font-weight: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav-list__item-link:hover, .header-nav-list__item-link:focus {
  opacity: 0.8;
}

.drawer-icon {
  position: relative;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 992px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-open .drawer-icon_bar {
  top: 50%;
  translate: -50% -50%;
}
.drawer-icon.is-open .drawer-icon_bar:nth-child(1) {
  rotate: 45deg;
}
.drawer-icon.is-open .drawer-icon_bar:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}
.drawer-icon.is-open .drawer-icon_bar:nth-child(3) {
  rotate: -45deg;
}

.drawer-icon_bar {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  display: inline-block;
  width: 33px;
  height: 4px;
  background: #202020;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon_bar:nth-child(1) {
  top: 14px;
}
.drawer-icon_bar:nth-child(2) {
  top: 22.75px;
}
.drawer-icon_bar:nth-child(3) {
  top: 31.5px;
}

.content-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 130px;
  height: 73vh;
  background-color: #202020;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.content-area:hover {
  background: #dd831d;
}
@media screen and (min-width: 1440px) {
  .content-area {
    display: block;
  }
}

.content-area__link {
  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;
  width: 100%;
  gap: 16px;
  padding-top: 34px;
}

.content-area__icon {
  background-image: url(../img/icon-mail.svg);
  width: 44px;
  height: 44.118px;
}

.content-area__text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.448%; /* 34.742px */
  letter-spacing: 0.457em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl; /* 実装済 */
  -moz-writing-mode: vertical-rl; /* 実装済 */
  -ms-writing-mode: vertical-rl; /* 実装済 */
  -writing-mode: vertical-rl;
}

.drawer-menu {
  position: fixed;
  inset: 0 -100% 0 100%;
  z-index: 40;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-menu.is-open {
  inset: 0;
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  .drawer-menu {
    display: none;
  }
}

.drawer-menu__list {
  padding-top: 87.5px;
}

.drawer-menu-list {
  display: grid;
  place-items: center;
  gap: 23px;
}

.drawer-menu-list__item {
  font-weight: 700;
}

.drawer-menu-list__item-link {
  font-weight: inherit;
}
.drawer-menu-list__item-link:hover, .drawer-menu-list__item-link:focus {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-menu__button-area {
  display: grid;
  place-items: center;
  gap: 5px;
  margin-top: 89px;
}

.fv {
  margin-top: 60px;
  padding-top: 42px;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 100px;
    padding-top: 60px;
    margin-bottom: 48px;
  }
}

.fv__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__content {
    display: grid;
    place-items: center;
  }
}

.fv__message {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 1.8397887324rem + 2.8169014085vw, 4.375rem);
  font-weight: 700;
  line-height: 1.497; /* 59.889px */
}
.fv__message:nth-child(2) {
  margin-top: -24px;
}

.fv__message-deco-outer {
  position: relative;
  top: -16px;
  font-weight: inherit;
}
@media screen and (min-width: 768px) {
  .fv__message-deco-outer {
    top: 0;
  }
}

.fv__message--deco {
  color: #dd831d;
  font-weight: inherit;
}

.fv__text {
  margin-top: 2px;
  font-weight: 500;
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .fv__text {
    margin-top: 17px;
    font-weight: 700;
  }
}

.fv__scroll-button {
  position: absolute;
  bottom: -58px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .fv__scroll-button {
    bottom: -43px;
    right: 0px;
  }
}

.vision {
  margin-left: -9px;
  padding: 59px 0 75px;
}
@media screen and (min-width: 768px) {
  .vision {
    margin-left: 0;
    padding: 119px 0;
  }
}

.vision__heading {
  display: grid;
  place-items: center;
  font-weight: 700;
}

.vision__title {
  color: #dd831d;
  font-size: clamp(1.25rem, 0.8978873239rem + 1.5023474178vw, 2.25rem);
  font-weight: inherit;
}

.vision__message {
  text-align: center;
  font-weight: inherit;
  font-size: clamp(1.5rem, 1.0598591549rem + 1.8779342723vw, 2.75rem);
}
.benefits__content {
  padding-top: 60px;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .benefits__content {
    padding-top: 118px;
    padding-bottom: 48px;
  }
}
.benefits__content::before {
  position: absolute;
  z-index: -10;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background-color: #fef1dd;
}

.benefits__heding-wrapper {
  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: 50px;
}
@media screen and (min-width: 576px) {
  .benefits__heding-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .benefits__heding-wrapper {
    gap: 112px;
  }
}

.benefits__heding {
  position: relative;
}
@media screen and (min-width: 768px) {
  .benefits__heding {
    top: -12px;
    left: 4px;
  }
}

.benefits__img {
  position: relative;
  max-width: 370px;
}
.benefits__img::after {
  position: absolute;
  z-index: -10;
  content: "";
  top: -15px;
  left: 29px;
  width: 97%;
  height: 109%;
  background-color: #ffca8d;
}
.benefits__card-list {
  margin-top: 60px;
  padding-inline: 12px;
}
@media screen and (min-width: 768px) {
  .benefits__card-list {
    margin-top: 120px;
  }
}

.benefits-card-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: 30px;
}
@media screen and (min-width: 576px) {
  .benefits-card-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 576px) {
  .benefits-card-list__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1100px) {
  .benefits-card-list__item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (min-width: 1440px) {
  .benefits-card-list__item {
    height: 456px;
  }
}

.benefits-card {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 21px;
  padding-right: 26px;
  padding-bottom: 26px;
  border: 4px solid #fff;
}
.benefits-card:nth-child(1) .benefits-card__body {
  margin-top: 12px;
  padding-left: 9px;
}
.benefits-card:nth-child(1) .benefits-card__text:nth-child(2) {
  margin-top: 23px;
}
.benefits-card:nth-child(2) .benefits-card__title--deco:last-child {
  letter-spacing: -1.2px;
}
.benefits-card:nth-child(2) .benefits-card__body {
  margin-top: 51px;
  padding-left: 7px;
}
.benefits-card:nth-child(3) {
  padding-right: 10px;
}
.benefits-card:nth-child(3) .benefits-card__title--deco:last-child {
  letter-spacing: -2.16px;
}
.benefits-card:nth-child(3) .benefits-card__body {
  margin-top: 23px;
  padding-inline: 8px;
}
.benefits-card:nth-child(4) .benefits-card__body {
  margin-top: 38px;
  padding-right: 0px;
  padding-left: 6px;
}
.benefits-card:nth-child(5) {
  padding-right: 3px;
}
.benefits-card:nth-child(5) .benefits-card__title--deco:last-child {
  letter-spacing: -1.68px;
}
.benefits-card:nth-child(5) .benefits-card__body {
  margin-top: 36px;
  padding-left: 8px;
  padding-right: 26px;
}
.benefits-card:nth-child(2n) {
  padding-left: 5px;
  padding-right: 25px;
}

.benefits-card__number {
  position: relative;
  top: -4px;
  left: 7px;
  color: #ffca8d;
  font-size: 72px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .benefits-card__number {
    font-size: 79px;
  }
}

.benefits-card__title {
  color: #fff;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-weight: 700;
  position: relative;
  top: -6px;
}

.benefits-card__title--deco {
  font-weight: inherit;
  background-color: #dd831d;
  display: inline-block;
  padding-inline: 8px;
  position: relative;
}
.benefits-card__title--deco:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fef1dd;
}

.top-message {
  margin-top: 27px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-message {
    margin-top: 53px;
    padding-top: 40px;
  }
}

.top-message__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: 30px;
  margin-top: 20px;
  padding-bottom: 29px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-message__content {
    margin-top: 29px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 53px;
    padding-bottom: 58px;
  }
}
.top-message__content::before {
  position: absolute;
  z-index: -10;
  content: "";
  top: 6.7%;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: #e7f6ff;
}

@media screen and (min-width: 768px) {
  .top-message__img {
    width: calc(50% - 53px);
  }
}
.top-message__img img {
  width: 100%;
}

.top-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .top-message__body {
    width: 50%;
    gap: 38px;
    margin-top: 87px;
  }
}

.top-message__message {
  color: #fff;
  font-size: clamp(1.375rem, 1.1329225352rem + 1.0328638498vw, 2.0625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.top-message__message--deco {
  position: relative;
  left: 7px;
  display: inline-block;
  font-weight: inherit;
}
.top-message__message--deco::before {
  position: absolute;
  z-index: -10;
  content: "";
  top: 0;
  left: -7px;
  height: 95%;
  background-color: #3babee;
}
.top-message__message--deco:nth-child(1)::before {
  width: 101%;
}
.top-message__message--deco:last-child {
  top: -2px;
}
.top-message__message--deco:last-child::before {
  width: 103%;
}

.top-message__text-area {
  display: grid;
  gap: 20px;
}

.our-works {
  margin-top: 27px;
  padding-top: 28px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .our-works {
    margin-top: 53px;
    padding-top: 56px;
    padding-bottom: 100px;
  }
}

.our-works__heading {
  margin-left: -7px;
}

.our-works__content-area {
  display: grid;
  gap: 45px;
  margin-top: 47px;
}
@media screen and (min-width: 768px) {
  .our-works__content-area {
    gap: 113px;
    margin-top: 93px;
  }
}

.our-works__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: 50px;
}
.our-works__content:nth-child(1) .our-works__content-img img {
  -webkit-box-shadow: -14px 23px #ffca8d;
          box-shadow: -14px 23px #ffca8d;
}
@media screen and (min-width: 768px) {
  .our-works__content:nth-child(1) .our-works__content-img {
    left: -4px;
  }
}
@media screen and (min-width: 768px) {
  .our-works__content:nth-child(1) .our-works__content-body {
    gap: 52px;
    margin-top: 70px;
  }
}
.our-works__content:nth-child(1) .our-works__content-body .our-works__content-title--deco {
  left: 4px;
}
.our-works__content:nth-child(1) .our-works__content-body .our-works__content-title--deco::before {
  left: -9px;
  width: 104%;
  height: 103%;
}
.our-works__content:nth-child(2) .our-works__content-img img {
  -webkit-box-shadow: 12px 22px #ffca8d;
          box-shadow: 12px 22px #ffca8d;
}
@media screen and (min-width: 768px) {
  .our-works__content:nth-child(2) .our-works__content-img {
    left: -4px;
  }
}
.our-works__content:nth-child(2) .our-works__content-body {
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .our-works__content:nth-child(2) .our-works__content-body {
    margin-top: 43px;
    position: relative;
    left: -15px;
    gap: 60px;
  }
}
.our-works__content:nth-child(2) .our-works__content-body .our-works__content-title--deco {
  left: 4px;
}
.our-works__content:nth-child(2) .our-works__content-body .our-works__content-title--deco::before {
  left: -9px;
  width: 104%;
  height: 103%;
}
.our-works__content:nth-child(2) .our-works__content-body .our-works__content-title--deco:last-child {
  top: 10px;
}
.our-works__content:nth-child(2) .our-works__content-body .our-works__content-text {
  margin-left: -3px;
}
@media screen and (min-width: 768px) {
  .our-works__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .our-works__content--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.our-works__content-body {
  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: 768px) {
  .our-works__content-body {
    width: 45.4545454545%;
  }
}

.our-works__content-title {
  color: #fff;
  font-size: clamp(1.25rem, 0.9639084507rem + 1.220657277vw, 2.0625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.our-works__content-title--deco {
  position: relative;
  left: 7px;
  display: inline-block;
  font-weight: inherit;
}
.our-works__content-title--deco::before {
  position: absolute;
  z-index: -10;
  content: "";
  bottom: 0;
  left: -7px;
  width: 100%;
  height: 95%;
  background-color: #dd831d;
}

.our-works__content-text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.our-works__content-text:nth-child(3) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .our-works__content-text:nth-child(3) {
    margin-top: 19px;
  }
}

.our-works__content-img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .our-works__content-img {
    width: 48.7272727273%;
  }
}
.daily-schedule {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .daily-schedule {
    margin-top: 120px;
  }
}

.daily-schedule__container {
  position: relative;
  padding-top: 55px;
  padding-bottom: 93px;
}
@media screen and (min-width: 768px) {
  .daily-schedule__container {
    margin-left: -3px;
    padding-top: 110px;
    padding-bottom: 189px;
  }
}
.daily-schedule__container::before {
  position: absolute;
  z-index: -10;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background-color: #e7f6ff;
}

.daily-schedule__sub-title-wrapper {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .daily-schedule__sub-title-wrapper {
    margin-top: 40px;
  }
}

.daily-schedule__sub-title {
  display: inline-block;
  margin-left: -7px;
  padding-inline: 10px;
  color: #3babee;
  font-size: 28px;
  font-weight: 700;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .daily-schedule__sub-title {
    font-size: 32px;
  }
}

.daily-schedule__content {
  position: relative;
  left: -3px;
  margin-top: 28px;
  margin-inline: auto;
}

.daily-schedule-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 305px;
  padding: 24px 35px 18px 20px;
  background-color: #fff;
}
@media screen and (min-width: 576px) {
  .daily-schedule-content {
    max-width: 495px;
  }
}
@media screen and (min-width: 768px) {
  .daily-schedule-content {
    max-width: 670px;
    padding: 43px 40px 44px 40px;
  }
}
@media screen and (min-width: 992px) {
  .daily-schedule-content {
    max-width: 840px;
  }
}
.daily-schedule-content::before {
  position: absolute;
  content: "";
  top: 24px;
  left: 96px;
  bottom: 18px;
  width: 6px;
  background-color: #3babee;
}
@media screen and (min-width: 576px) {
  .daily-schedule-content::before {
    top: 38px;
    bottom: 56px;
  }
}
@media screen and (min-width: 768px) {
  .daily-schedule-content::before {
    top: 45px;
    bottom: 52px;
    left: 117px;
  }
}

.daily-schedule-content__flow {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.daily-schedule-content__flow:not(:first-child) {
  margin-top: 17px;
}
.daily-schedule-content__flow:nth-child(3) {
  margin-top: 140px;
}
.daily-schedule-content__flow:nth-child(5) {
  margin-top: 142px;
}
.daily-schedule-content__flow:nth-child(7) {
  margin-top: 16px;
}
.daily-schedule-content__flow:nth-child(8) {
  margin-top: 14px;
}

.daily-schedule-content__flow-item {
  display: inline-block;
}

.daily-schedule-content__flow-time {
  display: grid;
  place-items: center;
  width: 159px;
  height: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  background-color: #3babee;
}
@media screen and (min-width: 768px) {
  .daily-schedule-content__flow-time {
    width: 120px;
  }
}
@media screen and (min-width: 768px) {
  .daily-schedule-content__flow-time {
    width: 159px;
  }
}

.daily-schedule-content__flow-term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 700;
}

.daily-schedule-content__flow-description {
  display: none;
}
@media screen and (min-width: 576px) {
  .daily-schedule-content__flow-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    max-width: 451px;
  }
}

.daily-schedule-content__flow-description--alignment {
  position: relative;
  top: 8px;
}

.daily-schedule-card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  max-height: 169px;
}
@media screen and (min-width: 768px) {
  .daily-schedule-card__img img {
    max-height: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .daily-schedule-card__img img {
    max-height: 244px;
  }
}

.daily-schedule-card__text-wrapper {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .daily-schedule-card__text-wrapper {
    margin-top: 20px;
  }
}

.ideal-candidate {
  margin-top: 57px;
  padding-top: 20px;
  padding-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .ideal-candidate {
    margin-top: 113px;
    padding-top: 40px;
    padding-bottom: 93px;
  }
}

.ideal-candidate__heading {
  margin-left: -6px;
}

.ideal-candidate-card__content {
  margin-top: 76px;
  margin-inline: auto;
  max-width: 840px;
}

.ideal-candidate__card-list {
  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: 77px;
}
@media screen and (min-width: 576px) {
  .ideal-candidate__card-list {
    -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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 31px;
       -moz-column-gap: 31px;
            column-gap: 31px;
    row-gap: 77px;
  }
}

.ideal-candidate-card-list__item {
  min-width: 259px;
  height: 299px;
}
@media screen and (min-width: 576px) {
  .ideal-candidate-card-list__item {
    width: calc((100% - 31px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .ideal-candidate-card-list__item {
    width: calc((100% - 62px) / 3);
  }
}

.ideal-candidate-card {
  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;
  border-radius: 20px;
  background: #fef1dd;
  padding-top: 60px;
  padding-inline: 8px;
  padding-bottom: 37px;
}
.ideal-candidate-card:nth-child(2) .ideal-candidate-card__icon img {
  width: 51px;
  height: 99px;
}
.ideal-candidate-card:nth-child(3) .ideal-candidate-card__icon img {
  width: 56px;
  height: 81px;
}

.ideal-candidate-card__number-bg {
  position: absolute;
  top: -42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #dd831d;
}

.ideal-candidate-card__number {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  height: inherit;
}

.ideal-candidate-card__text {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-left: -17px;
  padding-left: 44px;
}
@media screen and (min-width: 992px) {
  .ideal-candidate-card__text {
    font-size: 20px;
  }
}

.ideal-candidate-card__check-list {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-check-list.svg);
  width: 50px;
  height: 50px;
}

.ideal-candidate-card__icon {
  display: grid;
  place-items: center;
  margin-top: 26px;
  background: #fff;
  border-radius: 50%;
  width: 147px;
  height: 147px;
}
.ideal-candidate-card__icon img {
  width: 58%;
}

.ideal-candidate__text-wrapper {
  margin-top: 38px;
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .ideal-candidate__text-wrapper {
    margin-top: 40px;
  }
}

.ideal-candidate__text {
  font-size: 16px !important;
  font-weight: 500;
}

.message {
  margin-top: 31px;
}

.message__container {
  padding-top: 32px;
  padding-bottom: 57px;
}
@media screen and (min-width: 768px) {
  .message__container {
    padding-top: 64px;
    padding-bottom: 113px;
  }
}

.message__heading {
  margin-left: -7px;
}

.message-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: 35px;
  max-width: 345px;
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 576px) {
  .message-content {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .message-content {
    max-width: 970px;
    margin-top: 59px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: auto;
    margin-left: min(127px, 12%);
  }
}

.message-content__panel {
  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;
}
.message-content__panel-name {
  margin-top: 11px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #3babee;
  font-weight: 700;
  padding: 7px 11px;
}
@media screen and (min-width: 1100px) {
  .message-content__panel-name {
    font-size: 16px;
  }
}

.message-content__panel-interview {
  margin-top: 2px;
  margin-left: -4px;
  color: #3babee;
  font-size: 28px;
  font-weight: 700;
}

.message-content__body {
  background: #fff;
  padding: 22px 42px 46px 18px;
  max-width: 687px;
}

.message-content__title {
  display: inline-block;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  padding: 3px 18px 3px 16px;
  font-weight: 700;
  color: #fff;
  background: #3babee;
}

.message-content__message-area {
  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;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .message-content__message-area {
    margin-top: 40px;
    margin-left: 6px;
  }
}

.job {
  margin-top: 57px;
  padding-bottom: 52px;
}
@media screen and (min-width: 768px) {
  .job {
    margin-top: 117px;
    padding-bottom: 103px;
  }
}

.job__descriptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  margin-inline: auto;
  max-width: 840px;
}
@media screen and (min-width: 768px) {
  .job__descriptions {
    margin-top: 60px;
  }
}

.definition-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .definition-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.definition-list-item {
  border-top: 1px solid #646464;
  border-left: 1px solid #646464;
  border-right: 1px solid #646464;
}
.definition-list-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.definition-list-item:last-child {
  border-bottom: 1px solid #646464;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.definition-list-item__team {
  min-width: 115px;
  padding: 9.7px 12px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  background: #dd831d;
}
@media screen and (min-width: 768px) {
  .definition-list-item__team {
    width: 181px;
    border-right: 1px solid #646464;
  }
}

.definition-list-item__definition {
  width: 100%;
  padding: 9.7px 10px;
}
@media screen and (min-width: 768px) {
  .definition-list-item__definition {
    padding-inline: 12px;
  }
}

.definition-list-item__definition-text {
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  line-height: 23px;
}

.definition-list-item__definition-text--spacer-top {
  margin-top: 20px;
}

.job__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  margin-top: 37px;
  margin-inline: auto;
  max-width: 840px;
}
@media screen and (min-width: 768px) {
  .job__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 74px;
    gap: 54px;
  }
}

.job__card {
  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;
  padding-top: 43px;
  padding-bottom: 19px;
  padding-inline: 1em;
  height: 341px;
}
@media screen and (min-width: 768px) {
  .job__card {
    width: calc((100% - 54px) / 2);
  }
}

.job-card {
  background: #fef1dd;
  border-radius: 20px;
}
.job-card:nth-child(2) .job-card__img {
  width: 92px;
}
.job-card:nth-child(2) .job-card__list {
  margin-top: 12px;
}

.job-card__img {
  width: 101px;
}
.job-card__body {
  margin-top: 18px;
}

.job-card__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #dd831d;
}

.job-card__list {
  margin-top: 45px;
  margin-left: 24px;
  max-width: 285px;
}

.process {
  margin-top: 35px;
}

.process__container {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .process__container {
    padding-top: 38px;
    padding-bottom: 80px;
  }
}

.process__heading {
  margin-left: -11px;
}

.process__list {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .process__list {
    margin-top: 77px;
  }
}

.process-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
}
@media screen and (min-width: 1100px) {
  .process-list {
    overflow: auto;
  }
}
.process-list::before, .process-list::after {
  position: absolute;
  z-index: -10;
  content: "";
  background: url(../img/deco-process-list-dashed‐line.svg);
  width: 770px;
  height: 5px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .process-list::before, .process-list::after {
    width: 1100px;
  }
}
.process-list::before {
  top: 93.1px;
}
@media screen and (min-width: 768px) {
  .process-list::before {
    top: 133px;
  }
}
.process-list::after {
  bottom: 91.7px;
}
@media screen and (min-width: 768px) {
  .process-list::after {
    bottom: 131px;
  }
}

.process-list-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;
}

.process-list-item__icon {
  position: relative;
  margin-top: 6.3px;
  margin-left: -15px;
  width: 49px;
  height: 53.2px;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon {
    margin-top: 9px;
    width: 70px;
    height: 76px;
  }
}
.process-list-item__icon::before {
  content: "";
  position: absolute;
  z-index: -10;
  width: 64.4px;
  height: 106.4px;
  top: -6.3px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/deco-process-list.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon::before {
    top: -9px;
    width: 92px;
    height: 152px;
  }
}
.process-list-item__icon--2 {
  margin-top: 8.4px;
  margin-left: 4px;
  width: 43.4px;
  height: 47.6px;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--2 {
    margin-top: 12px;
    width: 62px;
    height: 68px;
  }
}
.process-list-item__icon--2::before {
  top: -8.4px;
  background: url(../img/deco-process-list-2.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--2::before {
    top: -12px;
  }
}

.process-list-item__icon--3 {
  margin-top: 4.2px;
  margin-left: 6px;
  width: 39.9px;
  height: 45.5px;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--3 {
    margin-top: 6px;
    width: 57px;
    height: 65px;
  }
}
.process-list-item__icon--3::before {
  top: -4.2px;
  left: 44%;
  background: url(../img/deco-process-list-3.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--3::before {
    top: -6px;
  }
}

.process-list-item__icon--4 {
  margin-top: 14.7px;
  margin-left: -20px;
  width: 34.3px;
  height: 39.2px;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--4 {
    margin-top: 21px;
    width: 49px;
    height: 56px;
  }
}
.process-list-item__icon--4::before {
  height: 105.7px;
  top: -14.7px;
  left: 52%;
  background: url(../img/deco-process-list-4.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--4::before {
    top: -21px;
    height: 151px;
  }
}

.process-list-item__icon--5 {
  margin-top: 14.7px;
  margin-left: 6px;
  width: 42px;
  height: 34.3px;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--5 {
    width: 60px;
    height: 49px;
    margin-top: 21px;
  }
}
.process-list-item__icon--5::before {
  top: -14.7px;
  left: 47%;
  background: url(../img/deco-process-list-5.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .process-list-item__icon--5::before {
    top: -21px;
  }
}

.process-list-item__title-wrapper {
  margin-top: 50.4px;
}
@media screen and (min-width: 768px) {
  .process-list-item__title-wrapper {
    margin-top: 72px;
  }
}

.process-list-item__title-wrapper--2 {
  margin-top: 54.6px;
}
@media screen and (min-width: 768px) {
  .process-list-item__title-wrapper--2 {
    margin-top: 78px;
  }
}

.process-list-item__title-wrapper--3 {
  margin-top: 60.9px;
}
@media screen and (min-width: 768px) {
  .process-list-item__title-wrapper--3 {
    margin-top: 87px;
  }
}

.process-list-item__title-wrapper--4 {
  margin-top: 56.7px;
}
@media screen and (min-width: 768px) {
  .process-list-item__title-wrapper--4 {
    margin-top: 81px;
  }
}

.process-list-item__title-wrapper--5 {
  margin-top: 61.6px;
}
@media screen and (min-width: 768px) {
  .process-list-item__title-wrapper--5 {
    margin-top: 88px;
  }
}

.process-list-item__title {
  width: 154px;
  height: 47.6px;
  padding: 7px 0 8px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  background: #94d7ff;
  -webkit-clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);
          clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);
}
@media screen and (min-width: 768px) {
  .process-list-item__title {
    width: 220px;
    height: 68px;
    padding: 14px 0 15px;
    font-size: 24px;
  }
}

.process-list-item__title--yellow {
  color: #f9f871;
}

.process-list-item__title--arrow {
  -webkit-clip-path: polygon(88% 0, 100% 50%, 88% 100%, 0% 100%, 13% 50%, 0% 0%);
          clip-path: polygon(88% 0, 100% 50%, 88% 100%, 0% 100%, 13% 50%, 0% 0%);
}

.process-list-item__title--bg-2 {
  background: #7dcfff;
}

.process-list-item__title--bg-3 {
  background: #68c7ff;
}

.process-list-item__title--bg-4 {
  background: #3db6ff;
}

.process-list-item__title--bg-5 {
  background: #3babee;
}

.process-list-item__supplement-wrapper {
  position: relative;
  width: 133.7px;
  height: 51.1px;
  margin-top: 57.82px;
  margin-left: -15px;
  padding: 5.5px 6.6px 5.5px 6px;
  background: #3db6ff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .process-list-item__supplement-wrapper {
    font-size: 16px;
    width: 191px;
    height: 73px;
    margin-top: 82.6px;
    padding: 10.5px 13px 10.5px 12px;
  }
}
.process-list-item__supplement-wrapper::before {
  content: "";
  position: absolute;
  top: -50.4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/deco-process-list-sub.svg);
  width: 20.3px;
  height: 51.4066px;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .process-list-item__supplement-wrapper::before {
    top: -72px;
    width: 29px;
    height: 73.438px;
  }
}

.process-list-item__supplement {
  color: #f5f5f5;
  font-weight: 700;
  text-align: center;
}

.process-list__scroll-text {
  position: absolute;
  bottom: 0.5em;
  left: 0;
  font-size: 12px;
}
@media screen and (min-width: 1100px) {
  .process-list__scroll-text {
    display: none;
  }
}

.qa {
  margin-top: 32px;
  padding-top: 20px;
  padding-bottom: 29px;
}
@media screen and (min-width: 768px) {
  .qa {
    margin-top: 61px;
    padding-top: 40px;
    padding-bottom: 58px;
  }
}

.qa__heading {
  margin-left: -7px;
}

summary {
  list-style: none;
  cursor: pointer;
}

.qa__boxs {
  max-width: 1100px;
  margin-top: 11px;
  margin-left: -3px;
  display: grid;
  gap: 14px;
}

.qa__box {
  overflow: hidden;
}

.qa-box__head {
  background: #ffca8d;
  padding: 2px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding-right: 19px;
    padding-left: 20px;
  }
}

.qa-box__head-icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 700;
}

.qa-box__head-icon {
  display: inline-block;
  color: #dd831d;
  font-size: 30px;
  font-weight: inherit;
}

.qa-box__head-text {
  font-weight: inherit;
}

.qa-box__open-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 33px;
  height: 33px;
  background: #fff;
  border-radius: 50%;
}

.qa-box__open-icon-bar-1,
.qa-box__open-icon-bar-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  display: inline-block;
  background: #dd831d;
  width: 18px;
  height: 2px;
}

.qa-box__open-icon-bar-2 {
  rotate: 90deg;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.is-opened .qa-box__open-icon-bar-2 {
  rotate: 0deg;
}

.qa-box__body {
  overflow: hidden;
}

.qa-box__a {
  border: 3px solid #fef1dd;
  padding: 14px 34px;
}

.company-overview {
  margin-top: 26px;
  padding-top: 20px;
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .company-overview {
    margin-top: 63px;
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

.company-overview__definition-list {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 840px;
}
@media screen and (min-width: 768px) {
  .company-overview__definition-list {
    margin-top: 60px;
  }
}
.company-overview__definition-list .definition-list-item .definition-list-item__team,
.company-overview__definition-list .definition-list-item .definition-list-item__definition {
  padding-block: 9px;
}

.definition-list-item__definition--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .definition-list-item__definition--flex {
    gap: 0;
  }
}

.data {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .data {
    padding-bottom: 79px;
  }
}

.data__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
  max-width: 410px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .data__cards {
    max-width: 843px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.data__card {
  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;
  min-height: 344px;
}
@media screen and (min-width: 768px) {
  .data__card {
    width: calc((100% - 23px) / 2);
  }
}

.data-card {
  padding-top: 25px;
  background: #fef1dd;
  border-radius: 20px;
}
.data-card:nth-child(2) .data__icon {
  margin-top: 41px;
}

.data-title {
  font-size: 24px;
  font-weight: 700;
}

.data__icon {
  margin-top: 26px;
}
.data-card__generations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .data-card__generations {
    margin-left: 6px;
  }
}

.data-card__generation {
  width: 33.3333333333%;
  min-width: 105px;
  max-width: 114px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .data-card__generation {
    min-width: 114px;
  }
}

.data-card__age {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 3px;
  font-weight: 700;
  border-radius: 20px;
  border: 2px solid #dd831d;
  background: #ffa641;
}

.data-card__people {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  margin-top: -36px;
  padding-top: 45px;
  padding-bottom: 9px;
  border: 2px solid #dd831d;
}

.data-card__average {
  margin-top: 7px;
  margin-bottom: 27px;
  color: #dd831d;
  font-size: 24px;
  font-weight: 900;
}

.data-card__average--deco {
  font-size: 32px;
}

.contact {
  background: #fef1dd;
  padding-top: 42px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 84px;
  }
}

.contact__inner {
  max-width: 1440px;
  padding-inline: 0;
}

.contact__message-wrapper {
  margin-top: 20px;
  text-align: center;
  padding-inline: clamp(0.9375rem, 0.3873239437rem + 2.3474178404vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .contact__message-wrapper {
    margin-top: 40px;
    margin-left: -4px;
  }
}

.contact__message {
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0em;
}

.contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .contact__buttons {
    margin-top: 103px;
  }
}
@media screen and (min-width: 992px) {
  .contact__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 576px) {
  .contact__imgs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .contact__img {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1024px) {
  .contact__img {
    width: 20%;
  }
}
@media screen and (min-width: 576px) {
  .contact__img:not(:first-child) {
    width: 50%;
  }
}
@media screen and (min-width: 576px) and (min-width: 768px) {
  .contact__img:not(:first-child) {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 576px) and (min-width: 1024px) {
  .contact__img:not(:first-child) {
    width: 20%;
  }
}
.contact__img img {
  width: 100%;
}

.footer {
  padding-top: 54px;
  padding-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 106px;
    padding-bottom: 109px;
  }
}

.footer__logo {
  width: 256px;
  margin-inline: auto;
}
.footer__site-name {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.footer__address-area {
  margin-top: 35px;
  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;
}

.footer__company-name {
  font-size: 24px;
  font-weight: 700;
}

.footer__address {
  text-align: center;
  font-style: normal;
  font-size: 20px;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.fv-swiper {
  margin-top: 80px;
  margin-left: clamp(0.9375rem, 0.3873239437rem + 2.3474178404vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .fv-swiper {
    margin-top: 57px;
  }
}
@media screen and (min-width: 1440px) {
  .fv-swiper {
    margin-left: 170px;
  }
}

.fv__swiper-img {
  border-radius: 18px;
  overflow: hidden;
}
.fv__swiper-img img {
  width: 100%;
}

.fv__swiper-img--deco {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .fv__swiper-img--deco {
    margin-top: 31px;
  }
}

.daily-schedule-swiper__container {
  margin-top: 49px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .daily-schedule-swiper__container {
    margin-top: 98px;
  }
}
.daily-schedule-swiper__container::before {
  position: absolute;
  content: "";
  top: -34px;
  left: 75%;
  background: url(../img/icon-arrow-swiper.svg);
  background-size: cover;
  width: 40px;
  height: 11px;
}
@media screen and (min-width: 768px) {
  .daily-schedule-swiper__container::before {
    width: 61px;
    height: 17px;
    top: -40px;
  }
}
@media screen and (min-width: 1100px) {
  .daily-schedule-swiper__container::before {
    left: calc(99% + 6px);
  }
}

.daily-schedule-swiper {
  margin-left: min(15%, 129px);
  margin-right: calc(50% - 50vw);
}

.message-swiper {
  position: relative;
}

.message-swiper__button-prev,
.message-swiper__button-next {
  width: 26px;
  height: 26px;
  margin-top: 0;
  top: 40%;
}
@media screen and (min-width: 576px) {
  .message-swiper__button-prev,
  .message-swiper__button-next {
    top: 51%;
  }
}
@media screen and (min-width: 768px) {
  .message-swiper__button-prev,
  .message-swiper__button-next {
    top: 49%;
  }
}
.message-swiper__button-prev::after,
.message-swiper__button-next::after {
  display: none;
}

.message-swiper__button-prev {
  background: url(../img/icon-swiper-burron-prev.svg);
  left: 0;
}
@media screen and (min-width: 1440px) {
  .message-swiper__button-prev {
    left: min(91px, 8.3%);
  }
}

.message-swiper__button-next {
  background: url(../img/icon-swiper-button-next.svg);
  right: 0;
}
@media screen and (min-width: 1440px) {
  .message-swiper__button-next {
    right: -64px;
  }
}

.u-hidden-middle {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-hidden-middle {
    display: none;
  }
}

.u-hidden-lg {
  display: block;
}
@media screen and (min-width: 992px) {
  .u-hidden-lg {
    display: none;
  }
}