@charset "utf-8";

.l-detail {
  padding: 120px 0 100px;
}
.l-detail__top {
  padding: 120px 0 143px;
}


.detail-box {
  padding: 60px 25px 60px;
  border-radius: 60px;
  border: 1px solid #DDDDDD;
}
@media screen and (min-width: 768px) {
  .detail-box {
    padding: 73px 47px 100px;
  }
}
@media screen and (min-width: 1024px) {
  .detail-box {
    padding: 73px 67px 100px;
  }
}

.detail__title-sub {
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: calc(20 / 14);
  color: #03A6CE;
  display: flex;
  align-items: center;
  gap: 12px;

  &::before {
    content: "";
    background: url("../images/20260121101047846988.svg") no-repeat center / contain;
    width: 22px;
    height: 17px;
  }
}
.detail__title-main {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 30px;
  margin-top: 5px;
}

.detail__top-wrap {
  display: flex;
  align-items: end;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .detail__top-wrap {
    flex-direction: row;
    gap: min(calc(90 / 1366 * 100vw), 90px);
  }
}

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

.company__wrap {
  display: flex;
  flex-direction: column;
  gap: 190px;
}
.company__item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #DDDDDD;
  border-radius: 60px;
  padding: 27px 20px 0;
  position: relative;
  z-index: 0;

}
@media screen and (min-width: 768px) {
  .company__item {
    padding: 27px 73px 0 43px;
  }
}
.company__bg-text-wrap {
  position: absolute;
  bottom: -158px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  z-index: 0;
}
.company__bg-text {
  font-family: "Red Hat Display", sans-serif;
  font-size: 140px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  white-space: nowrap;
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.company__head {
  display: flex;
  gap: 15px;
  position: relative;
  flex-direction: column;
  align-items: center;
  &::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #DDDDDD;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .company__head {
    flex-direction: row;
    gap: 32px;
    &::after {
      bottom: 5px;
    }
  }
}
@media screen and (min-width: 900px) {
  .company__head {
    &::after {
      bottom: 20px;
    }
  }
}
.company__num {
  display: block;
  position: relative;
}

.company__num img {
  aspect-ratio: 1 / 1;
  width: 100px;
  animation: rotateCircle 10s linear infinite;
}
@media screen and (min-width: 900px) {
  .company__num img {
    width: 132px;
  }
}
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.company__num::before {
  position: absolute;
  content: "01";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Red Hat Display", sans-serif;
  color: #03A6CE;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition: top 0.3s;
}
.company__item:nth-of-type(2) .company__num::before {
  content: "02";
}
.company__item:nth-of-type(3) .company__num::before {
  content: "03";
}
.company__item:nth-of-type(4) .company__num::before {
  content: "04";
}
@media screen and (min-width: 900px) {
  .company__num::before {
    font-size: 50px;
  }
}
.company__num:hover::before {
  top: 55%;
}
.company__title {
  font-size: 22px !important;
}
@media screen and (min-width: 900px) {
  .company__title {
    font-size: 28px !important;
  }
  .company__title br {
    display: none;
  }
}
.company__body {
  margin-top: 36px;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-direction: column;
  padding-bottom: 72px;
}
@media screen and (min-width: 1100px) {
  .company__body {
    flex-direction: row;
    align-items: start;
  }
  .company__item:nth-of-type(2n)  .company__body {
    flex-direction: row-reverse; 
  }
}
.company__body-img {
  aspect-ratio: 400 / 290;
  border-radius: 10px;
  width: min(100%, 400px);
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 1100px) {
  .company__body-img {
    width: 400px;
  }
}
.company__message {
  margin-top: 30px;
  display: flex;
  gap: 33px;
  align-items: center;
  flex-direction: column; 
}
@media screen and (min-width: 768px) {
  .company__message {
    flex-direction: row;
    gap: 36px;
  }
}
.company__message-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.company__message-text {
  padding: 30px 20px 40px 30px;
  background: #F4F5F5;
  border-radius: 40px;
  position: relative;
  z-index: 0;

  &::before {
    content: "";
    position: absolute;
    background: url("../images/20260127093551121517.svg") no-repeat center / contain;
    width: 35px;
    height: 27px;
    top: 22px;
    left: 20px;
    z-index: -1;
  }  
  &::after {
    content: "";
    position: absolute;
    background: #F4F5F5;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 32px;
    height: 25px;
    top: -20px;
    transform: translateX(-50%);
    left: 50%;
  }
}
@media screen and (min-width: 768px) {
  .company__message-text {
    padding: 50px 50px 40px 64px;
    border-radius: 90px;
    &::before {
      top: 31px;
      left: 44px;
    }  
    &::after {
      clip-path: polygon(100% 0, 0 50%, 100% 100%);
      width: 25px;
      height: 32px;
      top: 50%;
      transform: translateY(-50%);
      left: -20px;
    }
  }
}

.l-detail__top-about {
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    background: url("../images/20260127113711913874.png") no-repeat center / cover;
    width: 646px;
    height: 100%;
    right: 0;
    top: 0;
  }
}
.detail__top-wrap-about {
  align-items: center;
  position: relative;
}
.about__bg-text-wrap {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 50px;
  z-index: -1;
}
.about__bg-text-wrap .company__bg-text {
  color: #F4F5F5;
}

.service {
  padding: 42px 23px;
  border: 1px solid #DDDDDD;
  width: min(90%, 1266px);
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service {
    padding: 42px 43px 62px;
  }
}
@media screen and (min-width: 1100px) {
  .service {
    padding: 42px 83px 62px;
  }
}
.service__wrap {
  padding-top: 56px;
  border-top: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .service__wrap {
    flex-direction: row;
    gap: 67px;
  }
}
.service__img {
  aspect-ratio: 400 / 430;
  border-radius: 10px;
  object-fit: cover;
  width: min(100%, 400px);
}

.features__wrap  {
  margin-top: 69px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
  align-items: center;

  & + & {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1100px) {
  .features__wrap {
    flex-direction: row;
    gap: min(calc(80 / 1366 * 100vw), 80px);
  }
  .features__wrap:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.features__img {
  aspect-ratio: 480 / 380;
  width: min(100%, 480px);
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 1100px) {
  .features__img {
    width: min(calc(480 / 1366 * 100vw), 480px);
  }
}

.bg__voice {
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    background: url("../images/20260127180349804256.png") no-repeat top center / contain;
    width: 610px;
    height: 750px;
    left: 0;
    bottom: 0;
  }
}

.l-detail__voice {
  padding: 75px 0 138px;
  width: min(90%, 1266px);
  margin: 0 auto 136px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  border: 1px solid #DDDDDD;
  position: relative;
  z-index: 0;
  &::before {
    content: "";
    position: absolute;
    background: url("../images/20260127181234918635.png") no-repeat top left / contain;
    width: 246px;
    height: 350px;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .l-detail__voice {
    border-radius: 60px;
    &::before {
      width: 646px;
      height: 750px;
    }
  }
}

.detail__top-wrap-voice {
  position: relative;
  z-index: 0;
  padding: 0 20px;
  &::before {
    content: "";
    position: absolute;
    background: url("../images/20260127181239497142.png") no-repeat top right / contain;
    width: 257px;
    height: 165px;
    right: 0;
    bottom: -48px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .detail__top-wrap-voice {
    &::before {
      width: 457px;
      height: 365px;
    }
  }
}

.voice__swiper {
  margin-top: 48px;
  overflow: visible;
}

.voice__swiper,
.voice__swiper-wrapper,
.voice__swiper-slide {
  position: relative;
}
.voice__swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: flex-start;
}
.voice__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 460 / 360;
  max-width: 460px;
  width: 100%;
  overflow: hidden;
}
.voice__swiper-slide img {
  aspect-ratio: 460 / 360;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.staff {
  margin: 112px 10px 0 !important;
}
@media screen and (min-width: 768px) {
  .staff {
    margin: 112px 40px 0 !important;
  }
}
@media screen and (min-width: 1024px) {
  .staff {
    margin: 112px 83px 0 !important;
  }
}

.staff__wrap {
  margin-top: 44px;
  padding: 55px 20px 76px;
  border-radius: 20px;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .staff__wrap {
    padding: 55px 47px 76px;
    border-radius: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .staff__wrap {
    padding: 55px 67px 76px;
  }
}

.staff__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1100px) {
  .staff__head {
    flex-direction: row;
    gap: min(calc(66 / 1366 * 100vw), 66px);
  }
}
.staff__img {
  aspect-ratio: 400 / 350;
  width: min(100%, 400px);
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 1100px) {
  .staff__img {
    width: min(calc(400 / 1366 * 100vw), 400px);
  }
}
.staff__head-area {
  display: flex;
  align-items: center;
  gap: 9px;
  &::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #F4AD77;
  }
}

.staff__faq {
  margin-top: 79px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.staff__faq-q,
.staff__faq-a {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .staff__faq-q,
  .staff__faq-a {
    display: flex;
    gap: 25px;
  }
}
.staff__faq-q {
  padding-bottom: 10px;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .staff__faq-q {
   padding-bottom: 21px;
      margin-bottom: 25px;
  }
}

.staff__faq-q-head{
  translate: 0px 3px;
}
.staff__faq-a-head{
  translate: 0px 5px;
}

