/* ============================================
   FV
============================================ */
.fv {
    position: relative;
    height: 85vh;
    min-height: 30rem;
    display: flex;
    align-items: flex-end;
    padding-bottom: 1rem;
    overflow: hidden;
}
.fv::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    linear-gradient(180deg, rgba(10,10,10,.1) 0%, rgba(10,10,10,.2) 40%, rgba(10,10,10,.5) 75%, rgba(10,10,10,.8) 100%);
    z-index: 1;
}
.fv-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    overflow: hidden;
}
.fv-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}
.fv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fv .wrap {
    width: min(80rem, 90vw);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}
.fv-content {
  /*max-width: 43.75rem;*/
}
.fv-lead {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.fv h2 {
    font-family: var(--font-heading-jp);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}
.fv h2 em {
    color: #b08d57;
    background: #fff;
    padding: .3rem 1.5rem;
}
.fv-sub {
    font-family: var(--font-heading-jp);
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}
.fv-price {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #b08d57;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}
.fv-price-box {
    margin-bottom: .5rem;
}
.fv-price-box .label {
    font-size: 1.125rem;
    color: #fff;
    margin-right: .5rem;
}
.fv-price-box .num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    color: #b08d57;
    line-height: 1;
}
.fv-price-box .unit {
    font-size: .875rem;
    color: #fff;
}

.fv-price-note {
    font-size: .875rem;
    color: #fff;
}



/* ============================================
   CAMPAIGN
============================================ */
.campaign {
    padding: 5rem 3rem;
    position: relative;
}

.campaign-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
/*.campaign-head::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}
.campaign-head__en {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: .3em;
    color: var(--gold);
    text-transform: uppercase;
}*/
.campaign-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.campaign-card {
    background: var(--dark-card, #141414);
    border: 1px solid var(--dark-border, #2a2a2a);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.campaign-card::after {
    content: '';
    position: absolute;
    top: 0rem;
    right: 50%;
    transform: translateX(50%);
    width: 30rem;
    height: 7rem;
    background: url(../img/bk_logo.webp) no-repeat center / contain;
    opacity: 0.7;
    pointer-events: none;
}

.campaign-ribbon {
    position: absolute;
    top: 1rem;
    right: -2.25rem;
    background: var(--red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    z-index: 2;
}
.campaign-card__header {
    text-align: center;
    line-height: 1.5;
    padding: 3rem 2rem 0;
}
.campaign-tag {
    font-size: .875rem;
    color: #fff;
    text-transform: uppercase;
}
.campaign-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: #b08d57;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}
.campaign-card__body {
    padding: 1.5rem 3rem 1rem;
    flex: 1;
}
.campaign-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    /*display: flex;
    gap: 2.5rem;*/
}
.campaign-item {
    text-align: center;
}
.campaign-item__label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}
.campaign-item__original {
    font-size: 1rem;
    color: #fff;
    text-decoration: line-through;
}
.campaign-item__price {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    color: #b08d57;
    line-height: 1;
}
.campaign-item__price span {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: #fff;
}
.campaign-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 0;
}
.campaign-discount__num {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--red);
    line-height: 1;
}
.campaign-discount__num span {
    font-size: 2rem;
}
.campaign-discount__num span.campaign-discount__all {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #888;
    margin-right: .5rem;
}
.campaign-discount__sub {
    font-size: 1rem;
    color: #fff;
}
.campaign-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .875rem;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: auto;
}
.campaign-cta::after {
    content: '';
    width: .5rem;
    height: .5rem;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
}
.campaign-cta::before {
    display: none;
}






/* ============================================
   CONCEPT
============================================ */
.concept {
    background: #0a0a0a;
    padding: 5rem 0;
    position: relative;
}
.concept-intro {
    margin-bottom: 2rem;
}
.concept-intro h2 {
    color: #fff;
    font-family: var(--font-heading-jp);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.concept-intro p {
    font-size: 1rem;
    color: #fff;
    line-height: 2;
}
.concept-card {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.4s;
}
.concept-card:hover {
    border-color: rgba(176, 141, 87, 0.3);
}
.concept-card__img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8e6e2, #d8d5d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #bbb;
    overflow: hidden;
}
.concept-card__body {
    padding: 2rem 1.75rem 2.25rem;
}
.concept-card .num {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 600;
    color: #c41e3a;
    line-height: 1;
}
.concept-card h3 {
    font-family: var(--font-heading-jp);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}
.concept-card p {
    font-size: .875rem;
    line-height: 1.9;
}

/* Scroll infinity loop */
.scroll-infinity {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}
.scroll-infinity-wrap {
    display: flex;
    width: max-content;
    animation: scrollLoop 20s linear infinite;
}
.scroll-infinity-wrap img {
    height: 5rem;
    width: auto;
    display: block;
    padding: 0 3rem;
    user-select: none;
    pointer-events: none;
}

@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}



/* ============================================
   TRAINERS
============================================ */
.trainers {
    padding: 5rem 0;
}
.trainers-header {
    margin-bottom: 2rem;
}
.trainers-header h2 {
    font-family: var(--font-heading-jp);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.trainers-header p {
    font-size: 1rem;
    line-height: 2;
}
.trainers-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-bottom: 2rem;
}
.trainer-grid-sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.125rem;
}
.trainer-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-card);
    transition: box-shadow 0.4s;
}
.trainer-card:hover {
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.4);
}
.trainer-card:hover .img-placeholder img {
    transform: scale(1.03);
}
.trainer-card .img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--gray-dark);
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--black-card), var(--gray-dark));
}
.trainer-card .img-placeholder img {
    opacity: 1;
    transition: transform 0.6s ease;
}
.trainer-card .name-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.75rem 1.75rem 1rem;
    background: linear-gradient(0deg,
        rgba(10,10,10,0.97) 0%,
        rgba(10,10,10,0.85) 40%,
        rgba(10,10,10,0.4) 70%,
        rgba(10,10,10,0) 100%
    );
}
.trainer-card .name-bar .role {
    font-family: var(--font-heading);
    font-size: .875rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: .25rem;
}
.trainer-card .name-bar .name {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 400;
    color: #b08d57;
    line-height: 1;
    letter-spacing: 0.08em;
    text-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.5);
}

/* Trainer Modal */
.trainer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    backdrop-filter: blur(0.25rem);
}
.trainer-modal-overlay.is-active {
    display: flex;
}
.trainer-modal {
    background: var(--white-pure);
    color: #1a1a1a;
    max-width: 1020px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 1rem;
}
.trainer-modal__close {
    position: sticky;
    top: 1.25rem;
    float: right;
    margin-right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #666;
    z-index: 10;
    transition: all 0.3s;
}
.trainer-modal__close:hover {
    border-color: #333;
    color: #333;
}
.trainer-modal__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 3rem 0 0 3rem;
}
.trainer-modal__photo {
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #e8e6e2, #d8d5d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #bbb;
    overflow: hidden;
}
.trainer-modal__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trainer-modal__info {
    /*padding: 3rem 0;*/
}

.trainer-modal__ttl {
    font-size: .875rem;
}
.trainer-modal__name-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: .5rem;
}
.trainer-modal__name {
    font-family: var(--font-display);
    font-size: 3.8rem;
    color: #b08d57;
    letter-spacing: 0.05em;
    line-height: 1;
}
.trainer-modal__name-jp {
    font-size: .875rem;
    margin-top: -.5rem;
    margin-bottom: .8rem;
}
.trainer-modal__size {
    font-weight: 400;
    margin-left: 1rem;
}
.trainer-modal__badge {
    display: inline-block;
    font-family: var(--font-heading-jp);
    font-size: .875rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    background: #1a1a1a;
    color: #fff;
    margin-bottom: .5rem;
}
.trainer-modal__list {
    list-style: disc;
    padding-left: 1.25rem;
    font-size: .875rem;
    color: #444;
    line-height: 2;
    margin-bottom: 1.5rem;
}
.trainer-modal__message {
    padding: 0 3rem 3rem;
}
.trainer-modal__message-title {
    font-family: var(--font-heading-jp);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: .25rem;
    padding-bottom: .2rem;
    border-bottom: 1px solid #eee;
}
.trainer-modal__message p {
    font-size: .875rem;
    margin-top: 1rem;
}
.trainer-modal__message strong {
    font-weight: 700;
    color: #b08d57;
    /*text-decoration: underline;
    text-decoration-color: rgba(196, 30, 58, 0.3);
    text-underline-offset: 0.1875rem;*/
}
.trainer-modal__message mark {
    font-weight: 600;
    background: linear-gradient(transparent 60%, #fff44f 60%);
    padding: 0 0.125rem;
}
.trainer-modal__tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.trainer-modal__tag {
    font-size: .75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border: 1px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .trainer-modal-overlay { padding: 0.5rem; }
    .trainer-modal { max-height: 95vh; max-width: calc(100vw - 1rem); }
    .trainer-modal__top { grid-template-columns: 1fr; }
    .trainer-modal__photo { aspect-ratio: 3/4; max-height: 50vh; }
    .trainer-modal__info { padding: 1.5rem 1.25rem; }
    .trainer-modal__message { padding: 1.5rem 1.25rem; }
    .trainer-modal__close { top: 0.75rem; right: 0.75rem; }
}











































.concept-philosophy {
  max-width: 42.5rem;
  margin-bottom: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.concept-philosophy p {
  font-family: var(--font-heading-jp);
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 400;
  color: var(--white);
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.concept-philosophy em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}









/* ============================================
   CTA
============================================ */
.cta-section {
    position: relative;
    background: #141414;
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(20rem, 50vw, 40rem);
    height: clamp(20rem, 50vw, 40rem);
    background: url('../img/bk_logo.webp') no-repeat center / contain;
    opacity: 0.6;
    pointer-events: none;
}
.cta-section__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-section__label {
    font-family: var(--font-heading);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .3em;
    color: #fff;
    text-transform: uppercase;
}
.cta-section__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.cta-section__price {
    display: inline-flex;
    align-items: baseline;
    gap: .25rem;
    margin-bottom: 1rem;
}
.cta-section__price .num {
    font-family: var(--font-display);
    font-size: 5rem;
    color: #b08d57;
    line-height: 1;
}
.cta-section__price .unit {
    font-size: 1.125rem;
    color: #fff;
}
.cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3.5rem;
    background: #b08d57;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-section__btn::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.cta-section__note {
    font-size: .875rem;
    color: #fff;
    margin-top: 1rem;
}














/* ============================================
   PRICE
============================================ */
.price-section {
    padding: 5rem 0;
    background: #f5f5f3;
}
.price-section .sec-desc {
    margin-bottom: 3rem;
}

/* 2-column card row */
.price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Individual card */
.price-card {
    overflow: hidden;
}

/* Card header — colored banner */
.price-card__header {
    padding: 1rem 2rem;
    text-align: center;
    line-height: 1.5;
}
.price-card__header h3 {
    font-family: var(--font-heading-jp);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.price-card__header span {
    font-family: var(--font-heading);
    font-size: .875rem;
    letter-spacing: .2em;
    color: #fff;
}
.price-card__header--red { background: var(--red); }
.price-card__header--gold { background: var(--gold); }

/* Card body */
.price-card__body {
    background: #fff;
    padding: 1.75rem 2rem 2.25rem;
    color: #1a1a1a;
}

/* Tag: 月額定額制 / チケット制 */
.price-card__tag {
    display: inline-block;
    font-size: .875rem;
    font-weight: 500;
    padding: .375rem 1.5rem;
    background: rgba(176, 141, 87, 0.04);
    color:#b08d57;
    border: 1px solid #b08d57;
    border-radius: 6.25rem;
    text-align: center;
    margin: 0 auto 1rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.price-card__note {
    font-size: 0.8125rem;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Price table */
.price-card__table {
    width: 100%;
    border-collapse: collapse;
}
.price-card__table tr {
    vertical-align: middle;
    border-top: 1px solid #ddd;
}
.price-card__table tr:last-child {
    border-bottom: 1px solid #ddd;
}
.price-card__table th {
    text-align: left;
    font-size: 1.1rem;
    padding: 1rem .5rem .5rem 2rem;
}
.price-card__table td {
    padding: 1rem 2rem .5rem .5rem;
    vertical-align: middle;
    font-size: .875rem;
    color: #1a1a1a;
}
.price-card__table td:first-child {
    width: 40%;
}
.price-card__val {
    text-align: right;
}
.price-card__num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: .02em;
}
.price-card__num--campaign {
    color: #c41e3a;
}
.price-card__table small {
    font-size: .75rem;
    color: #1a1a1a;
}

/* Duration badge */
.price-card__duration {
    display: inline-block;
    font-size: .875rem;
    padding: .125rem .625rem;
    background: #b08d57;
    color: #fff;
    margin-top: .25rem;
}

/* Original price strikethrough */
.price-card__original {
    font-size: .875rem;
    color: #1a1a1a;
    display: block;
}
.price-card__original s {
    text-decoration: line-through;
}

.price-card__per {
    font-size: .75rem;
}


/* Save badge */
.price-card__save {
    display: inline-block;
    font-size: .875rem;
    font-weight: 500;
    padding: 0.1875rem 0.625rem;
    border: 1px solid #c41e3a;
    color: #c41e3a;
    margin-top: 0.375rem;
}

/* Other prices */
.price-other {
  margin-top: 3.5rem;
}
.price-other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.price-other-item {
  padding: 1.75rem 2rem;
  background: var(--white-pure);
  border: 1px solid #ddd;
}
.price-other-title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ddd;
}
.price-other-table {
  width: 100%;
  border-collapse: collapse;
}
.price-other-table tr {
  border-bottom: 1px solid #eee;
}
.price-other-table td {
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.price-other-val {
  text-align: right;
  white-space: nowrap;
}
.price-other-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.price-other-note {
  font-size: 0.6875rem;
  color: #888;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.price-credit {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
}
.price-credit .cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.price-credit .cards span {
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--gray-dark);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

/* ============================================
   INTERIOR
============================================ */
.interior {
    padding: 5rem 0;
    background: #0a0a0a;
}
.interior-header {
    color: #fff;
    margin-bottom: 2rem;
}
.interior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.interior-card {
    background: #1a1a1a;
    overflow: hidden;
}
.interior-card__img {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}
.interior-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
}
.interior-card__body h3 {
    font-family: var(--font-heading-jp);
    font-size: 1.25rem;
    font-weight: 700;
    color: #b08d57;
    margin-bottom: .5rem;
}
.interior-card__body p {
    font-size: .875rem;
    color: #fff;
    line-height: 1.7;
}
.interior-card--wide {
    grid-column: span 2;
}
.interior-card--wide .interior-card__img {
    aspect-ratio: 8/3;
}


/* Philosophy — フルスクリーン画像背景 */
.philosophy {
    position: relative;
    padding: clamp(7.5rem, 18vw, 15rem) 1.25rem;
    text-align: center;
    overflow: hidden;
}
.philosophy__bg {
    position: absolute;
    inset: 0;
    background: url('../img/bk_philosophy.jpg') center / cover no-repeat;
}
.philosophy__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.88) 100%);
}
.philosophy__content {
    position: relative; z-index: 1;
}
.philosophy__line {
    font-family: var(--font-heading-jp);
    font-size: 1.875rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.12em;
    margin-bottom: 2.25rem;
    opacity: 0;
    transform: translateX(-3.75rem);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.philosophy__line:last-of-type { margin-bottom: 0; }
.philosophy__line strong { font-weight: 700; }
.philosophy__line em {
    font-style: normal;
    color: #c9a96e;
    font-weight: 700;
}
.philosophy__deco {
    display: block;
    width: 2.5rem;
    height: 1px;
    background: #b08d57;
    margin: 2rem auto 0;
    opacity: 0;
    transform: translateX(-3.75rem);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Visible state */
.philosophy.is-visible .philosophy__line,
.philosophy.is-visible .philosophy__deco {
    opacity: 1;
    transform: translateX(0);
}
.philosophy.is-visible .philosophy__line:nth-of-type(1) { transition-delay: 0.2s; }
.philosophy.is-visible .philosophy__line:nth-of-type(2) { transition-delay: 0.55s; }
.philosophy.is-visible .philosophy__line:nth-of-type(3) { transition-delay: 0.9s; }
.philosophy.is-visible .philosophy__deco { transition-delay: 1.3s; }
.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

































/*.interior-statement {
  margin-top: 5rem;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  text-align: center;
  position: relative;
}
.interior-statement::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2.5rem; height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.interior-statement h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2.2;
  color: var(--dark-text);
}
.interior-statement h3 em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 700;
}*/



/* ============================================
   SERVICES
============================================ */
.services {
    padding: 5rem 0;
}
.service-header {
    margin-bottom: 2rem;
}

/* Services Hero — 圧倒的な × 医療機関 */
.services-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem 0 2.5rem;
}
.services-hero__block {
    text-align: center;
}
.services-hero__chars {
    display: flex;
    gap: 0.25rem;
}
.services-hero__chars span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    font-family: var(--font-heading-jp);
    font-size: 3.25rem;
    font-weight: 900;
    border: 2px solid currentColor;
    background: #fff;
}
.services-hero__chars--red span {
    color: #c41e3a;
    border-color: #c41e3a;
}
.services-hero__chars--gold span {
    color: #b08d57;
    border-color: #b08d57;
}
.services-hero__cross {
    font-family: var(--font-display);
    font-size: 4rem;
    color: #666;
    line-height: 1;
    margin-bottom: 1.75rem;
}
.services-hero__sub {
    font-family: var(--font-heading-jp);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.06em;
}
.services-hero__desc {
    text-align: center;
    margin-bottom: 4.5rem;
}
.services-hero__desc p {
    font-size: .875rem;
}
.services-hero__desc h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
}
.service-card {
    background: #fff;
    overflow: hidden;
    transition: background 0.4s;
    border-radius: 1rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.service-card .service-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--black-card), var(--gray-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray-dark);
    position: relative;
}
.service-card .service-img .badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b08d57;
    background: rgb(255,255,255,0.9);
    padding: 0.25rem 0.625rem;
    border: 1px solid #b08d57;
}
.service-card .service-body {
    padding: 2rem 1.75rem;
}
.service-card .service-body .en {
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b08d57;
}
.service-card .service-body h4 {
    font-family: var(--font-heading-jp);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.service-card .service-body p {
    font-size: .875rem;
    line-height: 1.8;
}











/* ============================================
   POINTS（選ばれる理由）
============================================ */
.points {
    padding: 5rem 0;
    background: #0a0a0a;
}
.point-header {
    color: #fff;
    margin-bottom: 2rem;
}

.points-icons {
    max-width: 820px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0 auto 4.5rem;
}
.points-icon {
    text-align: center;
    
}
.points-icon__circle {
    margin: 0 auto 0.75rem;
    background: #fff;
    border: 2px solid #c41e3a;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}
.points-icon__label {
  font-family: var(--font-heading-jp);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.3;
}
.points-icon__emoji {
  font-size: 1.75rem;
}
.points-icon p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Point blocks — zigzag */
.point-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
    overflow: hidden;
}
.point-block--reverse {
    grid-template-columns: 1.2fr 1fr;
}
.point-block--reverse .point-block__content {
    order: -1;
}

.point-block__img {
    aspect-ratio: 4/3;
    /*background: linear-gradient(135deg, #e8e6e2, #d8d5d0);
    display: flex;
    align-items: center;
    justify-content: center;*/
}
.point-block__img img {
    border-radius: 1rem;
}
.point-block__content {
    /*padding: 2.5rem 3rem;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.point-block__num {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: .15em;
    color: #fff;
    margin-bottom: .75rem;
}
.point-block__num span {
    font-family: var(--font-display);
    font-size: 3.8rem;
    color: #c41e3a;
    margin-left: .5rem;
    vertical-align: middle;
    line-height: 1;
}

.point-block__content h3 {
    font-family: var(--font-heading-jp);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}
.point-block__content h3 em {
    font-style: normal;
    color: #b08d57;
}
.point-block__content p {
    font-size: .875rem;
    color: #fff;
    line-height: 2;
}



/* ============================================
   ACCESS
============================================ */
.access {
    padding: 5rem 0;
}
.access-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.access-info dl {
    margin-top: 2rem;
}
.access-info dt {
    font-family: var(--font-heading);
    font-size: .875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b08d57;
    margin-bottom: .25rem;
    margin-top: 1rem;
}
.access-info dt:first-child { margin-top: 0; }
.access-info dd {
    font-size: .875rem;
    line-height: 1.8;
}
.access-info dd a {
    color: #1a1a1a;
    text-decoration: none;
    transition: border-color 0.3s;
}
.access-map iframe {
    filter: grayscale(100%);
    width: 100%;
    min-height: 460px;
}








/* ============================================
   NEWS
============================================ */
.news {
    padding: 5rem 0;
    background: #f5f5f3;
}
.news-list {
  margin-top: 3rem;
  list-style: none;
}
.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}
.news-item .date {
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-right: .5rem;
}
.news-item .cat {
    font-size: .75rem;
    padding: 0.125rem 0.625rem;
    border: 1px solid #b08d57;
    color: #b08d57;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: flex-start;
}
.news-item .title {
    font-size: .875rem;
    color: #1a1a1a;
    flex: 1;
}

.news-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
.news-item a:hover {
    color: var(--gold);
}

.news-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}
.news-btns a {
    padding: 0.75rem 2rem;
    border: 1px solid #ddd;
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s;
}
.news-btns a:hover {
    border-color: #c41e3a;
    color: #c41e3a;
}









/* ============================================
   NEWS ARCHIVE（投稿一覧 — カード型）
============================================ */
.news-archive {
    background: #f5f5f3;
}
.news-archive__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.news-archive__card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-archive__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.news-archive__card a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.news-archive__thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e0ddd6;
}
.news-archive__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-archive__card:hover .news-archive__thumb img {
    transform: scale(1.06);
}
.news-archive__thumb--noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
}
.news-archive__thumb--noimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-archive__body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.news-archive__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}
.news-archive__date {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #aaa;
}
.news-archive__cat {
    font-size: 0.6rem;
    padding: 0.1rem 0.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.news-archive__title {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-archive__empty {
    text-align: center;
    padding: 4rem 0;
    color: #999;
    font-size: 0.9rem;
}

/* ページネーション */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
}
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s;
}
.nav-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.nav-links .current {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}
.nav-links .dots {
    border: none;
    background: none;
    color: #999;
}

/* ============================================
   SINGLE POST（個別投稿）
============================================ */
.single-post {
    background: #fff;
}
.single-post__header {
    max-width: 51.25rem;
    margin: 0 auto;
    padding: 3rem 2.5rem 0;
}
.single-post__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.single-post__date {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #aaa;
}
.single-post__cat {
    font-size: 0.65rem;
    padding: 0.15rem 0.625rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.single-post__title {
    font-family: var(--font-heading-jp);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}
.single-post__divider {
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
    margin-top: 2rem;
}
.single-post__body {
    max-width: 51.25rem;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
}
.single-post__body h2 {
    font-family: var(--font-heading-jp);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #ddd;
    letter-spacing: 0.02em;
}
.single-post__body h2:first-child {
    margin-top: 0;
}
.single-post__body h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 2rem 0 0.625rem;
}
.single-post__body p {
    font-size: 0.875rem;
    line-height: 2.1;
    color: #666;
    margin-bottom: 1.25rem;
}
.single-post__body ul {
    padding-left: 1.5em;
    margin-bottom: 1rem;
}
.single-post__body ul li {
    font-size: 0.875rem;
    line-height: 2;
    color: #666;
}
.single-post__body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    background: #f5f5f3;
    font-size: 0.875rem;
    line-height: 2;
    color: #666;
}
.single-post__body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* 前後記事ナビ */
.post-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    max-width: 51.25rem;
    margin: 0 auto;
    padding: 0 2.5rem;
    border-top: 1px solid #ddd;
}
.post-nav__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
    flex: 1;
    padding: 1.5rem 0;
    transition: color 0.3s;
}
.post-nav__item:hover {
    color: var(--gold);
}
.post-nav__label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}
.post-nav__title {
    font-size: 0.8125rem;
    line-height: 1.6;
}
.post-nav__next {
    text-align: right;
}

/* 一覧へ戻る */
.single-post__back {
    display: flex;
    justify-content: center;
    padding: 2rem 2.5rem 4rem;
}
.single-post__back a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem 2.5rem;
    border: 1px solid #ddd;
    transition: all 0.3s;
}
.single-post__back a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* SP */
@media (max-width: 768px) {
    .news-archive__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .single-post__header,
    .single-post__body,
    .single-post__back {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .post-nav {
        flex-direction: column;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .post-nav__next {
        text-align: left;
    }
    .single-post__title {
        font-size: 1.125rem;
    }
}


/* ============================================
   GREETING
============================================ */
.greeting {
    padding: 5rem 0;
}
.greeting-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}
.greeting-photo {
    /*aspect-ratio: 3/4;*/
}
.greeting-body .role {
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b08d57;
}
.greeting-body .greeting-name-box {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 2rem;
}

.greeting-body .name-jp {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .05em;
}
.greeting-body .name-en {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-left: 1rem;
}
.greeting-body .message {
    font-size: .875rem;
    line-height: 2;
    margin-bottom: 2.5rem;
}
.greeting-sign {
    display: flex;
    justify-content: flex-end;
}
.greeting-sign img {
    width: 45%;
}

.greeting-career {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-end;
}

.greeting-career {

}
.greeting-career h3 {
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b08d57;
    margin-bottom: 1.25rem;
}

.timeline {
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: .5rem;
    width: 1px;
    height: 100%;
    background: rgba(196, 30, 58, 0.3);
}
.timeline-item {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1.5rem;
    padding: 0 0 1rem 0;
    position: relative;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: .35rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    background: #c41e3a;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item__label {
    font-weight: 700;
    font-size: .875rem;
    padding-left: 2rem;
    line-height: 1.6;
}
.timeline-item__content {
    font-size: .875rem;
    line-height: 1.8;
}


/* Medical Partner */
.greeting-medical {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.greeting-medical h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.greeting-medical p {
  font-size: 0.8125rem;
  color: var(--gray-light);
  line-height: 1.8;
}





/* ============================================
   RESERVE PAGE
============================================ */
.reserve-wrap {
    margin: 0 auto;
    background: #141414;
}
.reserve-wrap .breadcrumb a,
.reserve-wrap .breadcrumb .current {
    color: #fff;
}
.reserve-intro {
    max-width: 1020px;
    margin: 0 auto;
    padding: 4rem 2.5rem 0;
    text-align: center;
    color: #fff;
}
.reserve-intro {
    margin-bottom: 3rem;
}
.reserve-methods {
    max-width: 1020px;
    margin: 0 auto 3rem;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.method-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s;
}
.method-card:hover {
    box-shadow: 0 8px 40px rgba(176,141,87,0.08);
    transform: translateY(-0.25rem);
}
.method-card__icon {
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}
.method-card__icon img {
    width: 20%;
}

.method-card h3 {
    font-family: var(--font-heading-jp);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .3rem;
}
.method-card p {
    font-size: .875rem;
    line-height: 1.8;
}
.method-card__btn {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 0.875rem 2.75rem;
    font-size: .875rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s;
    background: #c41e3a;
    color: #fff;
}
.method-card__btn--line {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 0.875rem 2.75rem;
    font-size: .875rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s;
    background: #06C755;
    color: #fff;
}
.reserve-form-section {
    max-width: 1020px;
    margin: 5rem auto 0;
    padding: 0 2.5rem 7.5rem;
}
.reserve-form-section h2 {
    font-family: var(--font-heading-jp);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    padding-bottom: .75rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.25rem;
}
.reserve-form-section .reserve-desc {
    color: #fff;
    font-size: .875rem;
    margin-bottom: 1.75rem;
    line-height: 1.8;
}
.reserve-steps {
    counter-reset: step;
    margin-bottom: 3rem;
}
.reserve-steps__item {
    color: #fff;
    padding: 1.125rem 0 1.125rem 3.5rem;
    position: relative;
    font-size: .875rem;
    line-height: 2;
    border-bottom: 1px solid #ddd;
}
.reserve-steps__item:last-child {
  border-bottom: none;
}
.reserve-steps__item::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 1.125rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    background: #c41e3a;
    color: #fff;
    border: 1px solid #c41e3a;
}
.reserve-steps__item strong {
    color: #b08d57;
    font-weight: 600;
}
.hacomono-sec {
    padding: 2rem 4rem;
    background: #fff;
    border-radius: 1rem;
}


/* ============================================
   Terms Of Service（利用規約）
============================================ */
.legal {padding: 5rem 0;}
.legal-intro {
    font-size: .875rem;
    line-height: 2;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}
.legal-accordion {
    border-top: 1px solid #ddd;
}
.legal-accordion__item {
    border-bottom: 1px solid #ddd;
}
.legal-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading-jp);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    transition: color 0.3s;
}
.legal-accordion__toggle:hover {
    color: var(--gold);
}
.legal-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-right: 0.75rem;
}
.legal-accordion__icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    margin-left: 1rem;
}
.legal-accordion__icon::before,
.legal-accordion__icon::after {
    content: '';
    position: absolute;
    background: #999;
    transition: transform 0.3s, opacity 0.3s;
}
.legal-accordion__icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
}
.legal-accordion__icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
}
.legal-accordion__item.is-open .legal-accordion__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.legal-accordion__body {
    display: none;
    padding: 0 0 1.5rem;
}
.legal-accordion__item.is-open .legal-accordion__body {
    display: block;
}
.legal-accordion__body p {
    font-size: .875rem;
    line-height: 2.1;
    margin-bottom: 0.75rem;
}
.legal-accordion__body ul {
    padding-left: 1.5em;
    margin-bottom: 0.75rem;
    list-style: disc;
}
.legal-accordion__body ul li {
    font-size: .875rem;
    line-height: 2;
}









/* ============================================
   Ghost Tatde
============================================ */
.ghost {
    padding: 5rem 0;
}
.ghost-header {
    margin-bottom: 5rem;
}
.ghost-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
    overflow: hidden;
}
.ghost-block__img {

}
.ghost-block__img img {
    border-radius: 1rem;
}
.ghost-block__content {
    /*padding: 2.5rem 3rem;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ghost-block__num {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: .15em;
    margin-bottom: .75rem;
}
.ghost-block__num span {
    font-family: var(--font-display);
    font-size: 3.8rem;
    color: #c41e3a;
    margin-left: .5rem;
    vertical-align: middle;
    line-height: 1;
}

.ghost-block__content h3 {
    font-family: var(--font-heading-jp);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}
.ghost-block__content h3 em {
    font-style: normal;
    color: #b08d57;
}
.ghost-block__content p {
    font-size: .875rem;
    line-height: 2;
}


.catalog__btn {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 0.875rem 2.75rem;
    font-size: .875rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s;
    background: #c41e3a;
    color: #fff;
}


























/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gray-dark);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--white);
  letter-spacing: 0.12em;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-sub {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-top: 1rem;
}
.footer-sub a {
  font-size: 0.6875rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-sub a:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* ============================================
   DESIGN NOTE
============================================ */
.design-note {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-size: 0.6875rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  z-index: 200;
  backdrop-filter: blur(0.625rem);
}

/* ============================================
   WHITE BASE OVERRIDES — Dark accent sections
============================================ */

/* FV: Always dark */
/*.fv {
  background: var(--dark-bg);
  color: var(--dark-text);
}*/
/*.fv::before {
    background:
    linear-gradient(180deg, rgba(10,10,10,.1) 0%, rgba(10,10,10,.2) 40%, rgba(10,10,10,.5) 75%, rgba(10,10,10,.8) 100%);
}



.fv-bg { background: var(--dark-bg); }
.fv h1 { color: var(--dark-text); }
.fv h1 em { color: var(--gold-light); }


.fv-price { border-color: rgba(201, 169, 110, 0.3); }
.fv-price .label { color: var(--dark-text-sub); }
.fv-price .num { color: var(--gold-light); }
.fv-price .unit { color: var(--dark-text-sub); }
.fv-price .note { color: #666; }*/

/* Campaign: Dark */
/*.campaign {
  background: var(--dark-bg);
  border-color: var(--dark-border);
  color: var(--dark-text);
}
.campaign-card { border-color: rgba(201, 169, 110, 0.2); }
.campaign-card::before { background: linear-gradient(90deg, var(--gold-light), transparent); }
.campaign-card h3 { color: var(--gold-light); }
.campaign-card .jp { color: var(--dark-text-sub); }
.campaign-item .label { color: #888; }
.campaign-item .original { color: #888; }
.campaign-item .price { color: var(--dark-text); }
.campaign-discount .discount-label { color: var(--dark-text-sub); }*/

/* Header: Dark bar — no override needed, stays dark */

/* Section labels on white */
.section-label::before { background: var(--gold); }

/* Concept cards: white with image */
/*.concept-card .num { color: rgba(176, 141, 87, 0.2); }*/

/* Concept philosophy */
.concept-philosophy { border-top-color: rgba(176, 141, 87, 0.2); }

/* Scroll infinity on white */
.scroll-infinity-item { color: rgba(176, 141, 87, 0.08); }

/* Trainers: Dark */
/*.trainers {
  background: var(--dark-bg);
  color: var(--dark-text);
}
.trainers .section-label { color: var(--gold-light); }
.trainers .section-label::before { background: var(--gold-light); }
.trainers-header h2 { color: var(--dark-text); }
.trainers-header p { color: var(--dark-text-sub); }
.trainers-label { color: var(--gold-light); }
.trainer-card { background: var(--dark-bg-soft); }
.trainer-card .img-placeholder { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: #333; }
.trainer-card .name-bar .name { color: #fff; }
.trainer-card .name-bar .role { color: var(--gold-light); }*/

/* CTA: Dark */
/*.cta-section {
  background: var(--dark-bg);
  color: var(--dark-text);
}
.cta-section::before, .cta-section::after { background: var(--gold-light); }
.cta-section h3 { color: var(--dark-text); }
.cta-section .cta-sub { color: var(--gold-light); }*/

/* Price: Card style — no extra overrides needed */

/* Price other */
.price-other-item {
  background: var(--white-pure);
  border: 1px solid #eee;
}
.price-other-num { color: #1a1a1a; }
.price-credit .cards span { border-color: #ddd; color: var(--gray); }

/* Interior: Dark — photo + text separated */
/*.interior {
  background: var(--dark-bg);
  color: var(--dark-text);
}
.interior .section-label { color: var(--gold-light); }
.interior .section-label::before { background: var(--gold-light); }
.interior .sec-title { color: var(--dark-text); }
.interior .sec-desc { color: var(--dark-text-sub); }
.interior-statement { border-top-color: rgba(201, 169, 110, 0.15); }
.interior-statement h3 { color: var(--dark-text); }
.interior-statement h3 em { color: var(--gold-light); }*/

/* Services: White */
/*.service-card {
  background: var(--white-pure);
  border: 1px solid #eee;
}
.service-card:hover { background: var(--black-soft); }
.service-card .service-img {
  background: linear-gradient(135deg, #e8e6e2, #d8d5d0);
  color: #bbb;
}
.service-card .service-img .badge { border-color: rgba(176, 141, 87, 0.4); }*/

/* Points: White base — zigzag blocks */
/*.points { background: var(--black-soft); }
.point-block__content { background: var(--white-pure); }*/

/* News: Soft bg */
/*.news { background: var(--black-soft); }
.news-item { border-bottom-color: #ddd; }
.news-item:hover { background: rgba(0,0,0,0.02); }
.news-item .cat { border-color: #ddd; }
.news-btns a { border-color: #ddd; }
.news-btns a:hover { border-color: var(--gold); color: var(--white); }*/

/* Greeting: White */
/*.greeting-photo {
  background: linear-gradient(135deg, #e8e6e2, #d8d5d0);
  color: #bbb;
}
.greeting-body .name-en { color: var(--white); }
.greeting-career { border-top-color: #ddd; }
.career-item .year { color: var(--gray); }
.greeting-medical { border-color: rgba(176, 141, 87, 0.2); }*/

/* Footer: Dark */
.footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-top-color: var(--dark-border);
}
.footer-logo { color: var(--dark-text); }
.footer-logo span { color: var(--gold-light); }
.footer-nav a { color: #888; }
.footer-nav a:hover { color: var(--dark-text); }
.footer-sub a { color: #888; }
.footer-sub a:hover { color: var(--dark-text); }
.footer-copy { color: #666; }

/* Design note */
.design-note {
  background: rgba(176, 141, 87, 0.08);
  border-color: rgba(176, 141, 87, 0.25);
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(1.5rem); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   mini-PC
============================================ */
@media (max-width: 1280px) {
    /*　FV */
    .fv-lead {font-size: 1rem;}
    .fv h2 {
        font-size: 2.25rem;
        margin-bottom: .8rem;
        line-height: 1.6;
    }
    .fv h2 em {padding: .3rem 1rem;}
    .fv-sub {font-size: 1rem;}
    .fv-price-box .label {font-size: 1rem;}
    .fv-price-box .num {font-size: 2.75rem;}
    /*　campaign */
    .campaign {padding: 3rem;}
    .campaign-head {margin-bottom: 0;}
    /*　Concept */
    .concept-intro h2 {font-size: 2.25rem;}
    .concept-intro p {
        font-size: .875rem;
        line-height: 1.8;
    }
    .concept-card p {line-height: 1.8;}
    /*　Trainer */
    .trainers-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    .trainers-header p {
        font-size: .875rem;
        line-height: 1.8;
    }
    /*　CTA */
    .cta-section__title {font-size: 2rem;}
    
    
    
    
}


/* ============================================
   Tablet
============================================ */
@media (max-width: 820px) {
    header { padding: 1rem 1.25rem; }
  nav { display: none; }

  /* FV SP */
  .fv { min-height: 24rem; }
  .fv h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .fv-sub { font-size: 0.75rem; }
  .fv-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    width: fit-content;
    margin: 0 auto;
  }
  .fv-price .label { font-size: 0.75rem; margin-right: 0; order: 1; }
  .fv-price .num { font-size: 2.5rem; order: 2; }
  .fv-price .unit { font-size: 0.8125rem; order: 3; margin-top: -0.25rem; }
  .fv-price .note { font-size: 0.625rem; margin-left: 0; order: 4; margin-top: 0.25rem; }
    /*　Campaign */
    .campaign-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .campaign-card {margin-bottom: 1rem;}
    /* Concept */
    .concept-grid { grid-template-columns: 1fr; }
    .concept-philosophy { margin-bottom: 3rem; }
    /* Trainer */
    .trainer-grid { grid-template-columns: repeat(2, 1fr); }
    .trainer-grid-sub { grid-template-columns: repeat(2, 1fr); }
    .trainers-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .trainers-header p { text-align: left; }
    .trainer-card .name-bar { padding: 1rem 1rem 0.875rem; }
    .trainer-card .name-bar .name { font-size: 2.5rem; }
    
    
    /* Philosophy SP */
  .philosophy { padding: clamp(5rem, 14vw, 7.5rem) 1.25rem; }
  .philosophy__line { font-size: clamp(1rem, 4.5vw, 1.375rem); margin-bottom: 1.75rem; letter-spacing: 0.06em; }
  .philosophy__deco { margin-top: 2.25rem; }

  

  /* Price SP */
  .price-cards { grid-template-columns: 1fr; }
  .price-other-grid { grid-template-columns: 1fr; }

  /* Points SP */
  .points-icons { grid-template-columns: repeat(2, 1fr); }
  .point-block { grid-template-columns: 1fr; }
  .point-block--reverse { grid-template-columns: 1fr; }
  .point-block--reverse .point-block__content { order: 0; }
  .point-block__content { padding: 1.75rem 1.5rem; }

    
    
    
    
    /* Services SP */
    .services-grid { grid-template-columns: 1fr; }
    .services-hero {
    
    }
    .services-hero__sub {font-size: 1.25rem;}
    .services-hero__cross {
        margin-bottom: 0;
        font-size: 1.75rem;
    }
    .services-hero__chars span {
        width: clamp(3rem, 14vw, 4rem);
        height: clamp(3rem, 14vw, 4rem);
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    
    
    
    
    
    
    
    

  /* Interior SP */
  .interior-grid { grid-template-columns: 1fr; }
  .interior-card--wide { grid-column: span 1; }

  /* Access SP */
  .access-inner { grid-template-columns: 1fr; }

  /* Greeting SP */
  .greeting-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Ghost Trade SP */
  .ghost-header { margin-bottom: 3rem; }
  .ghost-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .ghost-block__num span { font-size: 2.5rem; }
  .ghost-block__content h3 { font-size: 1.125rem; }

  /* Greeting Career / Timeline SP */
  .greeting-career {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline-item {
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
  }
  .greeting-medical { padding: 1.5rem 1.25rem; }

  /* News Buttons SP */
  .news-btns {
    flex-direction: column;
    gap: 0.75rem;
  }
  .news-btns a {
    text-align: center;
    padding: 0.875rem 1.5rem;
  }

  /* CTA Section SP */
  .cta-section { padding: 2.5rem 1.25rem; }
  .cta-section__title { font-size: 1.5rem; }
  .cta-section__price .num { font-size: 3.5rem; }
  .cta-section__btn { padding: 0.875rem 2.5rem; font-size: 0.875rem; }

  /* Footer SP */
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-nav, .site-footer__nav { flex-wrap: wrap; gap: 0.5rem 1rem; }
  .footer-sub, .site-footer__sub { flex-direction: column; gap: 0.5rem; }
  .footer-sub a, .site-footer__sub a { font-size: 0.75rem; }










}





/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 480px) {
    /* FV */
    .fv-content {text-align: center;}
    .fv-lead {
        font-size: .875rem;
        margin-bottom: .5rem;
    }
    .fv .wrap {display: block;}
    .fv h2 {
        font-size: 1.75rem;
        line-height: 1.8;
        margin-bottom: 0;
    }
    .fv-price {padding: .5rem 1rem;}
    .fv-price-box {margin-bottom: 0;}
    .fv-price-note {font-size: .75rem;}
    
    /* Campaign */
    .campaign {padding: 3rem 1.2rem;}
    .campaign .wrap {width: auto;}
    .campaign-inner {display: block;}
    .campaign-items {grid-template-columns: 1fr;}
    
    /* Concept */
    .concept-intro h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .concept-card__body {padding: 1rem 1.75rem 1.5rem;}
    .scroll-infinity-wrap img {height: 3rem;}
    .concept-card .num {font-size: 3.25rem;}
    .concept-card h3 {margin-bottom: .5rem;}
    
    /* Trainer */
    .trainers {padding: 3rem 0;}
    .trainer-card .name-bar .role {
        font-size: .75rem;
        line-height: 1.5;
    }
    .trainers-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .trainer-modal__close {margin-right: 1rem;}
    .trainer-modal__top {
        display: block;
        padding: 3.5rem 1rem 0;
        margin: 0 auto;
    }
    .trainer-modal__photo {
        aspect-ratio: auto;
        max-height: fit-content;
    }
    .trainer-modal__name-wrap {
        flex-wrap: wrap;
        line-height: 1.1;
    }
    .trainer-modal__name { font-size: 2.75rem; }
    .trainer-modal__size {
        flex-basis: 100%;
        margin-left: 0;
        margin-bottom: 1rem;
    }
    .trainer-modal__badge {font-size: .75rem;}
    .trainer-modal__info {
        padding: 1.5rem 0 0;
    }
    
    /* CTA */
    .cta-section__title {font-size: 1.25rem;}
    
 
    /* Price */
    .price-section {padding: 3rem 0;}
    .price-section .sec-desc {margin-bottom: 2rem;}
    .price-card__header {
        padding: .8rem 1rem;
    }
    .price-card__header h3 {font-size: 1rem;}
    .price-card__table th {
        padding-left: 0;
        font-size: 1rem;
    }
    .price-card__table td {
        padding-left: 0;
        padding-right: 0;
    }
    .price-card__num {font-size: 2rem;}
    .price-card__body {
        padding: 1.75rem 1rem 2rem;
    }
    .price-card__duration {
        font-size: .75rem;
        padding: .125rem .5rem;
    }
    .price-card__original {font-size: .75rem;}
    .price-card__save {
        font-size: .75rem;
        padding: .15rem .2rem .15rem .35rem;
    }
    .price-card__note {
        font-size: .75rem;
        text-align: left;
    }
    
    
    /* Interior */
    .interior {padding: 3rem 0;}
    .interior-card__body {padding: 1.5rem 1.5rem 1.5rem;}
    .interior-card__body h3 {font-size: 1rem;}
    
    
    
    
    
    
    .philosophy__line {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .philosophy__deco {margin-top: 1rem;}
    
    /* Service */
    .services {padding: 3rem 0;}
    .services-hero {
        display: block;
        margin: 2rem 0 1rem;
    }
    .services-hero__chars {justify-content: center;}
    .services-hero__cross {
        text-align: center;
        font-size: 4rem;
    }
    .services-hero__desc {margin-bottom: 2rem;}
    .services-hero__desc h3 {font-size: 1rem;}
    .services-hero__desc p {text-align: left;}
    
    /* Point */
    .point-block {
        gap: 0rem;
        margin-bottom: 1rem;
    }
    .point-block__img img {border-radius: .5rem;}
    .point-block__content {padding: .5rem;}
    .point-block__num {margin-bottom: 0;}
    .point-block__num span {font-size: 3.25rem;}
    .point-block__content h3 {font-size: 1.1rem;}
    
    
    /* Access */
    .access {padding: 3rem 0;}
    
    /* News */
    .news {padding: 3rem 0;}
    .news-item a {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .news-item .title {flex-basis: 100%;}
    
    
    /* Greeting */
    .greeting {padding: 3rem 0;}
    .greeting-body .name-jp {font-size: 1.75rem;}
    .greeting-body .name-en {font-size: 1.25rem;}
    .greeting-body .greeting-name-box {margin-bottom: 1rem;}
    .greeting-body .message {margin-bottom: 1rem;}
    .greeting-sign img {width: 60%;}
    .timeline-item {grid-template-columns: 6rem 1fr;}
    
    
    /* Reserve */
    .reserve-intro {
        padding: 1rem 0 0;
        margin-bottom: 1rem;
    }
    .reserve-methods {
        display: block;
        padding: 0;
    }
    .reserve-form-section {
        padding: 0;
    }
    .hacomono-sec {
        padding: 0;
    }
    .method-card {
        margin-bottom: 1rem;
        padding: 2rem 1rem 1.5rem;
    }
    .method-card__icon {
        margin-bottom: 0;
    }
    
    
    

  
}


/* ============================================
   SP — Style.css specific overrides
============================================ */


/* ============================================
   FAQ Section — Pattern C（カテゴリタブ型）
============================================ */
.faq {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--dark-text);
}
.faq__header {
    text-align: center;
    margin-bottom: 3rem;
}
.faq__cats {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.faq__cat-btn {
    font-family: var(--font-heading-jp);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--dark-text-sub);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.04em;
}
.faq__cat-btn:hover {
    border-color: rgba(176,141,87,0.3);
    color: var(--dark-text);
}
.faq__cat-btn.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-bg);
    font-weight: 700;
}
.faq__group + .faq__group {
    margin-top: 3rem;
}
.faq__group-title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(176,141,87,0.2);
    margin-bottom: 0.5rem;
}
.faq__item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.faq__q {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    transition: all 0.3s;
}
.faq__q:hover {
    padding-left: 0.375rem;
}
.faq__q-badge {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    min-width: 2rem;
    flex-shrink: 0;
}
.faq__q-text {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-text);
}
.faq__q-arrow {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    flex-shrink: 0;
}
.faq__q-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: translate(-50%,-60%) rotate(45deg);
    transition: transform 0.4s;
}
.faq__item.is-open .faq__q-arrow::before {
    transform: translate(-50%,-30%) rotate(-135deg);
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.faq__item.is-open .faq__answer {
    max-height: 25rem;
}
.faq__a-inner {
    padding: 0 0 1.5rem 3rem;
    font-size: 0.875rem;
    line-height: 2;
    color: var(--dark-text-sub);
}
.faq__btn-wrap {
    margin-top: 2.5rem;
    text-align: center;
}
.faq__more-btn,
.voice__more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--dark-border);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s;
}
.faq__more-btn:hover,
.voice__more-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.faq-archive {
    background: var(--dark-bg);
    color: var(--dark-text);
    padding-bottom: 4rem;
}
.faq-archive__empty {
    text-align: center;
    color: var(--dark-text-sub);
    padding: 3rem 0;
}

/* ============================================
   Voice Section — Pattern A'（ラインカード型）
============================================ */
.voice {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--dark-text);
}
.voice__header {
    text-align: center;
    margin-bottom: 3rem;
}
.voice__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.voice__card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1.75rem 2rem;
    position: relative;
    transition: all 0.3s;
}
.voice__card:hover {
    background: rgba(255,255,255,0.035);
    border-left-color: var(--gold-light);
}
.voice__quote-icon {
    font-family: var(--font-display);
    font-size: 3.25rem;
    color: var(--gold);
    opacity: 0.12;
    position: absolute;
    top: 0.875rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
}
.voice__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.voice__attrs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.voice__attr-item {
    font-size: 0.75rem;
    color: var(--dark-text-sub);
    letter-spacing: 0.03em;
}
.voice__attr-sep {
    width: 1px;
    height: 0.75rem;
    background: rgba(255,255,255,0.12);
}
.voice__stars {
    display: flex;
    gap: 0.1875rem;
}
.voice__star {
    width: 0.9375rem;
    height: 0.9375rem;
    fill: rgba(255,255,255,0.1);
}
.voice__star.is-filled {
    fill: var(--gold);
}
.voice__body {
    font-size: 0.875rem;
    line-height: 2.1;
    color: var(--dark-text);
    position: relative;
    overflow: hidden;
    max-height: 6.3em;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.voice__body.is-short {
    max-height: none;
}
.voice__body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(transparent, rgba(10,10,10,0.95));
    pointer-events: none;
    transition: opacity 0.3s;
}
.voice__body.is-short::after,
.voice__card.is-expanded .voice__body::after {
    opacity: 0;
}
.voice__card.is-expanded .voice__body {
    max-height: 37.5rem;
}
.voice__expand {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    font-family: var(--font-heading-jp);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: opacity 0.3s;
    background: none;
    border: none;
    padding: 0;
}
.voice__expand:hover {
    opacity: 0.7;
}
.voice__expand-arrow {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.3s;
}
.voice__card.is-expanded .voice__expand-arrow {
    transform: rotate(-135deg);
}
.voice__expand.is-hidden {
    display: none;
}
.voice__btn-wrap {
    margin-top: 2.5rem;
    text-align: center;
}
.voice-archive {
    background: var(--dark-bg);
    color: var(--dark-text);
    padding-bottom: 4rem;
}
.voice-archive .voice__body {
    max-height: none;
}
.voice-archive .voice__body::after {
    display: none;
}
.voice-archive__empty {
    text-align: center;
    color: var(--dark-text-sub);
    padding: 3rem 0;
}

/* FAQ / Voice — SP */
@media screen and (max-width: 768px) {
    .faq, .voice { padding: 3.5rem 0; }
    .faq__cats { gap: 0.375rem; }
    .faq__cat-btn { font-size: 0.75rem; padding: 0.5rem 1rem; }
    .faq__q { gap: 0.75rem; padding: 1rem 0; }
    .faq__q-text { font-size: 0.8125rem; }
    .faq__a-inner { padding-left: 0; font-size: 0.8125rem; }
    .voice__card { padding: 1.375rem 1.125rem; }
    .voice__body { font-size: 0.8125rem; max-height: 5.46em; }
    .voice__quote-icon { font-size: 2.25rem; top: 0.625rem; right: 0.875rem; }
}
























