@charset "utf-8";
/* headerlogo */
@media only screen and (min-width: 768px) {
  .header_logo img {
    width: 407px;
  }
}
@media only screen and (min-width: 1450px) {
  .header_logo {
    padding: 55px 0 0 81px;
  }
  .header_logo img {
    width: 682px;
  }
}
/* MV */
/* テキストアニメーション */
.top_mv_txt {
  margin: 62px 0 0;
  padding: 0 33px;
}
.svg-container {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.svg-container.loaded {
  opacity: 1;
  transform: translateX(0);
}
.svg-container svg {
  width: 100%;
}
/* 初期は両方非表示にせず、メディアクエリで出し分け */
.svg-pc { display: none; }
.svg-sp { display: block; }

header {
  transform: translateY(-110%);
  transition: all 0.8s ease;
}
header.in {
  transform: translateY(0);
  transition: all 0.8s ease;
}
.hamburger {
  transform: translateY(-150%);
  transition: all 0.8s ease;
}
.hamburger.in {
  transform: translateY(0);
  transition: all 0.8s ease;
}
@media only screen and (min-width: 768px) {
  header {
    transform: translateY(-100%);
  }
  header.in {
    transform: translateY(0);
    transition: all 0.8s ease;
  }
  .top_mv_txt {
    margin: 89px 0 0;
    padding: 0 80px;
  }
  .svg-pc { display: block; }
  .svg-sp { display: none; }
}
/* スライド */
.mv_slide_wrap {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease;
  padding: 40px 0 0;
}
.mv_slide_wrap.in {
  transform: translateY(0);
  opacity: 1;
}
.mv_slide_wrap .mv_slide {
  padding: 0 0 22px;
}
.mv_slide_wrap .swiper-wrapper {
  transition-timing-function: linear;
}
.mv_slide_wrap .swiper-slide:nth-child(2n) {
  position: relative;
  top: 22px;
}
@media only screen and (min-width: 768px) {
  .mv_slide_wrap .mv_slide {
    padding: 0 0 40px;
  }
  .mv_slide_wrap .swiper-slide:nth-child(2n) {
    top: 40px;
  }
}
@media only screen and (min-width: 1280px) {
  .mv_slide_wrap {
    padding: 51px 0 0;
  }
}
/* MV下リード文 */
.top_lead_wrap {
  padding: 53px 0 212px;
}
.top_lead_txt_jp {
  font-size: 22px;
  line-height: 2;
  font-weight: normal;
  margin: 10px 0 0 0;
}
.top_lead_txt_wrap {
  margin: 35px 0 0 0;
  line-height: 2;
}
.top_lead_txt_wrap br {
  display: none;
}
.top_lead_txt + .top_lead_txt {
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .top_lead_ttl {
    width: 35%;
  }
  .top_lead_txt_jp {
    font-size: clamp(22px, 2.6vw, 48px);
    line-height: 2;
  }
  .top_lead_wrap {
    display: flex;
    padding: 53px 0 150px;
  }
  .top_lead_txt_wrap br {
    display: block;
  }
  .top_lead_txt_wrap {
    margin: 87px 0 0 0;
    width: calc(100% - 35%);
  }
}
@media only screen and (min-width: 1280px) {
  .top_lead_wrap {
    display: flex;
    padding: 122px 0 200px;
  }
  .top_lead_ttl {
    width: 44%;
  }
  .top_lead_txt_jp {
    font-size: 48px;
    line-height: 2;
    margin: 34px 0 0 0;
  }
  .top_lead_txt_wrap {
    margin: 173px 0 0 0;
    width: calc(100% - 44%);
  }
  .top_lead_txt_wrap br {
    display: block;
  }
  .top_lead_txt + .top_lead_txt {
    margin: 38px 0 0;
  }
}
/* メニュー */
.top_menu_wrap {
  padding: 212px 0 100px;
}
.top_menu_img_wrap {
  position: relative;
}
.top_menu_img {
  position: absolute;
  top: -370px;
  right: 0;
  width: 347px;
}
.top_menu_item {
  border-top: 1px solid #8d8d89;
}
.top_menu_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
}
.top_menu_ttl_jp {
  font-size: 16px;
}
.top_menu_item:last-child {
  border-bottom: 1px solid #8d8d89;
}
.top_menu_ttl_en {
  font-size: 13px;
  line-height: 1.2;
  color: #f39600;
}
@media only screen and (min-width: 768px) {
  .top_menu_wrap {
    padding: 160px 0 200px;
  }
  .top_menu_img_wrap {
    position: relative;
    width: auto;
  }
  .top_menu_img {
    position: absolute;
    top: -240px;
    right: 0;
    width: 45%;
  }
  .top_menu_list {
    width: 53%;
  }
  .top_menu_link {
    padding: 21px 10px 26px 0;
    cursor: pointer;
  }
  .top_menu_ttl_en {
    font-size: clamp(13px, 1.56vw, 20px);
  }
  .top_menu_ttl_jp {
    font-size: clamp(16px, 1.87vw, 24px);
    transition: all 0.3s ease-out;
  }
  .top_menu_item:hover .top_btn_en::before {
    width: 130px;
  }
  .top_menu_item:hover .top_menu_ttl_jp {
    color: #8d8d89;
  }
}
@media only screen and (min-width: 1280px) {
  .top_menu_list {
    width: 48.64%;
  }
  .top_menu_link {
    padding: 28px 20px 31px 0;
  }
  .top_menu_ttl_en {
    font-size: 20px;
  }
  .top_menu_ttl_jp {
    font-size: 24px;
  }
  .top_menu_item:hover .top_btn_en::before {
    width: 156px;
  }
}
@media only screen and (min-width: 1600px) {
  .top_menu_link {
    padding: 28px 29px 31px 0;
  }
  .top_menu_img {
    width: unset;
  }
}
/* 募集職種 */
.jobList_body {
  padding: 0 33px;
}
.jobList_contents_wrap {
	padding: 60px 0 100px;
}
.jobList_contents_wrap .page_ttl_wrap {
	padding: 0;
}
.jobList__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
	margin: 30px 0 0;
}
.jobList__container{
  display: block;
}
.jobList__container:hover .jobList__img {
  transform: scale(1.1);
  transition:all 0.35s;
}
.jobList__img {
  transition:all 0.35s;
}
.jobList__card {
  position: relative;
}
.jobList__picture {
  border-radius: 7px;
  overflow: hidden;
	object-fit: cover;
	aspect-ratio: 560 / 300;
}
.jobList__img {
  width: 100%;
}
.jobList__topNew {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 17%;
}
.jobList__btnGroup {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-top: 11px;
  border-bottom: 1px solid #bfbfbe;
  padding-bottom: 20px;
}
.jobList__headline {
  display: flex;
  align-items: center;
  gap: 5px;
}
.jobList__urgent {
  font-size: clamp(10px, 1.25vw, 16px);
  font-weight: bold;
  color: #fff;
  background-color: #e91a10;
  border-radius: 4px;
  padding: 0 10px;
}
.jobList__jobName {
  font-size: clamp(16px, 2.3vw, 30px);
}
@media only screen and (min-width: 768px) {
	.jobList_body {
		padding: 0 40px;
	}
	.jobList_contents_wrap {
		padding: 90px 0 200px;
	}
  .jobList__wrap {
    flex-direction: row;
    flex-wrap: wrap;
		margin: 60px 0 0;
  }
  .jobList__container {
    width: calc(50% - 20px / 2);
  }
	.jobList__container:hover .top_btn_jp::before {
		width: 180px;
	}
  .jobList__picture {
    border-radius: 10px;
  }
  .jobList__btnGroup {
    display: block;
    margin-top: 15px;
    position: relative;
    padding-bottom: 131px;
  }
  .jobList__headline {
    gap: 10px;
  }
  .recruit_btn_wrap {
    position: absolute;
    right: 0;
    bottom: 76px;
		margin: 0 20px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .jobList__container {
    width: calc(33.333% - 40px / 3);
  }
}
@media screen and (min-width: 1280px) {
	.jobList_body {
		padding: 0 80px;
	}
	.jobList_contents_wrap {
		padding: 120px 0 200px;
	}
  .jobList__wrap {
    gap: 40px;
		margin: 100px 0 0;
  }
  .jobList__container {
    width: calc(33.333% - 80px / 3);
  }
	.jobList__container:hover .top_btn_jp::before {
		width: 210px;
	}
  .jobList__btnGroup {
    margin-top: 20px;
  }
  .jobList__urgent {
    margin-top: 3px;
  }
  .recruit_btn_wrap {
		margin: 0 30px 0 0;
  }
}
/* News */
.news_inner {
  padding: 60px 0 198px;
}
.news_btn_wrap {
  margin-top: 10px;
}
.page_ttl_wrap--top {
  padding: 0;
}
.contents_wrap--top {
  margin: 30px 0 0;
}
@media only screen and (min-width: 768px) {
  .news__wrap {
    display: flex;
    justify-content: space-between;
    gap: 60px;
  }
  .news_btn_wrap {
    margin-top: 36.3px;
  }
	.news_btn_wrap .top_btn_jp:hover::before {
		width: 215px;
	}
  .contents_wrap--top {
    margin: 0;
    flex: 1;
  }
}
@media only screen and (min-width: 1280px) {
  .news_inner {
    padding: 120px 0 360px;
  }
  .news__wrap {
    gap: 150px;
  }
  .news__ttl--top {
    width: 20%;
  }
  .news_btn_wrap {
    margin-top: 46.3px;
  }
	.news_btn_wrap .top_btn_jp:hover::before {
		width: 250px;
	}
  .contents_wrap--top {
    width: 1010px;
  }
}
@media screen and (min-width: 1520px) {
  .news--top {
    width: 100%;
  }
  .news__wrap {
    display: flex;
    gap: 219.6px;
  }
  .news__ttl--top {
    width: auto;
  }
  .news_btn_wrap {
    margin-top: 56.3px;
  }
  .contents_wrap--top {
    max-width: 1010px;
  }
}
/* ボタン */
.top_btn {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top_btn span {
  display: none;
}
.top_btn img {
  width: 12px;
}
@media only screen and (min-width: 768px) {
  .top_btn {
    position: relative;
    padding: 0 0 0 15px;
    z-index: 0;
    width: auto;
    height: auto;
    border-radius: unset;
    background: none;
  }
  .top_btn_en {
    gap: 0 10px;
  }
  .top_btn_jp {
    gap: 0 5px;
  }
  .top_btn::before {
    content: "";
    position: absolute;
    left: 0;
    z-index: -1;
    background: #fff;
    border-radius: 30px;
    transition: 0.3s ease-out;
  }
  .top_btn_en::before {
    width: 35px;
    height: 35px;
  }
  .top_btn_jp::before {
    width: 50px;
    height: 50px;
  }
  .top_btn_en:hover::before {
    width: 130px;
  }
  .top_btn_jp:hover::before {
    width: 175px;
  }
  .top_btn span {
    display: block;
  }
  .top_btn_en span {
    font-size: 14px;
  }
  .top_btn_jp span {
    font-size: 18px;
  }
  .top_btn img {
    width: unset;
  }
}
@media only screen and (min-width: 1280px) {
  .top_btn {
    padding: 0 0 0 22px;
  }
  .top_btn_en {
    gap: 0 20px;
  }
  .top_btn_jp {
    gap: 0 7px;
  }
  .top_btn_en::before {
    width: 40px;
    height: 40px;
  }
  .top_btn_jp::before {
    width: 60px;
    height: 60px;
  }
  .top_btn_en:hover::before {
    width: 156px;
  }
  .top_btn_jp:hover::before {
    width: 218px;
  }
  .top_btn_en span {
    font-size: 16px;
  }
  .top_btn_jp span {
    font-size: 20px;
  }
}
