@charset "UTF-8";

@font-face {
  font-family: 'notosansjp';
  font-weight: 100;
  src: url("../../fonts/notosans/NotoSansJP-Thin.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 200;
  src: url("../../fonts/notosans/NotoSansJP-ExtraLight.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 300;
  src: url("../../fonts/notosans/NotoSansJP-Light.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 400;
  src: url("../../fonts/notosans/NotoSansJP-Regular.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 500;
  src: url("../../fonts/notosans/NotoSansJP-Medium.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 600;
  src: url("../../fonts/notosans/NotoSansJP-SemiBold.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 700;
  src: url("../../fonts/notosans/NotoSansJP-Bold.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 800;
  src: url("../../fonts/notosans/NotoSansJP-ExtraBold.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 900;
  src: url("../../fonts/notosans/NotoSansJP-Black.ttf") format('truetype');
}
@font-face {
  font-family: 'silkscreen';
  font-weight: 400;
  src: url("../../fonts/silkscreen/Silkscreen-Regular.ttf") format('truetype');
}
@font-face {
  font-family: 'silkscreen';
  font-weight: 700;
  src: url("../../fonts/silkscreen/Silkscreen-Bold.ttf") format('truetype');
}
@font-face {
  font-family: 'yakuhanjp';
  font-weight: 100;
  src: url("../../fonts/yakuhanjp/YakuHanJP-Thin.ttf") format('truetype');
}
@font-face {
  font-family: 'yakuhanjp';
  font-weight: 400;
  src: url("../../fonts/yakuhanjp/YakuHanJP-ExtraLight.ttf") format('truetype');
}
@font-face {
  font-family: 'yakuhanjp';
  font-weight: 400;
  src: url("../../fonts/yakuhanjp/YakuHanJP-Light.ttf") format('truetype');
}
@font-face {
  font-family: 'yakuhanjp';
  font-weight: 400;
  src: url("../../fonts/yakuhanjp/YakuHanJP-Regular.ttf") format('truetype');
}
@font-face {
  font-family: 'yakuhanjp';
  font-weight: 500;
  src: url("../../fonts/yakuhanjp/YakuHanJP-Medium.ttf") format('truetype');
}@font-face {
  font-family: 'yakuhanjp';
  font-weight: 600;
  src: url("../../fonts/yakuhanjp/YakuHanJP-SemiBold.ttf") format('truetype');
}@font-face {
  font-family: 'yakuhanjp';
  font-weight: 700;
  src: url("../../fonts/yakuhanjp/YakuHanJP-Bold.ttf") format('truetype');
}@font-face {
  font-family: 'yakuhanjp';
  font-weight: 800;
  src: url("../../fonts/yakuhanjp/YakuHanJP-ExtraBold.ttf") format('truetype');
}@font-face {
  font-family: 'yakuhanjp';
  font-weight: 900;
  src: url("../../fonts/yakuhanjp/YakuHanJP-Black.ttf") format('truetype');
}
html {
  font-size: 10px;
}
body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: 'notosansjp', sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #eee;
}
.inner {
  width: 100%;
  max-width: 112rem;
  margin: auto;
  padding: 0 2rem;
}
a {
  transition: .3s;
}
.only_sp {
  display: none!important;
}
@media screen and (max-width: 999px) {
  .inner {
    max-width: 100%;
  }
  .only_pc {
    display: none!important;
  }
  .only_sp {
    display: block!important;
  }
}


/* ---------------------------------
  header
--------------------------------- */
header {
  padding: 1.6rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(238, 238, 238, 0);
}
.header_logo {
  width: 14.7rem;
}
.header_logo:hover {
  opacity: .7;
}
.header_button {
  display: flex;
  column-gap: 2rem;
}
.menu_area .menu_btn,
.header_button .entry_btn {
  width: 15rem;
  display: inline-block;
  padding: 1rem;
  text-align: center;
  line-height: 1.2;
  background-color: #fff;
  border-radius: 100rem;
  font-weight: 500;
}
.menu_area .menu_btn {
  cursor: pointer;
}
.menu_area .menu_list {
  display: none;
}
.menu_area .menu_list ul {
  display: flex;
  column-gap: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
  background-color: #fff;
  border-radius: 100rem;
  padding: 1rem 4rem;
}
.menu_area .menu_list li a {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: .8rem;
}
.menu_area .menu_list li a:hover {
  opacity: .7;
}
.menu_area .menu_list li a::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}
.menu_area .menu_list li a[target="_blank"]::after {
  background-image: url("../../images/common/icon_newwindow.svg");
  display: block;
}
.menu_area .menu_list li span {
  display: none;
}
.header_button .entry_btn:hover {
  background-color: #000;
  color: #fff;
}
.menu_bg {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header_button .menu_area:hover .menu_btn {
    display: none;
  }
  .header_button .menu_area:hover .menu_list {
    display: block;
  }
}
@media screen and (max-width: 1279px) {
  header {
    padding: 1.6rem;
    align-items: center;
  }
  .header_logo {
    width: 11rem;
  }
  .menu_area .menu_btn,
  .header_button .entry_btn {
    width: 8rem;
    font-size: 1.4rem;
  }
  .menu_area.active .menu_btn {
    color: transparent;
    position: relative;
  }
  .menu_area.active .menu_btn::before,
  .menu_area.active .menu_btn::after {
    content: "";
    width: 3.7rem;
    height: .2rem;background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg)
  }
  .menu_area.active .menu_btn::before {
    transform: translate(-50%, -50%) rotate(25deg)
  }
  .menu_area.active .menu_btn::after {
    transform: translate(-50%, -50%) rotate(-25deg)
  }
  .header_button {
    display: flex;
    column-gap: .8rem;
  }
  .menu_area {
    z-index: 50;
  }
  .menu_area .menu_list {
    background-color: #eee;
    width: calc(100% - 3.2rem);
    padding: .8rem 2rem 2rem;
    border-radius: 2rem;
    display: none;
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translateX(-50%);
  }
   .menu_area .menu_list ul {
    display: block;
    font-weight: 700;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }
  .menu_area .menu_list ul li:not(:last-child) {
    border-bottom: .1rem solid #000;
  }
  .menu_area .menu_list ul li a {
    padding: 2.4rem 3.6rem 2.4rem .4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu_area .menu_list ul li a::after {
    content: "";
    position: absolute;
    right: .4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: #000;
    background-position: center;
  }
  .menu_area .menu_list li a::after {
    display: block;
    background-size: .64rem;
    background-image: url("../../images/common/arrow_white.svg");
  }
  .menu_area .menu_list li a[target="_blank"]::after {
    background-image: url("../../images/common/icon_newwindow_white.svg");
  }
  .menu_area .menu_list li span {
    display: block;
    font-size: 1.2rem;
    font-family: silkscreen;
    font-weight: 400;
    letter-spacing: -.1em;
  }
   .menu_area .sp_menu_entry {
    background-color: #000;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    border-radius: .5rem;
    padding: 1.6rem;
    position: relative
  }
  .menu_area .sp_menu_entry::after {
    content: "";
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
    background-image: url("../../images/common/icon_arrow_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .menu_area .sp_menu_entry span {
    display: block;
    margin-bottom: .8rem;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -.1em;
    font-family: silkscreen;
  }
  .menu_bg {
    display: none;
    height: 100dvh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.6);
    z-index: 10;
  }
}


/* ---------------------------------
  footer
--------------------------------- */
footer {
  background-color: #000;
  color: #fff;
  padding: 6.4rem;
}
.footer_top_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 11.4rem 4rem 1rem;
  border-bottom: .1rem solid #fff;
}
.footer_company_logo {
  width: 23.5rem;
}
.footer_company_logo:hover {
  opacity: .7;
}
.footer_link_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 8rem;
  font-size: 2rem;
  font-weight: 700;
}
.footer_link_list a:hover {
  opacity: .7;
}
.footer_bottom {
  padding-top: 2.4rem;
  display: flex;
  align-items: center;
  position: relative;
}
.footer_bottom > * {
  width: calc(100% / 3);
}
.footer_sns_link {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
}
.footer_bottom_link {
  font-weight: 500;
  display: flex;
  column-gap: .8rem;
  align-items: center;
}
.footer_bottom_link::after {
  content: "";
  background-image: url("../../images/common/icon_newwindow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.2rem;
  height: 1.2rem;
}
.footer_bottom_link:hover {
  opacity: .7
}
.footer_sns_link li {
  width: 3.2rem;
}
.footer_sns_link li a:hover {
  opacity: .7
}
.copy_right {
  font-size: 1.2rem;
  text-align: right;
}
.footer_bottom .page_top {
  width: 6.4rem;
  height: 6.4rem;
  z-index: 50;
  position: fixed;
  bottom: 4rem;
  right: 7.4rem;
  cursor: pointer;
}
.footer_bottom .page_top.bottom {
  position: absolute;
  bottom: auto;
  top: -4rem;
  transform: translateY(-100%);
  right: 1rem;
}
@media screen and (max-width: 999px) {
  footer {
    padding: 8rem 2rem 4rem;
  }
  .footer_top_content {
    flex-flow: column;
    row-gap: 6.4rem;
    padding: 0 0 10rem;
    text-align: center;
    align-items: center;
  }
  .footer_company_logo {
    width: 26.4rem;
  }
  .footer_bottom_link::after {
    width: 1.6rem;
    height: 1.6rem;
  }
  .footer_link_list {
    display: flex;
    flex-flow: column;
    row-gap: 3.2rem;
  }
  .footer_bottom {
    flex-flow: column;
    justify-content: center;
    row-gap: 3.4rem;
  }
  .footer_bottom > * {
    width: 100%;
  }
  .footer_bottom_link {
    justify-content: center;
  }
  .copy_right {
    text-align: center;
  }
  .footer_bottom .page_top {
    width: 5rem;
    height: 5rem;
    right: 2rem;
  }
  .footer_bottom .page_top.bottom {
    right: 0;
  }
}

/* ---------------------------------
  main_content
--------------------------------- */
.main_content {
  max-width: 112rem;
  margin: auto;
  padding: 12.2rem 2rem 10rem;
}
@media screen and (max-width: 999px) {
  .main_content {
    padding: 9rem 3.2rem 8rem;
  }
}


/* ---------------------------------
  page_title
--------------------------------- */
.page_title {
  font-size: 4rem;
  line-height: 1;
  border-bottom: .4rem solid #000;
  font-weight: 900;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.page_title span {
  font-family: "silkscreen";
  font-size: 12rem;
  display: block;
  margin-bottom: .8rem;
  font-weight: 400;
  letter-spacing: -.1em;
}
@media screen and (max-width: 999px) {
  .page_title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
  .page_title span {
    font-size: 5rem;
    letter-spacing: -.5rem;
  }
}


/* ---------------------------------
  pankuzu
--------------------------------- */
.pankuzu {
  margin-bottom: 4rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.pankuzu ul {
  display: flex;
  column-gap: 1.6rem;;
  align-items: center;
}
.pankuzu ul li a {
  text-decoration: underline;
  text-underline-offset: .3rem;
}
.pankuzu ul li:not(:last-child) {
  display: flex;
  align-items: center;
}
.pankuzu ul li:not(:last-child)::after {
  content: "";
  margin-left: 1.6rem;
  width: .9rem;
  height: 1.5rem;
  background-image: url("../../images/common/icon_arrow_pankuzu.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 999px) {
  .pankuzu ul {
    display: flex;
  }
}


/* ---------------------------------
  lead_text
--------------------------------- */
.lead_text {
  margin-bottom: 8rem;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -.05em;
}
@media screen and (max-width: 999px) {
  .lead_text {
    font-size: 2rem;
  }
}


/* ---------------------------------
  entry_block
--------------------------------- */
.entry_block {
  background-image: url("../../images/common/entry_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7.2rem 0;
  position: relative;
}
.entry_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,.3), rgba(0,0,0,.3) .35rem, transparent .35rem, transparent .70rem);
}
.entry_block_link {
  display: flex;
  justify-content: space-between;
}
.entry_block_link li {
  width: calc(50% - 4rem);
}
.entry_block_link a {
  padding: 3.2rem 9.2rem 3.2rem 3.2rem;
  background-color: #000;
  border-radius: 2rem;
  display: block;
  color: #fff;
  position: relative;
}
.entry_block_link a:hover {
  background-color: #fff;
  color: #000;
  outline: .1rem solid #000 ;
}
.entry_block_link a::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background-image: url("../../images/common/icon_arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 3.4rem;
  right: 3.2rem;
}
.entry_block_link a:hover::after {
  background-image: url("../../images/common/icon_arrow_black.svg");
}
.entry_block_link dt {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.entry_block_link dt span {
  font-family: "silkscreen";
  font-size: 2.4rem;
  display: block;
  margin-top: .8rem;
  font-weight: 400;
  letter-spacing: -.1em;
  line-height: 1;
}
.entry_block_link dd {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 999px) {
  .entry_block {
    padding: 4rem 0;
    background-size: 280%;
  }
  .entry_block_link {
    display: flex;
    flex-flow: column;
    row-gap: 2rem;
  }
  .entry_block_link li {
    width: 100%;
  }
  .entry_block_link a {
    padding: 2rem;
  }
  .entry_block_link a::after {
    bottom: 2rem;
    right: 2rem;
  }
  .entry_block_link dt {
    font-size: 3rem;
  }
  .entry_block_link dt span {
    font-size: 1.2rem;
  }
  .entry_block_link dd {
    font-size: 1.2rem;
  }
}


/* ---------------------------------
  btn
--------------------------------- */
.btn {
  background-color: #000;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  width: 40rem;
  display: block;
  padding: 2.4rem 0;
  margin: auto;
  border-radius: 10rem;
  text-align: center;
  position: relative;
}
.btn::after {
  content: "";
  background-image: url(../../images/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  transition: .3s;
}
.btn:hover {
  background-color: #fff;
  color: #000;
  outline: .1rem solid #000;
}
.btn:hover::after {
  background-image: url(../../images/common/icon_arrow_black.svg);
}
@media screen and (max-width: 999px) {
  .btn {
    width: 31.1rem;
    padding: 1.2rem 0;
  }
  .btn::after {
    width: 2.4rem;
    height: 2.4rem;
    right: 1.2rem;
  }
}


/* ---------------------------------
  text
--------------------------------- */
.black {
  background-color: #000;
  color: #fff;
  display: inline-block;
}
.red {
  background-image: linear-gradient(#e81717 20%, #990f0f);
  color: #fff;
  display: inline-block;
}


/* ---------------------------------
  employee_slider
--------------------------------- */
.employee_slider {
  position: relative;
  overflow: visible;
  margin-bottom: 4rem;
}
.employee_slider .slick-track {
  display: flex !important;
  align-items: flex-start;
  column-gap: 8rem;
  transform: none !important;
  transition: left .4s ease-out !important;
}
.employee_slider .slick-track {
  transition-timing-function: ease-out !important;
}
.employee_slider .slide_item {
  width: 35rem !important;
  height: 46rem;
  transition: all .4s ease-out;
}
.employee_slider .slide_item.slick-current {
  width: 73rem !important;
}
.employee_slider .slide_item a {
  display: flex;
}
.employee_slider .slide_item a:hover {
  opacity: .6;
}
.employee_slider .slide_item .slide_text {
  padding: 1.6rem 0;
  display: flex;
  flex-flow: column;
  row-gap: 2rem;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .4s ease-out;
  margin-right: 0;
}
.employee_slider .slide_item.slick-current .slide_text {
  width: 38rem !important;
  opacity: 1;
  margin-right: 4rem;
}
.employee_slider .slide_item .slide_text h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
  letter-spacing: -.2rem;
}
.employee_slider .slide_item .slide_text .profile {
  position: relative;
}
.employee_slider .slide_item .slide_text .profile::after {
  content: "";
  background-image: url(../../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.4rem;
  height: 6.4rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.employee_slider .slide_item .slide_text p {
  font-size: 1.8rem;
  font-weight: 500;
}
.employee_slider .slide_item .slide_text .name {
  display: flex;
  column-gap: 2.1rem;
  flex-wrap: wrap;
}
.employee_slider .slide_item .slide_img {
  position: relative;
  width: 35rem;
  height: 46rem;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.employee_slider .slide_item .slide_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  transition: opacity .4s ease-out;
  z-index: 1;
}
.employee_slider .slide_item.slick-current .slide_img::after {
  opacity: 0;
}
.employee_slider .slide_item .slide_img img {
  background-size: cover;
}
.employee_slider .slick-dots {
  display: flex;
  color: transparent;
  width: 50rem;
  column-gap: .8rem;
  margin: 4rem auto 0;
}
.employee_slider .slick-dots li {
  background-color: #D9D9D9;
  height: .3rem;
  width: 100%;
  cursor: pointer;
}
.employee_slider .slick-dots li.slick-active {
  background-color: #000;
}
.employee_slider .slick-arrow {
  position: absolute;
  top: 20rem;
  width: 6.4rem;
  height: 6.4rem;
  background-color: #000;
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
  z-index: 1;
  transition: .3s;
}
.employee_slider .slick-arrow::before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  border-top: .3rem solid #fff;
  border-right: .3rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.employee_slider .slick-arrow.slick-disabled {
  background-color: #aaa;
  pointer-events: none;
}
.employee_slider .slick-prev {
  left: 4rem;
}
.employee_slider .slick-prev::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}
.employee_slider .slick-next {
  right: 4rem;
}
.employee_slider .slick-next::before {
  transform: translate(-75%, -50%) rotate(45deg);
}
.employee_slider .slick-prev,
.employee_slider .slick-next {
  opacity: 1;
}
.employee_slider .slick-prev:hover,
.employee_slider .slick-next:hover {
  opacity: .6;
}
@media screen and (max-width: 999px) {
  .employee_slider .slick-track {
    column-gap: 3.2rem;
    align-items: stretch;
  }
  .employee_slider .slide_item {
    width: 24.7rem !important;
    height: auto;
  }
  .employee_slider .slide_item.slick-current {
    width: 24.7rem !important;
  }
  .employee_slider .slide_item a {
    flex-flow: column;
    justify-content: space-between;
  }
  .employee_slider .slide_item .slide_text {
    padding: 2rem 0 0;
    width: auto;
    order: 1;
  }
  .employee_slider .slide_item.slick-current .slide_text {
    width: 100% !important;
    opacity: 1;
    margin-right: 0;
  }
  .employee_slider .slide_item .slide_text h3 {
    font-size: 2.5rem;
    font-weight: 900;
  }
  .employee_slider .slide_item .slide_text .profile::after {
    width: 4rem;
    height: 4rem;
  }
  .employee_slider .slide_item .slide_text p {
    font-size: 1.4rem;
  }
  .employee_slider .slide_item .slide_img {
    width: 24.7rem;
    height: 32.4rem;
    order: 0;
  }
  .employee_slider .slick-dots {
    width: 31.1rem;
  }
  .employee_slider .slick-arrow {
    top: 14.2rem;
    width: 4rem;
    height: 4rem;
  }
  .employee_slider .slick-arrow::before {
    width: 1rem;
    height: 1rem;
    border-top: .2rem solid #fff;
    border-right: .2rem solid #fff;
  }
  .employee_slider .slick-prev {
    left: 1.6rem;
  }
  .employee_slider .slick-next {
    right: 1.6rem;
  }
}