@charset "utf-8";
:root {
  --head-height: 65px;
}

@media screen and (max-width: 1000px) {
  :root {
    --head-height: 80px;
  }
}

main {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  main {
    margin-bottom: 100px;
  }
}

/* ↓↓↓ fv ↓↓↓ */
.swiper,.swiper-wrapper {
  max-height: calc(100vh - 50px);
}

@media screen and (max-width: 768px) {
  .swiper,.swiper-wrapper {
    max-height: calc(100vh - 100px);
  }
}

.fv_area .swiper-slide {
  position: relative;
  height: auto;
}

.fv_area .swiper-slide figcaption {
  position: absolute;
  width: 100vw;
  font-size: min(4.140625vw,53px);
  font-family: var(--udShingo-r);
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #fff;
  text-align: center;
  transform: translate(-50%,calc((-100% + var(--head-height)) / 2)) scale(0.5);
  top: 70%;
  left: 50%;
  opacity: 0;
  transition: opacity ease .8s 1s, top ease .8s 1s, transform ease .8s 1s;
}

@media screen and (max-width: 768px) {
  .fv_area .swiper-slide figcaption {
    font-size: 3.6rem;
    letter-spacing: 0.25em;
  }
}

.fv_area .swiper-slide.swiper-slide-active figcaption {
  top: 50%;
  transform: translate(-50%,calc((-100% + var(--head-height)) / 2)) scale(1);
  opacity: 1;
}

.fv_area .swiper-slide .arrow {
  position: absolute;
  width: min(calc(882/1280*100vw),882px);
  transform: translate(-100%,100%);
  top: var(--head-height);
  right: 0;
  transition: transform ease .8s 1s;
}

@media screen and (max-width: 768px) {
  .fv_area .swiper-slide .arrow {
    width: 470px;
  }
}

.fv_area .swiper-slide.swiper-slide-active .arrow {
  transform: translate(0,0);
}

.fv_area .swiper-slide .txtGroup {
  position: absolute;
  width: 100vw;
  line-height: 1;
  text-align: center;
  transform: translate(-50%,calc((-100% + var(--head-height)) / 2));
  top: 50%;
  left: 50%;
}

.fv_area .swiper-slide .txtGroup .head {
  font-size: clamp(6rem,80/1280*100vw,8rem);
  font-family: var(--udshingo-el);
  letter-spacing: 0.38em;
}

@media screen and (max-width: 768px) {
  .fv_area .swiper-slide .txtGroup .head {
    font-size: 3.5rem;
  }
}

.fv_area .swiper-slide .txtGroup .s-txt {
  font-size: clamp(1.8rem,21/1280*100vw,2.1rem);
  letter-spacing: 0.4em;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .fv_area .swiper-slide .txtGroup .s-txt {
    font-size: 0.9rem;
    margin-top: 6px;
  }
}

/* ↑↑↑ fv ↑↑↑ */

/* ↓↓↓ conts_list ↓↓↓ */
.conts_list {
  display: flex;
  flex-wrap: wrap;
}

.conts_list .triple_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 2px;
}

@media screen and (max-width: 768px) {
  .conts_list .triple_wrap {
    gap: unset;
    padding: unset;
  }
}

.conts_list .item {
  background: var(--conts-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
}

@media screen and (max-width: 768px) {
  .conts_list .item {
    padding: 88px 35px 68px;
  }
}

.conts_list .item.servise1 {
  --conts-bg: #fff;
}

.conts_list .item.works {
  --conts-bg: url(../img/top/conts-works-bg.jpg) no-repeat center / cover;
  color: #fff;
}

.conts_list .item.service2 {
  --conts-bg: url(../img/top/conts-service2-bg.jpg) no-repeat center / cover;
  color: #fff;
}

.conts_list .item.concept {
  --conts-bg: url(../img/top/conts-concept-bg.jpg) no-repeat center / cover;
}

.conts_list .item.recruit {
  color: #fff;
  background-color: var(--main-red);
  flex-direction: column;
  row-gap: 50px;
  padding: 60px 30px 80px;
}

@media screen and (max-width: 768px) {
  .conts_list .item.recruit {
    row-gap: 40px;
    padding: 60px 25px;
  }
}

.conts_list .item.double {
  width: 50%;
}

.conts_list .item.single {
  width: 100%;
}

.conts_list .item.triple {
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 2px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .conts_list .item:is(.double,.triple) {
    width: 100%;
    flex: unset;
  }
}

.conts_list .item .inner {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .conts_list .item .inner {
    max-width: 500px;
  }
}

.conts_list .item.servise1 .inner {
  max-width: 320px;
}

@media screen and (max-width: 768px) {
  .conts_list .item.servise1 .inner {
    max-width: 500px;
  }
}

.conts_list .item.triple .inner {
  max-width: unset;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  background-color: #E0E0E0;
  padding: 48px 15px 50px;
}

@media screen and (max-width: 768px) {
  .conts_list .item.triple .inner {
    padding: 48px 35px;
  }
}

.conts_list .item.single .inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  gap: 30px 28px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .conts_list .item.single .inner {
    max-width: 500px;
    flex-direction: column;
  }
}

.conts_list .item.servise1 .txtGroup .head {
  max-width: 318px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .conts_list .item.servise1 .txtGroup .head {
    width: 300px;
  }
}

.conts_list .item.works .txtGroup .head {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-align: center;
}

.conts_list .item.works .txtGroup .head .s-txt {
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  display: block;
}

.conts_list .item.service2 .txtGroup .head {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .conts_list .item.service2 .txtGroup .head {
    font-size: 2.4rem;
  }
}

.conts_list .item.concept .txtGroup .head {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-align: center;
}

.conts_list .item.triple .head {
  position: relative;
  width: 100%;
  height: 200px;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: clip;
  padding: 10px;
  z-index: 0;
}

.conts_list .item.triple .head::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--conts-bg);
  transition: opacity ease .3s, transform ease .3s;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.conts_list .item.fees .head::before {
  --conts-bg: url(../img/top/conts-fees-bg.jpg) no-repeat center / cover;
}

.conts_list .item.flow .head::before {
  --conts-bg: url(../img/top/conts-flow-bg.jpg)  no-repeat center / cover;
}

.conts_list .item.qa .head::before {
  --conts-bg: url(../img/top/conts-qa-bg.jpg)  no-repeat center / cover;
}

@media screen and (min-width: 769px) {
  .conts_list .item.triple .head:hover::before {
    opacity: .7;
    transform: translate(-50%,-50%) scale(1.1);
  }
}

.conts_list .item.recruit .head {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
}

.conts_list .item .txtGroup .txt {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: justify;
}

.conts_list .item.servise1 .txtGroup .txt {
  margin-top: 18px;
}

@media screen and (max-width: 768px) {
  .conts_list .item.servise1 .txtGroup .txt {
    margin-top: 32px;
  }
}

.conts_list .item.works .txtGroup .txt {
  margin-top: 38px;
}

@media screen and (max-width: 768px) {
  .conts_list .item.works .txtGroup .txt {
    margin-top: 42px;
  }
}

.conts_list .item:is(.service2,.concept) .txtGroup .txt {
  margin-top: 20px;
}

.conts_list .item.recruit .txt {
  font-size: 1.4rem;
  text-align: justify;
  flex: 1;
}

.conts_list .item.triple .inner .txt {
  max-width: 304px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-align: justify;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .conts_list .item.triple .inner .txt {
    max-width: 500px;
  }
}

.conts_list .item .moreBtn {
  position: relative;
  max-width: 240px;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--btn-line-color);
  background-color: var(--btn-color);
  margin: 35px auto 0;
  border-radius: 0;
  transition: opacity ease .3s, border-radius ease .3s;
}

@media screen and (max-width: 768px) {
  .conts_list .item .moreBtn {
    margin: 32px auto 0;
  }
}

.conts_list .item.servise1 .moreBtn {
  margin: 58px auto 0;
}

@media screen and (max-width: 768px) {
  .conts_list .item.servise1 .moreBtn {
    margin: 42px auto 0;
  }
}

@media screen and (min-width: 769px) {
  .conts_list .item .moreBtn:hover {
    opacity: .7;
    border-radius: 30px
  }
}

.conts_list .item .moreBtn::before {
  content: '';
  position: absolute;
  width: 9px;
  aspect-ratio: 1/1;
  border: solid var(--btn-line-color);
  border-width: 1px 1px 0 0;
  transform: translateY(-50%);
  rotate: 45deg;
  top: 50%;
  right: 14px;
}

.conts_list .item .moreBtn.white {
  --btn-line-color:#707070;
  --btn-color: #fff;
}

.conts_list .item .moreBtn.gray {
  --btn-line-color:#fff;
  color: #fff;
  --btn-color: #333;
}

.conts_list .item .moreBtn.red {
  --btn-line-color:#fff;
  color: #fff;
  --btn-color: var(--main-red);
}

.conts_list .item.recruit .link_box {
  width: 47.038%;
  display: flex;
  gap: 28px;
  color: var(--main-red);
  align-self: flex-end;
}

@media screen and (max-width: 768px) {
  .conts_list .item.recruit .link_box {
    width: 240px;
    flex-direction: column;
    margin: 0 auto;
  }
}

.conts_list .item.recruit .link_box .btn {
  position: relative;
  flex: 1;
  height: 50px;
  font-size: 1.4rem;
  font-family: var(--udShingo-r);
  font-weight: 400;
  letter-spacing: 0.08em;
  background-color: #fff;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity ease .3s;
}

@media screen and (max-width: 768px) {
  .conts_list .item.recruit .link_box .btn {
    flex: unset;
  }
}

@media screen and (min-width: 769px) {
  .conts_list .item.recruit .link_box .btn:hover {
    opacity: .7;
  }
}

.conts_list .item.recruit .link_box .btn::before {
  content: '';
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border: solid var(--main-red);
  border-width: 1px 1px 0 0;
  transform: translateY(-50%);
  rotate: 45deg;
  top: 50%;
  right: 16px;
}

/* ↑↑↑ conts_list ↑↑↑ */

/* ↓↓↓ news_area ↓↓↓ */
.news_area {
  padding: 0 30px;
  margin-top: 115px;
}

@media screen and (max-width: 768px) {
  .news_area {
    padding: 0 25px;
    margin-top: 65px;
  }
}

.news_area h3 {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-align: center;
}

.news_area .list {
  max-width: 800px;
  margin: 45px auto 0;
}

.news_area .list .item {
  border-bottom: 1px dotted #858585;
  display: block;
  cursor: initial;
  display: flex;
  gap: 15px 25px;
  padding: 30px 15px;
  transition: opacity ease .3s;
}

@media screen and (max-width: 768px) {
  .news_area .list .item {
    flex-direction: column;
    padding: 22px 0;
  }
}

@media screen and (min-width: 769px) {
  .news_area .list a.item:hover {
    opacity: .7;
    cursor: pointer;
  }
}

.news_area .list .item:first-child {
  border-top: 1px dotted #858585;
}

.news_area .list .item .date {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #858585;
}

.news_area .list .item .txt {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.news_area .toNews {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  display: block;
  margin: 30px auto 0;
  transition: opacity ease .3s;
}

@media screen and (min-width: 769px) {
  .news_area .toNews:hover {
    opacity: .7;
  }
}

/* ↑↑↑ news_area ↑↑↑ */
