@charset "utf-8";

.header__inner {
  color: var(--font-black);
}

.nav ul li.has-child::before {
  border-top: 1.5px solid var(--font-black);
  border-right: 1.5px solid var(--font-black);
}

.header.is-bg::before {
    background: rgba(var(--main-blue-rgb), 0.5);
}

/*========= VISUAL ===============*/
.visual {
  background: url(../images/recruitvisual.webp) center / cover;
}

.visual__topic .topic {
  color: var(--main-blue);
  line-height: 1;
}

.visual__topic .TextTyping,
.topic {
  color: var(--main-blue);
}

.ruby {
  line-height: 0;
}

/*****  VISUAL SP *****/
@media screen and (max-width: 768px){
  .nav__btn span {
    background-color: var(--font-black);
  }

  .nav__btn.active span:nth-of-type(1),
  .nav__btn.active span:nth-of-type(2) {
    background: var(--font-black);
  }

  .visual {
    background: url(../images/recruitvisual_sp.webp) center / cover;
  }

} /* VISUAL SP 768px */

/*========= CONCEPT ===============*/
.section--concept,
.section--new,
.section--interview {
  text-align: center;
}

.section--concept .topic {
  color: var(--font-black);
  line-height: 1;
}

.section--concept .bgLRextend::before {
  background-color: var(--accent02);
}

.concept__topic {
  margin: 1.5em auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.concept__topic span {
  font-size: 2rem;
  width: fit-content;
  padding: 0 0.5em;
  line-height: 1.8;
  background: var(--gradient);
  margin: 0.5rem auto 0;
}

.concept__topic p {
  margin-top: 2rem;
}

.concept__list {
  display: flex;
  flex-wrap: wrap;
  margin: 5rem auto 0;
}

/***** CONCEPT SP *****/
@media screen and (max-width: 768px){
  .concept__topic span {
    font-size: 1.6rem;
  }
} /* CONCEPT SP 768px */

@media screen and (max-width: 480px){
  .concept__topic span {
    font-size: 1.1rem;
  }
} /* CONCEPT SP 480px */

/*========= SHOP ===============*/
.section--shop {
  margin-top: 5%;
}

.shop__item {
  margin: 4em 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop__image {
  width: 50%;
}

.shop__contents {
  width: 45%;
}

.shopImg {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(var(--font-white-rgb), 0.1);
}

.shop__name,
.interview__name {
  width: fit-content;
  font-size: 2rem;
  line-height: 0.75rem;
  letter-spacing: .15em;
  padding: .75rem;
  background: var(--gradient);
}

.shop__title {
  display: inline-block;
  margin-top: 1em;
  line-height: 1rem;
  letter-spacing: .1em;
  padding: .5rem;
  color: var(--accent02);
  background: rgba(var(--accent02-rgb), 0.1);
}

.shop__text {
  line-height: 2;
  letter-spacing: .1em;
}

.shop__message {
  margin: 5em 0 0;
  text-align: center;
}

.shop__message .btn {
  margin: 2em 0 0;
}

.shop__message .btn span {
  border: 1px solid var(--font-black);
}

.shop__message .rotatefront span:nth-child(1) {
  background: var(--gradient);
  color: var(--font-black);
}

.shop__message .rotatefront span:nth-child(2) {
  background: var(--accent02);
}

/***** SHOP SP *****/
@media screen and (max-width: 1024px) {
    .shop__name {
        font-size: 1.4rem;
    }

    .shop__title {
        margin-top: 0.5em;
        font-size: 1.2rem;
    }

    .shop__text {
        font-size: 1.2rem;
    }

    .shop__contents .btn {
        margin-top: 1em;
        max-width: 200px;
        height: 48px;
        line-height: 46px;
        font-size: 1.2rem;
    }

} /* SHOP SP 1024px */

@media screen and (max-width: 768px) {
    .shop__item {
        display: block;
    }

    .shop__image {
        margin: 0 auto;
        width: 70%;
    }

    .shop__contents {
        margin: 2em auto 0;
        width: 70%;
    }
} /* SHOP SP 768px */

@media screen and (max-width: 480px) {
  .shop__item {
    margin: 2em auto 0;
  }

  .shop__image,
  .shop__contents {
    width: 90%;
  }

  .shop__text {
    letter-spacing: .05em;
  }

  .shop__message {
    margin: 3em 5% 0;
  }
} /* SHOP SP 480px */

/*========= NEW ===============*/
.new__text {
  margin: 2em 0 0;
  font-size: 2.4rem;
}

/*========= INTERVIEW ===============*/
.interview__list {
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.interview__item {
  position: relative;
  width: 768px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;    /* 下揃え */
  margin-top: 3em;
}

.interview__img-wrap {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
}

.accordion-area {
  list-style: none;
  margin: 0 0 0 36px;
  width: calc(100% - 336px);
  max-width: 900px;
  z-index: 2;
  position: relative;
  text-align: left;
}

.accordion-area li {
  margin: 1em 0 0;
}

.accordion-area li:nth-of-type(1) {
  margin: 0 0 2em;
  text-align: left;
}

.title {
  position: relative;
  cursor: pointer;
  padding: 1.5em 0 1.5em 4em;
  transition: all .5s ease;
  text-align: left;
  color: var(--font-white);
  background: var(--main-blue);
}

.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: var(--font-white);
}

.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

.box {
  display: none;
  background: var(--font-white);
  padding: 1.5em;
  text-align: left;
}

.interview__staff {
  line-height: 2;
  text-align: left;
  padding-left: 1.5em;
  border-left: 7px solid var(--main-blue);
  display: inline-block;
}

.interview__staff span {
  font-size: 2rem;
  margin-left: 0.5em;
}

.interview__name {
  color: var(--font-white);
  background: var(--main-blue);
}

/* INTERVIEW SP */
@media (max-width: 900px) {
  .interview__item {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }
  .interview__img-wrap,
  .accordion-area {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }
  .accordion-area {
    margin-top: 2em;
  }
  .interview__img-wrap {
    height: auto;
  }
}
@media (max-width: 768px) {
  .interview__list {
    margin-top: 3em;
  }

  .interview__item {
    width: 100%;
    min-height: 0;
    flex-direction: column;
    align-items: center;
  }

  .interview__img-wrap {
    position: static;
    margin: 0 auto 2em;
    width: 100%;
    height: auto;
  }

  .interview__staff {
    padding-left: 0;
    padding-bottom: 0.5em;
    border-left: none;
    border-bottom: 4px solid var(--main-blue);
  }

  .accordion-area {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }

  .accordion-area li:nth-of-type(1) {
    text-align: center;
  }

  .box {
    max-width: 64%;
    margin: 0 auto;
  }
} /* INTERVIEW SP 768px */

@media (max-width: 600px) {
  .title {
    font-size: 1.4rem;
  }

  .box {
    max-width: 75%;
    max-width: initial;
  }
}

/*========= REQUIREMENTS ===============*/
.requirements__container {
  max-width: 920px;
  margin: 0 auto;
}

.section--requirements h2 {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.section--requirements h2 .en {
  display: block;
  color: var(--accent02);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  mix-blend-mode: normal;
  font-size: 1.6rem;
}

.section--requirements h2 p {
  font-size: 3.4rem;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section--requirements h2 p:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 5px;
  background: var(--gradient);
}

.section--requirements table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
}

.section--requirements th,
.section--requirements td {
  padding: 2rem;
  border-bottom: 1px solid rgba(var(--font-black-rgb), 0.05);
  line-height: 2;
  vertical-align: top;
}

.section--requirements th {
  width: 25%;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: rgba(var(--accent02-rgb), 0.05);
  border-right: 1px solid rgba(var(--font-black-rgb), 0.1);
}

.section--requirements td {
  font-size: 1.8rem;
}

.section--requirements tr:nth-child(even) {
  background-color: rgba(var(--main-blue-rgb), 0.05);
}

/* REQUIREMENTS SP */
@media (max-width: 1200px) {
  .requirements__container {
    max-width: 720px;
  }
} /* REQUIREMENTS SP 1200px */

@media (max-width: 768px) {
  .section--requirements table,
  .section--requirements th,
  .section--requirements td {
    display: block;
    width: 100%;
  }

  .section--requirements th {
    border-right: none;
    border-bottom: none;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
  }

  .section--requirements td {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.4rem;
  }

  .section--requirements tr {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--font-black-rgb), 0.1);
  }

  .section--requirements h2 p {
    font-size: 1.6rem;
  }

  .section--requirements tr:nth-child(even) {
    background-color: rgba(var(--font-white-rgb), 1);
  }

  .ft14 {
    font-size: 1.2rem;
  }
}

.section--requirements td ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section--requirements td ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.section--requirements td ul li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.annotation {
  font-size: 1.2rem;
}

/*========= CONTACT ===============*/
#contact .btn {
  margin-top: 5rem;
}