@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}
@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}
@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}
@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}
.oneTxt.is-ready {
  visibility: visible;
}
.oneTxt span {
  opacity: 0;
  transition: 0.6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  font-family: "line-bd";
  overflow-x: hidden;
  color: #333;
  background: url(../images/common/background_image.png) no-repeat center/cover;
}

.inner {
  max-width: 1100px;
  padding: 0 15px;
  margin: auto;
}

img {
  width: 100%;
  vertical-align: top;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: calc(100% - 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}
.header .logo {
  width: 200px;
}
.header .logo .link {
  position: absolute;
  inset: 0;
}
.header .hamburger_menu.active .menu_button .bar:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 35px;
}
.header .hamburger_menu.active .menu_button .bar:nth-child(2) {
  transform: translateX(-50%) rotate(-45deg);
  top: 35px;
}
.header .hamburger_menu .menu_button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 75px;
  height: 75px;
  padding: 0;
  border: 1.3px solid #fff;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
  background: transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.header .hamburger_menu .menu_button .bar {
  position: absolute;
  left: 50%;
  width: 46px;
  height: 1.3px;
  transform: translateX(-50%);
  background: #fff;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3)) !important;
  transition: all 0.3s;
}
.header .hamburger_menu .menu_button .bar:nth-child(1) {
  top: 30px;
}
.header .hamburger_menu .menu_button .bar:nth-child(2) {
  top: 40px;
}

.navigation {
  position: fixed;
  top: 0;
  right: -180%;
  z-index: 20;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navigation.panelactive {
  right: 0;
}
.navigation .logo {
  width: 200px;
}
.navigation .logo .link {
  position: absolute;
  inset: 0;
}
.navigation .navi {
  margin-top: 60px;
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  padding: 0;
  list-style: none;
  position: relative;
}
.navigation .navi::before {
  content: "";
  width: calc(100% + 40px);
  height: 1px;
  background: #fff;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.navigation .navi .navi_item .link {
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 24px;
}

@media (max-width: 767px) {
  .header {
    width: calc(100% - 30px);
    top: 25px;
  }
  .header .logo {
    width: 180px;
  }
  .header .hamburger_menu.active .menu_button .bar:nth-child(1) {
    top: 30px;
  }
  .header .hamburger_menu.active .menu_button .bar:nth-child(2) {
    top: 30px;
  }
  .header .hamburger_menu .menu_button {
    width: 60px;
    height: 60px;
  }
  .header .hamburger_menu .menu_button .bar {
    width: 36px;
  }
  .header .hamburger_menu .menu_button .bar:nth-child(1) {
    top: 25px;
  }
  .header .hamburger_menu .menu_button .bar:nth-child(2) {
    top: 35px;
  }
  .navigation.panelactive {
    right: 0;
  }
  .navigation .logo {
    width: 180px;
  }
  .navigation .navi {
    margin-top: 50px;
    gap: 20px;
  }
  .navigation .navi::before {
    width: calc(100% + 30px);
    top: -35px;
  }
  .navigation .navi .navi_item .link {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: rgba(0, 0, 0, 0.75);
  padding: 120px 0 40px;
  font-family: "line-rg";
}
.footer .f_content {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
.footer .f_content .left .btns {
  display: grid;
  gap: 35px;
}
.footer .f_content .left .btns .btn {
  max-width: 390px;
  width: 100%;
  margin: 0 0 0 auto;
  position: relative;
}
.footer .f_content .left .btns .btn .link {
  position: absolute;
  inset: 0;
}
.footer .f_content .right .nav {
  margin-left: 90px;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.footer .f_content .right .nav .nav_item {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer .f_content .right .nav .nav_item .link {
  position: absolute;
  inset: 0;
}
.footer .f_content .right .nav .nav_item .en {
  font-size: 20px;
}
.footer .f_content .right .nav .nav_item .ja {
  font-size: 14px;
  font-family: "line-bd";
}
.footer .privacy {
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 10px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  margin: 75px auto 15px;
}
.footer .privacy .link {
  display: block;
  font-size: 10px;
  text-decoration: none;
  color: #fff;
}
.footer .copyright {
  font-size: 10px;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .footer {
    padding: 80px 0 25px;
  }
  .footer .f_content {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .footer .f_content .left .btns {
    gap: 25px;
  }
  .footer .f_content .left .btns .btn {
    margin: auto;
  }
  .footer .f_content .right .nav {
    margin-left: 0;
  }
  .footer .f_content .right .nav .nav_item {
    text-align: center;
    margin: auto;
  }
}
/* ---------------------------------------------------------
    side
--------------------------------------------------------- */
.sideBar_wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.sideBar_wrap .snsbtns {
  width: 50px;
  position: relative;
}
.sideBar_wrap .snsbtns .facebook_link {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.sideBar_wrap .snsbtns .insta_link {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sideBar_wrap .btn_47 {
  width: 50px;
  position: relative;
}
.sideBar_wrap .btn_47 .link {
  position: absolute;
  inset: 0;
}

.sideBar_wrap_sp {
  display: none;
}

@media (max-width: 767px) {
  .sideBar_wrap {
    display: none;
  }
  .sideBar_wrap_sp {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  .sideBar_wrap_sp .link {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .sideBar_wrap_sp .insta_link {
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 24%;
  }
  .sideBar_wrap_sp .facebook_link {
    width: 24%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* ---------------------------------------------------------
    ページビジュアル
--------------------------------------------------------- */
.page_visual {
  width: 100%;
  height: 340px;
  background: url(../images/recruit/page_visual.jpg) no-repeat center/cover;
  position: relative;
}
.page_visual::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.page_visual .inner {
  height: 100%;
  position: relative;
}
.page_visual .inner .page_title {
  font-family: "line-eb";
  font-size: 42px;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}
.page_visual .inner .page_title .ja {
  font-family: "line-bd";
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 767px) {
  .page_visual .inner .page_title {
    font-size: 32px;
    line-height: 1.1;
    left: 15px;
  }
  .page_visual .inner .page_title .ja {
    font-size: 18px;
    padding-top: 5px;
  }
}
/* ---------------------------------------------------------
    パンくずリスト
--------------------------------------------------------- */
.breadcrumbs {
  margin-top: 20px;
}
.breadcrumbs #breadcrumbs span {
  font-size: 14px;
  color: #333;
}
.breadcrumbs #breadcrumbs span a {
  color: #333;
}

@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: 10px;
  }
  .breadcrumbs #breadcrumbs span {
    font-size: 12px;
  }
}
/* ---------------------------------------------------------
    セクション 先輩社員インタビュー
--------------------------------------------------------- */
.sect_interview {
  margin: 80px 0 150px;
}
.sect_interview .inner .interview .sect_title {
  font-family: "line-eb";
  font-size: 42px;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
.sect_interview .inner .interview .sect_title .ja {
  font-family: "line-bd";
  font-size: 24px;
  line-height: 1;
}
.sect_interview .inner .interview .container {
  margin-top: 120px;
}
.sect_interview .inner .interview .container .list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 150px 60px;
}
.sect_interview .inner .interview .container .list .list_item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.sect_interview .inner .interview .container .list .list_item .link {
  position: absolute;
  inset: 0;
}
.sect_interview .inner .interview .container .list .list_item .item_image .image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.sect_interview .inner .interview .container .list .list_item .item_ttl {
  margin-top: 25px;
  font-size: 22px;
}
.sect_interview .inner .interview .container .list .list_item .sentence {
  font-family: "line-rg";
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
}
.sect_interview .inner .interview .more_btn {
  max-width: 470px;
  width: 100%;
  height: 55px;
  margin: 60px auto 0;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
}
.sect_interview .inner .interview .more_btn::before, .sect_interview .inner .interview .more_btn::after {
  content: "";
  height: 1px;
  background: #333;
  position: absolute;
  transition: all 0.4s;
}
.sect_interview .inner .interview .more_btn::before {
  width: 15px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.sect_interview .inner .interview .more_btn::after {
  width: 5px;
  right: 12px;
  top: 45%;
  transform: translate(-50%) rotate(35deg);
}
.sect_interview .inner .interview .more_btn:hover {
  background: #333;
}
.sect_interview .inner .interview .more_btn:hover::before, .sect_interview .inner .interview .more_btn:hover::after {
  background: #fff;
}
.sect_interview .inner .interview .more_btn:hover .text {
  color: #fff;
}
.sect_interview .inner .interview .more_btn .link {
  position: absolute;
  inset: 0;
}
.sect_interview .inner .interview .more_btn .text {
  font-size: 16px;
  transition: all 0.4s;
}

@media (max-width: 767px) {
  .sect_interview {
    margin-top: 50px;
  }
  .sect_interview .inner .interview .sect_title {
    font-size: 32px;
    line-height: 1.1;
  }
  .sect_interview .inner .interview .sect_title .ja {
    font-size: 12px;
    padding-top: 5px;
  }
  .sect_interview .inner .interview .container {
    margin-top: 120px;
  }
  .sect_interview .inner .interview .container .list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 100px 60px;
  }
}/*# sourceMappingURL=interview-list.css.map */