@charset "UTF-8";
/* common 
******************************************************************************************/
html {
  font-size: 1px;
  scroll-behavior: smooth;
  scroll-padding-top: 84rem;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 80rem;
  }
}
@media (min-width: 769px) and (max-width: 1255px) {
  html {
    font-size: 0.0796812749vw;
  }
}
body {
  position: relative;
  font-size: 16rem;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 600;
  color: #000;
}

body.is-noscroll {
  overflow: hidden;
}

body.is-noscroll .is-fixed {
  background-color: transparent;
  box-shadow: none;
}

img {
  width: 100%;
  height: auto;
}

.main {
  overflow: hidden;
}

.container {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.pc-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.fadein {
  opacity: 0;
}

.js-target.fadein.is-animated {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeup {
  opacity: 0;
  translate: 0 20rem;
}

.js-target.fadeup.is-animated {
  animation: fadeup 2s forwards;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    translate: 0 20rem;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.toLeft {
  opacity: 0;
  translate: 50rem;
}

.js-target.toLeft.is-animated {
  animation: toLeft 2s forwards;
}

@keyframes toLeft {
  0% {
    opacity: 0;
    translate: 50rem;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
.toRight {
  opacity: 0;
  translate: 50rem;
}

.js-target.toRight.is-animated {
  animation: toRight 2s forwards;
}

@keyframes toRight {
  0% {
    opacity: 0;
    translate: -50rem;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
.js-target.clip {
  clip-path: inset(0 100% 0 0);
}

.js-target.clip.is-animated {
  animation: clip 1s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

@keyframes clip {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
.mv {
  position: relative;
  height: 310rem;
}

@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    aspect-ratio: 2/1;
  }
}
.mv__title {
  position: absolute;
  display: block;
  font-size: 32rem;
  top: 184rem;
  left: 50%;
  translate: -50%;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 24rem;
    top: auto;
    bottom: 40rem;
  }
}
.mv__title::after {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 0;
  top: 60rem;
  left: 50%;
  translate: -50%;
  background: linear-gradient(to bottom, #fff 50%, #000 50%);
  animation: height 1s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

@media screen and (max-width: 768px) {
  .mv__title::after {
    height: 60rem;
    top: 34rem;
  }
}
@keyframes height {
  0% {
    height: 0;
  }
  100% {
    height: 133rem;
  }
}
@media screen and (max-width: 768px) {
  @keyframes height {
    0% {
      height: 0;
    }
    100% {
      height: 60rem;
    }
  }
}
.btn {
  position: relative;
  display: block;
  width: fit-content;
  padding: 11rem 23rem 10rem;
  color: #A072FF;
  text-align: center;
}

.btn::before, .btn::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 12rem);
  height: calc(100% - 12rem);
  transition: all 0.4s;
}

.btn::before {
  top: 0;
  right: 0;
  border-top: 1px solid #A072FF;
  border-right: 1px solid #A072FF;
}

.btn::after {
  bottom: 0;
  left: 0;
  border-left: 1px solid #A072FF;
  border-bottom: 1px solid #A072FF;
}

.btn:hover::before, .btn:hover::after {
  width: 100%;
  height: 100%;
}

.white {
  color: #fff;
}

/* header
******************************************************************************************/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.6s;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.is-fixed .header__inner {
  padding: 0 40rem 5rem 26rem;
  background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
  .is-fixed .header__inner {
    padding: 0 10rem 0 0;
  }
}
.is-fixed .header-nav__child {
  background-color: rgba(0, 0, 0, 0.8);
}

.is-fixed .header-btn span {
  background-color: #fff;
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1370px;
  width: 100%;
  font-size: 0;
  padding: 13rem 40rem 15rem 26rem;
  margin: auto;
  background-color: transparent;
  z-index: 2;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0rem 10rem 5rem 10rem;
  }
}
.header__logo {
  position: relative;
  width: 139rem;
  z-index: 4;
}

.header-nav {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 75rem;
}

.header-nav__item {
  position: relative;
  font-size: 12rem;
  line-height: 1.5;
  color: #fff;
}

.header-nav__item a {
  position: relative;
  z-index: 1;
  transition: opacity 0.4s;
}

.header-nav__item a:hover {
  opacity: 0.6;
}

.header-nav__item a:hover .header-nav__child__item {
  opacity: 1;
}

.header-nav__item.arrow::after {
  position: relative;
  display: block;
  content: "";
  width: 12rem;
  height: 6rem;
  background: url(../images/top/arrow.svg) no-repeat;
  background-size: contain;
  margin: 7rem auto 0;
  z-index: 1;
}

.header-nav__child {
  position: absolute;
  width: fit-content;
  top: 43rem;
  left: 50%;
  translate: -50%;
  display: none;
  transition: background-color 0.4s;
}

.header-nav__item:nth-child(4) .header-nav__child {
  top: 20rem;
  padding-top: 20rem;
}

.header-nav__child__item {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10rem;
}

.header-btn {
  position: relative;
  display: none;
  width: 58px;
  height: 58px;
  z-index: 4;
  cursor: pointer;
  transition: background-color 0.4s;
}

@media screen and (max-width: 768px) {
  .header-btn {
    display: block;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 0;
  }
}
.header-btn span {
  position: absolute;
  width: 28px;
  height: 3px;
  left: 7px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.header-btn span:nth-child(1) {
  top: 13px;
}

.header-btn span:nth-child(2) {
  top: 20px;
}

.header-btn span:nth-child(3) {
  top: 27px;
}

.header-btn span.close {
  position: absolute;
  width: 28px;
  height: 3px;
  left: 7px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .header-btn span.close {
    height: 2px;
  }
}
.header-btn span.close:nth-child(1) {
  width: 17px;
  top: 20px;
  left: 12px;
  transform: rotate(-45deg);
}

.header-btn span.close:nth-child(2) {
  display: none;
}

.header-btn span.close:nth-child(3) {
  width: 17px;
  top: 20px;
  left: 12px;
  transform: rotate(45deg);
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  padding-top: 136px;
  padding-bottom: 87px;
  transition: left 0.6s;
  z-index: 3;
  background: #000;
  overflow: auto;
}

.drawer.slidein {
  left: 0;
}

.drawer__inner {
  display: flex;
  justify-content: center;
}

.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 88px;
  width: fit-content;
  padding: 30px;
  overflow: auto;
}

.drawer-link__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 480px;
  width: 100%;
}

.drawer-link__item {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  transition: opacity 0.4s;
}

.drawer-link__item::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  margin-top: 6px;
  background-color: #fff;
}

.drawer-link__item:active {
  opacity: 0.6;
}

.drawer-link__item:active .drawer-link-child__item {
  opacity: 1;
}

.drawer-link-child {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: fit-content;
  margin-top: 10rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.drawer-link-child__item {
  font-size: 16rem;
}

.drawer-link-child__item:active {
  opacity: 0.6;
}

.label {
  position: absolute;
  display: inline-block;
  content: "";
  width: 20rem;
  height: 20rem;
  top: 7rem;
  right: 0;
  background: url(../images/top/arrow.svg) no-repeat;
  background-size: contain;
  transition: transform 0.4s;
  transform-origin: 10rem 5rem;
}

.checkbox {
  display: none;
}

.checkbox:checked ~ .drawer-link-child {
  max-height: 200px;
}

.checkbox:checked ~ .label {
  transform: rotate(180deg);
}

/* footer
******************************************************************************************/
.footer {
  padding: 70px 0 32px;
  background-color: #3F3F3F;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 18px 30px 80px;
  }
}
.footer-top {
  padding: 50rem 0 75rem;
  background: url(../images/common/footer_bg.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .footer-top {
    padding: 50rem 0;
  }
}
.footer-top__inner {
  max-width: 1155px;
  padding: 0 20px;
  margin: 0 auto;
}

.footer-top__list {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer-top__list {
    flex-direction: column;
    align-items: center;
  }
}
.footer-top__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .footer-top__item {
    width: 100%;
    padding: 20rem 0;
  }
}
.footer-top__item:nth-child(1)::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 207rem;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-top__item:nth-child(1)::before {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    translate: 0;
  }
}
.footer-top__btn {
  display: block;
  font-size: 20rem;
  font-weight: 600;
  line-height: 117rem;
  width: 380rem;
  height: 117rem;
  margin-top: 4rem;
  border-radius: 100vmax;
  background-color: #000;
  color: #fff;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
}

.footer-top__btn:hover {
  background-color: #fff;
  color: #000;
}

@media screen and (max-width: 768px) {
  .footer-top__btn {
    font-size: 16rem;
    width: auto;
    min-width: 300rem;
    height: 50rem;
    line-height: 50rem;
  }
}
.footer-top__text {
  font-weight: 600;
  line-height: 1.5;
  margin-top: 20rem;
}

.footer-top__text--white {
  color: #fff;
}

.footer-bottom {
  padding: 51rem 30rem 37rem;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 50rem 30rem 20rem;
  }
}
.footer-column__inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-column__inner {
    flex-direction: column;
    align-items: center;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .footer__left {
    font: 30rem;
  }
}
.footer-info {
  font-weight: 600;
  line-height: 1.5;
}

.footer-nav__list {
  display: flex;
  align-items: center;
  gap: 38rem;
  flex-wrap: wrap;
  margin-top: 8rem;
}

@media screen and (max-width: 768px) {
  .footer-nav__list {
    justify-content: center;
    margin-top: 30rem;
  }
}
.footer-nav__item {
  line-height: 1.5;
  font-weight: 600;
  transition: opacity 0.4s;
}

.footer-nav__item:hover {
  opacity: 0.6;
}

.footer-copyright {
  margin-top: 71rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 10rem;
    margin-top: 30rem;
  }
}
.footer-logo {
  width: 182rem;
}

.footer-top__icon {
  width: 60rem;
}

.top-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top-mv__inner {
    flex-direction: column;
  }
}
.top-mv__image {
  width: 100%;
  height: 660rem;
}

@media screen and (max-width: 768px) {
  .top-mv__image {
    height: 100svh;
  }
}
.top-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-mv__text {
  position: absolute;
  max-width: 1200px;
  width: calc(100% - 234px);
  left: 50%;
  bottom: 104rem;
  translate: -50%;
}

.top-mv__text p {
  width: fit-content;
  font-size: max(32rem, 2.2222222222vw);
  line-height: 1.5;
  color: #fff;
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

@media screen and (max-width: 768px) {
  .top-mv__text p {
    font-size: max(28rem, 7.4666666667vw);
    writing-mode: vertical-rl;
    margin: 0 auto;
    clip-path: inset(0 0 100% 0);
  }
}
@media screen and (max-width: 768px) {
  .top-mv__text {
    width: calc(100% - 60rem);
    bottom: auto;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}
.top-mv__text p.is-animated {
  clip-path: inset(0);
}

.fixed-contact-btn {
  position: fixed;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.5em;
  top: 180rem;
  right: -85rem;
  width: 85rem;
  height: 300rem;
  background-color: #DFD0FF;
  color: #000;
  writing-mode: vertical-rl;
  z-index: 2;
  transition: background-color 0.4s, right 0.4s;
}

@media screen and (max-width: 768px) {
  .fixed-contact-btn {
    display: none;
  }
}
.fixed-contact-btn::before {
  display: inline-block;
  content: "";
  background: url(../images/top/mail.svg) no-repeat;
  background-size: contain;
  width: 28rem;
  height: 28rem;
  margin-bottom: 19rem;
}

.fixed-contact-btn:hover {
  background-color: #A072FF;
}

.fixed-contact-btn.is-animated {
  right: 0;
}

.concept {
  padding: 111rem 112rem;
  background: url(../images/top/concept.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .concept {
    padding: 50rem 30rem;
  }
}
.concept__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.concept__text {
  color: #fff;
}

.concept__text p {
  font-size: 16rem;
  line-height: 1.875;
}

.concept__text span {
  font-size: 14rem;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", serif;
}

.top-heading {
  width: fit-content;
  margin: auto;
  text-align: center;
}

.top-heading h2 {
  font-size: 24rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .top-heading h2 {
    font-size: 20rem;
  }
}
.top-heading span {
  display: block;
  font-size: 14rem;
  line-height: 1.5;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", serif;
  margin-top: 6rem;
  color: #DFD0FF;
}

@media screen and (max-width: 768px) {
  .top-heading span {
    font-size: 12rem;
    margin-top: 3rem;
  }
}
.top-news {
  padding: 81rem 0 123rem;
  background: url(../images/top/bg1.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 40rem 0 60rem;
    background-position: bottom right;
  }
}
.top-news__inner {
  max-width: 1115rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 30rem;
}

.top-news__list {
  margin-top: 51rem;
}

@media screen and (max-width: 768px) {
  .top-news__list {
    margin-top: 10rem;
  }
}
.top-news__item {
  position: relative;
  display: flex;
  gap: 111rem;
  padding: 30rem;
  border-bottom: 1px solid #000;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .top-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10rem;
    padding: 15rem 0;
  }
}
.top-news__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .top-news__item time {
    font-size: 12rem;
  }
}
.top-news__item:hover {
  opacity: 0.6;
}

.top-news__btn {
  position: relative;
  display: block;
  width: fit-content;
  line-height: 1.5;
  margin: 35rem auto 0;
  padding-bottom: 20rem;
  text-align: center;
}

.top-news__btn::before {
  position: absolute;
  display: block;
  content: "";
  width: 270rem;
  height: 8rem;
  background: url(../images/top/news_line.svg) no-repeat;
  background-size: contain;
  bottom: 0;
  left: 50%;
  translate: -50%;
  transition: left 0.4s;
}

.top-news__btn:hover::before {
  left: calc(50% + 20rem);
}

.top-works {
  padding: 64rem 0 114rem;
}

@media screen and (max-width: 768px) {
  .top-works {
    padding: 30rem 0 50rem;
  }
}
.top-works__inner {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  text-align: left;
}

.top-works__image {
  aspect-ratio: 404/269;
  background: aliceblue;
  display: grid;
  place-content: center;
  font-size: 40rem;
}

.top-works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-works__title {
  padding: 20rem 0 15rem;
  border-bottom: 1px solid #000;
}

.top-works__title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.top-works__title a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.categry {
  display: inline-block;
  padding: 3rem 15rem;
  margin-top: 15rem;
  background-color: #000;
  color: #fff;
}

.top-works__btn {
  position: relative;
  display: block;
  width: fit-content;
  padding: 12rem 60rem 9rem;
  margin: 66rem auto 0;
  color: #A072FF;
  text-align: center;
}

.top-works__btn::before, .top-works__btn::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 12rem);
  height: calc(100% - 12rem);
  transition: all 0.4s;
}

.top-works__btn::before {
  top: 0;
  right: 0;
  border-top: 1px solid #A072FF;
  border-right: 1px solid #A072FF;
}

.top-works__btn::after {
  bottom: 0;
  left: 0;
  border-left: 1px solid #A072FF;
  border-bottom: 1px solid #A072FF;
}

.top-works__btn:hover::before, .top-works__btn:hover::after {
  width: 100%;
  height: 100%;
}

.swiper-container {
  margin-top: 59rem;
  overflow: hidden;
}

@media (max-width: 600px) {
  .swiper-container {
    padding: 0 30rem;
  }
}
@media screen and (max-width: 768px) {
  .swiper-container {
    margin-top: 30rem;
  }
}
.swiper {
  width: 100%;
  overflow: visible; /* 見切れたスライドを表示するため */
}

.swiper.slide_start {
  margin-left: 229rem;
}

@media screen and (max-width: 768px) {
  .swiper.slide_start {
    margin-left: auto;
  }
}
.swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 54rem;
}

.swiper-wrapper.slide_start {
  justify-content: normal;
  gap: 0;
}

.swiper-slide {
  position: relative;
}

@media (min-width: 601px) {
  .swiper-slide {
    width: 404px !important;
    flex-shrink: 0;
  }
}
.no-post {
  line-height: 1.5;
  width: fit-content;
  margin: 100rem auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .no-post {
    margin: 50rem auto;
  }
}
.recruit_service_wrap {
  width: 100%;
  background: url(../images/top/bg2.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .recruit_service_wrap {
    background-position: bottom left;
  }
}
.top-service {
  position: relative;
  padding: 188rem 0 264rem;
  background: url(../images/top/service.webp) no-repeat;
  background-size: cover;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top-service {
    padding: 80rem 0 100rem;
    overflow: hidden;
  }
}
.top-service .heading span {
  color: #fff;
}

.top-service::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/top/service_text.svg) no-repeat;
  background-size: contain;
  width: 818rem;
  height: 341rem;
  bottom: -170rem;
  right: -144rem;
}

@media screen and (max-width: 768px) {
  .top-service::before {
    width: 70%;
    height: auto;
    aspect-ratio: 720/341;
    bottom: -20rem;
    right: -40rem;
  }
}
.top-service__inner {
  max-width: 700rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 30rem;
}

.top-service__list {
  display: flex;
  flex-direction: column;
  gap: 46rem;
  margin-top: 34rem;
  margin-bottom: 64rem;
}

@media screen and (max-width: 768px) {
  .top-service__list {
    gap: 25rem;
    margin-top: 20rem;
    margin-bottom: 30rem;
  }
}
.top-service__item {
  display: flex;
  flex-direction: column;
  gap: 11rem;
}

.top-service__item dt {
  font-size: 20rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .top-service__item dt {
    font-size: 18rem;
  }
}
.top-service__item dd {
  font-size: 16rem;
  line-height: 1.875;
}

.top-service__btn {
  margin: 0 auto;
}

.top-strength {
  padding: 108rem 0 108rem;
  background: url(../images/top/strength.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top-strength {
    padding: 0;
  }
}
.top-strength .top-heading {
  text-align: left;
  margin-left: 0;
}

.top-strength .top-heading span {
  color: #A072FF;
}

.top-strength__inner {
  max-width: 1200rem;
  width: 100%;
  margin: 0 auto;
}

.top-strength__column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 643rem;
  margin-right: auto;
  padding: 45rem 25rem 45rem 45rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

@media screen and (max-width: 768px) {
  .top-strength__column {
    width: 100%;
    flex-direction: column;
    padding: 30rem;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@media screen and (max-width: 768px) {
  .top-strength__left .top-heading {
    order: 1;
  }
}
.top-strength__left p {
  font-weight: 400;
  line-height: 1.875;
  margin-top: 29rem;
  margin-bottom: 22rem;
}

@media screen and (max-width: 768px) {
  .top-strength__left p {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__left .btn {
    order: 4;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__left {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__three {
    order: 2;
    margin-top: 20rem;
  }
}
.three__list {
  position: relative;
  width: 281rem;
  height: 256rem;
}

.three__item {
  position: absolute;
  display: grid;
  place-content: center;
  width: 151rem;
  height: 151rem;
  font-weight: 400;
  border: 1px solid #000;
  border-radius: 50%;
}

.three__item:nth-child(1) {
  top: 0;
  left: 50%;
  translate: -50%;
}

.three__item:nth-child(2) {
  left: 0;
  bottom: 0;
}

.three__item:last-child {
  right: 0;
  bottom: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.top-recruit {
  padding: 135rem 0 0;
}

@media screen and (max-width: 768px) {
  .top-recruit {
    padding: 70rem 0 0;
  }
}
.top-recruit .top-heading span {
  color: #A072FF;
}

.top-recruit__image {
  display: grid;
  place-content: center;
  padding: 145rem 30rem;
  max-width: 1313rem;
  width: 100%;
  margin: 77rem auto 0;
  background: url(../images/top/recruit.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top-recruit__image {
    margin: 20rem auto 0;
    padding: 70rem 30rem;
  }
}
.top-recruit__btn {
  margin: 0 auto;
}

.top-company {
  padding: 135rem 0 179rem;
}

@media screen and (max-width: 768px) {
  .top-company {
    padding: 60rem 0 60rem;
  }
}
.top-company .top-heading span {
  color: #A072FF;
}

.top-company__inner {
  max-width: 1018rem;
  padding: 0 30rem;
  width: 100%;
  margin: 0 auto;
}

.top-company__content {
  padding: 51rem 20rem 52rem;
  border: 1px solid #000;
  background: url(../images/top/company_bg.webp) no-repeat, #fff;
  background-size: cover;
  background-position: left -10rem bottom;
}

@media screen and (max-width: 768px) {
  .top-company__content {
    background-size: 100vw;
    background-position: left bottom;
  }
}
.top-company__content p {
  line-height: 1.875;
  margin-top: 20rem;
}

.top-compnay-content__inner {
  max-width: 691rem;
  width: 100%;
  margin: 0 auto;
}

.top-company__btn {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .top-company__btn {
    margin-top: 20rem;
    margin-right: auto;
  }
}
/* service
******************************************************************************************/
.service-mv {
  background: url(../images/service/mv.webp) no-repeat;
  background-size: cover;
}

.service-content {
  position: relative;
  padding-top: 197rem;
}

@media screen and (max-width: 768px) {
  .service-content {
    padding-top: 80rem;
  }
}
.service-content::before {
  position: absolute;
  display: block;
  content: "";
  width: 89%;
  height: calc(100% - 813rem);
  background-color: #F9F6FF;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .service-content::before {
    height: 100%;
  }
}
.service-lead {
  position: relative;
}

.service-lead::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/service/text.svg) no-repeat;
  background-size: contain;
  width: 1380rem;
  width: min(1380rem, 95.8333333333vw);
  aspect-ratio: 1380/575;
  top: -50rem;
  left: 50%;
  translate: -50%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .service-lead::before {
    width: 100%;
  }
}
.service-lead__inner {
  max-width: 1076rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 30rem;
}

.service-lead__text h2 {
  width: fit-content;
  font-size: 24rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .service-lead__text h2 {
    font-size: 22rem;
  }
}
.service-lead__text p {
  font-size: 16rem;
  line-height: 1.875;
  margin-top: 45rem;
}

@media screen and (max-width: 768px) {
  .service-lead__text p {
    margin-top: 45rem;
  }
}
.service-list-wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  margin-top: 152rem;
  padding-bottom: 388rem;
}

@media screen and (max-width: 768px) {
  .service-list-wrap {
    margin-top: 50rem;
    padding-bottom: 100rem;
  }
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 79rem;
}

@media screen and (max-width: 768px) {
  .service-list {
    gap: 40rem;
  }
}
.service-item__inner {
  display: flex;
  align-items: center;
  max-width: 1139rem;
  width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .service-item__inner {
    flex-direction: column;
  }
}
.service-item__image {
  width: 1081rem;
  height: 503rem;
}

@media screen and (max-width: 768px) {
  .service-item__image {
    width: 90%;
    height: auto;
    aspect-ratio: 1081/503;
    margin-right: auto;
  }
}
.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item__text {
  position: relative;
  width: 656rem;
  padding: 52rem 0 100rem;
  margin-left: -598rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .service-item__text {
    width: 90%;
    padding: 40rem 20rem 50rem 0;
    margin-top: -30rem;
    margin-left: auto;
  }
}
.service-item:nth-child(2) .service-item__inner {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .service-item:nth-child(2) .service-item__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .service-item:nth-child(2) .service-item__image {
    margin-left: auto;
    margin-right: 0;
  }
}
.service-item:nth-child(2) .service-item__text {
  width: 656rem;
  padding: 52rem 0 100rem;
  margin-right: -598rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .service-item:nth-child(2) .service-item__text {
    width: 90%;
    padding: 40rem 20rem 50rem 0;
    margin-right: auto;
    margin-left: 0;
  }
}
.service-item:last-child .service-item__text {
  align-self: flex-start;
  margin-top: 32rem;
  padding: 84rem 0 88rem;
}

@media screen and (max-width: 768px) {
  .service-item:last-child .service-item__text {
    padding: 40rem 20rem 50rem 0;
    margin-top: -30rem;
  }
}
.service-item__heading {
  width: 300rem;
}

.service-item__heading h2 {
  font-size: 24rem;
  color: #000;
  padding: 0 0 10rem 33rem;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .service-item__heading h2 {
    font-size: 20rem;
    padding: 0 0 10rem 20rem;
  }
}
.service-item__heading span {
  display: block;
  font-size: 16rem;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", serif;
  font-weight: 400;
  padding: 10rem 0 0 33rem;
  color: #A072FF;
}

@media screen and (max-width: 768px) {
  .service-item__heading span {
    font-size: 14rem;
    padding: 10rem 0 0 20rem;
  }
}
.service-item__description {
  line-height: 1.5;
  margin-top: 45rem;
  margin-left: 93rem;
}

@media screen and (max-width: 768px) {
  .service-item__description {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .service-item__description {
    margin-top: 30rem;
    margin-left: 40rem;
  }
}
.service-item__description span {
  display: inline;
  background-color: #EFE7FF;
}

/* strength
******************************************************************************************/
.strength-content {
  padding: 93rem 0 137rem;
}

@media screen and (max-width: 768px) {
  .strength-content {
    padding: 60rem 0 60rem;
  }
}
.strength-top {
  display: flex;
  width: 832rem;
  padding: 67rem 67rem 52rem;
  margin: 0 auto;
  background-color: #F2F2F2;
}

@media screen and (max-width: 768px) {
  .strength-top {
    flex-direction: column;
    align-items: center;
    gap: 30rem;
    width: 100%;
    padding: 30rem;
  }
}
.strength-top__text {
  width: fit-content;
  line-height: 1.875;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .strength-top__text {
    font-size: 14rem;
    order: 2;
  }
}
.strength__three {
  margin-top: 13rem;
}

@media screen and (max-width: 768px) {
  .strength__three {
    order: 1;
  }
}
.strength__list {
  margin-top: 81rem;
}

.strength__item {
  display: grid;
  place-content: center;
  width: 100%;
  height: 641rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .strength__item {
    font-size: 14rem;
    height: auto;
    aspect-ratio: 1440/640;
    padding: 60rem 20rem;
  }
}
.strength__item:nth-child(1) {
  background: url(../images/strength/01.webp) no-repeat;
  background-size: cover;
}

.strength__item:nth-child(1) h2 span::before {
  width: 83rem;
  height: 88rem;
  background: url(../images/strength/no1.svg) no-repeat;
  background-size: contain;
  left: -88rem;
}

@media screen and (max-width: 768px) {
  .strength__item:nth-child(1) h2 span::before {
    width: 50rem;
    height: 50rem;
    left: -45rem;
  }
}
.strength__item:nth-child(2) {
  background: url(../images/strength/02.webp) no-repeat;
  background-size: cover;
}

.strength__item:nth-child(2) h2 span::before {
  width: 105rem;
  height: 101rem;
  background: url(../images/strength/no2.svg) no-repeat;
  background-size: contain;
  left: -110rem;
}

@media screen and (max-width: 768px) {
  .strength__item:nth-child(2) h2 span::before {
    width: 50rem;
    height: 50rem;
    left: -50rem;
  }
}
.strength__item:nth-child(3) {
  background: url(../images/strength/03.webp) no-repeat;
  background-size: cover;
}

.strength__item:nth-child(3) h2 span::before {
  width: 105rem;
  height: 83rem;
  background: url(../images/strength/no3.svg) no-repeat;
  background-size: contain;
  left: -110rem;
}

@media screen and (max-width: 768px) {
  .strength__item:nth-child(3) h2 span::before {
    width: 50rem;
    height: 50rem;
    left: -50rem;
  }
}
.strength__item h2 {
  position: relative;
  display: grid;
  place-content: center;
  width: 221rem;
  height: 86rem;
  font-size: 24rem;
  line-height: 1.5;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .strength__item h2 {
    font-size: 20rem;
    width: 150rem;
    height: auto;
    aspect-ratio: 221/86;
  }
}
.strength__item h2::before, .strength__item h2::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 36rem);
  height: calc(100% - 25rem);
  transition: all 0.4s;
}

.strength__item h2::before {
  top: 0;
  right: 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.strength__item h2::after {
  bottom: 0;
  left: 0;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.strength__item h2 span {
  position: relative;
  display: contents;
}

.strength__item h2 span::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  translate: 0 -50%;
}

.strength__item p {
  line-height: 1.875;
  margin-top: 43rem;
}

@media screen and (max-width: 768px) {
  .strength__item p {
    margin-top: 20rem;
  }
}
/* company
******************************************************************************************/
.company-mv {
  background: url(../images/company/mv.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .company-mv {
    background-position: top;
  }
}
.company__inner {
  padding: 0 30rem;
}

.company-leader {
  padding-top: 160rem;
}

@media screen and (max-width: 768px) {
  .company-leader {
    padding-top: 80rem;
  }
}
.company__heading {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.company__heading h2 {
  font-size: 24rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .company__heading h2 {
    font-size: 20rem;
  }
}
.company__heading span {
  display: block;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", serif;
  font-weight: 400;
  line-height: 1.5;
  color: #A072FF;
}

@media screen and (max-width: 768px) {
  .company__heading span {
    font-size: 14rem;
  }
}
.leader {
  display: flex;
  align-items: center;
  max-width: 1300rem;
  margin: 97rem auto 0;
}

@media screen and (max-width: 768px) {
  .leader {
    flex-direction: column;
    margin-top: 40rem;
  }
}
.leader__image {
  width: 827rem;
  aspect-ratio: 827/664;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .leader__image {
    width: 100%;
    margin-left: -60rem;
  }
}
.leader__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader__text {
  width: 758rem;
  font-weight: 400;
  padding: 74rem 25rem 39rem 60rem;
  margin-left: -285rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .leader__text {
    width: 100%;
    padding: 20rem;
    margin: -30rem -30rem 0 auto;
  }
}
.leader__text h3 {
  font-size: 24rem;
}

@media screen and (max-width: 768px) {
  .leader__text h3 {
    font-size: 20rem;
    line-height: 1.5;
  }
}
.leader__text p {
  line-height: 1.875;
  margin-top: 32rem;
}

@media screen and (max-width: 768px) {
  .leader__text p {
    font-size: 14rem;
    margin-top: 20rem;
  }
}
.leader__text .name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  font-size: 24rem;
  margin-top: 32rem;
}

@media screen and (max-width: 768px) {
  .leader__text .name {
    font-size: 20rem;
    margin-top: 20rem;
  }
}
.leader__text .name span {
  font-size: 16rem;
}

@media screen and (max-width: 768px) {
  .leader__text .name span {
    font-size: 14rem;
  }
}
.company-profile {
  padding-top: 254rem;
  padding-bottom: 276rem;
}

@media screen and (max-width: 768px) {
  .company-profile {
    padding-top: 100rem;
    padding-bottom: 100rem;
  }
}
.company-profile__list {
  display: flex;
  flex-direction: column;
  gap: 60rem;
  max-width: 450rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .company-profile__list {
    gap: 30rem;
  }
}
.company-profile__list:nth-of-type(1) {
  margin: 98rem auto 0;
}

@media screen and (max-width: 768px) {
  .company-profile__list:nth-of-type(1) {
    margin: 40rem auto 0;
  }
}
.company-profile__list:nth-of-type(2) {
  margin: 75rem auto 0;
}

@media screen and (max-width: 768px) {
  .company-profile__list:nth-of-type(2) {
    margin: 40rem auto 0;
  }
}
.company-profile__item {
  display: flex;
  gap: 60rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .company-profile__item {
    flex-direction: column;
    gap: 0;
  }
}
.company-profile__item dt {
  width: 96rem;
  flex-shrink: 0;
  font-weight: 400;
}

.map {
  max-width: 830rem;
  width: 100%;
  margin: 17rem auto 0;
  aspect-ratio: 830/356;
}

@media screen and (max-width: 768px) {
  .map {
    width: calc(100% + 60rem);
    margin: 17rem -30rem 0;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* recruit
******************************************************************************************/
.recruit-main {
  background-color: #000;
}

.recruit-mv {
  background: url(../images/recruit/mv.webp) no-repeat;
  background-size: cover;
}

.recruit-lead {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 524rem;
  background: url(../images/recruit/01.webp) no-repeat;
  background-size: cover;
  background-position: center bottom;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .recruit-lead {
    height: auto;
    aspect-ratio: 3/4;
  }
}
.recruit-lead__inner {
  max-width: 1216rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 30rem;
}

.recruit-lead__catch {
  font-size: 36rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .recruit-lead__catch {
    font-size: 30rem;
  }
}
.recruit-lead__description {
  line-height: 1.875;
  margin-top: 25rem;
}

.recruit-flow {
  padding: 131rem 0 176rem;
  background-color: #000;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .recruit-flow {
    padding: 60rem 0 80rem;
  }
}
.recruit-flow__inner {
  max-width: 1070rem;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
}

.recruit__heading {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.recruit__heading h2 {
  font-size: 24rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .recruit__heading h2 {
    font-size: 20rem;
  }
}
.recruit-flow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49rem;
  margin-top: 65rem;
}

@media screen and (max-width: 768px) {
  .recruit-flow__list {
    gap: 25rem;
    margin-top: 30rem;
  }
}
.recruit-flow__list::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: #fff;
  z-index: 0;
  translate: -50%;
}

@media screen and (max-width: 768px) {
  .recruit-flow__list::before {
    left: 44rem;
    translate: 0;
  }
}
.recruit-flow__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 53rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .recruit-flow__item {
    align-items: flex-start;
    gap: 20rem;
  }
}
.recruit-flow__item:nth-child(1) .recruit-flow__circle {
  gap: 24rem;
  padding-top: 5rem;
}

@media screen and (max-width: 768px) {
  .recruit-flow__item:nth-child(1) .recruit-flow__circle {
    gap: 10rem;
    padding-top: 6rem;
  }
}
.recruit-flow__item:last-child .recruit-flow__circle:after {
  display: none;
}

.recruit-flow__left {
  width: 42%;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .recruit-flow__left {
    display: none;
  }
}
.recruit-flow__circle {
  position: relative;
  display: grid;
  place-content: center;
  gap: 30rem;
  flex-shrink: 0;
  width: 169rem;
  height: 169rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #000;
  font-size: 24rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit-flow__circle {
    width: 90rem;
    height: 90rem;
    gap: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-flow__circle dt {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-flow__circle dd {
    font-size: 12rem;
  }
}
.recruit-flow__circle span {
  display: block;
  font-size: 16rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .recruit-flow__circle span {
    font-size: 12rem;
    line-height: 1.2;
  }
}
.recruit-flow__circle::before {
  position: absolute;
  display: block;
  content: "";
  width: 122rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .recruit-flow__circle::before {
    width: 70%;
  }
}
.recruit-flow__text {
  width: 42%;
  line-height: 1.875;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .recruit-flow__text {
    font-size: 14rem;
  }
}
.recruit-flow__text span {
  position: absolute;
  display: inline-block;
  translate: 0 -50%;
  line-height: 1.875;
  padding: 16rem 17rem 17rem 70rem;
  background-color: #EFE7FF;
  color: #7B7B7B;
}

@media screen and (max-width: 768px) {
  .recruit-flow__text span {
    position: static;
    translate: 0;
    padding: 5rem 5rem 5rem 40rem;
    margin-top: 5rem;
  }
}
.recruit-flow__text span::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/recruit/hand.svg) no-repeat;
  background-size: contain;
  width: 31rem;
  height: 31rem;
  top: 50%;
  left: 10rem;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .recruit-flow__text span::before {
    width: 20rem;
    height: 20rem;
    left: 5rem;
  }
}
.recruit-flow__text span::after {
  position: absolute;
  display: block;
  content: "";
  width: 245rem;
  height: 44rem;
  bottom: 0;
  right: -107rem;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #EFE7FF;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .recruit-flow__text span::after {
    width: 45%;
    height: auto;
    aspect-ratio: 245/44;
    right: auto;
    left: -58rem;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
}
.point01 {
  top: 87%;
  left: 15rem;
}

.point02 {
  top: 75%;
  left: 46rem;
}

.point03 {
  top: 87%;
  left: 79rem;
}

@media screen and (max-width: 768px) {
  .point01.js-target.toRight,
  .point02.js-target.toRight,
  .point03.js-target.toRight {
    animation: none;
  }
}
.choice-flow {
  max-width: 1200rem;
  width: 100%;
  margin: 0 auto;
  padding: 60rem 0;
  background-color: #fff;
}

.choice-flow__inner {
  max-width: 800rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 30rem;
}

.choice-flow__list {
  display: flex;
  flex-direction: column;
  gap: 24rem;
  margin-top: 30rem;
}

@media screen and (max-width: 768px) {
  .choice-flow__list {
    gap: 20rem;
  }
}
.choice-flow__item {
  display: grid;
  place-content: center;
  width: 100%;
  height: 80rem;
  border: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .choice-flow__item {
    height: 40rem;
  }
}
.choice-flow__item a {
  text-decoration: underline;
}

.choice-flow__item:last-child {
  background-color: #666666;
  color: #fff;
}

.recruiment {
  padding: 184rem 0 229rem;
}

@media screen and (max-width: 768px) {
  .recruiment {
    padding: 60rem 0 60rem;
  }
}
.recruiment .recruit__heading {
  color: #fff;
}

.recruiment__list {
  max-width: 1320rem;
  width: 91.6%;
  margin: 67rem auto 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .recruiment__list {
    margin: 40rem auto 0;
  }
}
.recruiment__item {
  display: flex;
  height: 118rem;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .recruiment__item {
    flex-direction: column;
    height: auto;
  }
}
.recruiment__item dt {
  display: grid;
  place-content: center;
  width: 320rem;
  font-weight: 400;
  border-right: 1px solid #000;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .recruiment__item dt {
    width: 100%;
    padding: 10rem;
    border-right: none;
  }
}
.recruiment__item dd {
  display: grid;
  place-content: center;
  flex: 1;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .recruiment__item dd {
    padding: 10rem;
  }
}
.recruit-cta {
  display: grid;
  place-content: center;
  max-width: 1313rem;
  width: 91%;
  height: 263rem;
  margin: 134rem auto 0;
  background: url(../images/recruit/02.webp) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .recruit-cta {
    height: auto;
    aspect-ratio: 1313/263;
    margin-top: 60rem;
  }
}
.recruit-cta p {
  font-size: 36rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .recruit-cta p {
    font-size: 24rem;
  }
}
/* contact
******************************************************************************************/
.contact-mv {
  background: url(../images/contact/mv.webp) no-repeat;
  background-size: cover;
}

.contact-top {
  padding: 90rem 0 188rem;
}

@media screen and (max-width: 768px) {
  .contact-top {
    padding: 0 0 90rem;
  }
}
.contact-top__inner {
  max-width: 880rem;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
}

.contact-top__list {
  display: flex;
  flex-direction: column;
  gap: 72rem;
}

@media screen and (max-width: 768px) {
  .contact-top__list {
    gap: 0;
  }
}
.contact-top__item {
  padding-top: 60rem;
}

.contact-top__heading {
  max-width: 532rem;
  padding: 0 0 28rem;
  margin: 0 auto;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .contact-top__heading {
    padding: 0 0 15rem;
  }
}
.contact-top__heading h2 {
  position: relative;
  width: fit-content;
  font-size: 24rem;
  line-height: 1.5;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contact-top__heading h2 {
    font-size: 20rem;
  }
}
.contact-top__item:nth-child(1) h2::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/common/bill.svg) no-repeat;
  background-size: contain;
  width: 44rem;
  height: 44rem;
  top: 50%;
  left: -57rem;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .contact-top__item:nth-child(1) h2::before {
    width: 30rem;
    height: 30rem;
    left: -32rem;
  }
}
.contact-top__item:nth-child(2) h2::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/common/home.svg) no-repeat;
  background-size: contain;
  width: 44rem;
  height: 44rem;
  top: 50%;
  left: -57rem;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .contact-top__item:nth-child(2) h2::before {
    width: 30rem;
    height: 30rem;
    left: -32rem;
  }
}
.contact-top__description {
  line-height: 1.875;
  font-weight: 400;
  margin-top: 42rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact-top__description {
    margin-top: 20rem;
    text-align: left;
  }
}
.contact-top__tel {
  max-width: 630rem;
  font-size: 24rem;
  font-weight: 400;
  padding: 30rem 0;
  margin: 54rem auto 0;
  background-color: #000;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.contact-top__tel a {
  text-decoration: underline;
}

.contact-top-box {
  max-width: 630rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 42rem auto 0;
  padding: 32rem 29rem 47rem;
  border: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .contact-top-box {
    padding: 20rem;
  }
}
.contact-top-box__list {
  display: flex;
  flex-direction: column;
  gap: 21rem;
  width: fit-content;
  margin: 28rem auto 0;
}

.contact-top-box__item {
  padding-left: 1em;
  text-indent: -1em;
}

.form-area {
  font-weight: 400;
  padding: 115rem 0 357rem;
  background-color: #EFE7FF;
}

@media screen and (max-width: 768px) {
  .form-area {
    padding: 60rem 0 60rem;
  }
}
.form-area__inner {
  max-width: 1180px;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
}

.form-area__heading {
  font-size: 24rem;
  line-height: 1.5;
  text-align: center;
}

.form-area__lead {
  line-height: 2;
  margin-top: 46rem;
  text-align: center;
}

.form-area__lead a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .form-area__lead {
    margin-top: 20rem;
  }
}
.caution {
  margin: 100rem 0 32rem;
}

@media screen and (max-width: 768px) {
  .caution {
    margin: 50rem 0 20rem;
  }
}
.caution span {
  color: #0019FB;
}

.contact__list {
  display: flex;
  flex-direction: column;
}

.contact__item {
  display: flex;
  align-items: center;
  border-top: 1px solid #000;
}

.contact__item:last-child {
  align-items: flex-start;
}

.contact__item:last-child dt {
  margin-top: 46rem;
}

@media screen and (max-width: 768px) {
  .contact__item:last-child dt {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .contact__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12rem;
    padding: 20rem 0;
  }
}
.contact__item dt {
  min-width: 270rem;
  font-size: 20rem;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
  color: #3F3F3F;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact__item dt {
    min-width: auto;
    text-align: left;
  }
}
.contact__item dt span {
  color: #0019FB;
}

@media screen and (max-width: 768px) {
  .contact__item dt {
    font-size: 18rem;
    width: 100%;
  }
}
.contact__item dd {
  width: 100%;
  font-size: 20rem;
  padding: 30rem 0;
}

@media screen and (max-width: 768px) {
  .contact__item dd {
    font-size: 18rem;
    padding: 0;
  }
}
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  font-size: 20rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 20rem 30px 20rem 30rem;
  background-color: #fff;
  border: 1px solid #000;
}

@media screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-size: 18rem;
    padding: 20rem;
  }
}
textarea {
  min-height: 287rem;
}

@media screen and (max-width: 768px) {
  textarea {
    min-height: 180rem;
    height: 180rem;
  }
}
.agree {
  display: block;
  width: fit-content;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 39px auto 0 190px;
}

@media screen and (max-width: 768px) {
  .agree {
    font-size: min(16px, 3.6363636364vw);
    letter-spacing: 0;
    margin: 0 auto 0 0;
  }
}
input[type=checkbox] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border: 1px solid #3F3F3F;
  vertical-align: middle;
  display: none;
}

input[type=radio] {
  display: none;
}

.privacy-box {
  line-height: 1.5;
  height: 77rem;
  padding: 10rem;
  margin-top: 7rem;
  overflow-y: auto;
  background-color: #fff;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 23rem;
}

@media screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 10rem;
  }
}
.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  width: fit-content;
  line-height: 1.5;
  margin: 2em auto 1em;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 20rem;
  font-weight: normal;
  display: block;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 16rem;
  }
}
.wpcf7-list-item > label {
  display: flex;
  align-items: center;
}

.wpcf7-radio input[type=radio] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 35rem;
}

@media screen and (max-width: 768px) {
  .wpcf7-radio input[type=radio] + .wpcf7-list-item-label {
    padding-left: 24rem;
  }
}
.wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1rem solid #000;
}

@media screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item-label::before {
    width: 20rem;
    height: 20rem;
  }
}
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 14rem;
  height: 14rem;
  background-color: #000;
  top: 50%;
  left: 5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
    width: 12rem;
    height: 12px;
    left: 4rem;
  }
}
.contact-btn-wrap {
  margin: 85px auto 0;
}

@media screen and (max-width: 768px) {
  .contact-btn-wrap {
    margin: 20px auto 0;
    padding: 0 6px;
  }
}
input[type=submit] {
  display: block;
  max-width: 510rem;
  width: 100%;
  height: 140rem;
  font-size: 32rem;
  line-height: 140rem;
  font-weight: 400;
  margin: 153rem auto 0;
  background-color: #000;
  color: #fff;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  input[type=submit] {
    font-size: 28rem;
    height: 100rem;
    line-height: 100rem;
    margin: 50rem auto 0;
  }
}
input[type=submit]:hover, input[type=submit]:active {
  background-color: #fff;
  color: #000;
}

/* archive
******************************************************************************************/
.news-mv {
  background: url(../images/news/mv.webp) no-repeat;
  background-size: cover;
}

.archive-container {
  padding: 150rem 0 285rem;
}

@media screen and (max-width: 768px) {
  .archive-container {
    padding: 60rem 0;
  }
}
.archive__inner {
  max-width: 1100rem;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
}

.news-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 110rem;
  padding: 40rem 0;
  border-bottom: 1rem solid #000;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15rem;
    padding: 15rem 0;
  }
}
.news-item p {
  line-height: 1.5;
}

.news-item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.news-item:hover {
  opacity: 0.6;
}

.pagenation {
  display: flex;
  justify-content: center;
  gap: 20rem;
  margin-top: 74rem;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 45rem;
  box-shadow: 0 0.3rem 1.9rem 0 rgba(0, 0, 0, 0.25);
}

.page-numbers.current {
  background-color: #DFD0FF;
  color: #fff;
  box-shadow: 0 4rem 4rem 0 rgba(0, 0, 0, 0.25);
}

.page-numbers.current {
  background-color: #DFD0FF;
  color: #fff;
  box-shadow: 0 4rem 4rem 0 rgba(0, 0, 0, 0.25);
}

/* single
******************************************************************************************/
.single-container {
  padding: 200rem 0 216rem;
}

@media screen and (max-width: 768px) {
  .single-container {
    padding: 60rem 0;
  }
}
.single__inner {
  max-width: 1005rem;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
  line-height: 1.5;
}

.single__inner h1 {
  width: fit-content;
  font-size: 32rem;
  margin: 0 auto 84rem;
}

@media screen and (max-width: 768px) {
  .single__inner h1 {
    font-size: 20rem;
    margin: 0 auto 30rem;
  }
}
.single__inner h2 {
  font-size: 28rem;
  margin-bottom: 30rem;
}

@media screen and (max-width: 768px) {
  .single__inner h2 {
    font-size: 24rem;
    margin-bottom: 20rem;
  }
}
.single__inner h3 {
  font-size: 24rem;
  margin-bottom: 30rem;
}

@media screen and (max-width: 768px) {
  .single__inner h3 {
    font-size: 20rem;
    margin-bottom: 20rem;
  }
}
.single__inner time {
  margin-top: 39rem;
}

@media screen and (max-width: 768px) {
  .single__inner time {
    font-size: 14rem;
    margin-top: 10rem;
  }
}
.single__inner p {
  line-height: 1.875;
  margin-bottom: 20rem;
}

.single__inner img {
  display: block;
  margin-bottom: 30rem;
}

@media screen and (max-width: 768px) {
  .single__inner img {
    margin-bottom: 20rem;
  }
}
.single-back {
  position: relative;
  display: block;
  width: fit-content;
  line-height: 1.875;
  padding-bottom: 19rem;
  margin: 153rem auto 0;
}

@media screen and (max-width: 768px) {
  .single-back {
    padding-bottom: 10rem;
    margin: 60rem auto 0;
  }
}
.single-back::before {
  position: absolute;
  display: block;
  content: "";
  width: 190rem;
  height: 19rem;
  background: url(../images/single/back.svg) no-repeat;
  background-size: contain;
  bottom: 0;
  left: 50%;
  translate: -50%;
  transition: left 0.4s;
}

.single-back:hover::before {
  left: 40%;
}

/* works
******************************************************************************************/
.works-mv {
  background: url(../images/works/mv.webp) no-repeat;
  background-size: cover;
}

/* single-works
******************************************************************************************/
.single-works-container {
  padding: 162rem 0 238rem;
}

@media screen and (max-width: 768px) {
  .single-works-container {
    padding: 60rem 0;
  }
}
.single-works__inner {
  max-width: 1190rem;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
  line-height: 1.5;
}

.single-works__inner h1 {
  font-size: 36rem;
  line-height: 1.5;
  margin-bottom: 138rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .single-works__inner h1 {
    font-size: 20rem;
    margin-bottom: 20rem;
    text-align: left;
  }
}
.single-works__inner h2 {
  font-size: 28rem;
  margin-bottom: 100rem;
}

@media screen and (max-width: 768px) {
  .single-works__inner h2 {
    font-size: 24rem;
    margin-bottom: 20rem;
  }
}
.single-works__inner h3 {
  font-size: 24rem;
  margin-bottom: 100rem;
}

@media screen and (max-width: 768px) {
  .single-works__inner h3 {
    font-size: 20rem;
    margin-bottom: 20rem;
  }
}
.single-works__inner p {
  font-size: 24rem;
  line-height: 1.875;
  margin-bottom: 160rem;
}

@media screen and (max-width: 768px) {
  .single-works__inner p {
    font-size: 16rem;
    margin-bottom: 30rem;
  }
}
.single-works__inner img {
  display: block;
  max-width: 960rem;
  margin: 0 auto 138rem;
}

@media screen and (max-width: 768px) {
  .single-works__inner img {
    margin: 0 auto 30rem;
  }
}
.works-label {
  display: flex;
  gap: 10rem;
  margin-bottom: 38rem;
}

@media screen and (max-width: 768px) {
  .works-label {
    margin-bottom: 15rem;
  }
}
.works-label__item {
  display: inline-block;
  line-height: 31rem;
  height: 31rem;
  padding: 0 17rem;
  background-color: #666666;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .works-label__item {
    font-size: 14rem;
    line-height: 20rem;
    height: 20rem;
    padding: 0 10rem;
  }
}
.single-works-back {
  display: block;
  font-size: 24rem;
  line-height: 76rem;
  width: 387rem;
  height: 76rem;
  border: 1px solid #000;
  margin: auto;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
}

@media screen and (max-width: 768px) {
  .single-works-back {
    width: 100%;
    max-width: 300rem;
    font-size: 18rem;
    line-height: 50rem;
    height: 50rem;
  }
}
.single-works-back:hover {
  background-color: #000;
  color: #fff;
}

.archive-works-tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32rem;
  max-width: 1290rem;
  width: 100%;
  padding: 0 30rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .archive-works-tab {
    grid-template-columns: repeat(1, 1fr);
    gap: 15rem;
  }
}
.archive-works-tab__item a {
  display: block;
  font-size: 24rem;
  line-height: 76rem;
  height: 76rem;
  text-align: center;
  border: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .archive-works-tab__item a {
    font-size: 20rem;
    line-height: 40rem;
    height: 40rem;
  }
}
.archive-works__list {
  display: flex;
  flex-direction: column;
  gap: 155rem;
  margin-top: 71rem;
}

@media screen and (max-width: 768px) {
  .archive-works__list {
    gap: 50rem;
    margin-top: 30rem;
  }
}
.archive-works__item h2 {
  font-size: 24rem;
  line-height: 1.5;
  padding-bottom: 7rem;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .archive-works__item h2 {
    font-size: 20rem;
  }
}
.archive-works-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90rem 60rem;
  margin-top: 27rem;
}

@media screen and (max-width: 768px) {
  .archive-works-card__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30rem;
  }
}
.archive-works-card__item {
  position: relative;
}

.archive-works-card__item h3 {
  line-height: 1.5;
  padding: 20rem 15rem;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .archive-works-card__item h3 {
    padding: 15rem 0;
  }
}
.archive-works-card__item a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive-works-card__item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.archive-works-card__image {
  width: 100%;
  aspect-ratio: 400/270;
  display: grid;
  place-content: center;
  font-size: 40rem;
  background: aliceblue;
}

.archive-works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taxonomy-name {
  display: inline-block;
  margin-top: 15rem;
  padding: 4rem 17rem;
  background-color: #666666;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .taxonomy-name {
    font-size: 12rem;
    padding: 3rem 10rem;
  }
}
/* 404
******************************************************************************************/
.page_404-mv {
  background: rgba(0, 0, 0, 0.9);
}

.page-404 {
  position: relative;
  min-height: calc(100vh - 316px);
  padding: 90px 0 120px;
}

@media screen and (max-width: 768px) {
  .page-404 {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
  }
}
.page-404 p {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #242424;
  text-align: center;
}

.page-404 a {
  display: block;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #242424;
  margin-top: 40px;
  text-align: center;
  text-decoration: underline;
  transition: opacity 0.4s;
}

.page-404 a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .page-404 a {
    margin-top: 20px;
  }
}
.page-404__inner {
  position: relative;
}