@charset "utf-8";

.l-detail {
  padding: 80px 0 100px;
  background: #F8F8F8;
}
@media screen and (min-width: 768px) {
  .l-detail {
    padding: 110px 0 150px;
  }
}

.product__wrap {
  display: flex;
  align-items: start;
  gap: 60px;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .product__wrap {
    flex-direction: row;
    gap: min(calc(120 / 1366 * 100vw), 120px);
  }
}

.product__wrap02 {
  display: flex;
  align-items: start;
  gap: 60px;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .product__wrap02 {
    flex-direction: row;
    gap: min(calc(120 / 1366 * 100vw), 120px);
  }
}


.product__copy {
  width: min(80%, 536px);
  height: auto;
}
.video__copy {
  width: min(100%, 698px);
  height: auto;
}

.product__links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(100%, 400px);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .product__links {
    width: min(40%, 400px);
  }
}
@media screen and (min-width: 900px) {
  .product__links {
    width: min(calc(400 / 1366 * 100vw), 400px);
    margin-top: 68px;
  }
}

.product__wrap02 .product__links {
  width: min(100%, 400px);
}
@media screen and (min-width: 768px) {
  .product__wrap02 .product__links {
    width: min(60%, 400px);
  }
}
@media screen and (min-width: 1200px) {
  .product__wrap02 .product__links {
    width: min(calc(400 / 1366 * 100vw), 400px);
  }
}

.product__link {
  padding-bottom: 23px;
  border-bottom: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
   font-family: "Noto Sans JP", sans-serif;

  &::after {
    content: "";
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url('../images/product-down.svg');
    background: #333333;
    width: 12px;
    height: 11px;
    flex-shrink: 0;
  }
  
  &:hover {
   opacity: 0.7;
  }
}
@media screen and (min-width: 1100px) {
  .product__link {
    padding-bottom: 37px;
  }
}

.video .product__link {
  border-bottom: 1px solid #FFFFFF;

  &::after {
    content: "";
    background: #FFFFFF;
    width: 12px;
    height: 11px;
    flex-shrink: 0;
  }
}

.service__num {
  display: flex;
  gap: 64px;
  align-items: center;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background: #333333;
    top: 61%;
    left: 28px;
    transform: translateY(-50%);
  }
}

.service__wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .service__wrap {
    flex-direction: row;
  }
  .service__contents  {
    margin-top: 70px;
  }
}

.service__item {
  flex-shrink: 0;
}
@media screen and (min-width: 1100px) {
  .service__wrap {
    flex-direction: row;
  }
  .service__contents  {
    margin-top: 70px;
  }
}

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

.recruit__wrap {
  margin-top: 69px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 45px;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .recruit__wrap {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

.recruit__num {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 25px;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 30px;
    transform: translateX(-50%);
    border: 2px solid #dcdcdc;
    border-bottom: none;
    border-radius: 60px 60px 0 0;
    box-sizing: border-box;
  }
}

.recruit__title {
  font-size: 20px !important;
}
@media screen and (min-width: 1100px) {
  .recruit__title {
    font-size: 24px !important;
  }
}

.recruit__img {
  margin-top: 19px;
  aspect-ratio: 370 / 217;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video__wrap {
  display: flex;
  gap: 100px;
  flex-direction: column;
}

.video__bottom {
  margin-top: 115px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 100px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 1100px) {
  .video__bottom {
    margin-top: 210px;
    flex-direction: row;
    align-items: start;
  }
}

.video__item:last-of-type .video__bottom {
  padding-bottom: 0;
  border-bottom: unset;
}

.video__img {
  aspect-ratio: 500 / 400;
  width: min(100%, 500px);
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 1100px) {
  .video__img {
    width: min(calc(500 / 1366 * 100vw), 500px);
  }
}

.video__box {
  border: 1px solid #CCCCCC;
  padding: 25px 20px;
  background: url('../images/bg.png') center / cover repeat;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FAFAFA;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .video__box {
    padding: 30px 25px 42px;
  }
}

.video__box-title {
  width: fit-content;
}

.video__box-lists {
  margin: 16px 0 0 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .video__box-lists {
    margin: 26px 0 0 10px;
  }
}

.video__box-list {
  display: flex;
  align-items: start;
  gap: 20px;

  &::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1283BA;
    transform: translateY(12px);
    flex-shrink: 0;
  }
}

.flow__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 57px;
  position: relative;
  max-width: 550px;
  margin-inline: auto;


  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: #CFE6F1;
    z-index: -1;
  }
}
@media screen and (min-width: 900px) {
  .flow__wrap {
    max-width: 1100px;
  }
}

.flow__item {
  background: #FFFFFF;
  padding: 30px 20px ;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 900px) {
  .flow__item {
    padding: 22px 30px 40px 11px;
    gap: 45px;
    grid-template-columns: 33px 1fr 315px;
  }
}

.flow__num {
  padding-bottom: 13px;
  width: fit-content;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #333333;
  }
}
@media screen and (min-width: 900px) {
  .flow__num {
    writing-mode: vertical-rl;
    padding-right: 16px;
    width: 33px;

    &::before {
      bottom: unset;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
    }
  }
}

.c23128 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 554px;
}

.flow__img {
  aspect-ratio: 315 / 200;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.faq__wrap {
  display: flex;
  flex-direction: column;
  gap: 105px;
}

.faq__title {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  gap: 25px;
  &::before {
    content: "";
    width: 40px;
    height: 4px;
    background: #333333;
  }
}

.faq__boxes {
  display: flex;
  flex-direction: column;
  margin-top: 43px;
  gap: 32px;
}

.faq__box {
  background: #FFFFFF;
  padding: 20px 5px 10px;

  &:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .faq__box {
    padding: 49px 20px 23px;
  }
}

.faq__boxes .js-open .faq__head::before  {
  transform: rotate(45deg);
  transform-origin: center;
}

.faq__head {
  padding: 0 40px 10px 11px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    background: url('../images/20251202155827105889.svg') center / contain no-repeat;
    top: 4px;
    right: 10px;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;

  }
}
@media screen and (min-width: 768px) {
  .faq__head {
    padding: 0 22px 4px 30px;

    &::before {
      top: 2px;
      right: 21px;
    }
  }
}

.faq__head,
.faq__body {
  display: flex;
  justify-content: start;
  gap: 10px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .faq__head,
  .faq__body {
    gap: 29px;
  }
}

.faq__q,
.faq__a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #1283BA;
  flex-shrink: 0;
  transform: translateY(2px);
}
@media screen and (min-width: 768px) {
  .faq__q,
  .faq__a {
    width: 50px;
    height: 50px;
    font-size: 24px;
    transform: translateY(-11px);
  }
}

.faq__a {
  background: #fff;
  color: #1283BA;
}

.faq__q-text {
  text-align: left;
  width: 100%;
}

.faq__body {
  background: #F8F8F8;
  padding: 25px 20px 25px 10px;
}
@media screen and (min-width: 768px) {
  .faq__body {
    padding: 35px 91px 37px 30px;
  }
}

.policy__swiper,
.policy__swiper-wrapper,
.policy__swiper-slide {
  position: relative;
}
.policy__swiper {
  margin-right: calc(50% - 50vw);
}
.policy__swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: flex-start;
}
.policy__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 315 / 417;
  max-width: 315px;
  width: 100%;
}
.policy__swiper-slide img {
  aspect-ratio: 315 / 417;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.policy__swiper-slide-big {
  aspect-ratio: 630 / 417;
  max-width: 630px;
}
.policy__swiper-slide-big img {
  aspect-ratio: 630 / 417;
}

.company__wrap {
  display: flex;
  flex-direction: column;
  gap: 101px;
}

.company__box  {
  max-width: 1100px;
  margin: 61px auto 0;
}

.outline__table-item {
  display: grid;
  gap: 24px;
  grid-template-columns: 120px 1fr;

  & + & {
    margin-top: 20px;
  }
}
@media screen and (min-width: 600px) {
  .outline__table-item {
    grid-template-columns: 150px 1fr;
  }
  & + & {
    margin-top: 29px;
  }
}
@media screen and (min-width: 1024px) {
  .outline__table-item {
    grid-template-columns: 260px 1fr;
  }
}


.outline__table-head {
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
}
.outline__table-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 600px) {
  .outline__table-head,
  .outline__table-body {
    padding-bottom: 31px;
  }
}

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

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

.message__wrap {
  display: flex;
  align-items: start;
  gap: 80px;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .message__wrap {
    flex-direction: row;
    align-items: center;
  }
}

.message__img {
  margin: 0 auto;
  aspect-ratio: 440 / 580;
  width: min(100%, 440px);
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .message__img {
    margin: 0;
    width: min(calc(440 / 1366 * 100vw), 440px);
  }
}

.c8906  {
  font-family: "Poppins", sans-serif;
}

.h1764569255867 {
  font-family: "Noto Sans JP", sans-serif;
}