@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300..700&display=swap");
:root {
  --text-color: #333333;
  --wh: #fff;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

.main-footer {
  text-align: center;
  padding: 2rem 0 8rem;
  font-family: "Mulish", sans-serif;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 834px) {
  .main-footer {
    padding: 0 0 5rem;
  }
}
.main-footer__wrapper {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto;
}

@media screen and (max-width: 834px) {
  .main-footer__wrapper {
    margin: 2.5rem auto;
  }
}
.main-footer__logo {
  width: 30%;
  max-width: 56px;
  margin: 0 auto 5rem;
}

@media screen and (max-width: 834px) {
  .main-footer__logo {
    margin: 0 auto 3rem;
  }
}
.main-footer__menu {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  gap: 3rem;
  font-size: clamp(1.2rem, 1vw + 0.75rem, 1.4rem);
}

@media screen and (max-width: 1200px) {
  .main-footer__menu {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__menu {
    margin-top: 0;
    flex-direction: column;
    gap: 2rem;
  }
}
.main-footer__menu-item.--recruit {
  position: relative;
  margin-left: 2rem;
}

@media screen and (max-width: 640px) {
  .main-footer__menu-item.--recruit {
    margin-left: 0;
  }
}
.main-footer__menu-item.--recruit .list-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: var(--red);
  transition: transform 0.4s ease;
  left: -21px;
  top: 9px;
}

.main-footer__menu-item.--recruit .list-line:nth-of-type(1) {
  width: 15px;
  height: 2px;
  transform: translate(0, -50%);
}

.main-footer__menu-item.--recruit .list-line:nth-of-type(2) {
  width: 2px;
  height: 15px;
  transform: translate(300%, -50%);
}

.main-footer__menu-item.--recruit:hover .list-line:nth-of-type(1) {
  background-color: transparent;
}

.main-footer__menu-item.--recruit:hover .list-line:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.main-footer__menu-item.--recruit:hover .menu-sub {
  visibility: visible;
  transition: all 1s ease;
}

.main-footer .menu-sub {
  background-color: #fff;
  border-radius: 5px;
  padding: 1.5rem;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  position: absolute;
  top: 100%;
  left: 3%;
  visibility: hidden;
  transition: visibility 0.3s ease-out;
  display: flex;
  flex-direction: column;
  width: 150px;
}

@media screen and (max-width: 834px) {
  .main-footer .menu-sub {
    top: -255%;
    left: auto;
    right: -250%;
    font-size: 12px;
    width: 115px;
  }
}
@media screen and (max-width: 374px) {
  .main-footer .menu-sub {
    top: -270%;
    left: auto;
    right: -250%;
  }
}
.main-footer .menu-sub-item {
  display: flex;
  align-items: center;
}

.main-footer .menu-sub-item:before {
  content: "・";
  color: var(--red);
  font-size: 18px;
}

.main-footer .menu-sub-item::after {
  content: "\f1e1";
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.main-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

@media screen and (max-width: 1200px) {
  .main-footer__sns {
    margin-top: 3rem;
  }
}
.main-footer__sns-item-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--red);
  font-size: 1rem;
  line-height: 1.8;
}

.main-footer__sns-item-link i {
  font-size: 23px;
}

.main-footer__copyright {
  color: #ccc;
  font-size: 12px;
}

/* ====================================================
Footer
==================================================== */
.c-ft__en {
  font-family: "Cormorant Garamond", serif;
}

#main-footer {
  padding: 40px 0 50px;
  color: #fff;
  font-size: 12px;
  background: #000;
}
@media screen and (max-width: 640px) {
  #main-footer {
    padding: 25px 0;
  }
}
#main-footer a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}
#main-footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#main-footer .nav {
  font-size: 14px;
}
#main-footer .nav a:not(:last-child) {
  padding-right: 1em;
  border-right: 1px solid #fff;
}
#main-footer .nav a:not(:first-child) {
  padding-left: 1em;
}
#main-footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-footer .sns a {
  margin-left: 20px;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  #main-footer .sns a {
    font-size: 16px;
    margin-left: 15px;
  }
}/*# sourceMappingURL=footer.css.map */