*,
*::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 {
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 {
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; }
}