@charset "UTF-8";

/* =====================
  mv
===================== */
.second-mv {
  position: relative;
  min-width: 1300px;
  padding-inline: 30px;
}
.second-mv::after {
  position: absolute;
  content: '';
  background-image: url(../../img/recruit/mv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 125vw;
  bottom: -119.8vw;
  left: 0;
  z-index: 3;
}
.second-mv .flex {
  display: flex;
  justify-content: space-between;
}
.second-mv .title {
  padding-top: 180px;
  padding-left: 60px;
}
.second-mv .title .play {
  font-size: 33px;
  padding-bottom: 20px;
  color: var(--green);
}
.second-mv .title .zenmaru {
  font-size: 26px;
  color: var(--white);
  padding: 6px 20px;
  display: inline-block;
  width: 144px;
  background-color: var(--green);
}
.second-mv .bread {
  position: absolute;
  bottom: -90px;
  right: 90px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 6;
  font-weight: 600;
}
.second-mv .bread a {
  color: var(--white);
  display: flex;
  gap: 8px;
  align-items: center;
}
.second-mv .bread a::after {
  content: 'ー';
  color: var(--white);
  width: 8px;
  font-size: 16px;
  margin-right: 8px;
}
.second-mv .bread p {
  color: var(--white);
}

/* =====================
  message
===================== */
.message {
  position: relative;
  z-index: 3;
  padding: 280px 0 120px;
}
.message::before {
  content: '';
  background-image: url(../../img/recruit/message-deco01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 313px;
  left: 69px;
  width: 152px;
  height: 221px;
  z-index: 3;
}
.message::after {
  content: '';
  background-image: url(../../img/recruit/message-deco02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 160px;
  left: -111px;
  width: 507px;
  height: 507px;
  animation: rotation 10s linear infinite;
}
/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.message .inner {
  width: 1120px;
  margin: 0 auto;
  position: relative;
}
.message .inner::after {
  position: absolute;
  content: '';
  background-image: url(../../img/recruit/message-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 379px;
  height: 233px;
  top: -120px;
  right: 45px;
}
.message .inner .text .catch {
  position: relative;
  color: var(--green);
  font-size: 26px;
  height: 132px;
  margin-bottom: 64px;
  font-weight: 500;
  margin-left: 174px;
}
.message .inner .text .catch01 {
  display: inline;
  padding: 5px 24px;
  background-color: var(--white);
}
.message .inner .text .catch02 {
  position: absolute;
  top: 75px;
  left: 120px;
  display: inline;
  padding: 5px 24px;
  background-color: var(--white);
}
.message .inner .text p {
  line-height: 1.8;
  padding-left: 394px;
  color: var(--white);
  font-weight: 300;
}

/* =====================
  requirement
===================== */
.requirement {
  background: var(--white);
  position: relative;
  z-index: 4;
}
.requirement .inner {
  padding: 80px 0 120px;
  width: 1120px;
  margin: 0 auto;
}
.requirement .inner h2 {
  text-align: center;
  padding-bottom: 64px;
}
/* タブメニュー */
.tab__menu {
  display: flex;
  justify-content: center;
  min-height: 50px; /* メニュー切替時にタブがズレないように */
  padding: 0;
  margin: 0;
  margin-bottom: 80px;
}

.tab__menu-item {
  list-style: none;
  width: 249px;
  padding: 24px 40px; /* メニューに高さを付ける */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s; /* アニメーション */
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  color: var(--green);
}

.tab__menu-item:last-child {
  border-right: 2px solid var(--green);
}

.tab__menu-item::after {
  content: '✓';
  color: var(--green);
  margin-left: 16px;
}
/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
  background-color: var(--green);
  color: var(--white);
}
.tab__menu-item.is-active::after {
  color: var(--white);
}

/* タブパネル */
.tab__panel {
  width: 100%;
}
.tab__panel-box001 {
  display: none;
}
.tab__panel-box002 {
  display: none;
}
/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  display: block;
}

.requirement .inner .box-wrapper {
  margin-bottom: 40px;
}
.requirement .inner .box-wrapper:last-child {
  margin-bottom: 0;
}
.requirement .inner table {
  margin: 0 auto;
}
.requirement .inner table tbody tr {
  border-bottom: 1px solid var(--lightgray);
  margin-bottom: 40px;
}
.requirement .inner table tbody tr th {
  width: 162px;
  font-weight: 600;
  padding-block: 40px;
  vertical-align: top;
}
.requirement .inner table tbody tr td {
  width: 710px;
  padding-block: 40px;
  line-height: 1.8;
}
.box-title {
  position: relative;
  align-items: baseline;
  border: 2px solid var(--yellow);
  padding: 24px 32px;
  box-shadow: 5px 5px var(--yellow);
  font-weight: 600;
  cursor: pointer;
}
.box-title .text {
  display: flex;
  gap: 16px;
  align-items: center;
}
.box-title .text::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--yellow);
}

/*アコーディオンで現れるエリア*/
.requirement .content {
  display: none;
  /*はじめは非表示*/
  padding-top: 24px;
  padding-bottom: 64px;
}
.box-list .item {
  padding-bottom: 48px;
}
.box-list .item .list-title {
  font-size: 18px;
  color: var(--yellow);
  padding-bottom: 16px;
  font-weight: 600;
}
.box-list .item ul {
  display: flex;
  flex-wrap: wrap;
}
.box-list .item ul li {
  width: 373px;
  padding: 16px 22px;
  height: 90px;
  border: 1px solid var(--lightgray);
  margin-bottom: -1px;
  margin-right: -1px;
}
.box-list .item ul > li {
  display: flex;
  align-items: center;
}
/* ==== 右の十字 ==== */
.box-title:before,
.box-title:after {
  content: '';
  position: absolute;
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.box-title:before {
  border-top: 2px solid var(--yellow);
  width: 25px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 40px;
}
.box-title:after {
  border-left: 2px solid var(--yellow);
  border-radius: 50rem;
  width: 0;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 51px;
  transition: 0.3s;
}
/*　closeというクラスがついたら形状変化　*/
.box-title.open:after {
  height: 0;
}

/* =====================
  recruit-btn
===================== */

.recruit-btn {
  background-color: var(--lightyellow);
  position: relative;
  z-index: 5;
}
.recruit-btn::before {
  content: '';
  background-image: url(../../img/recruit/people01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -45px;
  right: 40px;
  width: 190px;
  height: 218px;
  z-index: 5;
}
.recruit-btn::after {
  content: '';
  background-image: url(../../img/recruit/people02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 177px;
  height: 236px;
  z-index: 5;
}
.recruit-btn .inner {
  width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 0 232px;
  position: relative;
}
.recruit-btn .inner::after {
  content: '';
  background-image: url(../../img/recruit/en.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 8px;
  right: -142px;
  width: 926px;
  height: 286px;
}
.recruit-btn .inner .btn-box {
  margin-top: 53px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.recruit-btn .inner .btn-box .btn-g a {
  padding: 48px 120px 48px 100px;
  border: 2px solid var(--green);
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
.recruit-btn .inner .btn-box .btn-g a::after {
  content: '';
  background-image: url(../../img/recruit/btn-deco01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 16px;
  right: -36px;
  width: 124px;
  height: 116px;
}
.recruit-btn .inner .btn-box .btn-y a {
  padding: 48px 110px 48px 90px;
  border: 2px solid var(--yellow);
  font-size: 20px;
  font-weight: 500;
  margin-top: 48px;
  position: relative;
}
.recruit-btn .inner .btn-box .btn-y a::after {
  content: '';
  background-image: url(../../img/recruit/btn-deco02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 16px;
  right: -36px;
  width: 124px;
  height: 116px;
}
