*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root { --white:       #FFFFFF;
--off-white:   #F8F8F6;
--cobalt:      #0047AB;
--cobalt-600:  #1A65D6;
--cobalt-800:  #003280;
--cobalt-50:   #EEF4FF;
--cobalt-100:  #DBEAFE;
--text:        #1C1C1E;
--text-sub:    #6E6E73;
--text-faint:  #AEAEB2;
--border:      #E5E5EA;
--border-light:#F2F2F7;
--dark:        #1C1C1E; --font-sans:   'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', sans-serif;
--font-mincho: 'Zen Mincho', 'Yu Mincho', 'YuMincho', '游明朝', 'Noto Serif JP', serif;
--font-maru:   'Hiragino Maru Gothic ProN', 'Hiragino Maru Gothic Pro', 'Yu Gothic UI', 'Yu Gothic', system-ui, sans-serif; --max-width:   1160px;
--transition:  0.25s ease;
}
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
overflow-y: auto !important;
font-family: var(--font-sans);
background: var(--white);
color: var(--text);
line-height: 1.75;
font-size: 16px; padding-bottom: 60px;
}
@media (min-width: 769px) {
body {
padding-bottom: 0; }
}
img { max-width: 100%; height: auto; display: block; }
a {
color: var(--cobalt);
text-decoration: none;
transition: color var(--transition);
}
a:hover { color: var(--cobalt-800); } h1, h2, h3, h4 {
font-family: var(--font-mincho);
line-height: 1.3;
color: var(--text);
}
.section-eyebrow {
display: block;
font-family: var(--font-sans);
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--cobalt);
margin-bottom: 1rem;
text-align: center;
}
.section-title {
font-family: var(--font-mincho);
font-size: clamp(1.8rem, 4vw, 2.8rem);
text-align: center;
margin-bottom: 0.6rem;
letter-spacing: 0.04em;
}
.section-title-en {
font-family: var(--font-sans);
font-size: clamp(1.6rem, 3.5vw, 2.4rem);
font-weight: 300;
text-align: center;
letter-spacing: 0.06em;
margin-bottom: 0.6rem;
}
.section-divider {
width: 40px;
height: 1px;
background: var(--cobalt);
margin: 1.2rem auto 3.5rem;
}
.section-lead {
text-align: center;
font-family: var(--font-mincho);
font-size: clamp(13px, 1.6vw, 15px);
line-height: 2.2;
color: var(--text-sub);
max-width: 560px;
margin: -2rem auto 3.5rem;
} .container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.5rem;
}
section { padding: 6rem 0; } .site-header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 200;
padding: 1.1rem 0;
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
transition: padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
padding: 0.7rem 0;
box-shadow: 0 1px 16px rgba(0, 71, 171, 0.08);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
} .site-logo {
display: inline-block;
line-height: 1;
text-decoration: none;
flex-shrink: 0;
}
.site-logo-img {
display: block;
height: 52px;
width: auto;
max-width: none;
object-fit: contain;
transition: opacity var(--transition);
}
.site-logo:hover .site-logo-img {
opacity: 0.8;
}
.site-header.scrolled .site-logo-img {
height: 44px;
}
.nav-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.7rem;
min-width: 44px;
min-height: 44px;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
}
.nav-toggle span {
display: block;
width: 22px;
height: 1.5px;
background: var(--text);
transition: var(--transition);
}
.site-nav ul {
list-style: none;
display: flex;
gap: 2.2rem;
}
.site-nav a {
font-family: var(--font-sans);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text);
position: relative;
padding-bottom: 2px;
}
.site-nav a::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 0;
height: 1px;
background: var(--cobalt);
transition: width var(--transition);
}
.site-nav a:hover { color: var(--cobalt); }
.site-nav a:hover::after { width: 100%; } .hero {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden; background: linear-gradient(
170deg,
#002A6E 0%,
#0047AB 40%,
#1A65D6 70%,
#3A85E8 100%
);
} .hero-slides {
position: absolute;
inset: 0;
z-index: 0;
}
.hero-slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
opacity: 0;
transition: opacity 1.4s ease-in-out;
will-change: opacity;
}
.hero-slide.is-active {
opacity: 1;
}
.hero-slide-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
} .hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background:
radial-gradient(ellipse 65% 55% at 50% 42%, rgba(0,0,0,0.32) 0%, transparent 100%),
linear-gradient(
170deg,
rgba(0,20,60,0.16) 0%,
rgba(0,40,100,0.11) 40%,
rgba(0,60,140,0.07) 70%,
rgba(0,80,180,0.03) 100%
);
} .hero-dots {
position: absolute;
bottom: 5rem;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
gap: 10px;
align-items: center;
}
.hero-dot {
width: 7px;
height: 7px;
border-radius: 50%;
border: none;
background: rgba(255,255,255,0.35);
cursor: pointer;
padding: 0;
transition: background 0.35s ease, transform 0.35s ease;
}
.hero-dot.is-active {
background: rgba(255,255,255,0.92);
transform: scale(1.35);
} .hero::after {
content: '';
position: absolute;
bottom: -1px;
left: 0; right: 0;
height: 100px;
background: var(--white);
clip-path: ellipse(60% 100% at 50% 100%);
z-index: 2;
} .hero-content {
position: relative;
z-index: 3;
text-align: center;
padding: 2rem 1.5rem;
color: var(--white);
}
.hero-eyebrow {
display: block;
font-family: var(--font-sans);
font-size: 0.7rem;
font-weight: 400;
letter-spacing: 0.35em;
text-transform: uppercase;
color: rgba(255,255,255,0.65);
margin-bottom: 1.8rem;
text-shadow: 0 1px 6px rgba(0,0,0,0.45), 0 2px 18px rgba(0,0,0,0.28);
}
.hero-headline {
font-family: var(--font-sans);
font-size: clamp(2.4rem, 6vw, 5rem);
font-weight: 300;
line-height: 1.15;
letter-spacing: 0.02em;
color: var(--white);
margin-bottom: 1.2rem;
text-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.hero-headline em {
font-style: normal;
font-weight: 300;
color: var(--white);
}
.hero-tagline-jp {
font-family: var(--font-mincho);
font-size: 0.95rem;
font-weight: 400;
letter-spacing: 0.18em;
color: rgba(255,255,255,0.7);
margin-bottom: 0.8rem;
text-shadow: 0 1px 6px rgba(0,0,0,0.45), 0 2px 18px rgba(0,0,0,0.28);
}
.hero-location {
font-family: var(--font-sans);
font-size: 0.72rem;
font-weight: 400;
letter-spacing: 0.2em;
color: rgba(255,255,255,0.5);
text-transform: uppercase;
margin-bottom: 2.8rem;
text-shadow: 0 1px 6px rgba(0,0,0,0.50), 0 2px 18px rgba(0,0,0,0.32);
} .hero-vertical {
display: none;
}
.hero-scroll {
position: absolute;
bottom: 6rem;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
font-family: var(--font-sans);
font-size: 0.65rem;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: rgba(255,255,255,0.55);
text-shadow: 0 1px 4px rgba(0,0,0,0.40);
}
.hero-scroll::after {
content: '';
display: block;
width: 1px;
height: 40px;
background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
50% { opacity: 1; transform: scaleY(1); }
} .btn {
display: inline-block;
font-family: var(--font-sans);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.16em;
text-transform: uppercase;
padding: 0.85rem 2.4rem;
border: 1px solid var(--cobalt);
color: var(--cobalt);
background: transparent;
transition: all var(--transition);
cursor: pointer;
}
.btn:hover {
background: var(--cobalt);
color: var(--white);
}
.btn-white {
border-color: rgba(255,255,255,0.6);
color: var(--white);
background: transparent;
}
.btn-white:hover {
background: var(--white);
color: var(--cobalt);
border-color: var(--white);
}
.btn-cobalt {
background: var(--cobalt);
color: var(--white);
border-color: var(--cobalt);
}
.btn-cobalt:hover {
background: var(--cobalt-800);
border-color: var(--cobalt-800);
color: var(--white);
} .about {
background: var(--white);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
}
.about-image-wrap {
position: relative;
}
.about-image-wrap img,
.about-image-placeholder {
width: 100%;
aspect-ratio: 3/4;
object-fit: cover;
}
.about-image-placeholder {
background: linear-gradient(160deg, #002A6E, #0047AB, #3A85E8);
display: flex;
align-items: center;
justify-content: center;
color: rgba(255,255,255,0.4);
font-size: 0.75rem;
letter-spacing: 0.2em;
} .about-image-wrap::before {
content: '';
position: absolute;
top: 1.5rem;
left: -1.5rem;
right: 1.5rem;
bottom: -1.5rem;
border: 1px solid var(--cobalt-100);
z-index: -1;
} .about-logo-wrap {
margin-bottom: 1.8rem;
}
.about-logo-img {
height: 72px;
width: auto;
display: block;
object-fit: contain;
}
.about-text .section-eyebrow,
.about-text .section-title {
text-align: left;
}
.about-text .section-divider {
margin-left: 0;
}
.about-text p {
font-size: 0.95rem;
color: var(--text-sub);
line-height: 2;
margin-bottom: 1.2rem;
}
.about-tags {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
margin: 1.5rem 0 2rem;
}
.about-tag {
font-size: 0.7rem;
letter-spacing: 0.08em;
padding: 0.25rem 0.8rem;
border: 1px solid var(--border);
color: var(--cobalt);
background: var(--cobalt-50);
} .cafe {
background: var(--off-white);
}
.cafe-pillars {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin-bottom: 3rem;
}
.cafe-pillar {
background: var(--white);
padding: 2.5rem 2rem;
text-align: center;
transition: box-shadow var(--transition), transform var(--transition);
display: flex;
flex-direction: column;
}
.cafe-pillar:hover {
box-shadow: 0 12px 40px rgba(0, 71, 171, 0.1);
transform: translateY(-4px);
}
.cafe-pillar-icon {
font-size: 2rem;
margin-bottom: 1.2rem;
display: block;
} .cafe-pillar-photo {
margin: -2.5rem -2rem 1.5rem; height: 200px;
overflow: hidden;
}
.cafe-pillar-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease;
}
.cafe-pillar:hover .cafe-pillar-photo img {
transform: scale(1.05);
}
.cafe-pillar h3 {
font-family: var(--font-mincho);
font-size: 1.1rem;
color: var(--text);
margin-bottom: 0.6rem;
}
.cafe-pillar p {
font-size: 0.85rem;
color: var(--text-sub);
line-height: 1.7;
}
.pillar-story-link {
display: inline-block;
margin-top: auto;
padding-top: 1rem;
font-size: 0.82rem;
font-family: var(--font-mincho);
color: #8b2332;
text-decoration: none;
letter-spacing: 0.03em;
transition: color 0.3s ease, transform 0.3s ease;
}
.pillar-story-link:hover {
color: #6a1a27;
transform: translateX(4px);
text-decoration: underline;
}
.cafe-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1px;
background: var(--border);
}
.cafe-more-toggle {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: none;
border: 1px solid var(--color-border, #ddd);
padding: 0.7rem 1.8rem;
font-family: var(--font-mincho);
font-size: 0.88rem;
color: var(--color-text);
cursor: pointer;
border-radius: 2px;
letter-spacing: 0.05em;
transition: background 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
.cafe-more-toggle:hover {
background: var(--color-text);
color: #fff;
}
}
.cafe-more-toggle:active {
background: var(--color-text);
color: #fff;
}
.cafe-more-icon {
font-size: 1rem;
}
.cafe-more-content {
margin-top: 2rem;
}
.cafe-note {
margin-top: 2.8rem;
font-size: 0.85rem;
color: var(--text-sub);
text-align: center;
letter-spacing: 0.02em;
}
.cafe-item {
background: var(--white);
padding: 1.8rem;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
transition: background var(--transition);
}
.cafe-item:hover { background: var(--cobalt-50); }
.cafe-item-info h3 {
font-family: var(--font-mincho);
font-size: 1rem;
color: var(--text);
margin-bottom: 0.3rem;
}
.cafe-item-info p {
font-size: 0.82rem;
color: var(--text-sub);
line-height: 1.6;
}
.cafe-item-price {
font-family: 'Noto Sans JP', sans-serif;
font-size: 0.9rem;
font-weight: 600;
color: var(--cobalt);
white-space: normal;
flex-shrink: 0;
text-align: right;
min-width: 80px;
} .cafe-category-title {
font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
font-size: 1.1rem;
font-weight: 400;
letter-spacing: 0.15em;
color: var(--color-text, #1a2332);
margin: 2.5rem 0 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid #d4d0cb;
}
.cafe-category-title:first-of-type {
margin-top: 0;
} .select-section {
background: var(--white);
}
.select-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.select-card {
border: 1px solid var(--border);
overflow: hidden;
transition: all var(--transition);
}
.select-card:hover {
border-color: var(--cobalt);
box-shadow: 0 8px 30px rgba(0, 71, 171, 0.08);
}
.select-card-img {
width: 100%;
aspect-ratio: 3 / 2;
overflow: hidden;
}
.select-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.select-card:hover .select-card-img img {
transform: scale(1.05);
}
.select-card-body {
padding: 2rem;
}
.select-card-label {
font-family: var(--font-sans);
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--cobalt);
display: block;
margin-bottom: 1rem;
}
.select-card h3 {
font-family: var(--font-mincho);
font-size: 1.2rem;
margin-bottom: 0.8rem;
}
.select-card p {
font-size: 0.88rem;
color: var(--text-sub);
line-height: 1.8;
} .journal {
background: var(--off-white);
}
.journal-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 2.5rem;
margin-bottom: 3rem;
}
.journal-card {
background: var(--white);
display: block;
color: inherit;
text-decoration: none;
transition: all var(--transition);
border: 1px solid transparent;
}
.journal-card:hover {
border-color: var(--cobalt-100);
box-shadow: 0 8px 32px rgba(0, 71, 171, 0.08);
color: inherit;
}
.journal-card-thumbnail {
width: 100%;
aspect-ratio: 16/9;
object-fit: cover;
display: block;
}
.journal-card-thumbnail-placeholder {
width: 100%;
aspect-ratio: 16/9;
background: #F0EDE6;
display: flex;
align-items: center;
justify-content: center;
}
.journal-card-placeholder-logo {
width: 52%;
max-width: 200px;
height: auto;
object-fit: contain;
opacity: 0.55;
}
.journal-card-body {
padding: 1.8rem;
}
.journal-card-meta {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.8rem;
}
.journal-card-date {
font-family: var(--font-sans);
font-size: 0.72rem;
color: var(--text-faint);
letter-spacing: 0.06em;
}
.journal-card-cat {
font-family: var(--font-sans);
font-size: 0.65rem;
font-weight: 600;
color: var(--cobalt);
background: var(--cobalt-50);
padding: 0.15rem 0.6rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}  .journal-card-cat--hibi-no-fukei {
color: #2563c4;
background: #ddeeff;
} .journal-card-cat--koromo-no-mekiki {
color: #3a8a5a;
background: #d8f2e4;
} .journal-card-cat--shoku-no-uragawa {
color: #c0622a;
background: #fde8d4;
} .journal-card-cat--behind-the-food {
color: #c0622a;
background: #fde8d4;
}
.journal-card-cat--daily-scenes {
color: #2563c4;
background: #ddeeff;
} [class*="journal-card-cat--"][class*="e7%be%8e%e9%a3%9f"] {
color: #c0622a;
background: #fde8d4;
}
[class*="journal-card-cat--"][class*="e6%97%a5%e5%b8%b8"] {
color: #2563c4;
background: #ddeeff;
} [class*="journal-card-cat--"][class*="ec%9d%8c%ec%8b%9d"] {
color: #c0622a;
background: #fde8d4;
}
[class*="journal-card-cat--"][class*="ec%9d%bc%ec%83%81"] {
color: #2563c4;
background: #ddeeff;
}
.journal-card-title {
font-family: var(--font-mincho);
font-size: 1.05rem;
line-height: 1.5;
color: var(--text);
margin-bottom: 0.6rem;
}
.journal-card-excerpt {
font-size: 0.83rem;
color: var(--text-sub);
line-height: 1.75;
}
.journal-empty {
text-align: center;
color: var(--text-faint);
padding: 4rem 0;
font-size: 0.9rem;
} .journal-archive-wrap {
background: var(--sand);
min-height: 100vh;
}
.journal-archive-hero {
position: relative;
background: linear-gradient(160deg, #002A6E 0%, #0047AB 45%, #1A65D6 100%);
padding: 120px 24px 80px;
text-align: center;
overflow: hidden;
}
.journal-archive-hero .container { position: relative; z-index: 2; }
.journal-hero-bg {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: center 30%;
z-index: 0;
}
.journal-hero-overlay {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(160deg, rgba(0,42,110,0.55) 0%, rgba(0,71,171,0.45) 45%, rgba(26,101,214,0.4) 100%);
}
.journal-hero-bg {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: center 40%;
z-index: 0;
}
.journal-hero-overlay {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(160deg, rgba(0,42,110,0.7) 0%, rgba(0,71,171,0.55) 45%, rgba(26,101,214,0.5) 100%);
}
.journal-archive-hero .section-eyebrow {
color: rgba(255,255,255,0.55);
border-bottom-color: rgba(255,255,255,0.18);
}
.journal-archive-title {
font-family: var(--font-mincho);
font-size: clamp(2.4rem, 6vw, 4rem);
font-weight: 400;
color: var(--white);
line-height: 1.2;
margin-bottom: 1rem;
}
.journal-archive-sub {
font-family: var(--font-sans);
font-size: 0.85rem;
color: rgba(255,255,255,0.55);
letter-spacing: 0.1em;
}
.journal-archive-main {
padding: 80px 24px 100px;
}
.journal-empty-state {
text-align: center;
padding: 4rem 0;
}
.journal-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 0.4rem;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.journal-pagination a,
.journal-pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 0.75rem;
font-family: var(--font-sans);
font-size: 0.8rem;
color: var(--cobalt);
border: 1px solid var(--cobalt-100);
text-decoration: none;
transition: all var(--transition);
}
.journal-pagination a:hover {
background: var(--cobalt);
color: var(--white);
border-color: var(--cobalt);
}
.journal-pagination .current {
background: var(--cobalt);
color: var(--white);
border-color: var(--cobalt);
}
.journal-pagination .dots {
border: none;
color: var(--text-faint);
}
.journal-back-wrap {
text-align: center;
padding-top: 2rem;
}
.journal-back-link {
font-family: var(--font-sans);
font-size: 0.78rem;
letter-spacing: 0.15em;
color: var(--text-sub);
text-decoration: none;
transition: color var(--transition);
}
.journal-back-link:hover {
color: var(--cobalt);
} .breadcrumb {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.3rem;
font-family: var(--font-sans);
font-size: 0.72rem;
color: var(--text-sub);
margin-bottom: 2rem;
}
.breadcrumb a {
color: var(--text-sub);
text-decoration: none;
transition: color var(--transition);
}
.breadcrumb a:hover {
color: var(--cobalt);
}
.breadcrumb-sep {
color: var(--text-faint);
font-size: 0.8rem;
}
.breadcrumb-current {
color: var(--color-text);
font-weight: 500; word-break: break-all;
} .journal-filter-wrap {
background: var(--white);
border-bottom: 1px solid var(--cobalt-100);
padding: 1.2rem 0;
}
.journal-filter {
display: flex;
align-items: center;
gap: 0.6rem;
flex-wrap: wrap;
}
.journal-filter-btn {
font-family: var(--font-sans);
font-size: 0.78rem;
letter-spacing: 0.06em;
padding: 0.45rem 1.2rem;
border-radius: 999px;
border: 1px solid var(--cobalt-100);
background: var(--white);
color: var(--text-sub);
cursor: pointer;
transition: all var(--transition);
white-space: nowrap;
}
.journal-filter-btn:hover {
border-color: var(--cobalt);
color: var(--cobalt);
}
.journal-filter-btn.is-active {
background: var(--cobalt);
border-color: var(--cobalt);
color: var(--white);
}
.journal-filter-empty {
text-align: center;
color: var(--text-faint);
padding: 4rem 0;
font-size: 0.9rem;
} .instagram {
background: var(--white);
}
.instagram-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 4px;
max-width: 900px;
margin: 0 auto;
}
.instagram-item {
aspect-ratio: 1;
overflow: hidden;
display: block;
border-radius: 2px;
}
.instagram-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.instagram-item:hover img {
transform: scale(1.05);
} .info {
background: var(--white);
}
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin-bottom: 2.5rem;
}
.info-card {
border: 1px solid var(--border);
padding: 2.5rem;
}
.info-card h3 {
font-family: var(--font-sans);
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--cobalt);
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border);
}
.hours-list { list-style: none; }
.hours-list li {
display: flex;
justify-content: space-between;
padding: 0.65rem 0;
border-bottom: 1px solid var(--border-light);
font-size: 0.88rem;
color: var(--text-sub);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day {
color: var(--text);
font-weight: 400;
}
.hours-list .closed { color: #D04020; }
.access-list { list-style: none; }
.access-list li {
display: flex;
gap: 0.8rem;
padding: 0.75rem 0;
border-bottom: 1px solid var(--border-light);
font-size: 0.88rem;
color: var(--text-sub);
}
.access-list li:last-child { border-bottom: none; }
.access-list .label {
font-family: var(--font-sans);
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--cobalt);
min-width: 58px;
padding-top: 0.15rem;
flex-shrink: 0;
}
.map-wrap {
border: 1px solid var(--border);
overflow: hidden;
}
.map-wrap iframe {
display: block;
width: 100%;
height: 420px;
border: 0;
} .terrace-map-section {
text-align: center;
}
.terrace-map-heading {
font-family: var(--font-sans);
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--cobalt);
margin-bottom: 0.4rem;
}
.terrace-map-sub {
font-size: 0.92rem;
color: var(--text-sub);
margin-bottom: 1.2rem;
}
.terrace-map-wrap {
position: relative;
border: 1px solid var(--border);
overflow: hidden;
line-height: 0;
}
.terrace-map-img {
width: 100%;
height: auto;
display: block;
}
.terrace-pin {
position: absolute;
top: 54%;
left: 32%;
transform: translate(-50%, -50%);
z-index: 2;
}
.terrace-pin-dot {
display: block;
width: 16px;
height: 16px;
background: var(--cobalt);
border: 3px solid #fff;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0,0,0,.35);
margin: 0 auto;
}
.terrace-pin-ring {
position: absolute;
top: 50%;
left: 50%;
width: 40px;
height: 40px;
margin: -20px 0 0 -20px;
border: 2px solid var(--cobalt);
border-radius: 50%;
opacity: 0;
animation: pin-pulse 2s ease-out infinite;
}
@keyframes pin-pulse {
0% { transform: scale(.5); opacity: .7; }
100% { transform: scale(1.6); opacity: 0; }
}
.terrace-pin-label {
display: block;
margin-top: 6px;
font-family: var(--font-sans);
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.08em;
color: #fff;
background: var(--cobalt);
padding: 4px 10px;
border-radius: 4px;
white-space: nowrap;
line-height: 1.4;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,.3);
} #faq { background: var(--off-white); text-align: center; }
#faq .faq-list { max-width: 780px; margin: 2rem auto 0; text-align: left; list-style: none !important; padding: 0; }
#faq .faq-item { border-bottom: 1px solid rgba(0,0,0,.08); overflow: hidden; list-style: none; }
#faq .faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
#faq .faq-q {
width: 100%; background: none; border: none; text-align: left;
padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
gap: 20px; cursor: pointer; font-family: var(--font-sans); font-size: 14px;
font-weight: 400; color: var(--text); line-height: 1.6;
}
#faq .faq-q-text { flex: 1; }
#faq .faq-q-text span { display: inline-block; font-size: 14px; color: var(--cobalt); margin-right: 12px; font-style: italic; }
#faq .faq-icon {
width: 24px; height: 24px; border-radius: 50%; background: rgba(0,71,171,.1);
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
transition: transform .3s, background .3s; color: var(--cobalt); font-size: 18px; line-height: 1;
}
#faq .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cobalt); color: white; }
#faq .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
#faq .faq-item.open .faq-a { max-height: 400px; }
#faq .faq-a-inner { padding: 0 0 24px 28px; font-family: var(--font-maru); font-size: 13px; line-height: 2.3; color: var(--text-sub); }
@media (max-width: 768px) {
#faq .faq-q { padding: 16px 0; gap: 12px; font-size: 13px; line-height: 1.6; }
#faq .faq-q-text span { font-size: 13px; margin-right: 6px; }
#faq .faq-icon { width: 22px; height: 22px; font-size: 16px; }
#faq .faq-a-inner { padding: 0 0 16px 22px; font-size: 12.5px; line-height: 1.85; }
} .aerial-wrap {
position: relative; margin-top: 2rem; border-radius: 8px; overflow: hidden;
}
.aerial-wrap img { width: 100%; height: auto; display: block; }
.aerial-pin {
position: absolute; top: 54%; left: 31%;
display: flex; flex-direction: column; align-items: center; gap: 4px;
transform: translate(-50%, -100%);
padding-bottom: 9px;
}
.aerial-pin-dot {
width: 18px; height: 18px; border-radius: 50%;
background: var(--cobalt); border: 3px solid var(--white);
box-shadow: 0 2px 8px rgba(0,0,0,.35);
flex-shrink: 0; position: relative;
}
.aerial-pin-dot::before {
content: ''; position: absolute; top: 50%; left: 50%;
width: 18px; height: 18px; border-radius: 50%;
background: rgba(0,71,171,.35);
transform: translate(-50%, -50%);
animation: pin-pulse 2s ease-out infinite;
}
@keyframes pin-pulse {
0% { width: 18px; height: 18px; opacity: 1; }
100% { width: 50px; height: 50px; opacity: 0; }
}
.aerial-pin-label {
background: var(--cobalt); color: var(--white);
font-family: var(--font-sans); font-size: 12px; font-weight: 600;
padding: 6px 12px; border-radius: 4px; line-height: 1.4;
white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
@media (max-width: 768px) {
.aerial-pin-dot { width: 14px; height: 14px; border-width: 2px; }
.aerial-pin-label { font-size: 10px; padding: 4px 8px; }
}
.contact {
background: var(--cobalt-50);
text-align: center;
}
.contact-inner {
max-width: 620px;
margin: 0 auto;
}
.contact-inner > p {
font-size: 0.92rem;
color: var(--text-sub);
line-height: 1.9;
margin-bottom: 2.5rem;
}
.contact-form { text-align: left; }
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
display: block;
font-family: var(--font-sans);
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-sub);
margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.8rem 1rem;
background: var(--white);
border: 1px solid var(--border);
color: var(--text);
font-family: 'Noto Sans JP', sans-serif;
font-size: 0.9rem;
outline: none;
transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--cobalt);
box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}
.form-group textarea {
height: 130px;
resize: vertical;
}
.form-submit {
text-align: center;
margin-top: 1.8rem;
}
.form-notice {
font-size: 0.75rem;
color: var(--text-faint);
margin-top: 1rem;
text-align: center;
} .contact-success {
background: var(--cobalt-50);
border: 1px solid var(--cobalt-100);
padding: 1.5rem;
color: var(--cobalt-800);
text-align: center;
font-size: 0.9rem;
margin-bottom: 2rem;
} .contact-confirm,
.contact-complete {
text-align: center;
animation: fadeInUp 0.35s ease;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(16px); }
to   { opacity: 1; transform: translateY(0); }
}
.contact-confirm h3,
.contact-complete h3 {
font-family: var(--font-sans);
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--text);
}
.contact-confirm > p,
.contact-complete > p {
font-size: 0.9rem;
color: var(--text-sub);
line-height: 1.8;
margin-bottom: 1.5rem;
}
.confirm-list {
text-align: left;
margin: 0 auto 2rem;
max-width: 520px;
}
.confirm-item {
display: grid;
grid-template-columns: 120px 1fr;
gap: 0.5rem;
padding: 0.8rem 0;
border-bottom: 1px solid var(--border);
}
.confirm-item dt {
font-family: var(--font-sans);
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.08em;
color: var(--text-sub);
padding-top: 0.15rem;
}
.confirm-item dd {
font-size: 0.92rem;
color: var(--text);
line-height: 1.7;
white-space: pre-wrap;
word-break: break-word;
}
.confirm-actions {
display: flex;
justify-content: center;
gap: 1rem;
} .complete-icon {
width: 60px;
height: 60px;
margin: 0 auto 1rem;
background: var(--cobalt);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
line-height: 1;
}
.complete-redirect {
font-size: 0.82rem;
color: var(--text-faint);
margin-bottom: 1.5rem;
} .is-hidden {
opacity: 0;
transform: translateY(-8px);
pointer-events: none;
transition: opacity 0.25s ease, transform 0.25s ease;
} @media (max-width: 768px) {
.confirm-item {
grid-template-columns: 1fr;
gap: 0.2rem;
}
.confirm-actions {
flex-direction: column;
align-items: stretch;
}
} .site-footer {
background: #0A1628;
color: rgba(255,255,255,0.6);
padding: 4rem 0 2.5rem;
border-top: 2px solid var(--cobalt);
}
.footer-inner {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-logo-link {
text-decoration: none;
display: inline-block;
line-height: 1;
} .footer-logo-img {
width: 240px;
max-width: 100%;
height: auto;
display: block;
margin-bottom: 1.4rem;
}
.footer-brand p {
font-size: 0.83rem;
color: rgba(255,255,255,0.45);
line-height: 1.9;
}
.footer-col h4 {
font-family: var(--font-sans);
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
font-size: 0.83rem;
color: rgba(255,255,255,0.45);
transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); } .footer-reservation {
text-align: center;
padding: 2rem 0;
border-top: 1px solid rgba(255,255,255,0.08);
border-bottom: 1px solid rgba(255,255,255,0.08);
margin-bottom: 1.5rem;
}
.footer-reservation-text {
font-family: var(--font-serif);
font-size: 0.95rem;
color: rgba(255,255,255,0.7);
margin-bottom: 1.2rem;
letter-spacing: 0.05em;
}
.footer-reservation-buttons {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
.reservation-btn {
display: inline-block;
padding: 0.7rem 1.8rem;
font-family: var(--font-sans);
font-size: 0.85rem;
letter-spacing: 0.08em;
border: 1px solid rgba(255,255,255,0.3);
color: var(--white);
text-decoration: none;
transition: all var(--transition);
}
.reservation-btn:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.6);
}
.footer-bottom {
border-top: none;
padding-top: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
font-family: var(--font-sans);
font-size: 0.72rem;
color: rgba(255,255,255,0.25);
} .fixed-nav {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 300;
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-top: 1px solid var(--border);
height: 60px;
padding: 0 0.5rem;
align-items: stretch;
justify-content: space-around;
}
.fixed-nav-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
flex: 1;
color: var(--text-faint);
text-decoration: none;
font-family: var(--font-sans);
font-size: 0.55rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color var(--transition);
-webkit-tap-highlight-color: transparent;
}
.fixed-nav-item:hover,
.fixed-nav-item.active {
color: var(--cobalt);
}
.fixed-nav-item svg {
width: 20px;
height: 20px;
stroke: currentColor;
fill: none;
stroke-width: 1.3;
stroke-linecap: round;
stroke-linejoin: round;
} .entry-content h2, .entry-content h3 {
font-family: var(--font-mincho);
color: var(--text);
margin: 2rem 0 1rem;
}
.related-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1.2rem;
}
.entry-content p {
color: var(--text-sub);
line-height: 1.95;
margin-bottom: 1.3rem;
font-size: 0.95rem;
}
.entry-content img {
margin: 1.5rem 0;
max-width: 100%;
} .manual-related-hidden {
display: none;
} .article-cta {
margin-top: 3rem;
padding: 1.8rem 1.5rem;
text-align: center;
background: var(--off-white, #faf8f5);
border-radius: 4px;
}
.article-cta-message {
font-family: var(--font-serif);
font-size: 1.05rem;
color: var(--text);
margin-bottom: 0.4rem;
letter-spacing: 0.05em;
}
.article-cta-sub {
font-size: 0.75rem;
color: var(--color-muted, #999);
margin-bottom: 1.2rem;
letter-spacing: 0.02em;
}
.article-cta-buttons {
display: flex;
justify-content: center;
gap: 0.8rem;
flex-wrap: wrap;
}
.article-cta-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.7rem 1.5rem;
font-family: var(--font-sans);
font-size: 0.82rem;
letter-spacing: 0.06em;
text-decoration: none;
transition: all var(--transition);
}
.article-cta-btn svg {
flex-shrink: 0;
}
.article-cta-btn--primary {
background: var(--text, #1C1C1E);
color: var(--white);
border: 1px solid var(--text, #1C1C1E);
}
.article-cta-btn--primary:hover {
background: transparent;
color: var(--text);
}
.article-cta-btn--secondary {
background: transparent;
color: var(--text);
border: 1px solid var(--border, #E5E5EA);
}
.article-cta-btn--secondary:hover {
border-color: var(--text);
} .article-share {
margin-top: 1.5rem;
padding-top: 1.2rem;
text-align: center;
}
.article-share-label {
display: block;
font-family: var(--font-sans);
font-size: 0.75rem;
color: var(--text-sub, #6E6E73);
margin-bottom: 0.8rem;
letter-spacing: 0.08em;
}
.article-share-buttons {
display: flex;
justify-content: center;
gap: 0.6rem;
}
.share-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.4rem;
width: 44px;
height: 44px;
font-family: var(--font-sans);
font-size: 0.7rem;
text-decoration: none;
border: 1px solid var(--border, #E5E5EA);
border-radius: 50%;
color: var(--text-sub, #6E6E73);
background: transparent;
cursor: pointer;
transition: all var(--transition);
}
.share-btn svg {
flex-shrink: 0;
}
.share-btn:hover {
color: var(--text);
border-color: var(--text);
}
.share-btn--line:hover { color: #06C755; border-color: #06C755; }
.share-btn--x:hover { color: #000; border-color: #000; }
.share-btn--instagram:hover { color: #E4405F; border-color: #E4405F; }
.share-btn--copy {
width: auto;
border-radius: 22px;
padding: 0 1rem;
} @media (max-width: 1024px) {
.cafe-pillars { grid-template-columns: 1fr; }
.about-grid { gap: 3rem; }
}
@media (max-width: 768px) {
.nav-toggle { display: flex; }
.site-nav {
display: none;
position: absolute;
top: 100%;
left: 0; right: 0;
background: var(--white);
border-top: 1px solid var(--border);
padding: 1.5rem;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.site-nav.open { display: block; }
.site-nav ul {
flex-direction: column;
gap: 1.2rem;
} .fixed-nav { display: flex; } .hero { align-items: flex-end; justify-content: flex-end; min-height: 100svh; }
.hero-content { display: none; }
.hero-vertical {
display: flex;
position: relative;
z-index: 3;
padding: 0 1.5rem 8rem 0;
flex-direction: row-reverse;
align-items: flex-end;
gap: 0.5rem;
}
.hero-vert-title {
font-family: var(--font-mincho);
font-size: clamp(2.2rem, 10vw, 3.2rem);
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.12em;
color: var(--white);
writing-mode: vertical-rl;
text-orientation: mixed;
text-shadow: 0 2px 16px rgba(0,0,0,0.15); }
.hero-vert-sub {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.6rem;
padding-bottom: 0.5rem;
}
.hero-vert-brand {
font-family: var(--font-sans);
font-size: 0.68rem;
font-weight: 400;
letter-spacing: 0.22em;
color: rgba(255,255,255,0.6);
text-transform: uppercase;
writing-mode: vertical-rl;
text-orientation: mixed;
}
.hero-vert-copy {
font-family: var(--font-sans);
font-size: 0.62rem;
font-weight: 300;
letter-spacing: 0.16em;
color: rgba(255,255,255,0.45);
writing-mode: vertical-rl;
text-orientation: mixed;
}
.hero::after { height: 60px; }
.hero-scroll { bottom: 7rem; } .about-grid,
.info-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.about-image-wrap::before { display: none; }
.cafe-pillars { grid-template-columns: 1fr; }
.journal-grid,
.select-grid {
grid-template-columns: 1fr;
}
.footer-inner {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-bottom {
flex-direction: column;
gap: 0.5rem;
text-align: center;
}
.form-row { grid-template-columns: 1fr; }
section { padding: 4rem 0; }
} @media (max-width: 768px) { section { padding: 2.8rem 0; }
.section-divider { margin: 0.8rem auto 2rem; }
.section-lead {
max-width: 100%;
margin-bottom: 2rem;
font-size: 13px;
line-height: 1.85;
}
.section-title { margin-bottom: 0.4rem; }
.section-title-en { font-size: clamp(1.4rem, 7vw, 2rem); margin-bottom: 0.4rem; } .site-logo-img { height: 42px; }
.site-header.scrolled .site-logo-img { height: 36px; }
.site-header { padding: 0.8rem 0; }
.site-header.scrolled { padding: 0.6rem 0; } .about-grid { gap: 2rem; }
.about-image-wrap img,
.about-image-placeholder {
aspect-ratio: 4/3;
border-radius: 4px;
}
.about-logo-wrap { margin-bottom: 1.2rem; text-align: center; }
.about-logo-img { margin: 0 auto; height: 60px; }
.about-text .section-eyebrow,
.about-text .section-title { text-align: center; }
.about-text .section-divider { margin-left: auto; margin-right: auto; }
.about-text p {
font-size: 0.88rem;
line-height: 1.8;
text-align: justify;
}
.about-tags { justify-content: center; }
.about-text .btn {
display: block;
text-align: center;
} .cafe-pillar { padding: 0 0 1.4rem; }
.cafe-pillar-photo {
margin: 0 0 1.2rem;
height: 180px;
}
.cafe-pillar h3 { font-size: 1rem; padding: 0 1.2rem; }
.cafe-pillar p { font-size: 0.82rem; padding: 0 1.2rem; }
.cafe-pillar .pillar-story-link { padding: 0 1.2rem; } .cafe-grid {
grid-template-columns: 1fr;
}
.cafe-item { padding: 1.2rem; }
.cafe-item-info h3 { font-size: 0.95rem; }
.cafe-item-info p { font-size: 0.78rem; }
.cafe-note { font-size: 0.8rem; margin-top: 1.5rem; } .select-grid {
grid-template-columns: 1fr;
gap: 1.2rem;
}
.select-card-body {
padding: 1.2rem; }
.select-card h3 { font-size: 1.05rem; }
.select-card p { font-size: 0.84rem; line-height: 1.7; } .journal-grid {
grid-template-columns: 1fr;
gap: 1.2rem;
}
.journal-card-body {
padding: 1rem; }
.journal-card-title { font-size: 0.95rem; }
.journal-card-excerpt { font-size: 0.8rem; line-height: 1.7; }
.journal-card-meta { margin-bottom: 0.4rem; } .journal-archive-hero { padding: 90px 20px 48px; }
.journal-archive-main { padding: 32px 16px 48px; }
.journal-archive-title { font-size: clamp(1.8rem, 8vw, 2.8rem); } .journal-filter-wrap { padding: 0.8rem 0; }
.journal-filter {
overflow-x: auto;
flex-wrap: nowrap;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
gap: 0.5rem;
padding: 0 1rem;
}
.journal-filter::-webkit-scrollbar { display: none; }
.journal-filter-btn {
flex-shrink: 0;
font-size: 0.72rem;
padding: 0.4rem 1rem;
} .info-card { padding: 1.2rem; }
.info-card h3 { font-size: 0.68rem; margin-bottom: 0.8rem; padding-bottom: 0.6rem; }
.hours-list li { padding: 0.4rem 0; font-size: 0.82rem; }
.access-list li { padding: 0.45rem 0; font-size: 0.82rem; }
.map-wrap iframe { height: 240px; }
.terrace-pin-label { font-size: 0.55rem; padding: 3px 7px; }
.terrace-pin-dot { width: 12px; height: 12px; border-width: 2px; }
.terrace-pin-ring { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
.terrace-map-heading { font-size: 0.65rem; }
.terrace-map-sub { font-size: 0.82rem; } .contact { padding: 2.5rem 0; }
.contact-inner > p { font-size: 0.84rem; line-height: 1.8; margin-bottom: 1.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
font-size: 16px; padding: 0.75rem 0.9rem;
} .btn {
padding: 0.9rem 2rem;
font-size: 0.72rem;
min-height: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
} .site-footer { padding: 2.5rem 0 1.5rem; }
.footer-inner { gap: 1.2rem; margin-bottom: 1.5rem; }
.footer-logo-img { width: 160px; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.76rem; line-height: 1.7; }
.footer-col h4 { margin-bottom: 0.6rem; }
.footer-col ul li { margin-bottom: 0.3rem; }
.footer-bottom { padding-top: 0.8rem; } .single-main .container { padding: 1.5rem 1.2rem 3rem; }
.entry-content p { font-size: 0.92rem; line-height: 1.85; margin-bottom: 1rem; }
.entry-content h2 { font-size: 1.08rem; margin: 1.2rem 0 0.5rem; }
.entry-content h3 { font-size: 0.95rem; margin: 1rem 0 0.5rem; }
.entry-content img { margin: 1rem 0; border-radius: 4px; }
.breadcrumb { font-size: 0.68rem; margin-bottom: 1rem; }
.breadcrumb-current { word-break: break-word; } .related-posts h2 { font-size: 1rem; }
.related-posts-grid { grid-template-columns: 1fr; gap: 1rem; } .article-cta { padding: 1.5rem 1rem; margin-top: 2rem; }
.article-cta-message { font-size: 0.95rem; }
.article-cta-sub { font-size: 0.72rem; }
.article-cta-buttons { flex-direction: column; gap: 0.6rem; }
.article-cta-btn { width: 100%; justify-content: center; min-height: 48px; font-size: 0.8rem; padding: 0.8rem 1.2rem; }
} @media (max-width: 380px) {
.container { padding: 0 1rem; }
.hero-vert-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
.cafe-pillar-photo { height: 150px; }
.info-card { padding: 1.2rem; }
} .skip-link {
position: absolute;
left: -9999px;
top: auto;
z-index: 10000;
padding: 0.5rem 1rem;
background: var(--color-ocean);
color: #fff;
font-size: 0.85rem;
text-decoration: none;
border-radius: 4px;
}
.skip-link:focus {
left: 1rem;
top: 1rem;
}
*:focus-visible {
outline: 2px solid var(--color-ocean);
outline-offset: 2px;
} .lang-switcher {
position: relative;
margin-left: 1rem;
flex-shrink: 0;
}
.lang-switcher-toggle {
display: flex;
align-items: center;
gap: 0.35rem;
background: none;
border: 1px solid var(--border);
border-radius: 6px;
padding: 0.5rem 0.75rem;
min-height: 44px;
min-width: 44px;
justify-content: center;
cursor: pointer;
font-size: 0.72rem;
font-family: var(--font-sans);
font-weight: 600;
color: var(--text);
letter-spacing: 0.04em;
transition: var(--transition);
line-height: 1;
}
.lang-switcher-toggle:hover {
border-color: var(--cobalt);
color: var(--cobalt);
}
.lang-switcher-toggle svg {
opacity: 0.6;
}
.lang-current {
text-transform: uppercase;
}
.lang-dropdown {
display: none;
position: absolute;
top: calc(100% + 6px);
right: 0;
min-width: 140px;
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
list-style: none;
padding: 0.4rem 0;
z-index: 1000;
}
.lang-dropdown.open {
display: block;
}
.lang-dropdown li {
margin: 0;
}
.lang-dropdown li a {
display: block;
padding: 0.5rem 1rem;
font-size: 0.8rem;
font-family: var(--font-sans);
color: var(--text);
text-decoration: none;
transition: background 0.15s ease;
}
.lang-dropdown li a:hover {
background: var(--cobalt-50, #EEF4FF);
}
.lang-dropdown li.current-lang a {
color: var(--cobalt);
font-weight: 600;
}
@media (max-width: 768px) {
.lang-switcher {
position: absolute;
top: 50%;
right: 3.2rem;
transform: translateY(-50%);
margin-left: 0;
}
.lang-dropdown {
right: 0;
}
} @media (max-width: 768px) {
.instagram-grid {
grid-template-columns: repeat(2, 1fr);
}
}  .cafe-page-hero {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
background: var(--color-bg-dark, #1a2332);
}
.cafe-page-hero-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.cafe-page-hero-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
}
.cafe-page-hero-overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.3);
}
.cafe-page-hero-title {
font-size: 2.4rem;
color: #fff;
letter-spacing: 0.05em;
margin-top: 0.5rem;
} .cafe-page-lead {
text-align: center;
color: var(--color-text-light, #666);
font-size: 0.95rem;
line-height: 2;
max-width: 700px;
margin: 0 auto 3rem;
} .cafe-page-section-title {
text-align: center;
font-size: 1.4rem;
letter-spacing: 0.15em;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid var(--color-primary, #3a5a8c);
} .cafe-page-signatures {
display: flex;
flex-direction: column;
gap: 3rem;
margin-bottom: 4rem;
}
.cafe-page-sig-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
}
.cafe-page-sig-card:nth-child(even) {
direction: rtl;
}
.cafe-page-sig-card:nth-child(even) > * {
direction: ltr;
}
.cafe-page-sig-photo {
aspect-ratio: 4 / 3;
overflow: hidden;
border-radius: 4px;
}
.cafe-page-sig-photo img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.cafe-page-sig-card:hover .cafe-page-sig-photo img {
transform: scale(1.03);
}
.cafe-page-sig-placeholder {
display: flex;
align-items: center;
justify-content: center;
background: #f0ede8;
color: #999;
font-size: 0.85rem;
}
.cafe-page-sig-info h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.cafe-page-sig-price {
display: inline-block;
font-size: 1.1rem;
font-weight: 600;
color: var(--color-primary, #3a5a8c);
margin-bottom: 0.8rem;
}
.cafe-page-sig-info p {
font-size: 0.9rem;
line-height: 1.9;
color: var(--color-text-light, #666);
margin-bottom: 0.8rem;
} .cafe-page-menu-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 2rem;
}
.cafe-page-menu-item {
border: 1px solid #e8e4df;
border-radius: 4px;
overflow: hidden;
transition: box-shadow 0.3s ease;
}
.cafe-page-menu-item:hover {
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.cafe-page-menu-photo {
aspect-ratio: 4 / 3;
overflow: hidden;
}
.cafe-page-menu-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.cafe-page-menu-placeholder {
display: flex;
align-items: center;
justify-content: center;
background: #f0ede8;
color: #999;
font-size: 0.85rem;
}
.cafe-page-menu-info {
padding: 1rem;
}
.cafe-page-menu-info h3 {
font-size: 1rem;
margin-bottom: 0.3rem;
}
.cafe-page-menu-price {
display: inline-block;
font-size: 0.95rem;
font-weight: 600;
color: var(--color-primary, #3a5a8c);
margin-bottom: 0.5rem;
}
.cafe-page-menu-info p {
font-size: 0.82rem;
line-height: 1.7;
color: var(--color-text-light, #666);
} @media (max-width: 768px) {
.cafe-page-hero {
height: 250px;
}
.cafe-page-hero-title {
font-size: 1.6rem;
}
.cafe-page-sig-card {
grid-template-columns: 1fr;
}
.cafe-page-sig-card:nth-child(even) {
direction: ltr;
}
.cafe-page-menu-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.cafe-page-section-title {
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.cafe-page-menu-grid {
grid-template-columns: 1fr;
}
} .rp-location {
padding: 4rem 0 3rem;
background: #fafafa;
}
.rp-location .container {
max-width: 860px;
}
.rp-location .section-label {
font-size: 0.75rem;
letter-spacing: 0.2em;
color: #888;
text-align: center;
margin-bottom: 0.5rem;
}
.rp-location-heading {
text-align: center;
font-size: 1.6rem;
margin: 0 0 2rem;
color: #222;
}
.rp-location .address {
display: grid;
grid-template-columns: 7em 1fr;
gap: 0.5rem 1.5rem;
margin: 0 auto 2rem;
max-width: 680px;
font-size: 0.95rem;
line-height: 1.7;
}
.rp-location .address dt {
font-weight: 600;
color: #555;
}
.rp-location .address dd {
margin: 0;
color: #222;
}
.rp-location .address a {
color: #0047AB;
text-decoration: underline;
}
.rp-location .map-embed {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
margin: 0 auto 1.5rem;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.rp-location .map-embed iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
.rp-location .gbp-link {
text-align: center;
margin: 0;
}
.rp-location .gbp-link a {
display: inline-block;
padding: 0.6rem 1.4rem;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
color: #0047AB;
font-size: 0.9rem;
text-decoration: none;
transition: background 0.2s;
}
.rp-location .gbp-link a:hover {
background: #f0f4ff;
}
@media (max-width: 540px) {
.rp-location {
padding: 3rem 0 2rem;
}
.rp-location .address {
grid-template-columns: 1fr;
gap: 0.2rem 0;
}
.rp-location .address dt {
margin-top: 0.6rem;
font-size: 0.85rem;
}
.rp-location-heading {
font-size: 1.3rem;
}
} .story .eeat-line {
font-family: var(--font-mincho, serif);
font-size: 0.92rem;
line-height: 1.9;
color: rgba(255, 255, 255, 0.85);
margin: 0 0 1.2rem;
padding: 0.8rem 1rem;
border-left: 2px solid rgba(255, 255, 255, 0.35);
background: rgba(255, 255, 255, 0.05);
}
.story .eeat-line time {
font-weight: 600;
color: #fff;
} .rp-related-links {
padding: 4rem 0 2rem;
background: #fafafa;
}
.rp-related-links .container {
max-width: 960px;
margin: 0 auto;
padding: 0 1.25rem;
}
.rp-related-links .section-label {
font-family: var(--font-en, sans-serif);
letter-spacing: 0.18em;
font-size: 0.78rem;
color: #7a2e00;
margin-bottom: 0.5rem;
}
.rp-related-heading {
font-family: var(--font-mincho, serif);
font-size: 1.6rem;
color: #222;
margin: 0 0 1.8rem;
}
.rp-related-list {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 0.8rem;
}
.rp-related-list a {
display: block;
padding: 1.1rem 1.2rem;
background: #fff;
border: 1px solid #e8e3dc;
border-radius: 10px;
color: #222;
text-decoration: none;
transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.rp-related-list a:hover {
border-color: #7a2e00;
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(122, 46, 0, 0.08);
}
.rp-related-ttl {
display: block;
font-weight: 600;
font-size: 1rem;
margin-bottom: 0.2rem;
}
.rp-related-desc {
display: block;
font-size: 0.82rem;
color: #6b6258;
line-height: 1.5;
}
@media (max-width: 540px) {
.rp-related-heading {
font-size: 1.3rem;
}
.rp-related-list {
grid-template-columns: 1fr;
}
}  .entry-content img,
.post-content img,
article img {
max-width: 100%;
height: auto;
display: block;
margin: 1.5em auto;
border-radius: 6px;
object-fit: contain;
} .entry-content img.size-large,
.entry-content img.size-full,
.post-content img.size-large,
.post-content img.size-full {
max-width: 800px;
max-height: 560px;
width: auto;
} .entry-content img.size-medium,
.post-content img.size-medium {
max-width: 600px;
max-height: 420px;
width: auto;
} .entry-content img.size-thumbnail,
.post-content img.size-thumbnail {
max-width: 300px;
max-height: 300px;
} @media (max-width: 768px) {
.entry-content img,
.post-content img,
article img {
max-height: 70vh;
margin: 1em auto;
}
.entry-content img.size-medium,
.post-content img.size-medium {
max-height: 60vh;
}
} .wp-caption-text,
figcaption {
text-align: center;
font-size: 0.85em;
color: #666;
margin-top: 0.5em;
}  .entry-content .wp-block-image.size-large img,
.entry-content .wp-block-image.size-full img,
.entry-content figure.size-large img,
.entry-content figure.size-full img,
.post-content .wp-block-image.size-large img,
.post-content .wp-block-image.size-full img,
.post-content figure.size-large img,
.post-content figure.size-full img {
max-width: 800px;
max-height: 560px;
width: auto;
height: auto;
margin: 1.5em auto;
object-fit: contain;
display: block;
} .entry-content .wp-block-image.size-medium img,
.entry-content figure.size-medium img,
.post-content .wp-block-image.size-medium img,
.post-content figure.size-medium img {
max-width: 600px;
max-height: 420px;
width: auto;
height: auto;
margin: 1.5em auto;
} .entry-content .wp-block-image.size-thumbnail img,
.entry-content figure.size-thumbnail img,
.post-content .wp-block-image.size-thumbnail img,
.post-content figure.size-thumbnail img {
max-width: 300px;
max-height: 300px;
} @media (max-width: 768px) {
.entry-content .wp-block-image img,
.entry-content figure img,
.post-content .wp-block-image img,
.post-content figure img {
max-height: 70vh;
margin: 1em auto;
}
.entry-content .wp-block-image.size-medium img,
.entry-content figure.size-medium img,
.post-content .wp-block-image.size-medium img,
.post-content figure.size-medium img {
max-height: 60vh;
}
} .brand-passage {
background: var(--cobalt-50);
padding: clamp(2.5rem, 5vw, 4rem) 0;
border-top: 1px solid rgba(0, 71, 171, 0.12);
border-bottom: 1px solid rgba(0, 71, 171, 0.12);
}
.brand-passage-inner {
max-width: 780px;
margin: 0 auto;
text-align: center;
}
.brand-passage-eyebrow {
display: inline-block;
font-size: 0.78rem;
letter-spacing: 0.18em;
color: var(--cobalt);
text-transform: uppercase;
margin-bottom: 0.5rem;
font-weight: 600;
}
.brand-passage-title {
font-size: clamp(1.4rem, 2.5vw, 1.75rem);
margin: 0 0 1.25rem;
color: #2a2a2a;
font-family: var(--font-maru, "Yu Gothic UI", "Hiragino Maru Gothic ProN", sans-serif);
}
.brand-passage-body {
font-size: 0.98rem;
line-height: 1.95;
color: #3a3a3a;
text-align: justify;
margin: 0;
}
@media (max-width: 640px) {
.brand-passage-body {
font-size: 0.92rem;
line-height: 1.85;
text-align: left;
}
} .brand-passage--access {
margin-top: 0;
margin-bottom: 0;
} .af-page .af-prose p {
font-size: 1rem;
line-height: 2;
color: #3a3a3a;
margin: 0 0 1.25rem;
max-width: 760px;
}
.af-values-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 1.5rem;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.af-values-list > li {
background: #fdf7f0;
border-left: 3px solid #e07c3c;
padding: 1.25rem 1.5rem;
border-radius: 4px;
}
.af-values-list h3 {
font-size: 1.05rem;
margin: 0 0 0.6rem;
color: #2a2a2a;
font-family: var(--font-maru, "Yu Gothic UI", "Hiragino Maru Gothic ProN", sans-serif);
}
.af-values-list p {
font-size: 0.93rem;
line-height: 1.85;
color: #3a3a3a;
margin: 0;
}
.af-milestones-list {
margin: 0;
padding: 0;
max-width: 720px;
}
.af-milestones-list > div {
display: grid;
grid-template-columns: 140px 1fr;
gap: 1rem;
padding: 1rem 0;
border-bottom: 1px dashed rgba(224, 124, 60, 0.25);
}
.af-milestones-list > div:last-child {
border-bottom: none;
}
.af-milestones-list dt {
font-weight: 600;
color: #e07c3c;
font-variant-numeric: tabular-nums;
}
.af-milestones-list dd {
margin: 0;
line-height: 1.85;
color: #3a3a3a;
}
.af-cta {
background: linear-gradient(180deg, #fdf7f0 0%, #fff 100%);
text-align: center;
}
.af-cta-lead {
max-width: 640px;
margin: 0 auto 1.5rem;
line-height: 1.95;
color: #3a3a3a;
}
.af-cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin: 0;
}
.af-btn {
display: inline-block;
padding: 0.85rem 1.75rem;
border-radius: 999px;
font-weight: 600;
text-decoration: none;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.af-btn-primary {
background: #e07c3c;
color: #fff;
}
.af-btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(224, 124, 60, 0.3);
}
.af-btn-ghost {
background: #fff;
color: #e07c3c;
border: 1px solid #e07c3c;
}
.af-btn-ghost:hover {
background: #fdf7f0;
}
@media (max-width: 640px) {
.af-milestones-list > div {
grid-template-columns: 1fr;
gap: 0.25rem;
}
} .journal-tldr {
background: #fdf7f0;
border-left: 4px solid #e07c3c;
padding: 1.25rem 1.5rem;
margin: 0 0 1.75rem;
border-radius: 4px;
}
.journal-tldr-title {
font-size: 1rem;
margin: 0 0 0.75rem;
color: #e07c3c;
letter-spacing: 0.05em;
font-family: var(--font-maru, "Yu Gothic UI", "Hiragino Maru Gothic ProN", sans-serif);
}
.journal-tldr-list {
margin: 0;
padding: 0 0 0 1.25rem;
list-style: disc;
}
.journal-tldr-list > li {
font-size: 0.95rem;
line-height: 1.85;
color: #3a3a3a;
margin: 0 0 0.5rem;
}
.journal-tldr-list > li:last-child { margin-bottom: 0; }
.journal-faq {
margin: 2.5rem 0 0;
padding: 1.75rem 0 0;
border-top: 1px solid rgba(224, 124, 60, 0.18);
}
.journal-faq-title {
font-size: 1.3rem;
margin: 0 0 1.25rem;
color: #2a2a2a;
font-family: var(--font-maru, "Yu Gothic UI", "Hiragino Maru Gothic ProN", sans-serif);
}
.journal-faq-list {
margin: 0;
padding: 0;
}
.journal-faq-item {
padding: 0 0 1.25rem;
margin: 0 0 1.25rem;
border-bottom: 1px dashed rgba(224, 124, 60, 0.2);
}
.journal-faq-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.journal-faq-q {
font-weight: 600;
color: #2a2a2a;
line-height: 1.7;
margin: 0 0 0.5rem;
padding: 0 0 0 1.5rem;
position: relative;
}
.journal-faq-q::before {
content: "Q.";
position: absolute;
left: 0;
top: 0;
color: #e07c3c;
font-weight: 700;
}
.journal-faq-a {
color: #3a3a3a;
line-height: 1.95;
margin: 0;
padding: 0 0 0 1.5rem;
position: relative;
}
.journal-faq-a::before {
content: "A.";
position: absolute;
left: 0;
top: 0;
color: #6b7280;
font-weight: 700;
}.rp-wrap {
--rp-dark:   #7A2E00;
--rp-blue:   #E8650A;
--rp-light:  #F07D2A;
--rp-sand:   #F8F8F6;
--rp-sand2:  #EDEAE3;
--rp-white:  #FFFFFF;
--rp-ink:    #1C1C1E;
--rp-sub:    #6E6E73;
--rp-coral:  #C4714A;
--rp-leaf:   #5A7A5C;
overflow-x: hidden;
background: var(--rp-sand);
color: var(--rp-ink);
font-family: var(--font-sans);
font-weight: 300;
}
.rp-wrap * { box-sizing: border-box; }
.rp-wrap .sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; } .rp-wrap .hero {
position: relative; height: 100vh; min-height: 620px;
background: #7A2E00; display: flex; align-items: center; justify-content: center; overflow: hidden;
}   .rp-wrap .hero-bg-photo {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: center 30%;
z-index: 0;
}
.rp-wrap .hero-overlay {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(160deg,
rgba(122,46,0,.78) 0%, rgba(232,101,10,.65) 40%,
rgba(240,125,42,.55) 70%, rgba(245,160,96,.40) 100%);
}
.rp-wrap .bubble {
position: absolute; border-radius: 50%; background: rgba(255,255,255,0.04);
animation: rp-floatBubble linear infinite; pointer-events: none; z-index: 2;
}
.rp-wrap .bubble:nth-child(3) { width: 360px; height: 360px; top: 5%; left: -8%; animation-duration: 22s; }
.rp-wrap .bubble:nth-child(4) { width: 220px; height: 220px; top: 45%; right: 3%; animation-duration: 16s; animation-delay: -6s; }
.rp-wrap .bubble:nth-child(5) { width: 160px; height: 160px; bottom: 15%; left: 28%; animation-duration: 28s; animation-delay: -12s; }
@keyframes rp-floatBubble { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-28px) rotate(6deg); } }
.rp-wrap .hero-content { position: relative; z-index: 3; text-align: center; padding: 0 24px; display: block !important; }
@keyframes rp-fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .rp-wrap .rp-logo-wrap {
margin-bottom: 28px; display: flex; justify-content: center;
}
.rp-wrap .rp-logo-img {
height: 80px; width: auto; display: block; object-fit: contain;
}
.rp-wrap .apply-logo-wrap {
margin-bottom: 24px; display: flex; justify-content: center;
}
.rp-wrap .apply-logo-img {
height: 80px; width: auto; display: block; object-fit: contain;
}
.rp-wrap .hero-eyebrow {
font-family: var(--font-sans); font-size: clamp(11px,2vw,13px); font-weight: 500;
letter-spacing: .45em; color: rgba(255,255,255,.65); text-transform: uppercase;
margin-bottom: 20px;
}
.rp-wrap .hero-title {
font-family: var(--font-sans); font-size: clamp(60px,13vw,130px); font-weight: 300;
color: #fff; line-height: .88; letter-spacing: -.02em;
margin-bottom: 28px;
}
.rp-wrap .hero-title em {
font-family: var(--font-mincho); font-style: italic; color: rgba(255,255,255,.55);
font-size: .6em; display: block; letter-spacing: .05em; margin-top: 8px;
}
.rp-wrap .hero-subtitle {
font-family: var(--font-mincho); font-size: clamp(13px,2.4vw,16px);
color: rgba(255,255,255,.78); line-height: 2.1; max-width: 480px;
margin: 0 auto 44px;
}
.rp-wrap .hero-scroll { display: inline-block; }
.rp-wrap .hero-scroll span {
display: block; font-size: 10px; letter-spacing: .35em;
color: rgba(255,255,255,.4); margin-bottom: 12px;
}
.rp-wrap .scroll-line {
width: 1px; height: 60px;
background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
margin: 0 auto; animation: rp-scrollAnim 2s ease-in-out infinite;
}
@keyframes rp-scrollAnim { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.4); opacity: .2; } }
.rp-wrap .wave { position: absolute; bottom: 0; left: 0; width: 100%; }
.rp-wrap .wave svg { display: block; width: 100%; height: 100px; } .rp-wrap .hero-conditions {
font-family: 'Noto Sans JP', sans-serif;
font-size: 13px;
color: rgba(255,255,255,.7);
letter-spacing: .08em;
margin-top: 16px;
} .rp-wrap .rp-route-nav {
background: var(--rp-dark);
padding: 40px 24px 48px;
text-align: center;
}
.rp-wrap .rp-route-lead {
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px;
color: rgba(255,255,255,.7);
margin-bottom: 20px;
letter-spacing: .05em;
}
.rp-wrap .rp-route-buttons {
display: flex;
gap: 16px;
justify-content: center;
max-width: 600px;
margin: 0 auto;
}
.rp-wrap .rp-route-btn {
flex: 1;
display: block;
padding: 20px 16px;
border: 1px solid rgba(255,255,255,.2);
border-radius: 6px;
text-decoration: none;
text-align: center;
transition: all .3s ease;
background: rgba(255,255,255,.04);
}
.rp-wrap .rp-route-btn:hover {
background: rgba(255,255,255,.1);
border-color: rgba(255,255,255,.4);
transform: translateY(-2px);
}
.rp-wrap .rp-route-label {
display: block;
font-family: 'Noto Sans JP', sans-serif;
font-size: 15px;
font-weight: 500;
color: white;
margin-bottom: 6px;
}
.rp-wrap .rp-route-desc {
display: block;
font-family: 'Noto Sans JP', sans-serif;
font-size: 12px;
color: var(--rp-light);
letter-spacing: .03em;
} .rp-wrap .rp-breadcrumb {
display: none; padding: 16px 24px 0; max-width: 900px; margin: 0 auto;
font-size: 13px; color: var(--rp-sub);
}
.rp-wrap .rp-breadcrumb a { color: var(--rp-blue); text-decoration: none; }
.rp-wrap .rp-breadcrumb a:hover { text-decoration: underline; }
.rp-wrap .rp-breadcrumb span { margin: 0 8px; color: var(--rp-sub); } .rp-wrap section { padding: 100px 24px; }
.rp-wrap .container { max-width: 900px; margin: 0 auto; }
.rp-wrap .section-label {
font-family: var(--font-sans); font-size: 11px; font-weight: 600;
letter-spacing: .5em; text-transform: uppercase; color: var(--rp-blue);
margin-bottom: 16px; display: flex; align-items: center; gap: 16px;
}
.rp-wrap .section-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--rp-blue); flex-shrink: 0; }
.rp-wrap .section-label.light { color: rgba(255,255,255,.45); }
.rp-wrap .section-label.light::before { background: rgba(255,255,255,.3); } .rp-wrap .story { background: var(--rp-dark); position: relative; overflow: hidden; }
.rp-wrap .story::after {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
background: linear-gradient(90deg, var(--rp-dark), var(--rp-light), #F5A060);
}
.rp-wrap .story-bg-text {
position: absolute; bottom: -20px; right: -10px;
font-family: var(--font-sans); font-size: 200px; font-weight: 300;
color: rgba(255,255,255,.025); letter-spacing: -.05em;
pointer-events: none; line-height: 1; white-space: nowrap;
}
.rp-wrap .story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.rp-wrap .story-left h2 {
font-family: var(--font-sans); font-size: clamp(40px,7vw,72px); font-weight: 300;
color: #fff; line-height: 1.1; position: sticky; top: 100px;
}
.rp-wrap .story-left h2 em {
font-family: var(--font-mincho); font-style: italic;
color: rgba(255,255,255,.4); font-size: .7em; display: block;
}
.rp-wrap .story-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.rp-wrap .story-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.rp-wrap .story-block-label {
font-family: var(--font-sans); font-size: 11px; font-weight: 600;
letter-spacing: .4em; text-transform: uppercase; color: var(--rp-light); margin-bottom: 16px;
}
.rp-wrap .story-block h3 {
font-family: var(--font-mincho); font-size: clamp(17px,2.8vw,22px);
font-weight: 400; color: #fff; line-height: 1.7; margin-bottom: 20px;
}
.rp-wrap .story-block p { font-family: 'Noto Sans JP', sans-serif; font-size: 14px; line-height: 2.5; color: rgba(255,255,255,.85); }
.rp-wrap .story-block p+p { margin-top: 16px; }
.rp-wrap .story-quote {
margin: 28px 0; padding: 20px 28px;
border-left: 2px solid var(--rp-light);
background: rgba(255,255,255,.04); border-radius: 0 4px 4px 0;
}
.rp-wrap .story-quote p { font-family: var(--font-mincho) !important; font-size: 15px !important; color: rgba(255,255,255,.82) !important; line-height: 2 !important; } .rp-wrap .fit { background: var(--rp-white); }
.rp-wrap .fit-heading {
font-family: var(--font-mincho); font-size: clamp(20px,3.5vw,30px);
font-weight: 300; line-height: 1.8; margin-bottom: 60px; color: var(--rp-ink);
}
.rp-wrap .fit-columns {
display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
background: rgba(232,101,10,.1); border-radius: 6px; overflow: hidden;
}
.rp-wrap .fit-col { padding: 48px 40px; background: var(--rp-white); }
.rp-wrap .fit-col.unfit { background: var(--rp-sand); }
.rp-wrap .fit-col-label { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.rp-wrap .fit-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.rp-wrap .fit-icon.yes { background: rgba(232,101,10,.12); }
.rp-wrap .fit-icon.no { background: rgba(90,90,80,.1); }
.rp-wrap .fit-col-label span { font-family: var(--font-mincho); font-size: 16px; font-weight: 400; color: var(--rp-ink); }
.rp-wrap .fit-list { list-style: none; }
.rp-wrap .fit-list li { font-size: 14px; line-height: 1.6; color: var(--rp-sub); padding: 14px 0 14px 24px; border-bottom: 1px solid rgba(0,0,0,.06); position: relative; }
.rp-wrap .fit-list li:last-child { border-bottom: none; }
.rp-wrap .fit-list.yes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--rp-blue); font-size: 12px; top: 16px; }
.rp-wrap .fit-list.no-list li::before { content: '—'; position: absolute; left: 0; color: var(--rp-sub); font-size: 12px; top: 14px; opacity: .5; }
.rp-wrap .fit-note { margin-top: 40px; padding: 24px 28px; background: rgba(232,101,10,.06); border-radius: 4px; border: 1px solid rgba(232,101,10,.15); }
.rp-wrap .fit-note p { font-size: 13px; line-height: 2.1; color: var(--rp-sub); } .rp-wrap .daily { background: var(--rp-sand); }
.rp-wrap .daily-heading {
font-family: var(--font-mincho); font-size: clamp(20px,3.5vw,28px);
font-weight: 300; line-height: 1.8; margin-bottom: 16px;
}
.rp-wrap .daily-desc { font-family: var(--font-maru); font-size: 14px; line-height: 2; color: var(--rp-sub); margin-bottom: 56px; }
.rp-wrap .timeline { position: relative; padding-left: 28px; }
.rp-wrap .timeline::before {
content: ''; position: absolute; left: 0; top: 10px; bottom: 10px;
width: 1px; background: linear-gradient(to bottom, var(--rp-light), rgba(240,125,42,.1));
}
.rp-wrap .tl-item { display: grid; grid-template-columns: 78px 1fr; gap: 24px; margin-bottom: 36px; position: relative; }
.rp-wrap .tl-item::before {
content: ''; position: absolute; left: -32px; top: 8px;
width: 9px; height: 9px; border-radius: 50%;
background: var(--rp-light); border: 2px solid var(--rp-sand); box-shadow: 0 0 0 2px var(--rp-light);
}
.rp-wrap .tl-time { font-family: var(--font-sans); font-size: 18px; font-weight: 300; color: var(--rp-blue); padding-top: 2px; white-space: nowrap; }
.rp-wrap .tl-content h4 { font-family: var(--font-mincho); font-size: 15px; font-weight: 400; color: var(--rp-ink); margin-bottom: 8px; }
.rp-wrap .tl-content p { font-family: var(--font-maru); font-size: 13px; line-height: 2.1; color: var(--rp-sub); }
.rp-wrap .tl-badge { display: inline-block; font-size: 10px; padding: 2px 9px; border-radius: 100px; letter-spacing: .08em; margin-left: 6px; vertical-align: middle; }
.rp-wrap .badge-cafe { background: rgba(232,101,10,.1); color: var(--rp-blue); }
.rp-wrap .badge-apparel { background: rgba(196,113,74,.1); color: var(--rp-coral); }
.rp-wrap .badge-all { background: rgba(90,122,92,.1); color: var(--rp-leaf); } .rp-wrap .voices { background: var(--rp-sand2); }
.rp-wrap .voices-heading {
font-family: var(--font-mincho); font-size: clamp(20px,3.5vw,28px);
font-weight: 300; line-height: 1.8; margin-bottom: 56px;
}
.rp-wrap .voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rp-wrap .voice-card { background: var(--rp-white); border-radius: 6px; padding: 36px 32px; }
.rp-wrap .voice-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.rp-wrap .voice-name { font-family: var(--font-mincho); font-size: 15px; font-weight: 400; color: var(--rp-ink); margin-bottom: 4px; }
.rp-wrap .voice-role { font-family: var(--font-sans); font-size: 11px; letter-spacing: .1em; color: var(--rp-sub); }
.rp-wrap .voice-text { font-family: var(--font-maru); font-size: 14px; line-height: 2.4; color: var(--rp-sub); }
.rp-wrap .voice-qa-block { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.06); }
.rp-wrap .voice-qa-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.rp-wrap .voice-q-label { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .06em; color: var(--rp-blue); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.rp-wrap .voice-q-label::before { content: 'Q'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--rp-blue); color: white; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.rp-wrap .voice-q-answer { font-family: var(--font-maru); font-size: 13px; line-height: 2.2; color: var(--rp-sub); padding-left: 26px; } .rp-wrap .recruit { background: var(--rp-dark); padding: 100px 24px; position: relative; overflow: hidden; }
.rp-wrap .recruit-bg {
position: absolute; top: 20px; right: -20px;
font-family: var(--font-sans); font-size: 180px; font-weight: 300;
color: rgba(255,255,255,.025); letter-spacing: -.05em; pointer-events: none;
}
.rp-wrap .recruit-heading {
font-family: var(--font-mincho); font-size: clamp(20px,3.5vw,28px);
font-weight: 300; color: white; margin-bottom: 48px; line-height: 1.8;
}
.rp-wrap .tab-buttons {
display: flex; width: fit-content;
border: 1px solid rgba(255,255,255,.18); border-radius: 4px;
overflow: hidden; margin-bottom: 48px;
}
.rp-wrap .tab-btn {
padding: 14px 44px; background: transparent; border: none;
color: rgba(255,255,255,.38); font-family: var(--font-sans);
font-size: 13px; letter-spacing: .08em; cursor: pointer; transition: all .3s;
}
.rp-wrap .tab-btn + .tab-btn { border-left: 1px solid rgba(255,255,255,.18); }
.rp-wrap .tab-btn.active { background: rgba(255,255,255,.1); color: white; }
.rp-wrap .tab-btn .tab-en { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: .3em; opacity: .45; margin-bottom: 2px; }
.rp-wrap .tab-panel { display: none; animation: rp-fadeIn .5s ease; }
.rp-wrap .tab-panel.active { display: block; }
@keyframes rp-fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.rp-wrap .sub-tab-buttons { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.rp-wrap .sub-tab-btn {
padding: 10px 24px; background: transparent;
border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
color: rgba(255,255,255,.4); font-family: var(--font-sans);
font-size: 12px; letter-spacing: .06em; cursor: pointer; transition: all .3s;
}
.rp-wrap .sub-tab-btn:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.7); }
.rp-wrap .sub-tab-btn.active { background: var(--rp-light); border-color: var(--rp-light); color: white; }
.rp-wrap .sub-panel { display: none; animation: rp-fadeIn .4s ease; }
.rp-wrap .sub-panel.active { display: block; }
.rp-wrap .panel-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; margin-bottom: 2px;
}
.rp-wrap .panel-block { background: rgba(255,255,255,.05); padding: 36px 32px; }
.rp-wrap .panel-label { font-family: var(--font-sans); font-size: 10px; letter-spacing: .45em; text-transform: uppercase; color: var(--rp-light); margin-bottom: 16px; }
.rp-wrap .panel-block h3 { font-family: var(--font-mincho); font-size: 18px; font-weight: 400; color: white; margin-bottom: 16px; line-height: 1.6; }
.rp-wrap .panel-block ul { list-style: none; }
.rp-wrap .panel-block ul li { font-family: 'Noto Sans JP', sans-serif; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.62); padding-left: 18px; position: relative; }
.rp-wrap .panel-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--rp-light); font-size: 10px; top: 2px; }
.rp-wrap .panel-block p { font-family: 'Noto Sans JP', sans-serif; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.62); } .rp-wrap .panel-block ul.growth-roadmap { margin-top: 12px; }
.rp-wrap .panel-block ul.growth-roadmap li { line-height: 1.8; margin-bottom: 20px; padding-left: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.rp-wrap .panel-block ul.growth-roadmap li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.rp-wrap .panel-block ul.growth-roadmap li::before { content: ''; width: 6px; height: 6px; background: var(--rp-light); border-radius: 50%; top: 8px; left: 0; }
.rp-wrap .panel-block ul.growth-roadmap li strong { display: block; font-size: 15px; color: var(--rp-light); margin-bottom: 6px; letter-spacing: .03em; } .rp-wrap .numbers-section { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.rp-wrap .numbers-section h4 { font-family: var(--font-en); font-size: 14px; font-weight: 600; color: white; letter-spacing: .12em; margin-bottom: 16px; }
.rp-wrap .numbers-section h4 span { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .02em; }
.rp-wrap .numbers-table { width: 100%; border-collapse: collapse; }
.rp-wrap .numbers-table tr { border-bottom: 1px solid rgba(255,255,255,.08); }
.rp-wrap .numbers-table tr:last-child { border-bottom: none; }
.rp-wrap .numbers-table td { padding: 12px 0; font-family: 'Noto Sans JP', sans-serif; font-size: 13px; line-height: 1.6; vertical-align: top; }
.rp-wrap .numbers-table .numbers-label { color: rgba(255,255,255,.85); width: 50%; }
.rp-wrap .numbers-table .numbers-value { color: var(--rp-light); font-weight: 500; }
.rp-wrap .highlight-box {
display: inline-block; background: rgba(232,101,10,.18);
border: 1px solid rgba(232,101,10,.35); border-radius: 3px;
padding: 4px 12px; font-family: 'Noto Sans JP', sans-serif; font-size: 13px; color: var(--rp-light); margin: 4px 4px 4px 0;
}
.rp-wrap .career-steps { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin-top: 10px; }
.rp-wrap .step { font-size: 11px; padding: 6px 11px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); border-radius: 2px; }
.rp-wrap .step-arrow { font-size: 11px; color: var(--rp-light); padding: 0 6px; } .rp-wrap .faq { background: var(--rp-white); }
.rp-wrap .faq-heading { font-family: var(--font-mincho); font-size: clamp(20px,3.5vw,28px); font-weight: 300; line-height: 1.8; margin-bottom: 48px; }
.rp-wrap .faq-list { list-style: none; }
.rp-wrap .faq-item { border-bottom: 1px solid rgba(0,0,0,.08); overflow: hidden; }
.rp-wrap .faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.rp-wrap .faq-q {
width: 100%; background: none; border: none; text-align: left;
padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
gap: 20px; cursor: pointer; font-family: var(--font-sans); font-size: 14px;
font-weight: 400; color: var(--rp-ink); line-height: 1.6;
}
.rp-wrap .faq-q-text { flex: 1; }
.rp-wrap .faq-q-text span { display: inline-block; font-size: 14px; color: var(--rp-blue); margin-right: 12px; font-style: italic; }
.rp-wrap .faq-icon {
width: 24px; height: 24px; border-radius: 50%; background: rgba(232,101,10,.1);
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
transition: transform .3s, background .3s; color: var(--rp-blue); font-size: 18px; line-height: 1;
}
.rp-wrap .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--rp-blue); color: white; }
.rp-wrap .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.rp-wrap .faq-item.open .faq-a { max-height: 400px; }
.rp-wrap .faq-a-inner { padding: 0 0 24px 28px; font-family: var(--font-maru); font-size: 13px; line-height: 2.3; color: var(--rp-sub); } .rp-wrap .apply { background: var(--rp-sand); text-align: center; }
.rp-wrap .apply-heading { font-family: var(--font-sans); font-size: clamp(36px,7vw,68px); font-weight: 300; color: var(--rp-dark); line-height: 1.15; margin-bottom: 16px; }
.rp-wrap .apply-heading em { font-style: italic; color: var(--rp-light); }
.rp-wrap .apply-sub { font-family: var(--font-maru); font-size: 14px; color: var(--rp-sub); line-height: 2; margin-bottom: 48px; }
.rp-wrap .apply-methods { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.rp-wrap .apply-btn {
display: inline-flex; align-items: center; gap: 11px; padding: 16px 32px;
border-radius: 3px; font-family: var(--font-sans); font-size: 13px;
letter-spacing: .05em; text-decoration: none; transition: all .3s; cursor: pointer; border: none;
}
.rp-wrap .apply-btn-line { background: #06C755; color: white; }
.rp-wrap .apply-btn-line:hover { background: #05b34c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,199,85,.3); }
.rp-wrap .apply-btn-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.rp-wrap .apply-btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,.3); }
.rp-wrap .apply-btn-mail { background: transparent; color: var(--rp-blue); border: 1.5px solid var(--rp-blue); }
.rp-wrap .apply-btn-mail:hover { background: var(--rp-blue); color: white; transform: translateY(-2px); }
.rp-wrap .apply-note { font-family: var(--font-maru); font-size: 12px; color: var(--rp-sub); line-height: 2.2; max-width: 520px; margin: 0 auto; } .rp-wrap .back-link { display: block; text-align: center; padding: 32px; font-size: 12px; letter-spacing: .2em; color: var(--rp-sub); text-decoration: none; }
.rp-wrap .back-link:hover { color: var(--rp-blue); }
.rp-wrap .rp-related { padding: 48px 24px; background: var(--rp-sand2); text-align: center; }
.rp-wrap .rp-related-title { font-size: 14px; font-weight: 600; color: var(--rp-ink); margin-bottom: 20px; letter-spacing: .1em; }
.rp-wrap .rp-related-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.rp-wrap .rp-related-links a { font-size: 13px; color: var(--rp-blue); text-decoration: none; padding: 8px 20px; border: 1px solid var(--rp-blue); border-radius: 24px; transition: all .3s; }
.rp-wrap .rp-related-links a:hover { background: var(--rp-blue); color: #fff; } .rp-wrap .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.rp-wrap .reveal.visible { opacity: 1; transform: translateY(0); }   .rp-wrap .story-photo {
width: 100%; border-radius: 2px; overflow: hidden;
margin-bottom: 48px;
}
.rp-wrap .story-photo img {
width: 100%; aspect-ratio: 4/5;
object-fit: cover; display: block;
}   .rp-wrap .voice-avatar {
width: 56px; height: 56px; border-radius: 50%;
object-fit: cover; flex-shrink: 0;
border: 2px solid rgba(232,101,10,.2);
}   .rp-wrap .daily-scene {
width: 100%; border-radius: 3px; overflow: hidden;
margin-bottom: 56px;
}
.rp-wrap .daily-scene img {
width: 100%; aspect-ratio: 16/6;
object-fit: cover; display: block;
}   .rp-wrap .position-banner {
width: 100%; border-radius: 3px; overflow: hidden;
margin-bottom: 32px;
}
.rp-wrap .position-banner img {
width: 100%; aspect-ratio: 16/5;
object-fit: cover; display: block;
} @media (min-width: 1025px) {
.rp-wrap .rp-logo-wrap  { animation: rp-fadeUp 1.2s .05s both; }
.rp-wrap .hero-eyebrow  { animation: rp-fadeUp 1.2s .2s  both; }
.rp-wrap .hero-title    { animation: rp-fadeUp 1.2s .35s both; }
.rp-wrap .hero-subtitle { animation: rp-fadeUp 1.2s .5s  both; }
.rp-wrap .hero-scroll   { animation: rp-fadeUp 1.2s .7s  both; }
}  @media (max-width: 1024px) {
.rp-wrap .hero {
height: auto;
min-height: 100svh; padding: 100px 0 130px;
overflow: visible;
}
} @media (max-width: 720px) { .rp-wrap .hero {
height: auto;
min-height: 100svh; padding: 80px 0 110px;
align-items: center;
overflow: visible;
}
.rp-wrap .hero-content { padding: 0 20px; }
.rp-wrap .rp-logo-wrap { margin-bottom: 18px; }
.rp-wrap .rp-logo-img { height: 60px; }
.rp-wrap .hero-title { font-size: clamp(48px, 13vw, 80px); margin-bottom: 20px; }
.rp-wrap .hero-subtitle { font-size: 13px; margin-bottom: 28px; }
.rp-wrap .hero-conditions { font-size: 11px; margin-top: 12px; }
.rp-wrap .rp-route-nav { padding: 28px 16px 36px; }
.rp-wrap .rp-route-buttons { flex-direction: column; gap: 12px; }
.rp-wrap .rp-route-btn { padding: 16px 12px; }
.rp-wrap .rp-route-label { font-size: 14px; }
.rp-wrap .rp-route-desc { font-size: 11px; } .rp-wrap section { padding: 56px 16px; }
.rp-wrap .container { max-width: 100%; padding: 0; }
.rp-wrap .story-grid { grid-template-columns: 1fr; gap: 40px; }
.rp-wrap .story-left h2 { position: static; font-size: 48px; } .rp-wrap .story-block { margin-bottom: 32px; padding-bottom: 32px; }
.rp-wrap .story-block h3 { font-size: 16px; margin-bottom: 14px; }
.rp-wrap .story-block p { font-size: 13px; line-height: 1.9; }
.rp-wrap .story-block p+p { margin-top: 10px; }
.rp-wrap .story-quote { margin: 20px 0; padding: 16px 20px; }
.rp-wrap .story-quote p { font-size: 13px !important; line-height: 1.85 !important; }
.rp-wrap .fit-columns { grid-template-columns: 1fr; }
.rp-wrap .voices-grid { grid-template-columns: 1fr; }
.rp-wrap .panel-grid { grid-template-columns: 1fr; } .rp-wrap .section-label { font-size: 10px; letter-spacing: .3em; }
.rp-wrap .section-label::before { width: 24px; }
.rp-wrap .daily-heading { font-size: 20px; margin-bottom: 10px; }
.rp-wrap .daily-desc { font-size: 13px; line-height: 1.9; margin-bottom: 32px; }
.rp-wrap .daily-scene { margin-bottom: 32px; } .rp-wrap .timeline { padding-left: 20px; }
.rp-wrap .tl-item { display: grid; grid-template-columns: 50px 1fr; gap: 10px; margin-bottom: 28px; }
.rp-wrap .tl-item::before { left: -24px; top: 6px; width: 7px; height: 7px; }
.rp-wrap .tl-time { font-size: 14px; padding-top: 1px; }
.rp-wrap .tl-content h4 { font-size: 14px; margin-bottom: 4px; }
.rp-wrap .tl-content p { font-size: 12.5px; line-height: 1.9; }
.rp-wrap .tab-btn { padding: 12px 18px; } .rp-wrap .recruit { padding: 56px 16px; }
.rp-wrap .recruit-heading { font-size: 20px; margin-bottom: 28px; }
.rp-wrap .tab-buttons { margin-bottom: 28px; }
.rp-wrap .sub-tab-buttons { gap: 6px; margin-bottom: 20px; }
.rp-wrap .sub-tab-btn { padding: 8px 16px; font-size: 11px; }
.rp-wrap .panel-block { padding: 24px 16px; }
.rp-wrap .panel-label { margin-bottom: 10px; }
.rp-wrap .panel-block h3 { font-size: 16px; margin-bottom: 10px; }
.rp-wrap .panel-block ul li { font-size: 13px; line-height: 1.8; padding-left: 16px; }
.rp-wrap .panel-block p { font-size: 13px; line-height: 1.8; }
.rp-wrap .panel-block p.rp-body-text,
.rp-wrap .rp-body-text { font-size: 13px; line-height: 1.8; }
.rp-wrap .numbers-table small.rp-note,
.rp-wrap .rp-note { font-size: 11px; }
.rp-wrap .apply-methods { flex-direction: column; align-items: center; }
.rp-wrap .apply-btn { width: 260px; justify-content: center; } .rp-wrap .apply-sub { font-size: 13px; line-height: 1.8; margin-bottom: 32px; }
.rp-wrap .apply-methods { margin-bottom: 24px; }
.rp-wrap .apply-note { text-align: left; font-size: 12.5px; line-height: 1.8; max-width: 100%; margin: 0; } .rp-wrap .faq-heading { font-size: 18px; margin-bottom: 24px; }
.rp-wrap .faq-q { padding: 16px 0; gap: 12px; font-size: 13px; line-height: 1.6; }
.rp-wrap .faq-q-text span { font-size: 13px; margin-right: 6px; }
.rp-wrap .faq-icon { width: 22px; height: 22px; font-size: 16px; }
.rp-wrap .faq-a-inner { padding: 0 0 16px 22px; font-size: 12.5px; line-height: 1.85; } .rp-wrap .fit-heading { font-size: 17px; line-height: 1.7; margin-bottom: 28px; }
.rp-wrap .fit-col { padding: 24px 16px; }
.rp-wrap .fit-col-label { gap: 8px; margin-bottom: 18px; }
.rp-wrap .fit-icon { width: 28px; height: 28px; font-size: 13px; }
.rp-wrap .fit-col-label span { font-size: 14px; }
.rp-wrap .fit-list li { font-size: 13px; line-height: 1.7; padding: 10px 0 10px 20px; }
.rp-wrap .fit-list.yes-list li::before { top: 12px; }
.rp-wrap .fit-list.no-list li::before { top: 10px; }
.rp-wrap .fit-note { margin-top: 24px; padding: 16px 16px; }
.rp-wrap .fit-note p { font-size: 12.5px; line-height: 1.85; } .rp-wrap .voices-heading { font-size: 18px; margin-bottom: 28px; }
.rp-wrap .voices-grid { gap: 16px; }
.rp-wrap .voice-card { padding: 20px 16px; }
.rp-wrap .voice-header { gap: 10px; margin-bottom: 14px; }
.rp-wrap .voice-avatar { width: 44px; height: 44px; }
.rp-wrap .voice-name { font-size: 13px; }
.rp-wrap .voice-role { font-size: 10px; }
.rp-wrap .voice-qa-block { margin-bottom: 12px; padding-bottom: 12px; }
.rp-wrap .voice-q-label { font-size: 9px; margin-bottom: 4px; gap: 6px; }
.rp-wrap .voice-q-label::before { width: 16px; height: 16px; font-size: 8px; }
.rp-wrap .voice-q-answer { padding-left: 22px; font-size: 12.5px; line-height: 1.85; } .rp-wrap .story-photo { display: none; }
.rp-wrap .daily-scene img { aspect-ratio: 4/3; }
.rp-wrap .position-banner img { aspect-ratio: 16/7; }
} .rp-wrap .rp-mid-cta {
text-align: center;
padding: 40px 24px;
background: var(--rp-sand2, #f5f0eb);
}
.rp-wrap .rp-mid-cta p {
font-family: var(--font-maru, sans-serif);
font-size: 14px;
color: var(--rp-sub, #8a7e6e);
margin-bottom: 20px;
}
.rp-wrap .rp-mid-cta-links {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.rp-wrap .rp-mid-cta-links .apply-btn {
font-size: 13px;
padding: 12px 28px;
} .rp-sticky-cta {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
display: flex;
justify-content: center;
gap: 8px;
padding: 12px 16px;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}
.rp-sticky-cta.hidden {
transform: translateY(100%);
pointer-events: none;
}
.rp-sticky-btn {
padding: 10px 20px;
border-radius: 3px;
font-size: 12px;
text-decoration: none;
letter-spacing: 0.05em;
font-family: var(--font-sans, sans-serif);
font-weight: 600;
transition: opacity 0.2s;
}
.rp-sticky-btn:hover { opacity: 0.85; }
.rp-sticky-form {
background: var(--rp-blue, #3d6a8a);
color: #fff;
}
.rp-sticky-ig {
background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
color: #fff;
} .rp-wrap .rp-positions-summary {
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px;
color: rgba(255,255,255,0.85);
line-height: 1.8;
max-width: 700px;
margin: 0 auto 32px;
text-align: center;
}  .rp-wrap .panel-block p.rp-body-text,
.rp-wrap .rp-body-text {
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px;
line-height: 1.8;
color: rgba(255,255,255,.62);
margin-bottom: 1.2rem;
} .rp-wrap .numbers-table small.rp-note,
.rp-wrap .rp-note {
font-family: 'Noto Sans JP', sans-serif;
font-size: 12px;
color: rgba(255,255,255,.5);
line-height: 1.6;
}