/* CSS Document */
/* ------------------------------------------------------------
reset css
------------------------------------------------------------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: middle; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
html { overflow-y: scroll; -webkit-text-size-adjust: 100%; }
ul, ol { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
a:focus { outline: none; }
ins { text-decoration: none; }
mark { font-style: italic; font-weight: bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid var(--color-border); margin: 1em 0; padding: 0; }
button, input, select, textarea { outline: 0; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 100%; }
input, textarea { background-image: -webkit-linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0)); -webkit-appearance: none; border-radius: 0; }
input[type="checkbox"] { -webkit-appearance: checkbox; }
input[type="radio"] { -webkit-appearance: radio; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
iframe { max-width: 100%; }

/* =========================
Base
========================= */
:root {
/* 色 */
--color-white: rgba(255, 255, 255, 0.95);
--color-bg: #EFEBDD;
--color-border: #727272;
--color-black: #000;
--color-red: #FF0000;
--color-gold: #A87F00;
/* フォント */
--font-base: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
--font-anton: "Anton", sans-serif;
--font-meiryo: "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", sans-serif;
--font-impact: "Impact", sans-serif;
/* フォントサイズ PC */
--fz-10: 1rem;
--fz-11: 1.1rem;
--fz-12: 1.2rem;
--fz-13: 1.3rem;
--fz-14: 1.4rem;
--fz-15: 1.5rem;
--fz-16: 1.6rem;
--fz-18: 1.8rem;
--fz-20: 2rem;
--fz-22: 2.2rem;
--fz-24: 2.4rem;
--fz-26: 2.6rem;
--fz-28: 2.8rem;
--fz-30: 3rem;
--fz-32: 3.2rem;
--fz-36: 3.6rem;
--fz-40: 4rem;
--fz-48: 4.8rem;
--fz-56: 5.6rem;
--fz-70: 7.0rem;
}
html {
scroll-behavior: smooth;
font-size: 62.5%;
}
body {
margin: 0;
padding: 0;
font-family: var(--font-base);
font-weight: 500;
font-size: var(--fz-16);
line-height: var(--lh-body);
color: var(--color-black);
}
p {
font-size: var(--fz-16);
}
h1 {
font-size: var(--fz-32);
}
h2 {
font-size: var(--fz-24);
}
h3 {
font-size: var(--fz-20);
}
h4 {
font-size: var(--fz-18);
}
.font-anton  { font-family: var(--font-anton); }
.font-meiryo { font-family: var(--font-meiryo); }
.font-impact { font-family: var(--font-impact); }
a {
color: inherit;
text-decoration: none;
}
.header-margin{
margin-top: 100px;
}
.sp_none{
display: inline;
position: relative;
top:-2px;
}
.pc_none{
display: none;
}

/* =========================
1200px以下
========================= */
@media (max-width: 1200px) {
:root {
--fz-10: 1rem;
--fz-11: 1.1rem;
--fz-12: 1.2rem;
--fz-13: 1.3rem;
--fz-14: 1.4rem;
--fz-15: 1.5rem;
--fz-16: 1.6rem;
--fz-18: 1.8rem;
--fz-20: 2rem;
--fz-22: 2.1rem;
--fz-24: 2.2rem;
--fz-26: 2.4rem;
--fz-28: 2.6rem;
--fz-30: 2.8rem;
--fz-32: 3rem;
--fz-36: 3.2rem;
--fz-40: 3.6rem;
--fz-48: 4rem;
--fz-56: 4.8rem;
}

.header-margin{
margin-top: 80px;
}
}

/* =========================
768px以下
========================= */
@media (max-width: 768px) {
:root {
--fz-10: 1rem;
--fz-11: 1.1rem;
--fz-12: 1.2rem;
--fz-13: 1.3rem;
--fz-14: 1.4rem;
--fz-15: 1.5rem;
--fz-16: 1.6rem;
--fz-18: 1.7rem;
--fz-20: 1.8rem;
--fz-22: 2rem;
--fz-24: 2.2rem;
--fz-26: 2.3rem;
--fz-28: 2.4rem;
--fz-30: 2.6rem;
--fz-32: 2.8rem;
--fz-36: 3rem;
--fz-40: 3.2rem;
--fz-48: 3.6rem;
--fz-56: 4rem;
}
.header-margin{
margin-top: 64px;
}
.sp_none{
display: none;
}
.pc_none{
display: inline;
}
}

/* =========================
共通スクロールアニメーション
========================= */
.js-animate {
opacity: 0;
will-change: transform, opacity;
transition:
opacity 0.9s ease,
transform 0.9s ease;
}
.js-animate.is-show {
opacity: 1;
transform: translate3d(0, 0, 0);
}
.fade-left {
transform: translate3d(-100px, 0, 0);
}
.fade-up {
transform: translate3d(0, 100px, 0);
}
.delay-1 {
transition-delay: 0.5s;
}
.delay-2 {
transition-delay: 0.6s;
}
.delay-3 {
transition-delay: 0.7s;
}

@media (max-width: 768px) {
.delay-1 {
transition-delay: 0.3s;
}
.delay-2 {
transition-delay: 0.3s;
}
.delay-3 {
transition-delay: 0.3s;
}
}

/* 動きを減らしたい環境への配慮 */
@media (prefers-reduced-motion: reduce) {
.js-animate,
.js-animate.is-show,
.fade-left,
.fade-up,
.delay-1,
.delay-2,
.delay-3 {
opacity: 1;
transform: none;
transition: none;
}
}

/* =========================
Header
========================= */
.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
background: var(--color-black);
color: var(--color-white);
transition:
background 0.3s ease,
transform 0.3s ease,
min-height 0.3s ease;
}
.site-header__inner {
position: relative;
max-width: 1200px;
margin: 0 auto;
min-height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
}
.site-header__nav {
display: flex;
align-items: center;
}
.site-header__nav--left {
flex: 1 1 50%;
justify-content: flex-end;
padding-left: 90px;
padding-right: 90px;
}
.site-header__right {
flex: 1 1 50%;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 140px;
padding-right: 90px;
}
.site-header__menu {
display: flex;
align-items: center;
gap: 56px;
}
.site-header__menu > li > a {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: var(--fz-16);
line-height: 1;
color: var(--color-white);
white-space: nowrap;
transition: opacity 0.3s ease;
}
.site-header__logo {
position: absolute;
top: 50%;
left: 50%;
z-index: 5;
margin: 0;
line-height: 1;
transform: translate(-50%, -50%);
}
.site-header__logo a {
display: inline-flex;
align-items: center;
justify-content: center;
}
.site-header__logo img {
display: block;
width: auto;
max-width: 90px;
min-width: 70px;
height: auto;
}
.site-header__toggle {
position: absolute;
top: 50%;
right: 32px;
transform: translateY(-50%);
z-index: 20;
width: 44px;
height: 44px;
padding: 0;
border: 0;
background: transparent;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 7px;
cursor: pointer;
}
.site-header__toggle span {
display: block;
width: 32px;
height: 1px;
background: var(--color-white);
}
.site-header__menu > li > a:hover,
.site-header__toggle:hover {
color: var(--color-gold);
}
.site-header__instagram {
position: absolute;
top: 50%;
right: 92px;
transform: translateY(-50%);
z-index: 20;
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-header__instagram img,
.site-header__instagram svg {
display: block;
width: 28px;
height: 28px;
}
.site-header__instagram:hover {
opacity: 0.7;
}

@media (max-width: 1200px) {
.site-header__instagram {
right: 70px;
width: 36px;
height: 36px;
}
.site-header__instagram img,
.site-header__instagram svg {
width: 28px;
height: 28px;
}
}

@media (max-width: 768px) {
.site-header__instagram {
right: 60px;
width: 32px;
height: 32px;
}
.site-header__instagram img,
.site-header__instagram svg {
width: 28px;
height: 28px;
}
}
.drawer {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(0, 0, 0, 1);
color: var(--color-white);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.4s ease, visibility 0.4s ease;
}
.drawer.is-open {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.drawer__inner {
position: relative;
width: 100%;
max-width: 1200px;
margin: 0 auto;
height: 100dvh;
display: flex;
flex-direction: column;
background:var(--color-black);
}
.drawer__head {
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-height: 100px;
}
.drawer__logo {
text-align: center;
}
.drawer__logo img {
display: block;
margin: 0 auto;
width: auto;
max-width: 90px;
min-width: 70px;
height: auto;
}
.drawer__close {
position: absolute;
top: 50%;
right: 32px; 
transform: translateY(-50%);
width: 44px;
height: 44px;
padding: 0;
border: 0;
background: transparent;
cursor: pointer;
}
.drawer__close span {
position: absolute;
top: 50%;
left: 50%;
width: 32px;
height: 1px;
background: var(--color-white);
}
.drawer__close span:first-child {
transform: translate(-50%, -50%) rotate(45deg);
}
.drawer__close span:last-child {
transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__nav {
flex: 1 1 auto;
display: flex;
align-items: center;
justify-content: center;
padding: 20px 0 40px;
}
.drawer__menu {
width: 100%;
max-width: 520px;
margin: 0 auto;
}
.drawer__menu > li {
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer__menu > li:first-child {
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer__menu > li > a {
display: block;
padding: 22px 8px;
font-size: var(--fz-24);
line-height: 1.4;
color: var(--color-white);
text-align: center;
transition: opacity 0.3s ease;
}
.drawer__menu > li > a:hover {
opacity: 0.7;
}
.drawer__cta {
width: 100%;
max-width: 750px;
margin: auto auto 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
.drawer__cta-box {
position: relative;
min-height: 140px;
padding: 24px;
background:var(--color-black);
}
.drawer__cta-box--tel {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 315px;
margin: 0 auto;
}
.drawer__cta-label {
margin-bottom: 8px;
font-size: var(--fz-16);
color: var(--color-gold);
}
.drawer__tel {
display: inline-block;
font-size: var(--fz-30);
line-height: 1.2;
color: var(--color-gold);
}
.drawer__cta-box--reserve {
display: flex;
align-items: center;
justify-content: center;
}
.drawer__reserve-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
max-width: 315px;
min-height: 72px;
padding: 16px 24px;
background: #ff1c1c;
color: var(--color-white);
font-size: var(--fz-20);
line-height: 1.3;
text-align: center;
transition: opacity 0.3s ease;
}
.drawer__reserve-btn:hover {
opacity: 0.85;
}
body.is-drawer-open {
overflow: hidden;
}

@media (max-width: 1200px) {
.site-header__inner {
min-height: 80px;
}
.site-header__nav {
display: none;
}
.site-header__right {
flex: 1 1 auto;
justify-content: flex-end;
padding-left: 0;
}
.site-header__logo img {
width: 70px;
}
.site-header__toggle {
right: 16px;
width: 40px;
height: 40px;
}
.site-header__toggle span {
width: 28px;
}
.drawer__head{
min-height: 80px;
}
.drawer__logo img {
max-width: 70px;
}
.drawer__menu > li > a {
padding: 20px 8px;
font-size: var(--fz-22);
}
.drawer__cta {
grid-template-columns: 1fr 1fr;
}
.drawer__cta-box {
min-height: 120px;
padding: 20px;
}
.drawer__tel {
font-size: var(--fz-24);
}
.drawer__reserve-btn {
min-height: 64px;
font-size: var(--fz-20);
}
.drawer__close {
right: 16px; }
}

@media (max-width: 768px) {
.site-header__inner {
min-height: 64px;
}
.site-header__logo img {
max-width: 55px;
min-width: 55px;
}
.site-header__toggle {
right: 10px;
width: 36px;
height: 36px;
gap: 6px;
}
.site-header__toggle span {
width: 24px;
}
.drawer__head {
min-height: 64px;
}
.drawer__logo img {
max-width: 55px;
min-width: 55px;
}
.drawer__close {
right: 10px; 
width: 36px;
height: 36px;
}
.drawer__close span {
width: 24px;
}
.drawer__nav {
padding: 24px 0 32px;
}
.drawer__menu > li > a {
padding: 18px 4px;
font-size: var(--fz-20);
}
.drawer__cta {
grid-template-columns: 1fr;
padding-bottom: 100px;
}
.drawer__cta-box {
min-height: auto;
}
.drawer__cta-label {
font-size: var(--fz-14);
}
.drawer__reserve-btn {
min-height: 56px;
font-size: var(--fz-18);
}
}

.hero {
position: relative;
overflow: hidden;
background:
linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
padding: 30px 0 36px;
}
.hero__inner {
width: min(100%, 1400px);
margin: 0 auto;
padding: 0 20px;
}
.hero__media {
position: relative;
width: min(100%, 1400px);
aspect-ratio: 1400 / 750;
margin: 0 auto;
overflow: hidden;
isolation: isolate;
background: transparent;
}
.hero .hero__slide {
position: absolute;
inset: 0;
opacity: 0;
z-index: 0;
pointer-events: none;
transition: opacity 2.4s ease-in-out;
}
.hero .hero__slide.is-active {
opacity: 1;
z-index: 1;
}
.hero__image {
width: 100%;
height: 100%;
overflow: hidden;
}
.hero__slide.is-active .hero__image img {
animation: heroZoom 7s ease forwards;
}
.hero__copy-wrap {
position: absolute;
inset: 0;
z-index: 2;
display: grid;
place-items: center;
padding: 20px;
}
.hero__copy {
position: absolute;
margin: 0;
color: var(--color-white);
font-size: var(--fz-56);
line-height: 1.4;
letter-spacing: 0.08em;
text-shadow:
0 1px 0 rgba(0,0,0,0.8),
0 2px 8px rgba(0,0,0,0.5);
transition: opacity 1.6s ease, transform 1.6s ease;
}
.hero__copy-main {
opacity: 0;
text-align: left;
animation: heroFadeIn 2s ease forwards;
will-change: opacity, transform;
}
.hero__copy-main.is-hide{
opacity: 0 !important;
transform: translateY(10px) !important;
visibility: hidden !important;
}
.hero__copy-sub.is-show{
opacity: 1 !important;
transform: translateY(0) !important;
visibility: visible !important;
}
.hero__copy-line1,
.hero__copy-line2 {
display: block;
}
.hero__copy-line1 {
margin-left: -1.5em;
}
.hero__copy-line2 {
margin-left: 1.5em;
}
.hero__copy-sub{
opacity:0;
visibility:hidden;
text-align:center;
}
.sub-text {
position: relative;
right: 40px;
display: inline-block;
margin-bottom: 12px;
}
.sub-title {
display: inline-block;
position: relative;
top: -10px;
left: 40px;
line-height: 1;
text-shadow:
0 1px 0 rgba(0,0,0,0.8),
0 2px 8px rgba(0,0,0,0.5);
}
.sub-title img {
display: block;
width: min(600px, 50vw);
height: auto;
filter:
drop-shadow(0 1px 0 rgba(0,0,0,.8))
drop-shadow(0 2px 8px rgba(0,0,0,.5));
object-fit: contain;
}
@keyframes heroFadeIn {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes heroZoom {
0% {
transform: scale(1.12);
}
100% {
transform: scale(1);
}
}

@media (max-width: 1200px) {
.hero {
padding: 16px 0 40px;
}
.hero__inner {
padding: 0;
}
.hero__media {
width: 100%;
}
.hero__copy {
font-size: var(--fz-40);
line-height: 1.5;
}
.sub-text {
font-size: var(--fz-50);
}
.sub-title{
font-size: 60px;
}
.sub-title img {
display: block;
width: min(400px);
height: auto;
object-fit: contain;
}
}

@media (max-width: 768px) {
.hero {
padding: 32px 0;
}
.hero__media {
width: 100%;
aspect-ratio: 3 / 4;
max-height: 600px;
}
.hero__image img {
object-fit: cover;
object-position: center center;
}
.hero__copy {
font-size: var(--fz-36);
line-height: 1.5;
}
.hero__copy-line1 {
margin-left: -0.6em;
}
.hero__copy-line2 {
margin-left: 0.6em;
}
.sub-title img {
display: block;
width: min(300px);
height: auto;
object-fit: contain;
}
}

.hero__copy.is-show {
opacity: 1;
transform: none;
}
.hero .hero__slide {
position: absolute;
inset: 0;
opacity: 0;
z-index: 0;
transition: opacity 2s ease;
-webkit-mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 60%,
rgba(0,0,0,0.0) 70%,
rgba(0,0,0,0) 100%
);
-webkit-mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
-webkit-mask-position: center;
mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 60%,
rgba(0,0,0,0.0) 70%,
rgba(0,0,0,0) 100%
);
mask-repeat: no-repeat;
mask-size: 100% 100%;
mask-position: center;
}

.hero .hero__slide.is-active {
opacity: 1;
z-index: 1;
}
.hero .hero__slide img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center center;
}
.hero .hero__media{
background: transparent !important;
}
.hero .hero__media::after{
display:none;
}

@keyframes heroFadeIn{
from{
opacity:0;
transform: translateY(15px);
}
to{
opacity:1;
transform: translateY(0);
}
}

@keyframes heroFullZoom {
0% {
transform: scale(1.12);
}
100% {
transform: scale(1);
}
}

@media (max-width: 1200px) {
.hero {
padding: 16px 0 40px;
}
.hero__inner {
padding: 0;
}
.hero__media {
width: 100%;
}
.hero__copy {
font-size: var(--fz-36);
line-height: 1.5;
}
}

@media (max-width: 768px) {
.hero {
padding: 32px 0;
}
.hero__media {
width: 100%;
aspect-ratio: 3 / 4;
max-height: 600px;
}
.hero__image img {
object-fit: cover;
object-position: center center;
}
.hero__copy {
font-size: var(--fz-36);
line-height: 1.5;
}
}

.hero--full {
position: relative;
width: 100%;
max-height: calc(100vh - 100px);
overflow: hidden;
}
.hero--full .hero__media {
position: relative;
width: 100%;
height: calc(100vh - 100px);
max-height: calc(100vh - 100px);
overflow: hidden;
background: #000;
}
.hero--full .hero__slide {
position: absolute;
inset: 0;
opacity: 0;
visibility: hidden;
pointer-events: none;
z-index: 0;
transition:
opacity 1.6s ease-in-out,
visibility 0s linear 1.6s;
}

.hero--full .hero__slide.is-active,
.hero--full .hero__slide.is-next {
opacity: 1;
visibility: visible;
pointer-events: none;
transition:
opacity 1.6s ease-in-out,
visibility 0s linear 0s;
}

.hero--full .hero__slide.is-active {
z-index: 1;
}

.hero--full .hero__slide.is-next {
z-index: 2;
}

.hero--full .hero__slide.is-prev {
z-index: 0;
}

.hero--full .hero__slide img {
width: 100%;
height: calc(100vh - 100px);
max-height: calc(100vh - 100px);
display: block;
object-fit: cover;
object-position: center center;
transform: scale(1.08);
will-change: transform, opacity;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}

.hero--full .hero__slide.is-active img,
.hero--full .hero__slide.is-next img {
animation: heroFullZoom 7s ease forwards;
}

@keyframes heroFullZoom {
0% {
transform: scale(1.08);
}
100% {
transform: scale(1);
}
}

.hero--full .hero__media::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.26) 0%,
rgba(0, 0, 0, 0.12) 35%,
rgba(0, 0, 0, 0.26) 100%
);
z-index: 3;
pointer-events: none;
}
.hero--full .hero__copy-wrap {
position: absolute;
inset: 0;
z-index: 4;
display: grid;
place-items: center;
padding: 20px;
transform: translateY(-8%);
}
.hero--full .hero__copy {
margin: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-70);
line-height: 1.45;
letter-spacing: 0.08em;
text-align: center;
text-shadow:
0 2px 6px rgba(0, 0, 0, 0.55),
0 8px 24px rgba(0, 0, 0, 0.35);
opacity: 0;
transition: opacity 1.2s ease;
}
.hero--full .hero__copy.is-show {
opacity: 1;
}

@media (max-width: 1200px) {
.hero--full .hero__copy-wrap {
transform: translateY(-6%);
}
.hero--full .hero__copy {
font-size: var(--fz-56);
}
.sub-text{
position: relative;
right: 20px;
font-size: var(--fz-48);
}
}

@media (max-width: 768px) {
.hero--full {
max-height: calc(100vh - 64px);
}
.hero--full .hero__copy-wrap {
transform: translateY(-4%);
}
.hero--full .hero__media {
height: calc(100vh - 64px);
max-height: calc(100vh - 64px);
}

.hero--full .hero__copy {
font-size: var(--fz-40);
line-height: 1.6;
padding: 0 12px;
}
.sub-text{
font-size: var(--fz-36);
position: relative;
right: 40px;
}
.sub-title{
font-size: 48px;
left: 20px
}
.hero--full .hero__slide img {
width: 100%;
height: calc(100vh - 64px);
max-height: calc(100vh - 64px);
object-fit: cover;
object-position: center center;
transform: scale(1.12);
transform-origin: center center;
will-change: transform;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}

.hero--full .hero__slide.is-active img,
.hero--full .hero__slide.is-next img {
animation: heroFullZoomSp 7s linear forwards;
}

@keyframes heroFullZoomSp {
0% {
transform: scale(1.12);
}
100% {
transform: scale(1);
}
}
}

.concept-section {
position: relative;
padding: 120px 0;
background:
linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
url("../img/bg_black.webp") center center / cover no-repeat;
color: var(--color-white);
overflow: hidden;
}
.space-section {
position: relative;
padding: 120px 0;
background:
linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
color: var(--color-white);
overflow: hidden;
}
.inner {
max-width: 1120px;
margin: 0 auto;
padding: 0 40px;
}
.concept-section__content {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
align-items: center;
column-gap: 70px;
}
.concept-section__text {
max-width: 560px;
}
.concept-section__heading {
display: flex;
align-items: center;
gap: 18px;
margin-bottom: 34px;
}
.concept-section__title {
margin: 0;
color: var(--color-white);
font-size: var(--fz-36);
font-weight: 400;
line-height: 1.6;
letter-spacing: 0.04em;
}
.ingredients-grid .concept-section__title {
font-size: var(--fz-24);
}
.concept-section__line {
display: block;
width: 100px;
height: 1px;
background: var(--color-gold);
transform: translateY(4px);
}
.concept-section__body p {
margin: 0 0 28px;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-16);
line-height: 1.6;
letter-spacing: 0.08em;
}
.space-section__body p {
margin: 0 0 28px;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-16);
line-height: 1.6;
letter-spacing: 0.08em;
}
.concept-section__body p:first-child {
font-size: var(--fz-20);
}
.i_title{
font-size: var(--fz-20);
}
.concept-section__body p:last-child {
margin-bottom: 0;
}
.concept-section__button-wrap {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
margin-top: 58px;
}
.concept-section__button {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 280px;
min-height: 58px;
padding: 0 32px;
background: #b89024;
color: var(--color-white);
font-size: var(--fz-16);
font-weight: 500;
letter-spacing: 0.12em;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.concept-section__button:hover {
opacity: 0.85;
transform: translateY(-1px);
}
.concept-section__button-line {
display: block;
width: 60px;
height: 1px;
background: var(--color-gold);
}
.concept-section__image {
width: 100%;
max-width: 540px;
margin: 0 auto;
}
.concept-section__image img {
display: block;
width: 100%;
aspect-ratio: 540 / 604;
object-fit: cover;
}

@media (max-width: 1200px) {
.concept-section {
padding: 96px 0;
}
.inner {
padding: 0 20px;
}
.i_title{
font-size: var(--fz-20);
}
.concept-section__content {
grid-template-columns: 1fr 1fr;
column-gap: 56px;
}
.ingredients-grid .concept-section__title {
font-size: var(--fz-24);
}
.concept-section__line {
width: 84px;
}
.concept-section__body p {
margin-bottom: 22px;
}
.concept-section__button {
min-width: 240px;
}
}

@media (max-width: 768px) {
.space-section {
padding: 70px 0;
}
.concept-section {
padding: 72px 0;
}
.inner {
padding: 0 16px;
}
.concept-section__content {
grid-template-columns: 1fr;
row-gap: 40px;
}
.concept-section__text {
max-width: 100%;
}
.concept-section__heading {
justify-content: flex-start;
gap: 16px;
margin-bottom: 26px;
}
.concept-section__title {
font-size: var(--fz-36);
}
.concept-section__line {
width: 64px;
transform: translateY(2px);
}
.ingredients-grid .concept-section__title {
font-size: var(--fz-22);
}
.i__line {
width: 30px;
}
.concept-section__heading:nth-child(2) {
justify-content: flex-start;
gap: 1px;
}
.concept-section__body p {
font-size: var(--fz-14);
line-height: 2;
margin-bottom: 18px;
}
.space-section__body p {
font-size: var(--fz-14);
}
.concept-section__button-wrap {
margin-top: 36px;
}
.concept-section__button {
min-width: 240px;
min-height: 52px;
padding: 0 24px;
font-size: var(--fz-14);
}
.concept-section__button-line {
width: 40px;
}
.concept-section__image img {
aspect-ratio: 4 / 5;
max-height: 300px;
margin: 0 auto;
}
}

.ingredients-section {
position: relative;
padding: 100px 0 120px;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
}
.ingredients-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
align-items: stretch;
}
.ingredients-card {
width: 100%;
}
.ingredients-card--image {
overflow: hidden;
background: #111;
}
.ingredients-card--image img {
display: block;
width: 100%;
height: 100%;
min-height: 420px;
object-fit: cover;
}
.ingredients-card--text {
box-sizing: border-box;
padding: 44px 36px;
color: var(--color-white);
display: flex;
flex-direction: column;
justify-content: flex-start;
min-height: 420px;
}
.ingredients-card__title {
margin: 0 0 28px;
font-size: var(--fz-18);
font-weight: 700;
line-height: 1.6;
letter-spacing: 0.08em;
}
.ingredients-card--text p {
margin: 0;
font-size: var(--fz-16);
line-height: 1.6;
letter-spacing: 0.06em;
}
.ingredients-grid > .ingredients-card--text:nth-child(3) {
padding-top: 42px;
padding-bottom: 42px;
}

@media (max-width: 1200px) {
.ingredients-section {
padding: 80px 0 96px;
}
.ingredients-grid {
gap: 20px;
}
.ingredients-card--image img,
.ingredients-card--text {
min-height: 360px;
}
.ingredients-card--text {
padding: 32px 28px;
}
.ingredients-card__title {
margin-bottom: 22px;
}
}

@media (max-width: 768px) {
.ingredients-section {
padding: 64px 0 72px;
}
.ingredients-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.ingredients-card--image img,
.ingredients-card--text {
min-height: auto;
}
.ingredients-card--image img {
aspect-ratio: 4 / 3;
}
.ingredients-card--text {
padding: 24px 0px;
}
.ingredients-card__title {
margin-bottom: 18px;
}
.ingredients-card--text p {
font-size: var(--fz-14);
}
.ingredients-grid > .ingredients-card:nth-child(1) {
order: 2;
}
.ingredients-grid > .ingredients-card:nth-child(2) {
order: 1;
}
.ingredients-grid > .ingredients-card:nth-child(3) {
order: 3;
}
.ingredients-grid > .ingredients-card:nth-child(4) {
order: 4;
}
}

.top-menu-section {
position: relative;
padding: 110px 0 120px;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_black.webp") center center / 110% 110% no-repeat;
color: var(--color-white);
}
.top-menu-section__head {
margin: 0 auto 48px;
}
.top-menu-section__heading {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
}
.top-menu-section__title {
margin: 0;
font-size: var(--fz-36);
font-weight: 400;
line-height: 1;
color: var(--color-white);
}
.top-menu-section__line {
width: 84px;
height: 1px;
background: var(--color-gold);
transform: translateY(4px);
}
.top-menu-section__lead {
margin: 0 0 28px;
font-size: var(--fz-20);
line-height: 1.6;
color: rgba(255, 255, 255, 0.95);
}
.top-menu-section__text {
margin: 0;
font-size: var(--fz-16);
line-height: 1.6;
color: rgba(255, 255, 255, 0.95);
}
.top-menu-section__list {
margin: 0 auto;
padding: 28px 26px;
}
.top-menu-card {
display: grid;
grid-template-columns: 285px 1fr;
gap: 30px;
align-items: start;
padding: 0 0 28px;
margin-bottom: 28px;
border-bottom: 1px dashed #bdbdbd;
}
.top-menu-card:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: 0;
}
.top-menu-card__image img {
display: block;
width: 100%;
aspect-ratio: 285 / 215;
max-width: 285px;
object-fit: cover;
}
.top-menu-card__body {
color: #222;
}
.top-menu-card__title {
margin: 0 0 14px;
font-size: var(--fz-16);
line-height: 1.6;
font-weight: 500;
color: var(--color-white);
}
.top-menu-card__price {
margin: 0 0 24px;
font-size: var(--fz-16);
font-weight: 500;
color: var(--color-white);
}
.top-menu-card__note {
padding: 14px 18px;
border: 2px solid #b89024;
font-size: var(--fz-16);
line-height: 1.6;
color: var(--color-white);
}
.top-menu-section__button-wrap {
display: flex;
align-items: center;
justify-content: center;
margin-top: 42px;
}
.contact-cta-section .top-menu-section__button-wrap {
margin-top: 0px;
}
.drawer .top-menu-section__button-wrap {
margin-top: 0px;
}

.top-menu-section__button {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 270px;
min-height: 54px;
padding: 0 28px;
background: #b89024;
color: var(--color-white);
font-size: var(--fz-16);
letter-spacing: 0.12em;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact-cta-section .top-menu-section__button {
padding: 16px 36px;
font-size: var(--fz-24);
letter-spacing: 0.12em;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.top-menu-section__button:hover {
opacity: 0.85;
transform: translateY(-1px);
}
.top-menu-section__button-line {
width: 68px;
height: 1px;
background: var(--color-gold);
}

@media (max-width: 1200px) {
.top-menu-section {
padding: 90px 0 96px;
}
.top-menu-section__head {
margin-bottom: 40px;
}
.top-menu-section__lead {
font-size: var(--fz-24);
}
.top-menu-section__text {
font-size: var(--fz-15);
}
.top-menu-section__list {
padding: 22px 20px;
}
.top-menu-card {
grid-template-columns: 285px 1fr;
gap: 12px;
}
.contact-cta-section .top-menu-section__button {
padding: 10px 10px;
font-size: var(--fz-20);
}
}

@media (max-width: 768px) {
.top-menu-section {
padding: 68px 0 72px;
}
.top-menu-section__head {
margin-bottom: 28px;
}
.top-menu-section__heading {
gap: 12px;
margin-bottom: 18px;
}
.top-menu-section__title {
font-size: var(--fz-36);
}
.top-menu-section__line {
width: 56px;
transform: translateY(2px);
}
.top-menu-section__lead {
margin-bottom: 18px;
font-size: var(--fz-18);
line-height: 1.8;
}
.top-menu-section__text {
font-size: var(--fz-14);
line-height: 2;
}
.top-menu-section__list {
padding: 18px 0px;
}
.top-menu-card {
grid-template-columns: 1fr;
gap: 16px;
padding-bottom: 22px;
margin-bottom: 22px;
}
.top-menu-card__image img {
max-width: none;
}
.top-menu-card__title {
font-size: var(--fz-14);
line-height: 1.6;
}
.top-menu-card__price {
font-size: var(--fz-16);
margin-bottom: 12px;
}
.top-menu-card__note {
padding: 12px 14px;
border-width: 3px;
font-size: var(--fz-14);
line-height: 1.6;
}
.top-menu-section__button-wrap {
margin-top: 28px;
}
.top-menu-section__button {
min-width: 220px;
min-height: 48px;
font-size: var(--fz-14);
}
.top-menu-section__button-line {
width: 40px;
}
}

.faq-section {
position: relative;
padding: 110px 0 120px;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_black.webp") center center / 110% 110% no-repeat;
color: var(--color-white);
}
.faq-section__head {
margin-bottom: 44px;
}
.faq-section__heading {
display: flex;
align-items: center;
gap: 18px;
margin-bottom: 80px;
}
.faq-section__title {
margin: 0;
color: var(--color-white);
font-size: clamp(3.6rem, 4vw, 5.2rem);
font-weight: 400;
line-height: 1;
letter-spacing: 0.04em;
}
.faq-section__line {
display: block;
width: 120px;
height: 1px;
background: var(--color-gold);
transform: translateY(4px);
}
.faq-section__lead {
margin: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 1.8;
letter-spacing: 0.04em;
}
.faq-item {
border-bottom: 1px dashed rgba(255, 255, 255, 0.8);
background: transparent;
}
.faq-item.is-open {
background: transparent;
}
.faq-question {
width: 100%;
padding: 20px 8px 20px 0;
border: 0;
background: transparent;
display: grid;
grid-template-columns: 56px 1fr 40px;
align-items: center;
gap: 24px;
text-align: left;
cursor: pointer;
color: var(--color-white);
}
.faq-question__label {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border: 1px dashed rgba(255, 255, 255, 0.8);border: 1px dashed rgba(255, 255, 255, 0.8);
color: var(--color-white);
font-size: 2.8rem;
line-height: 1;
font-weight: 400;
background: transparent;
}
.faq-question__text {
color: var(--color-white);
font-size: var(--fz-20);
line-height: 1.8;
font-weight: 400;
letter-spacing: 0.04em;
}
.faq-question__icon {
position: relative;
width: 26px;
height: 26px;
justify-self: end;
}
.faq-question__icon::before,
.faq-question__icon::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 18px;
height: 1px;
background: rgba(255,255,255,0.92);
transform: translate(-50%, -50%);
transition:
transform 0.35s ease,
opacity 0.35s ease,
background 0.35s ease;
}
.faq-question__icon::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.is-open .faq-question__icon::before,
.faq-item.is-open .faq-question__icon::after {
background: var(--color-white);
}
.faq-item.is-open .faq-question__icon::after {
opacity: 0;
transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}
.faq-question__icon {
position: relative;
width: 26px;
height: 26px;
justify-self: end;
transform: rotate(0deg);
transition: transform 0.4s ease;
}
.faq-item.is-open .faq-question__icon {
transform: rotate(180deg);
}
.faq-answer {
display: none;
padding: 0 0 28px 0;
}
.faq-answer__inner {
display: grid;
grid-template-columns: 56px 1fr;
gap: 24px;
align-items: start;
}
.faq-answer__label {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border: 1px dashed rgba(255, 255, 255, 0.8);
color: var(--color-white);
font-size: 2.8rem;
line-height: 1;
font-weight: 400;
}
.faq-answer__text {
margin: 0;
padding-top: 10px;
color: rgba(255, 255, 255, 0.88);
font-size: var(--fz-16);
line-height: 2;
letter-spacing: 0.04em;
}
.faq-answer__text p {
font-size: var(--fz-16);
}
.payment-list {
margin: 16px 0 0;
}
.payment-list__row {
display: grid;
grid-template-columns: 160px 1fr;
gap: 16px;
margin-bottom: 8px;
}
.payment-list dt {
font-weight: 700;
color: rgba(255, 255, 255, 0.95);
}
.payment-list dd {
margin: 0 0 0 8px;
color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1200px) {
.faq-section {
padding: 90px 0 96px;
}
.faq-section__lead {
font-size: var(--fz-18);
}
.faq-question {
padding: 26px 0;
gap: 20px;
}
.faq-answer {
padding-bottom: 24px;
}
.faq-answer__inner {
gap: 20px;
}
}

@media (max-width: 768px) {
.faq-section {
padding: 68px 0 72px;
}
.faq-section__head {
margin-bottom: 28px;
}
.faq-section__heading {
gap: 12px;
margin-bottom: 18px;
}
.faq-section__title {
font-size: clamp(2.8rem, 8vw, 4rem);
}
.faq-section__line {
width: 72px;
transform: translateY(2px);
}
.faq-section__lead {
font-size: var(--fz-14);
line-height: 1.8;
}
.faq-answer__text p {
font-size: var(--fz-14);
}
.faq-question {
grid-template-columns: 40px 1fr 24px;
gap: 10px;
padding: 18px 0;
}
.faq-question__label,
.faq-answer__label {
width: 40px;
height: 40px;
font-size: 2.2rem;
}
.faq-question__text {
font-size: var(--fz-14);
line-height: 1.8;
}
.faq-answer {
padding-bottom: 18px;
}
.faq-answer__inner {
grid-template-columns: 40px 1fr;
gap: 10px;
}
.faq-answer__text {
padding-top: 4px;
font-size: var(--fz-14);
line-height: 1.8;
}
.payment-list__row {
grid-template-columns: 1fr;
gap: 2px;
}
}

.contact-cta-section {
position: relative;
padding: 60px 0;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
}
.contact-cta-section__grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: stretch;
justify-content: center;
gap: 24px;
max-width: 1100px;
margin: 0 auto;
}
.contact-cta-section__tel {
min-height: 180px;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: center;
}
.contact-cta-section__tel {
flex-direction: column;
text-align: center;
}
.contact-cta-section__label {
margin: 0 0 12px;
color: #b89024;
font-size: var(--fz-30);
line-height: 1.5;
letter-spacing: 0.08em;
font-weight: 500;
}
.contact-cta-section__tel-link {
color: #b89024;
font-size: var(--fz-48);
line-height: 1.2;
letter-spacing: 0.03em;
font-weight: 500;
transition: opacity 0.3s ease;
}

@media (max-width: 1200px) {
.contact-cta-section {
padding: 40px 0;
}
.contact-cta-section__label {
font-size: var(--fz-20);
}
.contact-cta-section__tel {
padding: 0;
}
.contact-cta-section__tel-link {
font-size: var(--fz-36);
}
}

@media (max-width: 768px) {
.contact-cta-section {
padding: 40px 0;
}
.contact-cta-section__grid {
grid-template-columns: 1fr;
gap: 0px;
}
.contact-cta-section__tel {
min-height: auto;
padding: 12px 0px 36px;
}
.contact-cta-section__label {
font-size: var(--fz-18);
}
.contact-cta-section__tel-link {
font-size: var(--fz-30);
}
}

.shop-info-section {
position: relative;
padding: 110px 0 120px;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
color: var(--color-white);
}
.shop-info-section__heading {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 34px;
}
.shop-info-section__title {
margin: 0;
font-size: var(--fz-36);
font-weight: 400;
line-height: 1;
color: var(--color-white);
}
.shop-info-section__line {
width: 84px;
height: 1px;
background: var(--color-gold);
transform: translateY(4px);
}
.shop-info-section__head {
margin-bottom: 34px;
}
.shop-info-section__name {
margin: 0 0 8px;
font-size: var(--fz-32);
line-height: 1.5;
font-weight: 400;
color: var(--color-white);
}
.shop-info-section__kana {
margin: 0;
font-size: var(--fz-13);
line-height: 1.8;
letter-spacing: 0.08em;
color: rgba(255, 255, 255, 0.9);
}
.shop-info-table {
margin: 0;
border-top: 1px dashed rgba(255, 255, 255, 0.18);
}
.shop-info-table__row {
display: grid;
grid-template-columns: 140px 1fr;
gap: 28px;
padding: 22px 0;
border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}
.shop-info-table__head {
margin: 0;
font-size: var(--fz-16);
line-height: 1.6;
color: rgba(255, 255, 255, 0.95);
}
.shop-info-table__data {
margin: 0;
font-size: var(--fz-16);
line-height: 1.6;
color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1200px) {
.shop-info-section {
padding: 90px 0 96px;
}
.shop-info-section__name {
font-size: var(--fz-28);
}
.shop-info-table__row {
grid-template-columns: 120px 1fr;
gap: 24px;
}
}

@media (max-width: 768px) {
.shop-info-section {
padding: 68px 0 72px;
}
.shop-info-section__heading {
gap: 12px;
margin-bottom: 24px;
}
.shop-info-section__line {
width: 56px;
transform: translateY(2px);
}
.shop-info-section__head {
margin-bottom: 24px;
}
.shop-info-section__name {
font-size: var(--fz-24);
line-height: 1.7;
}
.shop-info-section__kana {
font-size: var(--fz-12);
line-height: 1.8;
}
.shop-info-table__row {
grid-template-columns: 1fr;
gap: 6px;
padding: 16px 0;
}
.shop-info-table__head {
font-size: var(--fz-14);
line-height: 1.8;
}
.shop-info-table__data {
font-size: var(--fz-14);
line-height: 1.6;
padding-left: 8px;
}
}

.shop-map-section {
padding: 120px 0;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_black.webp") center center / 110% 110% no-repeat;
}
.shop-map-section__frame {
width: 100%;
}
.shop-map-section__frame iframe {
display: block;
width: 100%;
height: 450px;
border: 0;
}
.shop-info-list {
display: grid;
gap: 10px;
}
.shop-info-list__row {
display: grid;
grid-template-columns: 11em 1fr;
gap: 16px;
align-items: start;
}
.shop-info-list__label {
display: block;
font-size: var(--fz-16);
line-height: 1.8;
color: rgba(255, 255, 255, 0.95);
white-space: nowrap;
}
.shop-info-list__value {
display: block;
min-width: 0;
font-size: var(--fz-16);
line-height: 1.8;
color: rgba(255, 255, 255, 0.95);
}
.shop-info-list__value p {
margin: 0;
}
.shop-info-list__value p + p {
margin-top: 4px;
}
.shop-info-list__row--single {
grid-template-columns: 1fr;
}
.shop-info-list__row--single .shop-info-list__label {
white-space: normal;
}

@media (max-width: 1200px) {
.shop-map-section {
padding: 96px 0;
}
}

@media (max-width: 768px) {
.shop-map-section {
padding: 72px 0;
}
.shop-map-section__frame iframe {
height: 320px;
}
.shop-info-list {
gap: 12px;
}
.shop-info-list__row {
grid-template-columns: 1fr;
gap: 2px;
}
.shop-info-list__label {
font-size: var(--fz-14);
line-height: 1.8;
}
.shop-info-list__value {
font-size: var(--fz-13);
line-height: 1.8;
padding-left: 8px;
white-space: nowrap;
}
.shop-info-list__value p {
font-size: var(--fz-14);
margin-top: 2px;
}
}

.floating-cta-pc,
.floating-cta-sp {
z-index: 9999;
transition: transform 0.35s ease, opacity 0.35s ease;
}
.floating-cta-pc a,
.floating-cta-sp a {
text-decoration: none;
color: inherit;
}
.floating-cta-pc a:hover,
.floating-cta-sp a:hover {
opacity: 0.8;
}
.floating-cta-pc.is-hidden,
.floating-cta-sp.is-hidden {
opacity: 0;
pointer-events: none;
}

.floating-cta-pc {
position: fixed;
right: 8px;
bottom: 0px;
display: none;
align-items: stretch;
gap: 8px;
background: transparent;
border: 0;
box-shadow: none;
overflow: visible;
transform: translateX(0);
opacity: 1;
transition: transform 0.38s ease, opacity 0.38s ease;
}
.floating-cta-pc.is-hidden {
transform: translateX(110%);
opacity: 0;
pointer-events: none;
}
.floating-cta-pc__tel,
.floating-cta-pc__item {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 64px;
background: var(--color-gold);
color: rgba(255, 255, 255, 0.95);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.floating-cta-pc__tel,
.floating-cta-sp__tel {
flex-direction: row;
gap: 10px;
}
.floating-cta-pc__item,
.floating-cta-sp__item {
flex-direction: column;
gap: 4px;
}
.floating-cta-pc__label,
.floating-cta-sp__label {
display: block;
font-size: 1.2rem;
line-height: 1.2;
font-weight: 600;
color: rgba(255, 255, 255, 0.95);
text-align: center;
}
.floating-cta-pc__tel {
gap: 10px;
padding: 0 22px;
min-width: 250px;
}
.floating-cta-pc__item {
width: 80px;
min-width: 80px;
}
.floating-cta-pc__icon,
.floating-cta-sp__icon {
display: flex;
align-items: center;
justify-content: center;
}
.floating-cta-pc__icon img,
.floating-cta-sp__icon img {
width: 30px;
height: 30px;
object-fit: contain;
display: block;
filter: brightness(0) invert(1);
}
.floating-cta-pc__tel-text {
font-size: 2rem;
line-height: 1;
white-space: nowrap;
font-weight: 600;
color: rgba(255, 255, 255, 0.95);
}

.floating-cta-sp {
position: fixed;
left: 8px;
right: 8px;
bottom: 0px;
display: none;
grid-template-columns: 1fr 80px 80px;
gap: 8px;
align-items: stretch;
background: transparent;
border: 0;
box-shadow: none;
}
.floating-cta-sp.is-hidden {
transform: translateY(110%);
}
.floating-cta-sp__tel,
.floating-cta-sp__item {
min-height: 60px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--color-gold);
color: rgba(255, 255, 255, 0.95);
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.floating-cta-sp__tel {
gap: 10px;
padding: 0 14px;
}
.floating-cta-sp__item {
width: 100%;
}
.floating-cta-sp__tel-text {
font-size: 1.8rem;
line-height: 1;
white-space: nowrap;
font-weight: 600;
color: rgba(255, 255, 255, 0.95);
}

/* =========================
表示切り替え
========================= */
@media (min-width: 768px) {
.floating-cta-pc {
display: flex;
}
}

@media (max-width: 767px) {
.floating-cta-sp {
display: grid;
}
}

@media (max-width: 390px) {
.floating-cta-sp {
left: 8px;
right: 8px;
bottom: 0px;
grid-template-columns: 1fr 80px 80px;
gap: 6px;
}
.floating-cta-sp__tel {
gap: 8px;
padding: 0 10px;
}
.floating-cta-sp__tel-text {
font-size: 1.8rem;
}
.floating-cta-sp__icon img {
width: 24px;
height: 24px;
}
}

.footer-logo-section {
padding: 16px 0 8px;
background:var(--color-black);
}
.footer-logo-section__inner {
width: 100%;
margin: 0 auto;
display: block;
justify-content: center;
}
.footer-logo {
display: inline-flex;
flex-direction: column;
align-items: center;
color: rgba(255, 255, 255, 0.95);
text-decoration: none;
line-height: 1;
}
.footer-logo img {
width: 250px;
}

@media (max-width: 1200px) {
.footer-logo-section {
padding: 16px 0 70px;
}
}

@media (max-width: 768px) {
.footer-logo img {
width: 150px;
}
.footer-logo-section {
padding: 16px 0 80px;
}
}

.menu-page {
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_blackmenu.webp") center center / 100% 100% no-repeat;
color: var(--color-white);
}
.menu-page__fv {
position: relative;
min-height: 250px;
padding: 0px 0 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.menu-page__fv-bg {
position: absolute;
inset: 0;
}
.menu-page__fv-bg img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
.menu__p{
position: relative;
top:-20px;
font-size: 16px;
}
.menu-tabs-section {
padding: 80px 0 100px;
background: transparent;
color: var(--color-white);
}
.menu-tabs {
max-width: 1280px;
margin: 0 auto;
padding: 80px 0;
border: 0;
background: transparent;
}
.menu-tabs__nav {
display: grid;
grid-template-columns: repeat(6, 1fr);
align-items: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-tabs__button {
position: relative;
min-height: 72px;
padding: 0 10px;
border: 0;
background: transparent;
color: rgba(255, 255, 255, 0.82);
font-size: var(--fz-16);
line-height: 1;
cursor: pointer;
transition: color 0.3s ease;
}
.menu-tabs__button:hover {
color: rgba(255, 255, 255, 0.95);
}
.menu-tabs__button.is-active {
color: var(--color-gold);
}
.menu-tabs__button::after {
content: "";
position: absolute;
left: 18%;
right: 18%;
bottom: 0;
height: 1px;
background: transparent;
transition: background 0.3s ease;
}
.menu-tabs__button.is-active::after {
background: var(--color-gold);
}
.menu-tabs__contents {
padding: 50px 0;
}
.menu-tabs__panel {
animation: menuTabFade 0.4s ease;
}
.menu-tabs__lead {
margin: 0 10px 34px;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-24);
line-height: 1.6;
letter-spacing: 0.04em;
}
.menu-tabs__image {
margin-bottom: 34px;
}
.menu-tabs__image img {
display: block;
width: 100%;
aspect-ratio: 2268 / 600;
object-fit: cover;
}
.menu-tabs__text {
margin: 0 10px;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 2;
letter-spacing: 0.04em;
padding-bottom: 24px;
}
.menu-tabs__detail {
margin-top: 48px;
}
.menu-tabs__block {
margin-top: 56px;
}
.menu-tabs__block:first-child {
margin-top: 0;
}
.menu-tabs__subheading {
position: relative;
margin: 0 0 22px;
padding-bottom: 18px;
color: var(--color-white);
font-size: var(--fz-24);
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.04em;
border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.menu-tabs__subheading::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 280px;
max-width: 28%;
height: 1px;
background: var(--color-gold);
}
.menu-tabs__subtext {
margin: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 2;
letter-spacing: 0.04em;
padding: 0 50px;
}
.menu-tabs__price-row {
position: relative;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 24px;
padding: 20px 50px;
}
.menu-tabs__price-row::after {
content: "";
position: absolute;
left: 25px;
right: 25px;
bottom: 0;
height: 1px;
background: rgba(255, 255, 255, 0.14);
}
.menu-tabs__price-name {
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 1.8;
letter-spacing: 0.04em;
}
.menu-tabs__price-value {
flex-shrink: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 1.4;
letter-spacing: 0.04em;
white-space: nowrap;
}

@keyframes menuTabFade {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@media (max-width: 1200px) {
.menu-page__fv {
min-height: 200px;
}
.menu-tabs {
padding: 50px 0;
}
.menu-tabs__nav {
grid-template-columns: repeat(3, 1fr);
}
.menu-tabs__button {
min-height: 72px;
font-size: var(--fz-18);
}
.menu-tabs__lead {
margin: 0 0px 34px;
}
.menu-tabs__image {
margin-bottom: 24px;
}
.menu-tabs__image img {
display: block;
width: 100%;
aspect-ratio: 1200 / 800;
object-fit: cover;
max-width: 100%;
height: auto;
}
.menu-tabs__detail {
margin-top: 36px;
}
.menu-tabs__block {
margin-top: 44px;
}
.menu-tabs__subheading {
margin-bottom: 18px;
padding-bottom: 16px;
}
.menu-tabs__subheading::after {
width: 180px;
max-width: 32%;
}
.menu-tabs__price-name {
font-size: var(--fz-18);
}
.menu-tabs__price-value {
font-size: var(--fz-18);
}
.menu-tabs__text{
font-size: var(--fz-18);
}
.menu-tabs__subtext {
font-size: var(--fz-18);
}
}

@media (max-width: 768px) {
.menu-page__fv {
min-height: 130px;
}
.menu-tabs-section {
padding: 64px 0 72px;
}
.menu-tabs__nav {
grid-template-columns: repeat(3, 1fr);
}
.menu-tabs__button {
min-height: 54px;
padding: 0;
font-size: var(--fz-14);
letter-spacing: 0.04em;
}
.menu-tabs__button::after {
left: 14%;
right: 14%;
}
.menu-tabs__lead {
margin-bottom: 16px;
font-size: var(--fz-20);
line-height: 1.6;
}
.menu-tabs__image {
margin-bottom: 16px;
}
.menu-tabs__text {
margin: 0;
font-size: var(--fz-14);
line-height: 1.9;
}
.menu-tabs__detail {
margin-top: 28px;
}
.menu-tabs__block {
margin-top: 32px;
}
.menu-tabs__subheading {
margin-bottom: 14px;
padding-bottom: 12px;
font-size: var(--fz-18);
line-height: 1.6;
}
.menu-tabs__subheading::after {
width: 110px;
max-width: 36%;
}
.menu-tabs__subtext {
font-size: var(--fz-14);
padding: 0;
}
.menu-tabs__price-row {
gap: 16px;
padding: 18px 0;
}
.menu-tabs__price-name,
.menu-tabs__price-value {
font-size: var(--fz-14);
}
.menu-tabs__price-row::after {
left: 0px;
right: 0px;
}
.menu__p{
font-size: 14px;
}
}

.thanks-page {
background:
linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
url("../img/bg_blackgray.webp") center center / cover no-repeat;
color: var(--color-white);
}
.thanks-page__section {
display: flex;
align-items: center;
justify-content: center;
padding: 100px 0;
}
.thanks-page__box {
padding: 64px 40px;
text-align: center;
background: rgba(255, 255, 255, 0.95);
color: #222;
}
.thanks-page__sub {
margin: 0 0 12px;
font-size: var(--fz-18);
letter-spacing: 0.18em;
color: var(--color-gold);
}
.thanks-page__title {
margin: 0 0 28px;
font-size: clamp(3rem, 4vw, 4.8rem);
line-height: 1.5;
font-weight: 400;
color: #222;
}
.thanks-page__text {
margin: 0;
font-size: var(--fz-16);
line-height: 2;
color: #333;
}
.thanks-page__button-wrap {
display: flex;
justify-content: center;
margin-top: 40px;
}
.thanks-page__button {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 260px;
min-height: 56px;
padding: 0 24px;
background: #b89024;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-16);
letter-spacing: 0.12em;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.thanks-page__button:hover {
opacity: 0.85;
transform: translateY(-1px);
}

@media (max-width: 768px) {
.thanks-page,
.thanks-page__section {
min-height: calc(100vh - 64px);
}
.thanks-page__box {
padding: 44px 20px;
}
.thanks-page__sub {
font-size: var(--fz-16);
}
.thanks-page__title {
font-size: var(--fz-24);
margin-bottom: 20px;
}
.thanks-page__text {
font-size: var(--fz-14);
line-height: 1.6;
}
.thanks-page__button-wrap {
margin-top: 28px;
}
.thanks-page__button {
width: 100%;
min-width: auto;
min-height: 50px;
font-size: var(--fz-14);
}
}

.error-page--minimal {
min-height: calc(100vh - 219px);
background:
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
color: rgba(255, 255, 255, 0.95);
}
.error-page--minimal .error-page__section {
min-height: calc(100vh - 322px);
display: flex;
align-items: center;
justify-content: center;
}
.error-page--minimal .error-page__inner {
width: min(100%, 900px);
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.error-page--minimal .error-page__eyebrow {
margin: 0 0 18px;
color: var(--color-gold);
font-size: var(--fz-16);
letter-spacing: 0.18em;
line-height: 1;
}
.error-page--minimal .error-page__title {
margin: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-36);
font-weight: 400;
line-height: 1.6;
letter-spacing: 0.04em;
}
.error-page--minimal .error-page__line {
display: block;
width: 72px;
height: 1px;
margin: 28px auto 30px;
background: var(--color-gold);
}
.error-page--minimal .error-page__text {
margin: 0;
color: rgba(255, 255, 255, 0.88);
font-size: var(--fz-16);
line-height: 2.1;
}
.error-page--minimal .error-page__button-wrap {
display: flex;
justify-content: center;
margin-top: 42px;
}
.error-page--minimal .error-page__button {
display: inline-flex;
align-items: center;
justify-content: center;
max-width: 350px;
min-height: 56px;
padding: 0 28px;
background: #b89024;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-16);
letter-spacing: 0.12em;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-page--minimal .error-page__button:hover {
opacity: 0.85;
transform: translateY(-1px);
}
@media (max-width: 1200px) {
.error-page--minimal,
.error-page--minimal .error-page__section {
min-height: calc(100vh - 260px);
}
}

@media (max-width: 768px) {
.error-page--minimal,
.error-page--minimal .error-page__section {
min-height: calc(100vh - 210px);
}
.error-page--minimal .error-page__inner {
padding: 0 16px;
}
.error-page--minimal .error-page__eyebrow {
font-size: var(--fz-14);
margin-bottom: 14px;
}
.error-page--minimal .error-page__title {
font-size: var(--fz-28);
line-height: 1.7;
}
.error-page--minimal .error-page__line {
width: 56px;
margin: 22px auto 24px;
}
.error-page--minimal .error-page__text {
font-size: var(--fz-14);
line-height: 2;
}
.error-page--minimal .error-page__button {
font-size: var(--fz-14);
}
}

.reserve-section {
padding: 80px 0;
background:
linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
color: rgba(255, 255, 255, 0.95);
}
.reserve-section__head {
text-align: center;
margin-bottom: 40px;
}
.reserve-section__sub {
margin: 0 0 10px;
color: var(--color-gold);
font-size: 1.4rem;
letter-spacing: 0.18em;
text-transform: uppercase;
}
.reserve-section__title {
margin: 0 0 18px;
font-size: clamp(3rem, 4vw, 4.8rem);
font-weight: 400;
line-height: 1.4;
}
.reserve-section__text {
margin: 0;
font-size: 1.6rem;
line-height: 1.9;
color: rgba(255, 255, 255, 0.95);
}
.reserve-layout {
display: grid;
grid-template-columns: 360px minmax(0, 1fr);
gap: 32px;
align-items: start;
max-width: 1100px;
margin: 0 auto;
}
.reserve-sidebar {
position: relative;
}
.reserve-sidebar__inner {
position: sticky;
top: 120px;
}
.reserve-main-content {
min-width: 0;
display: grid;
gap: 20px;
}
.reserve-section__box {
width: 100%;
overflow: hidden;
padding: 28px;
background: rgba(0, 0, 0, 0.45);
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
backdrop-filter: blur(4px);
}
.reserve-section__box--pc {
margin: 0;
}
.reserve-section__box--sp {
max-width: 420px;
margin: 0 auto;
}
.reserve-card {
padding: 24px 20px;
background: rgba(0, 0, 0, 0.42);
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.reserve-notes {
margin-top: 0;
padding: 28px 24px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.10);
}

.page-tab-menu {
padding: 100px 0;
background:
linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
color: var(--color-white);
}
.page-tab-menu__head {
text-align: center;
margin-bottom: 40px;
}
.page-tab-menu__title {
margin: 0 0 12px;
font-size: clamp(3rem, 4vw, 4.8rem);
line-height: 1.4;
font-weight: 400;
}
.page-tab-menu__text {
margin: 0;
font-size: var(--fz-16);
line-height: 1.8;
color: rgba(255, 255, 255, 0.95);
}
.page-tabs {
max-width: 1100px;
margin: 0 auto;
}
.page-tabs__nav {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 12px;
margin-bottom: 28px;
}
.page-tabs__button {
min-height: 58px;
padding: 12px 16px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.06);
color: var(--color-white);
font-size: var(--fz-16);
line-height: 1.4;
cursor: pointer;
transition:
background 0.3s ease,
color 0.3s ease,
border-color 0.3s ease,
transform 0.3s ease;
}
.page-tabs__button:hover {
background: rgba(255, 255, 255, 0.12);
}
.page-tabs__button.is-active {
background: #b89024;
border-color: #b89024;
color: rgba(255, 255, 255, 0.95);
}
.page-tabs__contents {
position: relative;
}
.page-tabs__panel {
padding: 40px 32px;
background: rgba(0, 0, 0, 0.36);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.page-tabs__panel-inner h3 {
margin: 0 0 16px;
font-size: var(--fz-24);
line-height: 1.5;
font-weight: 400;
color: var(--color-white);
}
.page-tabs__panel-inner p {
margin: 0;
font-size: var(--fz-16);
line-height: 1.9;
color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
.page-tabs__nav {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 768px) {
.page-tab-menu {
padding: 72px 0;
}
.page-tab-menu__head {
margin-bottom: 28px;
}
.page-tab-menu__text {
font-size: var(--fz-14);
}
.page-tabs__nav {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-bottom: 20px;
}
.page-tabs__button {
min-width: 0;
width: 100%;
min-height: 50px;
padding: 10px 10px;
font-size: var(--fz-14);
line-height: 1.5;
}
.page-tabs__panel {
padding: 24px 18px;
}
.page-tabs__panel-inner h3 {
font-size: var(--fz-20);
}
.page-tabs__panel-inner p {
font-size: var(--fz-14);
}
}

.course-section {
position: relative;
padding: 32px 20px 48px;
color: rgba(255, 255, 255, 0.95);
background:
linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)),
url("images/course-bg.jpg") center center / cover no-repeat;
overflow: hidden;
}
.course-section::before {
content: "";
position: absolute;
top: 0;
left: 6px;
width: 1px;
height: 100%;
background: rgba(185, 52, 38, 0.9);
}
.course-section__inner {
max-width: 1200px;
margin: 0 auto;
}
.course-section__heading {
margin: 0 0 28px;
font-size: 31px;
line-height: 1.5;
letter-spacing: 0.08em;
font-weight: 400;
}
.course-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 44px;
align-items: start;
}
.course-card {
text-align: center;
}
.course-card__image {
aspect-ratio: 1 / 1;
overflow: hidden;
}
.course-card__image {
aspect-ratio: 1 / 1;
overflow: hidden;
}
.course-card__image img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.course-card__body {
padding-top: 16px;
}
.course-card__title {
position: relative;
margin: 0;
padding: 0 0 10px;
font-size: 23px;
line-height: 1.8;
font-weight: 400;
letter-spacing: 0.08em;
}
.course-card__title::before {
content: "";
position: absolute;
bottom: 0;
left: 50%;
width: 160px;
height: 1px;
background: rgba(255, 255, 255, 0.18);
transform: translateX(-50%);
}
.course-card__sub {
margin: 10px 0 0;
font-size: 20px;
line-height: 1.7;
letter-spacing: 0.06em;
}
.course-card__label {
margin: 10px 0 8px;
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.08em;
}
.course-card__text {
margin: 0;
font-size: 14px;
line-height: 1.9;
letter-spacing: 0.08em;
}
.course-card__price {
position: relative;
margin: 18px auto 0;
font-size: 24px;
line-height: 1.4;
letter-spacing: 0.05em;
width: fit-content;
}

@media (max-width: 1024px) {
.course-grid {
gap: 28px;
}
.course-section__heading {
font-size: 24px;
}
.course-card__title {
font-size: 20px;
}
.course-card__sub {
font-size: 18px;
}
.course-card__price {
font-size: 22px;
}
}

@media (max-width: 767px) {
.course-section {
padding: 24px 16px 40px;
}
.course-grid {
grid-template-columns: 1fr;
gap: 36px;
}
.course-section__heading {
margin-bottom: 20px;
font-size: 20px;
}
.course-card__title {
font-size: 18px;
line-height: 1.7;
}
.course-card__sub {
font-size: 16px;
}
.course-card__label {
font-size: 14px;
}
.course-card__text {
font-size: 14px;
}
.course-card__price {
font-size: 20px;
}
}

.drink-menu {
position: relative;
padding: 18px 0 40px;
}
.drink-menu__inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.drink-menu__note {
margin: 0 0 14px;
font-size: 16px;
line-height: 1.8;
letter-spacing: 0.08em;
color: rgba(255, 255, 255, 0.95);
}
.drink-menu__head {
padding: 28px 0 26px;
border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.drink-menu__title {
margin: 0 0 8px;
font-size: 30px;
line-height: 1.5;
font-weight: 400;
letter-spacing: 0.1em;
}
.drink-menu__subnote {
margin: 0;
font-size: 16px;
line-height: 1.8;
letter-spacing: 0.08em;
color: rgba(255, 255, 255, 0.95);
}
.drink-menu__grid {
position: relative;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
column-gap: 0px;
row-gap: 50px;
align-items: stretch;
}
.drink-menu__grid::before,
.drink-menu__grid::after {
content: none;
}
.drink-menu__grid::after {
left: calc(66.666%);
transform: translateX(-50%);
}
.drink-card {
position: relative;
min-width: 0;
width: 100%;
padding: 0 10px;
box-sizing: border-box;
}
.drink-card:nth-child(3n+1)::after,
.drink-card:nth-child(3n+2)::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 1px;
height: 100%;
background: rgba(255, 255, 255, 0.12);
}
.drink-card__image {
width: 100%;
overflow: hidden;
}
.drink-card__image img {
display: block;
width: 100%;
aspect-ratio: 372 / 225;
object-fit: cover;
}
.drink-card__body {
padding-top: 14px;
}
.drink-card__title {
margin: 0 0 10px;
font-size: 24px;
line-height: 1.7;
font-weight: 400;
}
.drink-card__list {
margin: 0;
padding: 0 0 0 8px;
list-style: none;
}
.drink-card__list li {
font-size: 18px;
line-height: 2;
color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1200px) {
.drink-menu__title {
font-size: 28px;
}
.drink-menu__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: 20px;
row-gap: 50px;
}
.drink-menu__grid::after {
content: none;
}
.drink-card:nth-child(3n+1)::after,
.drink-card:nth-child(3n+2)::after {
display: none;
}
.drink-menu__grid::before {
left: calc(50% + (40px / 2));
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.12);
}
.drink-card__title {
font-size: 20px;
}
.drink-card__list li {
font-size: 18px;
}
}

@media (max-width: 767px) {
.drink-menu {
padding: 50px 0 32px;
}
.drink-menu__inner {
padding: 0 16px;
}
.drink-menu__head {
padding: 20px 0 20px;
}
.drink-menu__title {
font-size: 22px;
}
.drink-menu__subnote,
.drink-menu__note {
font-size: 14px;
}
.drink-menu__grid {
grid-template-columns: 1fr;
column-gap: 0;
row-gap: 50px;
}
.drink-menu__grid::before,
.drink-menu__grid::after {
content: none;
}
.drink-card{
padding: 0;
}
.drink-card__body {
padding-top: 12px;
}
.drink-card__title {
margin-bottom: 8px;
font-size: 17px;
}
.drink-card__list li {
font-size: 16px;
line-height: 1.9;
}
}

.menu-ippin {
padding: 0 0  50px 0;
}
.menu-ippin__block {
margin-top: 0;
}
.menu-ippin__heading {
margin-bottom: 28px;
}
.menu-ippin__list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0 56px;
}
.menu-ippin__col {
min-width: 0;
}
.menu-ippin__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 18px 12px;
border-bottom: 1px dashed rgba(255, 255, 255, 0.26);
}
.menu-ippin__name {
min-width: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 1.7;
letter-spacing: 0.04em;
}
.menu-ippin__price {
flex-shrink: 0;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-20);
line-height: 1.4;
letter-spacing: 0.04em;
white-space: nowrap;
}
.menu-ippin__gallery {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 44px;
margin-top: 28px;
}
.menu-ippin__card {
margin: 0;
text-align: center;
}
.menu-ippin__image {
overflow: hidden;
}
.menu-ippin__image img {
display: block;
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
}
.menu-ippin__caption {
margin-top: 12px;
color: rgba(255, 255, 255, 0.95);
font-size: var(--fz-18);
line-height: 1.7;
letter-spacing: 0.04em;
}

@media (max-width: 1200px) {
.menu-ippin__list {
column-gap: 32px;
margin-bottom: 28px;
}
.menu-ippin__row {
padding: 16px 8px;
gap: 18px;
}
.menu-ippin__name,
.menu-ippin__price {
font-size: var(--fz-18);
}
.menu-ippin__gallery {
gap: 24px;
}
.menu-ippin__caption {
font-size: var(--fz-16);
}
}

@media (max-width: 768px) {
.menu-ippin__heading {
margin-bottom: 20px;
}
.menu-ippin__list {
grid-template-columns: 1fr;
gap: 0;
}
.menu-ippin__row {
padding: 14px 0;
gap: 16px;
}
.menu-ippin__name,
.menu-ippin__price {
font-size: var(--fz-14);
}
.menu-ippin__gallery {
grid-template-columns: 1fr;
gap: 20px;
margin-top: 24px;
}
.menu-ippin__caption {
margin-top: 10px;
font-size: var(--fz-14);
}
}

.menu-ippin__image--bottom img {
  object-position: center 80%;
}
.menu-ippin__image--syobottom img {
  object-position: center 70%;
}

.privacy_policy {
padding: 100px 0;
position: relative;
overflow: hidden;
background:
linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
url("../img/bg_blackgray.webp") center center / 110% 110% no-repeat;
color: rgba(255, 255, 255, 0.95);
}

.privacy_policy_bg {
width: 100%;
}

.privacy_policy_inner {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

.archive_title_wrap {
margin-top: 60px;
text-align: center;
}

.archive_title {
font-size: clamp(24px, 4vw, 48px);
font-weight: 700;
line-height: 1.4;
letter-spacing: 0.08em;
color: rgba(255, 255, 255, 0.95);
position: relative;
display: inline-block;
padding-bottom: 18px;
}

.archive_title::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
width: 80px;
height: 2px;
background: #c8a96b;
}

.privacy_policy_content {
padding: 50px;
border-radius: 12px;
line-height: 2;
font-size: 1.6rem;
letter-spacing: 0.04em;
}

.privacy_policy_content h2 {
color: rgba(255, 255, 255, 0.95);
font-size: clamp(20px, 3vw, 30px);
margin: 50px 0 20px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(255,255,255,0.15);
}

.privacy_policy_content h3 {
font-size: 2rem;
margin: 40px 0 16px;
}

.privacy_policy_content p {
margin-bottom: 20px;
color: rgba(255,255,255,0.95);
}

.privacy_policy_content ul,
.privacy_policy_content ol {
margin: 20px 0 20px 24px;
}

.privacy_policy_content li {
margin-bottom: 10px;
}

.privacy_policy_content a {
color: #d8b97a;
text-decoration: underline;
}

@media (max-width: 767px) {

.privacy_policy {
padding: 70px 0;
}

.archive_title_wrap {
margin-bottom: 40px;
}

.privacy_policy_content {
padding: 30px 0px;
font-size: 1.5rem;
line-height: 1.9;
}

.privacy_policy_content h2 {
margin: 35px 0 16px;
}

}
.privacy_policy_content .wp-block-list {
  margin: 24px 0;
  padding-left: 0;
}

.privacy_policy_content .wp-block-list li {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 12px;
  line-height: 1.8;
}

.privacy_policy_content .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: bold;
}



.footer-logo-section {
  padding: 30px 20px 30px;
  background: #000;
  text-align: center;
}

.footer-logo-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: min(100%, 320px);
  height: auto;
}

.footer-policy-nav {
  margin-top: 24px;
}

.footer-policy-nav__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-policy-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-policy-nav a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1200px) {

  .footer-logo-section {
    padding: 30px 20px 90px;
  }
}

@media screen and (max-width: 768px) {

  .footer-policy-nav a {
    font-size: 1.3rem;
  }

}