@charset "UTF-8";
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
min-height: 100vh;
text-rendering: optimizeSpeed;
}
ul, ol {
list-style: none;
}
a {
color: inherit;
text-decoration: none;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
height: auto;
}
input, button, textarea, select {
font: inherit;
color: inherit;
}
button {
background: none;
border: none;
cursor: pointer;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
font-size: inherit;
font-weight: inherit;
}
fieldset {
border: none;
}
iframe {
border: none;
}:root {
--black: #ffffff;
--black-soft: #f5f5f3;
--black-card: #eeecea;
--gray-dark: #ddd;
--gray: #999;
--gray-light: #666;
--white: #1a1a1a;
--white-pure: #ffffff;
--gold: #b08d57;
--gold-light: #c9a96e;
--gold-muted: rgba(176, 141, 87, 0.1);
--red: #c41e3a;
--red-hover: #a8182f;
--dark-bg: #0a0a0a;
--dark-bg-soft: #141414;
--dark-text: #f5f2ed;
--dark-text-sub: #b0b0b0;
--dark-border: #2a2a2a;
--font-display: 'Bebas Neue', sans-serif;
--font-heading: 'Oswald', sans-serif;
--font-heading-jp: 'Noto Sans JP', sans-serif;
--font-body: 'Noto Sans JP', sans-serif;
--section-pad: clamp(5rem, 12vw, 10rem);
--wrap: min(75rem, 90vw);
--header-height: 5rem;
}
html {
font-size: 100%;
scroll-behavior: smooth;
background: var(--black);
color: var(--white);
}
body {
font-family: var(--font-body);
font-size: 1rem;
font-weight: 400;
line-height: 1.8;
letter-spacing: 0.04em;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
.wrap {
width: var(--wrap);
margin: 0 auto;
}
img {
max-width: 100%;
height: auto;
}
.br-sp {
display: none;
} .section-label {
font-family: var(--font-heading);
font-size: 1rem;
font-weight: 500;
letter-spacing: .3em;
text-transform: uppercase;
color: var(--gold);
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.section-label::before {
content: '';
display: block;
width: 2.5rem;
height: 1px;
background: var(--gold);
}
.section-label--center {
justify-content: center;
}
.section-label--center::before {
display: none;
} .sec-title {
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;
}
.sec-title--center {
text-align: center;
}
.sec-desc {
font-size: 1rem;
line-height: 2;
}
.sec-desc--center {
text-align: center;
}
.br-pc {display: block;}
.br-sp {display: none;} .site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 0 2.5rem;
height: var(--header-height);
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(10,10,10,0.85);
backdrop-filter: blur(0.5rem);
transition: background 0.4s;
}
.site-header__logo {
margin: 0;
padding: 0;
font-size: inherit;
font-weight: inherit;
line-height: 1;
}
.logo-img {
display: flex;
align-items: center;
text-decoration: none;
}
.logo-img img {
height: 3rem;
width: auto;
}
.site-header__nav {
display: flex;
gap: 1.75rem;
align-items: center;
}
.site-header__nav a {
text-decoration: none;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.125rem;
transition: opacity 0.3s;
}
.site-header__nav a:hover {
opacity: 0.7;
}
.site-header__nav .nav-en,
nav .nav-en {
font-family: var(--font-heading);
font-size: .875rem;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #b08d57;
}
.site-header__nav .nav-jp,
nav .nav-jp {
font-family: var(--font-heading-jp);
font-size: 0.625rem;
font-weight: 400;
color: rgba(255,255,255,0.6);
letter-spacing: 0.08em;
}
.site-header__nav a.is-ghost .nav-en,
nav a.nav-ghost .nav-en {
font-style: italic;
}
.header-cta,
.site-header__cta {
display: inline-flex;
align-items: center;
padding: 0.625rem 1.5rem;
background: var(--red);
color: #fff !important;
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.08em;
text-decoration: none;
border: none;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
margin-left: 0.5rem;
}
.header-cta:hover,
.site-header__cta:hover {
background: var(--red-hover);
transform: translateY(-0.0625rem);
} .site-header__hamburger {
display: none;
width: 1.75rem;
height: 1.25rem;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.site-header__hamburger span {
display: block;
height: 0.125rem;
background: #fff;
transition: transform 0.3s, opacity 0.3s;
}
.site-header__hamburger.is-active span:nth-child(1) {
transform: translateY(0.5625rem) rotate(45deg);
}
.site-header__hamburger.is-active span:nth-child(2) {
opacity: 0;
}
.site-header__hamburger.is-active span:nth-child(3) {
transform: translateY(-0.5625rem) rotate(-45deg);
} .sp-menu {
display: none;
position: fixed;
inset: 0;
z-index: 99;
background: rgba(10,10,10,0.97);
padding: calc(var(--header-height) + 2.5rem) 2.5rem 2.5rem;
padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
flex-direction: column;
gap: 1.5rem;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.sp-menu.is-active {
display: flex;
}
.sp-menu a {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #fff;
text-decoration: none;
}
.sp-menu a .nav-jp {
font-family: var(--font-heading-jp);
font-size: 0.6875rem;
font-weight: 400;
color: rgba(255,255,255,0.5);
display: block;
margin-top: 0.125rem;
}
.sp-menu .sp-menu__cta {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 1rem 2rem;
background: var(--red);
color: #fff;
font-size: 0.875rem;
font-weight: 500;
margin-top: 1rem;
width: 100%;
text-align: center;
text-decoration: none;
} .footer, .site-footer {
padding: 4rem 0 2rem;
border-top: 1px solid var(--dark-border);
background: var(--dark-bg);
color: var(--dark-text);
}
.footer-inner, .site-footer__inner {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 3rem;
}
.footer-logo, .site-footer__logo {
text-decoration: none;
}
.footer-logo span {
color: var(--gold-light);
}
.site-footer__logo img {
height: 6rem;
width: auto;
}
.footer-nav, .site-footer__nav {
display: flex;
gap: 1.5rem;
list-style: none;
}
.footer-nav a, .site-footer__nav a {
font-family: var(--font-heading);
font-size: .875rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
.footer-nav a:hover, .site-footer__nav a:hover {
color: #b08d57;
}
.footer-sub, .site-footer__sub {
display: flex;
gap: 1.5rem;
list-style: none;
margin-top: 1rem;
}
.footer-sub a, .site-footer__sub a {
font-size: .75rem;
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
.footer-sub a:hover, .site-footer__sub a:hover {
color: #b08d57;
}
.footer-copy, .site-footer__copy {
text-align: center;
font-size: .6875rem;
color: #fff;
letter-spacing: 0.1em;
} .sp-fixed-cta {
display: none;
}
@media (max-width: 768px) {
.sp-fixed-cta {
display: block;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 900;
padding: 0.625rem 1rem;
padding-bottom: calc(0.625rem + env(safe-area-inset-bottom));
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-top: 1px solid var(--dark-border);
}
.sp-fixed-cta__btn {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: .875rem 0;
background: #c41e3a;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-family: var(--font-heading-jp);
font-size: 0.875rem;
font-weight: 700;
letter-spacing: 0.15em;
transition: background 0.3s;
}
.sp-fixed-cta__btn:active {
background: var(--gold-light);
} .site-footer {
padding-bottom: 5rem;
}
} .breadcrumb {
padding: 0.75rem 0;
font-size: 0.6875rem;
color: var(--gray);
}
.breadcrumb a {
color: var(--gray);
text-decoration: none;
transition: color 0.3s;
}
.breadcrumb a:hover {
color: var(--gold);
}
.breadcrumb .sep {
margin: 0 0.5rem;
color: var(--gray-dark);
}
.breadcrumb .current {
color: var(--white);
} .page-hero {
position: relative;
padding: calc(var(--header-height) + 6.25rem) 0 5.5rem;
overflow: hidden;
min-height: 22.5rem;
}
.page-hero__bg-img {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.page-hero__overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.72) 100%);
} .page-hero--no-img {
background: var(--black-soft);
}
.page-hero--no-img .page-hero__overlay {
background: none;
}
.page-hero--no-img .page-hero__en {
color: var(--white);
}
.page-hero--no-img .page-hero__jp {
color: var(--gray);
}
.page-hero--no-img .page-hero__bg-text {
color: rgba(176,141,87,.05);
}
.page-hero--no-img .section-label {
color: var(--gold);
}
.page-hero--no-img .section-label::before {
background: var(--gold);
}
.page-hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
opacity: 0.3;
z-index: 2;
}
.page-hero .wrap {
position: relative;
z-index: 2;
}
.page-hero .section-label {
color: var(--gold-light);
}
.page-hero .section-label::before {
background: var(--gold-light);
}
.page-hero__en {
font-family: var(--font-display);
font-size: clamp(3.5rem, 9vw, 6rem);
line-height: 1;
letter-spacing: 0.04em;
color: var(--white-pure);
}
.page-hero__en span {
color: var(--gold);
}
.page-hero__jp {
font-family: var(--font-heading-jp);
font-size: 0.8125rem;
font-weight: 400;
color: rgba(255,255,255,0.7);
letter-spacing: 0.12em;
margin-top: 0.75rem;
}
.page-hero__bg-text {
position: absolute;
right: -0.625rem;
top: 50%;
transform: translateY(-50%);
font-family: var(--font-display);
font-size: clamp(7.5rem, 18vw, 16.25rem);
color: rgba(255,255,255,0.08);
white-space: nowrap;
user-select: none;
pointer-events: none;
line-height: 1;
z-index: 1;
} .page-body {
max-width: 51.25rem;
margin: 0 auto;
padding: 4rem 2.5rem 7.5rem;
}
.page-body h2 {
font-family: var(--font-heading-jp);
font-size: 1.125rem;
font-weight: 700;
margin: 3.5rem 0 1rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid var(--gray-dark);
letter-spacing: 0.02em;
}
.page-body h2:first-child {
margin-top: 0;
}
.page-body h3 {
font-size: 0.9375rem;
font-weight: 700;
margin: 2rem 0 0.625rem;
}
.page-body p {
font-size: 0.875rem;
line-height: 2;
margin-bottom: 1rem;
}
.page-body ul {
padding-left: 1.5em;
margin-bottom: 1rem;
}
.page-body ul li {
font-size: 0.875rem;
line-height: 2;
color: var(--gray-light);
}
.page-body table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
font-size: .875rem;
}
.page-body th {
text-align: left;
padding: 1rem 1.25rem;
background: var(--black-soft);
font-weight: 600;
width: 12.5rem;
vertical-align: top;
border-top: 1px solid var(--gray-dark);
border-bottom: 1px solid var(--gray-dark);
font-size: 0.8125rem;
}
.page-body td {
padding: 1rem 1.25rem;
border-top: 1px solid var(--gray-dark);
border-bottom: 1px solid var(--gray-dark);
line-height: 1.8;
} .page-404 {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
background:#141414;
}
.page-404__bg-text {
position: absolute;
font-family: var(--font-display);
font-size: clamp(15.625rem, 40vw, 31.25rem);
color: rgba(255,255,255,0.03);
user-select: none;
pointer-events: none;
line-height: 1;
z-index: 1;
}
.page-404__content {
position: relative;
z-index: 2;
padding: 2.5rem;
}
.page-404__label {
font-family: var(--font-heading);
font-size: 0.7rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
}
.page-404__label::before,
.page-404__label::after {
content: '';
width: 2rem;
height: 1px;
background: var(--gold);
}
.page-404__num {
font-family: var(--font-display);
font-size: clamp(7rem, 22vw, 12rem);
color: var(--gold);
line-height: 1;
letter-spacing: 0.06em;
}
.page-404__title {
font-family: var(--font-heading);
font-size: 1rem;
font-weight: 500;
letter-spacing: 0.25em;
margin-top: 0.75rem;
color: var(--white-pure);
}
.page-404__divider {
width: 3rem;
height: 1px;
background: rgba(255,255,255,0.2);
margin: 2rem auto;
}
.page-404__desc {
font-size: 0.8125rem;
color: rgba(255,255,255,0.5);
line-height: 2;
}
.page-404__btn {
display: inline-block;
margin-top: 2.5rem;
padding: 1rem 3.25rem;
border: 1px solid var(--gold);
color: var(--gold);
font-family: var(--font-heading);
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
text-decoration: none;
transition: all 0.3s;
}
.page-404__btn:hover {
background: var(--gold);
color: var(--dark-bg);
} @media (max-width: 1280px) {
.sec-title {
font-size: 2.25rem;
margin-bottom: 1rem;
}
.section-label {margin-bottom: 1rem;}
.sec-desc {font-size: .875rem;}
} @media (max-width: 768px) {
body {
font-size: 0.875rem;
}
.br-sp {
display: block;
}
.site-header {
padding: 0 1.25rem;
}
.site-header__nav {
display: none;
}
.site-header__hamburger {
display: flex;
}
.footer-inner, .site-footer__inner {
flex-direction: column;
gap: 2rem;
}
.site-footer__nav {
flex-wrap: wrap;
gap: 0.5rem 1rem;
}
.site-footer__sub {
flex-direction: column;
gap: 0.5rem;
} .page-hero {
padding: calc(var(--header-height) + 3rem) 0 3rem;
min-height: 16.25rem;
}
.page-hero__bg-text {
display: none;
}
.page-hero__en {
font-size: clamp(2.5rem, 12vw, 3.5rem);
} .page-body {
padding: 2.5rem 1.25rem 5rem;
}
.page-body th {
display: block;
width: 100%;
}
.page-body td {
display: block;
} .reserve-intro {
padding: 2.5rem 1.25rem 0;
}
.reserve-methods {
grid-template-columns: 1fr;
padding: 0 1.25rem;
}
.reserve-form-section {
padding: 0 1.25rem 5rem;
}
} @media (max-width: 480px) {
.br-pc {display: none;}
.br-sp {display: block;}
.section-label {
font-size: .875rem;
letter-spacing: .1rem;
gap: .8rem;
}
.sec-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
}.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 { }
.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 {
padding: 5rem 3rem;
position: relative;
}
.campaign-head {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 2.5rem;
} .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(//gokurakugym.com/wp-content/themes/gokuraku_gym/assets/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; }
.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 {
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 {
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 {
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-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 { }
.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; }
.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-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(//gokurakugym.com/wp-content/themes/gokuraku_gym/assets/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-section {
padding: 5rem 0;
background: #f5f5f3;
}
.price-section .sec-desc {
margin-bottom: 3rem;
} .price-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
} .price-card {
overflow: hidden;
} .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); } .price-card__body {
background: #fff;
padding: 1.75rem 2rem 2.25rem;
color: #1a1a1a;
} .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-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;
} .price-card__duration {
display: inline-block;
font-size: .875rem;
padding: .125rem .625rem;
background: #b08d57;
color: #fff;
margin-top: .25rem;
} .price-card__original {
font-size: .875rem;
color: #1a1a1a;
display: block;
}
.price-card__original s {
text-decoration: line-through;
}
.price-card__per {
font-size: .75rem;
} .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;
} .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 {
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 {
position: relative;
padding: clamp(7.5rem, 18vw, 15rem) 1.25rem;
text-align: center;
overflow: hidden;
}
.philosophy__bg {
position: absolute;
inset: 0;
background: url(//gokurakugym.com/wp-content/themes/gokuraku_gym/assets/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);
} .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;
}  .services {
padding: 5rem 0;
}
.service-header {
margin-bottom: 2rem;
} .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 {
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-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; }
.point-block__img img {
border-radius: 1rem;
}
.point-block__content { 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 {
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 {
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 {
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 {
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);
} @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 {
padding: 5rem 0;
}
.greeting-inner {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
align-items: center;
margin-bottom: 3rem;
}
.greeting-photo { }
.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;
} .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-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;
} .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 {
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 { 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 {
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 {
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);
}        .section-label::before { background: var(--gold); }   .concept-philosophy { border-top-color: rgba(176, 141, 87, 0.2); } .scroll-infinity-item { color: rgba(176, 141, 87, 0.08); }      .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); }           .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 {
background: rgba(176, 141, 87, 0.08);
border-color: rgba(176, 141, 87, 0.25);
color: var(--gold);
} @keyframes fadeUp {
from { opacity: 0; transform: translateY(1.5rem); }
to { opacity: 1; transform: translateY(0); }
} @media (max-width: 1280px) { .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 {padding: 3rem;}
.campaign-head {margin-bottom: 0;} .concept-intro h2 {font-size: 2.25rem;}
.concept-intro p {
font-size: .875rem;
line-height: 1.8;
}
.concept-card p {line-height: 1.8;} .trainers-header h2 {
font-size: 2.25rem;
margin-bottom: 1rem;
}
.trainers-header p {
font-size: .875rem;
line-height: 1.8;
} .cta-section__title {font-size: 2rem;}
} @media (max-width: 820px) {
header { padding: 1rem 1.25rem; }
nav { display: none; } .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-inner {
grid-template-columns: 1fr;
gap: 0;
}
.campaign-card {margin-bottom: 1rem;} .concept-grid { grid-template-columns: 1fr; }
.concept-philosophy { margin-bottom: 3rem; } .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 { 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-cards { grid-template-columns: 1fr; }
.price-other-grid { grid-template-columns: 1fr; } .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-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-grid { grid-template-columns: 1fr; }
.interior-card--wide { grid-column: span 1; } .access-inner { grid-template-columns: 1fr; } .greeting-inner { grid-template-columns: 1fr; gap: 2.5rem; } .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 {
grid-template-columns: 1fr;
gap: 2rem;
}
.timeline-item {
grid-template-columns: 4.5rem 1fr;
gap: 1rem;
}
.greeting-medical { padding: 1.5rem 1.25rem; } .news-btns {
flex-direction: column;
gap: 0.75rem;
}
.news-btns a {
text-align: center;
padding: 0.875rem 1.5rem;
} .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-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; }
} @media (max-width: 480px) { .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 {padding: 3rem 1.2rem;}
.campaign .wrap {width: auto;}
.campaign-inner {display: block;}
.campaign-items {grid-template-columns: 1fr;} .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;} .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-section__title {font-size: 1.25rem;} .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 {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;} .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-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 {padding: 3rem 0;} .news {padding: 3rem 0;}
.news-item a {
flex-wrap: wrap;
gap: 0.5rem;
}
.news-item .title {flex-basis: 100%;} .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-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;
}
}  .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 {
padding: 5rem 0;
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 {
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 {
padding: 5rem 0;
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;
} @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; }
} .voice-archive .voice__list{display:grid;grid-template-columns:repeat(2,1fr);
gap:clamp(1rem,2.4vw,1.75rem);}
@media (max-width:768px){  .voice-archive .voice__list{display:flex;flex-direction:row;grid-template-columns:none;
gap:.75rem;overflow-x:auto;scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;scrollbar-width:thin;
margin-left:-1.25rem;margin-right:-1.25rem;
padding:0 1.25rem 1rem; max-width:100vw;}
.voice-archive{overflow-x:hidden;}
.voice-archive .voice__list::-webkit-scrollbar{height:4px;}
.voice-archive .voice__list::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2);border-radius:2px;}
.voice-archive .voice__card{flex:0 0 82%;scroll-snap-align:start;}
} .voice-archive .voice__card{background:#fff;border:1px solid #e6e4e0;border-left:1px solid #e6e4e0;
border-radius:0;padding:clamp(1.5rem,3vw,2.25rem) clamp(1.25rem,2.4vw,1.875rem);
display:flex;flex-direction:column;}
.voice-archive .voice__attr-item{color:#666;}
.voice-archive .voice__attr-sep{background:#ddd;}
.voice-archive .voice__body{color:#555;}
.voice-archive .voice__expand{color:#8f6f2e;}
 .home{
--gk-bk:#08080a;
--gk-gold-hi:#f2dfa8;
--gk-gold:#c9a45f;
--gk-gold-deep:#8f6f2e;
--gold-bright:#d4af37;
--gk-red:#c8102e;
--gk-red-deep:#9e0b23;
--gk-ink:#1a1a1a;
--gk-ink-sub:#555;
--gk-line:#e8e6e1;
--gk-serif:"Noto Serif JP",serif;
--gk-sans:"Noto Sans JP",sans-serif;
--gk-font-display:"Bebas Neue",sans-serif;
--gk-font-heading:"Oswald",sans-serif;
--gk-font-body:"Noto Sans JP",sans-serif;
--gk-wrap:min(75rem,90%);
--gk-maxw:87.5rem;
--gk-dark-card:#141414;
--gk-dark-border:#2a2a2a;
--gk-w-sub:rgba(255,255,255,.8);
--bk:#08080a;
--gold-hi:#f2dfa8;
--gold-deep:#8f6f2e;
--gold-1:#f2dfa8;
--gold-2:#d4af37;
--gold-3:#8f6f2e;
--gold-4:#e8d296;
--dark-card:#141414;
--w-sub:rgba(255,255,255,.8);
--serif:"Noto Serif JP",serif;
--sans:"Noto Sans JP",sans-serif;
--maxw:87.5rem;
--gk-gold-1:#f2dfa8;
--gk-gold-2:#d4af37;
--gk-gold-3:#8f6f2e;
--gk-gold-4:#e8d296;
}
.home section *, .home .trainers *{box-sizing:border-box;}
.home section img{max-width:100%;display:block;}
.home section p, .home section h2, .home section h3, .home section dl, .home section dd{margin:0;}
.home section a{text-decoration:none;color:inherit;}
.home section ul, .home section ol{list-style:none;margin:0;padding:0;}
.home .burger{display:none;flex-direction:column;gap:.25rem;}
.home .burger span{width:1.375rem;height:2px;background:#fff;display:block;}
.home .fv{position:relative;overflow:hidden;background:var(--bk);min-height:min(82vh,46rem);display:flex;flex-direction:column;}
.home .fv__media{position:absolute;inset:0;z-index:0;}
.home .fv__media img{width:100%;height:100%;object-fit:cover;object-position:center;}
.home .fv__scrim{position:absolute;inset:0;z-index:1;
background:linear-gradient(180deg,rgba(8,8,10,.55) 0%,rgba(8,8,10,0) 20%,rgba(8,8,10,0) 60%,rgba(8,8,10,.9) 100%);}
.home .fv__inner{position:relative;z-index:10;flex:1;display:flex;flex-direction:column;justify-content:center;
width:100%;max-width:var(--maxw);margin:0 auto;padding:2rem clamp(1.25rem,3.5vw,3rem) 3.5rem;}
.home .fv__text{width:min(62%,48rem);}
.home .fv__tag{display:inline-flex;align-items:center;gap:.75rem;font-size:clamp(.6875rem,1.05vw,.9375rem);
font-weight:500;letter-spacing:.12em;color:rgba(255,255,255,.92);margin-bottom:1.375rem;}
.home .fv__tag::before{content:"";width:2px;height:1.125rem;background:linear-gradient(180deg,var(--gold-1),var(--gold-3));}
.home .fv__hl{font-family:var(--serif);font-weight:700;line-height:1.3;letter-spacing:.01em;color:#fff;text-shadow:0 .125rem 1.5rem rgba(0,0,0,.75);}
.home .fv__hl > span{display:block;}
.home .fv__hl .big{font-size:clamp(1.75rem,4.4vw,3.875rem);}
.home .fv__hl .sm{font-size:clamp(1.125rem,2.6vw,2.25rem);}
.home .fv__hl .sm, .home .fv__hl .pill{vertical-align:middle;}
.home .gk-gold{display:inline-block;
background-image:linear-gradient(178deg,var(--gold-1) 6%,#fbf3d4 24%,var(--gold-2) 48%,var(--gold-3) 74%,var(--gold-4) 100%);
-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
filter:drop-shadow(0 .0625rem .1875rem rgba(0,0,0,.85));}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
.gk-gold{-webkit-text-fill-color:currentColor;color:var(--gold-2);background-image:none;}}.home .fv__pillars{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem clamp(.5rem,1.4vw,1.125rem);margin-bottom:.75rem;}
.home .fv__pillars .x{font-family:var(--serif);font-weight:700;font-size:clamp(1.125rem,2.4vw,2rem);color:var(--gold-2);line-height:1;}
.home .pill--med{position:relative;display:inline-block;font-size:clamp(1.625rem,4vw,3.375rem);line-height:1.24;padding:.22em .46em .28em;border-radius:.34em;}
.home .pill--med::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:2px;
background:linear-gradient(155deg,var(--gold-1) 0%,#fdf6dd 22%,var(--gold-2) 52%,var(--gold-3) 78%,var(--gold-4) 100%);
-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;
mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);mask-composite:exclude;
pointer-events:none;filter:drop-shadow(0 0 .375rem rgba(0,0,0,.7));}
@supports not ((-webkit-mask-composite:xor) or (mask-composite:exclude)){
.pill--med::before{background:none;border:2px solid var(--gold-2);padding:0;}}.home .pill--med .txt{font-size:1em;}
.home .pill--kaatsu{position:relative;display:inline-block;font-size:clamp(1.375rem,3.4vw,2.875rem);line-height:1.24;padding:.34em .12em .38em;}
.home .pill--kaatsu::before, .home .pill--kaatsu::after{content:"";position:absolute;left:0;right:0;height:5px;pointer-events:none;filter:drop-shadow(0 0 .3125rem rgba(0,0,0,.7));}
.home .pill--kaatsu::before{top:0;background:linear-gradient(90deg,var(--gold-3),var(--gold-1) 38%,var(--gold-2) 72%,var(--gold-3)) top/100% 2px no-repeat,
linear-gradient(90deg,rgba(212,175,55,.55),rgba(247,230,176,.55) 45%,rgba(212,175,55,.35)) bottom/100% 1px no-repeat;}
.home .pill--kaatsu::after{bottom:0;background:linear-gradient(90deg,var(--gold-3),var(--gold-1) 38%,var(--gold-2) 72%,var(--gold-3)) bottom/100% 2px no-repeat,
linear-gradient(90deg,rgba(212,175,55,.55),rgba(247,230,176,.55) 45%,rgba(212,175,55,.35)) top/100% 1px no-repeat;}
.home .pill--kaatsu .txt{font-size:1em;}
.home .fv__lead{margin-top:1.625rem;font-size:clamp(.75rem,1.05vw,1rem);line-height:2;color:var(--w-sub);text-shadow:0 .0625rem .75rem rgba(0,0,0,.85);}
.home .fv__awards{display:flex;gap:clamp(.5rem,2vw,2.25rem);margin-top:1.875rem;align-items:flex-start;}
.home .slot{position:relative;width:clamp(5.25rem,10.5vw,10rem);flex:0 0 auto;}
.home .slot svg{width:100%;height:auto;}
.home .slot .in{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0 13%;}
.home .slot .in .t1{font-size:clamp(.4375rem,.7vw,.6875rem);line-height:1.5;text-align:center;color:#fff;font-weight:500;}
.home .slot .in .t2{font-family:var(--serif);font-weight:700;font-size:clamp(.9375rem,1.8vw,1.625rem);line-height:1;margin-top:.2rem;}
.home .cmp__wrap{width:var(--gk-wrap);margin:0 auto;}
.home .cmp__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;}
.home .cmp__card{background:var(--dark-card);border:1px solid var(--dark-border);position:relative;overflow:hidden;
display:flex;flex-direction:column;transition:border-color .3s;}
.home .cmp__card::after{content:"";position:absolute;top:0;right:50%;transform:translateX(50%);
width:30rem;height:7rem;background:url(//gokurakugym.com/wp-content/themes/gokuraku_gym/assets/img/bk_logo.webp) no-repeat center/contain;opacity:.7;pointer-events:none;}
.home .cmp__ribbon{position:absolute;top:1rem;right:-2.25rem;background:var(--gk-red);color:#fff;
font-family:var(--gk-font-heading);font-size:.875rem;letter-spacing:.15em;padding:.25rem 3rem;transform:rotate(45deg);z-index:2;}
.home .cmp__head{text-align:center;line-height:1.5;padding:3rem 2rem 0;position:relative;z-index:1;}
.home .cmp__tag{font-size:.875rem;color:#fff;text-transform:uppercase;}
.home .cmp__title{font-family:var(--gk-font-heading);font-size:2.25rem;font-weight:700;color:var(--gk-gold);
padding-bottom:1rem;border-bottom:1px solid #fff;}
.home .cmp__body{padding:1.5rem 3rem 1rem;flex:1;}
.home .cmp__items{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;}
.home .cmp__item{text-align:center;}
.home .cmp__label{font-size:1.25rem;font-weight:600;color:#fff;}
.home .cmp__original{font-size:1rem;color:#fff;text-decoration:line-through;}
.home .cmp__price{font-family:var(--gk-font-display);font-size:6rem;font-weight:400;color:var(--gk-gold);line-height:1;}
.home .cmp__price span{font-family:var(--gk-font-body);font-size:1.25rem;color:#fff;}
.home .cmp__discount{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1rem 0 0;}
.home .cmp__num{font-family:var(--gk-font-display);font-size:6rem;color:var(--gk-red);line-height:1;}
.home .cmp__num span{font-size:2rem;}
.home .cmp__num span.cmp__all{font-family:var(--gk-font-heading);font-size:1.75rem;color:#888;margin-right:.5rem;}
.home .cmp__sub{font-size:1rem;color:#fff;}
.home .cmp__cta{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.875rem;
background:var(--gk-red);color:#fff;font-size:1rem;font-weight:600;letter-spacing:.1em;text-decoration:none;
transition:background .3s;margin-top:auto;}
.home .cmp__cta::after{content:"";width:.5rem;height:.5rem;border-top:1.5px solid #fff;border-right:1.5px solid #fff;transform:rotate(45deg);} .home .cmp{background:var(--bk);padding:4.5rem 3rem 5.5rem;}
.home .fv__scrim{background:linear-gradient(180deg,rgba(8,8,10,.55) 0%,rgba(8,8,10,0) 18%,rgba(8,8,10,0) 52%,rgba(8,8,10,.75) 82%,var(--bk) 100%);}
.home .cmp__card{
background:#101014;
border:1.5px solid rgba(201,164,95,.55);
box-shadow:0 1.25rem 3rem -1.5rem rgba(0,0,0,.9);
}
.home .cmp__card::after{opacity:.55;}
.home .cmp__ribbon{
background:linear-gradient(160deg,var(--gold-hi),#d4af37 48%,var(--gold-deep));
color:#0a0a0c;font-weight:700;
}
.home .cmp__tag{color:rgba(255,255,255,.68);letter-spacing:.06em;}
.home .cmp__title{
background-image:linear-gradient(178deg,var(--gold-hi) 8%,#fbf3d4 26%,#d4af37 52%,var(--gold-deep) 78%,#e8d296 100%);
-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;
border-bottom:1px solid rgba(201,164,95,.4);
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
.cmp__title{-webkit-text-fill-color:currentColor;color:#d4af37;background-image:none;}}.home .cmp__label{color:#fff;}
.home .cmp__original{color:rgba(255,255,255,.5);}
.home .cmp__price{color:#d4af37;}
.home .cmp__price span{color:#fff;}
.home .cmp__num{color:#d4af37;}
.home .cmp__num span.cmp__all{color:rgba(255,255,255,.42);}
.home .cmp__sub{color:rgba(255,255,255,.8);}
.home .cmp__cta{
background:linear-gradient(180deg,#d9b968,var(--gold-deep));
color:#0a0a0c;font-weight:700;
}
.home .cmp__cta::after{border-top-color:#0a0a0c;border-right-color:#0a0a0c;}
.home .cmp__cta:hover{background:linear-gradient(180deg,var(--gold-hi),#a8842f);}
.home .inner-rule{display:none;}
.home .cmp__card{
background:#fff;
border:2.5px solid rgba(201,164,95,.9);
box-shadow:0 1.5rem 3.25rem -1.5rem rgba(0,0,0,.75);
}
.home .cmp__card::after{opacity:.85;}
.home .cmp__tag{color:#6b6b6b;}
.home .cmp__title{
background-image:linear-gradient(178deg,#c19a44 6%,#b08d3f 26%,#9a7a30 56%,#7d5f26 100%);
-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;
border-bottom:1px solid #e6e0d4;
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
.cmp__title{-webkit-text-fill-color:currentColor;color:#8f6f2e;background-image:none;}}.home .cmp__label{color:#1a1a1a;}
.home .cmp__original{color:#9a9a9a;}
.home .cmp__price{color:#8f6f2e;}
.home .cmp__price span{color:#1a1a1a;}
.home .cmp__num{color:#8f6f2e;}
.home .cmp__num span.cmp__all{color:#b0aca3;}
.home .cmp__sub{color:#1a1a1a;}
.home .cmp__ribbon{background:linear-gradient(160deg,var(--gold-hi),#c9a45f 48%,var(--gold-deep));color:#0a0a0c;}
.home .cmp__cta{background:linear-gradient(180deg,#c9a45f,#8f6f2e);color:#0a0a0c;}
.home .cmp__cta:hover{background:linear-gradient(180deg,#d9b968,#7d5f26);}
.home .cmp__cta::after{border-top-color:#0a0a0c;border-right-color:#0a0a0c;}
.home .sign{background:#fff;}
.home .sign__in{max-width:68rem;margin:0 auto;padding:5.25rem clamp(1.25rem,4vw,3rem) 5.5rem;}
.home .sign__h{
font-family:var(--sans);font-weight:900;color:#1a1a1a;text-align:center;
font-size:clamp(1.5rem,4.6vw,3.125rem);line-height:1.35;letter-spacing:.01em;
}
.home .sign__sub{
text-align:center;color:#555;font-weight:500;
font-size:clamp(.8125rem,1.45vw,1.0625rem);margin-top:1rem;line-height:1.8;
}
.home .sign__grid{
display:grid;grid-template-columns:1fr 1fr;
gap:0 clamp(1.5rem,4vw,3.5rem);
margin-top:2.75rem;
border-top:1px solid #e8e6e1;
position:relative;
}
.home .sign__grid::after{content:"";position:absolute;top:0;bottom:0;left:50%;width:1px;
background:#e8e6e1;transform:translateX(-50%);}
.home .sc{
display:flex;align-items:center;
gap:clamp(1rem,2.2vw,1.625rem);
padding:clamp(1.125rem,2.2vw,1.625rem) clamp(.25rem,1vw,.75rem);
border-bottom:1px solid #e8e6e1;
}
.home .sc__i{
flex:0 0 auto;
width:clamp(3.25rem,5.6vw,4.375rem);height:clamp(3.25rem,5.6vw,4.375rem);
display:flex;align-items:center;justify-content:center;color:#a5822f;
}
.home .sc__i svg,
.home .sc__i img{width:100%;height:100%;display:block;}
.home .sc__t{
font-family:var(--sans);font-weight:700;color:#1a1a1a;line-height:1.6;
font-size:clamp(.875rem,1.55vw,1.125rem);letter-spacing:.01em;
}
.home .sign__closing{margin-top:3.5rem;text-align:center;}
.home .sign__closing p{color:#555;line-height:2.1;font-weight:500;
font-size:clamp(.8125rem,1.4vw,1.0625rem);}
.home .sign__closing p .st{color:#1a1a1a;font-weight:700;}
.home .sign__note{
position:relative;max-width:54rem;margin:0 auto;
padding:clamp(1rem,2vw,1.5rem) 0;
}
.home .brsp{display:none;}
.home .sign__note .l1{
font-family:var(--serif);font-weight:700;color:#1a1a1a;
font-size:clamp(1.125rem,2.5vw,1.875rem);line-height:1.75;letter-spacing:.02em;
}
.home .sign__note .l2{
margin-top:.875rem;color:#555;font-weight:500;line-height:1.95;
font-size:clamp(.8125rem,1.4vw,1.0625rem);
}
.home .sign__note{display:block;}
.home .res{background:#fff;}
.home .tl{--c:6.5rem;--g:1.5rem;display:grid;grid-template-columns:repeat(3,1fr);gap:var(--g);position:relative;}
.home .res{--acc:#a5822f;--cline:#e8e6e1;}
.home .res__ph::after{content:"";position:absolute;inset:0;
background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.4) 22%,rgba(255,255,255,0) 48%),
linear-gradient(0deg,#fff 0%,rgba(255,255,255,0) 26%);}
.home .hold{background:#fafafa;border-top:1px dashed #d8d6d0;border-bottom:1px dashed #d8d6d0;
padding:2.25rem 1.25rem;text-align:center;}
.home .rb{background:#fff;--acc:#c8102e;--accsoft:rgba(200,16,46,.5);}
.home .rb__in{max-width:78rem;margin:0 auto;padding:5.25rem clamp(1.25rem,4vw,3rem) 5.5rem;}
.home .rb__head{display:grid;grid-template-columns:auto 1fr;gap:clamp(1.5rem,3.4vw,3rem);align-items:center;}
.home .rb__h{font-family:var(--sans);font-weight:900;color:#1a1a1a;
font-size:clamp(1.5rem,4vw,2.75rem);line-height:1.35;letter-spacing:.01em;}
.home .rb__lead{border-left:1px solid #dcdad5;padding-left:clamp(1.25rem,3vw,2.5rem);
font-size:clamp(.8125rem,1.35vw,1rem);line-height:2;color:#333;font-weight:500;}
.home .rb__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1rem,2.4vw,1.75rem);margin-top:2.75rem;}
.home .rb__card{border:1px solid #e6e5e2;border-radius:.625rem;
padding:clamp(1.25rem,2.4vw,1.875rem);display:flex;flex-direction:column;}
.home .rb__case{display:inline-block;border:1.5px solid var(--acc);color:var(--acc);
font-family:var(--sans);font-weight:700;font-size:.8125rem;letter-spacing:.1em;
padding:.375rem .75rem;border-radius:.25rem;}
.home .rb__top{display:grid;grid-template-columns:1fr auto;gap:clamp(.875rem,2vw,1.5rem);align-items:start;margin-top:1.125rem;}
.home .rb__term{font-family:var(--sans);font-weight:900;color:#1a1a1a;line-height:1.35;
font-size:clamp(1rem,1.9vw,1.375rem);}
.home .rb__big{display:flex;align-items:baseline;gap:.25rem;margin-top:.25rem;}
.home .rb__big .lb{font-family:var(--sans);font-weight:900;font-size:clamp(1rem,1.9vw,1.375rem);color:#1a1a1a;}
.home .rb__big .nu{font-family:var(--sans);font-weight:900;color:var(--acc);line-height:1;
font-size:clamp(2rem,4.4vw,3.25rem);letter-spacing:-.01em;}
.home .rb__big .un{font-family:var(--sans);font-weight:900;color:var(--acc);font-size:clamp(1rem,1.7vw,1.25rem);}
.home .rb__note{display:inline-block;margin-top:.875rem;border:1px solid #ddd;border-radius:.25rem;
padding:.5rem .75rem;font-size:clamp(.6875rem,1.15vw,.875rem);font-weight:700;color:#1a1a1a;}
.home .rb__desc{margin-top:.875rem;font-size:clamp(.6875rem,1.1vw,.8125rem);line-height:1.9;color:#555;}
.home .rb__stats{display:grid;grid-template-columns:1fr 1fr;margin-top:1rem;border-top:1px solid #e6e5e2;border-bottom:1px solid #e6e5e2;}
.home .rb__stat{padding:.75rem .5rem;text-align:center;}
.home .rb__stat + .rb__stat{border-left:1px solid #e6e5e2;}
.home .rb__stat .k{font-size:.75rem;font-weight:700;color:#333;}
.home .rb__stat .v{margin-top:.125rem;font-family:var(--sans);font-weight:900;color:var(--acc);
font-size:clamp(1.25rem,2.4vw,1.75rem);line-height:1.2;}
.home .rb__stat .v small{font-size:.6em;}
.home .rb__ba{display:flex;align-items:center;gap:.5rem;flex:0 0 auto;}
.home .rb__shot{position:relative;width:clamp(4.5rem,9vw,7.5rem);}
.home .rb__shot img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;border-radius:.25rem;}
.home .rb__tag{position:absolute;top:.375rem;left:50%;transform:translateX(-50%);
font-family:var(--sans);font-weight:700;font-size:.625rem;letter-spacing:.1em;
color:#fff;background:#6b6b6b;padding:.1875rem .5rem;border-radius:.125rem;white-space:nowrap;}
.home .rb__tag--after{background:var(--acc);}
.home .rb__chartwrap{margin-top:1.5rem;}
.home .rb__chartttl{display:flex;align-items:center;gap:.375rem;font-size:.75rem;font-weight:700;color:#1a1a1a;margin-bottom:.25rem;}
.home .rb__chartttl::before{content:"";width:0;height:0;border-left:6px solid var(--acc);
border-top:4px solid transparent;border-bottom:4px solid transparent;}
.home .cht{width:100%;height:auto;display:block;overflow:visible;}
.home .cht .ax{font-family:var(--sans);font-size:10px;fill:#8a8a8a;}
.home .cht .val{font-family:var(--sans);font-size:11px;font-weight:700;fill:#1a1a1a;}
.home .cht .val--last{font-size:14px;fill:var(--acc);}
.home .rb__badge{display:inline-block;margin-top:.5rem;background:var(--acc);color:#fff;
font-family:var(--sans);font-weight:700;font-size:.75rem;line-height:1.4;
padding:.375rem .75rem;border-radius:.25rem;}
.home .rb__foot{margin-top:2rem;text-align:center;font-size:.75rem;color:#8a8a8a;}
.home .mt{background:var(--bk);color:#fff;}
.home .mt__in{max-width:72rem;margin:0 auto;padding:5.5rem clamp(1.25rem,4vw,3rem) 6rem;}
.home .mt__h{font-family:var(--serif);font-weight:700;text-align:center;color:#fff;
font-size:clamp(1.375rem,3.4vw,2.5rem);line-height:1.65;letter-spacing:.04em;}
.home .mt__h .gk-gold{filter:drop-shadow(0 .0625rem .125rem rgba(0,0,0,.6));}
.home .mt__lead{max-width:42rem;margin:1.5rem auto 0;text-align:center;font-weight:500;
font-size:clamp(.8125rem,1.4vw,1rem);line-height:2.05;color:rgba(255,255,255,.78);}
.home .mt__grid{display:grid;grid-template-columns:repeat(3,1fr);
gap:clamp(1rem,2.4vw,1.75rem);margin-top:3.25rem;}
.home .mt__card{position:relative;display:flex;flex-direction:column;
border:1px solid rgba(201,164,95,.45);background:rgba(255,255,255,.02);}
.home .mt__ph{margin:0;position:relative;overflow:hidden;}
.home .mt__ph img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;}
.home .mt__ph::after{content:"";position:absolute;inset:0;pointer-events:none;
background:linear-gradient(180deg,rgba(8,8,10,0) 55%,rgba(8,8,10,.55) 100%);}
.home .mt__body{padding:clamp(1.375rem,2.6vw,2rem) clamp(1.25rem,2.4vw,1.75rem) clamp(1.625rem,3vw,2.25rem);}
.home .mt__body .mt__no{font-family:"Oswald",sans-serif;font-size:.75rem;font-weight:600;letter-spacing:.2em;
color:#d4af37;display:flex;align-items:center;gap:.625rem;}
.home .mt__body .mt__no::after{content:"";flex:1;height:1px;background:rgba(212,175,55,.35);}
.home .mt__t{margin-top:1.125rem;font-family:var(--serif);font-weight:700;color:#fff;
font-size:clamp(1.125rem,2.2vw,1.5rem);line-height:1.5;letter-spacing:.02em;}
.home .mt__tag{display:inline-block;margin-top:.875rem;border:1px solid rgba(212,175,55,.55);
color:#d4af37;font-size:.6875rem;font-weight:700;letter-spacing:.06em;padding:.25rem .5625rem;}
.home .mt__d{margin-top:.875rem;font-size:clamp(.75rem,1.3vw,.9375rem);line-height:1.95;
color:rgba(255,255,255,.72);}
.home .ka{background:#fff;color:#1a1a1a;--kred:#c8102e;}
.home .ka__in{max-width:70rem;margin:0 auto;padding:5.25rem clamp(1.25rem,4vw,3rem) 5.75rem;}
.home .ka__badge{display:inline-flex;align-items:center;gap:.625rem;font-size:clamp(.6875rem,1.15vw,.875rem);
font-weight:700;letter-spacing:.06em;color:#a5822f;border:1px solid rgba(143,111,46,.55);padding:.4375rem .875rem;}
.home .ka__h{margin-top:1.25rem;font-family:var(--serif);font-weight:700;color:#1a1a1a;
font-size:clamp(1.375rem,3.4vw,2.375rem);line-height:1.55;letter-spacing:.03em;}
.home .ka__lead{margin-top:1.125rem;max-width:44rem;font-size:clamp(.8125rem,1.4vw,1rem);
line-height:2.05;color:#555;font-weight:500;}
.home .ka__sv .pre{font-size:clamp(.8125rem,1.5vw,1.0625rem);font-weight:700;color:#666;}
.home .ka__sv .nu{font-family:var(--sans);font-weight:900;color:var(--kred);line-height:1;
font-size:clamp(2.25rem,5.2vw,3.75rem);letter-spacing:-.01em;}
.home .ka__sv .un{font-family:var(--sans);font-weight:900;color:var(--kred);font-size:clamp(1rem,2vw,1.5rem);}
.home .ka__cases{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1rem,2.4vw,1.75rem);margin-top:1.5rem;}
.home .ka__case{border:1px solid rgba(143,111,46,.45);padding:clamp(1.375rem,2.6vw,1.875rem);}
.home .ka__ck{font-family:"Oswald",sans-serif;font-size:.6875rem;font-weight:600;letter-spacing:.18em;color:#a5822f;}
.home .ka__cv{margin-top:.75rem;font-family:var(--sans);font-weight:900;color:#1a1a1a;line-height:1.2;
font-size:clamp(1.5rem,3.2vw,2.25rem);}
.home .ka__cv em{font-style:normal;color:var(--kred);}
.home .ka__ct{margin-top:.375rem;font-weight:700;font-size:clamp(.8125rem,1.4vw,1rem);color:#1a1a1a;}
.home .ka__cd{margin-top:.625rem;font-size:clamp(.6875rem,1.1vw,.8125rem);line-height:1.85;color:#555;}
.home .ka__note{margin-top:1.5rem;font-size:.6875rem;color:#8a8a8a;line-height:1.8;}
.home .ka__link{display:inline-flex;align-items:center;gap:.625rem;margin-top:1.75rem;
color:#a5822f;text-decoration:none;font-weight:700;font-size:clamp(.8125rem,1.4vw,1rem);
border-bottom:1px solid rgba(143,111,46,.5);padding-bottom:.375rem;}
.home .ka__nums{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2.4vw,1.75rem);margin-top:2.5rem;}
.home .ka__num{border:1px solid #e8e6e1;background:#faf9f7;
padding:clamp(1.25rem,2.4vw,1.75rem) clamp(1rem,2vw,1.5rem);}
.home .ka__num .k{font-size:clamp(.75rem,1.25vw,.875rem);font-weight:700;color:#1a1a1a;}
.home .ka__num .v{display:flex;align-items:baseline;gap:.125rem;margin-top:.375rem;}
.home .ka__num .pre{font-size:clamp(.75rem,1.3vw,.9375rem);font-weight:700;color:#666;}
.home .ka__num .nu{font-family:var(--sans);font-weight:900;color:var(--kred);line-height:1;
font-size:clamp(1.875rem,4.4vw,3.125rem);letter-spacing:-.01em;}
.home .ka__num .un{font-family:var(--sans);font-weight:900;color:var(--kred);font-size:clamp(.9375rem,1.8vw,1.375rem);}
.home .ka__num .n{margin-top:.625rem;font-size:clamp(.625rem,1vw,.75rem);line-height:1.75;color:#8a8a8a;}
.home .ka__cba{display:flex;align-items:stretch;gap:.375rem;padding:clamp(1rem,2vw,1.375rem)
clamp(1rem,2vw,1.375rem) 0;}
.home .ka__shot{position:relative;flex:1;min-width:0;}
.home .ka__shot img{width:100%;aspect-ratio:5/6;object-fit:cover;display:block;}
.home .ka__tag{position:absolute;top:.375rem;left:50%;transform:translateX(-50%);
font-family:var(--sans);font-weight:700;font-size:.625rem;letter-spacing:.1em;
color:#fff;background:#6b6b6b;padding:.1875rem .5rem;white-space:nowrap;}
.home .ka__tag--after{background:var(--kred);}
.home .ka__ar{align-self:center;color:var(--kred);font-size:.875rem;line-height:1;flex:0 0 auto;}
.home .ka__cbody{padding:clamp(1.125rem,2.2vw,1.5rem) clamp(1.125rem,2.2vw,1.5rem) clamp(1.375rem,2.6vw,1.75rem);}
.home .ka__cbody .ka__cv{margin-top:.5rem;}
.home .ka__single{margin:0;padding:clamp(1rem,2vw,1.375rem) clamp(1rem,2vw,1.375rem) 0;}
.home .ka__single img{width:100%;aspect-ratio:16/9;object-fit:cover;display:block;}
.home .ka__top{display:grid;grid-template-columns:1fr .82fr;gap:clamp(1.75rem,4vw,3.5rem);align-items:center;}
.home .ka__lft{min-width:0;}
.home .ka__hero{margin:0;position:relative;}
.home .ka__hero img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;}
.home .ka__nums{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:3rem;
border-top:1px solid #e8e6e1;border-bottom:1px solid #e8e6e1;}
.home .ka__num{position:relative;background:none;border:none;
padding:clamp(1.625rem,3vw,2.25rem) clamp(1rem,2.2vw,1.75rem);}
.home .ka__num + .ka__num{border-left:1px solid #e8e6e1;}
.home .ka__num .k{position:relative;padding-left:.875rem;font-size:clamp(.75rem,1.25vw,.875rem);
font-weight:700;color:#1a1a1a;letter-spacing:.04em;}
.home .ka__num .k::before{content:"";position:absolute;left:0;top:.35em;width:3px;height:1em;
background:var(--kred);}
.home .ka__num .v{display:flex;align-items:baseline;gap:.125rem;margin-top:.625rem;}
.home .ka__num .pre{font-size:clamp(.75rem,1.3vw,.9375rem);font-weight:700;color:#8a8a8a;align-self:flex-end;
margin-bottom:.35em;}
.home .ka__num .nu{font-family:var(--sans);font-weight:900;color:var(--kred);line-height:.9;
font-size:clamp(2.25rem,5.6vw,4rem);letter-spacing:-.02em;}
.home .ka__num .un{font-family:var(--sans);font-weight:900;color:var(--kred);
font-size:clamp(.9375rem,1.8vw,1.375rem);}
.home .ka__num .n{margin-top:.75rem;font-size:clamp(.625rem,1vw,.75rem);line-height:1.75;color:#8a8a8a;}
.home .ch{background:#fff;color:#1a1a1a;}
.home .ch__in{max-width:70rem;margin:0 auto;padding:5.5rem clamp(1.25rem,4vw,3rem) 6rem;}
.home .ch__h{font-family:var(--sans);font-weight:900;text-align:center;
font-size:clamp(1.4375rem,3.8vw,2.625rem);line-height:1.45;letter-spacing:.01em;}
.home .ch__sub{text-align:center;margin-top:1rem;font-size:clamp(.8125rem,1.4vw,1rem);
color:#555;line-height:1.9;font-weight:500;}
.home .ch__tl{--c:7.5rem;--g:clamp(1rem,2.4vw,1.75rem);
display:grid;grid-template-columns:repeat(3,1fr);gap:var(--g);margin-top:3.25rem;}
.home .ch__step{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;}
.home .ch__circle{width:var(--c);height:var(--c);border-radius:50%;background:#fff;
border:1.5px solid var(--gk-red);display:flex;align-items:center;justify-content:center;
position:relative;z-index:2;margin-bottom:1.5rem;} .home .ch__circle--ill{padding:.9rem;margin-bottom:.625rem;}
.home .ch__circle--ill img{width:100%;height:auto;display:block;}
.home .ch__wk{display:inline-flex;align-items:baseline;gap:.125rem;margin-bottom:.75rem;}
.home .ch__wk b{font-family:var(--sans);font-weight:900;color:var(--gk-red);
font-size:clamp(1.25rem,2.6vw,1.75rem);line-height:1;}
.home .ch__wk i{font-style:normal;font-size:.75rem;font-weight:700;color:#1a1a1a;}
.home .ch__circle span{display:inline-flex;align-items:baseline;gap:.125rem;}
.home .ch__circle b{font-family:var(--sans);font-weight:900;color:var(--gk-red);
font-size:clamp(1.5rem,3vw,2.125rem);line-height:1;}
.home .ch__circle i{font-style:normal;font-size:.8125rem;font-weight:700;color:#1a1a1a;}
.home .ch__step:not(:last-child)::after{content:"";position:absolute;top:calc(var(--c)/2);left:50%;
width:calc(100% + var(--g));height:1.5px;background:var(--gk-red);opacity:.35;
transform:translateY(-50%);z-index:0;}
.home .ch__t{font-family:var(--serif);font-weight:700;letter-spacing:.02em;
font-size:clamp(.9375rem,1.9vw,1.25rem);line-height:1.6;}
.home .ch__note{margin-top:2.5rem;text-align:center;font-size:.75rem;color:#8a8a8a;}
.home .ch__three{display:block;margin-top:4rem;padding-top:3.25rem;border-top:1px solid #e8e6e1;}
.home .ch__3h{font-family:var(--serif);font-weight:700;text-align:center;
font-size:clamp(1.1875rem,2.8vw,1.875rem);line-height:1.55;letter-spacing:.03em;} .home .ch__3grid{display:flex;flex-direction:column;gap:clamp(1rem,2vw,1.5rem);
margin-top:2.75rem;}
.home .ch__3i{position:relative;display:grid;
grid-template-columns:clamp(7rem,15vw,13rem) 1fr;
gap:clamp(1.25rem,2.6vw,2.25rem);align-items:center;padding:0;
width:min(48rem,100%);margin-inline:auto;}
.home .ch__3i:nth-child(even){grid-template-columns:1fr clamp(7rem,15vw,13rem);}
.home .ch__3i:nth-child(even) .ch__3ic{order:2;}
.home .ch__3i:nth-child(even) .ch__3tx{order:1;text-align:right;}
.home .ch__3t{font-family:var(--serif);font-weight:700;font-size:clamp(1rem,2vw,1.3125rem);letter-spacing:.02em;}
.home .ch__3d{margin-top:.625rem;font-size:clamp(.75rem,1.3vw,.9375rem);line-height:1.9;color:#555;}
.home .rb__em{color:#1a1a1a;font-weight:700;border-bottom:1px solid rgba(200,16,46,.45);}
.home .rb__foot{margin-top:2.25rem;text-align:center;}
.home .rb__foot p{font-size:.75rem;color:#8a8a8a;line-height:1.9;}
.home .rb__foot p + p{margin-top:.5rem;}
.home .rb__link{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.25rem;
color:#a5822f;text-decoration:none;font-weight:700;font-size:clamp(.75rem,1.3vw,.9375rem);
border-bottom:1px solid rgba(143,111,46,.5);padding-bottom:.3125rem;}
.home .wy{background:var(--bk);color:#fff;}
.home .wy__in{max-width:70rem;margin:0 auto;padding:5.5rem clamp(1.25rem,4vw,3rem) 6rem;}
.home .wy__h{font-family:var(--sans);font-weight:900;text-align:center;color:#fff;
font-size:clamp(1.4375rem,3.8vw,2.625rem);line-height:1.45;letter-spacing:.01em;}
.home .wy__sub{text-align:center;margin-top:1rem;font-size:clamp(.8125rem,1.4vw,1rem);
color:rgba(255,255,255,.72);line-height:1.9;font-weight:500;}
.home .wy__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0 clamp(1.25rem,3vw,2.75rem);
margin-top:3rem;border-top:1px solid rgba(255,255,255,.16);}
.home .wy__i{position:relative;padding:1.875rem .25rem 2rem;}
.home .wy__i + .wy__i::before{content:"";position:absolute;left:calc(-1 * clamp(.625rem,1.5vw,1.375rem));
top:1.875rem;bottom:.5rem;width:1px;background:rgba(255,255,255,.14);}
.home .wy__t{font-family:var(--serif);font-weight:700;letter-spacing:.02em;color:#fff;
font-size:clamp(1rem,2vw,1.3125rem);line-height:1.5;}
.home .wy__d{margin-top:.75rem;font-size:clamp(.75rem,1.3vw,.9375rem);line-height:1.9;
color:rgba(255,255,255,.7);}
.home .wy__space{display:grid;grid-template-columns:1fr .95fr;align-items:center;
gap:clamp(1.5rem,3.4vw,3rem);margin-top:clamp(2rem,4vw,3.25rem);}
.home .sp{background:var(--bk);color:#fff;}
.home .sp__in{max-width:72rem;margin:0 auto;padding:5.25rem clamp(1.25rem,4vw,3rem) 5.75rem;}
.home .sp__h{font-family:var(--serif);font-weight:700;text-align:center;color:#fff;
font-size:clamp(1.375rem,3.4vw,2.375rem);line-height:1.55;letter-spacing:.03em;}
.home .sp__d{max-width:42rem;margin:1.25rem auto 0;text-align:center;
font-size:clamp(.8125rem,1.35vw,.96875rem);line-height:2;color:rgba(255,255,255,.75);}
.home .sp__grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:clamp(.625rem,1.4vw,1rem);margin-top:2.75rem;}
.home .sp__grid img{width:100%;height:100%;object-fit:cover;display:block;}
.home .sp__g1{grid-row:span 2;}
.home .sp__grid figure{margin:0;overflow:hidden;aspect-ratio:4/3;}
.home .sp__grid .sp__g1{aspect-ratio:auto;}
.home .ch__3ic{display:block;width:100%;color:#a5822f;margin-bottom:0;}
.home .ch__3ic svg,
.home .ch__3ic img{width:100%;height:auto;display:block;}
.home .wy__iph{display:block;}
.home .wy__grid{border-top:none;gap:clamp(1rem,2.4vw,1.75rem);}
.home .wy__i{padding:0;}
.home .wy__i + .wy__i::before{display:none;}
.home .wy__iph{display:block;margin:0 0 1.25rem;}
.home .wy__iph img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;}
.home .rs{background:var(--bk);color:#fff;}
.home .rs__in{max-width:64rem;margin:0 auto;padding:5.25rem clamp(1.25rem,4vw,3rem) 5.75rem;}
.home .rs__h{font-family:var(--sans);font-weight:900;text-align:center;color:#fff;
font-size:clamp(1.375rem,3.6vw,2.5rem);line-height:1.4;letter-spacing:.01em;}
.home .rs__sub{text-align:center;margin-top:.875rem;font-weight:700;
font-size:clamp(.8125rem,1.4vw,1rem);color:rgba(255,255,255,.8);}
.home .rs__list{display:grid;gap:clamp(.875rem,1.8vw,1.25rem);margin-top:2.75rem;}
.home .rs__c{position:relative;display:grid;grid-template-columns:auto clamp(6rem,14vw,11rem) 1fr;
align-items:center;gap:clamp(.875rem,2.2vw,1.75rem);
background:#1c1c1f;border-radius:.75rem;overflow:hidden;
padding:clamp(1.25rem,2.4vw,1.75rem) clamp(1.25rem,2.4vw,1.875rem)
clamp(1.25rem,2.4vw,1.75rem) clamp(1.5rem,2.8vw,2.125rem);}
.home .rs__c::before{content:"";position:absolute;left:0;top:0;bottom:0;width:6px;background:var(--gk-red);}
.home .rs__ic{display:block;color:#c9a45f;}
.home .rs__ic svg,
.home .rs__ic img{width:100%;height:auto;display:block;}
.home .rs__t{font-family:var(--sans);font-weight:900;color:#e2c882;line-height:1.45;
font-size:clamp(.9375rem,1.9vw,1.25rem);}
.home .rs__d{margin-top:.625rem;font-size:clamp(.75rem,1.25vw,.875rem);line-height:1.85;
color:rgba(255,255,255,.76);}
.home .rs__foot{margin-top:2.25rem;text-align:center;font-weight:700;
font-size:clamp(.8125rem,1.5vw,1.0625rem);color:#fff;
padding-top:1.5rem;border-top:1px solid rgba(201,164,95,.35);}
.home .mt{background:#fff;color:#1a1a1a;}
.home .mt__h{color:#1a1a1a;}
.home .mt__h .gk-gold{
background-image:linear-gradient(178deg,#c19a44 6%,#b08d3f 28%,#9a7a30 60%,#7d5f26 100%);
filter:none;}
.home .mt__lead{color:#555;}
.home .mt__card{border:1px solid rgba(165,130,47,.55);background:#fff;
box-shadow:0 .75rem 2rem -1.375rem rgba(0,0,0,.28);}
.home .mt__ph::after{background:linear-gradient(180deg,rgba(255,255,255,0) 62%,rgba(255,255,255,.5) 100%);}
.home .mt__body .mt__no{color:#a5822f;}
.home .mt__body .mt__no::after{background:rgba(165,130,47,.3);}
.home .mt__t{color:#1a1a1a;}
.home .mt__d{color:#555;}
.home .mt__tag{border-color:rgba(165,130,47,.6);color:#8f6f2e;}
.home .wy{background:#fff;color:#1a1a1a;}
.home .wy__h{color:#1a1a1a;}
.home .wy__sub{color:#555;}
.home .wy__t{color:#1a1a1a;}
.home .wy__d{color:#555;}
.home .rs{background:#f7f5f1;color:#1a1a1a;}
.home .rs__h{color:#1a1a1a;}
.home .rs__sub{color:#555;}
.home .rs__c{background:#fff;border:1px solid #e6e3dc;
box-shadow:0 .625rem 1.75rem -1.25rem rgba(0,0,0,.25);}
.home .rs__ic{color:#a5822f;}
.home .rs__t{color:#8f6f2e;}
.home .rs__d{color:#555;}
.home .rs__foot{color:#1a1a1a;border-top-color:rgba(165,130,47,.4);}
.home .rs{background:#ededeb;}
.home .rs__c{grid-template-columns:clamp(6rem,14vw,11rem) 1fr;
padding:clamp(1.25rem,2.4vw,1.75rem) clamp(1.5rem,2.8vw,2.125rem);}
.home .rs__c::before{display:none;}
.home .rs__t{white-space:nowrap;font-size:clamp(.9375rem,1.8vw,1.1875rem);}
.home .rs__foot{position:relative;margin-top:clamp(2.25rem,4vw,3.25rem);text-align:center;
padding:clamp(1.75rem,3.2vw,2.5rem) clamp(1.25rem,2.6vw,2rem);border:none;
background:#fff;border-top:2px solid;
border-image:linear-gradient(90deg,rgba(201,164,95,0),#c9a45f 30%,#8f6f2e 70%,rgba(201,164,95,0)) 1;
box-shadow:0 .625rem 1.75rem -1.25rem rgba(0,0,0,.25);}
.home .rs__ft{font-family:var(--serif);font-weight:700;color:#1a1a1a;letter-spacing:.03em;
font-size:clamp(1.0625rem,2.4vw,1.6875rem);line-height:1.6;}
.home .sp__grid figure{background:#17171a;}
.home .km{background:#fff;color:#1a1a1a;}
.home .km__top{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1fr);align-items:center;}
.home .km__ph{margin:0;background:#1f1f22;}
.home .km__ph img{width:100%;aspect-ratio:4/5;object-fit:cover;display:block;}
.home .km__body{padding:clamp(2.5rem,5vw,4.5rem) clamp(1.5rem,4vw,4rem);}
.home .km__eb{display:inline-flex;align-items:center;gap:1rem;font-family:"Oswald",sans-serif;
font-size:clamp(.6875rem,1.15vw,.875rem);font-weight:600;letter-spacing:.2em;color:var(--gk-red);}
.home .km__eb::after{content:"";width:clamp(2rem,4vw,3.5rem);height:1px;background:var(--gk-red);}
.home .km__h{margin-top:1.25rem;font-family:var(--serif);font-weight:700;letter-spacing:.02em;
font-size:clamp(1.375rem,3.4vw,2.5rem);line-height:1.45;}
.home .km__lead{margin-top:1.125rem;font-family:var(--serif);font-weight:700;color:var(--gk-red);
font-size:clamp(1rem,2vw,1.375rem);line-height:1.6;letter-spacing:.02em;}
.home .km__p{margin-top:1.25rem;font-size:clamp(.8125rem,1.3vw,.9375rem);line-height:2;color:#555;}
.home .km__p + .km__p{margin-top:1rem;}
.home .km__stats{display:grid;grid-template-columns:repeat(4,1fr);margin-top:2rem;
border-top:1px solid #e8e6e1;}
.home .km__st{position:relative;padding:1.5rem .5rem 0;text-align:center;}
.home .km__st + .km__st{border-left:1px solid #e8e6e1;}
.home .km__sic{display:block;width:clamp(1.75rem,3.2vw,2.5rem);margin:0 auto;color:var(--gk-red);}
.home .km__sic svg,
.home .km__sic img{width:100%;height:auto;display:block;}
.home .km__sk{margin-top:.75rem;font-size:clamp(.625rem,1.05vw,.8125rem);font-weight:700;color:#1a1a1a;}
.home .km__sv{margin-top:.625rem;display:flex;align-items:baseline;justify-content:center;gap:.0625rem;}
.home .km__sv .pre{font-family:var(--serif);font-weight:700;font-size:clamp(.875rem,1.5vw,1.125rem);color:var(--gk-red);}
.home .km__sv .nu{font-family:var(--serif);font-weight:700;color:var(--gk-red);line-height:1;
font-size:clamp(1.375rem,2.8vw,2rem);}
.home .km__sv .un{font-size:clamp(.6875rem,1.1vw,.875rem);font-weight:700;color:var(--gk-red);}
.home .km__sn{margin-top:.375rem;font-size:clamp(.5625rem,.95vw,.6875rem);line-height:1.6;color:#8a8a8a;}
.home .km__cards{max-width:72rem;margin:0 auto;padding:clamp(1.5rem,3vw,2.5rem) clamp(1.25rem,4vw,3rem) clamp(3rem,5vw,4.5rem);
display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2.4vw,1.75rem);}
.home .km__c{border:1px solid #e8e6e1;border-radius:.75rem;background:#fff;
padding:clamp(1.375rem,2.6vw,2rem);box-shadow:0 .5rem 1.5rem -1.25rem rgba(0,0,0,.25);}
.home .km__ct{font-weight:900;font-size:clamp(.9375rem,1.8vw,1.125rem);line-height:1.5;color:#1a1a1a;}
.home .km__cb{display:grid;grid-template-columns:auto 1fr;gap:1rem;align-items:start;margin-top:1.125rem;}
.home .km__cic{width:clamp(1.75rem,3vw,2.375rem);color:var(--gk-red);}
.home .km__cic svg,
.home .km__cic img{width:100%;height:auto;display:block;}
.home .km__cd{font-size:clamp(.75rem,1.2vw,.875rem);line-height:1.9;color:#555;}
.home .ft{background:#fff;color:#1a1a1a;}
.home .ft__top{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1fr);align-items:center;}
.home .ft__ph{margin:0;position:relative;background:#1f1f22;}
.home .ft__ph img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block;}
.home .ft__ph::after{content:"";position:absolute;inset:0;
background:linear-gradient(90deg,rgba(255,255,255,0) 55%,rgba(255,255,255,.85) 88%,#fff 100%);}
.home .ft__body{padding:clamp(2.5rem,5vw,4.5rem) clamp(1.5rem,4vw,4rem);}
.home .ft__h{margin-top:1.25rem;font-family:var(--serif);font-weight:700;letter-spacing:.02em;
font-size:clamp(1.375rem,3.4vw,2.5rem);line-height:1.45;}
.home .ft__h em{font-style:normal;color:var(--gk-red);}
.home .ft__p{margin-top:1.5rem;font-size:clamp(.8125rem,1.3vw,.9375rem);line-height:2.05;color:#555;}
.home .ft__cards{max-width:72rem;margin:0 auto;
padding:clamp(1.5rem,3vw,2.5rem) clamp(1.25rem,4vw,3rem) 0;
display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2.4vw,1.75rem);}
.home .ft__c{border-radius:.75rem;overflow:hidden;background:#f6f5f3;
box-shadow:0 .5rem 1.5rem -1.25rem rgba(0,0,0,.25);}
.home .ft__c figure{margin:0;background:#1f1f22;}
.home .ft__c img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;}
.home .ft__cb{padding:clamp(1.125rem,2.2vw,1.625rem);}
.home .ft__ct{text-align:center;font-weight:900;font-size:clamp(.875rem,1.6vw,1.0625rem);color:#1a1a1a;}
.home .ft__cd{margin-top:.875rem;padding-top:.875rem;border-top:1px solid #e2e0dc;
font-size:clamp(.75rem,1.2vw,.875rem);line-height:1.9;color:#555;}
.home .ft__note{max-width:72rem;margin:0 auto;padding:2rem clamp(1.25rem,4vw,3rem) clamp(3rem,5vw,4.5rem);
text-align:center;font-size:clamp(.6875rem,1.1vw,.8125rem);line-height:1.9;color:#8a8a8a;}
.home .trainers{background:#fff;padding:clamp(3.5rem,6vw,5rem) 0;}
.home .trainers .wrap{width:min(75rem,90%);margin:0 auto;}
.home .trainers-header{margin-bottom:2rem;}
.home .trainers-header h2{font-family:var(--sans);font-weight:900;color:#1a1a1a;
font-size:clamp(1.4375rem,3.4vw,2.5rem);line-height:1.5;letter-spacing:.02em;margin-bottom:1rem;}
.home .trainers-header p{font-size:clamp(.8125rem,1.35vw,1rem);line-height:2;color:#555;}
.home .trainer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;}
.home .trainer-card{position:relative;aspect-ratio:2/3;overflow:hidden;cursor:pointer;
background:#141414;transition:box-shadow .4s;}
.home .trainer-card:hover{box-shadow:0 0 0 1px rgba(201,169,110,.4);}
.home .trainer-card:hover .img-placeholder img{transform:scale(1.03);}
.home .trainer-card .img-placeholder{position:absolute;inset:0;}
.home .trainer-card .img-placeholder img{width:100%;height:100%;object-fit:cover;display:block;
transition:transform .6s ease;}
.home .trainer-card .name-bar{position:absolute;bottom:0;left:0;right:0;
padding:1.75rem 1.5rem 1rem;
background:linear-gradient(0deg,rgba(10,10,10,.97) 0%,rgba(10,10,10,.85) 40%,
rgba(10,10,10,.4) 70%,rgba(10,10,10,0) 100%);}
.home .trainer-card .name-bar .role{font-family:"Oswald",sans-serif;
font-size:clamp(.625rem,1.05vw,.875rem);letter-spacing:.2em;font-weight:500;
text-transform:uppercase;color:#fff;text-shadow:0 1px 4px rgba(0,0,0,.5);margin-bottom:.25rem;}
.home .trainer-card .name-bar .name{font-family:"Bebas Neue",sans-serif;
font-size:clamp(1.75rem,3.4vw,3.2rem);font-weight:400;color:#c9a45f;line-height:1;
letter-spacing:.08em;text-shadow:0 .125rem .75rem rgba(0,0,0,.5);}
.home .trainers__note{margin-top:1.5rem;font-size:.75rem;color:#8a8a8a;}
.home .ba{background:#fff;color:#1a1a1a;}
.home .ba--2{background:#f7f6f4;}
.home .ba__in{max-width:66rem;margin:0 auto;padding:5.25rem clamp(1.25rem,4vw,3rem) 5.75rem;}
.home .ba__h{font-family:var(--serif);font-weight:700;text-align:center;letter-spacing:.03em;
font-size:clamp(1.3125rem,3.2vw,2.25rem);line-height:1.55;}
.home .ba__sub{text-align:center;margin-top:.875rem;font-weight:700;
font-size:clamp(.8125rem,1.4vw,1rem);color:#a5822f;letter-spacing:.06em;} .home .ba__list{margin-top:2.75rem;display:grid;gap:clamp(1.75rem,3.4vw,3rem);}
.home .ba__foot{margin-top:2.5rem;text-align:center;}
.home .ba__ft{font-family:var(--serif);font-weight:700;letter-spacing:.03em;
font-size:clamp(1.0625rem,2.2vw,1.5rem);line-height:1.65;}
.home .ba__ft em{font-style:normal;color:var(--gk-red);}
.home .ba__row{display:grid;grid-template-columns:1fr auto 1fr;align-items:stretch;
gap:clamp(.625rem,1.8vw,1.375rem);}
.home .ba__cell{display:flex;flex-direction:column;overflow:hidden;border-radius:.5rem;}
.home .ba__cell figure{margin:0;background:#e8e6e2;}
.home .ba__cell img{width:100%;aspect-ratio:22/15;object-fit:cover;display:block;}
.home .ba__cap{flex:1;display:flex;align-items:center;
padding:clamp(.75rem,1.6vw,1.125rem) clamp(.75rem,1.6vw,1.125rem);
font-size:clamp(.75rem,1.25vw,.9375rem);line-height:1.6;}
.home .ba__lb{position:absolute;top:.5rem;left:.5rem;z-index:2;
font-family:"Oswald",sans-serif;font-size:.625rem;font-weight:600;letter-spacing:.16em;
padding:.1875rem .5rem;border-radius:.125rem;}
.home .ba__cell figure{position:relative;} .home .ba__cell--b{background:#eeecea;border:1px solid #d5d2cd;}
.home .ba__cell--b figure{background:#d8d6d2;}
.home .ba__cell--b .ba__lb{background:rgba(60,60,60,.85);color:#fff;}
.home .ba__cell--b .ba__cap{color:#7a7a7a;}
.home .ba__cell--a{background:#1c1a16;}
.home .ba__cell--a figure{background:#24211a;}
.home .ba__cell--a .ba__lb{background:linear-gradient(160deg,#e2c882,#c9a45f 50%,#8f6f2e);color:#1a1a1a;}
.home .ba__cell--a .ba__cap{color:#f0e6cf;font-weight:700;}
.home .ba__ar{align-self:center;color:var(--gk-red);font-size:1.0625rem;line-height:1;flex:0 0 auto;}
.home .vc{background:#fff;color:#1a1a1a;}
.home .vc__in{max-width:70rem;margin:0 auto;padding:5.5rem clamp(1.25rem,4vw,3rem) 6rem;}
.home .vc__h{font-family:var(--sans);font-weight:900;text-align:center;
font-size:clamp(1.4375rem,3.6vw,2.5rem);line-height:1.45;letter-spacing:.01em;}
.home .vc__sub{text-align:center;margin-top:1rem;font-size:clamp(.8125rem,1.4vw,1rem);
color:#555;line-height:1.9;font-weight:500;}
.home .vc__list{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2.4vw,1.75rem);margin-top:3rem;}
.home .vc__c{position:relative;background:#fff;border:1px solid #e6e4e0;
padding:clamp(1.75rem,3vw,2.25rem) clamp(1.375rem,2.4vw,1.875rem) clamp(1.5rem,2.6vw,2rem);
display:flex;flex-direction:column;}
.home .vc__top{position:relative;z-index:1;}
.home .vc__attrs{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem;
font-size:clamp(.6875rem,1.1vw,.8125rem);color:#8a8a8a;font-weight:500;}
.home .vc__sep{width:1px;height:.75rem;background:#d8d6d2;}
.home .vc__stars{display:flex;gap:.125rem;margin-top:.625rem;}
.home .vc__star{width:clamp(.875rem,1.5vw,1.0625rem);height:auto;fill:#e2e0dc;}
.home .vc__star.is-filled{fill:var(--gk-red);}
.home .vc__b{margin-top:.875rem;font-size:clamp(.75rem,1.25vw,.875rem);line-height:1.95;color:#555;}
.home .vc__more{margin-top:2.5rem;text-align:center;}
.home .vc__btn{display:inline-flex;align-items:center;gap:.75rem;text-decoration:none;
border:1px solid rgba(165,130,47,.6);color:#8f6f2e;font-weight:700;letter-spacing:.06em;
font-size:clamp(.8125rem,1.35vw,.9375rem);padding:.9375rem 2rem;transition:background .2s;}
.home .vc__btn:hover{background:#faf7f0;}
.home .vc__btn::after{content:"";width:.4375rem;height:.4375rem;
border-top:1.5px solid currentColor;border-right:1.5px solid currentColor;transform:rotate(45deg);}
.home .vc__note{margin-top:1.5rem;text-align:center;font-size:.6875rem;color:#8a8a8a;}
.home .vc__c{justify-content:flex-start;}
.home .vc__b{margin-top:1.125rem;font-size:clamp(.8125rem,1.3vw,.9375rem);line-height:2;color:#333;
flex:1;}
.home .vc__b span{display:block;}
.home .vc__b{overflow:hidden;}
.home .vc__c:not(.is-open) .vc__b{display:-webkit-box;-webkit-box-orient:vertical;
-webkit-line-clamp:5;line-clamp:5;}
.home .vc__more2{margin-top:.875rem;align-self:flex-start;background:none;border:none;padding:0;
cursor:pointer;font-family:var(--sans);font-weight:700;letter-spacing:.04em;
font-size:clamp(.6875rem,1.15vw,.8125rem);color:#8f6f2e;
display:inline-flex;align-items:center;gap:.4375rem;}
.home .vc__more2::after{content:"";width:.375rem;height:.375rem;
border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
transform:rotate(45deg);margin-top:-.1875rem;transition:transform .2s;}
.home .vc__c.is-open .vc__more2::after{transform:rotate(-135deg);margin-top:.1875rem;}
.home .vc__more2 .lbl-close{display:none;}
.home .vc__c.is-open .vc__more2 .lbl-open{display:none;}
.home .vc__c.is-open .vc__more2 .lbl-close{display:inline;}
.home .vc__more2[hidden]{display:none;}
.home .price-section{background:#f2f0ec;color:#1a1a1a;padding:clamp(3.5rem,6vw,5.5rem) 0;}
.home .price-section .wrap{width:min(75rem,90%);margin:0 auto;}
.home .price-section .sec-title{font-family:var(--sans);font-weight:900;text-align:center;
font-size:clamp(1.4375rem,3.6vw,2.5rem);line-height:1.45;letter-spacing:.01em;}
.home .price-section .sec-desc{text-align:center;margin-top:1rem;color:#555;font-weight:500;
font-size:clamp(.8125rem,1.4vw,1rem);}
.home .price-cards{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1rem,2.4vw,1.75rem);
margin-top:clamp(2rem,3.4vw,2.75rem);}
.home .price-card{background:#fff;border:1px solid #e0ddd6;display:flex;flex-direction:column;
box-shadow:0 .625rem 1.75rem -1.375rem rgba(0,0,0,.25);}
.home .price-card__header{padding:clamp(1.25rem,2.2vw,1.625rem) clamp(1.25rem,2.4vw,1.875rem);
border-bottom:1px solid #e8e6e1;background:#faf9f7;}
.home .price-card__header h3{font-family:var(--serif);font-weight:700;letter-spacing:.02em;
font-size:clamp(1.0625rem,2.2vw,1.375rem);line-height:1.4;color:#1a1a1a;}
.home .price-card__header span{display:block;margin-top:.375rem;font-family:"Oswald",sans-serif;
font-size:.6875rem;font-weight:600;letter-spacing:.18em;color:#a5822f;}
.home .price-card__header--gk-red{background:#faf7f0;border-bottom-color:rgba(165,130,47,.4);}
.home .price-card__header--gk-red h3{color:#1a1a1a;}
.home .price-card__body{flex:1;padding:clamp(1rem,2vw,1.5rem) clamp(1.25rem,2.4vw,1.875rem)
clamp(1.25rem,2.2vw,1.75rem);} .home .price-card__tag{display:block;width:fit-content;margin:0 auto 1rem;
border:1px solid rgba(165,130,47,.6);color:#8f6f2e;
font-size:.6875rem;font-weight:700;letter-spacing:.06em;padding:.25rem .625rem;}
.home .price-card__note{font-size:clamp(.75rem,1.2vw,.875rem);line-height:1.85;color:#555;
margin-bottom:1rem;}
.home .price-card__table{width:100%;border-collapse:collapse;}
.home .price-card__table tr{border-bottom:1px solid #f0eeea;}
.home .price-card__table tr:last-child{border-bottom:none;}
.home .price-card__table th{text-align:left;vertical-align:middle;
padding:clamp(.875rem,1.8vw,1.125rem) 0;font-weight:700;color:#1a1a1a;
font-size:clamp(.8125rem,1.3vw,.9375rem);}
.home .price-card__table td{text-align:right;vertical-align:middle;
padding:clamp(.875rem,1.8vw,1.125rem) 0;white-space:nowrap;} .home .price-card__duration{display:inline-block;margin-top:.25rem;font-weight:400;color:#fff;
font-size:clamp(.6875rem,1.05vw,.75rem);}
.home .price-card__original{font-size:clamp(.6875rem,1.05vw,.75rem);color:#a8a8a8;margin-bottom:.1875rem;}
.home .price-card__original s{text-decoration:line-through;}
.home .price-card__val{font-size:clamp(.6875rem,1.1vw,.8125rem);font-weight:700;color:#1a1a1a;}
.home .price-card__num{font-family:var(--sans);font-weight:900;color:#1a1a1a;line-height:1;
font-size:clamp(1.25rem,2.4vw,1.75rem);letter-spacing:-.01em;margin-right:.0625rem;}
.home .price-card__num--campaign{color:var(--gk-red);}
.home .price-card__per{margin-top:.25rem;font-weight:400;color:#8a8a8a;
font-size:clamp(.625rem,1vw,.75rem);}
.home .price-card__save{display:inline-block;margin-top:.375rem;background:var(--gk-red);color:#fff;
font-size:.625rem;font-weight:700;letter-spacing:.04em;padding:.1875rem .5rem;}
.home .price-other{margin-top:clamp(1.5rem,3vw,2.25rem);background:#fff;border:1px solid #e0ddd6;
padding:clamp(1.5rem,2.8vw,2.25rem) clamp(1.25rem,2.6vw,2rem);}
.home .price-other__title{font-family:var(--serif);font-weight:700;letter-spacing:.02em;
font-size:clamp(.9375rem,1.8vw,1.1875rem);}
.home .price-other__list{display:grid;grid-template-columns:repeat(3,1fr);gap:0 clamp(1.25rem,3vw,2.5rem);
margin-top:1.125rem;}
.home .price-other__item{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;
padding:.75rem 0;border-bottom:1px solid #f0eeea;font-size:clamp(.75rem,1.2vw,.875rem);}
.home .price-other__item b{font-weight:700;color:var(--gk-red);white-space:nowrap;
font-size:clamp(.8125rem,1.35vw,1rem);}
.home .faq,
.post-type-archive-faq .faq{background:#fff;color:#1a1a1a;padding:clamp(3.5rem,6vw,5.5rem) 0;}
.home .faq .wrap,
.post-type-archive-faq .faq .wrap{width:min(64rem,90%);margin:0 auto;}
.home .faq__header .sec-title,
.post-type-archive-faq .faq__header .sec-title{font-family:var(--sans);font-weight:900;text-align:center;
font-size:clamp(1.4375rem,3.6vw,2.5rem);line-height:1.45;letter-spacing:.01em;}
.home .faq__cats,
.post-type-archive-faq .faq__cats{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem;
margin-top:clamp(1.75rem,3vw,2.5rem);}
.home .faq__cat-btn,
.post-type-archive-faq .faq__cat-btn{background:none;border:1px solid #e0ddd6;color:#555;cursor:pointer;
font-family:var(--sans);font-weight:700;letter-spacing:.04em;
font-size:clamp(.75rem,1.2vw,.875rem);padding:.5625rem 1.125rem;transition:.2s;}
.home .faq__cat-btn:hover,
.post-type-archive-faq .faq__cat-btn:hover{border-color:rgba(165,130,47,.6);color:#8f6f2e;}
.home .faq__cat-btn.is-active,
.post-type-archive-faq .faq__cat-btn.is-active{background:#1a1a1a;border-color:#1a1a1a;color:#fff;}
.home .faq__group,
.post-type-archive-faq .faq__group{margin-top:clamp(1.75rem,3vw,2.5rem);}
.home .faq__group-title,
.post-type-archive-faq .faq__group-title{font-family:"Oswald",sans-serif;font-size:.6875rem;font-weight:600;
letter-spacing:.18em;color:#a5822f;padding-bottom:.75rem;
border-bottom:1px solid rgba(165,130,47,.35);margin-bottom:.25rem;}
.home .faq__item,
.post-type-archive-faq .faq__item{border-bottom:1px solid #ececea;}
.home .faq__q,
.post-type-archive-faq .faq__q{display:grid;grid-template-columns:auto 1fr auto;align-items:center;
gap:clamp(.75rem,1.6vw,1.125rem);cursor:pointer;
padding:clamp(1.125rem,2.2vw,1.5rem) .25rem;}
.home .faq__q-badge,
.post-type-archive-faq .faq__q-badge{font-family:"Oswald",sans-serif;font-weight:600;color:#a5822f;line-height:1;
font-size:clamp(1rem,1.9vw,1.25rem);}
.home .faq__q-text,
.post-type-archive-faq .faq__q-text{font-weight:700;color:#1a1a1a;line-height:1.6;
font-size:clamp(.875rem,1.4vw,1rem);} .home .faq__q-arrow,
.post-type-archive-faq .faq__q-arrow{
position:relative;width:1.25rem;height:1.25rem;flex-shrink:0;
border:none;transform:none;margin-top:0;background:none;}
.home .faq__q-arrow::after,
.post-type-archive-faq .faq__q-arrow::after{content:none;display:none;}
.home .faq__q-arrow::before,
.post-type-archive-faq .faq__q-arrow::before{
content:"";position:absolute;top:50%;left:50%;
width:.5rem;height:.5rem;background:none;border-radius:0;
border-right:1.5px solid #a5822f;border-bottom:1.5px solid #a5822f;
transform:translate(-50%,-65%) rotate(45deg);
transition:transform .25s ease;}
.home .faq__item.is-open .faq__q-arrow::before,
.post-type-archive-faq .faq__item.is-open .faq__q-arrow::before{
transform:translate(-50%,-25%) rotate(-135deg);} .home .faq__answer,
.post-type-archive-faq .faq__answer{display:grid;grid-template-rows:0fr;max-height:none;overflow:visible;
transition:grid-template-rows .3s ease;}
.home .faq__item.is-open .faq__answer,
.post-type-archive-faq .faq__item.is-open .faq__answer{grid-template-rows:1fr;}
.home .faq__a-inner,
.post-type-archive-faq .faq__a-inner{overflow:hidden;min-height:0;padding:0; color:#1a1a1a;font-size:clamp(.8125rem,1.3vw,.9375rem);line-height:2;}
.home .faq__item.is-open .faq__a-inner,
.post-type-archive-faq .faq__item.is-open .faq__a-inner{padding:0 .25rem clamp(1.125rem,2.2vw,1.5rem)
calc(clamp(1rem,1.9vw,1.25rem) + clamp(.75rem,1.6vw,1.125rem));} .home .faq__a-inner,
.post-type-archive-faq .faq__a-inner,
.home .faq__a-inner > *,
.post-type-archive-faq .faq__a-inner > *{font-size:clamp(.8125rem,1.3vw,.9375rem);line-height:2;color:#1a1a1a;}
.home .faq__btn-wrap,
.post-type-archive-faq .faq__btn-wrap{margin-top:clamp(2rem,3.4vw,2.75rem);text-align:center;}
.home .faq__more-btn,
.post-type-archive-faq .faq__more-btn{display:inline-flex;align-items:center;gap:.75rem;text-decoration:none;
border:1px solid rgba(165,130,47,.6);color:#8f6f2e;font-weight:700;letter-spacing:.06em;
font-size:clamp(.8125rem,1.35vw,.9375rem);padding:.9375rem 2rem;transition:background .2s;}
.home .faq__more-btn:hover,
.post-type-archive-faq .faq__more-btn:hover{background:#faf7f0;}
.home .faq__more-btn::after,
.post-type-archive-faq .faq__more-btn::after{content:"";width:.4375rem;height:.4375rem;
border-top:1.5px solid currentColor;border-right:1.5px solid currentColor;transform:rotate(45deg);}
.home .access{background:#fff;color:#1a1a1a;padding:clamp(3.5rem,6vw,5.5rem) 0;}
.home .access .wrap{width:min(75rem,90%);margin:0 auto;}
.home .access-header .sec-title{font-family:var(--sans);font-weight:900;text-align:center;
font-size:clamp(1.4375rem,3.6vw,2.5rem);line-height:1.45;letter-spacing:.01em;}
.home .access-header p{display:none;}
.home .access-inner{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
gap:clamp(1.5rem,3.4vw,3rem);margin-top:clamp(2rem,3.4vw,2.75rem);align-items:start;}
.home .access-info dl{display:grid;grid-template-columns:auto 1fr;
gap:0 clamp(1rem,2.4vw,1.75rem);border-top:1px solid #e8e6e1;}
.home .access-info dt{padding:clamp(.875rem,1.8vw,1.125rem) 0;font-weight:700;color:#a5822f;
font-size:clamp(.75rem,1.2vw,.875rem);letter-spacing:.06em;white-space:nowrap;
border-bottom:1px solid #e8e6e1;}
.home .access-info dd{padding:clamp(.875rem,1.8vw,1.125rem) 0;margin:0;color:#333;
font-size:clamp(.8125rem,1.3vw,.9375rem);line-height:1.85;
border-bottom:1px solid #e8e6e1;}
.home .access-info dd a{color:var(--gk-red);text-decoration:none;font-weight:700;
font-size:clamp(.9375rem,1.6vw,1.125rem);letter-spacing:.02em;}
.home .access-info dd a:hover{text-decoration:underline;}
.home .access-map{position:relative;}
.home .access-map iframe{width:100%;aspect-ratio:4/3;display:block;border:0;}
.home .fc{position:relative;overflow:hidden;background:var(--bk);color:#fff;}
.home .fc__bg{position:absolute;inset:0;z-index:0;}
.home .fc__bg img{width:100%;height:100%;object-fit:cover;object-position:center 40%;opacity:.32;}
.home .fc__scrim{position:absolute;inset:0;z-index:1;
background:linear-gradient(180deg,rgba(8,8,10,.85) 0%,rgba(8,8,10,.6) 50%,rgba(8,8,10,.9) 100%);}
.home .fc__in{position:relative;z-index:2;max-width:56rem;margin:0 auto;text-align:center;
padding:clamp(4rem,7vw,6.5rem) clamp(1.25rem,4vw,3rem);}
.home .fc__h{font-family:var(--serif);font-weight:700;letter-spacing:.03em;color:#fff;
font-size:clamp(1.375rem,3.4vw,2.375rem);line-height:1.6;}
.home .fc__d{margin-top:1.375rem;font-size:clamp(.8125rem,1.35vw,1rem);line-height:2;
color:rgba(255,255,255,.8);}
.home .fc__d .z{color:#e8213f;font-weight:900;font-size:1.3em;padding:0 .1em;}
.home .fc__btn{display:inline-flex;align-items:center;justify-content:center;gap:.875rem;
margin-top:2.25rem;text-decoration:none;font-weight:700;letter-spacing:.06em;
font-size:clamp(.9375rem,1.6vw,1.125rem);padding:1.25rem 3rem;
background:linear-gradient(180deg,var(--gold-bright),var(--gold-deep));color:#0a0a0c;
box-shadow:0 .875rem 2.25rem -.875rem rgba(212,175,55,.5);}
.home .fc__btn::after{content:"";width:.4375rem;height:.4375rem;
border-top:1.5px solid currentColor;border-right:1.5px solid currentColor;transform:rotate(45deg);}
.home .fc__note{margin-top:1.375rem;font-size:.75rem;color:rgba(255,255,255,.5);}
@media (max-width:768px){
.home .burger{display:flex;}
.home .fv__pillars{
flex-wrap:nowrap !important;gap:.25rem .3rem;margin-bottom:.5rem;align-items:center;
width:100%;
}
.home .fv__pillars .x{font-size:1rem;flex:0 0 auto;}
.home .pill--med{font-size:clamp(.9375rem,6.2vw,1.75rem);flex:0 0 auto;padding:.2em .4em .26em;}
.home .pill--kaatsu{font-size:clamp(.8125rem,5.2vw,1.5rem);flex:0 0 auto;padding:.3em .08em .34em;}
.home .pill--med .txt, .home .pill--kaatsu .txt{white-space:nowrap;}
.home .pill--kaatsu::before, .home .pill--kaatsu::after{height:3px;}
.home .sign__in{padding:3.75rem 1.25rem 3.75rem;}
.home .sign__grid{grid-template-columns:1fr;gap:0;margin-top:2rem;}
.home .sign__grid::after{display:none;}
.home .sc{padding:1.0625rem .125rem;gap:1rem;}
.home .sc__i{width:3.125rem;height:3.125rem;}
.home .sc__t{font-size:.9375rem;}
.home .sign__closing{margin-top:2.25rem;}
.home .brsp{display:inline;}
.home .sign__note{padding:1.25rem 0;}
.home .sign__note .l1{font-size:clamp(1.0625rem,5.4vw,1.375rem);}
.home .sign__note .l2{font-size:.875rem;margin-top:.75rem;}
.home .res__in{padding:3.5rem 1.25rem 4rem;}
.home .res__top{grid-template-columns:1fr;gap:1.5rem;margin-bottom:2.5rem;}
.home .res__ph{min-height:11rem;order:-1;}
.home .res__ph::after{background:linear-gradient(0deg,#fff 0%,rgba(255,255,255,0) 45%);}
.home .tl{grid-template-columns:1fr;gap:1.25rem;}
.home .tl__step:not(:last-child)::after, .home .tl__step:not(:last-child)::before{display:none;}
.home .tl__circle{--c:5rem;margin-bottom:1rem;}
.home .tl__card{padding:1.5rem 1.25rem;}
.home .res__closing{margin-top:2.5rem;}
.home .rb__in{padding:3.5rem 1.25rem 4rem;}
.home .rb__head{grid-template-columns:1fr;gap:1rem;}
.home .rb__lead{border-left:none;border-top:1px solid #dcdad5;padding:1rem 0 0;}
.home .rb__grid{grid-template-columns:1fr;gap:1rem;margin-top:2rem;}
.home .rb__top{grid-template-columns:1fr;}
.home .rb__ba{justify-content:flex-start;}
.home .rb__shot{width:38%;}
.home .mt__in{padding:3.5rem 1.25rem 4rem;}
.home .mt__h{line-height:1.8;}
.home .mt__grid{grid-template-columns:1fr;gap:.875rem;margin-top:2.25rem;}
.home .mt__body{padding:1.25rem 1.125rem 1.5rem;}
.home .ka__stats, .home .ka__cases{grid-template-columns:1fr;gap:.75rem;}
.home .ka__nums{grid-template-columns:1fr;gap:.75rem;margin-top:2rem;}
.home .ka__case{display:flex;flex-direction:column;padding:0;overflow:hidden;}
.home .ka__top{grid-template-columns:1fr;gap:1.5rem;}
.home .ka__hero{order:-1;}
.home .ka__nums{grid-template-columns:1fr;margin-top:2rem;}
.home .ka__num + .ka__num{border-left:none;border-top:1px solid #e8e6e1;}
.home .ka__num{padding:1.375rem 1rem;}
.home .ch__in{padding:3.5rem 1.25rem 4rem;}
.home .ch__tl{grid-template-columns:1fr;gap:1.25rem;margin-top:2.5rem;--c:5.25rem;}
.home .ch__step{flex-direction:row;align-items:center;text-align:left;gap:1rem;}
.home .ch__circle{margin-bottom:0;flex:0 0 auto;}
.home .ch__circle--ill{padding:.62rem;}
.home .ch__wk{margin-bottom:0;flex:0 0 auto;flex-direction:column;align-items:center;}
.home .ch__step:not(:last-child)::after{display:none;}
.home .ch__three{margin-top:2.5rem;padding-top:2rem;}
.home .ch__3grid{gap:0;margin-top:2rem;}
.home .ch__3i + .ch__3i{border-top:1px solid #e8e6e1;}
.home .wy__in{padding:3.5rem 1.25rem 4rem;}
.home .wy__grid{grid-template-columns:1fr;gap:0;margin-top:2.25rem;}
.home .wy__i{padding:1.375rem .125rem;}
.home .wy__i + .wy__i{border-top:1px solid rgba(255,255,255,.14);}
.home .wy__i + .wy__i::before{display:none;}
.home .wy__space{grid-template-columns:1fr;gap:1.375rem;margin-top:1.75rem;}
.home .wy__ph{order:-1;}
.home .sp__grid{grid-template-columns:1fr 1fr;}
.home .sp__g1{grid-column:span 2;grid-row:auto;aspect-ratio:4/3;} .home .ch__3i,
.home .ch__3i:nth-child(even){grid-template-columns:4.5rem 1fr;
column-gap:1.125rem;align-items:center;padding:1.375rem .125rem;
width:auto;margin-inline:0;}
.home .ch__3i:nth-child(even) .ch__3ic{order:1;}
.home .ch__3i:nth-child(even) .ch__3tx{order:2;text-align:left;}
.home .ch__3d{margin-top:.375rem;}
.home .wy__grid{gap:1.5rem;}
.home .wy__iph{margin-bottom:.875rem;}
.home .rs__in{padding:3.5rem 1.25rem 4rem;}
.home .rs__c{grid-template-columns:auto 1fr;gap:.75rem 1rem;
padding:1.125rem 1rem 1.25rem 1.25rem;}
.home .rs__ic{grid-column:1 / -1;width:74%;margin:0 auto;}
.home .rs__b{grid-column:1 / -1;}
.home .rs__c{grid-template-columns:1fr;}
.home .rs__t{white-space:normal;font-size:clamp(.875rem,4.4vw,1.0625rem);}
.home .km__top, .home .ft__top{grid-template-columns:1fr;}
.home .km__body, .home .ft__body{padding:2rem 1.25rem 2.5rem;} .home .km__ph img{aspect-ratio:4/3;object-position:center 20%;}
.home .ft__ph::after{background:linear-gradient(180deg,rgba(255,255,255,0) 60%,#fff 100%);}
.home .km__stats{grid-template-columns:1fr 1fr;}
.home .km__st:nth-child(3){border-left:none;}
.home .km__st:nth-child(n+3){border-top:1px solid #e8e6e1;margin-top:1.25rem;padding-top:1.25rem;}
.home .km__cards, .home .ft__cards{grid-template-columns:1fr;gap:.875rem;padding:1.5rem 1.25rem 2.5rem;}
.home .ft__cards{padding-bottom:0;}
.home .ft__note{padding:1.5rem 1.25rem 2.5rem;}
.home .trainers .wrap{width:auto;padding:0 1.25rem;}
.home .trainer-grid{grid-template-columns:repeat(2,1fr);gap:.5rem;}
.home .trainer-card .name-bar{padding:1rem 1rem .875rem;}
.home .ba__in{padding:3.5rem 1.25rem 4rem;}
.home .ba__list{margin-top:2rem;gap:1.25rem;}
.home .ba__row{grid-template-columns:1fr;gap:.375rem;}
.home .ba__ar{transform:rotate(90deg);justify-self:center;margin:.125rem 0;}
.home .ba__cap{padding:.75rem .875rem;font-size:.8125rem;}
.home .vc__in{padding:3.5rem 1.25rem 4rem;} .home .vc__list{display:flex;grid-template-columns:none;
gap:.75rem;margin-top:2.25rem;
overflow-x:auto;scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;scrollbar-width:thin;
margin-left:-1.25rem;margin-right:-1.25rem;
padding:0 1.25rem 1rem;}
.home .vc__list::-webkit-scrollbar{height:4px;}
.home .vc__list::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2);border-radius:2px;}
.home .vc__c{flex:0 0 82%;scroll-snap-align:start;padding:1.5rem 1.25rem;}
.home .vc__btn{width:100%;justify-content:center;}
.home .vc__b{min-height:0;margin-top:.875rem;}
.home .price-section .wrap{width:auto;padding:0 1.25rem;}
.home .price-cards{grid-template-columns:1fr;gap:1.25rem;}
.home .price-other__list{grid-template-columns:1fr;}
.home .faq .wrap,
.post-type-archive-faq .faq .wrap{width:auto;padding:0 1.25rem;}
.home .faq__more-btn,
.post-type-archive-faq .faq__more-btn{width:100%;justify-content:center;}
.home .access .wrap{width:auto;padding:0 1.25rem;}
.home .access-inner{grid-template-columns:1fr;gap:1.5rem;}
.home .access-info dl{grid-template-columns:1fr;}
.home .access-info dt{padding-bottom:.25rem;border-bottom:none;}
.home .access-info dd{padding-top:0;}
.home .access-map iframe{aspect-ratio:1/1;}
.home .fc__btn{width:100%;padding:1.125rem 1rem;}
.home .fv{min-height:auto;}
.home .fv__media img{object-position:76% center;} .home .fv__scrim{background:linear-gradient(180deg,rgba(8,8,10,.5) 0%,rgba(8,8,10,0) 22%,rgba(8,8,10,.15) 50%,rgba(8,8,10,.7) 78%,var(--bk) 100%);}
.home .fv__inner{padding:26vh 1.25rem 3rem;justify-content:flex-end;}
.home .fv__text{width:100%;} .home .fv__hl .big{font-size:clamp(1.25rem,7.05vw,2.125rem);}
.home .fv__hl .sm{font-size:clamp(1rem,5vw,1.375rem);}
.home .slot{flex:1;width:auto;}}.home .sign__photo, .home .rb__shot, .home .mt__ph, .home .ka__hero, .home .ka__shot, .home .wy__iph, .home .sp__grid figure, .home .km__ph, .home .ft__ph, .home .ft__c figure, .home .ba__cell figure, .home .fc__bg{background:#e6e4e0;}
.home .km__ph, .home .ft__ph, .home .fc__bg, .home .sp__grid figure{background:#1f1f22;}
.home .ba__cell--a figure{background:#24211a;}
.home .ba__cell--b figure{background:#d8d6d2;}
.home .fv__awards{display:flex;gap:clamp(.5rem,2vw,2.25rem);margin-top:1rem;align-items:flex-start;}
.home .fv__awards img{width:clamp(6rem,11.5vw,11rem);min-width:0;height:auto;display:block;}
.home .fv__hl .boxed{display:inline-block;}
.home .ba--1{background:#fff;}
.home .sign__msg{display:block;}
.home .vc__bwrap{display:block;}
@media (max-width:900px){
.home .fv__inner{padding-top:calc(var(--header-height, 5rem) + clamp(1.5rem,4vw,3rem));}
}
@media (max-width:768px){
.home .fv__inner{padding-top:calc(var(--header-height, 5rem) + 12vh);}
} .home .fv::before,
.home .fv::after{content:none;display:none;} .home .fv{
height:auto; align-items:stretch; padding-bottom:0; }
.home .fv__media picture{
display:block;
width:100%;
height:100%;
} @media (max-width:1280px){
.home .cmp{padding:3rem;}
}
@media (max-width:1024px){
.home .cmp__grid{grid-template-columns:1fr;gap:0;}
.home .cmp__card{margin-bottom:1rem;}
}
@media (max-width:600px){
.home .cmp__items{grid-template-columns:1fr;gap:1.5rem;}
}
@media (max-width:480px){
.home .cmp{padding:3rem 1.2rem;}
.home .cmp__wrap{width:auto;}
.home .cmp__grid{display:block;}
.home .cmp__head{padding:2.5rem 1.5rem 0;}
.home .cmp__body{padding:1.5rem 1.5rem 1rem;}
.home .cmp__price,
.home .cmp__num{font-size:4.5rem;}
.home .cmp__title{font-size:1.75rem;}
} @media (max-width:768px){
.home .fv__awards{gap:.875rem;}
} .home .cmp__grid:has(.cmp__card:only-child){grid-template-columns:1fr;}
.home .cmp__grid .cmp__card:only-child{max-width:40rem;margin-inline:auto;width:100%;} .home .rb__ba--wide{
display:grid;grid-template-columns:1fr 1fr;gap:2px;
position:relative;margin-top:1.125rem;
background:#e6e5e2;border-radius:.5rem;overflow:hidden;
}
.home .rb__ba--wide .rb__shot{width:auto;}
.home .rb__ba--wide .rb__shot img{border-radius:0;}
.home .rb__ba--wide .rb__tag{top:auto;bottom:.625rem;left:.625rem;transform:none;font-size:.6875rem;}
.home .rb__ba__mid{
position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
width:2.125rem;height:2.125rem;border-radius:50%;
background:var(--acc);color:#fff;font-size:.8125rem;line-height:1;
display:flex;align-items:center;justify-content:center;
box-shadow:0 .125rem .625rem rgba(0,0,0,.25);z-index:2;
}
.home .rb__ba--wide + .rb__top{grid-template-columns:1fr;margin-top:1.25rem;} @media (min-width:769px){
.home .rs__list{grid-template-columns:1fr 1fr;gap:clamp(1rem,2vw,1.5rem);}
.home .rs__c{grid-template-columns:1fr;align-items:start;
gap:clamp(1rem,1.8vw,1.375rem);text-align:center;
padding:clamp(1.75rem,2.8vw,2.5rem) clamp(1.5rem,2.4vw,2rem) clamp(1.75rem,2.8vw,2.25rem);}
.home .rs__ic{width:min(72%,17rem);margin:0 auto;}
.home .rs__t{white-space:normal;}
.home .rs__b{text-align:left;}
} .post-type-archive-faq .faq-archive{
background:#fff;color:#1a1a1a;
padding:clamp(3.5rem,6vw,5.5rem) 0;
}
.post-type-archive-faq .faq-archive__empty{color:#8a8a8a;}  .home .mt__hero{margin:0 auto clamp(1.5rem,2.6vw,2.25rem);}
.home .mt__in{padding-top:clamp(2.5rem,4.5vw,3.5rem);} @media (max-width:768px){
.home .fv__awards{
display:grid;grid-template-columns:1fr 1fr;
gap:.75rem;justify-items:center;align-items:start;margin-top:1rem;}
.home .fv__awards img{width:100%;max-width:8rem;min-width:0;height:auto;display:block;}
.home .fv__awards > *:nth-child(3){grid-column:1 / -1;}
} @media (max-width:768px){
.home .fv__inner{padding-top:36vh;padding-bottom:1.25rem;}
.home .cmp{padding-top:1.25rem;}
}