@charset "UTF-8";
/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */
/* カラー */
:root {
  --color-font-gray: #f3f3f2;
  --color-font-blue: #64bcfc;
  --color-font-black: #333333;
  --color-font-white: #ffffff;
  --color-bg-gray: #f3f3f2;
  --color-bg-blue: #64bcfc;
  --color-bg-black: #333333;
  --color-bg-white: #ffffff;
  --color-white: #ffffff;
  --color-green: #34642b;
  --color-gray: #6d6d6d;
  --color-orange: #fe843a;
  --color-lite-green: #e1fce5;
  --color-gradient: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
}

/* コンテナ幅 */
:root {
  --width-content: 1100px;
}

/* フォント */
:root {
  --font-family-gothic: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Noto Serif JP", serif;
  --font-family-en: "Montserrat", sans-serif;
}

/* -------------------------
全体共通のスタイル
------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-gothic);
  font-size: 16px;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.br-sp {
  display: none;
}
@media screen and (max-width: 840px) {
  .br-sp {
    display: block;
  }
}
main {
  overflow: hidden;
}
/* トップページ以外のページではヘッダーぶんずらす */
main:not(.top-page) {
  padding-top: clamp(
    70px,
    calc(70px + (109 - 70) * ((100vw - 390px) / (1440 - 390))),
    109px
  );
}

/* -------------------------
コンテナの幅、余白
------------------------- */
.l-container {
  margin: 0 auto;
  max-width: var(--width-content);
}
@media screen and (max-width: 840px) {
  .l-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* -------------------------
ぱんくず
------------------------- */
.breadcrumb span {
  color: #4c4c4c;
  letter-spacing: 0.05em;
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .breadcrumb span {
    font-size: 14px;
  }
}

/* -------------------------
タイトル
------------------------- */
.title__wrap {
  position: relative;
  text-align: center;
}
.title__wrap--problem {
  margin-bottom: 48px;
}
.title__wrap--feature {
  margin-bottom: 98px;
}
@media screen and (max-width: 840px) {
  .title__wrap--feature {
    margin-bottom: 35px;
  }
}
.title__wrap--merit {
  margin-bottom: 35px;
}
.title__wrap--supervision {
  margin-bottom: 33px;
}
.title__wrap--supervision .title__bg {
  bottom: -4px;
}
.title__wrap--feature .title__bg {
  bottom: 52px;
}

.title__wrap--merit .title__bg {
  bottom: 3px;
}

.title__bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 19px;
  font-family: var(--font-family-en);
  font-size: 155px;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .title__bg {
    font-size: 120px;
  }
}
@media screen and (max-width: 840px) {
  .title__bg {
    font-size: 80px;
  }
}
.title__bg--white {
  color: var(--color-white);
  opacity: 0.2;
}
.title__bg--green {
  background: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
}
.title__lead {
  margin-top: 16px;
  font-size: clamp(15px, 0.196vw + 14.24px, 18px);
  text-align: center;
}
.title__lead--white {
  color: var(--color-white);
}

.c-title__level2 {
  font-size: clamp(25px, 0.719vw + 22.2px, 36px);
  line-height: 1.58;
  font-weight: bold;
  position: relative;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 840px) {
  .c-title__level2 {
    line-height: 1.5;
  }
}
.c-title__level2--white {
  color: var(--color-white);
}

.c-title__level2--gradation {
  background: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-title__level2--shadow {
  text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.7);
}

/* -------------------------
ヘッダー
------------------------- */
.header {
  height: 78px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
}
/* @media screen and (max-width: 840px) {
  .header {
    height: 78px;
  }
} */
.header.active .header__inner {
  background-color: var(--color-lite-green);
}
.header.scroll {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header.scroll .header__item:not(:first-child) {
  color: #333;
}
.header.scroll .header__inner {
  height: 48px;
}

/* @media screen and (max-width: 840px) {
  .header.scroll .header__inner {
    height: 48px;
  }
} */

.header .header-block {
  height: 30px;
  width: 100%;
  background-color: #f3f3f3;
  padding: 0 20px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-block__logo {
  max-width: 73px;
}
.header .header-block__link {
  font-size: 12px;
  font-weight: 500;
}
.header .header-block__link .icon {
  padding-left: 5px;
}
.header__inner {
  display: flex;
  transform: initial;
  max-width: inherit;
  margin: 0 auto;
  padding: 0 70px 0 40px;
  height: inherit;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1440px) {
  .header__inner {
    max-width: 1440px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .header__inner {
    height: 48px;
    display: flex;
    padding: 0 20px;
    width: 100%;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 48px;
    display: flex;
    padding: 0 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
.header__list {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 46px;
  color: var(--color-font-black);
  background-color: transparent;
  height: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .header__list {
    flex-direction: column;
    color: var(--color-font-white);
    text-align: center;
    background-color: var(--color-lite-green);
    padding: 30px 0;
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .header__list {
    flex-direction: column;
    color: var(--color-font-white);
    text-align: center;
    background-color: var(--color-lite-green);
    padding: 30px 0;
    height: 100vh;
  }
}
.header__item {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--color-gray);
  position: relative;
}
.header__item:hover {
  color: #1f8b0b;
  font-weight: bold;
}
.header__item:hover::after {
  content: "";
  width: 100%;
  display: block;
  height: 2px;
  position: absolute;
  bottom: -5px;
  background-color: #1f8b0b;
  left: 0;
  animation: border_anim 0.2s linear forwards;
}
@media screen and (max-width: 1280px) {
  .header__item:hover::after {
    display: none;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.header-logo {
  max-width: 133px;
}
@media screen and (max-width: 840px) {
  .header-logo {
    max-width: 77px;
  }
}

.header-menu {
  justify-content: space-between;
  padding-top: inherit;
  padding-bottom: inherit;
  position: inherit;
  height: inherit;
}
@media screen and (max-width: 1280px) {
  .header-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
.header-menu__sp-cta {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header-menu__sp-cta {
    display: block;
    background-color: var(--color-orange);
    border-radius: 100vw;
    display: block;
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    padding: 7px 0;
    position: relative;
  }
  .header-menu__sp-cta .text {
    font-size: 15px;
    font-weight: 900;
    color: var(--color-white);
    font-family: var(--font-family-mincho);
    display: inline-block;
    margin-left: -10px;
  }
  .header-menu__sp-cta .small {
    font-size: 10px;
    font-weight: bold;
  }
  .header-menu__sp-cta::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/fv-button-arrow.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    transition: 500ms;
  }
}

.header__button {
  height: 100%;
  display: flex;
  width: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-bg-black);
}
@media screen and (min-width: 1025px) {
  .header__button {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    width: 60px;
  }
}

.header-menu__inner {
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  height: inherit;
}
@media only screen and (min-width: 841px) and (max-width: 1280px) {
  .header-menu__inner {
    display: none;
    width: 100%;
    position: fixed;
    top: 78px;
    left: 0;
    height: calc(100% - 50px);
    animation-name: fade;
    animation-duration: 1s;
    animation-iteration-count: 1;
  }
  .header-menu__inner.active {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  .header-menu__inner {
    display: none;
    width: 100%;
    position: fixed;
    top: 78px;
    left: 0;
    height: calc(100% - 50px);
    animation-name: fade;
    animation-duration: 1s;
    animation-iteration-count: 1;
  }
  .header-menu__inner.active {
    display: block;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-button__header {
  flex-shrink: 0;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1280px) {
  .hamburger {
    display: block;
    width: 25px;
    height: 25px;
    z-index: 1;
    text-align: center;
  }
  .hamburger.active span {
    right: -5px;
  }
  .hamburger span {
    display: block;
    background-color: var(--color-green);
    width: 25px;
    height: 2px;
    transition:
      transform 0.3s,
      opacity 0.3s;
    will-change: transform, opacity;
    transform-origin: 0 0;
    position: absolute;
  }
  .hamburger span.active {
    width: 100%;
    height: 2px;
    transition: opacity 0.3s;
    cursor: pointer;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger span:nth-child(3) {
    bottom: -1px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 34px;
    left: 1px;
    top: 0;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    bottom: 0;
    width: 33px;
    left: 0;
    transform: rotate(-45deg);
  }
}

.header__button {
  width: 25px;
  height: 25px;
  position: relative;
}
.header__button span {
  position: absolute;
}

/* -------------------------
ファーストビュー
------------------------- */
.first-view {
  background-image: url(../img/fv-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 760px; */
  height: 743px;
  overflow: hidden;
  /* padding-top: 50px; */
}
@media screen and (max-width: 1160px) {
  .first-view {
    height: auto;
    background-image: url(../img/fv-bg-sp.webp);
    padding-top: 0;
  }
}
.first-view__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: inherit;
  padding-top: 109px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
@media screen and (max-width: 1160px) {
  .first-view__inner {
    padding-top: 107px;
    max-width: 820px;
    padding-bottom: 10px;
  }
}

.first-view__inner.is-show {
  opacity: 1;
  transform: translateY(0);
}
.first-view__resilience {
  color: #edf6ee;
  mix-blend-mode: luminosity;
  opacity: 0.57;
  font-size: clamp(4.875rem, 3.208rem + 7.41vw, 9.875rem);
  line-height: 1;
  display: block;
  position: absolute;
  bottom: -20px;
  right: -18px;
  z-index: -2;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 1920px) {
  .first-view__resilience {
    font-size: 158px;
  }
}
@media screen and (max-width: 1160px) {
  .first-view__resilience {
    right: auto;
    left: -7px;
    bottom: -4px;
  }
}
.first-view__point {
  max-width: 465px;
  position: absolute;
  bottom: 19%;
  right: clamp(
    11px,
    calc(11px + (215 - 11) * ((100vw - 1161px) / (1440 - 1161))),
    215px
  );
}

@media screen and (min-width: 501px) and (max-width: 1160px) {
  .first-view__point {
    bottom: 0;
    right: 0;
    width: 94%;
  }
}
@media screen and (min-width: 431px) and (max-width: 500px) {
  .first-view__point {
    bottom: 0;
  }
}
@media screen and (max-width: 430px) {
  .first-view__point {
    bottom: 0;
  }
}
.first-view__text {
  position: absolute;
  top: 124px;
  left: 170px;
}
@media screen and (min-width: 1161px) and (max-width: 1440px) {
  .first-view__text {
    left: clamp(30px, 50vw - 550px, 170px);
  }
}
@media screen and (max-width: 1160px) {
  .first-view__text {
    padding: 0 15px;
    position: static;
  }
}
.first-view__copy {
  /* max-width: 452px; */
  max-width: 844px;
  display: block;
  margin-left: -1%;
  margin-top: 4%;
}
@media screen and (max-width: 1160px) {
  .first-view__copy {
    width: 107%;
    margin-bottom: 17px;
  }
}
.first-view__logo {
  /* max-width: 335px; */
  max-width: 466px;
  display: block;
  margin-top: 2%;
  margin-bottom: 43px;
}
@media screen and (max-width: 1160px) {
  .first-view__logo {
    width: 91%;
    margin-left: 4%;
    margin-bottom: 22px;
  }
}
.first-view__lead {
  font-family: var(--font-family-mincho);
  color: #4d594a;
  line-height: 2.1;
  font-size: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1160px) {
  .first-view__lead {
    margin-bottom: 120px;
  }
}
.first-view__button {
  display: inline-block;
  max-width: 294px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .first-view__button {
    display: block;
  }
}

@media screen and (max-width: 430px) {
  .first-view__button {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.first-view__button--partner {
  max-width: 292px;
}
@media screen and (max-width: 430px) {
  .first-view__button--partner {
    max-width: 352px;
    margin-bottom: 144px;
  }
}
@media screen and (max-width: 430px) {
  .first-view__button--document {
    max-width: 352px;
  }
}
.first-view__button:hover::after {
  right: 17px;
}
.first-view__button::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/fv-button-arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  right: 32px;
  transition: 500ms;
}
.first-view__button--partner::after {
  background-image: url(../img/fv-button-arrow-green.webp);
}

.first-view__image {
  margin-left: auto;
}
.first-view__image img {
  max-width: 797px;
  margin-left: auto;
  display: block;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 1440px) {
  .first-view__image img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 1160px) {
  .first-view__image {
    position: static;
    margin-left: 20px;
    margin-top: -2%;
  }
}

/* アンバサダー入り */
.first-view__image--ambassador {
  position: absolute;
  /* right: 107px; */
  max-width: 534px;
  bottom: 0;
  z-index: -1;

  right: clamp(
    10px,
    calc(10px + (107 - 10) * ((100vw - 1161px) / (1440 - 1161))),
    107px
  );
}
@media screen and (max-width: 1160px) {
  .first-view__image--ambassador {
    right: -1px;
    width: 99%;
  }
}
@media screen and (min-width: 501px) and (max-width: 1160px) {
  .first-view__image--ambassador {
    bottom: 8%;
  }
}
@media screen and (min-width: 431px) and (max-width: 501px) {
  .first-view__image--ambassador {
    bottom: 12%;
  }
}
@media screen and (max-width: 430px) {
  .first-view__image--ambassador {
    bottom: 31%;
  }
}

/* -------------------------
イントロダクション
------------------------- */
.intro {
  background-color: var(--color-lite-green);
  position: relative;
}
@media screen and (max-width: 840px) {
  .intro:after {
    content: "";
    display: block;
    width: 100%;
    height: 230px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color-white);
    z-index: 0;
  }
}
.intro__inner {
  display: flex;
  gap: 53px;
  align-items: center;
  justify-content: center;
  padding: 73px 0 64px 0;
}
@media screen and (max-width: 1160px) {
  .intro__inner {
    flex-direction: column-reverse;
    padding: 29px 0 49px 0;
    gap: 50px;
  }
}
@media screen and (max-width: 500px) {
  .intro__inner {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1160px) {
  .intro__contents {
    padding: 0 20px;
  }
}
.intro__title {
  background: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(25px, 0.719vw + 22.2px, 36px);
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 53px;
  position: relative;
}
.intro__title:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(67, 80, 95, 0.4);
  left: clamp(28.125rem, 27.649rem + 2.12vw, 30.188rem);
  width: 755px;
  bottom: 15px;
}
@media screen and (min-width: 1441px) {
  .intro__title:after {
    left: 520px;
  }
}
@media screen and (max-width: 1160px) {
  .intro__title {
    text-align: center;
    letter-spacing: normal;
    margin-bottom: 30px;
  }
  .intro__title:after {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    right: auto;
    bottom: -10px;
  }
}
@media screen and (min-width: 1921px) {
  .intro__title:after {
    display: none;
  }
}
.intro__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 1160px) {
  .intro__list {
    padding-left: 0;
    gap: 24px;
  }
}
.intro__item {
  display: flex;
  align-items: center;
  gap: 19px;
}
@media screen and (max-width: 1160px) {
  .intro__item {
    gap: 10px;
  }
}
.intro__text {
  font-weight: bold;
  color: var(--color-green);
  font-size: clamp(0.75rem, 0.635rem + 0.51vw, 1.25rem);
  line-height: 1.8;
}
.intro__text .large {
  font-size: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
  display: block;
}
@media screen and (max-width: 1160px) {
  .intro__text {
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    line-height: 1.5;
  }
}
.intro__icon {
  flex-shrink: 0;
  width: 113px;
}

@media screen and (max-width: 840px) {
  .intro__icon {
    width: 80px;
  }
}
.intro__image {
  max-width: 535px;
  margin-top: -19%;
  margin-left: -1%;
}
@media screen and (min-width: 1441px) {
  .intro__image {
    margin-top: -14%;
  }
}
@media screen and (max-width: 1160px) {
  .intro__image {
    position: relative;
    margin-top: 0;
    z-index: 1;
    width: 87%;
  }
}

/* -------------------------
こんなお悩みありませんか
------------------------- */
.problem {
  background-image: url(../img/problem-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .problem {
    background-image: url(../img/problem-bg-sp.webp);
    background-position: top;
  }
}
.problem__inner {
  padding: 121px 0 143px 0;
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .problem__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 840px) {
  .problem__inner {
    padding: 72px 0 50px 0;
  }
}
.problem__list {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .problem__list {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.problem__item {
  width: calc(33.3333333333% - 16px);
  border-radius: 0 40px 0 40px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 33px;
  gap: 20px;
  height: 520px;
}
@media screen and (max-width: 840px) {
  .problem__item {
    width: 100%;
    max-width: 370px;
    padding: 30px 20px 19px 20px;
    height: auto;
    border-radius: 0 26px 0 26px;
  }
}

.problem__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 193px;
}

@media screen and (max-width: 840px) {
  .problem__image {
    height: 200px;
  }
}
.problem__item--01 .problem__image {
  background-image: url(../img/problem-01.webp);
}
.problem__item--02 .problem__image {
  background-image: url(../img/problem-02.webp);
}
.problem__item--03 .problem__image {
  background-image: url(../img/problem-03.webp);
}

.problem__subtitle {
  font-size: clamp(20px, 0.196vw + 19.24px, 23px);
  color: #0a0a0a;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .problem__subtitle {
    text-align: center;
  }
}
.problem__text {
  font-size: clamp(15px, 0.131vw + 14.49px, 17px);
  line-height: 1.7;
  color: #737373;
  font-feature-settings: "palt";
}

@media screen and (max-width: 840px) {
  .problem__text {
    font-feature-settings: normal;
  }
}

/* -------------------------
レジリエンスとは
------------------------- */
.about {
  position: relative;
}
.about__ambassador {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  max-width: 284px;
  right: 76px;
  z-index: 1;
}

@media screen and (max-width: 840px) {
  .about__ambassador {
    right: 54px;
    max-width: 262px;
  }
}

.about__intro {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 78px;
  position: relative;
  padding-top: 62px;
  max-width: 1037px;
  margin: 0 auto 0 16%;
}
@media screen and (min-width: 1441px) {
  .about__intro {
    margin: 0 auto;
  }
}
@media screen and (max-width: 840px) {
  .about__intro {
    flex-direction: column-reverse;
    gap: 42px;
    padding-top: 0;
    margin: 0 auto;
  }
}
.about__intro .about__title {
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  .about__intro .about__title {
    letter-spacing: normal;
    margin-bottom: 44px;
  }
}
.about__image {
  max-width: 453px;
}
@media screen and (max-width: 840px) {
  .about__image {
    position: relative;
    z-index: 1;
    margin-bottom: 58px;
    width: 98%;
  }
}
.about__detail {
  margin-top: 56px;
}
@media screen and (max-width: 840px) {
  .about__detail {
    padding: 0 10px;
    text-align: center;
    margin-top: 67px;
  }
}
.about__title {
  background: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(25px, 1.176vw + 20.41px, 43px);
  line-height: 1.1;
  font-weight: bold;
}
.about__text {
  line-height: 1.8;
}
@media screen and (max-width: 840px) {
  .about__text {
    text-align: left;
    font-feature-settings: "palt";
    line-height: 1.7;
  }
}
.about__text--top {
  margin-bottom: 6px;
  font-size: clamp(1.125rem, 0.833rem + 1.3vw, 2rem);
}
@media screen and (max-width: 840px) {
  .about__text--top {
    text-align: center;
  }
}
.about .about-main {
  background-color: var(--color-lite-green);
  margin-top: -3%;
}
.about .about-main__head {
  padding-top: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 91px;
  position: relative;
  max-width: 1153px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .about .about-main__head {
    flex-direction: column;
    padding: 50px 10px;
    gap: 40px;
    background-color: var(--color-white);
  }
  .about .about-main__head::before {
    content: "";
    width: 100%;
    height: 90px;
    position: absolute;
    background-color: var(--color-lite-green);
    left: 0;
    top: -82px;
  }
}
.about .about-main__head::after {
  content: "";
  width: 100vw;
  height: 344px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  background-color: var(--color-white);
  z-index: 0;
}
@media screen and (max-width: 840px) {
  .about .about-main__head::after {
    display: none;
  }
}
.about .about-main__title {
  background: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.563rem, 1.303rem + 1.15vw, 2.688rem);
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
  margin-bottom: 13px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 840px) {
  .about .about-main__title {
    letter-spacing: normal;
    line-height: 1.4;
  }
}
.about .about-main__title .small {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
  color: #34642b;
}
@media screen and (max-width: 840px) {
  .about .about-main__title .small {
    font-size: 25px;
  }
}
.about .about-main__title .equal {
  color: #34642b;
  display: block;
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 13px;
}
.about .about-main__text {
  font-size: clamp(15px, 0.196vw + 14.24px, 18px);
  line-height: 1.5;
  color: var(--color-green);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .about .about-main__text {
    font-feature-settings: "palt";
  }
}
.about .about-main__image {
  position: relative;
  z-index: 1;
  max-width: 598px;
  filter: drop-shadow(0px 4px 11px rgba(34, 109, 40, 0.52));
  margin-right: -18%;
}
@media screen and (max-width: 840px) {
  .about .about-main__image {
    margin-right: 0;
    width: 100%;
  }
}

.about .about-main__detail {
  position: relative;
  z-index: 1;
  margin-top: 8%;
  padding-left: 80px;
}
@media screen and (min-width: 1441px) {
  .about .about-main__detail {
    padding-left: 0;
  }
}
@media screen and (max-width: 840px) {
  .about .about-main__detail {
    margin-top: 0;
    padding-left: 0;
  }
}
.about .about-card {
  background-color: var(--color-lite-green);
  background-image: url(../img/about-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .about .about-card {
    background-image: url(../img/about-bg-sp.webp);
  }
}
.about .about-card__inner {
  padding: 128px 0 67px 0;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 840px) {
  .about .about-card__inner {
    padding: 83px 20px 173px 20px;
  }
}
.about .about-card__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 736px;
  margin: 0 auto;
  gap: 64px 32px;
}
@media screen and (max-width: 840px) {
  .about .about-card__list {
    gap: 62px;
  }
}
.about .about-card__item {
  background-color: var(--color-white);
  border-radius: 0 30px 0 30px;
  padding: 90px 30px 33px 30px;
  outline: solid 3px var(--color-green);
  width: calc(50% - 20px);
  position: relative;
  min-height: 334px;
}
@media screen and (max-width: 840px) {
  .about .about-card__item {
    padding: 58px 20px 33px 20px;
    width: 100%;
    max-width: 400px;
    min-height: auto;
  }
}
.about .about-card__item:before {
  display: block;
  background-color: var(--color-green);
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-weight: bold;
  width: 66px;
  height: 66px;
  line-height: 66px;
  font-size: 27px;
  text-align: center;
  border-radius: 50%;
}
.about .about-card__item:first-child:before {
  content: "1";
}
.about .about-card__item:nth-child(2):before {
  content: "2";
}
.about .about-card__item:nth-child(3):before {
  content: "3";
}
.about .about-card__item:last-child:before {
  content: "4";
}
.about .about-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 42px;
  line-height: 1.3;
}
@media screen and (max-width: 840px) {
  .about .about-card__title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
  }
}
.about .about-card__title .color {
  color: var(--color-green);
  font-weight: bold;
}
.about .about-card__text {
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .about .about-card__text {
    font-size: 15px;
  }
}

/* -------------------------
レッスルの特徴
------------------------- */
.feature {
  background-image: url(../img/feature-bg-pc.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .feature {
    background-image: none;
    background-color: var(--color-white);
  }
}
.feature__inner {
  padding: 128px 70px 81px 70px;
}
@media screen and (max-width: 840px) {
  .feature__inner {
    padding: 77px 0 50px 0;
  }
}
.feature .feature-head {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 43px;
}
@media screen and (max-width: 840px) {
  .feature .feature-head {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 27px;
  }
}
.feature .feature-head__title {
  margin-bottom: 16px;
  display: block;
  margin-left: -2%;
}
@media screen and (max-width: 840px) {
  .feature .feature-head__title {
    margin-bottom: 25px;
  }
}
.feature .feature-head__image {
  max-width: 489px;
}
@media screen and (max-width: 840px) {
  .feature .feature-head__image {
    padding: 0 10px;
  }
}
.feature .feature-head__text {
  padding-left: 5px;
  font-size: 14px;
  line-height: 1.5;
  color: #43505f;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 840px) {
  .feature .feature-head__text {
    padding-left: 0;
    text-align: center;
    line-height: 1.8;
  }
}
.feature .feature-card__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 840px) {
  .feature .feature-card__list {
    flex-direction: column;
    gap: 50px;
  }
}
.feature .feature-card__item {
  display: flex;
  gap: 97px;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .feature .feature-card__item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
@media screen and (max-width: 840px) {
  .feature .feature-card__item--first .feature-card__text {
    letter-spacing: -0.11em;
  }
}

.feature .feature-card__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 840px) {
  .feature .feature-card__item:nth-child(even) {
    flex-direction: column;
    gap: 15px;
  }
}
.feature .feature-card__item:nth-child(3) {
  gap: 77px;
}
@media screen and (max-width: 840px) {
  .feature .feature-card__item:nth-child(3) {
    gap: 7px;
  }
}

.feature .feature-card__image {
  max-width: 459px;
  flex-shrink: 0;
}
.feature .feature-card__number {
  font-size: 17px;
  color: var(--color-white);
  font-weight: bold;
  padding: 0 1.4rem;
  display: inline-block;
  background-color: var(--color-green);
  border-radius: 0 8px 0 8px;
  margin-bottom: 24px;
  height: 30px;
  line-height: 30px;
}
.feature .feature-card__title {
  margin-bottom: 13px;
  background: linear-gradient(267.58deg, #8ad87b -5.83%, #34642b 110.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .feature .feature-card__title {
    margin-bottom: 20px;
  }
}
.feature .feature-card__text {
  color: #737373;
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .feature .feature-card__text {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* -------------------------
監修者紹介
------------------------- */
.supervision {
  background-image: url(../img/supervision-bg-pc.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.supervision__inner {
  padding: 132px 0 79px 0;
}
@media screen and (min-width: 841px) and (max-width: 1160px) {
  .supervision__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 840px) {
  .supervision__inner {
    padding: 68px 0 57px 0;
  }
}
.supervision__title {
  margin-bottom: 35px;
}

@media screen and (max-width: 840px) {
  .supervision__title {
    margin-bottom: 24px;
  }
}
.supervision__card {
  background-color: var(--color-white);
  border-radius: 20px 0 20px 0;
  outline: solid 3px var(--color-green);
  padding: 58px 0 58px 80px;
  display: grid;
  gap: 0 43px;
  grid-template-columns: 236px auto;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 840px) {
  .supervision__card {
    grid-template-columns: 127px auto;
    grid-template-rows: auto auto;
    padding: 15px 22px 30px 22px;
    gap: 19px 8px;
  }
}
.supervision__icon {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 840px) {
  .supervision__icon {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: -25%;
    position: relative;
  }
}
.supervision__name {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 22px;
  align-items: flex-end;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 840px) {
  .supervision__name {
    margin-bottom: 0;
    margin-top: 6%;
    align-self: center;
  }
}

.supervision__profile {
  display: flex;
  flex-direction: column;
  gap: 27px;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 840px) {
  .supervision__profile {
    grid-column: 1/3;
    grid-row: 2/3;
    gap: 24px;
  }
}
.supervision__text {
  color: var(--color-green);
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding-left: 31px;
}

@media screen and (max-width: 840px) {
  .supervision__text {
    font-size: 15px;
  }
}
.supervision__text::before {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.supervision__text:first-child:before {
  background-image: url(../img/supervision-icon-01.webp);
}
.supervision__text:nth-child(2):before {
  background-image: url(../img/supervision-icon-04.webp);
}
.supervision__text:nth-child(3):before {
  background-image: url(../img/supervision-icon-03.webp);
}
.supervision__text:nth-child(4):before {
  background-image: url(../img/supervision-icon-02.webp);
}
.supervision__text:last-child:before {
  background-image: url(../img/supervision-icon-01.webp);
}

/* -------------------------
メリット
------------------------- */
.merit {
  position: relative;
  z-index: 1;
}
.merit__ambassador {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  max-width: 490px;
  right: 92px;
  z-index: 2;
}

@media screen and (max-width: 840px) {
  .merit__ambassador {
    right: 41px;
    max-width: 336px;
    bottom: -60px;
  }
}

.merit__inner {
  padding: 130px 0 160px 0;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (min-width: 841px) and (max-width: 1160px) {
  .merit__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 840px) {
  .merit__inner {
    padding: 74px 0 133px 0;
  }
}
.merit__image {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.merit__image img {
  border-radius: 60px;
  box-shadow:
    0px 0px 30px rgba(0, 0, 0, 0.2),
    0px 1px 2px -1px rgba(0, 0, 0, 0.2);
}

.merit__cta {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: clamp(19.375rem, 17.875rem + 6.67vw, 23.875rem);
}
@media screen and (max-width: 840px) {
  .merit__cta {
    bottom: 50px;
  }
}
.merit__button .text {
  display: inline;
  letter-spacing: 0.05em;
}
.merit__button {
  position: relative;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 17px;
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  border-radius: 100vw;
  display: block;
}
@media screen and (max-width: 840px) {
  .merit__button {
    font-size: 15px;
  }
}
.merit__button:hover::after {
  right: 10px;
}
.merit__button::before {
  content: "お見積もり・カスタマイズのご相談も承ります";
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  width: 100%;
  color: #737373;
}
.merit__button::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url(../img/fv-button-arrow.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  transition: 500ms;
}
@media screen and (max-width: 840px) {
  .merit__button::after {
    right: 13px;
  }
}
/* -------------------------
資料請求
------------------------- */
.document {
  background-image: url(../img/document-bg-pc.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .document {
    background-size: cover;
  }
}
@media screen and (max-width: 840px) {
  .document {
    background-size: cover;

    background-image: url(../img/document-bg-sp.webp);
  }
}

.document__inner {
  padding: 92px 0 47px 0;
  position: relative;
  max-width: 721px;
  margin: 0 auto;
}
@media screen and (min-width: 841px) and (max-width: 1160px) {
  .document__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 840px) {
  .document__inner {
    padding: 100px 0 70px 0;
  }
}

.document__title {
  font-size: clamp(25px, 0.719vw + 22.2px, 36px);
  color: var(--color-white);
  text-shadow: 2px 4px 10px #194653;
  margin-bottom: 16px;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .document__title {
    text-align: center;
  }
}
.document__lead {
  font-size: clamp(16px, 0.131vw + 15.49px, 18px);
  color: var(--color-white);
  text-shadow: 2px 4px 10px #194653;
  margin-bottom: 48px;
}
@media screen and (max-width: 840px) {
  .document__lead {
    text-align: center;
    margin-bottom: 33px;
  }
}
.document .document-form {
  width: 100%;
  height: 730px;
  border-radius: 14px;
  background-color: var(--color-white);
  box-shadow:
    0px 1px 3px rgba(0, 0, 0, 0.1),
    0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 840px) {
  .document .document-form {
    height: 809px;
  }
}
.document .document-form iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 840px) {
  .document .document-form {
    margin-bottom: 15px;
  }
}

/* ------------------------------------------------------------ */
/* 資料詳細ページ */
/* ------------------------------------------------------------ */

body.documents-template-default .p-documents__main {
  display: flex;
  padding-block-start: 60px;
  gap: 37px;
  padding-block-end: 130px;
}
@media screen and (max-width: 1280px) {
  body.documents-template-default .p-documents__main {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1024px) {
  body.documents-template-default .p-documents__main {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
}
@media screen and (max-width: 840px) {
  body.documents-template-default .p-documents__main {
    padding-inline: 5px;
  }
}
body.documents-template-default .p-documents__main-text {
  max-width: 660px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  body.documents-template-default .p-documents__main-text {
    width: 100%;
  }
}

body.documents-template-default .p-documents__title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  color: #34642b;
  padding-bottom: 10px;
  border-bottom: solid 1px #34642b;
}
body.documents-template-default .p-documents__thumbnail {
  font-size: 16px;
  line-height: 1.5;
  margin-block-start: 20px;
  position: relative;
  margin-block-end: 40px;
}
body.documents-template-default .p-documents__text {
  margin-block-start: 20px;
  line-height: 2;
  font-size: 14px;
}
body.documents-template-default .p-documents__text--detail {
  margin-block-start: 20px;
}
body.documents-template-default .p-documents__text--small {
  font-size: 12px;
}
body.documents-template-default .p-documents__text--attention {
  margin-block-start: 24px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 840px) {
  body.documents-template-default .p-documents__text--attention {
    font-size: 13px;
  }
}
body.documents-template-default .p-documents__list {
  margin-block-start: 60px;
}

body.documents-template-default .point-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block-start: 20px;
}
body.documents-template-default .point-item {
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  font-size: clamp(
    12px,
    calc(12px + (15 - 12) * ((100vw - 390px) / (1440 - 390))),
    15px
  );
}
body.documents-template-default .point-item:before {
  content: "";
  left: 0;
  top: 3px;
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon-check-orange.svg);
}
body.documents-template-default .p-documents__main-form {
  background-color: #edf9eb;
  min-height: 1000px;
  padding: 20px 10px;
  border: solid 1px #dddddd;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  body.documents-template-default .p-documents__main-form {
    max-width: 450px;
    height: 1000px;
  }
}

body.documents-template-default .p-documents__main-form iframe {
  width: 100%;
  height: 100%;
  margin-top: -40px;
}

.p-documents__thumbnail .swiper-button-next {
  right: 0;
  z-index: 1;
}
.p-documents__thumbnail .swiper-button-prev {
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 840px) {
  .p-documents__thumbnail .swiper-button-next {
    right: -18px;
  }
  .p-documents__thumbnail .swiper-button-prev {
    left: -18px;
  }
}

.p-documents__thumbnail .swiper-button-next:before,
.p-documents__thumbnail .swiper-button-prev:before {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  margin: 0;
  height: clamp(
    20px,
    calc(20px + (40 - 20) * ((100vw - 390px) / (1440 - 390))),
    40px
  );

  width: clamp(
    20px,
    calc(20px + (40 - 20) * ((100vw - 390px) / (1440 - 390))),
    40px
  );
}

.p-documents__thumbnail .swiper-button-prev::before {
  background-image: url(../img/icon-arrow-white.svg);
}
.p-documents__thumbnail .swiper-button-next::before {
  background-image: url(../img/icon-arrow-white.svg);
  transform: rotate(180deg);
}
.p-documents__thumbnail .swiper-pagination {
  position: absolute;
  bottom: -40px;
  z-index: 1;
}
.p-documents__thumbnail .swiper-pagination-bullet {
  background-color: #34642b;
  height: 10px;
  width: 10px;
  border-radius: 0;
}

.swiper-navigation-icon {
  display: none !important;
}

/* 最後の資料サムネイル */
.swiper-slide__last {
  position: relative;
}

.swiper-slide__last:before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.swiper-slide__message {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.message__title {
  font-size: clamp(
    16px,
    calc(16px + (19 - 16) * ((100vw - 390px) / (1440 - 390))),
    19px
  );
  font-weight: bold;
  color: var(--color-white);
}

.message__button {
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: clamp(
    16px,
    calc(16px + (20 - 16) * ((100vw - 390px) / (1440 - 390))),
    20px
  );
  font-weight: bold;
  padding: 10px 36px;
  border-radius: 100vw;
  margin-block-start: 27px;
  display: inline-block;
  position: relative;
}
.message__button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 9%;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* -------------------------
フッター
------------------------- */
.footer {
  background-color: #1c344f;
}
.footer__inner {
  padding: 80px 0 12px 0;
  color: var(--color-white);
}
@media screen and (min-width: 841px) and (max-width: 1160px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 840px) {
  .footer__inner {
    padding-top: 47px;
  }
}

.footer__menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 71px;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .footer__menu {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 36px;
  }
}
.footer__menu:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #334861;
  position: absolute;
  bottom: -60px;
  left: 0;
}

@media screen and (max-width: 840px) {
  .footer__menu:after {
    bottom: -22px;
  }
}
.footer__service {
  max-width: 373px;
}
@media screen and (max-width: 1160px) {
  .footer__service {
    text-align: center;
    margin: 0 auto;
  }
}
.footer__service .logo {
  max-width: 190px;
  margin-bottom: 24px;
  display: inline-block;
}
@media screen and (max-width: 840px) {
  .footer__service .logo {
    margin-bottom: 20px;
  }
}

.footer__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 15px;
}
@media screen and (max-width: 840px) {
  .footer__title {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.footer__text {
  font-size: 14px;
  line-height: 1.5;
}
.footer__text:first-of-type {
  margin-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .footer__text:first-of-type {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 840px) {
  .footer__text--company {
    font-size: 12px;
  }
}
.footer__contents {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1160px) {
  .footer__contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
@media screen and (max-width: 840px) {
  .footer__contents {
    gap: 84px 15px;
  }
}
.footer__link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
@media screen and (max-width: 1160px) {
  .footer__link {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
.footer__button {
  font-size: 14px;
  border-radius: 100vw;
  padding: 0.7rem 2.8rem;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .footer__button {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
.footer__button--green {
  background-color: #34c759;
  color: #fbfaae;
}
.footer .footer-nav {
  min-width: 213px;
}
@media screen and (max-width: 1160px) {
  .footer .footer-nav {
    min-width: auto;
  }
}
@media screen and (max-width: 1160px) {
  .footer .footer-nav:first-of-type {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1160px) {
  .footer .footer-nav:last-of-type {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.footer .footer-nav__title {
  font-weight: bold;
  margin-bottom: 16px;
}

.footer .footer-nav__item {
  font-size: 14px;
  border-bottom: solid 1px var(--color-white);
  position: relative;
}
@media screen and (max-width: 1160px) {
  .footer .footer-nav__item {
    font-size: 12px;
  }
}

.footer .footer-nav__item:hover:after {
  right: -5px;
}
.footer .footer-nav__item:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/footer-nav-icon-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: 300ms;
}
.footer .footer-nav__item a {
  display: block;
  padding: 15px 0;
  width: 100%;
}

.footer__copyright {
  font-size: 14px;
  text-align: center;
  color: var(--color-white);
}

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

/* -------------------------
TOPへ戻るボタン
------------------------- */
@media screen and (max-width: 840px) {
  .page-top {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: fixed;
    border-radius: 50%;
    transition: 0.3s;
    background-color: var(--color-green);
    box-shadow: rgba(0, 0, 0, 0.2392156863) 0px 3px 8px;
    z-index: 1;
  }
  .page-top:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 12%;
    right: 37%;
    bottom: 0;
    margin: auto;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
  }
} /*# sourceMappingURL=style.css.map */
