/*-------------------------
  共通パーツ（PC）
-------------------------*/
html {
  font-size: 100%;
}

a {
  display: block;
}

img {
  max-width: 100%;
}

body {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
}

.inner-content {
  max-width: 1200px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.title {
  font-family: 'Oswald', sans-serif;
}

.omit-text-1-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.omit-text-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.omit-text-4-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

/*-------------------------
  共通パーツ（SP）
-------------------------*/
@media screen and (max-width: 768px) {
  .inner-content {
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .omit-text-1-3 {
    -webkit-line-clamp: 3;
  }

  .omit-text-4-5 {
    -webkit-line-clamp: 5;
  }
}

/*-------------------------
  ヘッダー（PC）
-------------------------*/
.header-pc {
  background-color: #FFFFFF;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
  z-index: 10000;
}

.header-pc img {
  height: 30px;
  object-fit: contain;
  margin-left: 32px;
}

.header-nav-list {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.header-nav-item:not(:first-child) {
  margin-left: 48px;
}

.header-nav-item a {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.5s;
}

.header-nav-item a:hover {
  color: #000;
}

.header-nav-item span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.417;
  font-weight: 900;
}

.header-nav-item.header-contact {
  width: 200px;
}

.header-nav-item.header-contact a {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #000;
  height: 80px;
  transition: all 0.5s;
}

.header-nav-item.header-contact a:hover {
  background-color: #757575;
}

.header-nav-item .fa-envelope {
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #FFF;
  margin: 0 16px 0 24px;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  color: #FFFFFF;
}

.header-contact-text span {
  font-size: 14px;
}

.header-sp {
  display: none;
}

/*-------------------------
  ヘッダー（タブレット）
-------------------------*/
@media screen and (max-width: 900px) {
  .header-nav-item:not(:first-child) {
    margin-left: 28px;
  }

  .header-pc img {
    margin-left: 20px;
  }
}

/*-------------------------
  ヘッダー（SP）
-------------------------*/
@media screen and (max-width: 768px) {
  .header-pc {
    display: none;
  }

  body.active {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .header-sp {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    z-index: 10000;
  }

  .header-sp-logo {
    height: 22px;
    object-fit: contain;
    margin-left: 8px;
  }

  .header-sp-contact {
    background-color: #000;
    height: 60px;
    width: 60px;
    position: relative;
    transition: all 0.5s;
  }

  .header-sp-contact:hover {
    background-color: #757575;
  }

  .header-sp-contact .fa-envelope {
    height: 32px;
    width: 32px;
    font-size: 32px;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .header-sp-left {
    display: flex;
  }

  /* ハンバーガー */
  .hamburger {
    display: inline-block;
  }

  .hamburger-btn {
    width: 60px;
    height: 60px;
    text-align: center;
    position: relative;
    cursor: pointer;
    z-index: 150;
  }

  .hamburger-btn_bar {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: #000000;
    position: absolute;
    transition: all 0.5s;
  }

  .hamburger-btn_bar:nth-child(1) {
    top: 18px;
    left: 15px;
  }

  .hamburger-btn_bar.active:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }

  .hamburger-btn_bar:nth-child(2) {
    top: 28px;
    left: 15px;
  }

  .hamburger-btn_bar.active:nth-child(2) {
    background-color: rgba(255, 255, 255, 0);
  }

  .hamburger-btn_bar:nth-child(3) {
    top: 38px;
    left: 15px;
  }

  .hamburger-btn_bar.active:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }

  .hamburger-nav {
    opacity: 1;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 100;
    transition: all 0.5s;
    pointer-events: none;
  }

  .hamburger-nav.active {
    left: 0;
    pointer-events: auto;
  }

  .hamburger-nav_wrap {
    width: 100vw;
    position: absolute;
    text-align: center;
    top: 50vh;
    transform: translate(0, -20vh);
  }

  .hamburger-nav_wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    text-transform: uppercase;
    transition: all 0.5s;
  }

  .hamburger-nav_wrap a:hover {
    color: #000;
  }

  .hamburger-menu-ja,
  .hamburger-menu-en {
    width: 50%;
  }

  .hamburger-menu-ja {
    padding-right: 4px;
    text-align: right;
    font-size: 12px;
    font-weight: 900;
  }

  .hamburger-menu-en {
    padding-left: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
  }

  .hamburger-nav_wrap .contact {
    color: #000;
  }

  .hamburger-nav_wrap .contact a:hover {
    color: #757575;
  }

  .hamburger-cover {
    background-color: rgba(244, 251, 248, 0.98);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 60px;
    right: -120vw;
    opacity: 1;
    pointer-events: none;
    transition: all 0.5s;
  }

  .hamburger-cover.active {
    right: 0;
  }
}

/*-------------------------
  動画のモーダル再生
-------------------------*/

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  background-color: #000;
  max-width: 50vw;
  max-height: 80vh;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
  .video-modal-content {
  max-width: inherit;
  width:100%;
  aspect-ratio: 16 / 9;
  }
}

.video-modal-content video {
  width: 100%;
    height: 100%;
  object-fit: contain;
}

.video-close {
  position: absolute;
  top: 8px;
  right: 12px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index:9999;
}

/*-------------------------
  フッター（コンタクト/PC）
-------------------------*/
.footer-contact-title-wrap {
  text-align: center;
}

.footer-contact-title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.469;
}

.footer-contact-title-ja {
  font-size: 16px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  text-indent: 1.25em;
  line-height: 1.438;
  margin-bottom: 64px;
}

.footer-contact-title-ja::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.footer-contact {
  background-color: #F5F5F5;
  padding: 80px 0;
}

.footer-contact-text {
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.footer-contact-btn {
  margin: 48px auto 0 auto;
  background-color: #000;
  color: #FFF;
  font-weight: 900;
  font-size: 20px;
  padding: 10px 24px;
  width: 364px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.footer-contact-btn .fa-envelope {
  margin-right: 16px;
  font-size: 40px;
  color: #FFF;
}

.footer-contact-btn:hover {
  background-color: #757575;
}

.footer-pmark {
  width: 150px;
  margin: 50px auto 0;
  text-align: center;
}

.footer-pmark img {
  width:100%;
  object-fit: cover;
}

/*-------------------------
  フッター（コンタクト/SP）
-------------------------*/
@media screen and (max-width: 768px) {
  .footer-contact-btn {
    max-width: 364px;
    width: 100%;
  }

  .footer-pmark {
  width: 100px;
}
}

/*-------------------------
  リクルート（/PC）
-------------------------*/
.footer-recruit {
  background-image: url(../../assets/img/about-recruit-back.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.footer-recruit-title-wrap {
  text-align: center;
}

.footer-recruit-title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.469;
}

.footer-recruit-title-ja {
  font-size: 16px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  text-indent: 1.25em;
  line-height: 1.438;
  margin-bottom: 40px;
}

.footer-recruit-title-ja::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.footer-recruit-text {
  font-weight: 900;
  line-height: 1.75;
  text-align: center;
}

.footer-recruit-btn {
  margin: 56px auto 0 auto;
  background-color: #FFF;
  border: 2px solid #000;
  color: #000;
  font-weight: 900;
  font-size: 20px;
  padding: 16px 10px;
  width: 364px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.footer-recruit-btn .fa-arrow-right {
  font-size: 24px;
  margin-left: 0.25em;
}

.footer-recruit-btn:hover {
  background-color: #000;
  color: #FFF;
}

/*-------------------------
  リクルート（/SP）
-------------------------*/
@media screen and (max-width: 768px) {
  .footer-recruit-btn {
    max-width: 364px;
    width: 100%;
  }
}

/*-------------------------
  フッター（PC）
-------------------------*/
.footer {
  padding: 80px 0 24px 0;
  background-color: #000;
  color: #FFF;
}

.footer a {
  transition: all 0.5s;
}

.footer a:hover {
  color: #757575;
}

.footer a svg path {
  transition: all 0.5s;
}

.footer a:hover svg path {
  fill: #000;
}

.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo-table,
.footer-first,
.footer-second {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav-wrap img {
  width: 75px;
  object-fit: contain;
}

.footer-logo-table {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: center;
}

.footer-nav-subtitle {
  font-weight: 900;
  margin-bottom: 12px;
  text-align: left;
}

.footer-nav-wrap a {
  font-weight: 400;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-nav-title,
a.footer-logo-link {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

a.footer-logo {
  margin: -40px 0 30px 0;
}

.footer-nav-wrap .fa-chevron-right {
  margin-right: 0.5em;
  font-size: 12px;
  line-height: 16px;
}

.footer-about {
  padding-bottom: 4px;
}

.footer-news {
  margin-top: 24px;
}

.footer-web {
  margin-top: 45px;
}

.footer-line,
.footer-other {
  padding-top: 12px;
}

.footer-other-links {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 24px;
}

.footer-tab-wrap,
.footer-sp-wrap {
  display: contents;
}

/*-------------------------
  フッター（タブレット）
-------------------------*/
@media screen and (max-width: 900px) {
  .footer {
    padding-right: 48px;
    padding-left: 48px;
  }

  .footer-nav-wrap {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-wrap img {
    margin: 0 0 20px 0;
  }

  /* .footer-first {
    display: flex;
    width: 100%;
    margin-bottom: 60px;
  } 

  .footer-about,
  .footer-news,
  .footer-second,
  .footer-third {
    flex-basis: 50%;
  } */

  .footer-tab-wrap {
    display: flex;
    width: 100%;
  }
}

/*-------------------------
  フッター（SP）
-------------------------*/
@media screen and (max-width: 768px) {

  .footer .inner-content,
  .footer {
    padding-right: 0;
    padding-left: 0;
  }

  .footer-about {
    width:100%;
    margin-bottom: 20px;
  }

  .footer-first {
    flex-direction: column;
    margin-bottom: 0;
  }

  .footer-nav-title,
  .footer-nav-subtitle {
    text-align: center;
  }

  .footer-nav-wrap {
    display: block;
    /* flex-direction: column; */
  }

  .footer-sp-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }

  .footer-sp-wrap.no-sub {
    margin-top: 24px;
  }

  .footer-about a,
  .footer-second a {
    background-color: #262626;
    margin-bottom: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .footer-logo-table a {
    background-color: #000;
    text-align: center;
  }

  .footer-nav-wrap a.border-top {
    border-top: 1px solid #808080;
  }

  .footer-nav-wrap a.border-bottom {
    border-bottom: 1px solid #808080;
  }

  .footer-nav-wrap a.border-right {
    border-right: 1px solid #808080;
  }

  .footer-company {
    margin-top: 24px;
  }

  .footer-company .footer-nav-title {
    margin-bottom: 8px;
  }

  .footer-nav-subtitle {
    margin-bottom: 8px;
  }

  .footer-nav-subtitle::before,
  .footer-nav-subtitle::after {
    font-weight: normal;
    content: "ー";
    display: inline-block;
    margin: 0 10px;
  }

  .footer-line {
    margin-top: 24px;
  }

  .footer-web,
  .footer-other {
    margin-top: 24px;
  }

  .footer-nav-wrap a span {
    width: 85%;
  }

  .footer-nav-wrap .fa-chevron-right {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
    margin-right: 0;
  }

  .footer-line,
  .footer-other {
    padding-top: 0;
  }

  .footer-other-links {
    margin-top: 24px;
    flex-direction: column;
    text-align: center;
  }

  .footer-other-links span {
    display: none;
  }

  .footer-other-links a:first-child {
    margin-bottom: 12px;
  }

  .footer-other-links a:last-child {
    margin-top: 12px;
  }
}