body {
  font-family: "Noto Serif JP", serif;
}

.site-header {
  left: 0;
  padding: 24px 0;
  position: absolute;
  top: 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
  width: 100%;
  z-index: 100;
}
.site-header.is-fixed {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
  position: fixed;
}
.site-header .header-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 90%;
}
.site-header .header-logo a {
  text-decoration: none;
}
.site-header .header-logo img {
  height: 56px;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  width: auto;
}
@media (max-width: 768px) {
  .site-header .header-logo img {
    height: 40px;
  }
}
.site-header.is-logo-show .header-logo img {
  opacity: 1;
  visibility: visible;
}
.site-header.is-fixed .header-logo img {
  height: 44px;
}
@media (max-width: 768px) {
  .site-header.is-fixed .header-logo img {
    height: 36px;
  }
}
.site-header .hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  height: 24px;
  padding: 0;
  position: relative;
  width: 30px;
  z-index: 110;
}
@media (max-width: 768px) {
  .site-header .hamburger-btn {
    display: block;
  }
}
.site-header .hamburger-btn span {
  background-color: #fff;
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}
.site-header .hamburger-btn span:nth-child(1) {
  top: 0;
}
.site-header .hamburger-btn span:nth-child(2) {
  top: 11px;
}
.site-header .hamburger-btn span:nth-child(3) {
  top: 22px;
}
.site-header .hamburger-btn.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.site-header .hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger-btn.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .site-header .header-nav {
    background-color: rgba(0, 0, 0, 0.95);
    bottom: 0;
    height: 100vh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100vw;
    z-index: 105;
  }
  .site-header .header-nav.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.site-header .header-menu-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .site-header .header-menu-list {
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: center;
  }
}
.site-header .header-menu-list li {
  opacity: 0.2;
}
.site-header .header-menu-list li:last-child {
  opacity: 1;
}
.site-header .header-menu-list li a {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Bentham", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-header .header-menu-list li a:hover {
  color: #d4af37;
}
.site-header .header-menu-list li a:hover .menu-sub {
  color: #d4af37;
}
.site-header .header-menu-list li a .menu-sub {
  color: #888;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: none;
  transition: color 0.3s ease;
}

.site-footer {
  background-color: #000;
  border-top: 1px solid #111;
  padding: 60px 20px 20px;
  text-align: center;
}
.site-footer .footer-container {
  margin: 0 auto;
  max-width: 1200px;
}
.site-footer .footer-menu-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
}
.site-footer .footer-menu-list li {
  align-items: center;
  display: flex;
}
.site-footer .footer-menu-list li:not(:last-child)::after {
  color: #444;
  content: "|";
  font-size: 0.8rem;
  margin-left: 20px;
}
.site-footer .footer-menu-list li a {
  color: #888;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-menu-list li a:hover {
  color: #fff;
}
.site-footer .footer-logo {
  margin-bottom: 30px;
}
.site-footer .footer-logo img {
  height: 100px;
  margin: 0 auto 40px;
}
.site-footer .copyright {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.top-page-design {
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
  margin: 0;
  padding: 0;
}
.top-page-design img {
  display: block;
  height: auto;
  max-width: 100%;
}

.hero-section {
  align-items: center;
  background: url("../../../assets/images/common/bg.webp") center/cover no-repeat;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  height: 100vh;
  justify-content: center;
  min-height: 80vh;
  padding-top: 40px;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 0;
  }
}
.hero-section::before {
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.hero-section .hero-logo {
  margin-bottom: 40px;
}
.hero-section .hero-logo img {
  margin: 0 auto 15px;
  width: 300px;
}
@media (max-width: 768px) {
  .hero-section .hero-logo img {
    width: 180px;
  }
}
.hero-section .hero-logo .brand-name {
  color: #fff;
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  margin: 0;
}
.hero-section .hero-logo .brand-sub {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin: 5px 0 0;
}
.hero-section .hero-info .open-date {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.hero-section .hero-info .open-title {
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-section .hero-info .open-title {
    font-size: 1.4rem;
    padding: 0 24px;
  }
}

.recruit-section {
  background-color: #050505;
  padding: 100px 20px;
}
.recruit-section .container {
  margin: 0 auto;
  max-width: 900px;
}
.recruit-section .section-title {
  margin-bottom: 60px;
  text-align: center;
}
.recruit-section .section-title .en {
  display: block;
  font-size: 2.2rem;
  font-weight: normal;
  letter-spacing: 0.2em;
}
.recruit-section .section-title .ja {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 5px;
  opacity: 0.7;
}
.recruit-section .section-title::after {
  background-color: #d4af37;
  content: "";
  display: block;
  height: 1px;
  margin: 15px auto 0;
  width: 40px;
}
.recruit-section .card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.recruit-section .recruit-card {
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #333;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 768px) {
  .recruit-section .recruit-card {
    flex-direction: column-reverse;
    padding: 20px;
  }
}
.recruit-section .recruit-card .card-body {
  flex: 1;
}
.recruit-section .recruit-card .card-body .card-title {
  align-items: flex-start;
  color: #111;
  display: flex;
  font-size: 1.25rem;
  font-weight: bold;
  gap: 8px;
  margin-bottom: 15px;
  margin-top: 0;
  text-indent: -0.5rem;
}
@media (max-width: 768px) {
  .recruit-section .recruit-card .card-body .card-title {
    font-size: 1.1rem;
  }
}
.recruit-section .recruit-card .card-body .card-title::before {
  background-image: url("../../../assets/images/common/icon-check01.webp");
  background-position: 0 26px;
  background-size: 24px;
  content: "";
  height: 24px;
  width: 24px;
}
@media (max-width: 768px) {
  .recruit-section .recruit-card .card-body .card-title::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    height: 20px;
    width: 40px;
  }
}
.recruit-section .recruit-card .card-body .card-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.recruit-section .recruit-card .card-img {
  flex-shrink: 0;
  width: 260px;
}
@media (max-width: 768px) {
  .recruit-section .recruit-card .card-img {
    width: 100%;
  }
}
.recruit-section .recruit-card .card-img img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.recruit-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 560px) {
  .recruit-section .cta-buttons {
    align-items: center;
    flex-direction: column;
  }
}
.recruit-section .cta-buttons .btn {
  align-items: center;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  font-size: 1rem;
  font-weight: bold;
  height: 50px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 240px;
}
.recruit-section .cta-buttons .btn.btn-mail {
  background-color: #fff;
  color: #000;
}
.recruit-section .cta-buttons .btn.btn-mail::before {
  background-image: url("../../../assets/images/common/icon-mail.svg");
  background-position: center;
  background-size: 24px;
  content: "";
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
  height: 16px;
  margin-right: 8px;
  width: 20px;
}
.recruit-section .cta-buttons .btn.btn-mail:hover {
  background-color: #eee;
}
.recruit-section .cta-buttons .btn.btn-line {
  background-color: #00c300;
  color: #fff;
}
.recruit-section .cta-buttons .btn.btn-line::before {
  background-image: url("../../../assets/images/common/icon-line.svg");
  background-position: center;
  background-size: 24px;
  content: "";
  height: 24px;
  margin-right: 8px;
  width: 24px;
}
.recruit-section .cta-buttons .btn.btn-line:hover {
  background-color: darkne(#00c300, 5%);
}

.coming-soon-section {
  background: url("../../../assets/images/common/cta.webp") no-repeat;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
  background-position: center;
  background-size: cover;
  padding: 120px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 80px 20px;
  }
}
.coming-soon-section .coming-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin: 0;
}
@media (max-width: 768px) {
  .coming-soon-section .coming-text {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=main.css.map */
