@charset "UTF-8";

:root {
  --red: #D80C18;
  --pink: #FFF3EF;
  --light-yellow: #FAF6E5;
  --yellow: #F0E7C4;
}

a:hover {
  opacity: .6;
}

/* ---- header ---- */
header.header_wrap {
  position: relative;
  z-index: 1005;
}

.h_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--pink);
  position: relative;
  z-index: 1000;
}

.h_logo {
  max-width: 270px;
  margin-left: 20px;
  position: relative;
  z-index: 1001;
}

.logo a {
  display: block;
}

.nav-fixed {
  position: fixed;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 998;
}

.js-gnav__panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  padding: 140px 20px 30px;
  overflow-y: scroll;
  background-color: #fff;
  font-size: 18px;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  pointer-events: initial;
  z-index: 999;
}

.gnav__list {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
  padding: 50px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(335px, 1fr));
  gap: 0 10px;
  border-radius: 20px;
  border: 1px solid var(--red);
  position: relative;
}

.gnav__list::before,
.gnav__list::after {
  content: "";
  position: absolute;
  background-size: contain;
}

.gnav__list::before {
  width: 153px;
  height: 132px;
  background-image: url(/recruit/img/nav_deco_01.png);
  top: -100px;
  left: -70px;
}

.gnav__list::after {
  width: 129px;
  height: 129px;
  background-image: url(/recruit/img/nav_deco_02.png);
  bottom: -20px;
  right: -30px;
}

.gnav__list-item a {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding: 30px 0;
  position: relative;
}

.gnav__list-item a::before {
  content: "\E841";
  font-family: recop-iconfonts;
  font-size: 30px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.gnav_area {
  width: 100%;
  max-width: 430px;
  min-height: 70px;
}

.h_entry_wrap {
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1002;
}

.h_entry_area {
  width: 100%;
  max-width: 180px;
}

.h_entry_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70px;
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  color: var(--red);
  border: 1px solid var(--red);
}

.h_entry_area.entry_btn_02 .h_entry_btn {
  color: #fff;
  background-color: var(--red);
}

/*　----- ボタンカスタム ----*/
.gnav__btn-wrap {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.js-gnav__btn {
  display: block;
  width: 70px;
  height: 70px;
  position: relative;
  background-color: #111;
  cursor: pointer;
  pointer-events: initial;
  z-index: 1002;
}

.js-gnav__btn:hover {
  opacity: 1;
}

.js-gnav__btn span {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.js-gnav__btn span:nth-child(1) {
  top: 27px;
}

.js-gnav__btn span:nth-child(2) {
  top: 36px;
}

.js-gnav__btn span:nth-child(3) {
  top: 45px;
}

/* ---ボタンオープンしたら--- */

.js-gnav.is-open .js-gnav__btn span:nth-child(1) {
  width: 36px;
  transform: translateX(-50%) rotate(30deg);
  top: 35px;
}

.js-gnav.is-open .js-gnav__btn span:nth-child(2) {
  opacity: 0;
}

.js-gnav.is-open .js-gnav__btn span:nth-child(3) {
  width: 36px;
  transform: translateX(-50%) rotate(-30deg);
  top: 35px;
}

@media screen and (min-width: 768px) {
  .h_entry_area .h_entry_btn:hover {
    background-color: #FFCECE;
    color: var(--red);
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .h_area {
    flex-direction: column;
    align-items: flex-start;
  }

  .h_logo {
    max-width: 140px;
    min-height: 74px;
    display: flex;
    align-items: center;
  }

  .gnav_area {
    max-width: 100%;
    min-height: 55px;
  }

  .h_entry_area {
    max-width: 100%;
  }

  .h_entry_wrap {
    max-width: 100%;
  }

  .h_entry_btn {
    font-size: 16px;
    min-height: 55px;
  }

  .js-gnav__btn {
    width: 74px;
    height: 74px;
  }

  .js-gnav__panel {
    padding: 100px 15px 30px;
  }

  .gnav__list {
    border: none;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .gnav__list::before,
  .gnav__list::after {
    display: none;
  }

  .btn_text {
    margin-left: -20px;
  }

}

/* ハンバーガーメニュー展開時、背景固定用CSS */
html.is-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
}

/* ---- END header ---- */

/* kv  */
.kv_slider_inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  position: relative;
}

.kv_slider_inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 30.600292825768665vw;
  background-color: var(--pink);
  z-index: -1;
}

.slick_slider {
  width: 100%;
}

.kv_slider_catch {
  position: absolute;
  bottom: 150px;
  left: 0;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.kv_catch {
  background-color: #fff;
  box-shadow: 0px 4px 0px 0px rgba(255, 206, 206, 1);
  padding: 20px 30px;
}

.slide_item img {
  border-radius: 0 0 20px 0;
}

/* --- slickBtnカスタム --- */
.kv_slider_controls {
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
}

.kv-items {
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.slider-dots ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slider-dots li {
  width: 12px;
  height: 12px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 1px 1px 0px 0px rgba(221, 221, 221, 1);
  position: relative;
  align-items: center;
  cursor: pointer;
}

.slider-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.slider-dots li.slick-active {
  background-color: var(--red);
  border: 1px solid var(--red);
}

.p-rowBtn button {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 1px 1px 0px 0px rgba(221, 221, 221, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.c-slick_pause .pause-text {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.c-slick_pause .pause-text::before,
.c-slick_pause .pause-text::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 8px;
  background-color: var(--red);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-slick_pause .pause-text::before {
  margin-left: -2px;
}

.c-slick_pause .pause-text::after {
  margin-left: 2px;
}

.c-slick_pause.noplay .pause-text::before {
  display: none;
}

.c-slick_pause.noplay .pause-text::after {
  content: "";
  color: var(--red);
  background-color: transparent;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--red);
}

@media screen and (max-width: 1420px) {
  .kv_slider_catch {
    font-size: 24px;
    bottom: 100px;
  }
}

@media screen and (max-width: 1120px) {
  .kv_slider_catch {
    font-size: 22px;
    bottom: 78px;
  }

  .kv_catch {
    padding: 10px 12px;
  }
}

@media screen and (max-width: 767px) {
  .kv-items {
    margin: 0 2px;
  }

  .kv_slider_catch {
    font-size: 22px;
    bottom: 78px;
  }

  .kv_catch {
    padding: 10px 12px;
  }

}

/* --- philosophy --- */
.philosophyInner {
  background-color: #fff;
  position: relative;
}

.philosophyInner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 61.127379209370424vw;
  max-width: 835px;
  height: 40.995607613469986vw;
  max-height: 560px;
  border-radius: 100%;
  z-index: 1;
}

.philosophyInner>* {
  position: relative;
  z-index: 2;
}

.sectionHeadInner {
  position: relative;
}

.sectionHeadInner::before,
.sectionHeadInner::after {
  content: "";
  position: absolute;
  width: 154px;
  height: 154px;
  top: -65px;
  background-size: contain;
  z-index: 2;
}

.sectionHeadInner::before {
  left: 28.645833333333332vw;
  background-image: url(/lp_common/common_img/char_01.png);
}

.sectionHeadInner::after {
  right: 28.645833333333332vw;
  background-image: url(/lp_common/common_img/char_02.png);
}

.philosophyHead {
  padding: 0 20px;
}

.head_title {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.philosophy_description {
  text-align: center;
  margin: 50px auto 80px;
}

.philosophy_catch {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.5;
}

.philosophy_text {
  line-height: 1.8;
  margin-top: 50px;
}

.store_list {
  padding: 0 20px;
}

.store_box {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 50px;
  background-color: #FAF6E5;
  border: 1px solid var(--red);
  border-radius: 20px;
  position: relative;
}

.store_title {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: bold;
  color: var(--red);
  background-color: #FFF2F0;
  border: 1px solid var(--red);
  border-radius: 32px;
  padding: 20px 35px;
}

.store_list_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
  grid-gap: 10px;
  justify-content: space-between;
}

.store_item {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.store_logo {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.store_item:first-child .store_logo img {
  max-width: 210px;
}

.store_item:last-child .store_logo img {
  max-width: 92px;
}

.store_text {
  text-align: center;
  font-weight: bold;
}

.store_description {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.store_name {
  font-size: 28px;
}

.store_name span {
  display: inline-block;
}

.company_voice {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  background-color: var(--pink);
  padding: 50px 20px;
  margin: 100px auto 0;
}

.company_voice_img {
  flex-shrink: 0;
}

.company_voice_img img {
  max-width: 476px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.company_voice_text {
  width: 100%;
  max-width: 620px;
  padding: 0 35px;
}

.company_voice_catch {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--red);
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.company_voice_catch::before,
.company_voice_catch::after {
  content: "";
  position: absolute;
  color: var(--red);
  font-size: 35px;
  font-weight: bold;
}

.company_voice_catch::before {
  content: "「";
  top: -25px;
  left: -35px;
}

.company_voice_catch::after {
  content: "」";
  bottom: -25px;
  right: -35px;
}

.company_voice_description {
  line-height: 1.8;
}

@media screen and (max-width: 1080px) {

  .sectionHeadInner::before,
  .sectionHeadInner::after {
    width: 90px;
    height: 90px;
  }

  .sectionHeadInner::before {
    left: 150px;
  }

  .sectionHeadInner::after {
    right: 150px;
  }
}

@media screen and (max-width: 767px) {

  .sectionHeadInner::before,
  .sectionHeadInner::after {
    top: 0;
  }

  .sectionHeadInner::before {
    left: 150px;
  }

  .sectionHeadInner::after {
    right: 150px;
  }

  .head_title {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 20px;
  }

  .philosophyInner::before {
    width: calc(100% - 30px);
    height: 375px;
    border-radius: 50%;
    top: -55px;
  }

  .philosophy_description {
    margin: 30px auto 20px;
  }

  .philosophy_catch {
    font-size: 24px;
  }

  .philosophy_text {
    margin-top: 30px;
    text-align: left;
  }

  .store_title {
    width: 100%;
    max-width: 252px;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    top: -26px;
  }

  .store_box {
    padding: 50px 20px 20px;
  }

  .store_list_items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }

  .store_item {
    padding: 30px 20px;
  }

  .store_description {
    font-size: 16px;
  }

  .company_voice {
    flex-direction: column;
    margin: 50px auto 0;
    gap: 30px;
  }

  .company_voice_img img {
    max-width: 100%;
  }

  .company_voice_text {
    padding: 0 15px;
  }

  .company_voice_catch {
    font-size: 16px;
    padding: 20px 8px;
  }

  .company_voice_catch::before,
  .company_voice_catch::after {
    font-size: 16px;
  }

  .company_voice_catch::before {
    top: -15px;
    left: -20px;
  }

  .company_voice_catch::after {
    bottom: -15px;
    right: -20px;
  }
}

@media screen and (max-width: 630px) {
  .sectionHeadInner::before {
    left: 0;
  }

  .sectionHeadInner::after {
    right: 0;
  }
}


.cnt {
  width: 100%;
  max-width: 1120px;
  padding: 100px 10px;
  margin: 0 auto;
}

.sectionTitle {
  font-size: 36px;
  font-weight: bold;
  color: var(--red);
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.sectionTitle::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: 0;
  left: 50%;
  background-color: #D80C18;
  transform: translateX(-50%);
}

.sectionBody {
  padding-top: 50px;
}

.recruitmentInner,
.faqInner {
  padding: 0 50px;
}

@media screen and (max-width: 767px) {
  .cnt {
    padding: 50px 20px;
  }

  .sectionTitle {
    font-size: 30px;
    padding-bottom: 20px;
    line-height: 1.36;
  }

  .sectionBody {
    padding-top: 30px;
  }

}

/*  ---- job ---- */
#job,
#charm {
  background: url(/lp_common/common_img/bg_texture.png) repeat;
}

.jobInner,
.charmInner {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 10px #F0EAE9;
}

.jobInner {
  padding: 50px;
}

.charmInner {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {

  .jobInner,
  .charmInner {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }

}

.sectionHead {
  text-align: center;
}

.sectionCatch {
  margin: 50px auto 0;
  line-height: 1.8;
}

.job_list {
  gap: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(410px, 1fr));
}

.job_item {
  width: 100%;
  border: 1px solid var(--red);
  background-color: #fff;
  border-radius: 20px;
}

.job_item_head {
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 20px 20px 0 0;
  padding: 40px 0;
}

.job_item:first-child .job_item_head {
  background-color: #d90000;
}

.job_item:last-child .job_item_head {
  background-color: #fff3b0;
  color: #d90000;
}

.job_item_head .job_type {
  font-size: 24px;
  margin-bottom: 10px;
}

.job_requirements {
  font-size: 18px;
}

.job_item_body {
  text-align: center;
  padding: 30px;
  font-size: 20px;
}

.job_catch {
  font-weight: bold;
  margin-bottom: 25px;
}

.job_item_body ul {
  padding-left: 20px;
  margin: 0;
}

.job_item_body ul li {
  text-align: left;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 15px;
  position: relative;
}

.job_item_body ul li:not(:last-child) {
  margin-bottom: 20px;
}

.job_item_body ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .job_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .job_item {
    max-width: 100%;
  }

  .sectionCatch {
    margin: 30px auto 0;
    text-align: left;
  }

  .job_item_head {
    padding: 28px 0;
  }

  .job_item_body {
    padding: 20px 15px;
  }

  .job_catch {
    text-align: left;
    line-height: 1.5;
  }

  .job_item_body ul {
    padding-left: 0;
  }
}

/*  ---- career ---- */
#career {
  background-color: var(--pink);
}

.careerInner {
  padding: 100px 0;
}

.careerHead {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
}

.careerBody {
  padding: 50px 10px 0;
}

.career_flow_wrap {
  position: relative;
}

.careerCatch {
  margin: 50px auto;
}

.bubble {
  width: 100%;
  background-color: var(--red);
  color: #FFF;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
  padding: 14px 10px;
  border-radius: 40px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.career_flow_bubble {
  max-width: 492px;
}

.bubble::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 15px solid var(--red);
  border-bottom: 0;
}

.career_flow_title {
  font-size: 28px;
  color: #111;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.career_flow_wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
}

.career_flow_list {
  background-color: #fff;
  border-radius: 20px;
  padding: 70px 100px;
  position: relative;
}

.career_flow_list::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-right: 130px solid transparent;
  border-left: 130px solid transparent;
  border-top: 66px solid #fff;
  border-bottom: 0;
}

.career_flow_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.career_flow_item:not(:last-child) {
  margin-bottom: 50px;
}

.career_flow_item>* {
  position: relative;
  z-index: 2;
}

.career_flow_item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 77px;
  left: 50px;
  width: 5px;
  height: 100%;
  background-color: #FDE5DD;
  z-index: 1;
}

.career_flow_time {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #fff;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background-color: var(--light-yellow);
  box-shadow: 3px 3px 0 0 rgba(253, 229, 221, 1);
  font-weight: bold;
  font-size: 36px;
  text-align: center;
}

.career_flow_time span {
  font-size: 20px;
  padding-top: 12px;
}

.career_flow_item:nth-of-type(2) .career_flow_time {
  font-size: 25px;
}

.career_flow_item:nth-of-type(2) .career_flow_time span {
  font-size: 16px;
  padding-top: 5px;
}

.career_flow_box {
  background-color: var(--light-yellow);
  border-radius: 12px;
  padding: 30px;
}

.career_flow_box.has-two {
  margin-top: 50px;
}

.career_flow_subtitle {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: var(--red);
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 3px dotted var(--red);
}

.career_flow_subtitle span {
  font-size: 18px;
  line-height: 1.8;
}

.career_flow_text {
  line-height: 1.8;
}

.career_flow_image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.career_flow_image figure img {
  max-width: 246px;
}

.career_flow_image_caption {
  width: 100%;
  max-width: 375px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--red);
  padding: 30px 0 20px;
  margin: 40px auto 0;
  position: relative;
}

.career_flow_image_caption p {
  color: var(--red);
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--light-yellow);
  padding: 10px;
  border-radius: 19px;
  border: 1px solid var(--red);
}

.career_flow_image_caption ul {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}

.career_flow_image_caption ul li {
  line-height: 1.8;
  position: relative;
}

.career_flow_image_caption ul li::before {
  content: "・";
  position: absolute;
  font-size: 16px;
  left: -15px;
  top: 0;
}

.career_flow_image.circle {
  flex-wrap: nowrap;
  gap: 50px;
}

.career_flow_image.circle figure {
  flex-shrink: 0;
}

.career_flow_image.circle img {
  max-width: 122px;
  border-radius: 50%;
}

.career_flow_image.circle p {
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--red);
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  line-height: 1.8;
  position: relative;
}

.career_flow_image.circle p::before,
.career_flow_image.circle p::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 65px;
  left: 0;
  border-style: solid;
}

.career_flow_image.circle p::before {
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent var(--red) transparent transparent;
  translate: -100% -50%;
}

.career_flow_image.circle p::after {
  border-width: 0 17.6px 17.6px 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% calc(-50% - 0.4px);
}

.career_flow_image.gallery {
  flex-wrap: nowrap;
}

.point_banner {
  width: 100%;
  max-width: 730px;
  display: flex;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 20px;
  background: #fff;
  margin-top: 20px;
}

.point_label {
  display: flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  padding: 15px 20px;
  margin-right: 15px;
  font-size: 20px;
  position: relative;
}

.point_label::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 13px;
  height: 20px;
  background-image: url(/recruit/img/point_deco.png);
}

.point_text {
  color: var(--red);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0 !important;
}

.career_type_wrap {
  width: 100%;
  max-width: 1100px;
  background-color: #FFF0B2;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin: 100px auto 0;
}

.career_type_title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.career_type_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 10px;
}

.career_type_list li {
  font-size: 18px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  padding: 10px 10px;
}

.career_step_wrap {
  width: 100%;
  max-width: 1120px;
  margin: 100px auto 0;
  padding: 50px 10px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}

.career_step_box {
  padding: 0 20px 0 50px;
}

.career_step_title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 50px;
}

.career_step_description {
  line-height: 1.8;
}

.career_step_body {
  margin-top: 50px;
}

.career_step_flow {
  width: 100%;
  min-width: 1030px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 20px;
}

.career_step_text p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.67;
}

.career_step_text span.yellow_line {
  display: inline;
  color: var(--red);
  background: linear-gradient(transparent 70%, #FFEB98 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.67;
}

.career_step_image {
  flex-shrink: 0;
  position: relative;
}

.career_step_image img {
  max-width: 800px;
}

.career_step_image::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -37px;
  border-style: solid;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 25px solid var(--red);
  border-right: 0;
}


.sp_accordion {
  position: relative;
}

.accBtn {
  width: 100%;
  max-width: 280px;
  font-family: noto-sans-jp, sans-serif;
  background-color: #fff;
  border: 1px solid #666;
  font-size: 18px;
  border-radius: 4px;
  font-weight: bold;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 5;
}

.accBtn::before {
  content: "\E842";
  font-family: recop-iconfonts;
  color: #666;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .accBtn {
    display: none;
  }

  .accDetail {
    height: auto;
  }
}

@media screen and (max-width: 1140px) {
  .point_banner {
    flex-direction: column;
    position: relative;
    padding: 30px 15px 15px;
    margin-top: 30px;
  }

  .point_label {
    font-size: 16px;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
  }

  .point_text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .careerInner {
    padding: 50px 0;
  }

  .careerCatch {
    margin: 30px auto 70px;
  }

  .careerHead {
    padding: 0 20px;
  }

  .careerBody {
    padding: 0;
  }

  .career_flow_wrapper {
    padding: 0 20px;
  }

  .career_flow_list {
    padding: 70px 18px;
  }

  .career_flow_item {
    gap: 10px;
  }

  .career_flow_item:not(:last-child) {
    margin-bottom: 20px;
  }

  .career_flow_item:not(:last-child)::before {
    top: 63px;
    left: 37px;
  }

  .career_flow_box {
    padding: 25px 15px;
  }

  .bubble {
    font-size: 20px;
    top: -40px;
  }

  .career_flow_bubble {
    max-width: 280px;
  }

  .career_flow_title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .career_flow_subtitle {
    font-size: 20px;
  }

  .career_flow_subtitle span {
    font-size: 16px;
  }

  .career_flow_time {
    width: 80px;
    height: 80px;
    font-size: 30px;
    border: 2px solid var(--red);
    box-shadow: 2px 2px 0 0 rgba(253, 229, 221, 1);
  }

  .career_flow_item:nth-of-type(2) .career_flow_time {
    font-size: 20px;
  }

  .career_flow_time span {
    font-size: 16px;
  }

  .career_flow_item:nth-of-type(2) .career_flow_time span {
    font-size: 13px;
  }

  .career_flow_image {
    flex-direction: column;
    align-items: center;
  }

  .career_flow_image figure img {
    max-width: 100%;
  }

  .career_flow_image.circle {
    gap: 35px;
  }

  .career_flow_image_caption {
    padding: 25px 20px 10px;
  }

  .career_flow_image_caption p {
    width: 100%;
    max-width: 131px;
    text-align: center;
    padding: 10px 0;
    top: -19px;
  }

  .career_flow_image.circle img {
    max-width: 113px;
  }

  .career_flow_image.circle p {
    padding: 15px 10px;
  }

  .career_flow_image.circle p::before {
    border-color: transparent transparent var(--red);
    translate: -50% -100%;
    transform: skew(-25deg);
    transform-origin: bottom;
    top: 0;
    left: 50%;
  }

  .career_flow_image.circle p::after {
    top: 0;
    left: 50%;
    border-color: transparent transparent #fff;
    translate: calc(-50% - 0.2px) -100%;
    transform: skew(-25deg);
    transform-origin: bottom;
  }

  .career_flow_box.has-two {
    margin-top: 20px;
  }



  .accBtn {
    display: block;
  }

  .career_type_wrap {
    padding: 30px 20px;
    border-radius: 0;
  }

  .career_type_list {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .career_type_list li {
    font-size: 15px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .career_step_wrap {
    margin: 40px auto 0;
    padding: 50px 0 30px;
  }

  .career_step {
    padding: 0 20px;
  }

  .career_step_title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .career_step_box {
    padding: 0 18px;
  }

  .career_step_body {
    margin-top: 20px;
  }

  .sp_accDetail {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    transition: height .3s;
  }

  .sp_accDetail::before {
    background: linear-gradient(180deg, rgba(255, 243, 239, 0) 0%, rgba(255, 243, 239, 0.9) 30%, rgba(255, 243, 239, 0.9) 50%, rgb(255, 243, 239) 100%);
    content: "";
    width: 100%;
    height: 170px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  /* OPEN */
  .is-open .accDetail::before {
    content: none;
  }

  .is-open .accBtn.btn_open {
    display: none;
    /* 開くボタン非表示 */
  }

  .accBtn.btn_close {
    display: none;
  }

  .is-open .accBtn.btn_close {
    display: block;
    /* 閉じるボタン表示 */
  }

  .sp_accordion.is-open {
    position: relative;
    padding-bottom: 100px;
  }

  .accBtn.btn_close::before {
    content: "\E840";
  }

  .accDetail.animating {
    transition: height 0.6s ease;
  }

  /* c-sr_only：スクリーンリーダーには届くが画面上には非表示 */
  .c-sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}

/* ---- charm ---- */
.charm_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
  justify-content: center;
  grid-gap: 30px;
  padding: 0 50px;
}

.charm_item {
  background-color: var(--light-yellow);
  border-radius: 12px;
  border: 1px solid var(--red);
}

.charm_item:first-child,
.charm_item:last-child {
  position: relative;
}

.charm_item:first-child::before,
.charm_item:last-child::before {
  content: "";
  position: absolute;
  background-size: contain;
}

.charm_item:first-child::before {
  width: 133px;
  height: 115px;
  background-image: url(/recruit/img/nav_deco_01.png);
  top: -90px;
  left: -50px;
}

.charm_item:last-child::before {
  width: 107px;
  height: 96px;
  background-image: url(/recruit/img/charm_deco.png);
  bottom: -92px;
  right: -50px;
}

.charm_label {
  min-height: 80px;
  text-align: center;
  background-color: var(--red);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.charm_text {
  padding: 30px 20px;
  line-height: 1.5;
}

@media screen and (max-width: 1135px) {
  .gnav__list::before {
    left: 0;
  }

  .gnav__list::after {
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .charm_list {
    grid-template-columns: 1fr;
    padding: 0;
    grid-gap: 20px;
  }

  .charm_label {
    min-height: 58px;
    padding: 0;
  }

  .charm_item:first-child::before {
    width: 93px;
    height: 80px;
    top: -70px;
    left: -20px;
  }

  .charm_item:last-child::before {
    width: 70px;
    height: 63px;
    bottom: -30px;
    right: -20px;
  }

  .charm_text {
    padding: 20px;
  }
}

/* ---- data ---- */
#data {
  background-color: var(--light-yellow);
}

.data_year {
  display: block;
  font-size: 20px;
  color: #707070;
  font-weight: normal;
  margin-top: 20px;
}

.dataBody {
  padding-top: 50px;
}

.data_inner {
  position: relative;
  border: 1px solid var(--red);
  padding: 70px 50px;
  border-radius: 20px;
}

.data_inner:first-child {
  margin-bottom: 100px;
}

.data_bubble {
  max-width: 252px;
}

.company_data_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(417px, 1fr));
  gap: 30px;
}

.data_item {
  height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 10px 15px;
}

.data_description {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin: auto 0;
}

.company_data_description.column {
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.data_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.data_title span {
  display: inline-block;
  font-size: 16px;
  margin-left: 5px;
}

.data_value {
  font-size: 80px;
  font-weight: bold;
  color: var(--red);
  letter-spacing: -0.1rem;
}

.data_value span {
  font-size: 40px;
}

.company_data_item:first-of-type figure img {
  width: 55px;
}

.company_data_item:nth-of-type(2) figure img {
  width: 72px;
}

.company_data_item:nth-of-type(3) figure img {
  width: 86px;
}

.company_data_item:nth-of-type(4) figure img {
  width: 49px;
}

.company_data_item:last-of-type figure img {
  width: 45px;
}

.company_data_column {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background-color: var(--pink);
  border-radius: 14px;
  padding: 15px 10px;
}

.company_data_sub {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company_data_subtitle {
  font-size: 24px;
  font-weight: bold;
  color: var(--red);
  line-height: 1.25;
}

.company_data_value_sub {
  font-size: 48px;
  font-weight: bold;
  color: var(--red);
  letter-spacing: -0.1rem;
}

.company_data_value_sub span {
  font-size: 24px;
}

.environment_data_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.environment_data_item {
  width: 100%;
  max-width: 317px;
}

.environment_data_item:first-child figure img {
  width: 50px;
}

.environment_data_item:nth-child(3) figure img {
  width: 277px;
}

.environment_data_item:last-child .environment_data_description figure img {
  width: 57px;
}

.data_description--img {
  position: relative;
}

.data_description--img::after {
  content: "";
  position: absolute;
  background-image: url(/recruit/img/data_07.png);
  width: 285px;
  height: 85px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.data_value--flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.data_rank {
  width: 100%;
  font-size: 22px;
  font-weight: bold;
}

.data_rank li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 5px;
  position: relative;
}

.data_rank li figure img {
  max-width: 56px;
}

.data_rank li:first-child {
  color: var(--red);
  font-size: 32px;
}

.data_rank li:last-child {
  margin-bottom: 0;
}

.data_rank p {
  width: 50%;
}

.data_rank li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e3e3e3 0 2px, transparent 2px 6px);
  background-repeat: repeat-x;
  background-position: center;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .data_inner {
    padding: 35px 0;
    border: none;
  }

  .company_data_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .environment_data_list {
    flex-direction: column;
    gap: 20px;
  }

  .environment_data_item {
    max-width: 100%;

  }

  .data_value {
    font-size: 70px;
  }

  .data_value span {
    font-size: 30px;
  }

  .data_item {
    gap: 20px;
    padding: 30px 10px;
    justify-content: center;
    height: auto;
  }

  .data_inner:first-child {
    margin-bottom: 50px;
  }

  .data_description {
    gap: 15px;
    margin: 0;
  }

  .company_data_subtitle {
    font-size: 18px;
  }

  .company_data_sub {
    gap: 3px;
  }

  .company_data_value_sub {
    font-size: 36px;
  }

  .company_data_value_sub span {
    font-size: 18px;
  }

  .company_data_column {
    gap: 9px;
    padding: 15px 5px;
  }
}

/* ---- intv ---- */
.intv_voice {
  background-color: var(--light-yellow);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
}

.intv_voice_catch {
  display: inline-block;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.intv_voice_catch::before,
.intv_voice_catch::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/recruit/img/intv_deco.png);
  width: 35px;
  height: 51px;
  background-size: contain;
  background-repeat: no-repeat;
}

.intv_voice_catch::before {
  left: -50px;
}

.intv_voice_catch::after {
  right: -50px;
  transform: scaleX(-1) translateY(-50%);
}

.intv_voice_wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.intv_voice_img {
  max-width: 150px;
  flex-shrink: 0;
}

.intv_voice_text {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  text-align: left;
  box-shadow: 3px 3px 0 0 rgba(224, 210, 156, 1);
  position: relative;
}

.intv_voice_text::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border-style: solid;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 18px solid #fff;
  border-left: 0;
}

.intv_voice_title {
  font-size: 20px;
  font-weight: bold;
  color: var(--red);
  margin-bottom: 20px;
}

.intv_voice_description {
  line-height: 1.5;
}

.sectionTitle .voice_mark {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .intv_voice {
    padding: 20px 15px;
  }

  .intv_voice_wrap {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .intv_voice_catch {
    font-size: 20px;
  }

  .intv_voice_text::before {
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-bottom: 18px solid #fff;
    border-top: 0;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sectionTitle .voice_mark {
    font-size: 20px;
  }

  .intv_voice_title {
    text-align: center;
    line-height: 1.5;
  }

  .intv_voice_catch::before,
  .intv_voice_catch::after {
    width: 32px;
    height: 49px;
  }

  .intv_voice_catch::before {
    left: -40px;
  }

  .intv_voice_catch::after {
    right: -40px;
  }
}

/* ---- flow ---- */
.flowInner {
  background-color: var(--light-yellow);
  padding: 90px 20px;
  border-radius: 20px;
}

.flow_entry_btn {
  display: block;
  width: calc(100% - 20px);
  padding: 15px 0;
  border-radius: 6px;
  font-size: 20px;
  background-color: var(--red);
  color: #fff !important;
  text-align: center;
  font-weight: bold;
}

.flow_steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  border-radius: 10px;
}

.flow_steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid var(--red);
  min-height: 153px;
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  padding: 18px 0 10px 0;
  border-radius: 6px;
  position: relative;
}

.flow_steps li:last-of-type {
  background-color: var(--pink);
}

.flow_steps li span {
  display: block;
  font-size: 16px;
}

.flow_steps li:first-child {
  color: var(--red);
  justify-content: space-between;
}

.flow_steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
  border-style: solid;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 11px solid #FFBCB7;
  border-right: 0;
}

@media screen and (max-width: 767px) {
  .flowInner {
    padding: 50px 20px;
  }

  .flow_steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .flow_steps li {
    min-height: auto;
    padding: 15px 0;
  }

  .flow_steps li:first-child {
    flex-direction: column;
    gap: 20px;
  }

  .flow_steps li:not(:last-child)::after {
    top: auto;
    bottom: -30px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-right: 19px solid transparent;
    border-left: 19px solid transparent;
    border-top: 16px solid #FFBCB7;
    border-bottom: 0;
  }

}

/* ---- recruitment ---- */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

th,
td {
  vertical-align: top;
  font-size: 18px;
  line-height: 1.8;
}

th {
  width: 100px;
  border-bottom: 1px solid var(--red);
  padding: 20px 5px 20px 0;
  font-weight: bold;
  text-align: left;
}

td {
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #ddd;
}

.th_txt {
  margin-left: 40px;
}

.job_description:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {

  th,
  td {
    font-size: 16px;
  }

  th {
    width: 85px;
    padding: 10px 5px 10px 0;
  }

  td {
    padding: 10px;
  }

  .th_txt {
    margin-left: 0;
  }

  .job_description:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* ---- VOICE ---- */
#voice {
  background-color: var(--pink);
  overflow: hidden;
}

.voice_kv {
  position: relative;
}

.voice_kv::before {
  content: "";
  position: absolute;
  width: calc(100vw - 60px);
  height: 400px;
  bottom: -280px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pink);
  border-radius: 50%;
  z-index: 1;
}

.voice_wrap {
  position: relative;
  z-index: 2;
}

.staff_comment_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.staff_comment_box {
  width: 100%;
  max-width: 427px;
  background: #fff;
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 20px 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.staff_comment_box:first-child::after {
  content: "×";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  font-size: 50px;
  color: #FFBCB7;
}

.staff_role {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.staff_name {
  font-size: 24px;
}

.voice_kv img {
  border-radius: 20px;
}

.voice_wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  margin-top: 50px;
}

.voice_content:not(:last-child) {
  margin-bottom: 70px;
}

.voice_question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  gap: 15px;
  border-radius: 37px;
  padding: 6px 15px 6px 6px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  background-color: var(--red);
  margin-bottom: 20px;
}

.voice_question::before {
  content: "";
  width: 48px;
  height: 48px;
  background-image: url(/recruit/img/voice_icon.png);
  background-size: contain;
}

.voice_block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.voice_block:not(:last-child) {
  margin-bottom: 30px;
}

.voice_block figure {
  flex-shrink: 0;
}

figcaption.voice_name {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-top: 5px;
}

.voice_text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.voice_q {
  color: #fff;
  background-color: #C30058;
  border-radius: 999px;
  padding: 4px 10px;
  margin-right: 10px;
}

.voice_pics {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.voice_pics img {
  border-radius: 20px;
}

.c-voice_accordion {
  position: relative;
}

.c-voice_accordion.is-open {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .staff_comment_wrap {
    gap: 40px;
    bottom: 0;
  }

  .staff_comment_box {
    max-width: 148px;
    padding: 10px;
  }

  .staff_comment_box:first-child::after {
    font-size: 40px;
    right: -40px;
  }

  .staff_role {
    font-size: 16px;
  }

  .staff_name {
    font-size: 18px;
  }

  .voice_kv::before {
    width: 100vw;
    height: 100vw;
    bottom: -70.66666666666667vw;
  }

  .voice_wrap {
    padding: 0;
    background-color: transparent;
    margin-top: 30px;
  }

  .voice_content:not(:last-child) {
    margin-bottom: 30px;
  }

  .voice_question {
    width: 100%;
    font-size: 18px;
  }

  .voice_block {
    align-items: flex-start;
  }

  .voice_block:not(:last-child) {
    margin-bottom: 20px;
    gap: 15px;
  }

  .voice_question::before {
    flex-shrink: 0;
  }

  .voice_block figure {
    padding-left: 1px;
  }

  .voice_block figure img {
    max-width: 98px;
  }

  .voice_pics {
    flex-direction: column;
    margin-bottom: 0;
  }

  .c-voice_accDetail {
    height: 750px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    transition: height 3s;
  }

  .c-voice_accDetail::before {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 243, 239, 1) 50%, rgb(255, 243, 239) 100%);
    content: "";
    width: 100%;
    height: 170px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
}


/* ---- FAQ ---- */

@media screen and (max-width: 767px) {

  .recruitmentInner,
  .faqInner {
    padding: 0;
  }
}

/**************************************************************
  page top
***************************************************************/
.pagetop_box {
  position: relative;
}

.pagetop {
  width: 80px;
  height: 80px;
  display: none;
  position: absolute;
  right: 10px;
  bottom: 170px;
  z-index: 10;
}

.pagetop img {
  width: 100%;
  cursor: pointer;
}

.pagetop.fixed {
  position: fixed;
  bottom: 180px;
}

.pagetop button {
  border: 0;
}

@media (hover: hover) {
  .pagetop button:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 767px) {
  .pagetop.fixed {
    bottom: 140px;
  }

  .pagetop {
    width: 60px;
    height: 60px;
  }
}