@charset "UTF-8";
/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. モジュール

******************************************************************************* */
/* ==

　01. モジュール

=============================================================================== */
/* レイアウト
------------------------------------------------------------------------------- */
#main .iLayout01 {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
}
#main .iLayout01_item {
  width: calc(50% - 20px);
}

/* リンクボタン
------------------------------------------------------------------------------- */
#main .iLink01 {
  display: block;
  position: relative;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
#main .iLink01::before, #main .iLink01::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 48px;
  aspect-ratio: 1/1;
  background: no-repeat center center;
  background-size: 20px;
  border: 2px solid #fff;
  border-radius: 100%;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .iLink01::after {
  border-color: transparent;
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
}
#main .iLink01_tit {
  background: none;
  padding: 0;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 90px 14px 40px;
  font-size: 300%;
  letter-spacing: 0.16em;
  line-height: 1.2;
}
#main .iLink01_txt {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 142.86%;
  line-height: 2;
  letter-spacing: 0.16em;
  padding: 30px 40px 0;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
#main .iLink01_img {
  position: relative;
}
#main .iLink01_img::after {
  content: "";
  width: 100%;
  height: 36%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
#main .iLink01_img img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.d_hover #main .iLink01:hover::before {
  border-color: transparent;
  background-color: #fa0046;
}
.d_hover #main .iLink01:hover img {
  transform: scale(1.04);
}

/* 職種ブロック
------------------------------------------------------------------------------- */
#main .iJob01 {
  margin: 28px 0 0;
}
#main .iJob01_tit {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 166.67%;
  line-height: 1;
  position: relative;
  display: inline-flex;
  padding: 0 30px 0 0;
  margin: 0 0 15px;
}
#main .iJob01_tit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #fa0046;
  margin: auto;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
}
#main .iJob01_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}
#main .iJob01_list > li {
  font-weight: 400;
  font-size: 128.57%;
  letter-spacing: 0.04em;
}
#main .iJob01_list > li a {
  display: inline-flex;
  position: relative;
  text-decoration: none;
  padding: 0.1em 0 0.2em;
  color: #000;
}
#main .iJob01_list > li a::before, #main .iJob01_list > li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}
#main .iJob01_list > li a::before {
  background-color: #bfbfbf;
}
#main .iJob01_list > li a::after {
  background-color: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .iJob01_list > li a > span {
  display: block;
  position: relative;
  padding-right: 26px;
  width: 100%;
}
#main .iJob01_list > li a > span::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.d_hover #main .iJob01_list > li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
