@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  color: #002d2d;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.image--100 {
  height: 100%;
}

.image--auto {
  width: auto;
}

.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.header {
  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;
  position: fixed;
  top: 40px;
  left: 50%;
  z-index: 999;
  padding-inline: 57px 100px;
  width: 93.75%;
  height: 100px;
  background-color: #fff;
  border-radius: 70px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 1280px) {
  .header {
    padding-inline: 30px 50px;
  }
}

@media screen and (max-width: 1000px) {
  .header {
    top: 20px;
    padding-inline: 20px 40px;
    height: 70px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    top: 0;
    padding-inline: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    -webkit-transition: background-color 0.3s ease, background-size 0.3s ease-out;
    transition: background-color 0.3s ease, background-size 0.3s ease-out;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    background-size: 0% 0%;
    background-position: top right;
    background-repeat: no-repeat;
  }

  .header:not(.active) {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {

  .header__logo,
  .header__nav {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    pointer-events: none;
  }
}

@media screen and (max-width: 1000px) {
  .header__logo {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin: 13px;
    width: 135px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-50% - 20px));
    transform: translate(-50%, calc(-50% - 20px));
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

@media screen and (max-width: 1280px) {
  .header__nav-list {
    gap: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .header__nav-list {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.header__nav-link {
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .header__nav-link {
    font-size: 14px;
  }
}

.header__nav-link--inquiry {
  padding: 11px 20px;
  color: #fff;
  background-color: #00958b;
  border-radius: 50px;
}

@media screen and (max-width: 1200px) {
  .header__nav-link--inquiry {
    padding: 6px 10px;
  }
}

.header__menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 0 0 0 10px;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 25px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu-span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #002d2d;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.header__menu-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.header.active {
  background-size: 200% 200%;
  pointer-events: auto;
}

.header.active .header__logo {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .header.active .header__nav {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }
}

.header.active .header__menu-span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.header.active .header__menu-span:nth-child(2) {
  opacity: 0;
}

.header.active .header__menu-span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.button {
  font: 700 1.2rem "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
  max-width: 200px;
  width: 100%;
  height: 50px;
  background-color: #00958b;
  border-radius: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 38px 20px 20px;
  position: relative;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border: none;
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 18px;
    max-width: 345px;
    height: 70px;
    padding: 24px 56px 24px 32px;
  }
}

.button:hover {
  background-color: #fff;
  border: 1px solid #00958b;
}

.button:hover .button__text {
  color: #00958b;
}

.button:hover::after {
  background: url("./public/img/icons/arrow-blue.svg") no-repeat center/cover;
}

.button::after {
  content: "";
  width: 18px;
  height: 11px;
  background: url("./public/img/icons/arrow-white.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .button::after {
    width: 24px;
    height: 14.68px;
    right: 32px;
  }
}

.button__wrapper {
  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;
}

.button__text {
  font: 700 1.2rem "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .button__text {
    font-size: 18px;
  }
}

.button__text--zen {
  font: 700 1.2rem "Zen Kaku Gothic New", sans-serif;
}

.button--back {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.button--back::after {
  display: none;
}

.button--back::before {
  content: "";
  width: 18px;
  height: 11px;
  background: url("./public/img/icons/arrow-white.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 767px) {
  .button--back::before {
    width: 24px;
    height: 14.68px;
    left: 32px;
  }
}

.button--back:hover::before {
  background: url("./public/img/icons/arrow-blue.svg") no-repeat center/cover;
}

.title__jp {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 20px;
    margin-bottom: 4px;
  }
}

.title__jp.fs32 {
  font-size: 3.2rem;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .title__jp.fs32 {
    font-size: 26px;
    margin-bottom: 8px;
  }
}

.title__en {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #00958b;
}

@media screen and (max-width: 767px) {
  .title__en {
    font-size: 12px;
  }
}

.title__en.fs20 {
  font-size: 2rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .title__en.fs20 {
    font-size: 16px;
  }
}

.banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 31px;
  padding-block: 192px 60px;
}

@media screen and (max-width: 767px) {
  .banner__wrapper {
    padding-block: 78px 0;
    margin-bottom: 20px;
    gap: 21px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

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

.breadcrumbs__link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00958b;
  text-decoration: underline;
  letter-spacing: 0.01em;
  text-underline-offset: 2px;
}

.breadcrumbs__link:not(:last-child) {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8.3px;
  gap: 10px;
}

.breadcrumbs__link:not(:last-child)::after {
  content: "";
  height: 11.4px;
  width: 21.4px;
  background: url("./public/img/icons/caret.svg") no-repeat center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: block;
  -ms-flex-align: block;
  align-items: block;
}

.breadcrumbs__link--nolink {
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #002d2d;
  text-decoration: none;
}

.links {
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .links {
    margin-bottom: 60px;
  }
}

.links__wrapper {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .links__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.links__item {
  position: relative;
  overflow: hidden;
}

.links__item:hover .links__semi-circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.links__img-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 595/450;
}

.links__img-wrapper::before {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  mix-blend-mode: hard-light;
  background-color: #171717;
}

.links__content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.links__txt-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.links__txt-en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media screen and (max-width: 980px) {
  .links__txt-en {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .links__txt-en {
    margin-bottom: 18px;
  }
}

.links__arrow {
  width: 40px;
  margin-bottom: 9%;
}

@media screen and (max-width: 980px) {
  .links__arrow {
    margin-bottom: 4%;
  }
}

@media screen and (max-width: 767px) {
  .links__arrow {
    width: 23px;
    margin-bottom: 8%;
  }
}

.links__semi-circle {
  content: "";
  position: absolute;
  top: 45%;
  left: 8%;
  right: 8%;
  bottom: 0;
  border: 2px solid #fff;
  border-bottom: 0;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .links__semi-circle {
    top: 40%;
    left: 4%;
    right: 4%;
  }
}

.footer {
  padding-block: 60px;
  background-color: rgba(110, 149, 139, 0.14);
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.footer__company-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .footer__company-name {
    font-size: 16px;
  }
}

.footer__company-info {
  margin-block: 40px 50px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .footer__company-info {
    margin-block: 15px 25px;
    font-size: 16px;
    line-height: 1.75em;
  }
}

.footer__copyright {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 14px;
  }
}

.footer__nav {
  width: 66.67%;
}

@media screen and (max-width: 1200px) {
  .footer__nav {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav {
    width: 100%;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
}

@media screen and (max-width: 1200px) {
  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr) auto;
    gap: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #002d2d;
  }
}

.footer__nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .footer__nav-link {
    padding-block: 25px;
    font-size: 18px;
    border-bottom: 1px solid #002d2d;
  }
}

.footer__nav-sublist {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .footer__nav-sublist {
    margin-top: 25px;
  }
}

.footer__nav-sublink {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6e958b;
}

@media screen and (max-width: 767px) {
  .footer__nav-sublink {
    font-size: 16px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }
}

.heading {
  margin-bottom: 50px;
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .heading {
    margin-bottom: 20px;
  }
}

.heading::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #00958b;
  border-radius: 50%;
  display: inline-block;
}

.heading__title {
  font-size: 2rem;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .heading__title {
    font-size: 18px;
  }
}

.card__list {
  max-width: 1136px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 58px;
}

@media screen and (max-width: 1024px) {
  .card__list {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .card__list {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}

.card__inner {
  height: 100%;
  max-height: 161px;
  padding: 40px;
  background-color: #eaf0ef;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .card__inner {
    max-height: 160px;
    padding: 40px 8px;
  }
}

.card__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.5em;
  margin-top: 25px;
  display: block;
}

@media screen and (max-width: 767px) {
  .card__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7857142857em;
    margin-top: 10px;
  }
}

.card__icon {
  width: 80px;
  height: 80px;
}

.business {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .business {
    margin-block: 20px 60px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .business__container {
    padding: 0 !important;
  }
}

.business__items {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 980px) {
  .business__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.business__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.business__icon-wrapper {
  display: block;
  margin: auto;
  width: 125px;
  height: 125px;
  border: 2px solid #00958b;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.business__icon {
  width: 60px;
  margin-bottom: 2px;
}

.business__content-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .business__content-wrapper {
    padding: 0 15px;
  }
}

.business__content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #002d2d;
  opacity: 0.5;
}

.business__content {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 11.54%;
  right: 11.54%;
  aspect-ratio: 300/235;
  background-color: #fff;
  padding-inline: 20px;
  border-radius: 0 0 4px 4px;
}

@media screen and (max-width: 767px) {
  .business__content {
    aspect-ratio: 345/237;
    width: 92.3%;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.business__header {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-block: 22px 20px;
  text-align: center;
}

.business__txt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

.business__arrow {
  display: block;
  margin-block: auto 18px;
  width: 40px;
}

.news {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 60px;
  }
}

.news__container {
  margin-inline: auto;
  max-width: 1000px;
}

.news__nav {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .news__nav {
    margin-bottom: 30px;
  }
}

.news__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .news__nav-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news__nav-item {
  height: 40px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: 1.5px solid #6e958b;
  border-radius: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news__nav-item.active {
  color: #fff;
  background-color: #6e958b;
}

.news__content {
  margin-bottom: 60px;
  border-top: 1px solid #dedede;
}

@media screen and (max-width: 767px) {
  .news__content {
    margin-bottom: 30px;
    border-top: 1px solid #002d2d;
  }
}

.news__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  padding: 34px 20px;
  border-bottom: 1px solid #dedede;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

@media screen and (max-width: 767px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    padding: 30px 0;
    border-bottom: 1px solid #002d2d;
  }
}

.news__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url("./public/img/icons/arrow-blue.svg") no-repeat center/50%;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

@media screen and (max-width: 767px) {
  .news__item::after {
    content: none;
  }
}

.news__item:hover {
  background-color: rgba(110, 149, 139, 0.1);
}

.news__item:hover .news__cat {
  color: #002d2d;
  background-color: rgba(110, 149, 139, 0.1);
  border: 0.5px solid #002d2d;
}

.news__item:hover .news__title {
  color: #00958b;
}

.news__item:hover::after {
  background: url("./public/img/icons/arrow-white.svg") no-repeat center/50%;
  background-color: #00958b;
}

.news__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .news__info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}

.news__date {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .news__date {
    color: #6e958b;
  }
}

.news__cat {
  min-width: 110px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #6e958b;
  border-radius: 80px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .news__cat {
    min-width: 100px;
    height: 30px;
    font-size: 14px;
    font-weight: 500;
  }
}

.news__title {
  margin-right: 80px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

@media screen and (max-width: 767px) {
  .news__title {
    margin-right: 0;
    letter-spacing: 0.1em;
    -webkit-line-clamp: 4;
  }
}

.news-detail {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .news-detail {
    margin-bottom: 60px;
  }
}

.news-detail__container {
  padding-block: 100px;
  max-width: 1200px;
  border: 1px solid #6e958b;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .news-detail__container {
    padding-block: 60px;
  }
}

.news-detail__content {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .news-detail__content {
    margin-bottom: 30px;
  }
}

.news-detail__content-wrap {
  margin-inline: auto;
  padding: 0 4%;
  max-width: calc(1000px + 8%);
}

.news-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .news-detail__info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.news-detail__date {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .news-detail__date {
    font-size: 14px;
  }
}

.news-detail__cat {
  width: 110px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #6e958b;
  border-radius: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .news-detail__cat {
    width: 100px;
    height: 30px;
    font-size: 14px;
  }
}

.news-detail__title {
  font-size: 3.2rem;
  line-height: 1.78125em;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .news-detail__title {
    font-size: 20px;
  }
}

.news-detail__subtitle {
  margin-block: 50px 30px;
  padding: 20px;
  font-size: 2.6rem;
  line-height: 1.7692307692em;
  letter-spacing: 0.07em;
  background-color: rgba(110, 149, 139, 0.16);
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .news-detail__subtitle {
    margin-block: 40px 20px;
    font-size: 18px;
  }
}

.news-detail__text {
  margin-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .news-detail__text {
    margin-bottom: 30px;
    letter-spacing: 0.1em;
  }
}

.news-detail__image {
  overflow: hidden;
  border-radius: 6px;
}

.news-detail__image .image {
  display: block;
}

.news-detail__button {
  padding-top: 60px;
  border-top: 1px solid #dedede;
}

@media screen and (max-width: 767px) {
  .news-detail__button {
    padding-top: 30px;
  }
}

.guidelines {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .guidelines {
    padding-bottom: 60px;
  }
}

.guidelines__list {
  max-width: 1000px;
  margin: 0 auto 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .guidelines__list {
    margin: 0 auto 30px;
  }
}

.guidelines__row {
  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;
  padding: 22px;
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .guidelines__row {
    padding: 17px;
  }
}

.guidelines__row:first-child {
  border-top: 1px solid #707070;
}

.guidelines__title {
  width: 224px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.5555555556em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .guidelines__title {
    width: 175px;
    font-size: 16px;
    gap: 7px;
  }
}

.guidelines__title::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid #00958b;
  border-radius: 50%;
  display: inline-block;
}

.guidelines__info {
  max-width: 468px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

@media screen and (max-width: 767px) {
  .guidelines__info {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .top .title__jp {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .top .title__en {
    font-size: 16px;
  }
}

.top__mv {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .top__mv {
    height: 550px;
    padding: 0 4%;
  }
}

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

@media screen and (max-width: 767px) {
  .top__mv-image {
    height: 417px;
  }
}

.top__mv-news {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 17.5px 68px 17.5px 32px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .top__mv-news {
    padding: 10px 15px;
  }
}

.top__mv-news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50.5px;
}

@media screen and (max-width: 767px) {
  .top__mv-news-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
  }
}

.top__mv-news-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 32.5px;
  border-right: 1px solid #002d2d;
}

@media screen and (max-width: 767px) {
  .top__mv-news-title-wrap {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid #002d2d;
  }
}

.top__mv-news-title {
  font-size: 2rem;
  letter-spacing: 0.01em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.top__mv-article {
  width: 100%;
  position: relative;
}

.top__mv-article::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url("./public/img/icons/icon-arrow.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .top__mv-article::after {
    display: none;
  }
}

.top__mv-article:hover::after {
  background: url("./public/img/icons/icon-arrow-blue.svg") no-repeat center/cover;
}

.top__mv-article-wrap {
  max-width: 679px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.top__mv-article-date {
  font: 500 1.4rem "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #6e958b;
}

.top__mv-article-text {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

.top__service {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .top__service {
    padding-top: 64px;
  }
}

.top__service-list {
  margin-block: 40px 60px;
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr 1fr 1fr;
  grid-template-areas: "item1 item1 item2 item2" "item1 item1 item3 item3";
  gap: 6px;
}

@media screen and (max-width: 767px) {
  .top__service-list {
    margin-block: 30px;
    grid-template: auto/1fr 1fr;
    grid-template-areas: "item1 item1" "item1 item1" "item3 item2";
    gap: 15px;
  }
}

.top__service-item {
  position: relative;
}

.top__service-item:nth-child(1) {
  grid-area: item1;
}

@media screen and (max-width: 767px) {
  .top__service-item:nth-child(1) {
    min-height: 400px;
  }
}

.top__service-item:nth-child(2) {
  grid-area: item2;
}

@media screen and (max-width: 767px) {
  .top__service-item:nth-child(2) {
    min-height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .top__service-item:nth-child(2) .top__service-info {
    padding-inline: 17px;
    padding-bottom: 20px;
  }
}

.top__service-item:nth-child(3) {
  grid-area: item3;
}

@media screen and (max-width: 767px) {
  .top__service-item:nth-child(3) {
    min-height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .top__service-item:nth-child(3) .top__service-info {
    padding-inline: 17px;
    padding-bottom: 20px;
  }
}

.top__service-item:hover .top__service-info::after {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.top__service-item:hover .top__service-image::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(255, 255, 255, 0)), to(rgb(0, 149, 139)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgb(0, 149, 139) 100%);
}

.top__service-image {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.top__service-image::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 45, 45, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

@media screen and (max-width: 767px) {
  .top__service-image::after {
    top: 70px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(255, 255, 255, 0)), to(rgb(0, 149, 139)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgb(0, 149, 139) 100%);
  }
}

.top__service-info {
  width: 100%;
  gap: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-inline: 39px 78px;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top__service-info {
    padding-inline: 24px;
  }
}

.top__service-info::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 33px;
  bottom: 33px;
  -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;
}

@media screen and (max-width: 767px) {
  .top__service-info::after {
    display: none;
  }
}

.top__service-info::before {
  content: "";
  width: 20px;
  height: 12.23px;
  background: url("./public/img/icons/arrow-white.svg") no-repeat center/cover;
  position: absolute;
  right: 43.5px;
  bottom: 46.5px;
}

@media screen and (max-width: 767px) {
  .top__service-info::before {
    display: none;
  }
}

.top__service-info-wrap {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top__service-info-wrap {
    max-width: 100%;
  }
}

.top__service-title-wrap {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .top__service-title-wrap {
    margin-bottom: 10px;
    gap: 6.3px;
  }
}

@media screen and (max-width: 767px) {
  .top__service-title-wrap img {
    width: 20px;
    height: 20px;
  }
}

.top__service-title-wrap--mb {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .top__service-title-wrap--mb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top__service-title {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top__service-title {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
}

.top__service-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  color: #fff;
}

.top__service-icon-btn {
  position: absolute;
}

.top__reason {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .top__reason {
    padding-top: 60px;
  }
}

.top__reason-list {
  max-width: 1000px;
  margin: 40px auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media screen and (max-width: 1100px) {
  .top__reason-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .top__reason-list {
    grid-template-columns: 100%;
    gap: 30px;
  }
}

.top__reason-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 29px;
}

@media screen and (max-width: 767px) {
  .top__reason-item {
    gap: 25px;
  }
}

@media screen and (max-width: 767px) {
  .top__reason-item:nth-child(1) .top__reason-image {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .top__reason-item:nth-child(2) .top__reason-image {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .top__reason-item:nth-child(3) .top__reason-image {
    width: 100px;
    height: 80.48px;
  }
}

.top__reason-inner {
  width: 300px;
  height: 300px;
  background-color: #eaf0ef;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .top__reason-inner {
    width: 200px;
    height: 200px;
  }
}

.top__reason-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.top__news {
  padding-block: 100px 190px;
}

@media screen and (max-width: 767px) {
  .top__news {
    padding-block: 60px;
  }
}

@media screen and (max-width: 767px) {
  .top__news .title {
    text-align: center;
  }
}

.top__news-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
}

@media screen and (max-width: 1024px) {
  .top__news-wrapper {
    grid-template-columns: 150px 1fr;
  }
}

@media screen and (max-width: 767px) {
  .top__news-wrapper {
    grid-template-columns: 100%;
    gap: 30px;
  }
}

.top__news-item {
  position: relative;
  padding: 34px 60px 34px 20px;
  border-bottom: 1px solid #dedede;
}

@media screen and (max-width: 767px) {
  .top__news-item {
    padding: 30px 0;
    border-bottom: 1px solid #002d2d;
  }
}

.top__news-item:first-child {
  border-top: 1px solid #dedede;
}

@media screen and (max-width: 767px) {
  .top__news-item:first-child {
    border-top: 1px solid #002d2d;
  }
}

.top__news-item::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .top__news-item::after {
    display: none;
  }
}

.top__news-item::before {
  content: "";
  width: 20px;
  height: 12.23px;
  background: url("./public/img/icons/arrow-blue.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top__news-item::before {
    display: none;
  }
}

.top__news-item:hover {
  background: rgba(110, 149, 139, 0.1);
}

.top__news-item:hover::after {
  background-color: #00958b;
}

.top__news-item:hover::before {
  background: url("./public/img/icons/arrow-white.svg") no-repeat center/cover;
}

.top__news-item:hover .top__news-category {
  border: 0.5px solid #002d2d;
  background-color: transparent;
}

.top__news-item:hover .top__news-category span {
  color: #002d2d;
}

.top__news-item:hover .top__news-desc {
  color: #00958b;
}

.top__news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .top__news-link {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .top__news-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
  }
}

.top__news-info-wrap {
  width: 212.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .top__news-info-wrap {
    width: 192.4px;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top__news-info-wrap {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.top__news-date {
  font: 500 1.4rem "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #6e958b;
}

.top__news-category {
  max-width: 110px;
  width: 100%;
  height: 41px;
  border-radius: 80px;
  padding-inline: 26px 25px;
  background-color: #6e958b;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .top__news-category {
    max-width: 100px;
    padding-inline: 10px;
    height: 30px;
  }
}

.top__news-category span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top__news-category span {
    font-size: 14px;
  }
}

.top__news-desc {
  max-width: 560px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .top__news-desc {
    max-width: 100%;
    letter-spacing: 0.1em;
  }
}

.reason {
  margin-bottom: 100px;
  counter-reset: section;
}

@media screen and (max-width: 767px) {
  .reason {
    margin-bottom: 60px;
  }
}

.reason__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: 130px;
}

@media screen and (max-width: 767px) {
  .reason__content {
    gap: 40px;
  }
}

.reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 7.5%;
}

@media screen and (max-width: 767px) {
  .reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 47px;
  }
}

.reason__text-wrapper {
  padding-left: 4.167%;
  width: 45.83%;
}

@media screen and (max-width: 767px) {
  .reason__text-wrapper {
    padding-left: 0;
    width: 100%;
  }
}

.reason__image {
  width: 46.67%;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .reason__image {
    position: relative;
    left: 4%;
    width: 108%;
  }
}

.reason__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
  font-size: 3.2rem;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .reason__title {
    padding-left: 38px;
    font-size: 20px;
  }
}

.reason__title--big {
  display: inline-block;
  margin-right: 15px;
  padding: 22px 27px 23px 40px;
  min-width: 270px;
  font-size: 5.2rem;
  letter-spacing: 0.2em;
  text-align: center;
  border: 9px solid #00958b;
  border-radius: 226px;
}

@media screen and (max-width: 767px) {
  .reason__title--big {
    margin-right: 5px;
    padding: 11px 15px 12px 23px;
    min-width: 150px;
    font-size: 28px;
    border: 6px solid #00958b;
  }
}

.reason__title::before {
  content: counter(section, decimal-leading-zero);
  counter-increment: section;
  position: absolute;
  top: -57px;
  left: -50px;
  font-size: 10rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #868787;
  opacity: 0.3;
}

@media screen and (max-width: 767px) {
  .reason__title::before {
    top: -17px;
    left: 0;
    font-size: 50px;
  }
}

.reason__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .reason__text {
    letter-spacing: 0.1em;
  }
}

.recovery__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 82px;
}

@media screen and (max-width: 1024px) {
  .recovery__intro {
    gap: 50px;
  }
}

@media screen and (max-width: 767px) {
  .recovery__intro {
    -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: 40px;
  }
}

@media screen and (max-width: 767px) {
  .recovery__intro-container {
    padding: 0 !important;
  }
}

.recovery__image {
  max-width: 480px;
  width: 100%;
  aspect-ratio: 480/300;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .recovery__image {
    max-width: 100%;
  }
}

.recovery__info {
  width: 100%;
  max-width: 550px;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .recovery__info {
    max-width: 100%;
    padding: 0 4%;
    margin-right: 0;
  }
}

.recovery__title {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1.7692307692em;
  color: #00958b;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .recovery__title {
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}

.recovery__desc {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

.recovery__container {
  margin-block: 100px;
}

@media screen and (max-width: 767px) {
  .recovery__container {
    margin-block: 40px 60px;
  }
}

.recovery__block:first-of-type {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .recovery__block:first-of-type {
    margin-top: 40px;
  }
}

.recovery__block:not(:last-child) {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .recovery__block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.recruitment {
  margin-bottom: 100px;
  counter-reset: section;
}

@media screen and (max-width: 767px) {
  .recruitment {
    margin-bottom: 60px;
  }
}

.recruitment__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7.37%;
  margin-bottom: 82px;
  padding-inline: 5.25% 2.083%;
}

@media screen and (max-width: 767px) {
  .recruitment__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    padding-inline: 0;
  }
}

.recruitment__intro-image {
  width: 43.17%;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .recruitment__intro-image {
    width: 108%;
  }
}

.recruitment__text-wrapper {
  width: 49.46%;
}

@media screen and (max-width: 767px) {
  .recruitment__text-wrapper {
    width: 100%;
  }
}

.recruitment__title {
  margin-bottom: 40px;
  font-size: 2.6rem;
  line-height: 1.7692307692em;
  letter-spacing: 0.04em;
  color: #00958b;
}

@media screen and (max-width: 767px) {
  .recruitment__title {
    margin-bottom: 43px;
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}

.recruitment__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

.recruitment__personality-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

@media screen and (max-width: 950px) {
  .recruitment__personality-summary {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .recruitment__personality-summary {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

.recruitment__personality-text {
  padding: 43px 7px;
  height: 150px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: #eaf0ef;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-text {
    padding: 24px 0;
    height: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75em;
    letter-spacing: 0.07em;
  }
}

.recruitment__personality-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: 60px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-list {
    gap: 30px;
    margin-top: 60px;
  }
}

.recruitment__personality-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.recruitment__personality-text-wrapper {
  position: relative;
  width: 50%;
  padding: 48px 4.167% 0;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-text-wrapper {
    padding: 30px 0 0;
    width: 100%;
  }
}

.recruitment__personality-text-wrapper::after {
  content: counter(section, decimal-leading-zero);
  counter-increment: section;
  position: absolute;
  top: 0;
  right: 8.33%;
  font-size: 8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #00958b;
  opacity: 0.3;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-text-wrapper::after {
    right: 0;
    font-size: 70px;
  }
}

.recruitment__personality-image {
  width: 50%;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-image {
    position: relative;
    left: -4%;
    width: 108%;
  }
}

.recruitment__personality-title {
  margin-bottom: 22px;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .recruitment__personality-title {
    margin-bottom: 43px;
    font-size: 18px;
  }
}

.recruitment__message {
  margin-top: 100px;
  padding: 96px 8.33% 100px;
  background-color: #eaf0ef;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .recruitment__message {
    margin-top: 60px;
    padding: 40px 24px;
  }
}

.recruitment__message-text {
  margin-block: 30px 40px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777777778em;
  letter-spacing: 0.04em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .recruitment__message-text {
    margin-block: 30px;
    font-size: 16px;
    line-height: 1.75em;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

.reform__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 82px;
}

@media screen and (max-width: 1024px) {
  .reform__intro {
    gap: 50px;
  }
}

@media screen and (max-width: 767px) {
  .reform__intro {
    -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: 40px;
  }
}

@media screen and (max-width: 767px) {
  .reform__intro-container {
    padding: 0 !important;
  }
}

.reform__image {
  max-width: 480px;
  width: 100%;
  aspect-ratio: 480/300;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .reform__image {
    max-width: 100%;
  }
}

.reform__info {
  width: 100%;
  max-width: 550px;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .reform__info {
    max-width: 100%;
    padding: 0 4%;
    margin-right: 0;
  }
}

.reform__title {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1.7692307692em;
  color: #00958b;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .reform__title {
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}

.reform__desc {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

.reform__container {
  margin-block: 100px;
}

@media screen and (max-width: 767px) {
  .reform__container {
    margin-block: 40px 60px;
  }
}

.reform__block:first-of-type {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .reform__block:first-of-type {
    margin-top: 40px;
  }
}

.reform__block:not(:last-child) {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .reform__block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.reform .card__list .card__item:nth-child(2) .card__icon {
  width: auto;
  height: auto;
}

@media screen and (max-width: 767px) {
  .reform .card__list .card__item:nth-child(2) .card__icon {
    width: 150px;
  }
}

.cleaning__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 82px;
}

@media screen and (max-width: 1024px) {
  .cleaning__intro {
    gap: 50px;
  }
}

@media screen and (max-width: 767px) {
  .cleaning__intro {
    -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: 40px;
  }
}

@media screen and (max-width: 767px) {
  .cleaning__intro-container {
    padding: 0 !important;
  }
}

.cleaning__image {
  max-width: 480px;
  width: 100%;
  aspect-ratio: 480/300;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .cleaning__image {
    max-width: 100%;
  }
}

.cleaning__info {
  width: 100%;
  max-width: 550px;
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .cleaning__info {
    max-width: 100%;
    padding: 0 4%;
    margin-right: 0;
  }
}

.cleaning__title {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1.7692307692em;
  color: #00958b;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .cleaning__title {
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}

.cleaning__desc {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

.cleaning__container {
  margin-block: 100px;
}

@media screen and (max-width: 767px) {
  .cleaning__container {
    margin-block: 40px 60px;
  }
}

.cleaning__block:first-of-type {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .cleaning__block:first-of-type {
    margin-top: 40px;
  }
}

.cleaning__block:not(:last-child) {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .cleaning__block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.cleaning__cost {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .cleaning__cost {
    margin-bottom: 60px;
  }
}

.cleaning__content:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .cleaning__content:not(:last-child) {
    margin-bottom: 30px;
  }
}

.cleaning__content:first-of-type {
  margin-top: 76px;
}

@media screen and (max-width: 767px) {
  .cleaning__content:first-of-type {
    margin-top: 30px;
  }
}

.cleaning__cost-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 15px;
}

@media screen and (max-width: 1024px) {
  .cleaning__cost-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .cleaning__cost-list {
    grid-template-columns: 100%;
  }
}

.cleaning__cost-heading {
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  background-color: #00958b;
  text-align: center;
  padding: 15px;
  border-top: 1px solid #00958b;
  border-left: 1px solid #00958b;
  border-right: 1px solid #00958b;
  border-radius: 4px 4px 0 0;
}

@media screen and (max-width: 767px) {
  .cleaning__cost-heading {
    font-size: 16px;
    letter-spacing: 0.1em;
    height: 50px;
    padding: 13px;
  }
}

.cleaning__cost-price {
  font: 700 2.4rem "Montserrat", sans-serif;
  text-align: center;
  letter-spacing: 0.07em;
  padding: 30px 15px;
  border-left: 1px solid #00958b;
  border-right: 1px solid #00958b;
  border-bottom: 1px solid #00958b;
  border-radius: 0 0 4px 4px;
}

@media screen and (max-width: 767px) {
  .cleaning__cost-price {
    font-size: 20px;
    padding: 13px;
  }
}

.cleaning__cost-price .text-sm {
  font: 500 1.6rem "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {
  .cleaning__cost-price .text-sm {
    font-size: 14px;
  }
}

.cleaning__cost-price .text-md {
  font: 700 1.8rem "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
  .cleaning__cost-price .text-md {
    font-size: 14px;
  }
}

.cleaning__cost-price .text-zen {
  font: 500 1.6rem "Zen Kaku Gothic New", sans-serif;
}

.cleaning__cost-price .text-reg {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

.cleaning__cost-price .text-mon {
  font: 700 2.4rem "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {
  .cleaning__cost-price .text-mon {
    font: 500 14px "Montserrat", sans-serif;
  }
}

.cleaning__cost-price .text-mon-bg {
  font: 700 2.4rem "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {
  .cleaning__cost-price .text-mon-bg {
    font: 500 14px "Zen Kaku Gothic New", sans-serif;
  }
}

.cleaning__note {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  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;
  margin-top: 20px;
}

.cleaning__note .text-bg {
  font-size: 1.8rem;
}

.company {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .company__container {
    max-width: 100%;
    padding: 0 !important;
  }
}

.company__greetings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-block: 46px 98px;
}

@media screen and (max-width: 767px) {
  .company__greetings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-inline: 4%;
    gap: 30px;
    margin-block: 30px 41px;
  }
}

.company__image-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 8.33%;
}

@media screen and (max-width: 767px) {
  .company__image-wrapper {
    margin-inline: 13.89%;
  }
}

.company__text-wrapper {
  -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;
}

.company__greetings-header {
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 1.8em;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .company__greetings-header {
    font-size: 18px;
    line-height: 1.7777777778em;
    margin-bottom: 40px;
  }
}

.company__greetings-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .company__greetings-text {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
}

.company__greetings-text:nth-child(2) {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .company__greetings-text:nth-child(2) {
    margin-bottom: 30px;
  }
}

.company__greetings-signature {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: end;
}

@media screen and (max-width: 767px) {
  .company__greetings-signature {
    font-size: 16px;
  }
}

.company__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19.5px;
  margin-block: 40px 100px;
}

@media screen and (max-width: 767px) {
  .company__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    margin-block: 30px 60px;
  }
}

.company__details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .company__details {
    padding-inline: 4%;
  }
}

.company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 69px;
  padding-block: 22px;
  border-top: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .company__row {
    gap: 50px;
    padding-block: 19px;
  }
}

.company__row:nth-child(3) {
  padding-block: 9px;
}

.company__row:last-child {
  border-bottom: 1px solid #707070;
}

.company__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 129px;
  flex-basis: 129px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .company__label {
    -ms-flex-preferred-size: 79px;
    flex-basis: 79px;
    font-size: 18px;
  }
}

.company__detail {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

@media screen and (max-width: 767px) {
  .company__detail {
    font-size: 16px;
  }
}

.company__map {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .company__map {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 324px;
  }
}

.company__carousel-marq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 300%;
}

.company__carousel {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 10px);
  will-change: transform;
  -webkit-animation: marqqq 45s linear 1s infinite;
  animation: marqqq 45s linear 1s infinite;
}

@media screen and (max-width: 767px) {
  .company__carousel {
    margin-bottom: 50px;
  }
}

.company__carousel-item {
  min-width: 400px;
  max-width: 400px;
  width: 100%;
  height: 300px;
}

.contact {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .contact {
    margin-bottom: 60px;
  }
}

.contact__intro-wrapper {
  margin-bottom: 62px;
  text-align: center;
}

.contact__intro-highlight {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.07em;
}

.contact__intro-instruction {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

.contact__container {
  padding: 98px 4% 100px;
  border-radius: 4px;
  -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 767px) {
  .contact__container {
    padding-block: 60px;
  }
}

.contact__content {
  margin-inline: auto;
  max-width: 600px;
}

.contact__step-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.contact__step {
  position: relative;
  width: 100px;
  height: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #00958b;
  border: 1px solid #00958b;
  border-radius: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact__step--active {
  color: #fff;
  background-color: #00958b;
}

.contact__step--current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #00958b;
}

.contact__form-group {
  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;
  margin-bottom: 20px;
}

.contact__form-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75em;
  letter-spacing: 0.02em;
}

.contact__form-label--required::after {
  content: "必須";
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 12px;
  padding: 1px 5px 2px;
  font-size: 1rem;
  vertical-align: bottom;
  color: #fff;
  background-color: #00958b;
  border-radius: 105px;
}

.contact__form-input {
  width: 100%;
  padding: 15px 20px;
  height: 54px;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  border: 1px solid #707070;
  border-radius: 4px;
}

.contact__form-input::-webkit-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.contact__form-input::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.contact__form-input:-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.contact__form-input::-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.contact__form-input::placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.contact__form-input--post-code {
  width: 140px;
}

.contact__form-input--textarea {
  height: 170px;
  resize: none;
}

.contact__agree {
  margin-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact__checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.contact__checkbox:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
}

.contact__agree-text {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
}

.contact__agree-text--link {
  color: #00958b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact__agree-text:not(:last-child) {
  margin-left: 10px;
}

.contact__post-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.contact__autofill {
  width: 160px;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #00958b;
  background-color: #fff;
  border: 1px solid #00958b;
  border-radius: 240px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact__complete-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.contact__complete-title {
  font-size: 2.4rem;
  line-height: 1.8em;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contact__complete-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.contact__complete-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

.entry input[type=text],
.entry input[type=number],
.entry input[type=email],
.entry input[type=tel],
.entry select,
.entry textarea {
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 4px;
  border: 1px solid #707070;
  outline: none;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {

  .entry input[type=text],
  .entry input[type=number],
  .entry input[type=email],
  .entry input[type=tel],
  .entry select,
  .entry textarea {
    height: 100%;
    padding: 12px 16px;
  }
}

.entry input[type=text]::-webkit-input-placeholder,
.entry input[type=number]::-webkit-input-placeholder,
.entry input[type=email]::-webkit-input-placeholder,
.entry input[type=tel]::-webkit-input-placeholder,
.entry select::-webkit-input-placeholder,
.entry textarea::-webkit-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.entry input[type=text]::-moz-placeholder,
.entry input[type=number]::-moz-placeholder,
.entry input[type=email]::-moz-placeholder,
.entry input[type=tel]::-moz-placeholder,
.entry select::-moz-placeholder,
.entry textarea::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.entry input[type=text]:-ms-input-placeholder,
.entry input[type=number]:-ms-input-placeholder,
.entry input[type=email]:-ms-input-placeholder,
.entry input[type=tel]:-ms-input-placeholder,
.entry select:-ms-input-placeholder,
.entry textarea:-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.entry input[type=text]::-ms-input-placeholder,
.entry input[type=number]::-ms-input-placeholder,
.entry input[type=email]::-ms-input-placeholder,
.entry input[type=tel]::-ms-input-placeholder,
.entry select::-ms-input-placeholder,
.entry textarea::-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.entry input[type=text]::placeholder,
.entry input[type=number]::placeholder,
.entry input[type=email]::placeholder,
.entry input[type=tel]::placeholder,
.entry select::placeholder,
.entry textarea::placeholder {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #d2d2d2;
  vertical-align: middle;
}

.entry label input[type=checkbox],
.entry label input[type=radio] {
  display: none;
}

.entry label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.entry label input[type=checkbox]+span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #707070;
}

.entry label input[type=radio]+span::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #707070;
}

.entry label input[type=checkbox]+span::after {
  content: "✔";
  position: absolute;
  left: 4px;
  font-size: 1.2rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.entry label input[type=radio]+span::after {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #00958b;
  border: 1px solid #707070;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.entry label input[type=checkbox]:not(:checked)+span::after,
.entry label input[type=radio]:not(:checked)+span::after {
  scale: 0;
}

.entry label input[type=checkbox]:checked+span::after,
.entry label input[type=radio]:checked+span::after {
  scale: 1;
}

.entry__message {
  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-bottom: 62px;
  text-align: center;
}

.entry__message-header {
  font-size: 2rem;
  letter-spacing: 0.07em;
}

.entry__message-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75em;
}

.entry__form-container {
  margin-inline: auto;
  max-width: 600px;
}

.entry__form-wrapper {
  background-color: #fff;
  border-radius: 4px;
  -webkit-filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.08));
  filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.08));
  margin-bottom: 100px;
  padding: 98px 4% 100px;
}

@media screen and (max-width: 767px) {
  .entry__form-wrapper {
    padding: 25px 30px;
  }
}

.entry__steps {
  gap: 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.entry__step {
  position: relative;
  border: 1px solid #00958b;
  background-color: #fff;
  width: 100px;
  height: 50px;
  border-radius: 80px;
  color: #00958b;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.entry__step--active {
  background-color: #00958b;
  color: #fff;
}

.entry__step--current::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0;
  border-color: #00958b transparent transparent transparent;
  top: 100%;
}

.entry__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.entry__input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.entry__input-row--radio {
  gap: 20px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-block: 21px 41px;
}

.entry__input-row:last-child {
  margin-bottom: 0;
}

.entry__label-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.entry__label {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.entry__label-input {
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
}

.entry__required {
  width: 32px;
  height: 18px;
  border-radius: 105px;
  background-color: #00958b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.entry__input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}

.entry__radio-item {
  cursor: pointer;
}

.entry__half-field {
  max-width: 140px;
}

.entry__button {
  width: 160px;
  height: 54px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #00958b;
  background-color: #fff;
  border: 1px solid #00958b;
  border-radius: 240px;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.entry__textarea {
  padding: 15px 20px !important;
  height: 170px !important;
  resize: none;
}

@media screen and (max-width: 767px) {
  .entry__textarea {
    height: 136px !important;
    padding: 12px 16px !important;
  }
}

.entry__checkbox {
  margin-block: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.entry__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.entry__external-link {
  margin-left: 10px;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  color: #00958b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.entry__complete-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.entry__complete-title {
  font-size: 2.4rem;
  line-height: 1.8em;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .entry__complete-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.entry__complete-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

.privacypolicy {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .privacypolicy {
    padding-bottom: 60px;
  }
}

.privacypolicy__intro {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__intro {
    margin-bottom: 40px;
  }
}

.privacypolicy__intro-title {
  font-size: 3.2rem;
  line-height: 1.4375em;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__intro-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.privacypolicy__intro-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

.privacypolicy__article {
  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 (max-width: 767px) {
  .privacypolicy__article {
    gap: 15px;
  }
}

.privacypolicy__article:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__article:not(:last-child) {
    margin-bottom: 25px;
  }
}

.privacypolicy__title {
  font-size: 2.6rem;
  line-height: 1.7692307692em;
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__title {
    font-size: 20px;
    padding-left: 15px;
  }
}

.privacypolicy__title::before {
  content: "";
  width: 5px;
  height: 30px;
  background-color: #00958b;
  position: absolute;
  top: 10px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .privacypolicy__title::before {
    height: 20px;
    top: 8.5px;
  }
}

.privacypolicy__info {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
}

.privacypolicy__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: 10px;
  list-style: none;
  counter-reset: list-number;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__list {
    padding-left: 10px;
  }
}

.privacypolicy__item {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
  position: relative;
  padding-left: 20px;
}

.privacypolicy__item::before {
  content: counter(list-number) ". ";
  counter-increment: list-number;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00958b;
  position: absolute;
  left: 0;
  top: 0;
}

.privacypolicy__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  counter-reset: sub-list;
  padding: 20px 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__sublist {
    padding: 10px 0 10px 10px;
  }
}

.privacypolicy__subitem {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
  padding-left: 20px;
  position: relative;
}

.privacypolicy__subitem::before {
  content: counter(sub-list) ". ";
  counter-increment: sub-list;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00958b;
  position: absolute;
  left: 0;
  top: 0;
}

.privacypolicy__nestedlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  counter-reset: sub-list;
  padding: 20px 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__nestedlist {
    padding: 10px 0 10px 10px;
  }
}

.privacypolicy__nesteditem {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
  padding-left: 20px;
  position: relative;
}

.privacypolicy__nesteditem::before {
  content: counter(sub-list) ". ";
  counter-increment: sub-list;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00958b;
  position: absolute;
  left: 0;
  top: 0;
}

.privacypolicy__note {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.07em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .privacypolicy__note {
    margin-top: 10px;
  }
}

.sitemap {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .sitemap {
    padding-bottom: 60px;
  }
}

.sitemap__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 0;
}

@media screen and (max-width: 767px) {
  .sitemap__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }
}

.sitemap__main-link {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00958b;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .sitemap__main-link {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.sitemap__main-link:hover {
  opacity: 0.7;
}

.sitemap__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.sitemap__sublink {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .sitemap__sublink {
    font-size: 14px;
  }
}

.sitemap__sublink::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #00958b;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .sitemap__sublink::before {
    top: 7px;
  }
}

.sitemap__sublink:hover {
  opacity: 0.7;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

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

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

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

.block {
  display: block;
}

.no-wrap {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.contact__form.confirm .contact__autofill {
  display: none;
}

.contact__form.confirm .contact__form-input {
  pointer-events: none;
  background-color: #fff;
  border-color: #fff;
  color: #002d2d;
  padding: initial;
  height: auto;
}

.contact__form.confirm .button__wrapper {
  margin-top: 40px;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .contact__form.confirm .button__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.contact__form.confirm .contact__agree {
  display: none;
}

.contact__form.confirm .button.button--send {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact__form.confirm .button.button--back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact__form.confirm .button.button--confirm {
  display: none;
}

.contact__form .button.button--back {
  display: none;
}

.contact__form .button.button--send {
  display: none;
}

.entry__form .button.button--back {
  display: none;
}

.entry__form .button.button--send {
  display: none;
}

.entry__form .entry__input-row .wpcf7-form-control-wrap {
  width: 100%;
}

.entry__form .entry__input-row:nth-child(7) .wpcf7-form-control-wrap {
  max-width: 140px;
}

.entry__form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .entry__form .wpcf7-radio {
    gap: 10px;
  }
}

.entry__form.confirm .button__wrapper {
  margin-top: 40px;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .entry__form.confirm .button__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.entry__form.confirm .entry__label-input {
  font-weight: 400;
}

.entry__form.confirm .button.button--send {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.entry__form.confirm .button.button--back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.entry__form.confirm .button.button--confirm {
  display: none;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.contact__agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact__agree .wpcf7-list-item-label {
  margin-left: 10px;
}

@-webkit-keyframes marqqq {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes marqqq {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}