@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
背景のグラデーション
--------------------------------*/
/*--------------------------------
一次関数
画面幅 1440pxの時は、120pxで、そこからどんどん小さくなり、1000pxの時に20pxになるという実装の際に使える関数。
--------------------------------*/
/*--------------------------------
擬似要素の背景
--------------------------------*/
/*--------------------------------
三角形
--------------------------------*/
/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 1120px) {
  html {
    font-size: 1.4285714286vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", serif;
  color: #000;
}

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

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

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

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

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

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

.flow {
  padding: 9.375rem 0rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 5.625rem 0rem;
  }
}

.flow__body {
  display: grid;
  gap: 4.375rem;
  margin-top: 5rem;
  grid-template-columns: 3.125rem 1fr;
}
@media screen and (max-width: 767px) {
  .flow__body {
    margin-top: 2.75rem;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.625rem;
  }
}

.flow__arrow2 {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow__arrow2 {
    padding-bottom: 0rem;
    padding-top: 0rem;
  }
}

.flow__arrow3 {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow__arrow3 {
    padding-top: 0rem;
  }
}

.flow__arrow img {
  height: 100%;
}

.flow-item {
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .flow-item {
    gap: 0.625rem;
  }
}

.flow-item + .flow-item {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow-item + .flow-item {
    padding-top: 1.25rem;
  }
}

.flow-item--09 {
  padding-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .flow-item--09 {
    padding-bottom: 0.8125rem;
  }
}

.flow-item__number {
  font-size: 3.125rem;
  line-height: 0.94;
  letter-spacing: 0.003em;
  font-weight: 400;
  font-family: "Imbue";
  color: #b3a457;
}
@media screen and (max-width: 767px) {
  .flow-item__number {
    font-size: 1.875rem;
    line-height: 1;
  }
}

.flow-item__title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.005em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.flow-item__title span {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .flow-item__title {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    gap: 0.3125rem;
  }
}

.flow-item__description {
  margin-top: 0.9375rem;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.003em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flow-item__description {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.flow-item__highlight {
  margin-top: 1.875rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #b3a457;
}

.flow-item__highlight-head {
  font-size: 0.8125rem;
  line-height: 2.1538461538;
  letter-spacing: 0em;
  font-weight: 700;
  background-color: #b3a457;
  border-radius: 0.625rem 0 0.625rem 0;
  width: 15.25rem;
  margin-top: -0.0625rem;
  margin-left: -0.0625rem;
  padding: 0rem 1.875rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow-item__highlight-head {
    width: 11.375rem;
    padding: 0rem 0.3125rem;
    font-size: 0.625rem;
    line-height: 3;
  }
}

.flow-item__highlight-content {
  padding: 0rem 1.8125rem 1.8125rem;
}
@media screen and (max-width: 767px) {
  .flow-item__highlight-content {
    padding: 0.5625rem 0.5625rem 1.8125rem;
  }
}

.flow-item__highlight-title {
  font-size: 1.5rem;
  line-height: 2.9166666667;
  letter-spacing: 0.005em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow-item__highlight-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.flow-item__list-item {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.003em;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow-item__list-item {
    margin-top: initial;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    gap: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .flow-item__list-item + .flow-item__list-item {
    margin-top: 0.625rem;
  }
}

.flow-item__list-item::before {
  content: "●";
  display: inline-block;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.003em;
  font-weight: 500;
  color: #b3a457;
}
@media screen and (max-width: 767px) {
  .flow-item__list-item::before {
    font-size: 0.625rem;
    line-height: 2;
  }
}

.flow-item__label {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.005em;
  font-weight: 700;
  color: #b3a457;
  border: 0.0625rem solid #b3a457;
  display: inline-block;
  padding: 0rem 0.5625rem;
  border-radius: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .flow-item__label {
    font-size: 0.6875rem;
    line-height: 2.1818181818;
    padding: 0rem 0.3125rem;
  }
}

.wrapper {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}

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

.is-fixed {
  overflow: hidden;
  height: 100vh;
}

.company-logo {
  width: 12.5rem;
  height: 2.5rem;
  aspect-ratio: 5/1;
}
@media screen and (max-width: 767px) {
  .company-logo {
    width: 7.5rem;
    height: auto;
  }
}

.btn {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #ffffff;
  font-size: 1.5rem;
  border-radius: 6.25rem;
  background: #00c300;
  box-shadow: 0rem 0.25rem 0rem 0rem #117411;
  max-width: 30rem;
  height: 6.25rem;
  padding-right: clamp(0.625rem, 7vw, 5.625rem);
  padding-left: clamp(0.625rem, 4vw, 3.0625rem);
  z-index: 2;
  transition: 0.3s;
}
.btn:hover {
  transition: 0.3s;
  filter: brightness(1.1);
}
.btn img {
  width: 2.8144375rem;
  height: 2.6816875rem;
  margin-right: clamp(0.625rem, 3vw, 1.9375rem);
}
@media screen and (max-width: 767px) {
  .btn img {
    width: 1.875rem;
    height: 1.75rem;
    margin-right: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    height: 3.4375rem;
    font-size: 1.125rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.title {
  font-size: 2.625rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.25rem;
}
.title::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #b3a457 0%, #ebd460 100%);
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.5rem;
    gap: 0.625rem;
  }
}

.header {
  overflow: hidden;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 6.125rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .header {
    background: linear-gradient(270deg, #eeeacc 0%, #eee 100%);
    height: 3.125rem;
  }
}

.drawer-icon {
  position: relative;
  background-color: #3b3b3b;
  width: 3.75rem;
  height: 3.125rem;
  z-index: 10;
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(1) {
  top: 48%;
  transform: rotate(44.89deg);
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-open .drawer-icon__bar:nth-of-type(3) {
  top: 48%;
  transform: rotate(-44.904deg);
}
.drawer-icon .drawer-icon__bar {
  position: absolute;
  background-color: #ffffff;
  top: 33%;
  left: 28%;
  width: 1.5625rem;
  height: 0.0625rem;
  border-radius: 0.375rem;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon .drawer-icon__bar:nth-of-type(2) {
  top: 49%;
}
.drawer-icon .drawer-icon__bar:nth-of-type(3) {
  top: 63%;
}

.drawer-content {
  width: 100%;
  position: fixed;
  z-index: 5;
  top: -140%;
  background: #fff;
  padding-top: 9.625rem;
  padding-bottom: 12.875rem;
  transition: top 0.3s linear;
  overflow: hidden;
  overflow-y: auto;
  max-height: 100vh;
}
.drawer-content.is-open {
  top: 0;
}

.drawer-content__link {
  width: 7.5rem;
  text-align: left;
}

.drawer-content__button {
  margin-top: 1.5625rem;
}

.drawer-button {
  font-size: 1rem;
  padding: 1.25rem 3.6875rem 1.0625rem 1.8125rem;
  height: 3.75rem;
}
.drawer-button img {
  width: 1.875rem;
  height: 1.78125rem;
  margin-right: 1.25rem;
}

.drawer-content__menu {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8125rem;
}

.header__inner {
  padding: 0rem 3.75rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0;
  }
}

.header__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

.header__logo {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding-left: 0.9375rem;
  }
}

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

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

.header__nav-link {
  font-weight: 700;
  height: inherit;
}

.header__nav-link a {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 0.9375rem;
  position: relative;
}

.header__nav-link a::after {
  position: absolute;
  left: 0.9375rem;
  content: "";
  width: calc(100% - 1.875rem);
  height: 3px;
  background: #000;
  bottom: 20%;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.header__nav-link a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}

.fv {
  position: relative;
  background: linear-gradient(270deg, #eeeacc 0%, #eee 100%);
  overflow: hidden;
  padding-top: 6.125rem;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 3.125rem;
  }
}

.fv__inner {
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-right: 1.6875rem;
    padding-left: 1.6875rem;
  }
}

.fv__contents {
  display: flex;
}

.fv__left {
  margin-top: 9.0625rem;
  padding-left: calc(440 * (100vw - 1440px) / 1200 + 100px);
}
@media screen and (max-width: 767px) {
  .fv__left {
    margin-top: 6.375rem;
    padding-left: calc(73 * (100vw - 375px) / 392 + 0px);
  }
}

.fv__title {
  font-size: 4rem;
  line-height: 5.75rem;
  margin-bottom: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 2.5rem;
    line-height: normal;
    margin-bottom: 2.8125rem;
  }
}

.fv__leaf-images {
  display: flex;
  margin-bottom: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .fv__leaf-images {
    flex-direction: column;
    gap: 1.625rem;
    margin-left: -0.375rem;
    margin-bottom: calc(-192 * (100vw - 375px) / 392 + 285px);
  }
}

.fv__leaf-left img {
  width: 18.5287994448vw;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .fv__leaf-left img {
    width: 10rem;
    height: 5.5rem;
  }
}

.fv__leaf-right {
  margin-left: 1.625rem;
}
.fv__leaf-right img {
  width: 18.5287994448vw;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .fv__leaf-right img {
    width: 10rem;
    height: 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__leaf-right {
    margin-left: 0;
  }
}

.fv__button {
  margin-bottom: 5.625rem;
  margin-left: -0.875rem;
}

.fv__human-image {
  position: absolute;
  width: min(57.7376821652vw, 832px);
  bottom: 0rem;
  right: max(0rem, (100vw - 90rem) / 2.5);
}
.fv__human-image img {
  width: 100%;
}
@media (max-width: 374px) {
  .fv__human-image {
    right: calc(-32 * (100vw - 320px) / 54 - 130px) !important;
  }
}
@media screen and (max-width: 767px) {
  .fv__human-image {
    width: min(155.4666666667vw, 583px);
    height: min(145.0666666667vw, 544px);
    bottom: -4.75rem;
    right: calc(163 * (100vw - 375px) / 392 - 163px);
  }
}

.clients {
  overflow: hidden;
  padding-top: 9.25rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .clients {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.clients__marquee {
  margin-top: 3.3125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .clients__marquee {
    gap: 1.25rem;
  }
}

.marquee__row {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: calc(12.5rem * 20);
}
@media screen and (max-width: 767px) {
  .marquee-track {
    gap: 1.25rem;
  }
}
.marquee-track img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 12.5rem;
  max-height: 40px;
}
@media screen and (max-width: 767px) {
  .marquee-track img {
    height: 2.1875rem;
  }
}

.to-left .marquee-track {
  -webkit-animation: scroll-left 30s linear infinite;
  animation: scroll-left 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .to-left .marquee-track {
    -webkit-animation: scroll-left 30s linear infinite;
    animation: scroll-left 30s linear infinite;
  }
}

.to-right .marquee-track {
  -webkit-animation: scroll-right 30s linear infinite;
  animation: scroll-right 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .to-right .marquee-track {
    -webkit-animation: scroll-right 10s linear infinite;
    animation: scroll-right 10s linear infinite;
  }
}

/* アニメーション */
@-webkit-keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.about {
  padding-top: 9rem;
  padding-bottom: 9.4375rem;
  background: var(--bg_gradation, linear-gradient(90deg, #e8eae1 0%, #ffffff 69.71%));
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 5rem;
    padding-bottom: 5.625rem;
  }
}

.about__title {
  margin-left: 0.75rem;
  margin-bottom: 4.25rem;
}
@media screen and (max-width: 767px) {
  .about__title {
    margin-bottom: 2.8125rem;
  }
}

.about__contents {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.about__item {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.625rem;
}
.about__item:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about__item:nth-of-type(2) {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .about__item {
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.about__item-image {
  width: 33.75rem;
  position: relative;
}
.about__item-image::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 7rem;
  top: -3.375rem;
  left: 0.3125rem;
  background: no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .about__item-image::before {
    width: 3.875rem;
    height: 6.375rem;
  }
}
.about__item-image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__item-image {
    width: inherit;
    justify-content: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__item:nth-of-type(1) .about__item-image::before {
  width: 3.875rem;
  height: 7.125rem;
  background-image: url("../img/about-number-01.png");
}
@media screen and (max-width: 767px) {
  .about__item:nth-of-type(1) .about__item-image::before {
    width: 3.25rem;
    height: 6.5rem;
  }
}

.about__item:nth-of-type(2) .about__item-image::before {
  right: 0.25rem;
  left: auto;
  background-image: url("../img/about-number-02.png");
}

.about__item:nth-of-type(3) .about__item-image::before {
  background-image: url("../img/about-number-03.png");
}

.about__item-text {
  width: 33.75rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .about__item-text {
    padding: 0;
    width: auto;
  }
}

.about__item-title {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about__item-title {
    font-size: 1.25rem;
  }
}

.about__item-description {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about__item-description {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.about__item:nth-of-type(1) .about__item-description {
  letter-spacing: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .about__item:nth-of-type(1) .about__item-description {
    letter-spacing: normal;
  }
}

.compare {
  padding: 9rem 0;
}
@media screen and (max-width: 767px) {
  .compare {
    padding: 6.25rem 0;
  }
}

.compare__inner {
  max-width: 100%;
}

.compare__title {
  gap: 0.625rem;
}

.compare__table {
  overflow-x: auto;
  padding-top: 4.75rem;
  display: flex;
  justify-content: center;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .compare__table {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    display: block;
  }
  .compare__table.is-overflowing {
    padding-right: 0;
  }
}

.table {
  table-layout: fixed;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .table {
    width: 100%;
  }
}
.table thead {
  height: 7.5625rem;
}
@media screen and (max-width: 767px) {
  .table thead {
    height: 6.25rem;
  }
}
.table tbody tr {
  height: 12.5625rem;
}
@media screen and (max-width: 767px) {
  .table tbody tr {
    height: 6.25rem;
  }
}
.table tbody th:nth-child(1) {
  background-color: #e8eae1;
  width: 6.25rem;
}
.table th {
  font-size: 1.5rem;
  white-space: nowrap;
}
.table th:nth-child(n+3) {
  color: #ffffff;
  background-color: #3b3b3b;
}
@media screen and (max-width: 767px) {
  .table th {
    font-size: 0.875rem;
    padding-right: 0.375rem;
    padding-left: 0.375rem;
  }
}
.table th,
.table td {
  width: 17.375rem;
}
@media screen and (max-width: 767px) {
  .table th,
  .table td {
    width: 12.5rem;
    height: inherit;
  }
}
.table th:nth-child(2),
.table td:nth-child(2) {
  color: #3b3b3b;
  background: linear-gradient(90deg, #b3a457 0%, #ebd460 100%);
}
.table td {
  padding: 0rem 0.625rem;
}
.table td:not(:nth-child(2)) {
  background-color: #e8eae1;
}
@media screen and (max-width: 767px) {
  .table td {
    padding-inline: 0.375rem;
  }
}

.table__td-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .table__td-text {
    display: block;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  td > .table__td-text {
    height: inherit;
    display: flex;
    padding-top: 0.625rem;
  }
}

.circle {
  font-size: 2.5rem;
  margin-left: 0.1875rem;
  margin-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .circle {
    font-size: 1.5625rem;
    margin-bottom: 0;
  }
}

.companies {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background: var(--bg_gradation, linear-gradient(90deg, #e8eae1 0%, #fff 69.71%));
}
@media screen and (max-width: 767px) {
  .companies {
    padding: 6.25rem 1.25rem 9.375rem 1.25rem;
  }
}

.js-companies-swiper {
  margin-top: 1.8125rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.swiper-wrapper {
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .swiper-wrapper {
    margin-left: 0;
  }
}

.swiper-slide {
  margin-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .swiper-slide {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    display: flex;
  }
}

.swiper__card {
  padding: 1.875rem;
  border-bottom-right-radius: 2.5rem;
  box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.25);
  background: #ffffff;
}

.swiper__card-image img {
  width: 100%;
}

.swiper__card-head {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .swiper__card-head {
    font-size: 1.4375rem;
  }
}

.swiper__card-body {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  row-gap: 1.125rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.swiper__card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 1.875rem;
  background: linear-gradient(90deg, #b3a457 0%, #ebd460 100%);
}

.swiper__card-item {
  display: flex;
  align-items: center;
  margin-top: -0.0625rem;
  line-height: 1.7;
}

.company-swiper-navigation {
  display: flex;
  justify-content: center;
  margin-top: 2.625rem;
  gap: 2rem;
}

.company-swiper-button-prev,
.company-swiper-button-next {
  position: static;
  width: 3.75rem;
  height: 3.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.company-swiper-button-prev::after,
.company-swiper-button-next::after {
  content: none;
}

.company-swiper-button-prev {
  background-image: url(../img/swiper-left-arrow.svg);
}

.company-swiper-button-next {
  background-image: url(../img/swiper-right-arrow.svg);
}

.case {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background: linear-gradient(90deg, #e8eae1 0%, #fff 69.71%);
}
@media screen and (max-width: 767px) {
  .case {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }
}

.case__contents {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .case__contents {
    margin-top: 3.75rem;
  }
}

.case__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
  row-gap: 3.125rem;
}
@media screen and (max-width: 1440px) {
  .case__cards {
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    row-gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .case__cards {
    display: flex;
    flex-direction: column;
  }
}

.case__card {
  padding: 1.25rem;
  background: #ffffff;
  background: #fff;
  box-shadow: 0rem 0rem 0.625rem 0rem rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.case__card-head {
  display: flex;
  justify-content: center;
  gap: 2.625rem;
}

.card-head__icon img {
  width: 6.25rem;
  height: 6.25rem;
}

.card-head__text {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5625rem;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .card-head__text {
    font-size: 1rem;
  }
}

.card-head__title {
  margin-left: 0.5625rem;
}

.case__card-reason {
  display: grid;
  grid-template-columns: 4.6875rem auto;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .case__card-reason {
    grid-template-columns: 3.75rem auto;
  }
}
@media screen and (max-width: 767px) {
  .case__card-reason {
    display: flex;
    flex-direction: column;
  }
}

.card-reason__label {
  color: #b3a457;
  font-weight: 700;
  background-color: #3b3b3b;
  padding: 1rem 1.125rem 1.25rem 1.1875rem;
  line-height: 1.5;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .card-reason__label {
    padding: 0.625rem 0.625rem 0.625rem 0.625rem;
    height: 4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .card-reason__label {
    padding: 0.3125rem 1.25rem;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .card-reason__label br {
    display: none;
  }
}

.card-reason__text {
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .card-reason__text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}

.case__card-salary {
  gap: 2.5rem;
  margin-top: 1.5rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .case__card-salary {
    gap: 1.25rem;
  }
}

.card-salary__before,
.card-salary__after {
  font-weight: 600;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

.card-salary__before-head,
.card-salary__after-head {
  font-size: 1.5rem;
  background-color: #bababa;
  text-align: center;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .card-salary__before-head,
  .card-salary__after-head {
    font-size: 1rem;
  }
}

.card-salary__before-body,
.card-salary__after-body {
  text-align: center;
  background-color: #d9d9d9;
  padding: 1.875rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 1440px) {
  .card-salary__before-body,
  .card-salary__after-body {
    padding: 1.25vw calc(25 * (100vw - 768px) / 672 + 5px) 1.5972222222vw calc(26 * (100vw - 768px) / 672 + 5px);
    padding: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .card-salary__before-body,
  .card-salary__after-body {
    padding-inline: 0.625rem;
  }
}

.card-salary__body-text1 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .card-salary__body-text1 {
    font-size: 0.6875rem;
  }
}

.card-salary__body-text2 {
  margin-top: 0.1875rem;
  font-size: 1.875rem;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .card-salary__body-text2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .card-salary__body-text2 {
    font-size: 0.875rem;
  }
}

.card-salary__number {
  font-size: 2.5rem;
  font-family: "Imbue";
  margin-right: 0.1875rem;
}
@media screen and (max-width: 1440px) {
  .card-salary__number {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .card-salary__number {
    font-size: 1.5rem;
  }
}

.card-salary-triangle {
  color: #b3a457;
  font-size: 1.625rem;
  position: absolute;
  top: 45%;
  left: 48%;
}
@media screen and (max-width: 767px) {
  .card-salary-triangle {
    font-size: 0.875rem;
  }
}

.card-salary__after {
  font-weight: 600;
}

.card-salary__after-head {
  background: linear-gradient(90deg, #b3a457 0%, #ebd460 100%);
}

.card-salary__after-body {
  background-color: #dfd49d;
}

.qa {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }
}

.qa__inner {
  max-width: 75rem;
}
@media screen and (max-width: 1440px) {
  .qa__inner {
    max-width: 64.375rem;
  }
}

.qa__boxes {
  margin-top: 5.1875rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .qa__boxes {
    margin-top: 3.75rem;
    gap: 0.625rem;
    max-width: 33.75rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa__box.is-open .qa__box-heading__toggle {
  transform: rotate(180deg);
}

.qa__box-heading {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.875rem;
  border-bottom: 0.0625rem solid #dedede;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .qa__box-heading {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    height: 5rem;
  }
}

.qa__box-heading__icon {
  color: #b3a457;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.875rem;
  line-height: 2.3333333333;
  letter-spacing: 0.0937em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .qa__box-heading__icon {
    font-size: 1.5rem;
  }
}

.qa__box-heading__text {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.053em;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .qa__box-heading__text {
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: normal;
    margin-right: 1.25rem;
  }
}

.qa__box-heading__toggle {
  background: url(../img/qa-toggle-icon.svg) no-repeat center center/contain;
  width: 1.25rem;
  height: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.1s ease;
}

.qa__box-body {
  display: none;
}

.qa__box-answer {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .qa__box-answer {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.qa__box-answer__icon {
  color: #3b3b3b;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.875rem;
  line-height: 2.3333333333;
  letter-spacing: 0.0937em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .qa__box-answer__icon {
    font-size: 1.5rem;
  }
}

.qa__box-answer__text {
  color: #3b3b3b;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.049em;
  font-weight: 500;
  margin-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .qa__box-answer__text {
    font-size: 0.875rem;
    line-height: normal;
    letter-spacing: normal;
  }
}

.contact {
  position: relative;
  padding-top: 7.4375rem;
  padding-bottom: 7.4375rem;
  background: url(../img/contact-bg.jpg) 0rem -129.875px/100% 400% no-repeat;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}

.contact__title {
  margin-bottom: 2.5rem;
  z-index: 2;
}

.contact__button {
  margin-left: auto;
  display: flex;
  margin-right: auto;
  justify-content: center;
}

.footer {
  background: #3b3b3b;
}

.footer__wrapper {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 3.75rem;
}

.footer__link {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 0.875rem;
  }
}

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