@charset "utf-8";
/* CSS Document */

/* ===============================
	mv_common
 =============================== */
#mv_common {
  height: 540px;
  background-image: url(../img/recruit/mv_bg.webp);
  margin-top: -138px;
}
#mv_common .mv_img {
  right: -30px;
  top: -36px;  
}
#mv_common .title p,
#mv_common .title p span {
  font-size: 25px;
}
#mv_common .title p span {
  color: var(--C-Dblue);
}
@media screen and (max-width: 1136px) {
  #mv_common {
    margin-top: -192px;
  }
}
@media screen and (max-width: 844px) {
  #mv_common {
    margin-top: -192px;
  }
}
@media screen and (max-width: 750px) {
  #mv_common {
    height: 80vw;
    background-image: url(../img/recruit/mv_bg_sp.webp);
    margin-top: 0;
  }  
  #mv_common .mv_img {
    width: 22.66666666666667vw;
    left: -11.46666666666667vw;
    bottom: 6.53333333333333vw;
  }
  #mv_common .title p,
  #mv_common .title p span {
    font-size: 4.13333333333333vw;
  }
}

/* ===============================
	recruit
 =============================== */
#recruit {
  margin-bottom: 64px;
  padding-top: 150px;
}
#recruit .txt_area {
  margin-left: 8.22222222222222%;
  margin-right: 4.44444444444444%;
}
#recruit h3.title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;    
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.851851851851852;
  text-align: center;  
  margin-bottom: 42px;
}
#recruit p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  max-width: 384px;  
  margin: auto;
}
@media screen and (max-width: 750px) {
  #recruit {
    margin-bottom: 8.53333333333333vw;    
    padding-top: 15.2vw;
  }
  #recruit .wrap {
    padding: 0;
  }
  #recruit .txt_area {
    margin-left: 9vw;
    margin-right: 9vw;
  }
  #recruit h3.title {
    font-size: 5.2vw;
    letter-spacing: 0;
    white-space: nowrap;
    text-align: left;    
    margin-bottom: 5.6vw;
  }
  #recruit p {
    font-size: 3.33333333333333vw;
  }
}

/* ===============================
	recruit_list
  タブ＆アコーディオン
 =============================== */
#recruit_list {
  overflow: hidden;
}
#recruit_list .responsive-tabs {
  position: relative;
}
#recruit_list .responsive-tabs::before {
  content: '';
  background: url(../img/recruit/bg_1.webp) center no-repeat;
  background-size: contain;
  width: 323px;
  height: 282px;
  display: block;
  position: absolute;
  top: 124px;
  left: -114px;  
  z-index: -1;  
}
@media screen and (max-width: 750px) {
  #recruit_list {
    overflow: visible;
    position: relative;
    z-index: +1;
  }
  #recruit_list::before,
  #recruit_list::after {
    content: '';
    background: url(../img/recruit/bg_1.webp) center no-repeat;
    background-size: contain;
    width: 43.06666666666667vw;
    height: 30.93333333333333vw;
    display: block;
    position: absolute;
    z-index: -1;  
  }
  #recruit_list::before {
    top: 22.4vw;
    left: -22.4vw;  
  }
  #recruit_list::after {
    bottom: 112vw;
    right: -11.2vw;
  }
  #recruit_list .responsive-tabs::before {
    content: none;
  }
}

/* 共通 */
.responsive-tabs {
  margin: 0 auto;
}
.tab-buttons {
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}
.tab-buttons button {
  text-align: center;
  border: var(--C-gray) 2px solid;
  border-width: 2px 2px 0 2px;
  border-radius: 8px 8px 0 0;
  background-color: var(--C-white);
  cursor: pointer;
  width: 27.55555555555556%;
  padding: 14px 10px;
  transition: 0.4s;  
}
.tab-buttons button,
.tab-buttons button * {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.tab-buttons button.active,
.tab-buttons button:hover {
  color: var(--C-white);
  background: var(--C-Dblue);
}
.tab-buttons button.active span,
.tab-buttons button:hover span {
  color: var(--C-white);
}
.tab-buttons button span {
  font-size: 13px;
  display: block;
  transition: 0.4s;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* アコーディオン */
.inner-section {
  background: var(--C-white) center top no-repeat;
  background-size: 100% auto;
  background-image: url(../img/recruit/recruit_bg.webp);
  padding: 110px 52px 80px;
}
.accordion-panel {
  display: none;
}
.accordion-panel.open {
  display: block;
}
@media screen and (min-width: 751px) {
  .tab-buttons {
    display: flex;
  }
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
  }
  .accordion-toggle,
  .accordion-panel {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  #recruit_list .responsive-tabs {
    position: relative;
    z-index: +2;
  }  
  .tab-buttons {
    display: none;
  }
  .tab-content {
    display: none;
    padding: 0;
  }
  .tab-content:not(:last-child) {
    margin-bottom: 5.33333333333333vw;
  }
  .tab-content.open {
    display: block;
  }
  .inner-section {
    background-image: url(../img/recruit/recruit_bg_sp.webp);
    padding: 15.2vw 8.26666666666667vw 8vw;
  }  
  button.accordion-toggle {
    font-size: 3.73333333333333vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    background: var(--C-white);
    border: var(--C-gray) 2px solid;
    border-radius: 1.6vw;
    width: 80.53333333333333vw;
    height: 14.66666666666667vw;
    position: relative;
    display: block;
    margin: auto;
    cursor: pointer;    
  }
  button.accordion-toggle:has(+ .tab-content.open)  {
    border-width: 2px 2px 0 2px;
    border-radius: 1.6vw 1.6vw 0 0;
  }
  button.accordion-toggle:not(:has(+ .tab-content.open)) {
    margin-bottom: 2.93333333333333vw;
  }
  button.accordion-toggle::after {
    content: '';
    width: 7.33333333333333vw;
    height: 7.33333333333333vw;
    background: url(../img/recruit/menu_arrow.svg) center no-repeat;
    background-color: var(--C-Dblue);
    background-size: 56.36363636363636% auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4.26666666666667vw;
    transform: scale(-1, -1);
    transition: 0.4s;
    margin: auto;
  }
  button.accordion-toggle:has(+ .tab-content.open)::after {
    transform: scale(-1, 1);
  }
  button.accordion-toggle span {
    font-size: 3.33333333333333vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
  }
}

/* ===============================
	recruit_list
  中身
 =============================== */
.bosyu_title {
  text-align: center;
  margin-bottom: 48px;
}
.bosyu_title dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.bosyu_title dt {
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  color: var(--C-DDblue);
}
.bosyu_title dd {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.bosyu_main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1lh 24px;
}
.bosyu_main,
.bosyu_main * {
  font-size: 16px;
  line-height: 1.75;  
}
.bosyu_main dt {
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  color: var(--C-DDblue);
  text-align: right;
  width: 24.87437185929648%;
  min-width: 8ch;
}
.bosyu_main dd {
  width: calc((100% - 24.87437185929648%) - 30px);
}
@media screen and (max-width: 750px) {
  .bosyu_title {
    margin-bottom: 11.2vw;
  }  
  .bosyu_title dl {
    gap: 2vw;
  }  
  .bosyu_title dt {
    font-size: 3.73333333333333vw;
  }  
  .bosyu_title dd {
    font-size: 4.53333333333333vw;
  }  
  .bosyu_main,
  .bosyu_main * {
    font-size: 16px;
    line-height: 2;
  }  
  .bosyu_main {
    flex-direction: column;
    gap: 2.66666666666667vw;    
  }
  .bosyu_main dd {
    font-size: 3.33333333333333vw;
    width: 100%;
    margin-bottom: 5.33333333333333vw;    
  }    
  .bosyu_main dt {
    font-size: 3.73333333333333vw;
    background: #EDF6FA;
    background: linear-gradient(90deg,rgba(237, 246, 250, 1) 90%, rgba(54, 155, 201, 1) 90%);
    text-align: left;
    width: 100%;
    height: 7.33333333333333vw;
    display: flex;
    align-items: center;    
    position: relative;
    padding-left: 4vw;
  }  
  .bosyu_main dt::before {
    content: '';
    background: url(../img/recruit/menu_arrow.svg) center no-repeat;
    width: 4.13333333333333vw;
    height: 2.4vw;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.6vw;
    margin: auto;
    transform: rotate(180deg);    
  }
  .bosyu_main dt.open::before {
    transform: rotate(0);
  }
}

/* ===============================
	recruit_contact
 =============================== */
.recruit_contact {
  text-align: center;
  background: var(--C-white);
  position: relative;
  margin-bottom: 218px;
  padding-bottom: 88px;
}
.recruit_contact::after {
  content: '';
  background: url(../img/recruit/bg_1.webp) center no-repeat;
  background-size: contain;
  width: 323px;
  height: 282px;
  display: block;
  position: absolute;
  bottom: -112px;
  right: -110px;  
  z-index: -1;  
}
.recruit_contact .recruit_contact_txt {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  margin-bottom: 44px;
}
.recruit_contact .recruit_contact_txt span {
  font-size: 20px;
  font-weight: 700;
  color: var(--C-DDblue);
  display: block;
  margin-bottom: 18px;
}
.recruit_contact .recruit_contact_tel {
  margin-bottom: 38px;
}
.recruit_contact .recruit_contact_tel p,
.recruit_contact .recruit_contact_form p {
  font-size: 16px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  color: var(--C-DDblue);
}
.recruit_contact .recruit_contact_tel p {
  margin-bottom: 4px;
}
.recruit_contact .recruit_contact_tel a span {
  font-size: 30px;
  font-weight: 700;
  position: relative;
}
.recruit_contact .recruit_contact_tel a span::before {
  content: '';
  background: url(../img/recruit/icon_tel.svg) center no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  display: inline-block;
  vertical-align: bottom;  
  margin-right: 10px;
}
.recruit_contact .recruit_contact_form p {
  margin-bottom: 18px;
}
.recruit_contact .recruit_contact_form a {
  color: var(--C-white);
  background-color: var(--C-DDblue);
}
.recruit_contact .recruit_contact_form a:hover {
  color: var(--C-DDblue);
  background-color: var(--C-white);
}
.recruit_contact .recruit_contact_form a::before {
  content: none;
}
@media screen and (max-width: 750px) {
  .recruit_contact {
    background: transparent;
    z-index: +2;    
    margin-top: 9.06666666666667vw;    
    margin-bottom: 0;
    padding-bottom: 16.8vw;
  }
  .recruit_contact::after {
    content: none;
  }
  .recruit_contact .recruit_contact_txt {
    font-size: 4.13333333333333vw;
    line-height: 1.741935483870968;
    margin-bottom: 5.6vw;
  }
  .recruit_contact .recruit_contact_txt span {
    font-size: 3.73333333333333vw;
    margin-bottom: 0;
  }
  .recruit_contact .recruit_contact_tel {
    margin-bottom: 4.53333333333333vw;
  }
  .recruit_contact .recruit_contact_tel p,
  .recruit_contact .recruit_contact_form p {
    font-size: 3.33333333333333vw;
  }
  .recruit_contact .recruit_contact_tel p {
    margin-bottom: 0;
  }
  .recruit_contact .recruit_contact_tel a span {
    font-size: 6.13333333333333vw;
  }
  .recruit_contact .recruit_contact_tel a span::before {
    width: 8.8vw;
    height: 8.8vw; 
    margin-right: 2.13333333333333vw;
  }
  .recruit_contact .recruit_contact_form p {
    margin-bottom: 2.13333333333333vw;
  }
}