@charset "UTF-8";
/* CSSリセット
--------------------------------------------------------------------------------------------------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

fieldset, img {
  border: 0;
}

abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/* COMMON */
body {
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(3.2vw, 24px);
  font-weight: 400;
  color: #000;
  line-height: 2;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.is_block {
  display: block;
}

.is_inline_block {
  display: inline-block;
}

.is_pc_block {
  display: block;
}

.is_pc_none {
  display: none;
}

@media screen and (max-width: 768px) {
  .is_sp_block {
    display: block;
  }
  .is_pc_block {
    display: inline;
  }
  .is_pc_none {
    display: block;
  }
}
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 750px;
  margin: 0 auto;
  padding: 0.83em 1.45em 0.83em 1em;
  background: #fff;
  z-index: 201;
}

.header_logo {
  width: 100%;
  max-width: 8.54em;
}

/* ハンバーガーボタン */
.menu_open_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.41em;
  width: 1.7em;
  height: 1.7em;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1em;
}

.menu_open_btn span {
  display: block;
  width: 100%;
  height: 0.16em;
  background-color: #1146ad;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
          transition: opacity 0.3s, transform 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.menu_open_btn.is_active span:nth-child(1) {
  -webkit-transform: translateY(0.55em) rotate(45deg);
          transform: translateY(0.55em) rotate(45deg);
}

.menu_open_btn.is_active span:nth-child(2) {
  opacity: 0;
}

.menu_open_btn.is_active span:nth-child(3) {
  -webkit-transform: translateY(-0.55em) rotate(-45deg);
          transform: translateY(-0.55em) rotate(-45deg);
}

/* メニューオーバーレイ（全画面・半透明黒） */
.menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
          transition: opacity 0.3s ease;
}

.menu_overlay.is_open {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（白背景・max750px・中央寄せ） */
.menu_inner {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 3.71em;
}

/* メニューナビ */
.menu_nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 4%;
  text-align: center;
}

.menu_nav ul {
  list-style: none;
}

.menu_nav_link {
  display: block;
  padding: 0.66em 0;
  font-size: 1.08em;
  color: #071d47;
  border-bottom: 1px solid #d8dde8;
  -webkit-transition: color 0.2s;
          transition: color 0.2s;
}

.menu_nav_link:hover {
  color: #2d96dc;
}

/* メニュー内CTAボタン */
.menu_cta_btn {
  display: block;
  width: 92%;
  margin: 1.8em auto 0;
}
.menu_cta_btn:hover {
  opacity: 0.8;
}

.footer {
  padding: 3.33em 5.33% 3.16em;
}
.footer .copyright {
  font-size: 0.83em;
  text-align: center;
}

.footer_logo {
  display: block;
  width: 43.58%;
  margin: 0 auto 1.58em;
}

.btn_wrap {
  position: relative;
}
.btn_wrap .btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
}
.btn_wrap .btn:hover {
  opacity: 0.8;
}
.mv_headline_wrap {
  position: relative;
}
.mv_btn {
  display: block;
  position: absolute;
  bottom: 6.51%;
  left: 2%;
  width: 50.66%;
}

.recruitment_results_items_wrap {
  position: relative;
}
.recruitment_results_items_grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 4%;
}
.recruitment_results_item {
  width: 48.69%;
}
.recruitment_results_btn {
  display: block;
  width: 84.82%;
  margin: 1.78% auto 0;
}
.recruitment_results_btn:hover {
  opacity: 0.8;
}

.voice_section .btn_wrap .btn {
  top: 3.5em;
}

.voice_accordion {
  position: relative;
  background-color: #fff;
}
.voice_accordion.is_open .voice_accordion_content {
  max-height: none;
}
.voice_accordion.is_open .voice_accordion_content::before {
  display: none;
}
.voice_accordion.is_open .voice_accordion_btn {
  display: none;
}

.voice_accordion_content {
  max-height: 15.83em;
  padding: 2.29em 10.13%;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.voice_accordion_content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.5)), color-stop(50%, rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, rgb(255, 255, 255) 50%);
  z-index: 1;
  pointer-events: none;
}

.voice_accordion_btn {
  position: absolute;
  bottom: -1.8em;
  left: 0;
  right: 0;
  width: 26.66%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}

.faq_section .btn_wrap {
  margin-top: 2.66em;
}

.faq_wrap {
  padding: 0 5.33%;
}

.faq_content {
  position: relative;
  background-color: #edf6fc;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}
.faq_content:first-child {
  border-radius: 1.33em 1.33em 0 0;
}
.faq_content:last-child {
  border-radius: 0 0 1.33em 1.33em;
}
.faq_content:not(:last-child) {
  margin-bottom: 0.166em;
}

.faq_question {
  position: relative;
  cursor: pointer;
}
.faq_question::before, .faq_question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.77%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.83em;
  height: 0.041em;
  background-color: #2d96dc;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.faq_question::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq_question.is_active::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq_question.is_active::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
}

.faq_answer {
  display: none;
  padding: 0 0 1.75em;
}

.info_block {
  padding: 0 0 3.75em;
  background: #edf6fd;
}
.event_btn_wrap {
  position: relative;
}
.event_btn {
  display: block;
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  width: 52.71%;
  margin: 0 auto;
}
.event_btn:hover {
  opacity: 0.8;
}
.sub_voice_section .btn {
  width: 84.8%;
}