@charset "utf-8";
/**************************************************************
	このページ共通のcss
***************************************************************/
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
}

/* 横幅 */
.cnt {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1015px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cnt {
    padding: 0 15px;
  }
}

/* 見出し（h3） */
.faq-common-title {
  font-family: var(--font-serif);
  color: var(--color-brown);
  border-top: 2px solid var(--color-brown);
  border-bottom: 2px solid var(--color-brown);
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 80px;
  margin-bottom: 40px;
  background-color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .faq-common-title {
    font-size: 20px;
    line-height: 46px;
    margin-bottom: 30px;
  }
}

/**************************************************************
	ヘッダー
***************************************************************/
/*gnavをTOPに合わせる*/
.gnav-list {
  gap: 40px;
}

@media screen and (min-width: 1261px) {
  .gnav-item:not(:last-of-type)::before {
    left: calc(100% + 20px);
  }

  .banner-item .nav-item {
    width: 200px;
    padding: 5px 15px;
    background-color: var(--color-text);
  }
}

/**************************************************************
	KV
***************************************************************/
/* -----------▼▼/recuruit/（選考フロー）と共通▼▼------------ */
.kv {
  margin-top: 100px;
}

.kv-wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.kv h1.page-title {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 16px;
  z-index: 2;
}

.kv h1.page-title span {
  font-family: var(--font-serif);
}

.kv-inner {
  position: relative;
  z-index: 1;
}

.kv-inner::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/lp_common/lp_common_img/deco02.png) no-repeat center/contain;
  width: 77.7vw;
  max-width: 995px;
  aspect-ratio: 8 / 7;
  right: 70vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.kv-inner img {
  width: 70vw;
  margin-left: auto;
}

.kv-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 557.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.kv-text h1,
.kv-text p,
.kv-text span {
  font-family: var(--font-serif);
  color: #fff;
  background-color: var(--color-text);
  text-align: center;
  display: inline-block;
}

.kv-text h1 {
  font-size: 3.28vw;
  line-height: 5.46vw;
  padding: 0 23px;
  width: fit-content;
}

.kv-text p {
  font-size: 1.56vw;
  line-height: 3.51vw;
  padding: 0 20px;
  font-weight: bold;
}

@media screen and (max-width: 1260px) {
  .kv {
    margin-top: 0px;
  }
}

@media screen and (min-width: 1280px) {
  .kv-text h1 {
    font-size: 42px;
    line-height: 70px;
  }

  .kv-text p {
    font-size: 20px;
    line-height: 45px;
  }
}

@media screen and (max-width: 1135px) {
  .kv-text {
    left: 10px;
  }
}

@media screen and (max-width: 767px) {

  .kv-inner::after {
    width: 355px;
    right: 60%;
    top: auto;
    bottom: -100px;
    transform: translateY(0);
  }

  .kv-inner img {
    width: 100%;
    margin-left: auto;
  }

  .kv-text {
    position: static;
    transform: translateY(0);
    margin-top: -20px;
    gap: 6px;
  }

  .kv-text h1 {
    line-height: 44px;
    font-size: 21px;
  }

  .kv-text p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    font-size: 16px;
    line-height: 30px;
    padding: 0 10px;
  }

  .kv-text span {
    display: block;
    padding: 0 14px;
    width: fit-content;
  }
}


/* -----------▲▲/recuruit/（選考フロー）と共通▲▲------------ */

/* ------------ ページ内アンカー ------------ */
.lp-anchor-link {
  z-index: 2;
}

.lp-anchor-link ul {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
}

.lp-anchor-link ul li {
  flex: 1;
  max-width: 400px;
}

.lp-anchor-link ul a {
  border: 1px solid var(--color-text);
  font-weight: normal;
  color: var(--color-text) !important;
  margin: 0;
  padding: 0 40px;
}

.lp-anchor-link ul a::after {
  content: "\E842";
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: inherit;
}

.lp-anchor-link ul li:nth-child(odd) a {
  background-color: #EEEEEE;
}

.lp-anchor-link ul li:nth-child(even) a {
  background-color: #FFF8E0;
}

/* ホバーアクション */
@media (any-hover: hover) {
  .lp-anchor-link ul a:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 960px) {
  .lp-anchor-link ul {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .lp-anchor-link ul {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0 40px 0;
  }

  .lp-anchor-link ul li {
    margin: 0 auto;
    width: 100%;
  }

  .lp-anchor-link ul a {
    font-weight: bold;
    padding: 0 40px;
  }

  .lp-anchor-link ul a::after {
    font-size: 30px;
  }
}

/**************************************************************
	よくある質問
***************************************************************/
.question {
  padding: 60px 0;
}

.question#all-question {
  background-color: #EEEEEE;
}

.question#parttime-question {
  background-color: #FFF8E0;
}

@media screen and (max-width: 767px) {
  .question {
    padding: 30px 0;
  }
}

/* -----------▼▼/recuruit/（選考フロー）と共通▼▼------------ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.faq-item dt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 20px;
  background-color: var(--color-white);
}

/* Qアイコン */
.faq-item dt::before {
  content: "";
  background: url(/lp_common/lp_common_img/ico_question.png) no-repeat center / contain;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.faq-item dd {
  padding: 20px 20px 0 66px;
  font-size: 18px;
  position: relative;
}

/* Aアイコン */
.faq-item dd::before {
  content: "";
  background: url(/lp_common/lp_common_img/ico_answer.png) no-repeat center / contain;
  width: 36px;
  height: 36px;
  position: absolute;
  left: 20px;
  top: 20px;
}

@media screen and (max-width: 767px) {
  .faq-list {
    gap: 30px;
  }

  .faq-item dt {
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
  }

  /* Qアイコン */
  .faq-item dt::before {
    width: 34px;
    height: 34px;
  }

  .faq-item dd {
    padding: 15px 15px 0 59px;
    font-size: 16px;
  }

  /* Aアイコン */
  .faq-item dd::before {
    width: 34px;
    height: 34px;
    left: 15px;
    top: 15px;
  }
}

/* -----------▲▲/recuruit/（選考フロー）と共通▲▲------------ */

/**************************************************************
	その他のコンテンツ
***************************************************************/
/* -----------▼▼/recuruit/（選考フロー）と共通▼▼------------ */
.other {
  position: relative;
  padding: 60px 0;
  z-index: 1;
  overflow: hidden;
}

.other::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/lp_common/lp_common_img/deco02.png) no-repeat center / contain;
  width: 65.7vw;
  max-width: 841px;
  aspect-ratio: 8 / 7;
  right: 56.5vw;
  top: 0;
  transform: translateY(-30%);
  z-index: -1;
}

.other .sec-head {
  margin-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .other {
    padding: 30px 0;
  }

  .other::before {
    width: 492px;
    right: 67%;
    transform: translateY(0);
    top: -30px;
  }

  .other .sec-head {
    margin-bottom: 20px;
  }

  .bnr-list {
    margin-bottom: 60px;
  }
}

/* -----------▲▲/recuruit/（選考フロー）と共通▲▲------------ */