@charset "UTF-8";
/* スマホメニュー */
.menu-label {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  background-color: #222222;
  cursor: pointer;
  background-size: 100% auto;
  z-index: 100;
}
@media (max-width: 1023px) {
  .menu-label {
    width: 56px;
    height: 56px;
  }
}
.menu-label .navicon {
  display: block;
  width: 21px;
  height: 21px;
  max-width: 100px;
  max-height: 100px;
  background: url("../img/menu.svg") no-repeat center center;
}
.menu-label:hover {
  opacity: 0.8;
}

.menu {
  position: fixed;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
}

.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  z-index: 100;
}
.menu-btn:checked ~ .menu-label {
  top: 0;
  right: 0;
  z-index: 110;
  width: 88px;
  height: 88px;
  background: #fff;
}
@media (max-width: 1023px) {
  .menu-btn:checked ~ .menu-label {
    width: 56px;
    height: 56px;
  }
}
.menu-btn:checked ~ .menu-label:hover {
  opacity: 1;
}
.menu-btn:checked ~ .menu-label .navicon {
  background: url(../img/close.svg) no-repeat center center;
  z-index: 120;
}
.menu-btn:checked ~ .menu {
  right: 0;
  display: flex;
  max-height: 100vh;
  opacity: 1;
  z-index: 100;
  top: 88px;
  justify-content: flex-end;
}
@media (max-width: 1023px) {
  .menu-btn:checked ~ .menu {
    top: 56px;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .menu-btn:checked ~ .menu {
    top: 0;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .menu-btn:checked ~ .menu {
    top: 0;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
  }
}
.menu-btn:checked ~ .menu {
  /* メニュー */
}
.menu-btn:checked ~ .menu .mobile-menu-overlay {
  background-color: rgb(255, 255, 255);
  display: flex;
  max-width: 390px;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 120px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: start;
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .menu-btn:checked ~ .menu .mobile-menu-overlay {
    max-width: 100%;
    flex-direction: row;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .menu-btn:checked ~ .menu .mobile-menu-overlay {
    max-width: 100%;
    padding-top: 70px;
  }
}
@media (max-width: 389px) {
  .menu-btn:checked ~ .menu .mobile-menu-overlay {
    padding-top: 20px;
  }
}
.menu-btn:checked ~ .menu .mobile-menu {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  flex: 1;
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .menu-btn:checked ~ .menu .mobile-menu {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.menu-btn:checked ~ .menu .header-logo {
  align-self: stretch;
  display: flex;
  width: 183px;
  flex-shrink: 0;
  height: 20px;
  margin: auto 0;
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .menu-btn:checked ~ .menu .header-logo {
    width: 120px;
  }
}
.menu-btn:checked ~ .menu .header-actions {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .recruitment-link {
  align-self: stretch;
  display: flex;
  min-height: 70px;
  flex-direction: column;
  align-items: center;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  justify-content: center;
  width: 70px;
  margin: auto 0;
  padding: 26px 14px;
}
.menu-btn:checked ~ .menu .close-button {
  background-color: rgb(255, 255, 255);
  align-self: stretch;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: auto 0;
  border: none;
  cursor: pointer;
}
.menu-btn:checked ~ .menu .close-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 14px;
  align-self: stretch;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .company-logo-section {
  display: flex;
  margin-top: 41px;
  flex-direction: column;
  align-items: center;
  color: rgb(34, 34, 34);
  white-space: nowrap;
  justify-content: start;
}
@media (max-width: 389px) {
  .menu-btn:checked ~ .menu .company-logo-section {
    margin-top: 24px;
  }
}
.menu-btn:checked ~ .menu .company-logo {
  aspect-ratio: 9.52;
  object-fit: contain;
  object-position: center;
  width: 254px;
  max-width: 100%;
}
.menu-btn:checked ~ .menu .company-tagline {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 13px;
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .menu-btn:checked ~ .menu .company-tagline {
    font-size: 0.75rem;
  }
}
.menu-btn:checked ~ .menu .navigation-menu {
  margin-top: 41px;
  width: 276px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.menu-btn:checked ~ .menu .menu-columns {
  width: 100%;
  color: rgb(34, 34, 34);
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 24px 60px;
  justify-content: start;
}
.menu-btn:checked ~ .menu .menu-column-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 116px;
}
.menu-btn:checked ~ .menu .menu-column-right {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100px;
}
.menu-btn:checked ~ .menu .menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.menu-btn:checked ~ .menu .menu-item:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  background: url(../img/arrow-r.svg) no-repeat center center;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
}
.menu-btn:checked ~ .menu .menu--recruit .menu-item {
  color: #1b2d53;
}
.menu-btn:checked ~ .menu .menu--recruit .menu-item:before {
  background-image: url(../img/arrow-r-b.svg);
}
.menu-btn:checked ~ .menu .menu-item:last-child {
  margin-bottom: 0;
}
.menu-btn:checked ~ .menu .menu-column-left .menu-item:first-child {
  margin-bottom: 24px;
}
.menu-btn:checked ~ .menu .menu-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 12px;
  align-self: stretch;
  flex-shrink: 0;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .menu-text {
  align-self: stretch;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .recruitment-button-section {
  display: none;
  margin-top: 43px;
  width: 100%;
  color: rgb(255, 255, 255);
}
@media (max-width: 1023px) {
  .menu-btn:checked ~ .menu .recruitment-button-section {
    display: block;
  }
}
@media (max-width: 389px) {
  .menu-btn:checked ~ .menu .recruitment-button-section {
    margin-top: 24px;
  }
}
.menu-btn:checked ~ .menu .recruitment-button {
  background-color: rgb(9, 59, 171);
  display: flex;
  min-height: 58px;
  width: 100%;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 20px 52px;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.menu-btn:checked ~ .menu .recruitment-button span {
  align-self: stretch;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .contact-info {
  margin-top: 41px;
  max-width: 100%;
}
@media (max-width: 389px) {
  .menu-btn:checked ~ .menu .contact-info {
    margin-top: 24px;
  }
}
.menu-btn:checked ~ .menu .address-section {
  width: 100%;
}
.menu-btn:checked ~ .menu .company-address {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  color: rgb(34, 34, 34);
  font-style: normal;
}
.menu-btn:checked ~ .menu .postal-code {
  align-self: start;
}
.menu-btn:checked ~ .menu .street-address {
  margin-top: 7px;
}
.menu-btn:checked ~ .menu .info-links {
  display: flex;
  margin-top: 20px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
}
.menu-btn:checked ~ .menu .info-link {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: start;
  margin-bottom: 19px;
}
.menu-btn:checked ~ .menu .info-link:last-child {
  margin-bottom: 0;
}
.menu-btn:checked ~ .menu .link-icon-wrapper {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: start;
  width: 16px;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .link-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 16px;
  align-self: stretch;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .link-text-wrapper {
  align-self: stretch;
  color: rgb(34, 34, 34);
  white-space: nowrap;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .link-text {
  align-self: stretch;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .phone-section {
  display: flex;
  margin-top: 40px;
  width: 200px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  color: rgb(34, 34, 34);
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 389px) {
  .menu-btn:checked ~ .menu .phone-section {
    margin-top: 24px;
  }
}
.menu-btn:checked ~ .menu .phone-number {
  display: flex;
  align-items: stretch;
  gap: 6px;
  font-size: 24px;
}
.menu-btn:checked ~ .menu .phone-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  flex-shrink: 0;
  margin: auto 0;
}
.menu-btn:checked ~ .menu .phone-text {
  flex-grow: 1;
  flex-shrink: 1;
  width: 159px;
}
.menu-btn:checked ~ .menu .business-hours {
  font-size: 14px;
  align-self: end;
  margin-top: 7px;
}

.menu .navigation-menu .recruitment-button-section .entry {
  display: none;
}

#recruit .navigation-menu .recruitment-button-section .recruit {
  display: none;
}
#recruit .navigation-menu .recruitment-button-section .entry {
  display: flex;
}/*# sourceMappingURL=menu.css.map */