@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightがpxの場合
---------------------------*/
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightが％の場合
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
背景のグラデーション
--------------------------------*/
/*--------------------------------
一次関数
画面幅 1440pxの時は、120pxで、そこからどんどん小さくなり、1000pxの時に20pxになるという実装の際に使える関数。
--------------------------------*/
/*--------------------------------
擬似要素の背景
--------------------------------*/
/*--------------------------------
三角形
--------------------------------*/
/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2F3E47;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

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

/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3986013986vw;
  }
}
@media (min-width: 1144px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1194px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.sub-head {
  background-color: #43B679;
  padding-top: 10.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-head {
    padding-top: 13.9375rem;
  }
}

.sub-head::before {
  content: "";
  background-image: url(../img/common/page-top-bgi.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .sub-head::before {
    max-width: 956px;
  }
}

.sub-head__header {
  position: relative;
  padding-bottom: 3.125rem;
  border-bottom: 0.09375rem solid rgba(255, 255, 255, 0.15);
}

.sub-head__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 3.75rem;
  background-image: url(../img/common/sub-top-bgi.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 2.125rem;
  left: 49.5%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sub-head__header::before {
    width: 59.75rem;
    height: 8.75rem;
  }
}

.sub-head__title {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .sub-head__title {
    font-size: 3.125rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 900;
  }
}

.sub-head__subtitle {
  width: 100%;
  position: absolute;
  bottom: 3.125rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .sub-projects__subtitle {
    width: auto;
    height: 5.25rem;
  }
}

.breadcrumbs {
  max-width: 1160px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  color: #ffffff;
  font-family: "Albert Sans", sans-serif;
  margin-inline: auto;
}

.breadcrumbs > span {
  margin: 0 0.625rem;
}

.breadcrumbs > span > a {
  color: #ffffff;
  opacity: 0.5;
}

/*#################################
言語で画像を切り替える
#################################*/
:root[lang=ja] .language-change img:nth-of-type(1) {
  display: block;
}

:root[lang=ja] .language-change img:nth-of-type(2) {
  display: none;
}

:root[lang=en] .language-change img:nth-of-type(1) {
  display: none;
}

:root[lang=en] .language-change img:nth-of-type(2) {
  display: block;
}

.mv__swiper {
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .mv__swiper {
    height: auto;
    padding-top: initial;
  }
}

.swiper-wrapper {
  height: inherit;
}

.swiper-slide {
  height: inherit;
}

.swiper-img {
  height: inherit;
  background-color: black;
}

.swiper-img img {
  height: inherit;
  object-fit: cover;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .swiper-img img {
    height: auto;
  }
}

.mv__content {
  position: absolute;
  inset: 0;
  margin: auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 0 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .mv__content {
    padding: 0rem 1.25rem;
  }
}

.mv__title {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 4rem;
    line-height: 1.453125;
  }
}

.mv__text {
  margin-top: 0.625rem;
  font-size: 1.375rem;
  line-height: 1.5454545455;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mv__text {
    font-size: 3.375rem;
    line-height: 1.4814814815;
    letter-spacing: 0.1em;
    font-weight: 600;
    max-width: 90%;
  }
}

/* カスタム矢印ナビゲーション */
.swiper-button-prev,
.swiper-button-next {
  width: 2.75rem;
  height: 2.75rem;
  background-size: 1.125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.24);
  border-radius: 0.5625rem;
  top: initial;
  bottom: 20%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    bottom: initial;
    top: 51%;
  }
}

/* デフォルトの矢印を非表示にする */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* 前へ矢印のカスタム画像 */
.swiper-button-prev {
  background-image: url("../img/top/arrow-prev.png");
  left: 20px;
}

/* 次へ矢印のカスタム画像 */
.swiper-button-next {
  background-image: url("../img/top/arrow-next.png");
  right: 20px;
}

/* オプション：ホバー時のスタイル */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.8;
}

/* ページネーション（ドットインジケーター）スタイル */
.swiper-pagination {
  position: absolute;
  bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: 5.4375rem;
  }
}

.swiper-pagination-bullet {
  width: 1.25rem;
  height: 0.125rem;
  margin: 0 5px;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 4.5rem;
    height: 0.1875rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0.625rem;
  margin-right: 1.25rem;
  width: fit-content;
  right: 0;
  left: auto;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 5.4375rem;
  }
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}

/*--------------------------------
about us
--------------------------------*/
.about-us {
  padding-bottom: 6.8125rem;
  margin-top: 6.25rem;
  contain: paint;
}
@media screen and (min-width: 768px) {
  .about-us {
    padding-top: 11.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .about-us__inner {
    padding-left: 7.375rem;
  }
}

.about-us__header {
  position: relative;
}

.about-us__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 3.75rem;
  background-image: url(../img/top/top-title-bgi.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 46%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-us__header::before {
    width: 59.75rem;
    height: 8.75rem;
  }
}

.about-us__subtitle {
  position: absolute;
  width: 100%;
  max-width: 400px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about-us__subtitle {
    max-width: 41.3125rem;
  }
}

.about-us__title {
  text-align: center;
  color: #43B679;
  font-size: 2.625rem;
  line-height: 1.4523809524;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.about-us__title::after {
  content: "";
  display: block;
  width: 4.875rem;
  height: 0.1875rem;
  background-color: #43B679;
  position: absolute;
  left: 50%;
  bottom: -2.375rem;
  transform: translateX(-50%);
}

.about-us__content {
  margin-top: 6.3125rem;
}
@media screen and (min-width: 768px) {
  .about-us__content {
    display: flex;
    align-items: center;
    gap: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .about-us__text-block {
    width: 61.1798287345%;
    flex-shrink: 0;
  }
}

.about-us__heading {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
}

.about-us__heading::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url(../img/common/green-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .about-us__heading::before {
    position: absolute;
    transform: translate(-100%, -50%);
    left: -1.25rem;
    top: 50%;
  }
}

.about-us__text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 1.5rem;
}

.about-us__image-block {
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-us__image-block {
    margin-top: initial;
  }
}

.about-us__image-block::before {
  content: "";
  display: block;
  width: 16.125rem;
  height: 16.125rem;
  background: radial-gradient(circle, rgba(51, 185, 113, 0.5) 0%, rgba(51, 185, 113, 0) 100%);
  filter: blur(77px);
  position: absolute;
  right: clamp(-6.688rem, 29.688rem - 40.42vw, -0.625rem);
  top: -6.4375rem;
  border-radius: 50%;
}

.about-us__image {
  aspect-ratio: 370/447;
  object-fit: cover;
  border-radius: 0.75rem;
  position: relative;
  z-index: 10;
}

/*--------------------------------
バイオデザインアプローチ
--------------------------------*/
.biodesign-approach {
  position: relative;
  padding: 4.125rem 0rem 5.75rem;
  margin-bottom: 7.5rem;
}

.biodesign-approach::before {
  content: "";
  display: block;
  background-color: #3DA46E;
  border-radius: 0 12.25rem 2.375rem 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .biodesign-approach::before {
    width: 94.4444444444%;
  }
}

.biodesign-approach__title {
  display: flex;
  align-items: baseline;
  color: #ffffff;
  gap: 1.6875rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.biodesign-approach__title::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url(../img/common/white-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.biodesign-approach__description {
  margin-top: 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.biodesign-approach__steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .biodesign-approach__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.biodesign-approach__step {
  padding: 0.8125rem 0.8125rem 2rem;
  border-radius: 0.75rem;
}

.biodesign-approach__step--identify {
  background-color: #8CDA7E;
}

.biodesign-approach__step-title-area {
  padding: 1.25rem 0rem;
  background-color: rgba(19, 19, 19, 0.2);
  border-radius: 0.75rem;
  text-align: center;
}

.biodesign-approach__step-title {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 900;
}

.biodesign-approach__step-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 900;
  color: #ffffff;
}

.biodesign-approach__step-image {
  margin-top: 2rem;
  max-width: 18.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .biodesign-approach__step-image img {
    aspect-ratio: 1/1;
  }
}

.biodesign-approach__step--invent {
  background-color: #E99975;
}

.biodesign-approach__step--implement {
  background-color: #86C6D7;
}

/*--------------------------------
き業情報
--------------------------------*/
.company-info {
  padding-top: 5.625rem;
  position: relative;
}

.company-info::before {
  content: "";
  display: block;
  width: 100vw;
  height: 37.5rem;
  background-color: #F0F9F4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .company-info::before {
    height: 37.5rem;
  }
}

.company-info::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.5rem;
  position: absolute;
  top: 37.5rem;
  left: 50%;
  transform: translate(-50%, -100%);
  background-image: url(../img/service/circle.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .company-info::after {
    width: 100%;
    height: 11.25rem;
  }
}

.company-info__inner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .company-info__inner {
    max-width: 1050px;
  }
}

.company-info__title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 900;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company-info__title {
    font-size: 2rem;
    line-height: 1.4375;
    letter-spacing: 0.04em;
    font-weight: 900;
  }
}

.company-info__title::after {
  content: "";
  width: 2.5rem;
  height: 0.25rem;
  background-color: #43B679;
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  transform: translateX(-50%);
}

.company-info__body {
  background-color: #407F46;
  border-radius: 0.9375rem;
  color: #ffffff;
}

.company-info__image-wrapper {
  margin-top: 5.25rem;
}

.company-info__image {
  border-radius: 0.9375rem 0.9375rem 0 0;
}

.company-info__details {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-info__details {
    display: grid;
    grid-template-columns: 418fr 487fr;
    gap: 2.25rem;
    align-items: center;
    padding: 1.8125rem 1.5rem 1.8125rem 2.1875rem;
  }
}

.company-info__logo-wrapper {
  width: 60%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .company-info__logo {
    aspect-ratio: 418/121;
    object-fit: cover;
  }
}

.company-info__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-info__text {
    margin-top: initial;
  }
}

.company-info__name {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .company-info__name {
    font-size: 1.5rem;
    line-height: 1.4583333333;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}

.company-info__company {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.company-info__link {
  color: #ffffff;
}

/*--------------------------------
faq
--------------------------------*/
.faq {
  margin-top: 3.75rem;
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq {
    max-width: 1050px;
  }
}

.faq::after {
  content: "";
  width: 2.5rem;
  height: 0.25rem;
  background-color: #43B679;
  position: absolute;
  left: 50%;
  bottom: 0rem;
  transform: translateX(-50%);
}

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

.faq__question {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
}

.faq__question::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.75rem;
  background-color: #407F46;
  border-radius: 0.25rem 0 0 0.75rem;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}
@media screen and (min-width: 768px) {
  .faq__question::after {
    width: 0.75rem;
    height: 1.125rem;
  }
}

.faq__icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #407F46;
  border-radius: 0 0.75rem 0.75rem 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .faq__icon {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 900;
    width: 4.0625rem;
    height: 4.125rem;
  }
}

.faq__text {
  background-color: #407F46;
  border-radius: 0.5rem;
  min-height: 2.5rem;
  padding: 0.875rem 1.5rem;
  color: #ffffff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq__text {
    border-radius: 1rem;
    min-height: 4.125rem;
    font-size: 1.5rem;
    line-height: 1.4583333333;
    letter-spacing: 0.04em;
    font-weight: 900;
  }
}

.faq__answer {
  margin-top: 0.625rem;
  background-color: rgba(64, 127, 70, 0.12);
  padding: 1rem;
  border-radius: 0.5rem 0 0.5rem 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__answer {
    padding: 2rem 2.5rem;
    border-radius: 1rem 0 1rem 1rem;
  }
}

.faq__answer::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.75rem;
  background-color: rgba(64, 127, 70, 0.12);
  border-radius: 0 0.25rem 0.75rem 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
@media screen and (min-width: 768px) {
  .faq__answer::after {
    width: 0.75rem;
    height: 1.125rem;
  }
}

.faq__description {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.faq__description + .faq__description {
  margin-top: 1em;
}

.faq-bottom {
  text-align: center;
  padding-bottom: 8.5625rem;
}

.faq-bottom__title {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgba(47, 62, 71, 0.6);
}

.faq-bottom__text {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: rgba(47, 62, 71, 0.8);
  margin-top: 0.625rem;
}

/*--------------------------------
パートナー
--------------------------------*/
.sub-partner {
  padding: 6.9375rem 0rem 8.125rem;
}

@media screen and (min-width: 768px) {
  .partner__inner {
    max-width: 1153px;
  }
}

.partner__content {
  padding: 4rem 1rem;
  position: relative;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .partner__content {
    border-radius: 1.25rem;
    padding: 6.875rem 7rem;
  }
}

.partner__content--blue {
  background-color: rgba(134, 198, 215, 0.4);
}

.partner__content--blue .partner__link::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  background-image: url(../img/partner/blue-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .partner__content--blue .partner__link::before {
    width: 2.1125rem;
    height: 2.1125rem;
  }
}

.partner__content--orange .partner__link::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  background-image: url(../img/partner/orange-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .partner__content--orange .partner__link::before {
    width: 2.1125rem;
    height: 2.1125rem;
  }
}

.partner__icon {
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .partner__icon {
    width: 5.375rem;
    height: 5.375rem;
    top: 0.6875rem;
    right: 0.75rem;
  }
}

.partner__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4375rem;
}

@media screen and (min-width: 768px) {
  .partner__item {
    width: calc(50% - 0.71875rem);
  }
}

.partner__link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 1.0625rem;
}

.partner__link img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.partner__link img:hover {
  transition: 0.3s;
  transform: scale(1.1);
}

.partner__content--orange {
  background-color: rgba(224, 174, 66, 0.4);
  margin-top: 2.5rem;
}

/*--------------------------------
チーム
--------------------------------*/
.team-strength {
  background-color: rgba(218, 241, 228, 0.4);
  padding: 3.75rem 0rem 5.375rem;
}

.team-strength__title {
  font-size: 1.625rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 2rem;
  color: #43B679;
  text-align: center;
}

.team-strength__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.4375rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .team-strength__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-strength__item {
  background-color: #fff;
  border-radius: 0.625rem;
  height: 15.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-strength__item:nth-of-type(1) .team-strength__icon {
  width: 5.59rem;
  height: 3.3775rem;
  margin-bottom: 2.375rem;
}

.team-strength__item:nth-of-type(2) .team-strength__icon {
  width: 3.570625rem;
  height: 3.69125rem;
  margin-bottom: 2.0625rem;
}

.team-strength__item:nth-of-type(3) .team-strength__icon {
  width: 3.5625rem;
  height: 3.25rem;
  margin-bottom: 2.3125rem;
}

.team-strength__icon {
  width: auto;
}

.team-strength__text {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 0rem 1rem;
}

.team-strength__highlight--green {
  color: #6DB867;
  font-weight: 700;
}

.team-strength__highlight--orange {
  color: #E07346;
  font-weight: 700;
}

.team-strength__highlight--blue {
  color: #447FA2;
  font-weight: 700;
}

.member {
  padding: 0rem 0rem 8.125rem;
}

.member__arrow {
  width: 100%;
  max-width: 26.25rem;
  margin-inline: auto;
  margin-top: -6.3125rem;
  margin-bottom: -4.375rem;
}
@media screen and (min-width: 768px) {
  .member__arrow {
    max-width: 40.625rem;
    margin-bottom: -9.3125rem;
    margin-top: -8.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .member__inner {
    max-width: 1064px;
  }
}

.member__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}
@media screen and (min-width: 768px) {
  .member__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.member__item {
  background-color: #DAF1E4;
  border-radius: 1rem;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .member__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
    min-height: 37.5rem;
  }
}

.member__item::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  background-image: url(../img/team/team-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 0.75rem;
  right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .member__item::before {
    width: 3.6875rem;
    height: 3.6875rem;
  }
}

.member__item--01 {
  border-bottom: 8px solid #2D3D45;
}

.member__item--02 {
  border-bottom: 8px solid #E0AE42;
}

.member__item--03 {
  border-bottom: 8px solid #47A050;
}

.member__item--04 {
  border-bottom: 8px solid #CD6BA0;
}

.member__item--05 {
  border-bottom: 8px solid #D04E59;
}

.member__item--06 {
  border-bottom: 8px solid #BC8D27;
}

.member__item--07 {
  border-bottom: 8px solid #B95127;
}

.member__item-image {
  overflow: hidden;
}

.member__item:hover .member__item-image img {
  transform: scale(1.3);
  transition: 0.3s;
}

.member__item:hover {
  background-color: #4CBD81;
  transition: 0.3s;
}

.member__item-image img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.member__item-content {
  background-color: #F3F7F5;
  border-radius: 1rem 1rem 0.5625rem 0.5625rem;
  padding: 1.9375rem 1.3125rem 4.6875rem;
  z-index: 2;
  position: relative;
}

.member__item-title {
  font-size: 2rem;
  line-height: 1.34375;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-align: center;
}

.member__item-title--01 {
  color: #447FA2;
}

.member__item-title--02 {
  color: #ECB02F;
}

.member__item-title--03 {
  color: #47A050;
}

.member__item-title--04 {
  color: #CD6BA0;
}

.member__item-title--05 {
  color: #D04E59;
}

.member__item-title--06 {
  color: #BC8D27;
}

.member__item-title--07 {
  color: #B95127;
}

.member__item-content > ul {
  margin-top: 1.375rem;
}

.member__item-content > ul > li {
  list-style-type: disc;
  margin-left: 1.25rem;
}

.member-modal {
  position: relative;
}

.member-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.1875rem;
  height: 2.1875rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .member-modal__close {
    width: 3.6875rem;
    height: 3.6875rem;
  }
}

.member-modal__overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.member-modal__item {
  position: fixed;
  z-index: 10000;
  margin: auto;
  inset: 0;
  max-height: 90vh;
  width: 90vw;
  background-color: #fff;
  overflow: scroll;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-left-radius: 1rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .member-modal__item {
    max-width: 1120px;
    height: fit-content;
  }
}

.member-modal__body {
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .member-modal__body {
    display: grid;
    grid-template-columns: 454fr 666fr;
  }
}

.member-modal__meta {
  background-color: #F6F9F7;
}
@media screen and (min-width: 768px) {
  .member-modal__meta {
    min-height: 40rem;
  }
}

.member-modal__image {
  background-color: #DAF1E4;
  border-bottom-right-radius: 3.75rem;
}

.member-modal__image img {
  aspect-ratio: 454/377;
  object-fit: cover;
}

.member-modal__content {
  padding: 1.25rem;
}

.member__name {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .member__name {
    font-size: 2rem;
    line-height: 1.4375;
    padding-left: 1.25rem;
  }
}

.member-modal__content ul {
  padding-left: 1.25rem;
}

.member-modal__profile {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .member-modal__profile {
    padding-top: 4.25rem;
    padding-left: 2.1875rem;
  }
}

.member-modal__profile dt {
  color: rgba(45, 61, 69, 0.53);
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .member-modal__profile dt {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.member-modal__profile dd {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .member-modal__profile dd {
    margin-top: 2.5rem;
    max-width: 36.25rem;
  }
}

.member-modal__profile > ul {
  margin-top: 1.375rem;
}

.member-modal__profile ul > li {
  list-style-type: disc;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .member-modal__profile ul > li {
    font-size: 1.125rem;
    line-height: 1.2222222222;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
}

.member-modal__profile ul > li + li {
  margin-top: 0.625rem;
}

.member-modal__content > ul {
  margin-top: 1.3125rem;
}

.member-modal__content ul > li {
  list-style-type: disc;
  margin-left: 1.25rem;
}

.member__name--01 {
  color: #447FA2;
}

.member__name--02 {
  color: #ECB02F;
}

.member__name--03 {
  color: #47A050;
}

.member__name--04 {
  color: #CD6BA0;
}

.member__name--05 {
  color: #D04E59;
}

.member__name--06 {
  color: #BC8D27;
}

.member__name--07 {
  color: #B95127;
}

.member-modal__item--01 {
  border-bottom: 8px solid #2D3D45;
}

.member-modal__item--02 {
  border-bottom: 8px solid #E0AE42;
}

.member-modal__item--03 {
  border-bottom: 8px solid #47A050;
}

.member-modal__item--04 {
  border-bottom: 8px solid #CD6BA0;
}

.member-modal__item--05 {
  border-bottom: 8px solid #D04E59;
}

.member-modal__item--06 {
  border-bottom: 8px solid #BC8D27;
}

.member-modal__item--07 {
  border-bottom: 8px solid #B95127;
}

/*--------------------------------
service
--------------------------------*/
.service-top {
  padding: 5.625rem 0rem 6rem;
  background-color: rgba(218, 241, 228, 0.4);
  position: relative;
}

.service-top::after {
  content: "";
  display: block;
  width: 100%;
  height: 5.25rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/service/circle.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .service-top::after {
    width: 46.625rem;
    height: 5.25rem;
  }
}

.service-top__inner {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-top__inner {
    max-width: 980px;
  }
}

.service-top__title {
  color: #43B679;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .service-top__title {
    font-size: 2.625rem;
    line-height: 1.5238095238;
  }
}

.service-top__text {
  margin-top: 2.0625rem;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .service-top__text {
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
}

.service-theme {
  padding: 4.6875rem 0rem 2.5rem;
}

.service-theme__title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .service-theme__title {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.service-theme__image {
  margin-top: 0.875rem;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .service-theme__image {
    max-width: 1020px;
  }
}

.service-chart {
  background-color: #DAF1E4;
  padding: 3.375rem 0rem 7rem;
}

.service-chart__title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 600;
  background-color: rgba(67, 182, 121, 0.1);
  padding: 0.5625rem 1.375rem;
  width: fit-content;
  margin-inline: auto;
  border-radius: 0.491875rem;
}
@media screen and (min-width: 768px) {
  .service-chart__title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.service-chart__image-wrap {
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .service-chart__image-wrap {
    overflow: initial;
  }
}

.service-chart__image {
  margin-top: 1.3125rem;
  min-width: 800px;
}
@media screen and (min-width: 768px) {
  .service-chart__image {
    min-width: auto;
  }
}

.service-cta {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service-cta {
    margin-top: -4.5rem;
    max-width: 1171px;
    padding-left: 25px;
    padding-right: 25px;
    margin-inline: auto;
  }
}

.service-cta__inner {
  background-color: #43B679;
  border-radius: 0.9375rem;
  padding-top: 1.1875rem;
  padding-bottom: 1.1875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .service-cta__inner {
    flex-direction: row;
    justify-content: center;
  }
}

.service-cta__button {
  width: 100%;
  max-width: 420px;
}
@media screen and (min-width: 768px) {
  .service-cta__button {
    max-width: 437px;
  }
}

.service-cta__link {
  background-color: rgba(45, 61, 69, 0.25);
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.75rem 1.25rem;
  border-radius: 0.625rem;
  justify-content: space-between;
  transition: 0.3s;
}
.service-cta__link:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.service-cta__num {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
  color: rgba(255, 255, 255, 0.72);
}

.service-cta__title {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .service-cta__title {
    font-size: 2rem;
    line-height: 0.71875;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-top: 0.75rem;
  }
}

.service-cta__arrow {
  width: 1.875rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .service-cta__arrow {
    width: 2.75rem;
  }
}

.phase1 {
  padding: 5.625rem 0rem 7.1875rem;
}

@media screen and (min-width: 768px) {
  .phase1__inner {
    max-width: 993px;
  }
}

.phase1__title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.phase1__title::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url(../img/common/green-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .phase1__title::before {
    position: absolute;
    transform: translate(-100%, -50%);
    left: -1.25rem;
    top: 50%;
  }
}

.phase1__headline {
  margin-top: 0.25rem;
}

.phase1__main-title {
  font-size: 2rem;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.phase1__sub-title {
  margin-top: 2.25rem;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.phase1__description {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 0.5rem;
}

.phase1__content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .phase1__content {
    padding-right: 0.8125rem;
  }
}

.phase1__header {
  background-color: rgba(67, 182, 121, 0.1);
  padding: 1.0625rem 1.375rem;
  border-radius: 0.491875rem;
}

.phase1__label {
  font-size: 1.5rem;
  line-height: 0.75;
  letter-spacing: 0em;
  font-weight: 600;
}

.phase1__image-wrap {
  margin-top: 0.625rem;
  overflow: scroll;
}

.phase1__image {
  min-width: 600px;
}

.phase2 {
  padding: 5.625rem 0rem 7.1875rem;
  position: relative;
}

.phase2::before {
  content: "";
  display: block;
  background-image: url(../img/service/phase2-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .phase2::before {
    width: 92.9861111111%;
    border-top-right-radius: 12.25rem;
    border-bottom-right-radius: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .phase2__inner {
    max-width: 993px;
  }
}

.phase2__title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #ffffff;
}

.phase2__note {
  padding: 0.25rem 0.625rem;
  background-color: rgba(255, 255, 255, 0.35);
  position: relative;
  top: -0.625rem;
  border-radius: 0.4375rem;
  margin-left: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
}

.phase2__note::before {
  content: "";
  width: 0.9375rem;
  height: 0.625rem;
  position: absolute;
  left: 0rem;
  bottom: 0.3125rem;
  transform: translateX(-100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: rgba(255, 255, 255, 0.35);
}

.phase2__title::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url(../img/common/white-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .phase2__title::before {
    position: absolute;
    transform: translate(-100%, -50%);
    left: -1.25rem;
    top: 50%;
  }
}

.phase2__headline {
  margin-top: 0.25rem;
  color: #ffffff;
}

.phase2__main-title {
  font-size: 2rem;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #ffffff;
}

.phase2__sub-title {
  margin-top: 2.25rem;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #ffffff;
}

.phase2__description {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 0.5rem;
  color: #ffffff;
}

.phase2__content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .phase2__content {
    max-width: 726px;
    margin-inline: auto;
  }
}

.phase2__header {
  background-color: rgba(255, 255, 255, 0.35);
  padding: 1.0625rem 1.375rem;
  border-radius: 0.491875rem;
}

.phase2__label {
  font-size: 1.5rem;
  line-height: 0.75;
  letter-spacing: 0em;
  font-weight: 600;
  color: #ffffff;
}

.phase2__image-wrap {
  margin-top: 0.625rem;
  overflow: scroll;
}

.phase2__image {
  min-width: 600px;
}

.service-contact {
  padding: 4.375rem 0rem;
}

.service-contact__inner {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .service-contact__inner {
    max-width: 1170px;
    border-radius: 0.9375rem;
  }
}

.service-contact__bg {
  background-image: url(../img/service/cta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3.125rem 1.25rem;
  border-radius: 0.9375rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .service-contact__bg {
    flex-direction: row;
    justify-content: space-between;
    padding: 4.3125rem 5.0625rem;
    max-width: 100%;
  }
}

.service-contact__text {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  font-weight: 900;
  max-width: 420px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .service-contact__text {
    max-width: 100%;
    font-size: 1.9375rem;
    line-height: 1.4516129032;
    letter-spacing: 0.04em;
    font-weight: 900;
  }
}

.service-contact__button {
  flex-shrink: 0;
  margin-top: 1.25rem;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .service-contact__button {
    max-width: 100%;
    width: auto;
    margin-top: initial;
  }
}

.service-contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
  border-radius: 0.5rem;
  color: #43B679;
  background-color: #fff;
  padding: 1rem 1.875rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
  box-shadow: 0 0.9375rem 1.4375rem rgba(12, 139, 71, 0.51);
}
.service-contact__link::after {
  content: "";
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(../img/common/green-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.test {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .test {
    font-size: 1.25rem;
  }
}

.footer {
  background-color: #EDFCF4;
  border-radius: 1.875rem 1.875rem 0 0;
  padding: 2.75rem 0rem 2.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    border-radius: 4rem 4rem 0 0;
  }
}

.footer::before {
  content: "";
  display: block;
  width: 39.3125rem;
  height: 14.4375rem;
  background-image: url(../img/common/footer-bgi.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1334px;
  }
}

@media screen and (min-width: 768px) {
  .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .footer__logo {
    width: 21.625rem;
  }
}

.footer__nav {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: initial;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    display: flex;
    align-items: center;
  }
}

.footer__nav-item--contact {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-item--contact {
    margin-top: initial;
    margin-left: 1.0625rem;
  }
}

.footer__nav-link {
  color: #2F3E47;
  padding: 0.3125rem 0rem;
  display: block;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    padding: 0.625rem 1.75rem;
  }
}
.footer__nav-link:hover {
  color: #43B679;
  transition: 0.3s;
}

.footer__button {
  margin-top: 0.625rem;
  padding: 1rem 1.875rem;
  background-color: #43B679;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ffffff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__button {
    margin-top: initial;
  }
}
.footer__button:hover {
  filter: brightness(1.1);
  transition: 0.3s;
}

.footer__button::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(../img/common/white-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer__sponsor {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .footer__sponsor-logos {
    width: 13.285625rem;
  }
}

.footer__sponsor-text {
  width: 19.875rem;
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 2rem;
}

.footer__bottom {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    text-align: center;
  }
}

.footer__copyright small {
  font-size: 0.75rem;
  line-height: 1.5833333333;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: rgba(47, 62, 71, 0.4);
}

.footer__scroll-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .footer__scroll-top {
    right: 4.875rem;
    bottom: 3.75rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .layout-header {
    top: 1.875rem;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
    transition: 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .header.scroll {
    max-width: 100%;
    width: 100%;
    top: 0;
    border-radius: 0;
    transition: 0.3s;
  }
}

.header {
  height: 4.375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.125rem;
    max-width: 1320px;
    width: 96%;
    border-radius: 0.625rem;
    box-shadow: 0 0.875rem 1.68125rem rgba(0, 0, 0, 0.19);
  }
}

.header__inner {
  height: inherit;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 1rem;
    justify-content: space-between;
  }
}

.header__logo {
  max-width: 9.375rem;
  width: 100%;
  height: inherit;
  margin-right: 3.75rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 13rem;
    margin-left: initial;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 1.75rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2222222222;
  color: #2F3E47;
  transition: 0.3s;
}
.header__nav-item a:hover {
  color: #43B679;
  transition: 0.3s;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 1.125rem;
}

.header__nav-item.header__nav-item--contact a {
  padding: 1rem 1.875rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #43B679;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  transition: 0.3s;
}
.header__nav-item.header__nav-item--contact a:hover {
  filter: brightness(1.1);
  transition: 0.3s;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(../img/common/contact-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 0.3125rem;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4.375rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 70%;
  height: 2px;
  background-color: #43B679;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.4375rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.4375rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.125rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 6.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #2F3E47;
  text-align: center;
}

.header__drawer-item.header__drawer-item--contact {
  margin-top: 2.5rem;
}

.header__drawer-item.header__drawer-item--contact a {
  background-color: #43B679;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  width: 100%;
  margin-inline: auto;
  border-radius: 0.5rem;
  color: #ffffff;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(../img/common/contact-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/*# sourceMappingURL=style.css.map */
