/* ===================================
   CSS Variables & Reset
=================================== */
:root {
  --primary: #ed6c00;
  --primary-dark: #c45a00;
  --primary-light: #f5a050;
  --accent: #ed6c00;
  --accent-green: #62d847;
  --accent-green-dark: #4ab835;
  --bg: #f7f7f7;
  --bg-white: #ffffff;
  --bg-light: #fdfdfd;
  --text: #333333;
  --text-light: #555555;
  --text-muted: #999999;
  --border: #dedede;
  --border-light: #efefef;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 40px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 36px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
  --font: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --max-w: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }
ul { list-style: none; }

/* ===================================
   Typography
=================================== */
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.section-title-en {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.9;
}

/* ===================================
   Layout Utilities
=================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 80px 0; }

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

.section-header .divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237,108,0,0.4);
  opacity: 1;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #ed6c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237,108,0,0.4);
  opacity: 1;
}

.btn-green {
  background: var(--accent-green);
  color: #fff;
}

.btn-green:hover {
  background: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(98,216,71,0.4);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  opacity: 1;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  background: #fef3e8;
  opacity: 1;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.05rem;
}

/* Arrow chevron */
.btn .chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform var(--transition);
}

.btn:hover .chevron {
  transform: rotate(45deg) translate(2px, -2px);
}

/* ===================================
   Header / Navigation
=================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,253,253,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

#header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover { opacity: 1; color: var(--primary-dark); }

.nav-contact-btn {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 0.82rem !important;
}

.nav-contact-btn::after { display: none !important; }
.nav-contact-btn:hover { background: #c45a00 !important; opacity: 1 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(253,253,253,0.98);
  backdrop-filter: blur(8px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

/* Fixed side banner (desktop only) */
.side-banner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-banner-item {
  writing-mode: vertical-rl;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 16px 10px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.side-banner-item:nth-child(2) { background: var(--accent-green); }
.side-banner-item:nth-child(3) { background: #333; }

.side-banner-item:hover { opacity: 0.85; }

/* ===================================
   Hero (Static)
=================================== */
#hero {
  position: relative;
  height: calc(100vh - 70px);
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-bg img.hero-img-1 {
  animation: heroFade1 16s infinite;
}

.hero-bg img.hero-img-2 {
  opacity: 0;
  animation: heroFade2 16s infinite;
}

@keyframes heroFade1 {
  0%, 35% { opacity: 1; }
  45%, 85% { opacity: 0; }
  95%, 100% { opacity: 1; }
}

@keyframes heroFade2 {
  0%, 35% { opacity: 0; }
  45%, 85% { opacity: 1; }
  95%, 100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-text {
  color: #fff;
  max-width: 580px;
  position: absolute;
}

.hero-text-1 {
  animation: heroText1 16s infinite;
}

.hero-text-2 {
  opacity: 0;
  animation: heroText2 16s infinite;
}

@keyframes heroText1 {
  0%, 35%   { opacity: 1; }
  45%, 85%  { opacity: 0; }
  95%, 100% { opacity: 1; }
}

@keyframes heroText2 {
  0%, 35%   { opacity: 0; }
  45%, 85%  { opacity: 1; }
  95%, 100% { opacity: 0; }
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  letter-spacing: 0.03em;
}

.hero-desc {
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  line-height: 1.9;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-line-hero {
  background: #06C755;
  color: #fff;
  border: none;
}

.btn-line-hero:hover {
  background: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.4);
  opacity: 1;
}

/* ===================================
   News Ticker (below hero)
=================================== */
.news-ticker {
  background: var(--primary);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.news-ticker-inner {
  display: flex;
  align-items: stretch;
  height: 48px;
}

.news-ticker-label {
  background: var(--primary-dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-ticker-track {
  display: flex;
  align-items: center;
  padding: 0 24px;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.news-ticker-text {
  font-size: 0.85rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ===================================
   Campaign Section
=================================== */
#campaign {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.campaign-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.campaign-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 340px;
}

.campaign-card-image {
  flex: 1;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.campaign-card.featured .campaign-card-image {
  min-height: 340px;
  flex: 1.2;
}

.campaign-bg-1 { background: linear-gradient(135deg, #ed6c00, #f5a050, #c45a00); }
.campaign-bg-2 { background: linear-gradient(135deg, #f08030, #ed6c00); }
.campaign-bg-3 { background: linear-gradient(135deg, #ed6c00, #62d847); }

.campaign-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
}

.campaign-card-body {
  background: var(--bg-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.campaign-card.featured .campaign-card-body {
  flex: 0.8;
  padding: 40px 36px;
  justify-content: center;
  gap: 16px;
}

.campaign-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.campaign-badge.green { background: var(--accent-green); }
.campaign-badge.blue { background: var(--accent); }

.campaign-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.campaign-card.featured .campaign-card-title { font-size: 1.6rem; }

.campaign-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.campaign-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.campaign-period::before {
  content: '📅';
  font-size: 0.85rem;
}

/* ===================================
   Philosophy / Concept Section
=================================== */
#philosophy {
  background: var(--bg);
  padding: 90px 0;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 760px;
  margin: 0 auto;
  align-items: center;
}

.philosophy-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.philosophy-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.philosophy-lead {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--text);
  margin: 20px 0 24px;
}

.philosophy-lead em {
  color: var(--primary);
  font-style: normal;
}

.philosophy-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 14px;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.value-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.value-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-label { font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.value-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.philosophy-image-box {
  position: relative;
}

.philosophy-image-main {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, #ed6c00 0%, #f5a050 50%, #62d847 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.philosophy-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-stat-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  min-width: 120px;
}

.philosophy-stat-card.s1 { bottom: -16px; left: -20px; }
.philosophy-stat-card.s2 { top: -16px; right: -16px; }

.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-unit { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

/* ===================================
   Store / Access Section
=================================== */
#store {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.store-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.store-card-header {
  background: var(--primary);
  color: #fff;
  padding: 24px 28px;
}

.store-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.store-card-address {
  font-size: 0.82rem;
  opacity: 0.8;
}

.store-card-body { padding: 28px; }

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr { border-bottom: 1px solid var(--border-light); }
.info-table tr:last-child { border-bottom: none; }

.info-table th {
  width: 100px;
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  padding-right: 12px;
}

.info-table td {
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

.badge-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}

.badge-open { background: #e8f5e9; color: #2e7d32; }
.badge-closed { background: #fce4ec; color: #c62828; }

.map-box {
  background: linear-gradient(135deg, #fef3e8 0%, #f5d5b0 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  position: relative;
}

.map-box-icon { font-size: 3.5rem; }
.map-box-text { font-size: 1rem; font-weight: 700; }
.map-box-sub { font-size: 0.82rem; color: var(--text-muted); text-align: center; line-height: 1.6; }

.map-btn {
  margin-top: 8px;
}

/* ===================================
   Recruit (TOP) Banner
=================================== */
#recruit-top {
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#recruit-top::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

#recruit-top::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(98,216,71,0.1);
  pointer-events: none;
}

.recruit-top-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.recruit-top-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.recruit-top-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.recruit-top-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 520px;
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.recruit-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.recruit-top-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding: 32px 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(4px);
}

.recruit-top-cta-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ===================================
   Footer
=================================== */
#footer {
  background: #222;
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}

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

.footer-logo-main { font-size: 1.3rem; font-weight: 800; color: #fff; }
.footer-logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.45); letter-spacing: 0.15em; text-transform: uppercase; }

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.footer-links a::before { content: '›'; color: var(--primary); font-size: 1rem; }

.footer-links a:hover { color: #fff; opacity: 1; }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===================================
   Page Hero (sub pages)
=================================== */
.page-hero {
  background: linear-gradient(130deg, var(--primary-dark) 0%, var(--primary) 50%, #f08030 100%);
  color: #fff;
  padding: 110px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }

.page-hero-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; letter-spacing: 0.04em; }
.page-hero-en { font-size: 0.8rem; letter-spacing: 0.28em; color: rgba(255,255,255,0.65); text-transform: uppercase; margin-top: 10px; }

/* ===================================
   Company Page
=================================== */
.overview-section { background: var(--bg-white); padding: 80px 0; }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 60px;
}

.overview-image {
  height: 380px;
  background: linear-gradient(135deg, #ed6c00, #f5a050);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.overview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' fill-opacity='0.12'/%3E%3C/svg%3E");
}

.overview-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.45;
}

.overview-text p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 14px;
}

/* Company table */
.company-table-section { background: var(--bg); padding: 80px 0; }

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.company-table tr { border-bottom: 1px solid var(--border-light); }
.company-table tr:last-child { border-bottom: none; }

.company-table th {
  width: 220px;
  padding: 20px 28px;
  background: var(--primary);
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: left;
  vertical-align: top;
}

.company-table td {
  padding: 20px 28px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  vertical-align: top;
}

/* History / Timeline */
.history-section { padding: 80px 0; background: var(--bg-white); }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 40px;
  padding: 22px 0;
  position: relative;
}

.timeline-year {
  width: 120px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  padding-top: 2px;
  padding-right: 20px;
}

.timeline-dot {
  position: absolute;
  left: 113px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-body { padding-left: 30px; }

.timeline-event {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ===================================
   Recruit Page
=================================== */
.recruit-intro-section { padding: 70px 0; background: var(--bg-white); }

.recruit-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.recruit-intro-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.recruit-intro-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-light);
}

/* Appeal points */
.appeal-section { padding: 80px 0; background: var(--bg); }

.appeal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.appeal-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.appeal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.appeal-card:nth-child(2)::before { background: var(--accent); }
.appeal-card:nth-child(3)::before { background: var(--accent-green); }

.appeal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.appeal-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 12px;
  right: 16px;
}

.appeal-icon { font-size: 2.4rem; margin-bottom: 14px; }
.appeal-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.appeal-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.8; }

/* Job Listings */
.jobs-section { padding: 80px 0; background: var(--bg-white); }

.job-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.job-card:hover { box-shadow: var(--shadow-hover); }

.job-header {
  background: var(--primary);
  color: #fff;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-title { font-size: 0.95rem; font-weight: 600; opacity: 0.9; }

.job-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
}

.job-body { padding: 28px 32px; }

.job-table { width: 100%; border-collapse: collapse; }
.job-table tr { border-bottom: 1px solid var(--border-light); }
.job-table tr:last-child { border-bottom: none; }

.job-table th {
  width: 140px;
  padding: 12px 0;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.82rem;
  text-align: left;
  vertical-align: top;
  padding-right: 12px;
}

.job-table td {
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
}

.job-footer {
  padding: 16px 32px 28px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--border-light);
}

/* Application form */
.form-section { padding: 80px 0; background: var(--bg); }

.form-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-label .req {
  background: #e53935;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-label .opt {
  background: var(--border);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237,108,0,0.15);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; }

.privacy-block {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.privacy-block input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.privacy-block label {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  cursor: pointer;
}

.privacy-block a { color: var(--primary); text-decoration: underline; }

.form-submit { text-align: center; }

/* ===================================
   Animations
=================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ===================================
   Store Row (reference: ダスキン播磨スタイル)
=================================== */
.store-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.store-row:last-of-type {
  border-bottom: none;
  margin-top: 0 !important;
}

.store-row-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.store-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* プレースホルダー（写真差し替え前） */
.store-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #fef0e0;
  min-height: 220px;
  position: relative;
}

.store-photo-placeholder::after {
  content: '店舗写真';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.1em;
}

.store-row-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.store-row-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}

.store-row-details {
  margin-bottom: 14px;
}

.store-row-details p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.9;
  margin: 0;
}

.store-row-details a {
  color: var(--text);
  text-decoration: none;
}

.store-row-details a:hover {
  color: var(--primary);
  opacity: 1;
}

.store-row-address {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.store-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 24px;
  border: 1px solid #ccc;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  text-decoration: none;
}

.store-map-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  opacity: 1;
}

/* ===================================
   Campaign LINE Banner
=================================== */
.campaign-line-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  border: 1.5px solid #d0d0d0;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  text-decoration: none;
  transition: all var(--transition);
  flex-wrap: wrap;
}

.campaign-line-banner:hover {
  border-color: #06C755;
  box-shadow: 0 4px 20px rgba(6,199,85,0.12);
  opacity: 1;
}

.campaign-line-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.campaign-line-banner-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.campaign-line-banner-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.campaign-line-banner-btn {
  flex-shrink: 0;
  padding: 12px 28px;
  background: #06C755;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .campaign-line-banner { padding: 20px 24px; }
  .campaign-line-banner-btn { width: 100%; text-align: center; }
}

/* ===================================
   Philosophy image placeholder
=================================== */
.philosophy-img-placeholder {
  width: 100%;
  height: 460px;
  background: #fef0e0;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ===================================
   Recruit top (simple)
=================================== */
.recruit-top-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.recruit-top-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .recruit-top-simple { flex-direction: column; text-align: center; }
  .recruit-top-btns { width: 100%; }
  .recruit-top-btns .btn { width: 100%; justify-content: center; }
}

/* ===================================
   Store Brand Label
=================================== */
.store-brand-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 8px;
}

/* Store photo placeholder with label */
.store-photo-placeholder::after {
  content: attr(data-label);
}

/* ===================================
   LINE CTA Section
=================================== */
.line-cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.line-cta-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-cta-content {
  flex: 1;
  min-width: 240px;
}

.line-cta-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.line-cta-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.line-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: #fff;
  color: #06C755;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.line-cta-btn:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 1;
}

@media (max-width: 768px) {
  .line-cta-inner { flex-direction: column; text-align: center; gap: 20px; }
  .line-cta-content { min-width: unset; }
}

/* ===================================
   Footer Simple
=================================== */
#footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
}

.footer-simple-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-simple-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-simple-left .footer-logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.footer-simple-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.footer-simple-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-simple-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-simple-nav a:hover {
  color: #fff;
  opacity: 1;
}

.footer-simple-bottom {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===================================
   Floating LINE Button
=================================== */
.float-line-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 28px rgba(6,199,85,0.5);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.float-line-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.float-line-btn:hover {
  background: #05b34c;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(6,199,85,0.6);
  opacity: 1;
}

/* モバイルはアイコンのみ表示 */
@media (max-width: 600px) {
  .float-line-btn span { display: none; }
  .float-line-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    bottom: 20px;
    right: 16px;
  }
  .float-line-btn svg { width: 30px; height: 30px; }
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 1024px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-values { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .side-banner { display: none; }
  .recruit-top-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .recruit-tags { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .header-inner { padding: 0 20px; height: 60px; }
  #header ~ * { margin-top: 0; }
  #hero { margin-top: 60px; height: calc(100svh - 60px); min-height: 420px; }
  .mobile-menu { top: 60px; }
  .hero-content { padding: 0 6%; }
  .hero-btns { flex-direction: column; gap: 10px; }

  nav { display: none; }
  .hamburger { display: flex; }

  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-card.featured { flex-direction: column; min-height: auto; }
  .campaign-card.featured .campaign-card-image { min-height: 200px; }

  .store-grid { grid-template-columns: 1fr; }
  .map-box { min-height: 240px; }

  .store-row { grid-template-columns: 1fr; gap: 24px; }
  .store-photo-placeholder { min-height: 200px; }

  .appeal-grid { grid-template-columns: 1fr; }

  .overview-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .form-container { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .company-table th { width: 120px; padding: 16px 20px; }
  .company-table td { padding: 16px 20px; }

  .timeline::before { left: 96px; }
  .timeline-year { width: 96px; font-size: 0.78rem; padding-right: 18px; }
  .timeline-dot { left: 89px; }

  .hero-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .philosophy-values { grid-template-columns: 1fr; }
  .job-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .job-body, .job-footer { padding: 20px; }
  .info-table th { width: 80px; }
}
