@charset "utf-8";

/* =============================================================


root / html / body


*  ============================================================= */

:root {
  --font-ja:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Meiryo", sans-serif;
  --font-en: "Gabarito", "Helvetica Neue", Arial, sans-serif;
  --letter-spacing-wide: 0.24em;
  --letter-spacing-en: 0.04em;
}

html,
body {
  overflow-x: clip;
}

html {
  background-color: #fff;
  font-size: 62.5%;
}

body {
  min-height: 200vh;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

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

/* =============================================================


page-transition


*  ============================================================= */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .page-transition {
  opacity: 0;
  visibility: hidden;
}

body.is-leaving .page-transition {
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    transition: none;
  }
}

/* =============================================================


header


*  ============================================================= */

.header {
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  margin-top: 0;
  font-family: var(--font-ja);
  color: #000;
  background-color: transparent;
  transition:
    top 0.3s ease,
    background-color 0.3s ease;
}

.header.is-fixed {
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 91.25%;
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
}

.header__logo {
  width: 16%;
  margin: 0;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
  width: 86%;
  height: auto;
}

.header__nav-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82%;
  font-family: var(--font-ja);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ja);
  color: #000;
}

.header__nav-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}

.header__nav-link,
.header__contact,
.header__login,
.header__logo-link {
  transition: all 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.header__nav-link:hover,
.header__contact:hover,
.header__login:hover,
.header__logo-link:hover {
  opacity: 0.5;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__contact {
  font-family: var(--font-ja);
  color: #000;
}

.header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 32px;
  padding: 0 24px;
  border-radius: 3px;
  font-family: var(--font-ja);
  font-weight: 700;
  color: #fff;
  background-color: #1c1c1c;
}

.header__menu-open,
.header__menu-close {
  display: none;
}

.header__overlay {
  display: none;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 1024px) {
  .header__nav-list {
    gap: 32px;
  }
  .header__actions {
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .header {
    top: 0;
  }
  .header__inner {
    max-width: 560px;
  }
  .header__logo {
    width: 50%;
  }
  .header__logo-link {
    max-width: 160px;
  }
  .header__menu-open {
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }
  .header__menu-close {
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 20;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }
  .header__menu-icon {
    display: block;
    width: 48px;
    height: 48px;
  }
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .header__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav-area {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 15;
    width: 280px;
    min-height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 112px 40px 74px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 10px;
    font-size: 1.5rem;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(16px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }
  .header__nav-area.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .header__nav {
    width: 100%;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .header__nav-link {
    font-size: 1.5rem;
  }
  .header__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 42px;
  }
  .header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 144px;
    height: 36px;
    padding: 0 24px;
    border-radius: 3px;
    font-size: 1.5rem;
    color: #fff;
    background-color: #1c1c1c;
  }
  .header__login {
    display: none;
  }
}

/* =============================================================


contact-layout


*  ============================================================= */

.contact-layout {
  margin-top: 80px;
}

.contact-layout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 80px;
  border-radius: 10px;
  background-color: #f4f4f4;
  box-sizing: border-box;
}

.contact-layout__txt {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.24em;
}

.contact-layout__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 240px;
  height: 56px;
  border-radius: 5px;
  background-color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  color: #fff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.contact-layout__btn img {
  width: 20px;
  height: auto;
}

.contact-layout__btn:hover {
  opacity: 0.7;
}

@media (max-width: 960px) {
  .contact-layout__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 560px;
    padding: 48px 28px;
  }

  .contact-layout__txt {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }

  .contact-layout__btn {
    width: 100%;
  }
}

/* =============================================================


footer


*  ============================================================= */

.footer {
  margin-top: 80px;
  padding-top: 100px;
  padding-bottom: 40px;
  background-color: #f4f4f4;
}

.footer__inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__logo {
  width: 230px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__main {
  position: relative;
  margin-top: 72px;
}

.footer__nav {
  display: grid;
  grid-template-columns: 28% 28% 1fr;
  column-gap: 64px;
}

.footer__group-title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.footer__group-title span {
  font-size: 1.4rem;
}

.footer__group-title small {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer__list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.footer__list a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #000;
  transition: opacity 0.3s ease;
}

.footer__list a:hover {
  opacity: 0.55;
}

.footer__join {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #000;
  transition: opacity 0.3s ease;
}

.footer__join img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer__join:hover {
  opacity: 0.55;
}

.footer__join:hover img {
  transform: translateX(6px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 76px;
  padding-top: 40px;
  border-top: 1px solid #a2a2a2;
}

.footer__bottom-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.footer__bottom-list a {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #000;
  transition: opacity 0.3s ease;
}

.footer__bottom-list a:hover {
  opacity: 0.55;
}

.footer__copy {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .footer {
    padding-top: 72px;
    padding-bottom: 32px;
  }

  .footer__inner {
    max-width: 560px;
  }

  .footer__logo {
    width: 200px;
  }

  .footer__main {
    margin-top: 56px;
  }

  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .footer__group-title {
    gap: 18px;
  }

  .footer__list {
    gap: 18px;
    margin-top: 48px;
  }

  .footer__list a {
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #000;
    transition: opacity 0.3s ease;
  }

  .footer__join {
    position: static;
    margin-top: 56px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-top: 56px;
    padding-top: 48px;
  }

  .footer__bottom-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
    width: 100%;
  }

  .footer__bottom-list a {
    line-height: 1.7;
  }

  .footer__copy {
    margin-top: 40px;
    font-size: 1.3rem;
  }
}

/* =============================================================


only


*  ============================================================= */

.pc-only {
  display: block;
}

br.pc-only,
a.pc-only,
span.pc-only {
  display: inline;
}

.sp-only,
br.sp-only,
a.sp-only,
span.sp-only {
  display: none;
}

@media (max-width: 960px) {
  .pc-only,
  br.pc-only,
  a.pc-only,
  span.pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  br.sp-only,
  a.sp-only,
  span.sp-only {
    display: inline;
  }
}
