@charset "utf-8";
/* *************************************
hamburger
************************************* */
.hamburger {
  width: fit-content;
  text-align: center;
}

@media (any-hover: hover) {
  .hamburger:hover {
    cursor: pointer;
  }
}

.hamburger__btn {
  padding: calc(8 * var(--rem));
}

.hamburger__btn span {
  display: block;
  width: calc(32 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--white);
  transition: 0.3s ease;
}

.header.is-active .hamburger__btn span,
.hamburger.is-open .hamburger__btn span,
.header.not-front .hamburger__btn span {
  background-color: var(--black);
}

.hamburger__btn span:nth-child(2) {
  margin: calc(8 * var(--rem)) 0;
}

/* is-open */
.hamburger.is-open .hamburger__btn span:nth-child(1) {
  transform: translateY(calc(10 * var(--rem))) rotate(45deg);
}
.hamburger.is-open .hamburger__btn span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__btn span:nth-child(3) {
  transform: translateY(calc(-10 * var(--rem))) rotate(-45deg);
}

.hamburger__menu,
.hamburger__close {
  text-transform: uppercase;
  font-size: calc(12 * var(--rem));
  font-weight: bold;
  color: var(--white);
  line-height: 1;
}

.header.is-active .hamburger__menu,
.header.is-active .hamburger__close,
.header.not-front .hamburger__menu,
.hamburger__menu .hamburger__close {
  color: var(--black);
}

.hamburger.is-open .hamburger__menu {
  display: none;
}

.hamburger__close {
  display: none;
}

.hamburger.is-open .hamburger__close {
  display: block;
  color: var(--black);
}

/* *************************************
page-hed
************************************* */
.page-head {
  position: relative;
  height: calc(250 * var(--rem));
  margin-block-start: calc(80 * var(--rem));
}

.page-head::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00000050;
  position: absolute;
  inset: 0;
}

.page-head__img {
  height: inherit;
}

.page-head__img img {
  aspect-ratio: 1440/250;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-head__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: grid;
  row-gap: calc(8 * var(--rem));
  width: 100%;
  padding: calc(16 * var(--rem));
}

.page-head__title-jp {
  font-size: calc(40 * var(--rem));
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.page-head__title-en {
  font-size: calc(20 * var(--rem));
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
  color: var(--white);
  text-transform: uppercase;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.page-head.page-head--recruit .page-head__img img,
.page-head.page-head--news-post .page-head__img img {
  object-position: 50% 77%;
}

/* *************************************
btn1
************************************* */
.btn1 {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  min-width: calc(385 * var(--rem));
  background-color: var(--green);
  color: var(--white);
  font-size: calc(20 * var(--rem));
  letter-spacing: 0.015em;
  padding: calc(24 * var(--rem)) calc(16 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    min-width: calc(280 * var(--rem));
    font-size: calc(18 * var(--rem));
  }
}

.btn1::before {
  content: '';
}

.btn1::after {
  content: '';
  display: block;
  width: calc(13 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/btn-arrow.svg) no-repeat center / contain;
}

.btn1.btn1--transparent {
  background-color: transparent;
  border: 1px solid var(--white);
}

/* *************************************
title1
************************************* */
.title1 {
  display: inline-grid;
  justify-items: center;
}

.title1__jp {
  font-size: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(32 * var(--rem));
  }
}

.title1__en {
  display: inline-flex;
  align-items: center;
  gap: calc(10 * var(--rem));
  font-size: calc(18 * var(--rem));
  text-transform: uppercase;
  color: var(--green);
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.title1__en::before {
  content: '';
  display: block;
  width: calc(1 * var(--rem));
  height: 65%;
  background-color: var(--green);
  transform: rotate(45deg);
}

.title1.title1--white {
  .title1__jp,
  .title1__en {
    color: var(--white);
  }

  .title1__en::before {
    background-color: var(--white);
  }
}

.title1.title1--left {
  justify-items: self-start;
  @media (width < 768px) {
    justify-items: center;
  }
}

.title1.title1--left .title1__en {
  text-align: left;
  margin-inline-start: calc(16 * var(--rem));
  @media (width < 768px) {
    text-align: center;
    margin-inline-start: 0;
  }
}

/* *************************************
title2
************************************* */
.title2 {
  font-size: calc(45 * var(--rem));
  letter-spacing: 0.005em;
  border-bottom: 1px solid var(--border);
  padding-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.title2 span {
  font-size: calc(50 * var(--rem));
  color: var(--green);
  @media (width < 768px) {
    font-size: calc(32 * var(--rem));
  }
}

/* *************************************
title3
************************************* */
.title3 {
  font-size: calc(35 * var(--rem));
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  gap: calc(32 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.title3::before,
.title3::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 100%;
  background-color: var(--green);
  rotate: 35deg;
}

.title3.title3--w {
  color: var(--white);
}

.title3.title3--w::before,
.title3.title3--w::after {
  background-color: var(--white);
}

/* *************************************
title4
************************************* */
.title4 {
  font-size: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.title4 span {
  font-size: calc(50 * var(--rem));
  color: var(--green);
  @media (width < 768px) {
    font-size: calc(35 * var(--rem));
  }
}

/* *************************************
title5
************************************* */
.title5 {
  text-align: center;
}

.title5__jp {
  font-size: calc(40 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(28 * var(--rem));
    line-height: 1.3;
  }
}

.title5__jp::first-letter {
  color: var(--green);
}

.title5__en {
  font-size: calc(24 * var(--rem));
  text-transform: capitalize;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: calc(4 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.title5__en::before,
.title5__en::after {
  content: '';
  display: grid;
  width: calc(20 * var(--rem));
  height: 1px;
  background-color: var(--black);
}

.title5.title5--white {
  .title5__jp,
  .title5__en {
    color: var(--white);
  }

  .title5__en::before,
  .title5__en::after {
    background-color: var(--white);
  }
}

/* *************************************
card1
************************************* */
.card1 {
}

.card1__title-block {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: self-end;
  gap: calc(32 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--rem));
    justify-items: center;
  }
}

.card1__left {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.card1__num-en {
  color: var(--green);
  font-size: calc(22 * var(--rem));
  font-weight: bold;
  writing-mode: sideways-lr;
  text-transform: uppercase;
  font-family: var(--font-en);
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.card1__num {
  font-size: calc(140 * var(--rem));
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.1em;
  color: var(--green);
  font-family: var(--font-en);
  @media (width < 768px) {
    font-size: calc(80 * var(--rem));
  }
}

.card1__right {
  padding-block-end: calc(18 * var(--rem));
  display: grid;
  gap: calc(8 * var(--rem));
  @media (width < 768px) {
    padding-block-end: 0;
    text-align: center;
  }
}

.card1__title-sub {
  color: var(--green);
  font-size: calc(22 * var(--rem));
  font-weight: bold;
  @media (width < 768px) {
    line-height: 1.4;
  }
}

.card1__title {
  font-size: calc(55 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(38 * var(--rem));
  }
}

.card1__title span {
  font-size: calc(38 * var(--rem));
  margin-inline-start: calc(14 * var(--rem));
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
    margin-block-start: calc(16 * var(--rem));
  }
}

.card1__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: calc(54 * var(--rem));
  margin-block-start: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    margin-inline: calc(50% - 50vw);
    margin-block-start: calc(24 * var(--rem));
    gap: calc(40 * var(--rem));
  }
}

.card1__text {
  margin-block-start: calc(-12 * var(--rem));
  padding-inline-start: calc(22 * var(--rem));
  font-size: calc(20 * var(--rem));
  line-height: 2;
  @media (width < 768px) {
    order: 2;
    padding-inline: 20px;
    font-size: calc(16 * var(--rem));
  }
}

.card1__img {
  /* width: 60%; */
  @media (width < 768px) {
    width: 100%;
    order: 1;
  }
}

.card1__img img {
  aspect-ratio: 1000 /674;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
card1-list
************************************* */
.card1-list {
}

.card1-list__item {
  position: relative;
  display: flex;
  gap: 12%;
  padding-block: calc(40 * var(--rem)) calc(68 * var(--rem));
  @media (width < 768px) {
    flex-direction: column;
    gap: calc(40 * var(--rem));
  }
}

.card1-list__item::before {
  content: '';
  display: block;
  background-color: var(--gray);
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0% 100%, 74% 100%);
}

.card1-list__left {
  padding-block-start: calc(27 * var(--rem));
  padding-inline-start: calc(96 * var(--rem));
  position: relative;
  @media (width < 768px) {
    padding: 0;
  }
}

.card1-list__right {
  min-width: calc(275 * var(--rem));
  position: relative;
  @media (width < 768px) {
    min-width: 100%;
  }
}

.card1-list__img {
  margin-inline-start: auto;
}

.card1-list__img img {
  aspect-ratio: 800 / 1342;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 反転 */
.card1-list__item:nth-last-child(even) {
  flex-direction: row-reverse;

  @media (width < 768px) {
    flex-direction: column;
  }
}

.card1-list__item:nth-last-child(even)::before {
  clip-path: polygon(100% 0, 100% 100%, 26% 100%);
}

.card1-list__item:nth-last-child(even) .card1-list__left {
  padding-inline: 0 calc(96 * var(--rem));

  @media (width < 768px) {
    padding-inline: 0;
  }
}

/* *************************************
post-list
************************************* */
.post-list {
}

.post-list__item a {
  display: grid;
  grid-template-columns: calc(90 * var(--rem)) 1fr;
  gap: calc(32 * var(--rem));
  align-items: center;
  padding: calc(14 * var(--rem)) calc(10 * var(--rem));
  border-top: 1px solid var(--border);
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--rem));
    padding-block: calc(16 * var(--rem));
  }
}

.post-list__item:last-child {
  border-bottom: 1px solid var(--border);
}

.post-list__time {
  color: var(--green);
  font-weight: bold;
}

/* *************************************
top-btn
************************************* */
.top-btn {
  display: grid;
  place-content: center;
  width: calc(70 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--green);
  padding: calc(10 * var(--rem));
  @media (width < 768px) {
    width: calc(60 * var(--rem));
  }
}

.top-btn img {
  margin-inline: auto;
  aspect-ratio: 1;
  width: calc(30 * var(--rem));
  object-fit: contain;
  transform: rotate(-90deg);
}

/* *************************************
link-text
************************************* */
.link-text {
  display: inline-flex;
  align-items: center;
  gap: calc(4 * var(--rem));
  padding: calc(10 * var(--rem));
}

.link-text::after {
  content: '';
  display: block;
  width: calc(10 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/text-arrow.svg) no-repeat center / contain;
  margin-block-start: calc(2 * var(--rem));
}

/* *************************************
scroll-down
************************************* */
.scroll-down {
  position: relative;
   rotate: -90deg;

}

.scroll-down > p {
  color: #000;
  font-size: calc(16 * var(--rem));
  text-transform: uppercase;
  color: var(--green);
  line-height: 1;
}

.scroll-down:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(13 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--green);
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  z-index: 1;
  rotate: 45deg;
}

@keyframes circlemove {
  0% {
    left: calc(-20 * var(--rem));
  }
  100% {
    left: calc(-100 * var(--rem));
  }
}
@media (width < 768px) {
  @keyframes circlemove {
    0% {
      left: calc(-20 * var(--rem));
    }
    100% {
      left: calc(-100 * var(--rem));
    }
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scroll-down:after {
  content: '';
  position: absolute;
  bottom: calc(6 * var(--rem));
  left: -94%;
  width: calc(100 * var(--rem));
  height: 1px;
  background-color: var(--black);
}
/* *************************************
track-animation
************************************* */
.track-animation {
  position: relative;
  min-height: calc(135 * var(--rem));
  padding-block-end: calc(90 * var(--rem));
  overflow: hidden;
  @media (width < 768px) {
    min-height: auto;
    padding-block-end: calc(40 * var(--rem));
  }
}

.track-animation__town {
}

.track-animation__town img {
  aspect-ratio: 300 / 21;
  width: 100%;
  height: 100%;
  object-fit: contain;
  @media (width < 768px) {
    aspect-ratio: 100/21;
    object-fit: cover;
  }
}

.track-animation__truck {
  width: calc(156 * var(--rem));
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translate(-50%, 0%);
  animation-name: upDown, moveAcross;
  animation-iteration-count: infinite;
  animation-duration: 0.1s, 10s;
  animation-direction: alternate, normal;
  animation-timing-function: steps(2), linear;
  transition-duration: 0.3s;
  transition-property: transform;

  @media (width < 768px) {
    width: calc(100 * var(--rem));
  }
}

.track-animation__truck img {
  aspect-ratio: 276 / 150;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アニメーション */
@keyframes upDown {
  0% {
    top: calc(96 * var(--rem));
  }
  100% {
    top: calc(92 * var(--rem));
  }
}

@media (width < 768px) {
  @keyframes upDown {
    0% {
      top: 54%;
    }
    100% {
      top: 56%;
    }
  }
}

@keyframes moveAcross {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 200px));
  }
}

/* *************************************
triangular-text
************************************* */
.triangular-text {
  font-size: calc(16 * var(--rem));
  font-weight: bold;
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
}

.triangular-text::before {
  content: '';
  display: block;
  width: calc(16 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/arrow.svg) no-repeat center / contain;
}

/* *************************************
atc
************************************* */
.atc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(56 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.atc-item {
  background-color: var(--white);
  padding: calc(58 * var(--rem));
  @media (width < 768px) {
    padding-inline: calc(24 * var(--rem));
  }
}

.atc__title {
  text-align: center;
  font-size: calc(20 * var(--rem));
  text-transform: uppercase;
}

.atc__link {
  display: block;
  margin-block-start: calc(16 * var(--rem));
}

.atc__link + .atc__link {
  margin-block-start: calc(8 * var(--rem));
}

.atc__tel {
  text-align: center;
  text-transform: uppercase;
  color: var(--green);
  font-size: calc(25 * var(--rem));
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 1;
}

.atc__tel span {
  font-size: calc(46 * var(--rem));
  margin-block-start: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(32 * var(--rem));
  }
}

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

.atc__time {
  text-align: center;
  font-size: calc(18 * var(--rem));
  font-weight: bold;
}

.atc__btn {
  margin-block-start: calc(42 * var(--rem));
  text-align: center;
}

/* *************************************
card2-list
************************************* */
.card2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem)) calc(24 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.card2-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

/* *************************************
card2
************************************* */
.card2 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  border: 2px solid var(--green);
  padding-block-end: calc(16 * var(--rem));
  gap: 0;
}

.card2__img img {
  aspect-ratio: 500 /337;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card2__img img.noimage {
  padding: calc(8 * var(--rem));
  object-fit: contain;
  border-bottom: 1px solid var(--gray);
}

.card2__wrap {
  width: 90%;
  margin-inline: auto;
  margin-block-start: calc(24 * var(--rem));
  padding-block-end: calc(8 * var(--rem));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: self-start;
  border-bottom: 2px solid var(--green);
  gap: calc(8 * var(--rem));
}

.card2__cat {
  background-color: var(--green);
  font-size: calc(14 * var(--rem));
  color: var(--white);
  text-transform: uppercase;
  padding: calc(4 * var(--rem));
  width: calc(70 * var(--rem));
  text-align: center;
}

.card2t__title {
  font-size: calc(18 * var(--rem));
  margin-block-start: calc(-6 * var(--rem));
}

.card2-list__time {
  display: block;
  text-align: center;
  margin-block-start: calc(16 * var(--rem));
  color: var(--green);
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* *************************************
card3-list
************************************* */
.card3-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(64 * var(--rem)) calc(32 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.card3-list__item a {
  display: block;
  position: relative;
}

.card3-list__img {
}

.card3-list__img img {
  aspect-ratio: 624 /416;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card3-list__img img.noimage {
  width: 90%;
  object-fit: contain;
  margin-inline: auto;
}

.card3-list__wrap {
  display: grid;
  gap: calc(16 * var(--rem));
  position: absolute;
  bottom: calc(16 * var(--rem));
  left: 0;
  @media (width < 768px) {
    gap: calc(4 * var(--rem));
    bottom: calc(8 * var(--rem));
  }
}

.card3-list__position {
  background-color: var(--green);
  width: fit-content;
  padding-inline: calc(32 * var(--rem));
  font-size: calc(20 * var(--rem));
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding-inline: calc(16 * var(--rem));
  }
}

.card3-list__name {
  background-color: var(--green);
  width: fit-content;
  padding-inline: calc(32 * var(--rem));
  padding-block: calc(8 * var(--rem));
  font-size: calc(26 * var(--rem));
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    padding-inline: calc(16 * var(--rem));
    padding-block: calc(4 * var(--rem));
  }
}

/* *************************************
slider1
************************************* */
.slider1__swiper {
  display: grid;
}

.slider1__wrapper {
}

.slider1__item {
  display: grid;
}

.swiper-button-next.slider1-button-next,
.swiper-button-prev.slider1-button-prev {
  color: var(--green);
}

/* *************************************
table1
************************************* */
.table1 {
  display: grid;
  gap: calc(32 * var(--rem));
}

.table1__item {
  display: grid;
  grid-template-columns: calc(100 * var(--rem)) 1fr;
  gap: calc(26 * var(--rem));
  align-items: self-start;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--rem));
  }
}

.table1__item dt {
  padding: calc(8 * var(--rem));
  border-bottom: 1px solid var(--green);
  text-align: center;
  @media (width < 768px) {
    text-align: left;
    width: fit-content;
  }
}

.table1__item dd {
  border-bottom: 1px solid var(--gray);
  padding: calc(8 * var(--rem)) calc(16 * var(--rem));
}

.table1__item p {
  margin-block-end: 1em;
}

.table1.table1--2col {
  grid-template-columns: repeat(2, 1fr);
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.table1.table1--2col .table1__item {
  grid-template-columns: 1fr auto;
}

.table1.table1--2col .table1__item {
  border-bottom: 1px solid var(--green);
}

.table1.table1--2col .table1__item dt {
  text-align: left;
  border-bottom: none;
}

.table1.table1--2col .table1__item dd {
  border-bottom: none;
}

/* *************************************
table2
************************************* */
.table2 {
  border: 1px solid var(--green);
  padding: calc(24 * var(--rem));
  background-color: var(--white);
}

.table2__item {
  display: grid;
  grid-template-columns: calc(200 * var(--rem)) 1fr;
  align-items: self-start;
  border-bottom: 1px solid var(--green);
  padding-block: calc(16 * var(--rem));
  padding-inline: calc(8 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    border-bottom: none;
    gap: calc(8 * var(--rem));
    padding-block: calc(24 * var(--rem));
  }
}

.table2__item:last-child {
  border-bottom: none;
}

.table2__item > dt {
  @media (width < 768px) {
    border-bottom: 1px solid var(--green);
    padding-block-end: calc(8 * var(--rem));
  }
}

.table2__child {
  display: grid;
  gap: calc(16 * var(--rem));
}

.table2__child-item {
  display: grid;
  gap: calc(4 * var(--rem));
}

.table2__child-item dt {
  color: var(--green);
}

.table2__child-item p {
  margin-block-end: 1em;
}

.table2__list {
  display: grid;
  gap: calc(12 * var(--rem));
}

.table2__list-item {
  position: relative;
  padding-inline-start: calc(14 * var(--rem));
}

.table2__list-item::before {
  content: '';
  display: block;
  width: calc(6 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--green);
  border-radius: 100vmax;
  position: absolute;
  top: calc(10 * var(--rem));
  left: 0;
}

.table2__item-wrap {
  margin-block-start: calc(16 * var(--rem));
  margin-inline-start: calc(24 * var(--rem));
  padding-inline-start: calc(8 * var(--rem));
}

.table2__item-wrap p:first-child {
  display: inline-block;
  border-bottom: 1px solid var(--green);
  padding-inline: calc(8 * var(--rem));
}

/* *************************************
flow-list
************************************* */
.flow-list {
  display: grid;
}

.flow-list__item {
  padding-block: calc(52 * var(--rem));
  counter-increment: num;
  display: grid;
  gap: calc(16 * var(--rem));
  position: relative;
  @media (width < 768px) {
    padding-block: calc(24 * var(--rem));
  }
}

.flow-list__item::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--green);
  position: absolute;
  top: calc(63 * var(--rem));
  left: calc(35 * var(--rem));
  @media (width < 768px) {
    left: calc(24 * var(--rem));
  }
}

.flow-list__item:last-child:before {
  display: none;
}

.flow-list__title {
  display: inline-grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: calc(24 * var(--rem));
  font-size: calc(26 * var(--rem));
  line-height: 1;
}

.flow-list__title::before {
  content: 'step' '\A'counter(num, decimal-leading-zero);
  white-space: pre;
  display: grid;
  place-content: center;
  text-align: center;
  background-color: var(--green);
  border-radius: 100vmax;
  font-size: calc(20 * var(--rem));
  width: calc(70 * var(--rem));
  aspect-ratio: 1;
  color: var(--white);
  text-transform: capitalize;
  outline: 10px solid #9cc48d80;
  position: relative;
  z-index: 1;
  @media (width < 768px) {
    width: calc(50 * var(--rem));
    font-size: calc(16 * var(--rem));
    outline: 6px solid #9cc48d80;
  }
}

.flow-list__text {
  padding-inline-start: calc(80 * var(--rem));
  @media (width < 768px) {
    padding-inline-start: calc(52 * var(--rem));
  }
}

/* *************************************
faq-list
************************************* */
.faq-list {
  display: grid;
  gap: calc(40 * var(--rem));
}

.faq-list__item {
  display: flex;
  align-items: center;
  gap: calc(24 * var(--rem));
  padding-inline-end: calc(80 * var(--rem));
  padding-block: calc(80 * var(--rem));
  position: relative;
  @media (width < 768px) {
    flex-direction: column;
    padding: calc(20 * var(--rem)) 0;
  }
}

.faq-list__item::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: #ecf4ea;
  clip-path: polygon(0 18%, 80% 18%, 80% 100%, 0% 100%);
}

.faq-list__item:nth-child(even) {
  flex-direction: row-reverse;
  padding-inline: calc(80 * var(--rem)) 0;
  @media (width < 768px) {
    padding-inline: 0;
    flex-direction: column;
  }
}

.faq-list__item:nth-child(even)::before {
  clip-path: polygon(20% 18%, 100% 18%, 100% 100%, 20% 100%);
}

.faq-list__img {
  width: 50%;
  position: relative;
  z-index: 1;
  @media (width < 768px) {
    width: 100%;
  }
}

.faq-list__img img {
  aspect-ratio: 1440 /960;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list__table {
  width: 50%;
  padding: calc(64 * var(--rem)) calc(40 * var(--rem));
  display: grid;
  gap: calc(24 * var(--rem));
  background-color: var(--white);
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 0.2);
  border-left: 3px solid var(--green);
  position: relative;
  z-index: 1;
  @media (width < 768px) {
    width: 95%;
    margin-inline: auto;
    padding: calc(40 * var(--rem)) calc(20 * var(--rem));
  }
}

.faq-list__table dt {
  font-weight: bold;
}

/* *************************************
pagination
************************************* */
.pagination {
  .page-numbers {
    display: flex;
    gap: calc(16 * var(--rem));
    justify-content: center;
  }

  a {
    border: 1px solid var(--green);
    padding: calc(10 * var(--rem));
    @media (width < 768px) {
      padding: calc(8 * var(--rem));
    }
  }

  span {
    background-color: var(--green);
    color: var(--white);
    padding: calc(10 * var(--rem));
    @media (width < 768px) {
      padding: calc(8 * var(--rem));
    }
  }
}

/* *************************************
columns
************************************* */
.columns {
  margin-block-start: calc(104 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(80 * var(--rem));
  }
}
.columns__pagination {
  margin-block-start: calc(40 * var(--rem));
}

/* *************************************
flow2-list
************************************* */
.flow2-list {
}

.flow2-list__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(40 * var(--rem));
  padding-block: calc(80 * var(--rem));
  position: relative;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    padding-block: calc(40 * var(--rem));
    gap: calc(24 * var(--rem));
  }
}

.flow2-list__item::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: var(--gray);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.flow2-list__item:nth-child(even):before {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.flow2-list__img {
  max-height: calc(500 * var(--rem));
  position: relative;
  z-index: 1;
  @media (width < 768px) {
    order: 2;
  }
}

.flow2-list__img img {
  aspect-ratio: 1000 / 674;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow2-list__wrap {
  display: grid;
  place-content: center;
  padding-inline-start: calc(80 * var(--rem));
  position: relative;
  z-index: 1;
  @media (width < 768px) {
    display: contents;
  }
}

.flow2-list__title {
  padding-block-end: calc(10 * var(--rem));
  display: grid;
  gap: calc(8 * var(--rem));
  border-bottom: 2px solid var(--green);
  @media (width < 768px) {
    text-align: center;
    order: 1;
    position: relative;
    z-index: 1;
    width: calc(100% -40px);
    margin-inline: auto;
  }
}

.flow2-list__title-sub {
  color: var(--green);
  font-size: calc(22 * var(--rem));
  font-weight: bold;
  @media (width < 768px) {
    line-height: 1.4;
  }
}

.flow2-list__title-main {
  font-size: calc(55 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(38 * var(--rem));
  }
}

.flow2-list__title-main span {
  font-size: calc(38 * var(--rem));
  margin-inline-start: calc(14 * var(--rem));
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.flow2-list__text {
  margin-block-start: calc(24 * var(--rem));
  @media (width < 768px) {
    order: 3;
    position: relative;
    z-index: 1;
    padding-inline: 20px;
    margin-block-start: 0;
  }
}

.flow2-list__text p {
  margin-block-end: 1em;
}
