@charset "UTF-8";
/*
 * iro code. リセットCSS 2025（本番用・コメント軽量版）
 */
/* ボックスモデル */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* マージンリセット */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* HTML基本設定 */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

/* body基本設定 */
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* リスト */
ul, ol {
  list-style: none;
}

/* 画像・メディア */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

/* 段落 */
p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* リンク */
a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* フォーム */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

/* アクセシビリティ配慮 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #333333;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
@media not all and (min-width: 768px) {
  .pc-only {
    display: none;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

html {
  font-size: 16px;
  scroll-padding-top: 6.25rem;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
    scroll-padding-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

.inner {
  width: 100%;
  max-width: 37.5rem;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1250px;
    padding-inline: 25px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 6.25rem;
  background-color: #f7f9fa;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.inner.header__inner {
  max-width: 120rem;
  height: 100%;
  padding-inline: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.header__logo {
  width: clamp(180px, 16vw, 271px);
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__logo a {
  display: block;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__right {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__right {
    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;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
}

@media screen and (min-width: 1200px) {
  .header__nav {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
}

.header__nav-items {
  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: clamp(12px, 1.2vw, 28px);
}

.header__nav-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__nav-link {
  display: block;
  color: #333333;
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

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

.header__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(4px, 0.6vw, 8px);
  color: #333333;
  white-space: nowrap;
  margin-left: clamp(12px, 1.5vw, 24px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .header__tel {
    pointer-events: none;
    cursor: default;
  }
}

.header__tel img {
  display: block;
  width: clamp(18px, 1.4vw, 24px);
  height: clamp(18px, 1.4vw, 24px);
}

.header__tel-number {
  font-family: "EB Garamond", serif;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 400;
  line-height: 1;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-left: clamp(16px, 2vw, 24px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__button {
  min-width: 8.75rem;
  min-height: 3rem;
  padding-inline: 1rem;
  border-radius: 62.4375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__button img {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__button:hover {
  opacity: 0.8;
}

.header__button.header__button--mail {
  background-color: #2b9c63;
  color: #f7f9fa;
}

.header__button.header__button--line {
  background-color: transparent;
  color: #2b9c63;
  border: 1px solid #2b9c63;
}

.sp-nav {
  position: fixed;
  top: 6.25rem;
  left: 0;
  width: 100%;
  height: calc(100dvh - 6.25rem);
  padding: 1.5rem 1.25rem 2.5rem;
  background-color: rgba(247, 249, 250, 0.98);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-0.375rem);
          transform: translateY(-0.375rem);
  -webkit-transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.6s, -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.6s, -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.6s;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.6s, -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1200px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.sp-nav__inner {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(0.375rem);
          transform: translateY(0.375rem);
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.45s ease, -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-nav.is-open .sp-nav__inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.sp-nav__items {
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.sp-nav__item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}

.sp-nav__link {
  display: block;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.sp-nav__content {
  margin-top: 2rem;
}

.sp-nav__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #333333;
}

.sp-nav__tel img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.sp-nav__btns {
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sp-nav__btn {
  min-height: 3.25rem;
  padding-inline: 1rem;
  border-radius: 62.4375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.sp-nav__btn img {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.sp-nav__btn.sp-nav__btn--mail {
  background-color: #2b9c63;
  color: #f7f9fa;
}

.sp-nav__btn.sp-nav__btn--line {
  border: 1px solid #2b9c63;
  background-color: transparent;
  color: #2b9c63;
}

.hamburger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  gap: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

.hamburger__line {
  width: 1.5rem;
  height: 1px;
  background-color: #333333;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(0.375rem) rotate(45deg);
          transform: translateY(0.375rem) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-0.375rem) rotate(-45deg);
          transform: translateY(-0.375rem) rotate(-45deg);
}

.fv {
  overflow: hidden;
  margin-top: 6.25rem;
}

.fv__inner {
  position: relative;
  max-width: 75rem;
}

.fv__image {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 375/460;
}
@media screen and (min-width: 768px) {
  .fv__image {
    aspect-ratio: 1920/900;
  }
}

.fv__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 58% center;
     object-position: 58% center;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    -o-object-position: center;
       object-position: center;
  }
}

.fv__catch {
  position: absolute;
  top: 40%;
  left: 3%;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #f7f9fa;
}
@media screen and (min-width: 768px) {
  .fv__catch {
    top: 36%;
    left: 3%;
  }
}

.fv__title {
  max-width: 37.5rem;
  font-size: clamp(1.25rem, 5.3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .fv__title {
    max-width: none;
    font-size: clamp(1.625rem, 3.8vw, 2.5rem);
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1200px) {
  .fv__title {
    font-size: clamp(2rem, 3.8vw, 3.5rem);
  }
}

.fv__lead {
  margin-top: 1rem;
  max-width: 37.5rem;
  font-size: clamp(0.75rem, 3vw, 1rem);
  font-weight: 400;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .fv__lead {
    max-width: 47.5rem;
    margin-top: 0.625rem;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1200px) {
  .fv__lead {
    max-width: 75rem;
    margin-top: 2rem;
    font-size: clamp(1.125rem, 1.4vw, 1.5rem);
    line-height: 2;
  }
}

.js-fv-title,
.js-fv-lead {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-fv-image {
  opacity: 0;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  will-change: transform, opacity;
}

.concept {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .concept {
    margin-top: 6.25rem;
  }
}

.concept__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .concept__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6.25rem;
    margin-top: 4.125rem;
  }
}

.concept__image {
  width: 100%;
  aspect-ratio: 345/412;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .concept__image {
    width: 32.5rem;
    aspect-ratio: 500/676;
  }
}

.concept__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.concept__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept__content {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .concept__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 37.5rem;
  }
}

.concept__lead {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: #333333;
}
@media screen and (min-width: 1200px) {
  .concept__lead {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.concept__text {
  margin-top: 1.875rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (min-width: 1200px) {
  .concept__text {
    margin-top: 3.75rem;
    line-height: 1.875;
  }
}

.concept__message {
  margin-top: 1.5625rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: #2b9c63;
  text-decoration: underline;
  text-decoration-color: #2b9c63;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}
@media screen and (min-width: 1200px) {
  .concept__message {
    margin-top: 3.5rem;
  }
}

.concept__text.concept__text--last {
  margin-top: 2.5rem;
}

.concept__btn {
  margin-top: 2rem;
}
@media screen and (min-width: 1200px) {
  .concept__btn {
    margin-top: 4.0625rem;
  }
}

.js-concept-lead,
.js-concept-text,
.js-concept-message,
.js-concept-btn {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-concept-image {
  opacity: 0;
  -webkit-transform: translateY(1.5rem) scale(1.02);
          transform: translateY(1.5rem) scale(1.02);
  will-change: transform, opacity;
}

.section-title {
  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: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .section-title {
    gap: 2.125rem;
  }
}

.section-title__en {
  color: #2b9c63;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 1200px) {
  .section-title__en {
    font-size: 3.75rem;
  }
}

.section-title__ja {
  color: #333333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
}
@media screen and (min-width: 1200px) {
  .section-title__ja {
    font-size: 1.3125rem;
    line-height: 1.5;
  }
}

.section-title__en.section-title__en--white,
.section-title__ja.section-title__ja--white {
  color: #f7f9fa;
}
@media screen and (min-width: 1200px) {
  .section-title__en.section-title__en--white,
  .section-title__ja.section-title__ja--white {
    text-align: left;
  }
}

.js-section-title {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  will-change: transform, opacity;
}

.merit {
  position: relative;
  padding-block: 4rem;
  margin-top: 2.5rem;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .merit {
    padding-block: 6.25rem 10rem;
    margin-top: 8.125rem;
  }
}

.merit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.merit__bg picture,
.merit__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.merit__inner {
  position: relative;
  z-index: 1;
}

.merit__head {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .merit__head {
    margin-top: 3.5rem;
  }
}

.merit__lead {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6666666667;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .merit__lead {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.merit__text {
  margin-top: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .merit__text {
    margin-top: 2rem;
    line-height: 1.875;
  }
}

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

.merit__sub-title span {
  margin-top: 2.5rem;
  color: #2b9c63;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #2b9c63;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}
@media screen and (min-width: 1200px) {
  .merit__sub-title span {
    margin-top: 3.5rem;
    text-align: center;
  }
}

.merit__cards {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
  justify-items: center;
}
@media screen and (min-width: 1200px) {
  .merit__cards {
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 75rem;
    justify-items: stretch;
  }
}

.merit__card {
  width: 100%;
  max-width: 37.5rem;
  background-color: #f7f9fa;
}
@media screen and (min-width: 1200px) {
  .merit__card {
    max-width: none;
  }
}

.merit__image {
  aspect-ratio: 280/190;
}

.merit__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.merit__body {
  padding-block: 1.25rem 1.875rem;
  padding-inline: 1.1875rem;
  text-align: center;
}

.merit__number {
  color: #2b9c63;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 1200px) {
  .merit__number {
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}

.merit__title {
  margin-top: 0.75rem;
  color: #2b9c63;
  font-weight: 400;
  line-height: 1.1428571429;
  display: inline-block;
  border-bottom: 0.0625rem solid #2b9c63;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .merit__title {
    margin-top: 2rem;
    line-height: 1.1428571429;
    font-size: 1.75rem;
  }
}

.merit__catch {
  margin-top: 2.0625rem;
  font-size: 1.125rem;
  line-height: 1.7142857143;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .merit__catch {
    font-size: 1.3125rem;
    text-align: left;
  }
}

.merit__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  margin-top: 1.125rem;
  text-align: left;
}

.merit__foot {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .merit__foot {
    margin-top: 4rem;
  }
}

.merit__list-title {
  color: #2b9c63;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
}
@media screen and (min-width: 1200px) {
  .merit__list-title {
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
}

.merit__list {
  margin-top: 1.5rem;
  display: inline-block;
  max-width: 45rem;
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .merit__list {
    max-width: 45rem;
    display: inline-block;
  }
}

.merit__list-item {
  position: relative;
  padding-left: 1.5rem;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .merit__list-item {
    font-size: 1.3125rem;
    line-height: 2.2857142857;
  }
}

.merit__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #2b9c63;
}
@media screen and (min-width: 1200px) {
  .merit__list-item::before {
    top: 0.95em;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.merit__list-item + .merit__list-item {
  margin-top: 0.75rem;
}

.merit__btn {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .merit__btn {
    margin-top: 5.125rem;
  }
}

.js-merit-head,
.js-merit-lead,
.js-merit-text,
.js-merit-sub-title,
.js-merit-foot,
.js-merit-list,
.js-merit-btn {
  opacity: 1;
  -webkit-transform: none;
    transform: none;
}

.js-merit-card {
  opacity: 1;
  -webkit-transform: none;
    transform: none;
}

.order-system {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .order-system {
    margin-top: 6.875rem;
  }
}

.order-system.is-hidden {
  display: none;
}

.order-system__lead {
  margin-top: 2rem;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .order-system__lead {
    margin-top: 3rem;
    font-size: 1.875rem;
    line-height: 2.2666666667;
  }
}

.order-system__text {
  margin-top: 1.25rem;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .order-system__text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.order-system__arrow {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (min-width: 1200px) {
  .order-system__arrow {
    margin-top: 2rem;
    gap: 1.75rem;
  }
}

.order-system__arrow-item {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 2rem;
}
@media screen and (min-width: 1200px) {
  .order-system__arrow-item {
    width: 1.375rem;
    height: 2.5rem;
  }
}

.order-system__arrow-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.375rem;
  height: 1.125rem;
  background-color: #2b9c63;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .order-system__arrow-item::before {
    width: 0.5rem;
    height: 1.375rem;
  }
}

.order-system__arrow-item::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  border-top: 0.75rem solid #2b9c63;
  border-right: 0.5625rem solid transparent;
  border-left: 0.5625rem solid transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .order-system__arrow-item::after {
    border-top-width: 0.875rem;
    border-right-width: 0.6875rem;
    border-left-width: 0.6875rem;
  }
}

.order-system__banner {
  display: block;
  width: 100%;
  max-width: 25.75rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .order-system__banner {
    max-width: 38.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .order-system__banner {
    max-width: 46.875rem;
    margin-top: 2.5rem;
  }
}

.order-system__image {
  width: 100%;
  aspect-ratio: 750/517;
  overflow: hidden;
}

.order-system__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-order-system,
.js-order-lead,
.js-order-text,
.js-order-arrow,
.js-order-arrow-item,
.js-order-banner {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-order-image {
  opacity: 0;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  will-change: transform, opacity;
}

.flow {
  position: relative;
  margin-top: 2.5rem;
  padding-block: 4rem;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .flow {
    margin-top: 7.5rem;
    padding-block: 6.25rem 9.375rem;
  }
}

.flow__inner {
  position: relative;
  z-index: 1;
}

.flow__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.flow__bg picture,
.flow__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow__lead {
  margin-top: 2rem;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .flow__lead {
    margin-top: 3rem;
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.flow__list {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .flow__list {
    margin-top: 3.5rem;
    gap: 1.25rem;
    max-width: 1200px;
  }
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .flow__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 14rem 0.625rem 1fr;
    grid-template-columns: 14rem 1fr;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    min-height: 10rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.flow__step {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 7.5rem;
  color: #f7f9fa;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .flow__step {
    min-height: 100%;
    padding-block: 4.3125rem 5.5625rem;
    padding-inline: 3.4375rem;
  }
}

.flow__step.flow__step--01 {
  background-color: #2eca7b;
}

.flow__step.flow__step--02 {
  background-color: #2b9c63;
}

.flow__step.flow__step--03 {
  background-color: #1d6d45;
}

.flow__step-label {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 1200px) {
  .flow__step-label {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.flow__step-number {
  margin-top: 0.5rem;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 1200px) {
  .flow__step-number {
    margin-top: 0.75rem;
    font-size: 6.25rem;
  }
}

.flow__content {
  padding: 1.5rem 1.25rem;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .flow__content {
    padding: 2rem 2rem;
  }
}

.flow__title {
  color: #2b9c63;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
}
@media screen and (min-width: 1200px) {
  .flow__title {
    font-size: 1.875rem;
    line-height: 2;
  }
}

.flow__text {
  margin-top: 0.75rem;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 1200px) {
  .flow__text {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.flow .contact-links {
  margin-top: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .flow .contact-links {
    margin-top: 1.5rem;
    -ms-grid-columns: 15rem 17.875rem;
    grid-template-columns: 15rem 17.875rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.js-flow-lead {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-flow-item {
  opacity: 0;
  -webkit-transform: translateY(1.75rem);
          transform: translateY(1.75rem);
  will-change: transform, opacity;
}

.js-flow-step {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  will-change: transform, opacity;
}

.js-flow-content {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  will-change: transform, opacity;
}

.medical {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .medical {
    margin-top: 8.75rem;
  }
}

.medical__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .medical__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6.25rem;
  }
}

.medical__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
}
@media screen and (min-width: 1200px) {
  .medical__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 31.25rem;
    width: 100%;
    gap: 6.25rem;
  }
}

.medical__image {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1200px) {
  .medical__image {
    aspect-ratio: 600/450;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 1.5rem;
  }
}

.medical__image img {
  width: 100%;
  height: auto;
  display: block;
}

.medical__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  font-size: 1.5rem;
  line-height: 1.5;
}

.medical__lead {
  margin-top: 1.5rem;
  font-weight: 700;
}

.medical__description {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.875;
}

.js-medical-lead,
.js-medical-description {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-medical-image {
  opacity: 0;
  -webkit-transform: translateY(1.5rem) scale(1.03);
          transform: translateY(1.5rem) scale(1.03);
  will-change: transform, opacity;
}

.training {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .training {
    margin-top: 5rem;
  }
}

.training__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .training__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6.25rem;
  }
}

.training__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
}
@media screen and (min-width: 1200px) {
  .training__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 31.25rem;
    width: 100%;
    gap: 6.25rem;
  }
}

.training__image {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1200px) {
  .training__image {
    aspect-ratio: 600/450;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 1.5rem;
  }
}

.training__image img {
  width: 100%;
  height: auto;
  display: block;
}

.training__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.training__lead {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}

.training__description {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.875;
}

.js-training-lead,
.js-training-description {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-training-image {
  opacity: 0;
  -webkit-transform: translateY(1.5rem) scale(1.03);
          transform: translateY(1.5rem) scale(1.03);
  will-change: transform, opacity;
}

.company {
  padding-block: 4rem;
  background-image: url(../images/green_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .company {
    padding-block: 7rem;
  }
}

@media screen and (min-width: 768px) {
  .company .inner {
    max-width: 61.25rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .company .inner {
    max-width: 1250px;
    padding-inline: 25px;
  }
}

.company__title {
  text-align: center;
}

.company__table-wrap {
  margin-top: 3rem;
}
@media screen and (min-width: 1200px) {
  .company__table-wrap {
    margin-top: 4.5rem;
  }
}

.company__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.company__row {
  border-top: 1px solid rgba(51, 51, 51, 0.3);
}

.company__row:last-child {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.company__head,
.company__data {
  padding-block: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
@media screen and (min-width: 1200px) {
  .company__head,
  .company__data {
    padding-block: 1.75rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.company__head {
  width: 6.875rem;
  font-weight: 400;
}

.company__data {
  padding-left: 1rem;
}

@media screen and (min-width: 1200px) {
  .company__head {
    width: 27.5%;
    padding-left: 4.5rem;
  }
  .company__data {
    padding-inline: 0 4.5rem;
  }
}
.js-company-table-wrap {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-company-row {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  will-change: transform, opacity;
}

.contact {
  padding-block: 5rem;
  background-color: #f7f9fa;
}
@media screen and (min-width: 1200px) {
  .contact {
    padding-block: 7.1875rem;
  }
}

.contact__lead {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.5rem;
  margin-inline: auto;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__lead {
    line-height: 1.875;
    max-width: 46.875rem;
  }
}

.contact__form {
  padding: 1.5rem 1rem 2.5rem;
  border: 1px solid #cccccc;
  background: #fff;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .contact__form {
    padding: 2.5rem 6.25rem 4.1875rem;
  }
}

.contact__note {
  margin-bottom: 1.25rem;
  color: #b10000;
  text-align: right;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}

.contact__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.contact__table tbody tr {
  display: block;
  padding-block: 1.25rem;
  border-top: 1px solid #cccccc;
}
@media screen and (min-width: 1200px) {
  .contact__table tbody tr {
    display: table-row;
    padding-block: 0;
  }
}

.contact__table tbody tr:first-child {
  border-top: none;
}

.contact__table th {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  font-weight: 400;
  color: #333333;
}
@media screen and (min-width: 1200px) {
  .contact__table th {
    display: table-cell;
    width: 24%;
    padding-block: 2.1875rem;
    padding-left: 1.875rem;
  }
}

.contact__table td {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
}
@media screen and (min-width: 1200px) {
  .contact__table td {
    display: table-cell;
    margin-top: 0;
    padding-block: 1.25rem;
    vertical-align: middle;
  }
}

@media screen and (min-width: 1200px) {
  .contact__table tbody tr:last-child td {
    padding-block: 1.25rem;
  }
}

.required {
  color: #b10000;
}

.radio-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-btn + .radio-btn {
  margin-top: 0.75rem;
}
@media screen and (min-width: 1200px) {
  .radio-btn + .radio-btn {
    margin-top: 0;
    margin-left: 2rem;
  }
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #dedede;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: #fff;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

input[type=radio]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #565656;
  -webkit-transition: -webkit-transform 0.12s ease;
  transition: -webkit-transform 0.12s ease;
  transition: transform 0.12s ease;
  transition: transform 0.12s ease, -webkit-transform 0.12s ease;
}

input[type=radio]:checked::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

input[type=radio]:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(86, 86, 86, 0.12);
          box-shadow: 0 0 0 3px rgba(86, 86, 86, 0.12);
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  background: #fff;
  border: 1px solid #cccccc;
  font-size: 1rem;
}

textarea {
  min-height: 11.25rem;
  resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bfbfbf;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bfbfbf;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bfbfbf;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #bfbfbf;
}

input::placeholder,
textarea::placeholder {
  color: #bfbfbf;
}

.contact__actions {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .contact__actions {
    margin-top: 3.75rem;
  }
}

.contact__submit {
  min-width: 12.5rem;
  padding: 1.25rem 2.5rem;
  border: none;
  cursor: pointer;
  background: #2b9c63;
  color: #f7f9fa;
}

@media not all and (min-width: 1200px) {
  .contact .wpcf7 form .wpcf7-submit {
    display: block;
    margin-inline: auto;
  }
}

.js-contact-lead,
.js-contact-form,
.js-contact-note,
.js-contact-actions {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-contact-row {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  will-change: transform, opacity;
}

.privacy {
  padding-bottom: 9.6875rem;
  background-color: #f7f9fa;
}

.privacy__box {
  margin-top: 4.125rem;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.125rem;
  grid-template-columns: 1fr 1.125rem;
  border: 1px solid #cbcccd;
  background-color: #fff;
  max-height: 18.125rem;
}

.privacy__scroll {
  max-height: 18.125rem;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.privacy__body {
  padding: 2.125rem 2.75rem 2.25rem;
}

.privacy__body p {
  font-size: 1rem;
  line-height: 2;
  color: #4a4a4a;
}

.privacy__body h3 {
  margin-top: 3.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #4a4a4a;
}

.privacy__note {
  margin-top: 1.5rem;
}

.privacy__bar {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 1px solid #d9d9d9;
  background-color: #f3f3f3;
}

.privacy__arrow {
  position: relative;
  width: 100%;
  height: 1.125rem;
  border: 0;
  background-color: #f3f3f3;
  cursor: pointer;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.privacy__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.privacy__arrow--up::before {
  -webkit-transform: translate(-50%, -30%) rotate(-135deg);
          transform: translate(-50%, -30%) rotate(-135deg);
}

.privacy__arrow--down::before {
  -webkit-transform: translate(-50%, -70%) rotate(45deg);
          transform: translate(-50%, -70%) rotate(45deg);
}

.privacy__track {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f3f3f3;
}

.privacy__thumb {
  position: absolute;
  top: 0;
  left: 0.125rem;
  width: calc(100% - 0.25rem);
  min-height: 2.25rem;
  background-color: #cfcfcf;
}

@media not all and (min-width: 768px) {
  .privacy__box {
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 1rem;
    grid-template-columns: 1fr 1rem;
    max-height: 15rem;
  }
  .privacy__scroll {
    max-height: 15rem;
  }
  .privacy__body {
    padding: 1.5rem 1.25rem 1.5rem;
  }
  .privacy__body p,
  .privacy__body h3 {
    font-size: 0.875rem;
  }
}
.js-privacy-box {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  will-change: transform, opacity;
}

.js-privacy-body,
.js-privacy-bar {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  will-change: transform, opacity;
}

.contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .contact-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
    width: 37.5rem;
  }
}

.contact-links__button {
  padding-block: 2.5rem;
  padding-inline: 5.3125rem;
  border-radius: 0.5rem;
  background-color: #2b9c63;
  color: #f7f9fa;
  font-size: 1.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#2B9C63), to(#3DE08E));
  background: linear-gradient(90deg, #2B9C63 0%, #3DE08E 100%);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .contact-links__button {
    font-size: 1.125rem;
    max-width: 17.5rem;
    padding-inline: 5.3125rem;
    width: 100%;
  }
}

.service {
  background-image: url(../images/service_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #f7f7f7;
  padding-block: 4rem;
}
@media screen and (min-width: 1200px) {
  .service {
    padding-block: 7.75rem;
  }
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .service__item {
    gap: clamp(2.25rem, 6vw, 7.1875rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.service__content {
  max-width: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .service__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 clamp(26.25rem, 33vw, 35rem);
            flex: 0 1 clamp(26.25rem, 33vw, 35rem);
    max-width: clamp(26.25rem, 33vw, 35rem);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.service__images {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, 1.2vw, 1.25rem);
}
@media screen and (min-width: 1200px) {
  .service__images {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    max-width: clamp(32.5rem, 46vw, 52.5rem);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.service__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: block;
  aspect-ratio: 475/600;
  overflow: hidden;
}

.service__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__lead {
  color: #f7f9fa;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .service__lead {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.service__texts {
  color: #f7f9fa;
  line-height: 1.875;
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
  margin-top: 1.25rem;
}

.training-gallery {
  margin-top: 2rem;
}
@media screen and (min-width: 1200px) {
  .training-gallery {
    margin-top: 10rem;
  }
}

.training-gallery__slider {
  width: 100%;
}

.training-gallery__image {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .training-gallery__image {
    max-width: 24.125rem;
    width: 100%;
  }
}

.splide__track {
  overflow: hidden;
}

.splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}

.splide__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.training-gallery-card__image {
  width: 100%;
  aspect-ratio: 174/116;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .training-gallery-card__image {
    aspect-ratio: 386/320;
  }
}

.training-gallery-card__image picture,
.training-gallery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  padding-block: 3.5rem 4.5rem;
  background: url("../images/green_bg.jpg") center/cover no-repeat;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 4.6875rem 5.3125rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.footer__nav {
  width: 100%;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media screen and (min-width: 1200px) {
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
    row-gap: 0.75rem;
  }
}

.footer__nav-item {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .footer__nav-item {
    width: auto;
  }
}

.footer__nav-link {
  display: inline-block;
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1200px) {
  .footer__nav-link {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

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

.footer__logo {
  margin-top: 2.5rem;
  width: min(100%, 15rem);
}
@media screen and (min-width: 1200px) {
  .footer__logo {
    margin-top: 3rem;
    width: 19.75rem;
  }
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__address {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 2;
  font-style: normal;
}
@media screen and (min-width: 1200px) {
  .footer__address {
    margin-top: 1.75rem;
    font-size: 1rem;
  }
}

.footer__address a {
  color: #333333;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__address a {
    pointer-events: none;
    cursor: default;
  }
}

.footer__line {
  margin-top: 1.75rem;
  width: min(100%, 16.25rem);
}
@media screen and (min-width: 1200px) {
  .footer__line {
    margin-top: 1.75rem;
    width: 17.875rem;
  }
}

.footer__line img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__copyright {
  margin-top: 1.375rem;
  font-size: 0.6875rem;
  line-height: 1.6;
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

.floating-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
  background-color: #f7f9fa;
  border-top: 1px solid rgba(51, 51, 51, 0.08);
  pointer-events: none;
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
  -webkit-transition: opacity 0.3s, visibility 0s linear 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0s linear 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0s linear 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0s linear 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 1200px) {
  .floating-contact {
    display: none;
  }
}

.floating-contact.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.floating-contact__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  width: 50%;
  min-height: 3rem;
  padding-inline: 0.75rem;
  border-radius: 62.4375rem;
  text-align: center;
  text-decoration: none;
}

.floating-contact__link--tel {
  border: 1px solid #333333;
  background-color: transparent;
  color: #333333;
}

.floating-contact__link--line {
  border: 1px solid #2b9c63;
  background-color: transparent;
  color: #2b9c63;
}

.floating-contact__icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.floating-contact__text {
  font-size: 0.75rem;
  font-weight: 400;
  color: inherit;
  line-height: 1.4;
}

.floating-contact__text--line {
  color: #2b9c63;
}

/* 404 エラーページ */
.error404 {
  padding-block: 5rem;
  background-color: #f7f9fa;
  min-height: 70vh;
  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 (min-width: 1200px) {
  .error404 {
    padding-block: 7.1875rem;
    
  }
}

.error404__inner {
  width: 100%;
}

.error404__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .error404__content {
    gap: 3.75rem;
  }
}

.error404__number {
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 700;
  color: rgba(51, 51, 51, 0.08);
  line-height: 1;
  font-family: "EB Garamond", serif;
}

.error404__content .section-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 1200px) {
  .error404__content .section-title {
    gap: 1.5rem;
  }
}

.error404__content .section-title__en {
  color: #2b9c63;
  font-size: clamp(36px, 8vw, 60px);
}

.error404__content .section-title__ja {
  color: #333333;
  font-size: clamp(14px, 3vw, 20px);
}

.error404__text {
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 46.875rem;
}
@media screen and (min-width: 1200px) {
  .error404__text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.error404__content .contact-links {
  margin-top: 1rem;
}
@media screen and (min-width: 1200px) {
  .error404__content .contact-links {
    margin-top: 1.5rem;
  }
}

.error404__content .contact-links__button {
  background: -webkit-gradient(linear, left top, right top, from(#2B9C63), to(#3DE08E));
  background: linear-gradient(90deg, #2B9C63 0%, #3DE08E 100%);
  color: #f7f9fa;
  font-weight: 400;
  padding-block: 2rem;
  padding-inline: 4rem;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .error404__content .contact-links__button:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 16px rgba(43, 156, 99, 0.3);
            box-shadow: 0 4px 16px rgba(43, 156, 99, 0.3);
  }
}

/* お問い合わせの追加 */
/*確認画面全体を隠しておく*/
.confirm-area {
  display: none;
}
/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output{
  display: none;
}

:root {
  --m-color: #2b9c63;
}

.thanks-page {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  background-color: #f7f9fa;
}
@media screen and (min-width: 1200px) {
  .thanks-page {
    padding-top: 10rem;
    padding-bottom: 7rem;
  }
}

.thanks-page__container {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.thanks-page__title {
  color: var(--m-color);
  font-family: "EB Garamond", serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
}

.thanks-page__title-line {
  display: block;
  white-space: nowrap;
}

@media not all and (min-width: 768px) {
  .thanks-page__title {
    font-size: 1.5rem;
    line-height: 1.55;
  }
}

.thanks-page__text {
  margin-top: 1.75rem;
  color: var(--m-color);
  font-size: 1rem;
  line-height: 2;
}

.thanks-page__btn {
  margin-top: 2.5rem;
}

.btn--thanks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  min-height: 3.5rem;
  padding-inline: 1.5rem;
  border: 1px solid var(--m-color);
  border-radius: 9999px;
  color: var(--m-color);
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .btn--thanks:hover {
    background-color: var(--m-color);
    color: #f7f9fa;
  }
}