@charset "UTF-8";

body {
  background-color: #fff;
}

.header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 11;
  background-color: #FAFAFA
}

.header_logo {
  max-width: 136px;
  padding-left: 16px;
  opacity: 1;
  transition: all .4s;
  z-index: 10;
}

.header_right {
  display: flex;
  padding-right: 16px;
}

.header_logo.active,
.header_nav_list.active {
  opacity: 0;
}

.header_nav_list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  transition: .2s;
  font-size: 1.4rem;
}

.header_nav_list li {
  padding: 0 12px;
}

.header_nav_list li a {
  color: #202020;
}

.header_nav_list li ._active {
  background-color: #F0EEEA;
  width: 100%;
  border-radius: 100px;
  padding: 0.3em 1em;
  font-weight: bold;
}

.header-left {
  display: flex;
  align-items: center;
  z-index: 10;
}

.header_entry-btn {
  line-height: 2.5;
  text-align: center;
  width: 140px;
  font-size: 1.6rem;
  background-color: #E60012;
  border-radius: 100px;
  margin-right: 10%;
}

.header_entry-btn a {
  color: #fff;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.hamburger span:first-child {
  top: 8px;
  width: 100%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:last-child {
  top: 32px;
}

.hamburger.active span {
  background: #fff;
}

.hamburger.active span:first-child {
  top: 18px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:last-child {
  top: 18px;
  transform: rotate(45deg);
}

.hamburger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #00110E;
  transition: all .4s;
}

.gnav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9;
  background-color: #000;
  text-align: center;
  color: #fff;
}

.gnav_menu {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.gnav_menu li {
  display: block;
  padding: 10px;
}

.gnav_menu a {
  color: #fff;
}

/* mv */
.mv {
  width: 100%;
  height: 630px;
  background-image: url(../img/jobcategory/mv.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.mv p {
  width: 90%;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* パンくず */
.pankuzu {
  display: flex;
  padding: 12px 32px;
  font-size: 14px;
  color: #999;
  background-color: #F0EEEA;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 8;
}

.pankuzu a {
  display: inline;
  color: #999;
}

.pankuzu ._active {
  font-weight: bold;
  color: #00110E;
}


.sec01 {
  padding-top: 64px;
  padding-bottom: 140px;
}

.sec01 p.top_txt {
  width: 68%;
  max-width: 937px;
  margin: 0 auto;
  padding-bottom: 60px;
  line-height: 1.6;
}

/* タブ */
.tab-area {
  width: 68%;
  max-width: 937px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  border-bottom: 4px solid #E60012;
  cursor: pointer;
}

.tab {
  width: calc(100%/2);
  padding: 16px;
  text-align: center;
  background-color: #F0EEEA;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tab.active {
  background-color: #E60012;
  color: #fff;
}

.panel {
  display: none;
  width: 68%;
  max-width: 937px;
  margin: 0 auto;
}

.panel.active {
  display: block;
}

/* 職種一覧 */
.job_list {
  min-height: 520px;
  margin-bottom: 70px;
  background-color: #f0eeea;
  border-radius: 30px;
  background-image: url(../img/jobcategory/job_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
}
.job_list li {
  width: 120px;
  height: 120px;
  border-radius: 200px;
  background-color: #00a0e9;
  position: absolute;
}
.job_list li.red {
  background-color: #e60012;
}
.job_list li._list02 {
  width: 140px;
  height: 140px;
}
.job_list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.job_list li:hover {
  transition: 0.5s;
  transform: scale(1.2);
}

.job_list ._list01._01 {
  top: 26px;
  left: 150px;
}
.job_list ._list01._02 {
  top: 140px;
  left: 70px;
}
.job_list ._list01._03 {
  top: 140px;
  left: 235px;
}
.job_list ._list01._04 {
  top: 254px;
  left: 150px;
}
.job_list ._list01._05 {
  top: 368px;
  left: 70px;
}
.job_list ._list01._06 {
  top: 368px;
  left: 235px;
}
.job_list ._list01._07 {
  top: 26px;
  right: 150px;
}
.job_list ._list01._08 {
  top: 140px;
  right: 235px;
}
.job_list ._list01._09 {
  top: 140px;
  right: 70px;
}
.job_list ._list01._10 {
  top: 254px;
  right: 150px;
}
.job_list ._list01._11 {
  top: 368px;
  right: 235px;
}
.job_list ._list01._12 {
  top: 368px;
  right: 70px;
}

/* モーダル */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}

.modal__bg {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: 40px;
  transform: translate(-50%, -50%);
  /* overflow: scroll; */
}
.scroll {
  max-height: 90vh;
  overflow: scroll;
  border-radius: 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll::-webkit-scrollbar {
  display:none;
}

.modal__content._job .top_img {
  width: 100%;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  position: relative;
}

.modal__content._job .main {
  padding: 30px 40px 40px 40px;
  border-radius: 40px;
  border-top-left-radius: 0;
  position: relative;
  margin-top: -40px;
  background-color: #fff;
  line-height: 1.6;
}

.modal__content._job .main::before {
  content: "";
  width: 54px;
  height: 40px;
  background-image: url(../img/jobcategory/modal_corner.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -39px;
  left: 0;
}

.modal__content._job .main .cate_main {
  padding-bottom: 8px;
  font-size: 24px;
  font-weight: bold;
}

/* 閉じるボタン */
.modal_btn_close {
  display: block;
  width: 46px;
  height: 46px;
  position: absolute;
  top: -42px;
  right: 0;
}

.modal_btn_close::before,
.modal_btn_close::after {
  content: "";
  width: 26px;
  height: 5px;
  background-color: #fff;
  position: absolute;
}

.modal_btn_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.modal_btn_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 1200ms;
  top: 50%;
  left: 50%;
}

/* インタビュー */
.item_ttl {
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: bold;
}

.interview_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3%;
  padding-bottom: 60px;
}

.interview_list li {
  width: 31%;
  position: relative;
}
.interview_list li .label {
  position: absolute;
  padding: 10px 20px;
  color: #fff;
  border-radius: 40px;
  top: 16px;
  left: 16px;
}
.interview_list li .label._01 {
  background-color: #00A0E9;
}
.interview_list li .label._02 {
  background-color: #E60012;
}

.interview_list .profile {
  padding-top: 16px;
  line-height: 1.5;
}

.interview_list .profile span.name {
  padding-right: 12px;
  font-size: 20px;
  font-weight: bold;
}

.interview_list .profile span.year {
  font-size: 12px;
  color: #999;
}


/* キャリアマップ */
.career_map {
  margin-bottom: 140px;
  padding: 60px 40px;
  background-color: #F0EEEA;
  border-radius: 30px;
}

/* 募集要項 */
.acc_btn {
  position: relative;
}

.acc_btn.item_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acc_btn.item_ttl span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #999;
  border-radius: 50px;
  position: relative;
}

.acc_btn.item_ttl span::before,
.acc_btn.item_ttl span::after {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #999;
  position: absolute;
}

.acc_btn.item_ttl span::before {
  top: 47%;
  left: 21%;
}

.acc_btn.item_ttl span::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 1200ms;
}

.acc_btn:hover {
  cursor: pointer;
}

.acc_box._unactive {
  display: none;
}
.requirements_list {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  line-height: 1.5;
}
.requirements_list li {
  padding: 16px 24px;
}
.requirements_list li a {
  display: inline-block;
  color: #00A0E9;
  text-decoration: underline;
}
.requirements_list li:nth-child(odd) {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccc;
  border-top: 1px solid #fff;
  text-align: center;
}
.requirements_list li:nth-child(even) {
  width: 70%;
  border-bottom: 1px solid #ccc;
}
.requirements_list li:first-child {
  border-top: none;
}
.requirements_list li:last-child {
  border-bottom: none;
}

.point_link {
  margin-top: 80px;
}
.point_link a {
  padding-right: 20px;
  font-weight: bold;
  color: #E60012;
  text-align: right;
}
.point_link span {
  width: 8px;
  height: 8px;
  border-right: 3px solid #E60012;
  border-top: 3px solid #E60012;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: 30%;
  right: 0;
}



@media screen and (max-width: 960px) {
  .header_nav_list {
    display: none;
  }

  /* mv */
  .mv {
    height: 82.6vw;
    background-image: url(../img/jobcategory/s_mv.png);
  }

  .mv p {
    font-size: 10vw;
    top: 60%;
  }

  .pankuzu {
    padding: 1.6vw 4vw;
    font-size: 2.93vw;
  }

  .sec01 {
    padding-top: 9.6vw;
    padding-bottom: 21.33vw;
  }

  .sec01 p.top_txt {
    width: 90%;
    padding-bottom: 6.4vw;
  }

  /* タブ */
  .tab-area {
    width: 100%;
    gap: 0.8vw;
  }

  .tab {
    width: calc(100%/2);
    padding: 4.26vw;
    border-top-left-radius: 5.33vw;
    border-top-right-radius: 5.33vw;
  }

  .panel {
    width: 90%;
  }


  /* 職種一覧 */
  .job_list {
    min-height: 316vw;
    margin-bottom: 16vw;
    background-image: url(../img/jobcategory/s_job_bg.png);
  }
  .job_list._02 {
    min-height: 155vw;
  }
  .job_list li {
    width: 32vw;
    height: 32vw;
  }
  .job_list li._list02 {
    width: 32vw;
    height: 32vw;
  }


  .job_list ._list01._01 {
    top: 8vw;
    left: 33%;
  }
  .job_list ._list01._02 {
    top: 40vw;
    left: 8vw;
  }
  .job_list ._list01._03 {
    top: 40vw;
    left: auto;
    right: 8vw;
  }
  .job_list ._list01._04 {
    top: 72vw;
    left: 33%;
  }
  .job_list ._list01._05 {
    top: 104vw;
    left: 8vw;
  }
  .job_list ._list01._06 {
    top: 104vw;
    left: auto;
    right: 8vw;
  }
  .job_list ._list01._07 {
    top: 136vw;
    left: 33%;
    right: auto;
  }
  .job_list ._list01._08 {
    top: 168vw;
    left: 8vw;
    right: auto;
  }
  .job_list ._list01._09 {
    top: 168vw;
    right: 8vw;
  }
  .job_list ._list01._10 {
    top: 200vw;
    left: 33%;
    right: auto;
  }
  .job_list ._list01._11 {
    top: 232vw;
    left: 8vw;
    right: auto;
  }
  .job_list ._list01._12 {
    top: 232vw;
    right: 8vw;
  }

  /* モーダル */
  .modal__content {
    border-radius: 5.33vw;
  }
  .scroll {
    max-height: 85vh;
  }

  .modal__content._job .top_img {
    border-top-left-radius: 5.33vw;
    border-top-right-radius: 5.33vw;
  }

  .modal__content._job .main {
    padding: 5.33vw 6vw 8vw 6vw;
    border-radius: 5.33vw;
    border-top-left-radius: 0;
    margin-top: -5.33vw;
  }

  .modal__content._job .main::before {
    width: 5.33vw;
    height: 5.33vw;
    top: -3.33vw;
  }

  .modal__content._job .main .cate_main {
    padding-bottom: 2vw;
    font-size: 6.4vw;
  }

  /* 閉じるボタン */
  .modal_btn_close {
    width: 7.46vw;
    height: 7.46vw;
    top: -10%;
    right: 0;
  }

  .modal_btn_close::before,
  .modal_btn_close::after {
    width: 9.6vw;
    height: 1vw;
  }

  /* インタビュー */
  .item_ttl {
    padding-bottom: 4.26vw;
    font-size: 6.4vw;
  }

  .interview_list {
    gap: 8.533vw;
    padding-bottom: 8vw;
  }

  .interview_list li {
    width: 100%;
  }

  .interview_list li .label {
    padding: 2.66vw 4.26vw;
    top: 2.66vw;
    left: 2.66vw;
  }

  .interview_list .profile {
    padding-top: 4.26vw;
  }

  .interview_list .profile span.name {
    padding-right: 1.33vw;
    font-size: 5.33vw;
  }

  .interview_list .profile span.year {
    font-size: 3.2vw;
  }

  /* キャリアマップ */
  .career_map {
    margin-bottom: 18.66vw;
    padding: 8vw 4vw;
  }

  /* 募集要項 */
  .acc_btn.item_ttl._02 {
    margin-top: 8vw;
  }
  .requirements_list {
    margin-bottom: 5.33vw;
    font-size: 3.2vw;
  }
  .requirements_list li {
    padding: 3.2vw;
  }
  .requirements_list li:nth-child(odd) {
    width: 26%;
  } 
  .requirements_list li:nth-child(even) {
    width: 74%;
  }
  .point_link {
    margin-top: 13.33vw;
  }
}

/* contents */
/* contents共通 */
.link_btn {
  text-align: center;
}

.link_btn a {
  position: relative;
  display: block;
  width: 257px;
  padding: 15px 0;
  border-radius: 8px;
  color: #E60012;
  text-decoration: none;
  text-align: center;
  margin: auto;
  font-weight: bold;
}

.link_btn a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 100px;
  border: 1px solid #E60012;
}

.link_btn a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 4px solid #E60012;
  border-right: 4px solid #E60012;
  transform: rotate(45deg);
  box-sizing: border-box;
}

section {
  position: relative;
}

/* sec01 */
.sec01 {
  margin-top: -60px;
  background-color: #fff;
  border-top-right-radius: 72px;
  z-index: 10;
}

.sec01::before {
  content: '';
  position: absolute;
  top: -72px;
  left: 0;
  display: inline-block;
  width: 72px;
  height: 72px;
  background-image: url(../img/bg_radius.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 72px;
  pointer-events: none;
}

.sec_item01 {
  padding: 72px 20px 172px;
  max-width: 1208px;
  margin: auto;
}

.sec01_ttl {
  display: flex;
  align-items: center;
}

.sec01_ttl h3 {
  max-width: 353px;
  width: 100%;
  height: auto;
}

.sec01_ttl p {
  padding-left: 48px;
}

.sec01_list {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
}

.sec01_list li {
  width: 23%;
}

@media screen and (max-width: 767px) {
  .sec01 {
    margin-top: -30px;
    border-top-right-radius: 9.6vw;
  }
  .sec01::before {
    width: 9.6vw;
    height: 9.6vw;
    top: -9vw;
    background-size: 9.6vw;
  }
}


/*====================================================================
フェードインアニメーション
====================================================================*/
.fadein {
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 1000ms;
}
.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}