@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (min-width: 1024px) {
  .container {
    padding-inline: 32px;
  }
}

.container--wide {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (min-width: 1024px) {
  .container--wide {
    padding-inline: 32px;
  }
}

.container--narrow {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (min-width: 1024px) {
  .container--narrow {
    padding-inline: 32px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.14);
}
.site-header__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (min-width: 1024px) {
  .site-header__inner {
    padding-inline: 32px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media screen and (min-width: 1024px) {
  .site-header__inner {
    height: 72px;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  transition: opacity 0.2s ease;
}
.site-header__logo a:hover {
  opacity: 0.6;
}
.site-header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .site-header__hamburger {
    display: none;
  }
}
.site-header__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #000000;
  position: relative;
}
.nav-list__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #A63D40;
  transition: width 0.3s ease;
}
.nav-list__link:hover::after, .nav-list__link:focus-visible::after {
  width: 100%;
}
.nav-list__link {
  transition: opacity 0.2s ease;
}
.nav-list__link:hover {
  opacity: 0.7;
}
.nav-list__link--contact {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border: 1px solid #000000;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.nav-list__link--contact::after {
  display: none;
}
.nav-list__link--contact:hover {
  opacity: 1;
  background-color: #000000;
  color: #FFFFFF;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background-color: #FFFFFF;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 24px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer__link::after {
  content: "→";
  font-size: 13px;
  color: #A63D40;
  font-family: "Montserrat", sans-serif;
}
.drawer__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 4px;
  display: block;
}

.site-footer {
  background-color: #000000;
  color: #FFFFFF;
  padding-block: 96px 48px;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding-block: 64px 32px;
  }
}
.site-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (min-width: 1024px) {
  .site-footer__inner {
    padding-inline: 32px;
  }
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .site-footer__top {
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: start;
  }
}
.site-footer__logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 16px;
}
.site-footer__tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .site-footer__nav {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}
.site-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__nav-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A63D40;
  color: #A63D40;
  margin-bottom: 8px;
}
.site-footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.site-footer__nav-link:hover {
  color: #FFFFFF;
}
.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-block: 48px;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__copy {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}
.site-footer__policy-links {
  display: flex;
  gap: 24px;
}
.site-footer__policy-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.site-footer__policy-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

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