@charset "UTF-8";

/* ==========================================================================
   1. CSS Variables (Design System) - PRINTÖNE Dark Theme
   ========================================================================== */
:root {
  /* Colors */
  --primary: #ffb4a8;
  --primary-container: #dd0000;
  --on-primary: #690000;
  --inverse-primary: #bb0000;

  --background: #eeeeee;
  --on-background: #121414;

  --surface: #121414;
  --on-surface: #e2e2e2;
  --on-surface-variant: #dddddd;

  --surface-container-lowest: #0c0f0f;
  --surface-container-low: #1a1c1c;
  --surface-container: #1e2020;
  --surface-container-high: #282a2b;
  --surface-container-highest: #4d4d4d;

  --inverse-surface: #eeeeee;
  --inverse-surface-high:#fafafa;
  --inverse-surface-low:#e7e7e7;
  --inverse-on-surface: #121414;

  --outline: #999999;
  --outline-variant: #666666;

  /* Spacing */
  --gutter: 24px;
  --margin-mobile: 16px;
  --container-max: 1280px;
  --section-padding-desktop: 8rem;
  --section-padding-mobile: 4rem;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', 'Noto Sans JP', sans-serif;
  background-color: var(--background);
  color: var(--on-background);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

ul {
  list-style: none;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
  font-size: 22px;
}
.material-symbols-filled {
  font-variation-settings: 'FILL' 1;
}

/* Utilities */
.hidden { display: none !important; }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-05 {margin-bottom: 0.5rem;}
.mb-0 {margin-bottom: 0 !important;}
.center{ text-align: center;}
.text-on-surface-variant { color: var(--on-surface-variant); }
.text-inverse-on-surface { color: var(--inverse-on-surface);}
.en-font, .num-font { font-family:'Plus Jakarta Sans',sans-serif; letter-spacing: 0.05rem; }
.font-small{ font-size:  0.85em;}

/* --- Scroll Reveal: Blur --- */
.reveal-blur {
  filter: blur(10px) grayscale(100%);
  transition: filter 1.2s ease;
  will-change: filter;
}
.reveal-blur.is-visible {
  filter: blur(0) grayscale(0%);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-blur {
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   3. Components
   ========================================================================== */

/* --- Buttons --- */
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* .btn-full: ホバー時に右から白背景がスライドインし、フチと文字が元のボタンカラーに反転する */
.btn-full {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  height: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--btn-color);
  transition: color 0.3s ease;
}
.btn-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-chevron {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-full::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  z-index: -1;
  background-color: #fff;
  clip-path: polygon(0% 0%, 0% 0%, -15% 100%, 0% 100%);
  transition: clip-path 0.3s ease;
  will-change: clip-path;
}
.btn-full:hover {
  color: var(--btn-color);
}
.btn-full:hover::before {
  clip-path: polygon(0% 0%, 115% 0%, 100% 100%, 0% 100%);
}

.btn-solid-accent {
  --btn-color: var(--inverse-primary);
  background-color: var(--btn-color);
  border-color: var(--btn-color);
  color: #fff;
}

.btn-outline-light {
  --btn-color: var(--surface-container-lowest);
  background-color: var(--btn-color);
  border-color: var(--btn-color);
  color: var(--inverse-surface-high);
}

/* --- Header --- */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%; margin: 0 auto; padding: 0 0 0 var(--margin-mobile); }
@media (min-width: 768px) { .header-inner { padding: 0 0 0 var(--gutter); } }
.header-logo { height: 1.5rem; width: auto; display: flex; align-items: center; transition: color 0.3s ease; }
@media (min-width: 768px) { .header-logo { height: 2rem; } }
.header-logo img { height: 100%; width: auto; }
.header-actions { display: flex; align-items: center; }
.btn-storelist { display: flex; align-items: center; gap: 0.5rem; background: var(--inverse-primary); color: #fff; padding: 0 0.9rem; height: 3rem; font-weight: 700; font-size: 16px; letter-spacing: 0.05em; transition: background 0.3s ease; }
@media (min-width: 768px) { .btn-storelist { height: 3.5rem; padding: 0 1.25rem; } }
.btn-storelist:hover { background: var(--primary-container); }

/* --- Hero Section --- */
.hero-section {
  position: relative; height: 819px; min-height: 600px; overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.2); z-index: 1;}
.hero-content { position: absolute; left: 0; bottom: 20%; width: 100%; display: flex; justify-content: center; z-index: 2;}
.hero-title { font-size: clamp(32px, calc(2rem + ((1vw - 3.2px) * 5.357)), 80px); font-weight: 800; letter-spacing: -0.04em; color: rgba(255, 255, 255, 0.7); }

/* --- Hero Slideshow --- */
.hero-bg-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  animation: heroSlideShow 12s infinite; /* 18s → 12s に短縮 */
}
.hero-bg-slide:nth-of-type(1) { animation-delay: 0s; }
.hero-bg-slide:nth-of-type(2) { animation-delay: -4s; }
.hero-bg-slide:nth-of-type(3) { animation-delay: -8s; }

@keyframes heroSlideShow {
  0%     { opacity: 0; transform: scale(1); }
  12.5%  { opacity: 1; }              /* フェードイン完了 */
  33.3%  { opacity: 1; }               /* ここまでクッキリ表示 */
  45.8%  { opacity: 0; transform: scale(1.05); } /* フェードアウト完了、ここまでに拡大 */
  45.9%  { transform: scale(1); }      /* 見えない間にスケールをリセット */
  100%   { opacity: 0; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { animation: none;}
  .hero-bg-slide:first-of-type { opacity: 1;} /* 動きを抑える環境では1枚目を静止表示 */
}


/* --- Collection Section --- */
.collection-section { display: grid; grid-template-columns: 1fr; background-color: var(--inverse-surface); color: var(--inverse-on-surface); }
@media (min-width: 768px) { .collection-section { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }}
.collection-image-wrap { width: 100%; aspect-ratio: 4/5; }
@media (min-width: 768px) {.collection-image-wrap {aspect-ratio: auto; height: 100%; }}
.collection-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.collection-content-wrap { display: flex; align-items: center; justify-content: center; padding: var(--section-padding-mobile) var(--margin-mobile); }
@media (min-width: 768px) { .collection-content-wrap { padding: var(--section-padding-desktop) 2.5rem; } }
.collection-inner { max-width: 36rem; width: 100%; }
.section-title { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .section-title { font-size: 32px; } }
.collection-desc { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.collection-desc .jp { font-size: 15px;letter-spacing: 0.12rem; }
.collection-desc .en { font-size: 12px; font-weight: 400; }


/* --- About PRINTÖNE Section --- */
.brand-about-section { padding: var(--section-padding-mobile) var(--margin-mobile); text-align: center; background-color: var(--surface); color: var(--on-surface); }
@media (min-width: 768px) { .brand-about-section { padding: var(--section-padding-desktop) var(--gutter); } }
.brand-about-inner { max-width: var(--container-max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.brand-about-desc { max-width: 50rem; font-size: 15px; }

/* --- Gallery Section --- */
.gallery-section { background-color: var(--surface); padding-bottom: var(--section-padding-mobile); }
@media (min-width: 768px) { .gallery-section { padding-bottom: var(--section-padding-desktop); } }
.gallery-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 2px; padding: 0 2px; scrollbar-width: none; }
.gallery-grid::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow-x: visible; } }
.gallery-item { position: relative; aspect-ratio: 1.4/1; overflow: hidden; background-color: var(--surface-container-low); width: 80%; flex-shrink: 0; scroll-snap-align: center; }
@media (min-width: 768px) { .gallery-item { width: 100%; } }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }

/* --- Same-day Print (Oneday) Section --- */
.oneday-section { position: relative; min-height: 200vh;}
.oneday-bg-wrap { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; z-index: 0;}
.oneday-bg { width: 100%; height: 100%; object-fit: cover;}
.oneday-inner { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 0 var(--margin-mobile);}
.oneday-card { background-color: var(--inverse-surface); color: var(--inverse-on-surface); padding: 2rem; max-width: 42rem; width: 100%;}
@media (min-width: 768px) { .oneday-card { padding: 3rem; } }
.oneday-title { font-size: 32px; font-weight: 700; margin-bottom: 1.5rem; }
.oneday-desc { font-size: 15px; margin-bottom: 1.5rem; line-height: 1.6; color: var(--surface-container-high); }
.oneday-notice { margin-bottom: 2rem; font-size: 14px; color: var(--surface-container-highest); }
.oneday-notice strong { display: block; margin-bottom: 0.5rem; color: var(--inverse-on-surface); }
.oneday-list { list-style-type: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }

/* --- FAQ Section --- */
.faq-section {  background-color: var(--inverse-surface);  color: var(--inverse-on-surface);}
.faq-inner {
  padding: var(--section-padding-mobile) var(--margin-mobile);  max-width: var(--container-max);
  margin: 0 auto;  display: flex;  flex-direction: column;  gap: 2rem;}
@media (min-width: 768px) {
  .faq-inner {padding: var(--section-padding-desktop) var(--gutter); flex-direction: row; gap: var(--gutter);  }}
.faq-header { width: 100%; }
@media (min-width: 768px) { .faq-header { width: 33.333%; } }
.faq-header .section-title { color: var(--inverse-primary); }
.faq-list { width: 100%; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .faq-list { width: 66.666%; } }
.faq-item { border: 1px solid var(--outline); background-color: var(--inverse-surface); }
.faq-btn { width: 100%; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--inverse-on-surface); text-align: left; transition: background 0.3s ease; }
.faq-btn:hover { background: rgba(0, 0, 0, 0.05); }
.faq-btn .font-bold { color: var(--inverse-on-surface); }
.faq-btn .font-bold::before { content: 'Q. '; color: var(--inverse-primary); }
.faq-btn .material-symbols-outlined { transition: transform 0.3s ease; color: var(--outline); }
.faq-btn[aria-expanded="true"] .material-symbols-outlined { transform: rotate(180deg); }
.faq-content { padding: 1.25rem 3rem 1.25rem; background-color: #fbfbfb;}
.faq-content p { font-size: 14px; color: var(--inverse-on-surface); }

/* --- Store List (Locations) Section --- */
.locations-section { background-color: var(--surface); padding: var(--section-padding-mobile) var(--margin-mobile); color: var(--on-surface); }
@media (min-width: 768px) { .locations-section { padding: var(--section-padding-desktop) var(--gutter); } }
.locations-header { max-width: var(--container-max); margin: 0 auto 2rem; }
.locations-grid {  max-width: var(--container-max); margin: 0 auto;  display: flex; flex-direction: column; gap: 2rem; align-items: stretch; justify-content: space-evenly;}
.location-card {  display: flex; flex-direction: column;  gap: 1rem; letter-spacing: 0.05rem; margin-bottom: 1.5rem; }
.location-card .btn-full {  margin-top: auto;}
@media (min-width: 768px) {
  .locations-grid {flex-direction: row;flex-wrap: wrap;} 
  .location-card {width: calc((100% - 20%) / 2); }}
  .location-image-wrap { width: 100%; aspect-ratio: 4/3; background-color: var(--surface-container-low); border: 1px solid rgba(174, 136, 129, 0.1); overflow: hidden; margin-bottom: 0.8rem; }
.location-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.location-name { font-size: 22px; font-weight: 700; }
.location-address { font-style: normal; font-size: 14px; line-height: 1.6; }
.location-hours { font-size: 14px; }
.location-hours dt { font-weight: 700; letter-spacing: 0.05em; padding-bottom: 0.2rem; border-bottom: 1px solid var(--inverse-surface); margin: 1.4rem 0 0.75rem; }
.location-hours dd { padding-left: 0; margin-top: 0.25rem; line-height: 1.6; }
.location-note { font-size: 13px; opacity: 0.8; }
.location-tel { 
  font-size: 14px; line-height: 1.6; }
.location-tel .material-symbols-outlined { transform: translateY(3px); font-size: 16px;}
.location-tel .num-font { font-size: 18px;}
@media screen and (min-width: 768px) {.location-tel a{pointer-events: none;}}
.location-card > *:not(:first-child):not(:last-child) { padding: 0 1.5rem;}
.br-break { display: block;}
@media (min-width: 1024px) { .br-break {display: none;} }

/* --- Footer --- */
.site-footer { background: var(--inverse-surface); padding: 3rem 0; text-align: center; }
.footer-top { padding-bottom: 1.5rem; }
.footer-logo {text-align: center;}
.footer-logo  img{ height: 1.5rem; width: auto; display: inline-block;}
.footer-bottom { color:var(--surface); font-size: 12px; }
.footer-bottom p { padding: 0.25rem 0; }
.footer-bottom a { color: var(--inverse-primary); text-decoration: underline; }

/* ==========================================================================
   4. Shop LP Components
   ========================================================================== */

/* --- Header: Nav & Action buttons (店舗LP仕様) --- */
.header-nav { display: none; align-items: center; gap: 1.5rem; margin-left: 2.5rem; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.nav-link { color: rgba(226, 226, 226, 0.85); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; transition: color 0.3s ease; }
.nav-link:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; }
.btn-map { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 3.5rem; height: 3rem; color: var(--on-surface); transition: background 0.3s ease; line-height: 1.2; margin-right: 0.25rem; }
.btn-map:hover { background-color: rgba(255,255,255,0.08); }
.btn-map span:last-child { font-size: 9px; font-weight: 700; margin-top: 2px; letter-spacing: 0.3em; }
.site-header.scrolled { background-color: rgba(18, 20, 20, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--outline-variant); }

/* --- Shop Hero (店舗LP方式：1枚画像＋オーバーレイ＋パララックス) --- */
.shop-hero-section { position: relative; height: 819px; min-height: 600px; display: flex; align-items: flex-end; padding-bottom: 6rem; overflow: hidden; background-color: var(--surface-container-lowest); }
.shop-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.shop-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,15,15,0.2) 0%, rgba(12,15,15,0.75) 100%); z-index: 1; }
.shop-hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--margin-mobile);  }
@media (min-width: 768px) { .shop-hero-content { padding: 0 var(--gutter); } }
.shop-hero-text { max-width: 42rem; color: var(--on-surface);  letter-spacing: 0.08rem;}
.shop-hero-title { font-size: clamp(30px, calc(1.875rem + ((1vw - 3.2px) * 4.0179)), 48px); min-height: 0vw; line-height: 1.3; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 1rem; }
.shop-hero-subtitle { font-size: 15px; line-height: 1.6; opacity: 0.85; border-left: 4px solid var(--inverse-primary); padding-left: 1rem; }

/* --- Floor Guide Section　--- */
.floor-section { padding: 0; background-color: var(--surface); color: var(--on-surface);}
.floor-header { text-align: center; padding: var(--section-padding-mobile) var(--margin-mobile) 2.5rem; }
@media (min-width: 768px) { .floor-header { padding: var(--section-padding-desktop) var(--gutter) 2.5rem; } }
.floor-swiper { height: calc(100vh - 56px); min-height: 400px; }
.floor-item { background-size: cover; background-position: center; display: flex; align-items: center; justify-content: flex-start; height: 100%; }
.floor-text-area { background-color: rgba(0, 0, 0, 0.7); line-height: 2rem; padding: 3em; display: inline-block; font-size: clamp(12px, calc(0.75rem + ((1vw - 3.2px) * 0.2941)), 14px); flex-basis: 550px; max-width: 80%; margin: 0 8%; letter-spacing: 0.05rem; }
.floor-floor-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7em; font-weight: 700; letter-spacing: 0.02em; line-height: 1.3; }
.floor-floor-title { font-weight: 700; letter-spacing: 0.1em; font-size: 1.7em; line-height: 1.3; margin-bottom: 1.25rem; }
.floor-desc { }
.floor-swiper .swiper-button-prev,
.floor-swiper .swiper-button-next { color: #fff; background: rgba(0,0,0,0.4); width: 2.75rem; height: 2.75rem; border-radius: 50%; }
.floor-swiper .swiper-button-prev::after,
.floor-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 700; }

/* --- Reviews Section (Google Reviews) --- */
.reviews-section { background-color: var(--surface); padding: var(--section-padding-mobile) 0; overflow: hidden; color: var(--on-surface); }
@media (min-width: 768px) { .reviews-section { padding: var(--section-padding-desktop) 0; } }
.reviews-header { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; padding: 0 var(--margin-mobile); }
.reviews-header img { width: 2rem;  height: 2rem;}
.marquee-wrapper { position: relative; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-container { display: flex; width: max-content; animation: marquee 40s linear infinite; gap: var(--gutter); }
.marquee-container:hover { animation-play-state: paused; }

/* review-card */
.review-card { background: #fff; padding: 1.5rem; border-radius: 0.75rem; border: 1px solid #bbc9c7; width: 65vw; flex-shrink: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.05); color: #1b1c1c; }
@media (min-width: 768px) { .review-card { width: 400px; } }
.review-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.review-author-info { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: #e4e2e2; display: flex; align-items: center; justify-content: center; color: #6c7a78; }
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 11px; color: #3c4947; }
.review-stars { display: flex; color: #FBBC05; margin-bottom: 0.75rem; font-size: 14px; gap: 2px; }
.review-text { font-size: 15px; color: #3c4947; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 768px) { .review-text { -webkit-line-clamp: 5; } }

/* --- Import Brand Section　--- */
.import-section { padding: var(--section-padding-mobile) var(--margin-mobile); max-width: var(--container-max); margin: 0 auto; background-color: var(--inverse-surface); color: var(--inverse-on-surface);}
@media (min-width: 768px) { .import-section { padding: var(--section-padding-desktop) var(--gutter); } }
.import-header { text-align: center; margin-bottom: 2rem; }
.import-intro { margin: 0 auto 3rem; text-align: center;  font-size: 14px; line-height: 1.8; }
.import-subtitle { font-size: 18px; font-weight: 700; letter-spacing: 0.05em; text-align: center; margin: 3rem 0 2rem; }

.brand-grid { display: flex; flex-wrap: wrap; justify-content: space-evenly; }
.brand-card { width: 27%; min-width: 170px; padding: 10px; background: none; border: none; border-radius: 0; overflow: visible; }
.brand-card img { width: 100%; height: auto; }
.brand-card-info { padding: 10px 10px 20px; font-size: 13px; line-height: 1.8;letter-spacing: 0.05em; }
.brand-card-info .brand-label { display: inline; font-size: 85%; font-weight: 600; color: var(--outline-variant);  margin-right: 8px; border-bottom: 1px solid var(--outline); }

.brand-marquee { overflow: hidden; width: 100%; padding: 2rem 0; background-color: #fff; border-radius: 4rem; }
.brand-marquee-track { display: flex; width: max-content; gap: 3rem; align-items: center; animation: brandMarquee 45s linear infinite; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-marquee-track img { max-width: 130px; max-height: 42px; object-fit: contain; flex-shrink: 0; }
@keyframes brandMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; overflow-x: auto; }
  .brand-marquee { overflow-x: auto; }
}

/* --- Oneday overlay (top pageの.oneday-bg-wrap内で使用) --- */
.oneday-overlay { position: absolute; inset: 0; background-color: rgba(12, 15, 15, 0.45); z-index: 1; }

/* --- Price Section（店舗LP仕様／ダーク配色） --- */
.price-section { background: var(--inverse-surface); padding: var(--section-padding-mobile) var(--margin-mobile); color: var(--inverse-on-surface);  }
@media (min-width: 768px) { .price-section { padding: var(--section-padding-desktop) var(--gutter); } }
.price-inner { max-width: 1000px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 3rem; }
.price-illustration { margin-bottom: 4rem; display: flex; justify-content: center; }
.price-illustration img { max-width: 410px; width: 100%; height: auto; }
.price-cards { display: flex; flex-direction: column; align-items: stretch; gap: 1.5rem; max-width: 50rem; margin: 0 auto; }
.price-card { background: var(--inverse-surface-high); border-radius: 0.75rem; padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; border: 1px solid var(--inverse-surface-low); }
@media (min-width: 768px) { .price-card { flex-direction: row; padding: 2rem; } }
.price-icon { flex-shrink: 0; }
.price-icon img { width: 7rem; height: auto; }
.price-details { flex: 1; width: 100%; text-align: center; }
@media (min-width: 768px) { .price-details { text-align: left; } }
.price-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.price-divider { border-bottom: 1px solid var(--inverse-surface-low); margin-bottom: 1rem; }
.price-amounts { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; flex-direction: column; gap: 0; }
@media (min-width: 768px) { .price-amounts { flex-direction: row; align-items: baseline; justify-content: flex-start; gap: 1.5rem; } }
.price-main { color: var(--inverse-primary); font-weight: 700; font-size: 1.875rem; }
.price-sub { font-size: 1.35rem; }
.price-main .unit, .price-sub .unit { font-size: 0.75em; padding-right: 0.1rem; }
.price-time-box { background: var(--inverse-surface-low); border-radius: 0.75rem; text-align: center; min-width: 160px; padding: 1rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 768px) { .price-time-box { flex-direction: column; padding: 1.5rem; gap: 0; } }
.price-time-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0; }
@media (min-width: 768px) { .price-time-label { margin-bottom: 0.5rem; } }
.price-time-val { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; }
.price-time-val .material-symbols-outlined { font-size: 1.5rem; transform: translateY(8%); }
.price-time-val .num { font-size: 1.7rem; margin-right: 3px; }

/* --- Items Section（即日プリント対応アイテム） --- */
.items-section { background: var(--inverse-surface); padding: var(--section-padding-mobile) var(--margin-mobile); color: var(--inverse-on-surface); }
@media (min-width: 768px) { .items-section { padding: 2rem var(--gutter) var(--section-padding-desktop); } }
.items-grid { display: flex; flex-wrap: wrap; gap: 2.5rem var(--gutter); max-width: var(--container-max); margin: 0 auto; }
.item-card { width: calc((100% - var(--gutter)) / 2); display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 480px) { .item-card { width: calc((100% - (var(--gutter) * 2)) / 3); } }
@media (min-width: 768px) { .item-card { width: calc((100% - (var(--gutter) * 3)) / 4); } }
.item-img-wrap { width: 100%; aspect-ratio: 1/1; margin-bottom: 1rem; border-radius: 0.5rem; background: var(--inverse-surface-high); display: flex; align-items: center; justify-content: center; padding: 1rem; overflow: hidden; }
.item-img { width: 100%; height: 100%; object-fit: contain; }
.item-title { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.25rem; }
.item-desc { font-size: 0.7rem;margin-bottom: 0.4rem; letter-spacing: 0.05rem; }
.item-price { color: var(--inverse-primary); font-weight: 700; font-size: 1.05rem; }
.item-price .unit { font-size: 0.85em; padding-right: 0.05rem; }

/* --- Order Step Section --- */
.order-section { padding-top: 2rem; padding-bottom: var(--section-padding-mobile); color: var(--inverse-on-surface);background: var(--inverse-surface-high); }
@media (min-width: 768px) { .order-section { padding-top: var(--section-padding-desktop); padding-bottom: var(--section-padding-desktop); } }
.order-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--margin-mobile); }
@media (min-width: 768px) { .order-inner { padding: 0 var(--gutter); } }
.order-step { text-align: center; margin-bottom: 4rem; }
.order-step-box { background: var(--inverse-surface-low); padding: 3rem 1.5rem; border-radius: 0.75rem; width: 400px; max-width: calc(100% - 2rem); margin: 0 auto; }
@media (min-width: 768px) { .order-step-box { padding: 4rem; width: 100%; max-width: 56rem; } }
.step-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.step-item { display: flex; flex-direction: row; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .step-item { flex-direction: column; align-items: center; } }
.step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 700; }
.step-icon { font-size: 2.75rem; }
.step-title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-align: left; }
.step-en { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; text-align: left; }
@media (min-width: 768px) { .step-title, .step-en { text-align: center; } }
.data-section { max-width: 56rem; margin: 0 auto; }
.data-title-wrap { text-align: center; margin-bottom: 3rem; }
.data-title { font-weight: 700; font-size: 1.05rem; display: inline-block; border-bottom: 2px solid var(--on-background); padding-bottom: 0.25rem; }
.data-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .data-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* .data-card { padding: 1.75rem; border-radius: 0.75rem; display: flex; align-items: center; gap: 1.5rem; background: var(--inverse-surface); } */
.data-card { padding: 2rem 2rem 2rem 0; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 2rem; background: var(--inverse-surface); transition: box-shadow 0.3s ease; width: calc(100% - 2rem); max-width: 400px; margin: 0 auto; }
@media (min-width: 768px) { .data-card { padding: 2rem 3rem 2rem 0; width: auto; max-width: none; margin: 0; } }
.data-card:hover { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.data-card-icon { font-size: 3.25rem; color: var(--inverse-primary); flex-shrink: 0; }
.data-card-en { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.data-card-jp { font-size: 1.3rem; font-weight: 700; line-height: 1.2; margin: 0.25rem 0; }
.data-card-desc { font-size: 0.7rem; color: var(--outline-variant); margin-top: 0.25rem; opacity: 0.85; }
.data-notice-text { text-align: center; font-weight: 700; margin-bottom: 2rem; }
.caution-box { border: 1px solid var(--inverse-primary); border-radius: 0.75rem; padding: 1.75rem; margin-bottom: 3rem; display: flex; flex-direction: column; gap: 1.5rem; background: var(--inverse-surface); }
.caution-item { display: flex; gap: 1rem; align-items: flex-start; }
.caution-icon { color: var(--inverse-primary); font-size: 1.7rem; flex-shrink: 0; margin-top: 0.2rem; }
.caution-text { font-size: 0.85rem; line-height: 1.7; }
.text-primary { color: var(--inverse-primary); }
.font-bold { font-weight: 700; }
.tech-specs { display: flex; flex-direction: column; gap: 2rem; font-size: 0.85rem; padding: 0 5%; color: var(--inverse-on-surface); }
.tech-specs > li { list-style: disc; margin-left: 1.25rem; }
.tech-block-title { font-weight: 700; margin-bottom: 1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 1rem; }
.tag-item { display: flex; align-items: center; gap: 0.5rem; }
.tag { background: var(--inverse-primary); color: #fff; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.size-list { display: flex; flex-wrap: wrap; column-gap: 2rem; row-gap: 1rem; }
.size-item { display: flex; align-items: baseline; }
.size-item .tag { margin-right: 0.5rem; }
.tech-desc-list { padding-left: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.tech-desc-list dt { font-weight: 700; color: var(--on-background); margin-top: 0.5rem; }
.tech-desc-list dt:first-child { margin-top: 0; }
.tech-desc-list dd { padding-left: 1rem; }

/* --- Contact & Access Section --- */
#contact-section { display: flex; flex-direction: column; min-height: 600px; width: 100%; overflow: hidden; background: var(--surface); }
@media (min-width: 768px) { #contact-section { flex-direction: row; height: 80vh; } }
.contact-info-wrap { width: 100%; background: var(--surface-container-low); color: var(--on-surface); display: flex; align-items: center; justify-content: center; padding: 2.5rem; }
@media (min-width: 768px) { .contact-info-wrap { width: 50%; padding: 5rem; } }
.contact-inner { width: 100%; max-width: 28rem; font-size: 0.85rem;}
.contact-title { font-size: 30px; font-weight: 700; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.contact-label { font-size: 0.7rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.15em; }
.contact-text { line-height: 1.5; letter-spacing: 0.05rem;}
.contact-tel .num-font {font-size: 17px; font-weight: 700;}
.contact-tel .material-symbols-outlined { position: relative; top: 3px; font-size: 17px; }
@media screen and (min-width: 768px) {.contact-tel a{pointer-events: none;}}
.contact-buttons { display: flex; flex-direction: column; gap: 1rem; }
.contact-map-wrap { width: 100%; height: 60vh; display: flex; align-items: center; justify-content: center; background-color: var(--surface-container); color: var(--on-surface-variant); }
@media (min-width: 768px) { .contact-map-wrap { width: 50%; height: 100%; } }
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; }
.gm-style .gm-style-iw-c { background: transparent !important; box-shadow: none !important; padding: 0 !important; }
.gm-style .gm-style-iw-d { overflow: hidden !important; }
.gm-style .gm-style-iw-tc, .gm-style .gm-style-iw-chr { display: none !important; }

/* --- Form Section --- */
.form-container {padding: 6rem 0; background-color: #f2f2f2;}
.form-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--margin-mobile); }
.air-reserve{ overflow: hidden;}
@media (min-width: 768px) { .form-inner { padding: 0 var(--gutter); } }

.form-container .section-title span {
    font-size: 1rem;
    font-weight: 500;
    padding-left: 1rem;
}