@charset "UTF-8";
.l-pagetitle__inner::after {
  content: "FAQ";
}

.p-faq__nav {
  flex-wrap: wrap;
  list-style-type: none;
  text-align: center;
  gap: 15px;
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .p-faq__nav {
    margin-bottom: 70px;
  }
}
@media (min-width: 959px) {
  .p-faq__nav {
    margin-bottom: 100px;
    gap: 40px;
  }
}
@media (min-width: 1199px) {
  .p-faq__nav {
    max-width: 1200px;
    margin-inline: auto;
  }
}
.p-faq__nav li {
  width: calc((100% - 15px) / 2);
  /* &.-recruitment {
      background-color: $navy;
  }
  &.-mid-career {
      background-color: $blue;
  } */
}
@media (min-width: 959px) {
  .p-faq__nav li {
    width: calc((100% - 40px) / 2);
  }
}
.p-faq__nav li a {
  border: 1px solid #b2b2b2;
  color: currentColor;
  text-decoration: none;
  font-weight: 900;
  padding: 1em 0.5em;
  font-size: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background-color 0.5s;
}
@media (min-width: 767px) {
  .p-faq__nav li a {
    font-size: 120%;
    display: block;
  }
}
@media (any-hover: hover) {
  .p-faq__nav li a:where(:-webkit-any-link, :enabled, summary):hover {
    background-color: #efefef;
  }
  .p-faq__nav li a:where(:-moz-any-link, :enabled, summary):hover {
    background-color: #efefef;
  }
  .p-faq__nav li a:where(:any-link, :enabled, summary):hover {
    background-color: #efefef;
  }
}
@media (min-width: 767px) {
  .p-faq__nav li a br {
    display: none;
  }
}
.p-faq__nav li.active a {
  border-color: #002855;
  background-color: #002855;
  color: #fff;
}
.p-faq__contents {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  /* @include tab {
      padding: 60px 40px;
  }
  @include pc {
      padding: 80px 50px 120px;
  }
  @include pc2 {
      padding: 100px 50px 180px;
  } */
  /* &#recruitment {
      background-color: $navy;
  }
  &#mid-career {
      background-color: $blue;
  } */
}
.p-faq__contents.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.p-faq__contents-inner {
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 959px) {
  .p-faq__contents-inner {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
  }
}
@media (min-width: 1199px) {
  .p-faq__contents-inner {
    max-width: 1200px;
    margin-inline: auto;
  }
}
.p-faq__contents-inner section {
  background-color: #fff;
  padding: 20px 5%;
}
@media (min-width: 767px) {
  .p-faq__contents-inner section {
    padding: 30px 30px 40px;
  }
}
@media (min-width: 959px) {
  .p-faq__contents-inner section {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
  }
}
.p-faq__contents-inner section .u-flex {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (min-width: 959px) {
  .p-faq__contents-inner section .u-flex {
    margin: 0;
  }
}
.p-faq__contents-inner section .u-flex hgroup {
  width: calc(100% - 100px - 20px);
  font-family: YakuHanMP, "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 1199px) {
  .p-faq__contents-inner section .u-flex hgroup {
    width: calc(100% - 125px - 20px);
  }
}
.p-faq__contents-inner section .u-flex hgroup h2 {
  font-size: clamp(1.25rem, 0.909rem + 1.456vw, 2rem);
  line-height: 1.5;
}
@media (min-width: 1199px) {
  .p-faq__contents-inner section .u-flex hgroup h2 {
    font-size: 2rem;
  }
}
.p-faq__contents-inner section .u-flex hgroup p {
  margin-top: 0.5em;
  font-size: clamp(1.063rem, 0.92rem + 0.607vw, 1.375rem);
}
@media (min-width: 1199px) {
  .p-faq__contents-inner section .u-flex hgroup p {
    font-size: 1.375rem;
  }
}
.p-faq__contents-inner section .u-flex figure {
  border-radius: 100px;
  background-color: #E2F0F5;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.p-faq__contents-inner section .u-flex figure img {
  width: 70%;
}
@media (min-width: 1199px) {
  .p-faq__contents-inner section .u-flex figure {
    width: 125px;
    height: 125px;
  }
  .p-faq__contents-inner section .u-flex figure img {
    width: 81px;
  }
}
.p-faq__contents-inner section .u-txt {
  margin-top: 12px;
}
@media (min-width: 959px) {
  .p-faq__contents-inner section .u-txt {
    margin-top: 20px;
    margin-bottom: auto;
  }
}
.p-faq__contents-link {
  margin-top: 20px;
}
@media (min-width: 767px) {
  .p-faq__contents-link {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }
}
@media (min-width: 959px) {
  .p-faq__contents-link {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.p-faq__list {
  margin-top: 20px;
}
@media (min-width: 959px) {
  .p-faq__list {
    margin-top: 30px;
  }
}
@media (min-width: 1199px) {
  .p-faq__list {
    margin-top: 50px;
  }
}
@media (min-width: 767px) {
  .p-faq__list .c-faq__items {
    gap: 50px;
  }
}
@media (min-width: 959px) {
  .p-faq__list .c-faq__items {
    gap: 70px;
  }
}
@media (min-width: 1199px) {
  .p-faq__list .c-faq__items {
    gap: 80px;
  }
}
.p-faq__list .c-faq__label {
  font-weight: bold;
  font-size: 1rem;
}
@media (min-width: 959px) {
  .p-faq__list .c-faq__label {
    font-size: 1.125rem;
  }
}
.p-faq__list .c-faq__panel-inner {
  background-color: #F0F0F0;
}
.p-faq__list .c-faq__panel-inner ol {
  list-style-type: none;
}
.p-faq__list .c-faq__panel-inner ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-faq__list .c-faq__panel-link {
  margin-top: 20px;
}
@media (min-width: 959px) {
  .p-faq__list .c-faq__panel-link {
    margin-top: 30px;
  }
}
.p-faq__list .c-faq__panel-link a {
  border-radius: 100px;
  color: #fff;
  padding: 14px;
  max-width: 303px;
  margin-inline: auto;
}
@media (min-width: 767px) {
  .p-faq__list .c-faq__panel-link a {
    margin: 0 auto 0 0;
  }
}
@media (min-width: 959px) {
  .p-faq__list .c-faq__panel-link a {
    padding: 10px 14px;
  }
}
.p-faq__list .c-faq__panel-link a span:last-child {
  background-color: transparent;
}
.p-faq__list .c-faq__panel-link a span:last-child svg {
  fill: #fff;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=faq.css.map */