/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a2e3b;
  background: #fff;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #0094d4;
  color: #fff;
  border-color: #0094d4;
}
.btn-primary:hover {
  background: #007bb5;
  border-color: #007bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,148,212,0.35);
}

.btn-outline {
  background: transparent;
  color: #0094d4;
  border-color: #0094d4;
}
.btn-outline:hover {
  background: #0094d4;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: #1a2e3b;
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0094d4;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #1a2e3b;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #0094d4;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-size: 1rem;
  font-weight: 900;
  color: #0094d4;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.08em;
}

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a2e3b;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-list > li > a:hover {
  color: #0094d4;
  background: #e8f5fb;
}
.nav-list a.active { color: #0094d4; }

/* DROPDOWN */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a2e3b;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: #e8f5fb; color: #0094d4; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #1a2e3b;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,40,80,0.55) 0%, rgba(0,100,180,0.35) 60%, rgba(0,20,60,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(0,148,212,0.8);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 36px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.6);
  margin: 0 auto 8px;
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== PRODUCTS ===== */
/*
.products { background: #f4faff; }
*/

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,148,212,0.18);
}

.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-body {
  padding: 20px;
  text-align: center;
}
.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-price {
  margin-bottom: 16px;
}
.price-from {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0094d4;
}
.price-unit {
  font-size: 0.8rem;
  color: #777;
  margin-left: 4px;
}

.products-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== FEATURES ===== */
.features { background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item { text-align: center; }

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #e0f2fc;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0094d4;
}
.feature-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

/* ===== INFO SECTION ===== */
.info-section {
  background: linear-gradient(135deg, #0072b1 0%, #00a8e8 100%);
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.info-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-card-body {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.info-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-card-body p {
  font-size: 0.875rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ===== STORE INFO ===== */
.store-section { background: #fff; }

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.store-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.store-detail { display: flex; flex-direction: column; gap: 0; }

.store-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #edf2f7;
  align-items: start;
}
.store-row:first-child { padding-top: 0; }

.store-row dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0094d4;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.store-row dd {
  font-size: 0.95rem;
  color: #1a2e3b;
  line-height: 1.8;
}

.store-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00b900;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.store-line-btn:hover { background: #009900; transform: translateY(-2px); }

/* ===== SNS ===== */
.sns-section { background: #f4faff; }

.sns-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sns-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.sns-line { background: #00b900; color: #fff; }
.sns-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d2b42;
  color: #cde;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-address {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #9bbcd0;
}

.footer-hours { border-collapse: collapse; font-size: 0.875rem; }
.footer-hours th {
  text-align: left;
  color: #fff;
  font-weight: 700;
  padding-right: 16px;
  padding-bottom: 8px;
  white-space: nowrap;
  vertical-align: top;
}
.footer-hours td { color: #9bbcd0; line-height: 1.9; }

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.875rem;
  color: #9bbcd0;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #667c8a;
}
.footer-related a { color: #0094d4; }
.footer-related a:hover { text-decoration: underline; }

/* ===== PAGE HERO (サブページ共通) ===== */
.page-hero {
  background: linear-gradient(135deg, #0072b1 0%, #00a8e8 100%);
  padding: 120px 24px 60px;
  text-align: center;
  color: #fff;
}
.page-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  opacity: 0.8;
  margin-bottom: 12px;
}
.page-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #f4faff;
  border-bottom: 1px solid #e0eef8;
  padding: 12px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.82rem;
  color: #888;
}
.breadcrumb-list li + li::before {
  content: '›';
  margin-right: 8px;
  color: #bbb;
}
.breadcrumb-list a {
  color: #0094d4;
  text-decoration: none;
}
.breadcrumb-list a:hover { text-decoration: underline; }

/* ===== GUIDE SECTIONS ===== */
.guide-section { padding: 72px 0; background: #fff; }
.guide-section--alt { background: #f4faff; }

.guide-block { max-width: 800px; margin: 0 auto; }

.guide-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0eef8;
}
.guide-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0094d4;
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}
.guide-block-header h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  color: #1a2e3b;
}

/* ===== GUIDE CARD ===== */
.guide-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e8f2fa;
}
.guide-card--accent { border-left: 4px solid #0094d4; }
.guide-card--delivery {
  background: linear-gradient(135deg, #e8f5fb 0%, #f0faff 100%);
  border: 1px solid #b8dff0;
}

.guide-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e3b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-wrap { font-size: 1.2rem; }

.guide-card p { color: #444; line-height: 1.9; font-size: 0.95rem; }
.guide-card strong { color: #0094d4; }

.guide-note {
  font-size: 0.82rem !important;
  color: #888 !important;
  margin-top: 12px;
}

/* ===== FEE TABLE ===== */
.fee-table-wrap { margin: 20px 0; overflow-x: auto; }

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.fee-table th {
  background: #0094d4;
  color: #fff;
  padding: 12px 20px;
  text-align: left;
  font-weight: 700;
}
.fee-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e0eef8;
  color: #333;
}
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:nth-child(even) td { background: #f4faff; }

.fee-row--highlight td {
  background: #fff8e8 !important;
  font-weight: 700;
  color: #c87400;
}
.fee-amount { font-weight: 700; color: #0094d4; }
.fee-row--highlight .fee-amount { color: #c87400; }

/* ===== TIMELINE EXAMPLE ===== */
.timeline-example { margin-top: 16px; }

.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.timeline-time {
  font-weight: 700;
  color: #0094d4;
  font-size: 1rem;
  width: 80px;
  flex-shrink: 0;
}
.timeline-bar {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0094d4;
  flex-shrink: 0;
}
.timeline-bar--end { background: #00b060; }
.timeline-label { font-size: 0.95rem; color: #333; }

.timeline-arrow {
  text-align: left;
  padding: 4px 0 4px 96px;
  color: #aaa;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.timeline-ext {
  margin-top: 12px;
  margin-left: 96px;
  border-left: 2px dashed #e0eef8;
  padding-left: 20px;
}
.timeline-ext-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.875rem;
  color: #555;
  border-bottom: 1px dotted #eee;
  max-width: 280px;
}
.timeline-ext-row:last-child { border-bottom: none; }
.timeline-ext-fee { font-weight: 700; color: #0094d4; }
.timeline-ext-row--over { color: #c87400; }
.timeline-ext-row--over .timeline-ext-fee { color: #c87400; }

/* ===== HOURS GRID ===== */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}
.hours-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f4faff;
  border-radius: 10px;
  padding: 14px 20px;
}
.hours-day {
  font-weight: 700;
  color: #0094d4;
  width: 60px;
  flex-shrink: 0;
}
.hours-time {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e3b;
  letter-spacing: 0.05em;
}

/* ===== FLOW LIST ===== */
.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 28px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(to bottom, #0094d4, #00c8a0);
  border-radius: 2px;
}
.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}
.flow-step {
  background: #0094d4;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,148,212,0.3);
}
.flow-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e3b;
  margin-bottom: 4px;
}
.flow-content p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0 !important;
}

/* ===== GUIDE CTA ===== */
.guide-cta {
  background: linear-gradient(135deg, #0072b1 0%, #00a8e8 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.guide-cta-text {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0.9;
}
.guide-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-line-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00b900;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.btn-line-large:hover {
  background: #009900;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.guide-cta .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.guide-cta .btn-outline:hover {
  background: #fff;
  color: #0094d4;
}

/* ===== ARTICLE DETAIL ===== */
.article-wrap {
  background: #f4faff;
  padding: 52px 0 80px;
}

.article {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 52px 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.woocommerce-shop .article {
	max-width: 1200px;
}

/* 記事ヘッダー */
.article-header { margin-bottom: 32px; }

.article-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.article-cats .blog-cat-tag { text-decoration: none; }
.article-cats .blog-cat-tag:hover { background: #0094d4; color: #fff; }

.article-title {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 900;
  color: #1a2e3b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8f2fa;
}
.article-date,
.article-read {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #999;
}

/* アイキャッチ */
.article-eyecatch {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
}
.article-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文 */
.article-body {
  font-size: 0.975rem;
  color: #333;
  line-height: 2;
  margin-bottom: 44px;
}
.article-body p {
  margin-bottom: 1.4em;
}
.article-body p:last-child { margin-bottom: 0; }

.article-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e3b;
  margin: 2em 0 0.8em;
  padding: 10px 16px;
  background: #f4faff;
  border-left: 4px solid #0094d4;
  border-radius: 0 8px 8px 0;
}
.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e3b;
  margin: 1.8em 0 0.6em;
  padding-bottom: 6px;
  border-bottom: 2px solid #e0eef8;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.article-body li { margin-bottom: 0.4em; }
.article-body img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.2em 0;
}
.article-body a { color: #0094d4; text-decoration: underline; }

/* タグ */
.article-tags {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid #e8f2fa;
  border-bottom: 1px solid #e8f2fa;
  margin-bottom: 32px;
}
.article-tags-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
  padding-top: 4px;
}
.article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tag {
  display: inline-block;
  border: 1px solid #c8dff0;
  color: #555;
  font-size: 0.78rem;
  padding: 3px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.article-tag:hover { border-color: #0094d4; color: #0094d4; background: #e8f5fb; }

/* シェア */
.article-share { margin-bottom: 40px; }
.article-share-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 10px;
}

/* 前後ナビ */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #e0eef8;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.article-nav-item:hover { border-color: #0094d4; background: #f4faff; }
.article-nav-dir {
  font-size: 0.75rem;
  color: #0094d4;
  font-weight: 700;
}
.article-nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a2e3b;
  line-height: 1.5;
}
.article-nav-next { text-align: right; }

/* 関連記事 */
.article-related { background: #f4faff; }

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-related-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8f2fa;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,148,212,0.14);
}

.blog-related-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-related-card:hover .blog-related-img img { transform: scale(1.05); }

.blog-related-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-related-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a2e3b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.blog-related-card:hover .blog-related-title { color: #0094d4; }

.article-back { text-align: center; }

@media (max-width: 900px) {
  .article { padding: 36px 32px; }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .article { padding: 28px 20px; border-radius: 14px; }
  .article-nav { grid-template-columns: 1fr; }
  .article-nav-next { text-align: left; }
  .blog-related-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ===== BLOG LIST ===== */
.blog-section {
  padding: 60px 0 100px;
  background: #f4faff;
}

/* カテゴリーフィルター */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.blog-cat-btn {
  background: #fff;
  border: 2px solid #e0eef8;
  color: #555;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.blog-cat-btn:hover {
  border-color: #0094d4;
  color: #0094d4;
}
.blog-cat-btn.is-active {
  background: #0094d4;
  border-color: #0094d4;
  color: #fff;
}

/* 記事リスト */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e8f2fa;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,148,212,0.14);
}

.blog-card-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  text-decoration: none;
  color: inherit;
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-cat-tag {
  display: inline-block;
  background: #e8f5fb;
  color: #0094d4;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.blog-date {
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e3b;
  line-height: 1.5;
  margin: 0;
}
.blog-card:hover .blog-card-title { color: #0094d4; }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0094d4;
  margin-top: 4px;
}

/* ページネーション */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.blog-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 2px solid #e0eef8;
  background: #fff;
  color: #555;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.blog-page-btn:hover {
  border-color: #0094d4;
  color: #0094d4;
}
.blog-page-btn.is-active {
  background: #0094d4;
  border-color: #0094d4;
  color: #fff;
}
.blog-page-ellipsis {
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .blog-card-inner {
    grid-template-columns: 1fr;
  }
  .blog-card-img {
    aspect-ratio: 16/9;
  }
  .blog-card-body {
    padding: 18px 20px;
  }
  .blog-card-title { font-size: 1rem; }
}

/* ===== PRODUCT DETAIL ===== */
.pd-section {
  padding: 60px 0 80px;
  background: #fff;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ギャラリー */
.pd-main-img {
  border-radius: 16px;
  overflow: hidden;
  background: #f0f8ff;
  aspect-ratio: 4/3;
}
.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0eef8;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-thumb.is-active,
.pd-thumb:hover { border-color: #0094d4; }

/* 商品情報 */
.pd-category {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pd-category a {
  color: #0094d4;
  text-decoration: none;
}
.pd-category a:hover { text-decoration: underline; }

.pd-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #1a2e3b;
  line-height: 1.3;
  margin-bottom: 20px;
}

.pd-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8f2fa;
}
.pd-price {
  font-size: 2rem;
  font-weight: 900;
  color: #0094d4;
}
.pd-price-unit {
  font-size: 0.9rem;
  color: #777;
}

.pd-desc {
  margin-bottom: 28px;
}
.pd-desc p {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
}

/* スペック（自由テキスト） */
.pd-spec { margin-bottom: 32px; }

.pd-spec-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a2e3b;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid #0094d4;
}

.pd-spec-body {
  background: #f4faff;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #333;
  line-height: 2;
}
.pd-spec-body p { margin: 0; }
.pd-spec-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pd-spec-body ul li {
  padding-left: 1em;
  position: relative;
}
.pd-spec-body ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #0094d4;
}

/* 予約ボタン */
.pd-cta { margin-bottom: 28px; }

.pd-reserve-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 36px;
  font-size: 1.05rem;
  width: 100%;
  gap: 4px;
}
.pd-reserve-note {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

/* SNSシェア */
.pd-share-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pd-share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.pd-share-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.pd-share-x    { background: #000; color: #fff; }
.pd-share-fb   { background: #1877f2; color: #fff; }

/* 関連商品 */
.pd-related { background: #f4faff; }

@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-main-img { max-width: 480px; }
}
@media (max-width: 600px) {
  .pd-reserve-btn { font-size: 0.95rem; }
  .pd-price { font-size: 1.6rem; }
}

/* ===== RECOMMENDED PAGE ===== */
.rec-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 24px 30px;
}

.rec-hero-bg {
  position: absolute;
  inset: 0;
}
.rec-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.rec-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 120, 0.42);
}

.rec-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.rec-hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 52px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.rec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.rec-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.rec-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.rec-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rec-card:hover .rec-card-img img { transform: scale(1.06); }

.rec-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 28px 16px 16px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
  .rec-cards { grid-template-columns: 1fr; max-width: 380px; gap: 20px; }
  .rec-hero-title { margin-bottom: 36px; }
}

/* ===== PRODUCTS LIST PAGE ===== */
.cat-tabs-wrap {
  background: #fff;
  border-bottom: 2px solid #e0eef8;
  position: sticky;
  top: 68px;
  z-index: 500;
}
.cat-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.cat-tab:hover,
.cat-tab.is-active {
  color: #0094d4;
  border-bottom-color: #0094d4;
}

/* PICKUP BANNER */
.pickup-banner {
  background: linear-gradient(135deg, #fff8e8 0%, #fff3d0 100%);
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 20px 0;
}
.pickup-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.pickup-label {
  display: inline-block;
  background: #f5a300;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-right: 10px;
}
.pickup-banner-text p {
  display: inline;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e3b;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 64px 0;
  background: #fff;
  scroll-margin-top: 124px;
}
.products-section--alt {
  background: #f4faff;
}

.products-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0eef8;
}
.products-section-icon { font-size: 1.6rem; }
.products-section-header h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: #1a2e3b;
}

.products-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-list-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #e8f2fa;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.product-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,148,212,0.16);
}

.product-list-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f8ff;
}
.product-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-list-card:hover .product-list-img img { transform: scale(1.05); }

.product-list-body {
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-list-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e3b;
  line-height: 1.5;
}
.product-list-name small {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
}

.product-list-price { margin-bottom: 4px; }
.plist-from {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0094d4;
}
.plist-unit {
  font-size: 0.78rem;
  color: #888;
  margin-left: 4px;
}

.product-list-body .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .products-list-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-list-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-tab { padding: 12px 16px; font-size: 0.8rem; }
  .pickup-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .products-list-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-list-body { padding: 14px 12px; }
}

/* ===== TERMS PAGE ===== */
.terms-section {
  padding: 80px 0 100px;
  background: #f4faff;
}

.terms-block {
  max-width: 800px;
  margin: 0 auto;
}

.terms-lead {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  background: #fff;
  border-left: 4px solid #0094d4;
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 40px;
}

.terms-article {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #e8f2fa;
}

.terms-article--warning {
  border-left: 4px solid #e05;
}
.terms-article--warning .terms-article-title { color: #cc0044; }
.terms-article--warning .terms-num { background: #cc0044; }

.terms-article-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e3b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-num {
  display: inline-block;
  background: #0094d4;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.terms-content p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 12px;
}

.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.terms-list li {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}
.terms-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #0094d4;
  font-weight: 700;
}

.terms-table-wrap { margin-top: 16px; overflow-x: auto; }

.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.terms-table th {
  background: #0094d4;
  color: #fff;
  padding: 12px 20px;
  text-align: left;
  font-weight: 700;
}
.terms-table td {
  padding: 14px 20px;
  color: #333;
  border-bottom: 1px solid #e0eef8;
}
.terms-fee strong { color: #0094d4; font-size: 1.05rem; }

.terms-update {
  font-size: 0.82rem;
  color: #999;
  text-align: center;
  margin: 40px 0 32px;
}

.terms-back {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .terms-article { padding: 24px 20px; }
  .terms-back { flex-direction: column; align-items: center; }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0 100px;
  background: #f4faff;
}

.contact-intro {
  text-align: center;
  margin-bottom: 48px;
}
.contact-intro p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.9;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 52px 40px;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  border: 1px solid #e0eef8;
}

.contact-line-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.contact-line-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-line-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.contact-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00b900;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,185,0,0.3);
  margin-bottom: 32px;
}
.contact-line-btn:hover {
  background: #009900;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,185,0,0.4);
}

.contact-line-img {
  max-width: 240px;
  margin: 0 auto;
}
.contact-line-img img {
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}
.contact-line-img a:hover img { opacity: 0.85; }

.contact-hours {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e8f2fa;
}

.contact-hours-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e3b;
  margin-bottom: 20px;
  text-align: center;
}

.contact-hours-note {
  font-size: 0.82rem;
  color: #888;
  margin-top: 16px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 600px) {
  .contact-card { padding: 36px 24px; }
  .contact-hours { padding: 28px 24px; }
}

/* ===== FLOATING BANNER ===== */
.float-banner {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f5a300;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245,163,0,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  gap: 0;
}
.float-banner:hover {
  background: #d48c00;
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(245,163,0,0.55);
}
.float-banner-main {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}
.float-banner-sub { display: none; }

@media (max-width: 768px) {
  .float-banner {
    right: 0;
    bottom: 16px;
    width: auto;
    height: auto;
    border-radius: 8px 0 0 8px;
    padding: 10px 14px;
    flex-direction: column;
    text-align: center;
    box-shadow: -3px 0 16px rgba(0,0,0,0.18);
  }
  .float-banner:hover {
    transform: translateX(-4px);
    box-shadow: -6px 0 20px rgba(0,0,0,0.25);
  }
  .float-banner-main { font-size: 0.85rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px;
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { padding: 14px 8px; font-size: 1rem; border-bottom: 1px solid #eee; display: block; width: 100%; border-radius: 0; }
  .has-dropdown .dropdown { opacity: 1; visibility: visible; transform: none; }
  .dropdown { position: static; box-shadow: none; padding: 0 0 0 16px; background: #f9f9f9; border-bottom: 1px solid #eee; border-radius: 0; }
  .dropdown li a { border-bottom: 1px solid #e8e8e8; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.2rem; }

  .features-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 220px; }

  .store-grid { grid-template-columns: 1fr; gap: 32px; }
  .store-map { min-height: 260px; }
  .store-row { grid-template-columns: 80px 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .guide-card { padding: 24px 20px; }
  .flow-list::before { left: 30px; }
  .timeline-ext { margin-left: 80px; }
  .timeline-time { width: 68px; font-size: 0.9rem; }
  .fee-table th, .fee-table td { padding: 10px 14px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .hero-title { font-size: 1.9rem; }
}


/* ============================================================
   WooCommerce 全方位 UI改善 - 商品詳細・カート・チェックアウト
   ============================================================ */

/* ── カート・チェックアウト・ショップ ページのheroをコンパクトに ── */
.woocommerce-cart .page-hero,
.woocommerce-checkout .page-hero,
.woocommerce-shop .page-hero,
.woocommerce-account .page-hero {
  padding: 52px 24px 32px;
}
/* PAGE ラベルはカート・チェックアウトでは非表示 */
.woocommerce-cart .page-hero .page-hero-label,
.woocommerce-checkout .page-hero .page-hero-label {
  display: none;
}

/* ── 商品詳細 page-hero もコンパクトに ── */
.single-product .page-hero {
  padding: 52px 24px 28px;
}
.single-product .page-hero .page-hero-label {
  display: none;
}

/* ── article / article-body の余白調整 ── */
.woocommerce-cart .article,
.woocommerce-checkout .article {
  padding: 32px 40px 56px;
}
@media (max-width: 768px) {
  .woocommerce-cart .article,
  .woocommerce-checkout .article {
    padding: 20px 16px 40px;
  }
}

/* ── single product: .product レイアウト強化 ── */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 36px 48px;
  align-items: start;
}
.woocommerce div.product .woocommerce-product-gallery {
  grid-column: 1;
  grid-row: 1;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}
.woocommerce div.product .summary {
  grid-column: 2;
  grid-row: 1;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  grid-row: 2;
  float: none !important;
  width: 100% !important;
  clear: both;
}
.woocommerce div.product .related {
  grid-column: 1 / -1;
  grid-row: 3;
  clear: both;
}
@media (max-width: 1024px) {
  .woocommerce div.product {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: auto;
    gap: 28px;
  }
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary,
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .related {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }
}

/* ── 商品タイトル ── */
.woocommerce div.product .product_title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #1a1a1a;
}

/* ── 価格範囲表示 (¥1,100 – ¥4,400) ── */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0072b1;
  margin-bottom: 20px;
  display: block;
}

/* ── バリエーション (レンタル期間) セレクター改善 ── */
.woocommerce div.product form.variations_form .variations {
  width: 100%;
  border: none;
  margin-bottom: 16px;
}
.woocommerce div.product form.variations_form .variations td,
.woocommerce div.product form.variations_form .variations th {
  padding: 0;
  border: none;
  vertical-align: middle;
}
.woocommerce div.product form.variations_form .variations .label {
  padding: 0 12px 0 0;
  white-space: nowrap;
}
.woocommerce div.product form.variations_form .variations .label label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #444;
  background: #e8f4fb;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
}
.woocommerce div.product form.variations_form .variations .value {
  width: 100%;
  padding: 0;
}
.woocommerce div.product form.variations_form .variations select {
  width: 100%;
  max-width: 260px;
  padding: 10px 14px;
  border: 2px solid #0072b1;
  border-radius: 8px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230072b1' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
  background-size: 12px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce div.product form.variations_form .variations select:focus {
  border-color: #005a8e;
  box-shadow: 0 0 0 3px rgba(0,114,177,0.15);
  outline: none;
}

/* ── 選択後の単価表示 ── */
.woocommerce div.product form.variations_form .single_variation_wrap {
  margin-top: 16px;
}
.woocommerce div.product .woocommerce-variation-price .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0072b1;
}

/* ── 数量 + カートボタン 横並び ── */
.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.woocommerce div.product form.cart .qty {
  width: 70px;
  padding: 10px 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 160px;
  padding: 12px 24px;
  background: #0072b1;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #005a8e;
  transform: translateY(-1px);
}
.woocommerce div.product form.cart .single_add_to_cart_button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* ── 商品説明 (短い説明) ── */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #f8fbff;
  border-left: 3px solid #0072b1;
  border-radius: 0 6px 6px 0;
}

/* ── タブ (説明) セクション ── */
.woocommerce .woocommerce-tabs {
  margin-top: 40px;
}
.woocommerce .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e0e0e0;
}
.woocommerce .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
}
.woocommerce .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.woocommerce .woocommerce-tabs ul.tabs li.active a {
  background: #fff;
  color: #0072b1;
  border-bottom-color: #fff;
}
.woocommerce .woocommerce-tabs .panel {
  padding: 24px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-top: -1px;
}
/* タブ内の h2（説明）を非表示 */
.woocommerce .woocommerce-tabs .panel h2:first-child {
  display: none;
}
.woocommerce .woocommerce-tabs .panel p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

/* ── ショップ・カテゴリページのWC組込みレイアウト ── */
.woocommerce-shop .article-body,
.tax-product_cat .article-body,
.archive .article-body {
  padding-top: 8px;
}

/* ── WooCommerce ブロックカート UI ── */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 860px;
  margin: 0 auto;
}

/* カートアイテム行 */
.wc-block-cart-items__row {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.wc-block-cart-items__row:last-child {
  border-bottom: none;
}

/* 商品名リンク */
.wc-block-cart-item__product-name a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}
.wc-block-cart-item__product-name a:hover {
  color: #0072b1;
}

/* バリエーション表示（カート内） */
.wc-block-cart-item__product-name .wc-block-components-product-details__list,
.wc-block-cart-item__product-meta {
  font-size: 0.82rem;
  color: #777;
  margin-top: 4px;
}

/* カート合計 */
.wc-block-cart__totals-title {
  font-size: 1rem;
  font-weight: 700;
}
.wc-block-components-totals-item__value {
  font-weight: 700;
  color: #0072b1;
}

/* 購入ボタン */
.wc-block-cart__submit-container .wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button {
  background: #0072b1 !important;
  border-color: #0072b1 !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  transition: background 0.2s !important;
}
.wc-block-cart__submit-container .wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button:hover {
  background: #005a8e !important;
  border-color: #005a8e !important;
}

/* ── チェックアウト フォーム ── */
.wc-block-components-checkout-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
}
.wc-block-components-text-input label,
.wc-block-components-select label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}
.wc-block-components-text-input input,
.wc-block-components-select select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus {
  border-color: #0072b1;
  box-shadow: 0 0 0 3px rgba(0,114,177,0.12);
  outline: none;
}

/* 注文確定ボタン */
.wc-block-components-checkout-place-order-button {
  width: 100%;
  background: #0072b1 !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.2s !important;
  margin-top: 16px;
}
.wc-block-components-checkout-place-order-button:hover {
  background: #005a8e !important;
}

/* ── ショップ（商品一覧）アーカイブのWCデフォルト ── */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 0 4px;
  color: #1a1a1a;
}
.woocommerce ul.products li.product .price {
  font-size: 0.9rem;
  color: #0072b1;
  font-weight: 600;
}
.woocommerce ul.products li.product a.button {
  font-size: 0.82rem;
  padding: 8px 16px;
  background: #0072b1;
  color: #fff;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  transition: background 0.2s;
}
.woocommerce ul.products li.product a.button:hover {
  background: #005a8e;
}

/* ── パンくずリスト ── */
.breadcrumb {
  padding: 10px 0;
}
.breadcrumb .container {
  font-size: 0.82rem;
}
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 20px;
  color: #888;
}

/* ── エラー・通知メッセージ ── */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.woocommerce-message {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
}
.woocommerce-error {
  background: #ffeaea;
  border-left: 4px solid #e53935;
  color: #b71c1c;
}

/* ── responsive ── */
@media (max-width: 768px) {
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary {
    grid-column: 1;
  }
  .woocommerce div.product .woocommerce-product-gallery {
    grid-row: 1;
  }
  .woocommerce div.product .summary {
    grid-row: 2;
  }
  .woocommerce div.product .woocommerce-tabs {
    grid-column: 1;
    grid-row: 3;
  }
  .woocommerce div.product .related {
    grid-column: 1;
    grid-row: 4;
  }
  .woocommerce div.product form.variations_form .variations select {
    max-width: 100%;
  }
  .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: stretch;
  }
  .woocommerce div.product form.cart .qty {
    width: 100%;
  }
  .single-product .page-hero,
  .woocommerce-cart .page-hero,
  .woocommerce-checkout .page-hero {
    padding: 36px 16px 20px;
  }
}

/* ── ショップ（固定ページ型）の PAGE ラベル非表示 ── */
.woocommerce-shop .page-hero .page-hero-label,
.woocommerce-page .page-hero .page-hero-label,
.tax-product_cat .page-hero .page-hero-label,
.post-type-archive-product .page-hero .page-hero-label {
  display: none !important;
}
/* ショップのheroもコンパクトに */
.woocommerce-shop .page-hero,
.tax-product_cat .page-hero {
  padding: 84px 24px 24px;
}
/* ショップの商品一覧 article余白 */
.woocommerce-shop .article,
.tax-product_cat .article {
  padding: 28px 40px 56px;
}

/* ── 商品一覧カード: 「オプションを選択」ボタン 青統一 ── */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  display: inline-block;
  background: #0072b1 !important;
  color: #fff !important;
  font-size: 0.82rem !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  border: none !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: #005a8e !important;
  color: #fff !important;
}

/* ── 商品一覧 価格 (¥x – ¥y) の from/to 読みやすく ── */
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price del {
  font-size: 0.9rem;
}
.woocommerce ul.products li.product .price .from {
  font-size: 0.75rem;
  color: #888;
}

/* ── single-product page-hero のさらなる余白削減 ── */
.single-product .page-hero {
  padding: 84px 24px 20px !important;
}
.single-product .article {
  padding: 28px 40px 56px;
}
@media (max-width: 768px) {
  .woocommerce-shop .article,
  .tax-product_cat .article,
  .single-product .article {
    padding: 16px 16px 40px;
  }
}

/* ── 全固定ページ・アーカイブの「PAGE」ラベル非表示 ── */
.page .page-hero-label,
.archive .page-hero-label,
.search .page-hero-label,
.single .page-hero-label {
  display: none !important;
}
/* 通常固定ページのheroもコンパクトに */
.page .page-hero {
  padding: 84px 24px 24px;
}

/* ============================================================
   AJスタイル合わせ追加CSS - ご注意事項・レンタルバッジ・全体
   ============================================================ */

/* ── レンタル料金バッジ ── */
.mrc-rental-badge {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}

/* ── ご注意事項（カートボタン後） ── */
.mrc-product-notes {
  margin-top: 20px;
  padding: 14px 16px;
  background: #f0f7ff;
  border: 1px solid #c8e0f4;
  border-radius: 8px;
  clear: both;
  width: 100%;
}
.mrc-product-notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mrc-product-notes ul li {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
  padding: 2px 0;
}

/* ── form.cart を縦積みにしてご注意事項がはみ出さないよう修正 ── */
.woocommerce div.product form.cart {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  width: 100%;
}
.woocommerce div.product form.cart > * {
  flex-shrink: 0;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 0 0 auto;
  min-width: 180px;
}
/* ご注意事項はform外なので full-width */
.woocommerce div.product .mrc-product-notes {
  flex: 0 0 100%;
  margin-top: 16px;
}

/* ── 商品詳細 summary 全体のレイアウト ── */
.woocommerce div.product .summary {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.woocommerce div.product .summary .product_title {
  order: 1;
  margin-bottom: 4px;
}
.woocommerce div.product .summary .mrc-rental-badge {
  order: 2;
}
.woocommerce div.product .summary p.price,
.woocommerce div.product .summary span.price {
  order: 3;
  margin-bottom: 16px;
}
.woocommerce div.product .summary .woocommerce-product-details__short-description {
  order: 4;
  margin-bottom: 16px;
}
.woocommerce div.product .summary .variations_form {
  order: 5;
}

/* ── カート ページタイトル（breadcrumb）「レンタルカート」 ── */
.woocommerce-cart .breadcrumb a:last-child,
.woocommerce-cart nav.breadcrumb span:last-child {
  font-weight: 600;
}

/* ── チェックアウト ページタイトル ── */
.woocommerce-checkout .page-hero-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

/* ── 商品一覧「レンタル期間を選択」ボタン ── */
.woocommerce ul.products li.product .button {
  font-size: 0.85rem !important;
  padding: 9px 16px !important;
  letter-spacing: 0.02em;
}

/* ── 価格「¥2,200 – ¥8,800」のダッシュをスペーシング ── */
.woocommerce div.product p.price .woocommerce-Price-amount + span + .woocommerce-Price-amount {
  margin-left: 2px;
}

/* ── カート内のバリエーション名（レンタル期間: 96時間...）スタイル ── */
.wc-block-cart-item__product-details dd,
.wc-block-components-product-details__value,
.wc-block-components-product-details__name {
  font-size: 0.82rem !important;
  color: #0072b1 !important;
  font-weight: 600 !important;
}

/* ── チェックアウト「ご予約内容」サイドバー ── */
.wc-block-components-order-summary__button-text,
.wc-block-components-order-summary-item__quantity {
  font-size: 0.9rem;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #0072b1 !important;
}

/* ── 「または」区切り線 ── */
.wc-block-components-checkout-step ~ .wc-block-components-express-payment-continue-rule,
[class*="continue-rule"] {
  text-align: center;
  color: #aaa;
  font-size: 0.82rem;
  margin: 12px 0;
}

/* ── チェックアウトページ 2カラムレイアウト ── */
.wc-block-checkout__main {
  padding-right: 24px;
}

/* ── 商品詳細の空白エリア縮小 ── */
.woocommerce div.product .summary form.cart {
  margin-bottom: 0;
}
.woocommerce .single-product .woocommerce-notices-wrapper {
  margin-bottom: 0;
}

/* ── タブ「商品詳細」コンテンツのフォント ── */
.woocommerce .woocommerce-tabs .panel p,
.woocommerce .woocommerce-tabs .panel li,
.woocommerce .woocommerce-tabs .panel td {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #444;
}

/* ── ブレッドクラム ── */
nav.breadcrumb {
  padding: 8px 0;
}
.breadcrumb .container {
  font-size: 0.8rem;
  color: #888;
}
.breadcrumb .container a {
  color: #0072b1;
  text-decoration: none;
}
.breadcrumb .container a:hover {
  text-decoration: underline;
}

/* ── 「または」divider ── */
.wc-block-components-checkout-step .wc-block-components-express-payment__title,
.wp-block-woocommerce-checkout-express-payment-block + div {
  position: relative;
}


/* === MRC 余白・装飾リファイン v2 === */
/* 空のエクスプレス決済枠と「または」区切りを非表示（テスト・未設定時のガタつき防止） */
.wc-block-cart__payment-options,
.wp-block-woocommerce-checkout-express-payment-block:empty,
.wc-block-components-express-payment:empty,
.wc-block-components-express-payment__content:empty {
  display: none !important;
}
/* カート・チェックアウト：枠内の余白を確保して見やすく */
.wc-block-cart .wc-block-components-sidebar,
.wc-block-checkout__sidebar {
  padding: 24px !important;
  border-radius: 12px;
}
.wc-block-components-totals-item {
  padding: 6px 0 !important;
}
.wc-block-cart-items td, .wc-block-cart-items th {
  padding: 16px 12px !important;
}
/* チェックアウト各ステップに余白 */
.wc-block-checkout__form .wc-block-components-checkout-step {
  margin-bottom: 28px;
  padding-bottom: 8px;
}
.wc-block-components-text-input input, .wc-block-components-text-input textarea {
  padding: 12px 14px !important;
}
/* 商品詳細タブの余白調整 */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 4px 0 0;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding-top: 16px;
}

/* checkout express empty hide v2b */
.wc-block-checkout__form .wc-block-components-express-payment,
.wc-block-checkout__form .wc-block-components-express-payment-continue-rule {
  display: none !important;
}

/* order summary item readability v2c */
.wc-block-components-order-summary-item {
  gap: 10px;
}
.wc-block-components-order-summary-item__image {
  width: 40px !important;
  flex: 0 0 40px;
}
.wc-block-components-order-summary-item__description {
  word-break: normal;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
.wc-block-components-order-summary-item__total-price {
  white-space: nowrap;
}


/* === レンタル期間 行揃え v4 === */
.woocommerce div.product form.cart .variations {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  margin: 0;
  border: 0;
}
.woocommerce div.product form.cart .variations tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce div.product form.cart .variations tr {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
  width: 100%;
  gap: 0;
}
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  display: flex !important;
  align-items: stretch !important;
  border: 0;
  padding: 0;
}
.woocommerce div.product form.cart .variations .label {
  flex: 0 0 auto !important;
  margin-right: 12px;
  align-items: flex-start !important;
  justify-content: flex-start;
  padding-top: 0;
}
.woocommerce div.product form.cart .variations .label label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  margin: 0;
  background: #e8f4fb;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.woocommerce div.product form.cart .variations .value {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  gap: 4px;
}
.woocommerce div.product form.cart .variations .value select {
  height: 48px;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box;
  display: block !important;
  flex-shrink: 0;
}
.woocommerce div.product form.cart .variations .value .reset_variations {
  font-size: 0.78rem;
  margin: 0;
  line-height: 1;
}


/* ===== MRC GLOBAL REFINEMENT v5 ===== */
/* 全商品カード・ショップ・関連商品・詳細・カート・決済の余白・罫線・折り返し統一 */

/* ── 商品カード共通（ショップ・関連商品・カテゴリ） ── */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  margin-bottom: 28px !important;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a img {
  display: block;
  width: 100%;
}
/* 商品カード画像：正方形固定比率 */
.woocommerce ul.products li.product a img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
/* 商品カード本文エリア */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 0.92rem !important;
  font-weight: 700;
  line-height: 1.45;
  padding: 10px 12px 4px !important;
  margin: 0 !important;
  /* 2行で折り返し、均等高さ */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  word-break: break-all;
  overflow-wrap: break-word;
}
.woocommerce ul.products li.product .price {
  padding: 4px 12px 8px !important;
  font-size: 0.88rem !important;
  color: #0070c0;
  font-weight: 700;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  margin: 0 12px 14px !important;
  padding: 10px 8px !important;
  font-size: 0.82rem !important;
  text-align: center;
  border-radius: 6px;
  white-space: normal;
  word-break: keep-all;
}

/* ── ショップグリッド：均等4列→2列（レスポンシブ） ── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4,1fr) !important;
  gap: 20px !important;
  float: none !important;
  width: 100% !important;
}
.woocommerce ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 4px 16px rgba(0,112,192,0.13);
}
@media (max-width: 900px){
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px){
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* ── 関連商品セクション ── */
.woocommerce div.product .related.products {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #e8edf2;
}
.woocommerce div.product .related.products h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #0070c0;
  line-height: 1.3;
}
/* 関連商品グリッド：3列 */
.woocommerce div.product .related.products ul.products {
  grid-template-columns: repeat(3,1fr) !important;
}
@media (max-width: 768px){
  .woocommerce div.product .related.products ul.products {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

/* ── 商品詳細ページ全体余白 ── */
.single-product .entry-summary {
  padding: 0 4px;
}
/* バッジとprice間の余白 */
.mrc-rental-badge {
  margin-bottom: 12px !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin-bottom: 20px !important;
  padding: 0;
}
/* 商品詳細shortdesc（青線引用） */
.woocommerce div.product .woocommerce-product-details__short-description {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-left: 3px solid #0070c0;
  background: #f8fbff;
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
/* カート行（数量＋ボタン）の余白 */
.woocommerce div.product form.cart {
  margin-top: 4px;
}
.woocommerce div.product form.cart .qty {
  height: 48px;
  padding: 0 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #cdd6de;
  min-width: 64px;
  max-width: 80px;
}
/* カートボタン余白 */
.woocommerce div.product form.cart button[type=submit] {
  border-radius: 8px;
  padding: 0 24px;
  height: 48px;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
}
/* 注意事項ボックス余白 */
.mrc-cart-notes {
  margin-top: 16px !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
}
.mrc-cart-notes li {
  padding: 3px 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

/* ── 商品詳細タブ内余白 ── */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 0 2px;
  border-bottom: 2px solid #e8edf2;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 4px 0 0;
  padding: 0;
  border: 1px solid #e8edf2;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #444;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: #0070c0;
  background: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #0070c0;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 20px 16px 8px;
  border: 1px solid #e8edf2;
  border-top: none;
  border-radius: 0 6px 6px 6px;
  background: #fff;
}
/* 詳細情報テーブル内余白 */
.woocommerce div.product .woocommerce-tabs .panel table.woocommerce-product-attributes td,
.woocommerce div.product .woocommerce-tabs .panel table.woocommerce-product-attributes th {
  padding: 10px 14px !important;
  border: 1px solid #e8edf2 !important;
  font-size: 0.9rem;
  line-height: 1.6;
  vertical-align: middle;
}

/* ── 商品メタ（カテゴリ・SKU）余白 ── */
.woocommerce div.product .product_meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eef1f4;
  font-size: 0.83rem;
  color: #888;
  line-height: 2;
}

/* ── カートブロック余白強化 ── */
.wc-block-cart .wc-block-cart-items__row td {
  padding: 14px 12px !important;
  vertical-align: middle;
}
.wc-block-cart .wc-block-cart-items__header th {
  padding: 10px 12px !important;
  font-size: 0.85rem;
  color: #666;
  border-bottom: 2px solid #e8edf2 !important;
}
.wc-block-cart__product-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-all;
}
.wc-block-components-product-metadata__description {
  margin-top: 4px;
  font-size: 0.82rem;
  color: #0070c0;
  font-weight: 600;
}
/* カート合計サイドバー余白 */
.wc-block-cart__sidebar .wc-block-components-totals-footer-item {
  padding: 12px 0 !important;
  border-top: 2px solid #0070c0 !important;
  margin-top: 8px !important;
}
.wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-cart__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #0070c0 !important;
}

/* ── チェックアウトフォーム余白 ── */
.wc-block-checkout__form .wc-block-components-checkout-step {
  padding: 20px 20px 16px !important;
  margin-bottom: 16px !important;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  background: #fff;
}
.wc-block-checkout__form .wc-block-components-checkout-step__heading {
  font-size: 1rem !important;
  font-weight: 800;
  margin-bottom: 14px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8edf2;
  color: #1a1a1a;
}
.wc-block-components-text-input {
  margin-bottom: 12px !important;
}
.wc-block-components-text-input input {
  padding: 13px 14px !important;
  border-radius: 8px !important;
  border: 1.5px solid #cdd6de !important;
  font-size: 0.95rem;
  line-height: 1.5;
}
.wc-block-components-text-input input:focus {
  border-color: #0070c0 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,112,192,0.12) !important;
}

/* ── チェックアウト注文サマリーカード ── */
.wc-block-checkout__sidebar .wc-block-components-sidebar {
  padding: 20px !important;
  border-radius: 12px !important;
  border: 1px solid #e8edf2;
}
.wc-block-checkout__sidebar .wc-block-components-order-summary-item {
  padding: 10px 0 !important;
  border-bottom: 1px solid #f0f3f6;
  gap: 10px !important;
  align-items: flex-start !important;
}
.wc-block-checkout__sidebar .wc-block-components-order-summary-item:last-child {
  border-bottom: none;
}
.wc-block-components-order-summary-item__description {
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.wc-block-components-order-summary-item__individual-prices {
  font-size: 0.82rem;
  color: #888;
  margin-top: 2px;
}
/* 注文サマリー合計行 */
.wc-block-components-totals-item {
  padding: 8px 0 !important;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f3f6;
}
.wc-block-components-totals-item:last-child {
  border-bottom: none;
}
.wc-block-components-totals-coupon .wc-block-components-panel__button {
  padding: 10px 0 !important;
  font-size: 0.88rem;
}

/* ── パンくずリスト余白 ── */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.82rem;
  color: #888;
  padding: 8px 0 16px;
  margin: 0;
}
.woocommerce .woocommerce-breadcrumb a {
  color: #0070c0;
}

/* ── ページネーション余白 ── */
.woocommerce nav.woocommerce-pagination ul {
  margin: 32px 0 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 8px 14px !important;
  border-radius: 6px;
  margin: 0 2px;
  font-size: 0.9rem;
}

/* ── テキスト自動折り返し全体適用 ── */
.woocommerce *,
.wc-block-cart *,
.wc-block-checkout * {
  overflow-wrap: break-word;
  word-break: break-word;
}
/* ただし数値・価格は折り返さない */
.woocommerce .price,
.wc-block-components-totals-item__value,
.wc-block-components-order-summary-item__total-price {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* ── チェックリストはみ出し修正 v6 ── */
.woocommerce div.product form.cart .single_variation_wrap,
.woocommerce div.product .single_variation_wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.woocommerce div.product .woocommerce-variation-add-to-cart {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}
.woocommerce div.product .mrc-product-notes {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  flex: none !important;
}


/* ── 関連商品グリッド 3列 特異度強化 v7 ── */
body .woocommerce div.product .related.products ul.products,
body.woocommerce div.product .related.products ul.products,
.woocommerce-page div.product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}
/* ショップページ・アーカイブは4列維持 */
.woocommerce .woocommerce-page ul.products:not(.related ul),
.archive ul.products,
body:not(.single-product) ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
}
/* 関連商品カードの高さ揃え */
.related.products ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
}
.related.products ul.products li.product .woocommerce-loop-product__title {
  flex: 1 0 auto;
}


/* ── 関連商品 clear:both 無効化（グリッドレイアウト対応）v7b ── */
.related.products ul.products li.product,
.related.products ul.products li.first,
.related.products ul.products li.last {
  clear: none !important;
  float: none !important;
}
/* ショップページも同様に対応 */
.woocommerce ul.products li.product,
.woocommerce ul.products li.first,
.woocommerce ul.products li.last {
  clear: none !important;
  float: none !important;
}


/* ── 関連商品 3列完全修正 v7d ── */
/* columns-Xクラスによる width指定を無効化 */
.related.products ul.products li.product {
  width: auto !important;
  clear: none !important;
  float: none !important;
  grid-column-start: auto !important;
  grid-row-start: auto !important;
}
/* ulに3列グリッドを明示 + justify-items:stretch */
.related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}
/* ショップ4列も同様にwidth:autoでfloatクリア */
.woocommerce ul.products li.product {
  width: auto !important;
  clear: none !important;
  float: none !important;
}


/* ── 関連商品::before/::afterグリッド干渉修正 v7e ── */
/* WCのclearfix(::before display:table)がgridアイテムとして占有するのを防ぐ */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.related.products ul.products::before,
.related.products ul.products::after {
  display: none !important;
  content: none !important;
}


/* ── 関連記事 画像なしプレースホルダー対応 v8 ── */
/* no-imageの場合はグラデーションで代替 */
.blog-related-img img[src*="no-image"],
.blog-related-img img:not([src]),
.blog-related-img img[src=""] {
  display: none !important;
}
.blog-related-img:has(img[src*="no-image"])::after,
.blog-related-img:has(img:not([src]))::after,
.blog-related-img:has(img[src=""])::after {
  content: '海・ビーチ・レンタル';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0072b1 0%, #00b4d8 50%, #90e0ef 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0; left: 0;
}
/* imgがno-imageの場合のフォールバック（:hasが非対応ブラウザ向け） */
.blog-related-img {
  position: relative;
  background: linear-gradient(135deg, #0072b1 0%, #00b4d8 50%, #90e0ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-related-img img {
  position: relative;
  z-index: 1;
}
/* no-imageのimgはvisibility:hiddenに（スペース確保しつつ非表示） */
.blog-related-img img[src*="no-image"] {
  visibility: hidden !important;
  opacity: 0 !important;
}
/* グラデーション背景の上にテキストオーバーレイ */
.blog-related-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0072b1 0%, #00b4d8 60%, #48cae4 100%);
  z-index: 0;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
	border-radius: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	margin: 0 !important;
}

.woocommerce div.product form.cart div.quantity {
	margin-bottom: 16px;
}

.woocommerce div.product div.images img {
	width: 100% !important;
	height: auto !important;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px !important;
	}
	.woocommerce div.product form.cart button[type=submit] {
		padding: 0 10px;
	}
	.woocommerce div.product form.cart .variations .label {
		margin-right: 0;
	}
}
