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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

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

html {
  font-size: 62.5%;
}

/* ---------- Base ---------- */
body {
  background: #080d1a;
  color: #eceef4;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

.sp-br {
  display: block;
}
@media screen and (min-width: 640px) {
  .sp-br {
    display: none;
  }
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 640px) {
  .wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2.4rem;
  }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 13, 26, 0.82);
  backdrop-filter: blur(1.2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.4rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo__mark {
  height: 4.2rem;
  width: auto;
  display: block;
}

.footer .logo__mark {
  height: 5.2rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo__en {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: #e6cd90;
  font-weight: 700;
}

.logo__jp {
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #6f7a92;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.gnav a {
  color: #a7b0c3;
  white-space: nowrap;
  transition: color 0.25s;
}

.gnav a:hover {
  color: #e6cd90;
}

.gnav .btn--nav {
  color: #080d1a;
}

.gnav .btn--nav:hover {
  color: #080d1a;
}

@media screen and (max-width: calc(821px - 1px)) {
  .gnav {
    display: none;
  }
}

/* ---------- Side Contact (右端追従バー) ---------- */
.side-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.side-contact__item {
  display: block;
  padding: 1.8rem 0.7rem;
  border-radius: 0.8rem 0 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(105deg, #b18a3e 0%, #e6cd90 50%, #c9a55c 100%);
  color: #080d1a;
  box-shadow: -0.2rem 0.4rem 1.6rem rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.side-contact__item:hover {
  transform: translateX(-0.4rem);
  box-shadow: -0.4rem 0.6rem 2rem rgba(0, 0, 0, 0.45);
}

.side-contact__item--media {
  background: rgba(11, 18, 36, 0.92);
  color: #e6cd90;
  border: 1px solid rgba(201, 165, 92, 0.22);
  border-right: none;
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
}

.side-contact__item--media:hover {
  border-color: #c9a55c;
}

@media screen and (max-width: calc(821px - 1px)) {
  .side-contact {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 4rem;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1px solid #c9a55c;
  color: #e6cd90;
  transition: all 0.3s;
  position: relative;
}

.btn--fill {
  background: linear-gradient(105deg, #b18a3e 0%, #e6cd90 50%, #c9a55c 100%);
  color: #080d1a;
  border: none;
}

.btn--fill:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn--ghost:hover {
  background: rgba(201, 165, 92, 0.12);
}

.btn--nav {
  padding: 1rem 2.2rem;
  font-size: 1.2rem;
}

.btn__arrow {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 0;
}
@media screen and (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.section--alt {
  background: #0b1224;
}

.sec-head {
  margin-bottom: 3rem;
}
@media screen and (min-width: 640px) {
  .sec-head {
    margin-bottom: 5.6rem;
  }
}

.sec-head--center {
  text-align: center;
}

.sec-head--center .sec-head__kicker {
  justify-content: center;
}

.sec-head--center .sec-head__kicker::before {
  display: none;
}

.sec-head__kicker {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  color: #c9a55c;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.sec-head__kicker::before {
  content: "";
  width: 3.4rem;
  height: 1px;
  background: #c9a55c;
}

.sec-head h2 {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (min-width: 640px) {
  .sec-head h2 {
    font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(2.4rem, 3.2vw, 3.6rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
}

.sec-head p {
  color: #a7b0c3;
  margin-top: 0rem;
  max-width: 72rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 640px) {
  .sec-head p {
    color: #a7b0c3;
    margin-top: 1.6rem;
    max-width: 72rem;
    font-size: 1.5rem;
  }
}

.sec-head--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 2.2rem;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: calc(821px - 1px)) {
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: calc(821px - 1px)) {
  .grid--3,
  .grid--2,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #0e1830;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.6rem 3rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(201, 165, 92, 0.22);
  transform: translateY(-4px);
}

.card__num {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.3rem;
  color: #c9a55c;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
}

.card__icon {
  font-size: 2.6rem;
  margin-bottom: 1.8rem;
  color: #e6cd90;
}

.card h3 {
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.card p {
  font-size: 1.35rem;
  color: #a7b0c3;
  flex: 1;
}

.card__stat {
  margin-top: 0rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  color: #6f7a92;
}
@media screen and (min-width: 640px) {
  .card__stat {
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.2rem;
    color: #6f7a92;
  }
}

.card__stat b {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 2.4rem;
  color: #e6cd90;
  font-weight: 700;
  margin-right: 0.8rem;
}

.card__link {
  margin-top: 2rem;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: #c9a55c;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
}

a.card {
  cursor: pointer;
}

.card--soon {
  opacity: 0.75;
}

.badge {
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  padding: 3px 1.2rem;
  border: 1px solid #c9a55c;
  color: #e6cd90;
  margin-bottom: 1.6rem;
  align-self: flex-start;
}

/* ---------- Flow / steps ---------- */
.flow {
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(201, 165, 92, 0.22);
}

.flow__item {
  display: grid;
  grid-template-columns: 11rem 26rem 1fr;
  gap: 2.8rem;
  padding: 3.4rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}

.flow__item::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 3rem;
  color: #c9a55c;
  font-weight: 700;
}

.flow__item h3 {
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.flow__item p {
  font-size: 1.4rem;
  color: #a7b0c3;
}

@media screen and (max-width: calc(821px - 1px)) {
  .flow__item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 2.6rem 4px;
  }
}
/* ---------- CTA band ---------- */
.cta {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70rem 32rem at 50% 120%, rgba(177, 138, 62, 0.16), transparent 65%), #0b1224;
  border-top: 1px solid rgba(201, 165, 92, 0.22);
}
@media screen and (min-width: 640px) {
  .cta {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70rem 32rem at 50% 120%, rgba(177, 138, 62, 0.16), transparent 65%), #0b1224;
    border-top: 1px solid rgba(201, 165, 92, 0.22);
  }
}

.cta h2 {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  letter-spacing: 0.08em;
}

.cta p {
  color: #a7b0c3;
  font-size: 1.45rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 640px) {
  .cta p {
    color: #a7b0c3;
    font-size: 1.45rem;
    margin-bottom: 3.6rem;
  }
}

.cta .btn {
  min-width: 100%;
}
@media screen and (min-width: 640px) {
  .cta .btn {
    min-width: 28rem;
  }
}

/* ---------- CTA note ---------- */
.cta__note {
  font-size: 1.2rem;
  color: #6f7a92;
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.06em;
}

/* ---------- Column cards (pcard) ---------- */
.pcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

@media screen and (max-width: calc(821px - 1px)) {
  .pcards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: calc(821px - 1px)) {
  .pcards {
    grid-template-columns: 1fr;
  }
}
.pcard {
  background: #0e1830;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.pcard:hover {
  border-color: rgba(201, 165, 92, 0.22);
  transform: translateY(-4px);
}

.pcard__thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 70% 90% at 80% 0%, rgba(201, 165, 92, 0.14), transparent 60%), linear-gradient(145deg, #1b2c52, #0b1224 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pcard__thumb::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(201, 165, 92, 0.25);
  pointer-events: none;
}

.pcard__thumb span {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: rgba(230, 205, 144, 0.75);
  text-transform: uppercase;
}

.pcard__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcard__body {
  padding: 2rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
}

.pcard__cat {
  align-self: flex-start;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  border: 1px solid rgba(201, 165, 92, 0.22);
  color: #e6cd90;
  padding: 2px 1rem;
}

.pcard h3 {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.7;
  flex: 1;
}

.pcard__ex {
  font-size: 1.25rem;
  color: #6f7a92;
}

.pcard time {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.15rem;
  color: #6f7a92;
  letter-spacing: 0.12em;
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1224;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7rem 0 3.4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3.6rem;
  margin-bottom: 5rem;
}

@media screen and (max-width: calc(821px - 1px)) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: calc(821px - 1px)) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand p {
  font-size: 1.25rem;
  color: #6f7a92;
  margin-top: 1.4rem;
  line-height: 1.9;
}

.footer h4 {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  color: #c9a55c;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.footer li {
  margin-bottom: 1rem;
}

.footer li a {
  font-size: 1.3rem;
  color: #a7b0c3;
}

.footer li a:hover {
  color: #e6cd90;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.6rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  color: #6f7a92;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Utility ---------- */
.mt-40 {
  margin-top: 4rem;
}

.mt-70 {
  margin-top: 7rem;
}

.center {
  text-align: center;
}

.gold {
  color: #e6cd90;
}

.reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Hamburger / SP nav（WP追加分） ---------- */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.5rem;
}
.header-hamburger span {
  width: 2.6rem;
  height: 2px;
  background: #e6cd90;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-hamburger.is-open span:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.header-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
@media screen and (max-width: calc(1000px - 1px)) {
  .header-hamburger {
    display: flex;
  }
}

.sp-nav {
  position: fixed;
  inset: 7.2rem 0 0 0;
  z-index: 99;
  background: rgba(8, 13, 26, 0.97);
  backdrop-filter: blur(1.2rem);
  padding: 2.4rem 2rem calc(2.4rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.sp-nav.is-open {
  transform: translateX(0);
}
.sp-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.2rem;
}
.sp-nav__list a {
  display: flex;
  align-items: center;
  padding: 1.3rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #a7b0c3;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.sp-nav__list a:hover {
  color: #e6cd90;
}
.sp-nav .sp-nav-cta {
  margin-top: auto;
  padding-top: 2.4rem;
  text-align: center;
}

/* SP下部の追従お問い合わせバー(821px未満で表示。デスクトップは .side-contact) */
.sp-contact-bar {
  display: none;
}
.sp-contact-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}
.sp-contact-bar__sub {
  background: rgba(11, 18, 36, 0.96);
  color: #e6cd90;
}
.sp-contact-bar__sub + .sp-contact-bar__sub {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.sp-contact-bar__sub small {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #6f7a92;
}
.sp-contact-bar__main {
  background: linear-gradient(105deg, #b18a3e 0%, #e6cd90 50%, #c9a55c 100%);
  color: #080d1a;
}
@media screen and (max-width: calc(821px - 1px)) {
  .sp-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -0.4rem 1.6rem rgba(0, 0, 0, 0.35);
  }
  body.has-sp-contact-bar {
    padding-bottom: 6.4rem;
  }
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 6.4rem;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 1.4rem;
  color: #a7b0c3;
  transition: all 0.25s ease;
}
.pagination .page-numbers:hover {
  border-color: rgba(201, 165, 92, 0.22);
  color: #e6cd90;
}
.pagination .page-numbers.current {
  background: linear-gradient(105deg, #b18a3e 0%, #e6cd90 50%, #c9a55c 100%);
  color: #080d1a;
  border-color: transparent;
  font-weight: 700;
}
.pagination .page-numbers.dots {
  border: none;
}

/* ---------- SP追従CTAバー ---------- */
.sp-cta {
  display: none;
}

@media screen and (max-width: calc(821px - 1px)) {
  .sp-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    display: flex;
    gap: 1px;
    background: #080d1a;
    border-top: 1px solid rgba(201, 165, 92, 0.22);
    box-shadow: 0 -0.8rem 3rem rgba(0, 0, 0, 0.5);
  }
  .sp-cta a {
    flex: 1;
    text-align: center;
    padding: 1.5rem 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .sp-cta a.fill {
    background: linear-gradient(105deg, #b18a3e 0%, #e6cd90 50%, #c9a55c 100%);
    color: #080d1a;
  }
  .sp-cta a.ghost {
    color: #e6cd90;
  }
  body {
    padding-bottom: 5rem;
  }
  .footer {
    padding-bottom: 8.4rem;
  }
}/*# sourceMappingURL=common.css.map */