@charset "utf-8";

/* --------------------------------------- */
/* 採用情報ページ共通
/* --------------------------------------- */

/* fonts
---------------------------------------------------*/
.ff-poppins {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  font-size: min(calc((50 / 1600)* 100vw), 50px);
  letter-spacing: 0;
}

.ff-ryumin {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: bold;
  font-style: normal;
}


/* Header
------------------------------------------------*/
header {
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

header.sDesign {
  height: 70px;
}

header .logo-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

header .logo {
  display: flex;
  transition: none;
}

header .logo img {
  display: block;
  max-width: 190px;
  max-height: 65px;
  padding: 0 0 0 30px;
  transition: none;
}

header.sDesign .logo img {
  max-width: 150px;
  height: 52px;
}

header .logo_desc {
  font-family: "Roboto Condensed";
  font-weight: 300;
  font-size: 38px;
  letter-spacing: 0;
  position: relative;
  top: 5px;
  padding-left: 30px;
}

header.sDesign .logo_desc {
  font-size: 30px;
}

header .logo_desc::before {
  content: '';
  display: block;
  width: 2px;
  height: 45px;
  background-color: #e6e6e6;
  position: absolute;
  left: 15px;
  top: 6px;
}

header.sDesign .logo_desc::before {
  top: 2px;
  height: 40px;
}

header .menu-btn-entry {
  width: 200px;
  min-width: 200px;
  height: 100px;
  box-sizing: border-box;
  background-color: rgba(36, 183, 211);
  border: 1px solid rgba(36, 183, 211);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 100px;
  position: relative;
  z-index: 1001;
}

header.sDesign .menu-btn-entry {
  height: 70px;
  margin-right: 70px;
}

header .menu-btn-entry:hover {
  background-color: #fff;
  opacity: 1;
}

header.sDesign .menu-btn-entry::before {
  width: 20px;
  height: 20px;
}

.menu-btn-entry_txt {
  color: #fff;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  padding-left: 50px;
}

header .menu-btn-entry:hover .menu-btn-entry_txt {
  color: rgba(36, 183, 211);
}

.menu-btn-entry_txt::before {
  content: '';
  display: block;
  width: 40px;
  height: 36px;
  background: url(../img/icn_entry_white.webp) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: -1px;
}

.menu-btn-entry:hover .menu-btn-entry_txt::before {
  background: url(../img/icn_entry_lightblue.webp) no-repeat center/contain;
}

header .menu-trigger {
  display: inline-block;
  width: 100px;
  height: 100px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  transition: all ease-in-out .3s;
  background: #3c86c7;
}

header.sDesign .menu-trigger {
  width: 70px;
  height: 70px;
}

header .menu-trigger:hover {
  opacity: .7;
}

header .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: all .3s;
  width: 46px;
}

header.sDesign .menu-trigger span {
  width: 40px;
}

header .menu-trigger span:nth-of-type(1) {
  top: 32px;
}

header.sDesign .menu-trigger span:nth-of-type(1) {
  top: 20px;
}

header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}

header.sDesign .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(-45deg);
}

header .menu-trigger span:nth-of-type(2) {
  width: 30px;
  top: 48px;
  right: 16px;
}

header.sDesign .menu-trigger span:nth-of-type(2) {
  top: 33px;
  right: 11px;
}

header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

header .menu-trigger span:nth-of-type(3) {
  top: 64px;
}

header.sDesign .menu-trigger span:nth-of-type(3) {
  top: 46px;
}

header .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-18px) rotate(45deg);
}

header.sDesign .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}


header .menu-trigger .menu {
  color: #fff;
  top: 55px;
  position: absolute;
  width: 100%;
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.ham-content {
  display: none;
  /* display: block !important; */
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  padding: 142px 0 200px;
  background: #fff;
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 1001;
  overflow-y: scroll;
  border-top: 1px solid #eee;
}

header.sDesign .ham-content {
  top: 70px;
}

.ham-content_navi {
  background-color: #fff;
  max-width: 800px;
  box-sizing: border-box;
  padding: 0 40px;
  margin: 0 auto;
}

.ham-content_navi_cate-ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  right: -12px;
}

.ham-content_navi_cate-ul>li {
  width: 55%;
  margin-right: 10%;
  box-sizing: border-box;
}

.ham-content_navi_cate-ul>li:nth-child(even) {
  width: 35%;
  margin-right: 0;
}

.ham-content_navi_cate-ul>li:nth-child(n+3) {
  margin-top: 59px;
}

.ham-content_navi_cate-ul>li>a {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 1.4;
  display: table;
  position: relative;
  padding-left: 18px;
}

.ham-content_navi_cate-ul>li>a:hover {
  text-decoration: underline;
  opacity: 1;
  color: #32add6;
}

.ham-content_navi_cate-ul>li>a::before {
  content: '';
  display: block;
  width: 9px;
  height: 16px;
  background: url(../img/arrow_top_lightblue.webp) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 10px;
}

.ham-content_navi_cate-ul>li>a.window {
  padding-right: 25px;
}

.ham-content_navi_cate-ul>li>a.window::after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/icn_window_lightblue.webp) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 10px;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}


@media screen and (max-width: 1000px) {

  header,
  header.sDesign {
    height: 70px;
  }

  header .logo img,
  header.sDesign .logo img {
    max-width: 150px;
    height: 52px;
  }

  header .logo_desc,
  header.sDesign .logo_desc {
    font-size: 30px;
  }

  header .logo_desc::before,
  header.sDesign .logo_desc::before {
    top: 2px;
    height: 40px;
  }

  header .menu-btn-entry,
  header.sDesign .menu-btn-entry {
    height: 70px;
    margin-right: 70px;
  }

  header .menu-trigger,
  header.sDesign .menu-trigger {
    width: 70px;
    height: 70px;
  }

  header .menu-trigger span,
  header.sDesign .menu-trigger span {
    width: 40px;
  }

  header .menu-trigger span:nth-of-type(1),
  header.sDesign .menu-trigger span:nth-of-type(1) {
    top: 20px;
  }

  header .menu-trigger.active span:nth-of-type(1),
  header.sDesign .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }

  header .menu-trigger span:nth-of-type(2),
  header.sDesign .menu-trigger span:nth-of-type(2) {
    width: 30px;
    top: 33px;
    right: 11px;
  }

  header .menu-trigger span:nth-of-type(3),
  header.sDesign .menu-trigger span:nth-of-type(3) {
    top: 46px;
  }

  header .menu-trigger.active span:nth-of-type(3),
  header.sDesign .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }

  .ham-content,
  header.sDesign .ham-content {
    top: 70px;
  }

}


@media screen and (max-width: 767px) {

  header,
  header.sDesign {
    height: 50px;
  }

  header .logo img,
  header.sDesign .logo img {
    max-width: 95px;
    max-height: 33px;
    padding: 0 0 0 10px;
  }

  header .logo_desc::before {
    width: 1px;
    height: 29px;
    left: 7px;
    top: -1px;
  }

  header .menu-btn-wrap,
  header.sDesign .menu-btn-wrap {
    margin-right: 40px;
  }

  header .menu-btn-entry:hover {
    transform: scale(1);
  }

  header .menu-btn-entry,
  header.sDesign .menu-btn-entry {
    width: 90px;
    min-width: 90px;
    height: 50px;
    margin-right: 50px;
  }

  header .menu-btn-entry:hover {
    background-color: rgba(36, 183, 211);
  }

  .menu-btn-entry_txt {
    font-size: 18px;
    padding-left: 27px;
  }

  header .menu-btn-entry:hover .menu-btn-entry_txt {
    color: #fff;
  }

  .menu-btn-entry_txt::before {
    width: 23px;
    height: 21px;
    top: -2px;
  }

  .menu-btn-entry:hover .menu-btn-entry_txt::before {
    background: url(../img/icn_entry_white.webp) no-repeat center / contain;
  }

  header .logo_desc,
  header.sDesign .logo_desc {
    font-size: 1.9rem;
    top: 4px;
    padding-left: 15px;
  }

  header .menu-trigger,
  header.sDesign .menu-trigger {
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
  }

  header .menu-trigger:hover {
    opacity: 1;
  }

  header .menu-trigger span,
  header.sDesign .menu-trigger span {
    width: 26px;
    height: 2px;
    right: 0;
  }

  header .menu-trigger span:nth-of-type(1),
  header.sDesign .menu-trigger span:nth-of-type(1) {
    top: 16px;
  }

  header .menu-trigger span:nth-of-type(2),
  header.sDesign .menu-trigger span:nth-of-type(2) {
    width: 16px;
    top: 24.5px;
    right: 10px;
  }

  header .menu-trigger span:nth-of-type(3),
  header.sDesign .menu-trigger span:nth-of-type(3) {
    top: 33px;
  }

  header .menu-trigger.active span:nth-of-type(1),
  header.sDesign .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }

  header .menu-trigger.active span:nth-of-type(3),
  header.sDesign .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  header .menu-trigger .menu {
    top: 33px;
    left: -3px;
    font-size: 8px;
  }

  .ham-content,
  header.sDesign .ham-content {
    /* display: block !important; */
    width: 100%;
    top: 50px;
    padding: 54px 0 40px;
    height: calc(100% - 50px);
  }

  .ham-content_navi {
    padding: 0 43px;
  }

  .ham-content_navi_cate-ul {
    padding: 0;
    display: block;
    position: static;
  }

  .ham-content_navi_cate-ul>li {
    width: auto;
    margin-right: 0;
  }

  .ham-content_navi_cate-ul>li:nth-child(even) {
    width: auto;
  }

  .ham-content_navi_cate-ul>li:nth-child(n+2) {
    margin-top: 21px;
  }

  .ham-content_navi_cate-ul>li>a {
    font-size: 1.8rem;
    padding-left: 11px;
  }

  .ham-content_navi_cate-ul>li>a::before {
    width: 7px;
    height: 14px;
    top: 6px;
  }

  .ham-content_navi_cate-ul>li>a:hover {
    text-decoration: none;
  }

  .ham-content_navi_cate-ul>li>a .icn_fuerukun {
    width: 88.5px;
    margin-right: 5px;
    top: -2px;
  }

  .ham-content_navi_cate-ul>li.about-more-person>a::before {
    width: 43px;
    height: 49px;
    top: 3px
  }

  header .ham-content .menu-btn-entry {
    margin-top: 20px;
    margin-right: 10px;
  }

  header .ham-content.menu-btn-entry:hover {
    transform: scale(1);
  }

  header .ham-content .menu-btn-wrap,
  header.sDesign .ham-content .menu-btn-wrap {
    margin-right: 0;
    display: flex !important;
    justify-content: center;
    margin-top: 55px;
  }

}


@media screen and (max-width: 350px) {
  header .logo img {
    width: 75px;
    padding: 0 0 0 10px;
  }

  header .logo_desc,
  header.sDesign .logo_desc {
    font-size: 1.8rem;
    top: 1px;
    padding-left: 10px;
  }

  header .logo_desc::before {
    height: 24px;
    left: 5px;
    top: 1px;
  }

}


/* Footer
------------------------------------------------*/
.footer {
  background-color: #4357AD;
  padding: 126px 0 50px;
  position: relative;
}

.footer_whitebox {
  background-color: #fff;
  border-radius: 10px;
  width: 94.8%;
  box-sizing: border-box;
  padding: 45px 60px;
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .05);
}

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

.footer_whitebox_ul>li {
  position: relative;
}

.footer_whitebox_ul>li.line {
  width: 1px;
  height: 50px;
  background-color: #ccc;
}

.footer_whitebox_ul>li>a {
  display: flex;
  align-items: center;
}

.footer_whitebox_ul>li>a:hover {
  transform: scale(1.1);
}

.footer_whitebox_ul_imgwrap {
  margin-right: 10px;
}

.footer_whitebox_ul>li._1 .footer_whitebox_ul_imgwrap img {
  width: 50px;
}

.footer_whitebox_ul>li._2 .footer_whitebox_ul_imgwrap img {
  width: 23px;
}

.footer_whitebox_ul>li._3 .footer_whitebox_ul_imgwrap img {
  width: 50px;
}

.footer_whitebox_ul>li._4 .footer_whitebox_ul_imgwrap img {
  width: 40px;
}

.footer_whitebox_ul_tit {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .05em;
}

.footer_whitebox_ul_tel-desc {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .05em;
  display: block;
}

.footer_whitebox_ul_tel-num {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .05em;
  display: block;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.footer_logo-wrap {
  display: flex;
  align-items: center;
}

.footer_logo_link {
  display: block;
  width: 180px;
  min-width: 180px;
}

.footer_logo_txt {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .05em;
  margin-left: 30px;
}

.footer_address,
.footer_tel-fax {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .05em;
}

.footer_tel-fax_tel .tel-link a,
.footer_tel-fax_tel .tel-link a:link,
.footer_tel-fax_tel .tel-link a:visited {
  color: #fff;
}

.footer_address {
  margin-top: 21px;
}

.footer_tel-fax {
  margin-top: 11px;
  display: flex;
}

.footer_tel-fax_fax {
  margin-left: .5em;
}

.foote_sns-ul {
  display: flex;
  margin-top: 28px;
}

.foote_sns-ul>li+li {
  margin-left: 20px;
}

.foote_sns-ul>li>a {
  color: #fff;
}

.foote_sns-ul>li>a img {
  height: 25px;
  width: auto;
}

.footer_inner_right {
  color: #fff;
}

.footer_nav-ul {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer_nav-ul>li+li {
  margin-left: 3em;
}

.footer_nav-ul>li>a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .1em;
}

.footer_nav-ul>li>a:hover {
  text-decoration: underline;
}

.footer_pickup {
  margin: 20px 0 0 auto;
  width: fit-content;
  box-sizing: border-box;
}

.footer_pickup_tit {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .05em;
  position: relative;
  padding-left: 1.2em;
  padding-bottom: .45em;
  border-bottom: 1px solid #fff;
}

.footer_pickup_tit::before {
  content: '';
  display: inline-block;
  width: .6em;
  height: .6em;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .12em;
}

.footer_pickup_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 6px;
}

.footer_pickup_ul>li+li {
  margin-left: 1.95em;
}

.footer_pickup_ul>li>a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .1em;
  display: block;
}

.footer_nav-s-ul {
  margin: 14px 0 0 auto;
  text-align: right;
}

.footer_nav-s-ul>li>a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.footer_nav-s-ul>li>a:hover {
  text-decoration: underline;
}

.footer_copyright {
  text-align: right;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .05em;
  margin-top: 30px;
}


@media screen and (max-width: 1400px) {
  .footer_inner_right {
    width: 40%;
  }

  .footer_whitebox {
    padding: 45px 30px;
  }

  .footer_whitebox_ul_tit {
    font-size: 1.8rem;
  }
}


@media screen and (max-width: 1300px) {

  .footer_logo_link {
    width: 130px;
    min-width: 130px;
  }

  .footer_logo_txt {
    font-size: 1.2rem;
    margin-left: 20px;
  }

  .footer_nav-ul>li+li {
    margin-left: 1em;
  }

  .footer_nav-ul>li>a {
    font-size: 1.4rem;
  }

  .footer_nav-s-ul>li>a {
    font-size: 1.2rem;
  }

}


@media screen and (max-width: 1200px) {
  .footer {
    padding: 196px 0 50px;
  }

  .footer_whitebox_ul {
    flex-wrap: wrap;
  }

  .footer_whitebox_ul>li {
    width: 50%;
    box-sizing: border-box;
  }

  .footer_whitebox_ul>li.item._3,
  .footer_whitebox_ul>li.item._4 {
    margin-top: 30px;
  }

  .footer_whitebox_ul>li.line {
    display: none;
  }

  .footer_whitebox_ul>li>a {
    justify-content: center;
  }

  .footer_whitebox_ul>li>a:hover {
    transform: scale(1);
  }

}


@media screen and (max-width: 767px) {
  .footer {
    padding: 275px 0 35px;
  }

  .footer_inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .footer_logo_link {
    width: 120px;
    min-width: 120px;
  }

  .footer_logo_txt {
    margin-left: 15px;
  }

  .footer_inner_right {
    width: auto;
  }

  .footer_nav-ul.sp {
    display: flex !important;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .footer_nav-ul.sp>li {
    width: 48%;
    box-sizing: border-box;
    margin-right: 4%;
  }

  .footer_nav-ul>li+li {
    margin-left: 0;
  }

  .footer_nav-ul>li:nth-child(even) {
    margin-right: 0;
  }

  .footer_nav-ul>li:nth-child(n+3) {
    margin-top: 26px;
  }

  .footer_nav-ul>li>a {
    font-size: 1.6rem;
  }

  .footer_nav-ul>li.policy>a {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .footer_pickup {
    margin: 49px 0 0 auto;
  }

  .footer_pickup_ul {
    justify-content: flex-start;
    margin-top: 17px;
  }

  .footer_pickup_ul>li {
    width: 48%;
    box-sizing: border-box;
    margin-right: 4%;
  }

  .footer_pickup_ul>li+li {
    margin-left: 0;
  }

  .footer_pickup_ul>li:nth-child(even) {
    margin-right: 0;
  }

  .footer_pickup_ul>li:nth-child(n+3) {
    margin-top: 18px;
  }

  .footer_inner_left {
    margin-top: 64px;
  }

  .footer_whitebox {
    padding: 30px 30px;
    width: calc(100% - 60px);
    top: -50px;
  }

  .footer_whitebox_ul {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .footer_whitebox_ul>li {
    width: auto;
  }

  .footer_whitebox_ul>li.item._2 {
    margin-top: 30px;
  }

  .footer_whitebox_ul>li.item._3,
  .footer_whitebox_ul>li.item._4 {
    margin-top: 20px;
  }

  .footer_whitebox_ul>li>a {
    justify-content: flex-start;
  }

  .footer_whitebox_ul_imgwrap {
    margin-right: 15px;
    width: 40px;
  }

  .footer_whitebox_ul_imgwrap img {
    display: block;
    margin: auto;
  }

  .footer_whitebox_ul>li.item._1 .footer_whitebox_ul_imgwrap img {
    width: 40px;
  }

  .footer_whitebox_ul>li.item._2 .footer_whitebox_ul_imgwrap img {
    width: 20px;
  }

  .footer_whitebox_ul>li.item._3 .footer_whitebox_ul_imgwrap img {
    width: 35px;
  }

  .footer_whitebox_ul>li.item._4 .footer_whitebox_ul_imgwrap img {
    width: 35px;
  }

  .footer_whitebox_ul_tit {
    font-size: 1.6rem;
  }

  .footer_whitebox_ul_tel-desc {
    font-size: 1rem;
  }

  .footer_whitebox_ul_tel-num {
    font-size: 2.0rem;
    letter-spacing: 0;
  }

  .footer_address,
  .footer_tel-fax {
    font-size: 1.4rem;
    /* line-height: 1.28; */
    line-height: 1.4;
  }

  .footer_tel-fax {
    margin-top: 12px;
  }

  .foote_sns-ul {
    margin-top: 18px;
  }

  .foote_sns-ul>li+li {
    margin-left: 15px;
  }

  .foote_sns-ul>li>a img {
    height: 20px;
  }

  .footer_copyright {
    text-align: center;
    font-size: 1.0rem;
    margin-top: 50px;
    letter-spacing: .07em;
  }

}


@media screen and (max-width: 350px) {
  .footer_whitebox_ul_tit {
    font-size: 1.4rem;
  }

}


/* common
---------------------------------------------------*/
html.noScroll,
body.noScroll {
  overflow: hidden;
}

html {
  height: 100%;
  width: 100%;
  font-size: 62.5%;

  /* scroll-behavior: auto; */
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-seri,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  position: relative;
  overflow: hidden;
  display: flex
    /*フッターを下部固定*/
  ;
  flex-flow: column
    /*フッターを下部固定*/
  ;
  min-height: 100vh
    /*フッターを下部固定*/
  ;
}

.in-page-anchor {
  display: inline-block;
  margin-top: -50px;
  padding-top: 50px;
}

.main_container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0;
  flex: 1
    /*フッターを下部固定*/
  ;
}

.inner1280 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.inner1460 {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.inner1660 {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.inner1700 {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.sec-inner {
  margin: 0 auto;
  padding: 0 5.2%;
  box-sizing: border-box;
}

img,
svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

.pc {
  display: block;
}

.sp {
  display: none !important;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

strong {
  font-weight: bold;
}

video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  outline: none;
  transition: all .5s;
}

a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: .7;
  color: #4C7EF7;
  text-decoration: none;
}

a:active {
  color: #000;
  text-decoration: none;
}

a.scale-image {
  overflow: hidden;
}

a.scale-image img {
  transition: all .5s;
}

a.scale-image.hover img,
a.scale-image:hover img {
  transform: scale(1.1);
}

section+.in-page-anchor+section {
  margin-top: -15px;
}

section.recUnderPnkzBl+.in-page-anchor+section.recInterviewMainBl {
  margin-top: -25px;
}

.sec-line-tit {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
  text-align: center;
  color: #1f385a;
  position: relative;
  padding-top: 107px;
  margin-bottom: 77px;
}

.sec-line-tit::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 3px;
  height: 100px;
  margin: auto;
  background: #3c86c7;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.sec-tit {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
  text-align: center;
  color: #1f385a;
}

.txt-m {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .1em;
  color: #1f385a;
  text-align: center;
}

.sec-tit+.txt-m {
  margin-top: 9px;
}

.txt-blue {
  color: #4C7EF7;
}

.txt-lightblue {
  color: #66b9d6;
}


@media screen and (max-width: 767px) {

  .sec-inner {
    padding: 0 30px;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  a:hover {
    opacity: 1;
    color: inherit;
  }

  .inner1280,
  .inner1460,
  .inner1660,
  .inner1700 {
    padding: 0 15px;
  }

  a.scale-image.hover img,
  a.scale-image:hover img {
    transform: scale(1);
  }

  .sec-line-tit {
    font-size: 1.5rem;
    padding-top: 53px;
    margin-bottom: 21px;
  }

  .sec-line-tit::after {
    width: 1.5px;
    height: 50px;
  }

  .sec-tit {
    font-size: 1.8rem;
  }

  .txt-m {
    font-size: 1.1rem;
  }

  .sec-tit+.txt-m {
    margin-top: 5px;
  }

}


/* ページ読み込み時フェードイン【MV】
-------------------------------------------*/

.load-fadein {
  opacity: 0;
  animation: load-fadein 1s ease forwards 1s;
}

@keyframes load-fadein {
  100% {
    opacity: 1;
  }
}

/* --- */

.load-fadein-left {
  opacity: 0;
  transform: translateX(-70px);
  filter: blur(20px);
  animation: load-fadein-left .7s ease forwards 1s;
}

@keyframes load-fadein-left {
  100% {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

/* --- */

.load-fadein-right {
  opacity: 0;
  transform: translateX(70px);
  filter: blur(20px);
  animation: load-fadein-right .7s ease forwards 1s;
}

@keyframes load-fadein-right {
  100% {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}



/* 順番にフェードイン
---------------------------------------------------*/
.js-o_effect {
  opacity: 0;
}

.js-o_effect.js-o_effect_1.fadein,
.js-o_effect.js-o_effect_1_pc.fadein {
  opacity: 0;
  animation-name: o_effect_1;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes o_effect_1 {
  0% {
    opacity: 0;
    transform: translate(0, 70px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .js-o_effect.js-o_effect_1_pc.fadein {
    animation: none;
    opacity: 1;
  }
}

.js-o_effect.js-o_effect_2.fadein,
.js-o_effect.js-o_effect_2_pc.fadein {
  opacity: 0;
  animation-name: o_effect_2;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

@keyframes o_effect_2 {
  0% {
    opacity: 0;
    transform: translate(0, 70px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .js-o_effect.js-o_effect_2_pc.fadein {
    animation: none;
    opacity: 1;
  }
}

.js-o_effect.js-o_effect_3.fadein,
.js-o_effect.js-o_effect_3_pc.fadein {
  opacity: 0;
  animation-name: o_effect_3;
  animation-duration: 1s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}

@keyframes o_effect_3 {
  0% {
    opacity: 0;
    transform: translate(0, 70px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .js-o_effect.js-o_effect_3_pc.fadein {
    animation: none;
    opacity: 1;
  }
}


.js-o_effect.js-o_effect_4.fadein,
.js-o_effect.js-o_effect_4_pc.fadein {
  opacity: 0;
  animation-name: o_effect_4;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes o_effect_4 {
  0% {
    opacity: 0;
    transform: translate(0, 70px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .js-o_effect.js-o_effect_4_pc.fadein {
    animation: none;
    opacity: 1;
  }
}



.js-o_effect.js-o_effect_5.fadein,
.js-o_effect.js-o_effect_5_pc.fadein {
  opacity: 0;
  animation-name: o_effect_5;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes o_effect_5 {
  0% {
    opacity: 0;
    transform: translate(0, 70px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .js-o_effect.js-o_effect_5_pc.fadein {
    animation: none;
    opacity: 1;
  }
}



.js-o_effect.js-o_effect_6.fadein,
.js-o_effect.js-o_effect_6_pc.fadein {
  opacity: 0;
  animation-name: o_effect_6;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

@keyframes o_effect_6 {
  0% {
    opacity: 0;
    transform: translate(0, 70px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .js-o_effect.js-o_effect_6_pc.fadein {
    animation: none;
    opacity: 1;
  }
}


/* フェード表示
---------------------------------------------------*/

/* ------- 上からフェード表示 ------- */

.js-effectT {
  opacity: 0;
  transition: all .5s;
  transform: translateY(-70px);
}

.js-effectT.fadein {
  opacity: 1;
  transform: translateY(0px);
}

/* ------- 左からフェード表示 ------- */

.js-effectL {
  opacity: 0;
  transition: all .5s;
  transform: translateX(-70px);
  filter: blur(20px);
}

.js-effectL.fadein {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0);
}

/* ------- 右からフェード表示 ------- */

.js-effectR {
  opacity: 0;
  transition: all .5s;
  transform: translateX(70px);
  filter: blur(20px);
}

.js-effectR.fadein {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0);
}

/* ------- 下からフェード表示 ------- */

.js-effectD {
  opacity: 0;
  transition: all .5s;
  transform: translateY(70px);
}

.js-effectD.fadein {
  opacity: 1;
  transform: translateY(0px);
}


/* slickスライダー
-------------------------------------------*/
.slider {
  line-height: 0
    /* 余白を消す */
  ;
  font-size: 0
    /* 余白を消す */
  ;
  display: none
    /* ページ読み込み時崩れ対策 */
  ;
}

.slider.slick-initialized {
  display: block
    /*slick-initializedが付与されたら表示*/
  ;
  margin-bottom: 80px;
}

.load-scale-txt {
  opacity: 0;
  transform: translateY(0) scale(1, 2);
  transform-origin: left;
  /* 拡大・縮小の起点を左端に設定 */
  filter: blur(20px);
  animation: load-scale-txt 1.0s ease forwards 0.7s;
}

@keyframes load-scale-txt {
  100% {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
  }
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li.slick-active button .slick-dot-icon:before {
  margin-top: 0;
  margin-left: 0;
  font-size: 12px;
}

.slick-dots li button .slick-dot-icon,
.slick-dots li.slick-active button .slick-dot-icon,
.slick-dots li button:focus .slick-dot-icon:before {
  color: #1f385a;
}

.slider .prev,
.slider .next {
  position: absolute;
  top: calc(50% - -2px);
  margin: auto;
  width: 29.5px;
  height: 55.5px;
  background: url(../img/arrow_top_blue.webp) no-repeat center / contain;
  box-sizing: border-box;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 1;
  transition: all .5s;
}

.slider .prev {
  transform: translateY(-50%) rotate(0);
  left: 3.8%;
}

.slider .next {
  transform: translateY(-50%) rotate(-180deg);
  right: 3.8%;
}

.slider .prev:hover,
.slider .next:hover {
  opacity: .5;
  cursor: pointer;
}

.slick-dots {
  bottom: min(calc((55 / 1600)* 100vw), 55px);
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button {
  margin-left: 0;
  width: 20px;
}

.slick-dots li button .slick-dot-icon {
  color: #fff;
  background: #fff;
  opacity: 1;
}

.slick-dots li button .slick-dot-icon:before {
  content: "";
  font-size: 8px;
  border: 1px solid #1f385a;
  border-radius: 50%;
  background: #fff;
  width: 8px;
  height: 8px;
}

.slick-dots li.slick-active button .slick-dot-icon:before {
  background: #1f385a;
}


@media screen and (max-width: 1200px) {

  .slider .prev,
  .slider .next {
    top: 48.8%;
    width: 40px;
    height: 40px;
  }

  .slider .prev {
    left: 20px;
  }

  .slider .next {
    right: 20px;
  }

}


@media screen and (max-width: 767px) {

  .slider .prev,
  .slider .next {
    top: 45.2%;
    width: 30px;
    height: 30px;
  }

  .slider .prev {
    left: 10px;
  }

  .slider .next {
    right: 10px;
  }

  .slider .prev:hover,
  .slider .next:hover {
    opacity: .7;
  }

  .slick-dots {
    bottom: 24px;
  }

  .slick-dots li button {
    margin-left: 0;
    width: 23px;
  }

}


/* モーダル動画
-------------------------------------------*/
#video-container {
  margin-bottom: 30px;
  text-align: center;
}

.modal-video-set {
  display: none;
  position: fixed;
  z-index: 1004;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-video-set video {
  max-height: 600px;
}

.modal-video-set .container {
  max-width: 1140px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-set .container .header {
  position: relative;
}

.modal-video-set .container .header .btn-close {
  position: absolute;
  right: 0;
  top: -50px;
  width: 40px;
  height: 40px;
  min-width: 0;
  height: 60px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-video-set .container .header .btn-close:hover {
  opacity: 0.7;
}

.modal-video-set .container .header .btn-close img {
  width: 40px;
  height: 40px;
}

.modal-video-set .container .youtube_thum {
  position: absolute;
  top: 0;
  left: 0;
}

.modal-video-set .container .youtube_thum img {
  width: 100%;
  height: auto;
}

.modal-video-set .container .modal-video-iframe-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: .3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -ms-transition: -ms-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
}

.modal-video-set .container .modal-video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

@keyframes modal-video {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes modal-video-inner {
  from {
    /* transform: translate(0, 100px); */
    transform: translate(0, 0)
  }

  to {
    transform: translate(0, 0)
  }
}

.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: .3s;
  animation-name: modal-video;
  -webkit-transition: opacity .3s ease-out;
  -moz-transition: opacity .3s ease-out;
  -ms-transition: opacity .3s ease-out;
  -o-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out
}

.modal-video-close {
  opacity: 0
}

.modal-video-body {
  max-width: 1140px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;

  pointer-events: none;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box
  }
}

.modal-video-inner-inner {
  position: relative;
  pointer-events: auto;
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: .3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -ms-transition: -ms-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: -3px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all .5s;
  pointer-events: auto;
}

.modal-video-close-btn:hover {
  opacity: .7;
}


@media (orientation: landscape) {
  .modal-video-close-btn {
    top: -35px;
    right: -4px;
  }
}


.modal-video-close-btn:before {
  transform: rotate(45deg)
}

.modal-video-close-btn:after {
  transform: rotate(-45deg)
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px
}


@media screen and (max-width: 767px) {
  .modal-video-close-btn {
    top: -35px;
  }

  .js-modal-video img,
  .btn-shot-mv img {
    max-width: inherit;
  }

  .js-modal-video.hovered,
  .btn-shot-mv.hovered,
  .youtube_btn a.hovered,
  .pickup_btn a.hovered {
    opacity: 1;
  }

  .modal-video-close-btn:hover {
    opacity: 1;
  }

}

@media screen and (max-width: 420px) {

  .modal-video-set video {
    max-height: 610px;
  }
}

@media screen and (max-width: 375px) {

  .modal-video-set video {
    max-height: 550px;
  }
}


/* テキスト無限ループ
-------------------------------------------*/
.loop-wrapper {
  /* overflow: hidden; */
  position: relative;
}

.loop {
  animation: loop 20s linear infinite;
  width: 100%;
}

.loop2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: loop 20s -10s linear infinite;
}

.loop3 {
  position: absolute;
  top: 0;
  left: 0;
  animation: loop 20s -20s linear infinite
    /* 遅延を20秒に設定 */
  ;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}


/* スクロール２段階アニメーション
-------------------------------------------*/

/*----- 2段階アニメーション -----*/
.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-txt::before {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #1f385a;
  transform: translate3d(-101%, 0, 0);
  z-index: -1;
}

.js-scroll.show .motion-txt:before {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}

.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}


@keyframes text {
  0% {
    width: 0.001%;
  }

  100% {
    width: 100%;
  }
}



/*  「ラクサスへ応募する」
-------------------------------------------*/
.recEntryBtnBl {
  position: relative;
  padding: 0 0 172px;
}

.recEntryBtn {
  padding: 0 0 2px;
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

.recEntryBtn_txtwrap {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  box-sizing: border-box;
}

.recEntryBtn_tit {
  font-size: min(calc((40 / 1600)* 100vw), 30px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
}

.recEntryBtn_link {
  display: table;
  margin: min(calc((85 / 1600)* 100vw), 85px) auto 0;
  border-radius: 999px;
  background-color: rgba(36, 183, 211);
  border: 1px solid rgba(36, 183, 211);
  padding: min(calc((27 / 1600)* 100vw), 27px) min(calc((107 / 1600)* 100vw), 107px);
  position: relative;
  z-index: 3;
  box-shadow: 3px 3px 30px rgba(0, 0, 0, .4);

  animation: squash 1.2s ease-in-out infinite;
}

@keyframes squash {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  /*大きさを変えたいため、scaleを、1→1.1→1と変化*/
  100% {
    transform: scale(1);
  }
}


.recEntryBtn_link:hover {
  background-color: #fff;
  opacity: 1;
}

.recEntryBtn_link_txt-jp {
  font-size: min(calc((18 / 1600)* 100vw), 18px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  transition: all .5s;
}

.recEntryBtn_link_txt-en {
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: min(calc((68 / 1600)* 100vw), 68px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-top: min(calc((10 / 1600)* 100vw), 10px);
  position: relative;
  padding-left: min(calc((100 / 1600)* 100vw), 100px);
  transition: all .5s;
}

.recEntryBtn_link:hover .recEntryBtn_link_txt-jp,
.recEntryBtn_link:hover .recEntryBtn_link_txt-en {
  color: rgba(36, 183, 211);
}

.recEntryBtn_link_txt-en::before {
  content: '';
  display: block;
  width: min(calc((80 / 1600)* 100vw), 80px);
  height: min(calc((72 / 1600)* 100vw), 72px);
  background: url(../img/icn_entry_white.webp) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: min(calc((-2 / 1600)* 100vw), -2px);
  /* transition: background-image .5s; */
}

.recEntryBtn_link:hover .recEntryBtn_link_txt-en::before {
  background: url(../img/icn_entry_lightblue.webp) no-repeat center / contain;
}

.recEntryBtn_arrow {
  position: absolute;
  bottom: 4px;
  left: 0;
  opacity: .5;
  z-index: 2;
  width: 100%;
}

.js-arrow-D {
  opacity: 0;
  transition: all .5s;
  transform: translate(-70px, 70px);
}

.js-arrow-D.fadein {
  opacity: 1;
  transform: translate(0, 0);
}

.recEntryBtn_arrow._1 {
  transition-delay: .5s;
}

.recEntryBtn_arrow._2 {
  transition-delay: .8s;
}

.recEntryBtn_arrow._3 {
  transition-delay: .7s;
}

.recEntryBtn_arrow._4 {
  transition-delay: .5s;
}

.recEntryBtn_arrow._5 {
  transition-delay: .11s;
}

.recEntryBtn_arrow._6 {
  transition-delay: 1.5s;
}

.recEntryBtn_arrow._7 {
  transition-delay: 1.1s;

}


@media screen and (max-width: 767px) {
  .recEntryBtnBl {
    padding: 0 0 110px;
  }

  .recEntryBtn_tit {
    font-size: 1.8rem;
  }

  .recEntryBtn_link {
    margin-top: 50px;
    padding: 13px 53px;
    box-shadow: 3px 3px 150px rgba(0, 0, 0, .4);
  }

  .recEntryBtn_link:hover {
    background-color: rgba(36, 183, 211);
  }

  .recEntryBtn_link_txt-jp {
    font-size: 1.2rem;
  }

  .recEntryBtn_link_txt-en {
    font-size: 3.4rem;
    margin-top: 10px;
    padding-left: 50px;
  }

  .recEntryBtn_link:hover .recEntryBtn_link_txt-jp,
  .recEntryBtn_link:hover .recEntryBtn_link_txt-en {
    color: #fff;
  }

  .recEntryBtn_link_txt-en::before {
    width: 40px;
    height: 36px;
    top: -2px;
  }

  .recEntryBtn_link:hover .recEntryBtn_link_txt-en::before {
    background: url(../img/icn_entry_white.webp) no-repeat center / contain;
  }

  .recEntryBtn_arrow._1 {
    transition-delay: .5s;
    transition: all .4s;
  }

  .recEntryBtn_arrow._2 {
    transition-delay: .8s;
  }

  .recEntryBtn_arrow._3 {
    transition-delay: .7s;
  }

  .recEntryBtn_arrow._4 {
    transition-delay: .5s;
  }

  .recEntryBtn_arrow._5 {
    transition-delay: .4s;
    transition: all .4s;
  }

  .recEntryBtn_arrow._6 {
    transition-delay: .5s;
    transition: all .4s;
  }

}