@charset "utf-8";

.article__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  align-items: flex-start;
}

.article__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .article__sidebar {
    display: block;
    position: sticky;
    top: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .article__sidebar {
    top: 40px;
  }
}

.article__contents {
  width: min(100%, 861px);
}
.toc {
}
.toc__title-en {
  font-family: "Raleway", sans-serif;
  color: #32634B;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(24 / 18);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.toc__title-ja {
  color: #32634B;
  font-size: 12px;
  font-weight: 500;
  line-height: calc(16 / 12);
  letter-spacing: 0.02em;
  padding-bottom: 32px;
  margin-bottom: 26px;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    width: 31px;
    height: 1.5px;
    background: #D0D0D0;
    bottom: 0;
    left: 0;
  }
}
.toc li.js-active > a {
  text-decoration: underline;
}
.toc .list_2 {
  counter-reset: li;
}
.toc .list_2 li + li {
  margin-top: 9px;
}
.toc a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: calc(30 / 14);
  letter-spacing: 0.05em;
  display: flex;
  gap: 11px;
  align-items: center;
  white-space: nowrap;

  &::before {
    content: "";
    background: url('../images/arrow-toc.svg') center / contain no-repeat;
    width: 5px;
    height: 8px;
  }
  
  &:hover {
    opacity: 0.8;
  }
}

.l-detail {
  padding: 100px 0 210px;
  background: #F5F5F3;
  position: relative;
  z-index: 3;
}
.l-detail__radius {
  margin-top: -40px;
  border-radius: 40px 40px 0 0;
}


.detail__wrap {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.detail__item {
  padding-bottom: 92px;
  border-bottom: 1px solid #DBDFE2;
}
.detail__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.detail__title  {
  font-family: "Kosugi", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #363636;
}
.detail__title-sub {
  margin: 7px 0 0 2px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #32634B;
}

.detail__copy {
  margin-top: 47px;
  font-family: "Kosugi", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(45 / 34);
}
@media screen and (min-width: 768px) {
  .detail__copy {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .detail__copy {
    font-size: 34px;
  }
}
.detail__copy-wrap {
  margin-top: 50px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1100px) {
    .detail__copy-wrap {
        margin-top: -6px;
      flex-direction: row;
      align-items: center;
  }
}
.detail__copy-wrap .detail__copy {
  margin-top: 0;
}
.detail__copy-img {
  width: min(60%, 382px);
  height: auto;
  transform: translateY(7px);
      margin-left: auto;
}
@media screen and (min-width: 1100px) {
  .detail__copy-img {
    width: min(calc(382 / 1366 * 100vw), 382px);
    margin: 0;
  }
}

.detail__img-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media screen and (min-width: 1100px) {
  .detail__img-wrap {
    flex-direction: row;
    align-items: center;
  }
}

.detail__img {
  margin: 0 auto;
  aspect-ratio: 350 / 367;
  width: min(100%, 550px);
  height: auto;
  object-fit: cover;       
  flex-shrink: 0;
  border-radius: 5px;
}
@media screen and (min-width: 1100px) {
  .detail__img {
    margin: 0;
    width: min(calc(350 / 1366 * 100vw), 350px);
  }
}

.detail__en-border {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #32634B;
  display: flex;
  align-items: center;
  gap: 12px;

  &::after {
    content: "";
    width: 100%;
    height: 1px;
    background-image: radial-gradient(circle, #b9b9b9 0.5px, transparent 0.5px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 4px 1px;
  }
}

.about__swiper,
.about__swiper-wrapper,
.about__swiper-slide {
  position: relative;
}
.about__swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: flex-start;
}
.about__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 350 / 367;
  max-width: 350px;
  width: 100%;
}
.about__swiper-slide img {
  aspect-ratio: 350 / 367;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.about__wrap {
  display: flex;
  gap: 51px;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .about__wrap {
    flex-direction: row;
  }
}
.about__img {
  margin: 0 auto;
  aspect-ratio: 350 / 260;
  width: min(100%, 450px);
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .about__img {
    margin: 0;
    width: min(calc(350 / 1366 * 100vw), 350px);
  }
}

.features__item-img {
  margin: 0 auto;
  aspect-ratio: 860 / 440;
  width: min(100%, 860px);
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.features__body {
  display: flex;
  gap: 46px;
  margin-top: 40px;
  align-items: center;
}
.features__item-num {
  display: none;
}
@media screen and (min-width: 1024px) {
  .features__item-num {
    display: block;
    width: min(calc(158 / 1366 * 100vw), 158px);
    transform: translateY(-14px);
  }
}

.flow__wrap {
  display: flex;
  gap: 79px;
  align-items: center;
  flex-direction: column;
}

.flow__item {
  display: flex;
  gap: 49px;
  align-items: center;
  flex-direction: column;
  position: relative;
  &::after {
    content: "";
    position: absolute;
    bottom: -49px;
    left: 50%;
    transform: translateX(-50%);
    background: #B1C3B8;
    width: 39px;
    height: 19px;
    clip-path: polygon(50% 100%, 0 0, 100% 0); 
  }
  &:last-of-type::after {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .flow__item {
    flex-direction: row;
  }
}

.flow__img {
  margin: 0 auto;
  aspect-ratio: 358 / 252;
  width: min(100%, 550px);
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 1100px) {
  .flow__img {
    margin: 0;
    width: min(calc(358 / 1366 * 100vw), 358px);
  }
}

.tfwall__lists {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
  grid-auto-rows: 1fr;
}
.tfwall__list {
  padding: 15px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #32634B;
  text-align: center;
  display: grid;
  place-items: center;
}

.reason__wrap {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.reason__item-wrap {
  display: flex;
  gap: 40px;
  margin-top: 50px;

  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1300px) {
  .reason__item-wrap {
    flex-direction: row;
    align-items: start;
  }
}

.c17727 {
  max-width: 500px;
}

.reason__item-img {
  margin: 0 auto;
  aspect-ratio: 358 / 252;
  width: min(100%, 550px);
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 1300px) {
  .reason__item-img {
    margin: 0;
    width: min(calc(358 / 1366 * 100vw), 358px);
  }
}
.reason__item-num {
  width: 112px;
  height: auto;
  position: absolute;
  bottom: -30px;
  right: 0;
  display: none;
}
@media screen and (min-width: 900px) {
  .reason__item-num {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .reason__item-num {
    bottom: -13px;
    right: 13px;
  }
}

.service__wrap {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.service__item-wrap {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1100px) {
  .service__item-wrap {
    flex-direction: row;
    align-items: end;
  }
}

.service__item-box {
  margin-top: 32px;
  background: #fff;
  border-radius: 5px;
  padding: 28px 40px 40px;
}
.c13631  {
  border-bottom: 1px solid #D4D4D4;
}
.service__item-box-wrap {
  margin: 32px auto 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .service__item-box-wrap {
    margin: 32px auto 0;
    display: grid;
    gap: 34px 39px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service__item-box-item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;

  &::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #656565;
    border-radius: 50%;
  }
}

.service__item-img {
  margin: 0 auto;
  aspect-ratio: 358 / 431;
  width: min(100%, 550px);
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 1100px) {
  .service__item-img {
    margin: 0;
    width: min(calc(358 / 1366 * 100vw), 358px);
  }
}

.service__lists {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.service__list {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 6px;
  width: fit-content;
  position: relative;

  &::before {
    content: "";
    width: 22px;
    height: 22px;
    background: url('../images/icon-check.svg') center / contain no-repeat;
  }

  &::after {
    content: "";
    position: absolute;
    width: calc(100% - 35px);
    height: 1px;
    background-image: radial-gradient(circle, #b9b9b9 0.5px, transparent 0.5px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 4px 1px;
    bottom: 0;
    right: 0;
  }
}

.faq__item {
  margin-top: 50px;
  padding: 30px 20px 35px;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding: 36px 48px 35px 40px;
  }
}

.faq__item + .faq__item {
  margin-top: 20px;
}

.faq__q,
.faq__a {
  display: flex;
  gap: 15px;
  align-items: start;
}

.faq__q {
  padding-bottom: 21px;
  background-image: radial-gradient(circle, #b9b9b9 0.5px, transparent 0.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 4px 1px;
}

.faq__q-head,
.faq__a-head {
  margin-top: 5px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #32634B; 
  font-family: "Raleway", sans-serif;
  flex-shrink: 0;
}

.faq__q-body,
.faq__a-body {
  font-size: 14px;
  font-weight: 400;
  line-height: calc(28 / 14);
  letter-spacing: 0.04em;
}

.faq__a {
  margin-top: 11px;
}
.faq__a-head {
  color: #617E6D;
}


.company__name {
  display: flex;
  align-items: center;
  gap: 11px;

  &::before {
    content: "";
    width: 1px;
    height: 45px;
    background: #32634B;
  }
}

.c-table {
  display: flex;
  position: relative;
  padding: 30px 0;
  flex-wrap: nowrap;
}
.c-table::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: #32634B;
  top: 0;
  left: 0;
}

.c-table::after {
  content: "";
  position: absolute;
  width: calc(100% - 100px);
  height: 1px;
  background: #DBDFE1;
  top: 0;
  right: 0;
}

.c-table:first-of-type::before,
.c-table:first-of-type::after {
  display: none;
}
.c-table:last-of-type {
  padding-bottom: 0;
}

.c-table__head {
  flex-shrink: 0;
  width: 100px;
}

.c-table__body {
  flex-grow: 1;
  padding: 0 0 0 20px;
}
@media (min-width: 768px) {
  .c-table__body {
    padding: 0 0 0 60px;
  }
}

.access__map {
  width: 100%;
  height: 360px;
}
@media screen and (min-width: 1300px) {
  .access__map {
    aspect-ratio: 860/500;
    height: 100%;
  }
}

.access__map div,
.access__map div iframe {
  border: none;
  width: 100%;
  height: 100%;
}