/* ============================================================
   style.css — 株式会社デライト トップページ
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --cta:        #f39800;
  --accent:     #E84510;
  --sub-accent: #2B5EE8;
  --bg-base:    #F8F9FB;
  --bg-section: #E6EEFF;
  --border:     #999999;
  --text-body:  #3D3D3D;
  --text-dark:  #1A1A1A;
  --text-light: #888888;
  --white:      #FFFFFF;
  --sidebar-w:  110px;
  --mob-h:      60px;
  /* Colorful palette */
  --c-blue:   #2B6EF5;
  --c-green:  #08B865;
  --c-orange: #F59000;
  --c-pink:   #D81890;
  --c-purple: #6E30FF;
  --c-teal:   #00AECC;
  --c-red:    #E82020;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-body);
  background: var(--white);
}

/* ============================================================
   Mobile Header — hidden on desktop
   ============================================================ */
.mob-header { display: none; }

/* ============================================================
   Mobile Drawer — always in DOM, hidden via transform on mobile
   ============================================================ */
.mob-drawer         { display: none; }
.mob-drawer__overlay{ display: none; }

/* ============================================================
   Sidebar (desktop)
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 32px;
}

.sidebar__logo img { width: 94px; }

.sidebar__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  margin-top: 35px;
  margin-bottom: 50px;
}

.sidebar__nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 110px;
  padding: 14px 0;
  overflow: hidden;
  transition: color 0.25s;
}

/* スライドイン塗りつぶし用の擬似要素 */
.sidebar__nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.sidebar__nav-item:hover::before { transform: scaleX(1); }

/* アイコン・テキストを z-index で前面に */
.sidebar__nav-item svg,
.sidebar__nav-item span { position: relative; z-index: 1; }

.sidebar__nav-item svg {
  width: 28px; height: 28px; flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s;
}
.sidebar__nav-item:hover svg { transform: scale(1.3); }

.sidebar__nav-item span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.25s, letter-spacing 0.25s;
}
.sidebar__nav-item:hover span { letter-spacing: 0.08em; }

/* ── 事業紹介 ── */
.sidebar__nav-item:nth-child(1)             { color: #D81020; border-left: 5px solid #D81020; }
.sidebar__nav-item:nth-child(1) span        { color: #D81020; }
.sidebar__nav-item:nth-child(1)::before     { background: #D81020; }
.sidebar__nav-item:nth-child(1):hover       { color: #ffffff; border-left-color: #D81020; }
.sidebar__nav-item:nth-child(1):hover span  { color: #ffffff; }

/* ── お知らせ ── */
.sidebar__nav-item:nth-child(2)             { color: #08B030; border-left: 5px solid #08B030; }
.sidebar__nav-item:nth-child(2) span        { color: #08B030; }
.sidebar__nav-item:nth-child(2)::before     { background: #08B030; }
.sidebar__nav-item:nth-child(2):hover       { color: #ffffff; border-left-color: #08B030; }
.sidebar__nav-item:nth-child(2):hover span  { color: #ffffff; }

/* ── 会社情報 ── */
.sidebar__nav-item:nth-child(3)             { color: #0094D8; border-left: 5px solid #0094D8; }
.sidebar__nav-item:nth-child(3) span        { color: #0094D8; }
.sidebar__nav-item:nth-child(3)::before     { background: #0094D8; }
.sidebar__nav-item:nth-child(3):hover       { color: #ffffff; border-left-color: #0094D8; }
.sidebar__nav-item:nth-child(3):hover span  { color: #ffffff; }

/* ── 採用情報 ── */
.sidebar__nav-item:nth-child(4)             { color: #D88800; border-left: 5px solid #D88800; }
.sidebar__nav-item:nth-child(4) span        { color: #D88800; }
.sidebar__nav-item:nth-child(4)::before     { background: #D88800; }
.sidebar__nav-item:nth-child(4):hover       { color: #ffffff; border-left-color: #D88800; }
.sidebar__nav-item:nth-child(4):hover span  { color: #ffffff; }

/* ============================================================
   Main Content
   ============================================================ */
.main { margin-left: var(--sidebar-w); }

/* ===== Common section ===== */
.section-label {
  font-size: 14px;
  color: #1A1A1A;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 700;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.section-rule {
  width: 80px;
  height: 6px;
  background: var(--cta);
  margin: 0 auto 56px;
  border: none;
  border-radius: 3px;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 706px;
  overflow: hidden;
  background: #d8d4ce;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Scroll indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 490;
}
@media (max-width: 768px) {
  .hero__scroll { bottom: 77px; }
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(0,0,0,0.7);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 200, 0, 0.5), 0 0 20px 6px rgba(255, 180, 0, 0.25);
  animation: mouseGlow 2.4s ease-in-out infinite;
}

@keyframes mouseGlow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(255,200,0,0.5), 0 0 20px 6px rgba(255,180,0,0.25); }
  50%       { box-shadow: 0 0 14px 4px rgba(255,200,0,0.8), 0 0 32px 10px rgba(255,180,0,0.4); }
}

.hero__scroll-dot {
  width: 4px;
  height: 7px;
  background: rgba(0,0,0,0.6);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  61%  { transform: translateY(0);   opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}

.hero__scroll-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(0,0,0,0.55);
}

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy {
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 40px 32px;
}

.philosophy__top-row {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.philosophy__top-row::before {
  content: '';
  display: block;
  width: 152px;
  flex-shrink: 0;
}
.philosophy__logo {
  display: flex;
  justify-content: center;
}
.philosophy__logo img {
  width: 230px;
  height: auto;
}
.philosophy__sns {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 152px;
}
.philosophy__sns-link {
  display: block;
  width: 64px;
  height: 64px;
  transition: opacity 0.2s;
}
.philosophy__sns-link:hover { opacity: 0.75; }
.philosophy__sns-link img { width: 100%; height: 100%; object-fit: contain; display: block; }

.philosophy__title-block {
  text-align: center;
  margin-top: 32px;
}
.philosophy__title-block .section-label {
  text-align: center;
  color: #999;
  margin-bottom: 16px;
}

.philosophy__heading {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.7;
  margin: 0;
}

.philosophy__body-wrap {
  text-align: center;
  padding: 16px 0 32px;
  max-width: 720px;
  width: 100%;
}

.philosophy__body {
  font-size: 16px;
  color: #444;
  line-height: 2.2;
  text-align: center;
}

.philosophy__img-wrap {
  display: flex;
  justify-content: center;
  margin-top: -16px;
  padding-bottom: 40px;
}
.philosophy__img-wrap img {
  display: block;
  width: 70%;
  height: auto;
}

/* ============================================================
   Business Cards
   ============================================================ */
.business {
  background: var(--white);
  padding: 80px 0;
}

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Colorful top border per regular card */
.cards-row--4 .card:nth-child(1) { border-top: 6px solid var(--c-blue); }
.cards-row--4 .card:nth-child(2) { border-top: 6px solid var(--c-green); }
.cards-row--4 .card:nth-child(3) { border-top: 6px solid var(--c-orange); }
.cards-row--4 .card:nth-child(4) { border-top: 6px solid var(--c-purple); }

/* ── Featured cards (共通) ── */
.card--featured {
  flex-direction: column;
  border-top: none;
  position: relative;
  overflow: hidden;
  padding-top: 5px;
}
.card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 8px 8px 0 0;
}
.card--featured .card__img {
  width: 100%;
  height: 260px;
  min-height: auto;
  flex-shrink: 0;
  border-radius: 0;
  object-fit: contain;
  opacity: 1.0;
  padding: 30px 30px 0px;
  box-sizing: border-box;
}
.card--featured .card__body { padding: 22px 28px; }
.card--featured .card__title { font-size: 18px; }

/* ── Featured pink (介護用化粧水) ── */
.card--featured-pink {
  border: 2px solid var(--c-pink);
  background: var(--white);
}
.card--featured-pink::before {
  background: var(--c-pink);
}
.card--featured-pink .card__icon { background: #FAC8E8; color: var(--c-pink); }
.card--featured-pink .card__btn { background: #FAC8E8; color: var(--c-pink); }
.card--featured-pink .card__btn:hover { background: var(--c-pink); color: var(--white); }
.card--featured-pink .card__badge {
  background: var(--c-pink);
  box-shadow: 0 2px 8px rgba(216,24,144,0.45);
}

/* ── Featured lime (和リメイク) ── */
.card--featured-lime {
  border: 2px solid #7EC800;
  background: var(--white);
}
.card--featured-lime::before {
  background: #7EC800;
}
.card--featured-lime .card__icon { background: #e8ffd0; color: #5A9400; }
.card--featured-lime .card__btn { background: #e8ffd0; color: #5A9400; }
.card--featured-lime .card__btn:hover { background: #7EC800; color: var(--white); }
.card--featured-lime .card__badge {
  background: #7EC800;
  box-shadow: 0 2px 8px rgba(100,190,0,0.45);
}

/* PICKUP badge (共通) */
.card__badge {
  position: absolute;
  top: 8px;
  left: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 16px;
  border-radius: 20px;
  z-index: 2;
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1.0;
  padding: 20px 20px 0px 20px;
  box-sizing: border-box;
}

.card__body {
  padding: 10px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-section);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub-accent);
}
.card__icon svg { width: 22px; height: 22px; }

/* Colorful card icons */
.cards-row--4 .card:nth-child(1) .card__icon { background: #D4E4FF; color: var(--c-blue); }
.cards-row--4 .card:nth-child(2) .card__icon { background: #C4F0DC; color: var(--c-green); }
.cards-row--4 .card:nth-child(3) .card__icon { background: #FFE8A0; color: var(--c-orange); }
.cards-row--4 .card:nth-child(4) .card__icon { background: #E0CCFF; color: var(--c-purple); }

.card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}
.cards-row--4 .card__title {
  font-size: 15px;
}

.card__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

.card__list { margin-bottom: 20px; flex: 1; }

.card__list li {
  font-size: 14px;
  color: var(--text-body);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.6;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2308B865' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}


.card__footer { display: flex; justify-content: flex-end; }

.card__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-section);
  color: var(--sub-accent);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.card__btn:hover { background: var(--sub-accent); color: var(--white); }

/* Colorful card buttons */
.cards-row--4 .card:nth-child(1) .card__btn { background: #D4E4FF; color: var(--c-blue); }
.cards-row--4 .card:nth-child(1) .card__btn:hover { background: var(--c-blue); color: var(--white); }
.cards-row--4 .card:nth-child(2) .card__btn { background: #C4F0DC; color: var(--c-green); }
.cards-row--4 .card:nth-child(2) .card__btn:hover { background: var(--c-green); color: var(--white); }
.cards-row--4 .card:nth-child(3) .card__btn { background: #FFE8A0; color: var(--c-orange); }
.cards-row--4 .card:nth-child(3) .card__btn:hover { background: var(--c-orange); color: var(--white); }
.cards-row--4 .card:nth-child(4) .card__btn { background: #E0CCFF; color: var(--c-purple); }
.cards-row--4 .card:nth-child(4) .card__btn:hover { background: var(--c-purple); color: var(--white); }

/* ============================================================
   News
   ============================================================ */
.news {
  background: #FFEDD8;
  padding: 80px 0;
}

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

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 94, 232, 0.35);
  border-color: var(--sub-accent);
}

.news-card__img-wrap {
  overflow: hidden;
}

.news-card__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.35s ease;
}
.news-card:hover .news-card__img {
  transform: scale(1.05);
}

.news-card__body { padding: 20px; }

.news-tag {
  display: inline-block;
  font-size: 14px;
  color: var(--c-teal);
  border: 1px solid var(--c-teal);
  border-radius: 2px;
  padding: 2px 8px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.news-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.news-card:hover .news-card__title { color: var(--sub-accent); }

.news-card__date {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-card__date::after {
  content: '→';
  font-size: 14px;
  color: var(--sub-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.news-card:hover .news-card__date::after {
  opacity: 1;
  transform: translateX(0);
}

.t-center { text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 12px;
  font-size: 16px;
  border-radius: 8px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 500;
}

.btn--outline {
  border: 1px solid var(--sub-accent);
  color: var(--sub-accent);
  background: transparent;
}
.btn--outline:hover { background: var(--sub-accent); color: var(--white); }

/* ============================================================
   Info Cards (会社情報 / 採用情報)
   ============================================================ */
.info {
  background: var(--white);
  padding: 80px 0;
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Icon + Title row */
.info-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.info-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-section);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub-accent);
}
.info-card__icon svg { width: 24px; height: 24px; }

/* Colorful info card icons + top border */
.info__grid .info-card:nth-child(1) { border-top: 6px solid #08B030; }
.info__grid .info-card:nth-child(1) .info-card__icon { background: #d0f5d8; color: #08B030; }
.info__grid .info-card:nth-child(1) .info-card__btn { border-color: #08B030; color: #08B030; }
.info__grid .info-card:nth-child(1) .info-card__btn:hover { background: #08B030; color: var(--white); }
.info__grid .info-card:nth-child(2) { border-top: 6px solid #0094D8; }
.info__grid .info-card:nth-child(2) .info-card__icon { background: #c0e4f8; color: #0094D8; }
.info__grid .info-card:nth-child(2) .info-card__btn { border-color: #0094D8; color: #0094D8; }
.info__grid .info-card:nth-child(2) .info-card__btn:hover { background: #0094D8; color: var(--white); }

.info-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.info-card__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: 28px;
}

/* ============================================================
   Banners
   ============================================================ */
.banners {
  background: var(--white);
  padding: 60px 0;
}

.banners__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}

.banners__head {
  text-align: center;
  margin-bottom: 40px;
}
.banners__head-img {
  display: inline-block;
  max-width: 360px;
  width: 100%;
  height: auto;
}

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

.banner-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.banner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
div.banner-item:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  cursor: default;
}

.banner-item__icon { width: 38px; height: 38px; color: var(--sub-accent); }
.banner-item__label { font-size: 14px; color: var(--text-body); }
.banner-item__img { display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto; }

/* Banner card brand colors */
.banners__grid .banner-item:nth-child(1) { border-top: 4px solid #CC1111; } /* 城東病院：赤 */
.banners__grid .banner-item:nth-child(2) { border-top: 4px solid #44AA55; } /* 城東歯科クリニック：緑 */
.banners__grid .banner-item:nth-child(3) { border-top: 4px solid #8B7050; } /* 健康堂調剤薬局：ブラウン */
.banners__grid .banner-item:nth-child(4) { border-top: 4px solid #1a3a8a; } /* Nhouse：ネイビー */
.banners__grid .banner-item:nth-child(5) { border-top: 4px solid #333333; } /* 三角屋暖：ダーク */
.banners__grid .banner-item:nth-child(6) { border-top: 4px solid #F5A000; } /* デライト：オレンジ */


/* ============================================================
   Footer
   ============================================================ */
footer {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}
footer > * {
  position: relative;
  z-index: 1;
}
.footer__bg {
  left: 50%;
  transform: translateX(-50%);
  width: 135%;
  z-index: 0;
  pointer-events: none;
}
.footer__bg img {
  width: 100%;
  display: block;
}

.footer__main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 80px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer__top { display: contents; }

.footer__brand { flex-shrink: 0; }
.footer__brand img { width: 140px; margin-bottom: 12px; }
.footer__tagline { font-size: 13px; color: var(--text-light); }

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.footer__social-link {
  display: block;
  width: 56px;
  height: 56px;
  transition: opacity 0.2s;
}
.footer__social-link:hover { opacity: 0.75; }
.footer__social-link img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Fixed Contact Box (desktop) ── */
.fixed-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #fff;
  border: 2px solid var(--cta);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 500;
}
.fixed-contact__lead {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}
.fixed-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.fixed-contact__item:last-child { margin-bottom: 0; }
.fixed-contact__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--cta);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
.fixed-contact__num {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer__bottom {
  border-top: none;
  padding: 16px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer__copy { font-size: 13px; color: var(--text-light); text-align: center; }


/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 200px;
  background: #D8E8FF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}

.page-hero__accent {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 72px;
  background: var(--cta);
  border-radius: 3px;
}

.page-hero__breadcrumb {
  position: relative;
  font-size: 13px;
  color: #7A8FA6;
  padding-left: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero__breadcrumb a { color: #7A8FA6; transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: var(--cta); }
.page-hero__breadcrumb span { opacity: 0.5; }

.page-hero__title {
  position: relative;
  font-size: 37px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  padding-left: 20px;
  line-height: 1.2;
}

.page-hero__title-en {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--cta);
  letter-spacing: 0.22em;
  padding-left: 20px;
  margin-top: 6px;
}

/* ── Page hero color variants ── */
.page-hero--recruit {
  background: url('img/sub_main_03.png') center center / cover no-repeat;
  height: 400px;
}
.page-hero--recruit .page-hero__title,
.page-hero--recruit .page-hero__title-en { color: #fff; }
.page-hero--recruit .page-hero__title { text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.page-hero--recruit .page-hero__title-en { text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.page-hero--recruit .page-hero__accent { background: #0094D8; }
.page-hero--recruit .page-hero__deco { display: none; }

.page-hero--company {
  background: url('img/sub_main_02.png') center center / cover no-repeat;
  height: 400px;
}
.page-hero--company .page-hero__title,
.page-hero--company .page-hero__title-en { color: #fff; }
.page-hero--company .page-hero__title { text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.page-hero--company .page-hero__title-en { text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.page-hero--company .page-hero__accent { background: #08B030; }
.page-hero--company .page-hero__deco { display: none; }
.page-hero__breadcrumb--top {
  padding: 14px max(80px, calc((100% - 1100px) / 2 + 80px));
  background: #fff;
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
}

.page-hero__deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 200px;
  background: rgba(29,53,87,0.05);
  border-radius: 160px 0 0 160px;
}

/* カテゴリータグ variant */
.news-tag--press {
  color: var(--c-pink);
  border-color: var(--c-pink);
}
.news-tag--recruit {
  color: var(--c-green);
  border-color: var(--c-green);
}

/* ── Sidebar active state ── */
.sidebar__nav-item--active {
  background: rgba(0,0,0,0.06);
}

/* ── Drawer active state ── */
.mob-drawer__link--active {
  background: rgba(0,0,0,0.05);
}

/* ============================================================
   Page Hero / News Page — responsive
   ============================================================ */
@media (max-width: 768px) {
  .page-hero {
    height: 148px;
    padding: 0 24px;
  }
  .page-hero__accent { left: 24px; height: 56px; }
  .page-hero__title { font-size: 26px; }
  .page-hero__breadcrumb,
  .page-hero__title,
  .page-hero__title-en { padding-left: 16px; }
  .page-hero__deco { width: 160px; }

}

/* ============================================================
   Business Detail Pages
   ============================================================ */

/* ── Features 3-column ── */
.biz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.biz-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px 36px;
}

/* Colorful biz-feature top borders */
.biz-features .biz-feature:nth-child(1) { border-top: 5px solid var(--c-green); }
.biz-features .biz-feature:nth-child(2) { border-top: 5px solid var(--c-green); }
.biz-features .biz-feature:nth-child(3) { border-top: 5px solid var(--c-green); }
.biz-feature__num {
  font-size: 39px;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 16px;
}
.biz-feature__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-section);
}
.biz-feature img { display: block; width: 100%; object-fit: cover; margin-bottom: 16px; }
.biz-feature__text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.9;
  margin: 0;
}
.biz-feature__text + .biz-feature__text { margin-top: 12px; }

/* ── Detail list ── */
.biz-detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.biz-detail-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-size: 16px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--white);
}
.biz-detail-list li:nth-child(even) {
  border-right: none;
}
.biz-detail-list li:nth-last-child(-n+2) {
  border-bottom: none;
}
.biz-detail-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Business responsive ── */
@media (max-width: 1024px) {
  .biz-features { gap: 16px; }
}
@media (max-width: 768px) {
  .biz-features { grid-template-columns: 1fr; }
  .biz-detail-list { grid-template-columns: 1fr; }
  .biz-detail-list li { border-right: none; }
  .biz-detail-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .biz-detail-list li:last-child { border-bottom: none; }
}

/* ============================================================
   Company / Recruit — shared section
   ============================================================ */
.company-section {
  padding: 72px 0 80px;
  background: var(--white);
}
.company-section--alt {
  background: var(--bg-base);
}

.section-head {
  margin-bottom: 48px;
}
.section-head__en {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 8px;
}
.section-head__ja {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}
.section-head__ja::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 100%;
  background: var(--cta);
  border-radius: 3px;
}

/* ============================================================
   法人情報ページ (company.html) 新レイアウト
   ============================================================ */

/* ── Philosophy hero ── */
.co-philosophy-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.co-philosophy-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.co-philosophy-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}
.co-philosophy-hero__heading {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
  margin-bottom: 6px;
}
.co-philosophy-hero__sub {
  font-size: 14px;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── Vision image ── */
.co-vision {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.co-vision__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: opacity(0.45);
}
.co-vision__overlay {
  position: absolute;
  inset: 0;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 64px;
  z-index: 2;
}
.co-vision__catch {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.7;
  text-align: center;
}
.co-vision__body {
  font-size: 16px;
  line-height: 2;
  color: #2a2a2a;
  text-align: center;
  max-width: 60%;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid var(--sub-accent);
  color: var(--sub-accent);
  background: transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn--outline:hover {
  background: var(--sub-accent);
  color: var(--white);
}

/* ── Company/Recruit responsive ── */
@media (max-width: 768px) {
  .company-section { padding: 48px 0 56px; }
  .section-head { margin-bottom: 32px; }
  .section-head__ja { font-size: 22px; }
  /* 法人情報ページ */
  .co-philosophy-hero { height: 280px; }
  .co-philosophy-hero__overlay { top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .co-philosophy-hero__heading { font-size: 19px; }
  .co-intro { padding: 40px 0 32px; }
  .co-intro__text { font-size: 14px; text-align: left; }
  .co-vision { height: 340px; }
  .co-vision__overlay { padding: 28px 24px; gap: 14px; }
  .co-vision__catch { font-size: 16px; text-align: center; }
  .co-vision__body { font-size: 13px; max-width: 90%; text-align: center; }
  .co-overview__table th { width: 100px; }
  .co-overview__table th, .co-overview__table td { padding: 16px 14px; }
}

/* ============================================================
   Footer collapse breakpoint (≤ 960px) — before sidebar hides
   ============================================================ */
@media (max-width: 960px) {
  .footer__main { padding: 48px 48px 40px; }
  .footer__top { flex-wrap: wrap; gap: 24px; }
}

/* ============================================================
   Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sidebar-w: 110px; }
  .sidebar__logo img { width: 94px; }
  .sidebar__nav-item span { font-size: 10.5px; }
  .inner { padding: 0 48px; }
  .page-hero__breadcrumb--top { padding: 14px 48px; }
  .cards-grid { gap: 16px; }
  .cards-row--4 { grid-template-columns: repeat(4, 1fr); }
  .card__img { height: 160px; }
}

/* ============================================================
   Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Mobile header ── */
  .mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--mob-h);
    background: var(--white);
    border-bottom: 3px solid var(--cta);
    z-index: 300;
    padding: 0 20px;
  }

  .mob-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }
  .mob-header__burger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: background 0.2s;
  }
  .mob-header__burger:hover span { background: var(--cta); }

  .mob-header__logo img { height: 40px; width: auto; }

  /* ── Drawer ── */
  .mob-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 500;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .mob-drawer.is-open { transform: translateX(0); }

  /* Drawer header — white with logo */
  .mob-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-bottom: 3px solid var(--cta);
    padding: 0 20px;
    height: 60px;
    flex-shrink: 0;
  }

  .mob-drawer__logo {
    height: 40px;
    width: auto;
  }

  .mob-drawer__close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
  }
  .mob-drawer__close:hover { color: var(--cta); }

  /* Drawer nav */
  .mob-drawer__nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
  }

  /* ── ドロワーナビアイテム（サイドバーと同じカラー体系） ── */
  .mob-drawer__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
    overflow: hidden;
  }
  .mob-drawer__link::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    z-index: 0;
  }
  .mob-drawer__link:hover::before { transform: scaleX(1); }
  .mob-drawer__link svg,
  .mob-drawer__link span { position: relative; z-index: 1; }
  .mob-drawer__link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
  }
  .mob-drawer__link:hover svg { transform: scale(1.2); }

  /* ホームリンク (1番目: 灰色) */
  .mob-drawer__nav .mob-drawer__link:nth-child(1) {
    color: var(--text-body);
    border-left: 5px solid var(--border);
  }
  .mob-drawer__nav .mob-drawer__link:nth-child(1) svg { color: var(--text-light); }
  .mob-drawer__nav .mob-drawer__link:nth-child(1)::before { background: var(--bg-base); }
  .mob-drawer__nav .mob-drawer__link:nth-child(1):hover { color: var(--text-dark); }

  /* 事業紹介 (2番目: 赤) */
  .mob-drawer__nav .mob-drawer__link:nth-child(2) {
    color: #D81020;
    border-left: 5px solid #D81020;
  }
  .mob-drawer__nav .mob-drawer__link:nth-child(2) svg { color: #D81020; }
  .mob-drawer__nav .mob-drawer__link:nth-child(2)::before { background: #D81020; }
  .mob-drawer__nav .mob-drawer__link:nth-child(2):hover { color: #fff; }
  .mob-drawer__nav .mob-drawer__link:nth-child(2):hover svg { color: #fff; }

  /* お知らせ (3番目: 緑) */
  .mob-drawer__nav .mob-drawer__link:nth-child(3) {
    color: #08B030;
    border-left: 5px solid #08B030;
  }
  .mob-drawer__nav .mob-drawer__link:nth-child(3) svg { color: #08B030; }
  .mob-drawer__nav .mob-drawer__link:nth-child(3)::before { background: #08B030; }
  .mob-drawer__nav .mob-drawer__link:nth-child(3):hover { color: #fff; }
  .mob-drawer__nav .mob-drawer__link:nth-child(3):hover svg { color: #fff; }

  /* 会社情報 (4番目: 青) */
  .mob-drawer__nav .mob-drawer__link:nth-child(4) {
    color: #0094D8;
    border-left: 5px solid #0094D8;
  }
  .mob-drawer__nav .mob-drawer__link:nth-child(4) svg { color: #0094D8; }
  .mob-drawer__nav .mob-drawer__link:nth-child(4)::before { background: #0094D8; }
  .mob-drawer__nav .mob-drawer__link:nth-child(4):hover { color: #fff; }
  .mob-drawer__nav .mob-drawer__link:nth-child(4):hover svg { color: #fff; }

  /* 採用情報 (5番目: 黄) */
  .mob-drawer__nav .mob-drawer__link:nth-child(5) {
    color: #D88800;
    border-left: 5px solid #D88800;
  }
  .mob-drawer__nav .mob-drawer__link:nth-child(5) svg { color: #D88800; }
  .mob-drawer__nav .mob-drawer__link:nth-child(5)::before { background: #D88800; }
  .mob-drawer__nav .mob-drawer__link:nth-child(5):hover { color: #fff; }
  .mob-drawer__nav .mob-drawer__link:nth-child(5):hover svg { color: #fff; }

  /* Contact button at drawer bottom */
  .mob-drawer__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 20px 28px;
    padding: 14px 20px;
    background: var(--cta);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .mob-drawer__contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .mob-drawer__contact:hover { background: var(--accent); }

  /* TEL/FAX in drawer */
  .mob-drawer__tel {
    margin: 0 20px 160px;
    padding: 16px 20px;
    border: 2px solid var(--cta);
    border-radius: 10px;
    flex-shrink: 0;
  }
  .mob-drawer__tel-lead {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    margin: 0 0 8px;
    letter-spacing: 0.06em;
  }
  .mob-drawer__tel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .mob-drawer__tel-item:last-child { margin-bottom: 0; }
  .mob-drawer__tel-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: var(--cta);
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
  }
  .mob-drawer__tel-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  /* モバイル: 画面下部に固定の電話バーとして表示 */
  .fixed-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    border-radius: 0;
    border: none;
    border-top: 3px solid var(--cta);
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
    z-index: 400;
  }
  .fixed-contact__lead {
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
    color: var(--text-light);
  }
  .fixed-contact__item { margin: 0; }
  .fixed-contact__item:last-child { display: none; }
  .fixed-contact__label {
    font-size: 10px;
    width: 28px;
    padding: 2px 4px;
  }
  .fixed-contact__num { font-size: 20px; }
  /* バーの高さ分だけコンテンツを上げる */
  .main { padding-bottom: 68px; }

  /* ── Overlay ── */
  .mob-drawer__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mob-drawer__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Layout ── */
  .sidebar { display: none; }
  .main { margin-left: 0; margin-top: var(--mob-h); }
  .inner { padding: 0 20px; }
  .page-hero__breadcrumb--top { padding: 10px 20px; }

  /* ── Section spacing ── */
  .business, .news, .info, .banners { padding: 52px 0; }
  .philosophy__top-row { flex-direction: column; gap: 20px; align-items: center; }
  .philosophy__top-row::before { display: none; }
  .philosophy__logo { justify-content: center; order: -1; }
  .philosophy__logo img { width: 240px; }
  .philosophy__sns { justify-content: center; min-width: unset; }
  .philosophy__title-block { text-align: center; }
  .philosophy__title-block .section-label { text-align: center; }
  .philosophy__heading { font-size: 19px; text-align: center; }
  .philosophy__body-wrap { padding: 16px 24px 40px; }
  .section-title { font-size: 24px; }
  .section-rule { margin-bottom: 40px; }

  /* ── Hero ── */
  .hero { height: 95svh; min-height: 480px; }

  /* ── Philosophy ── */
  .philosophy__heading { font-size: 19px; }
  .philosophy__body { font-size: 14px; }

  /* ── Business cards ── */
  .cards-grid { gap: 24px; }
  .cards-row--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-row--2 { grid-template-columns: 1fr; }
  .card__img { height: 180px; }
  .card--featured .card__img { height: 180px; }
  .card--featured .card__body { padding: 20px; }
  .card--featured .card__title { font-size: 17px; }
  .philosophy__img-wrap img { width: 100%; }

  /* ── News cards ── */
  .news-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Info cards ── */
  .info__grid { grid-template-columns: 1fr; gap: 16px; }

  .info-card {
    padding: 24px 20px;
    background: var(--white);
  }

  .info-card__head { margin-bottom: 14px; gap: 12px; }

  .info-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .info-card__title { font-size: 18px; }

  .info-card__desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Full-width outline button on mobile */
  .info-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
  }

  /* ── Banners ── */
  .banners__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ── Footer ── */
  .footer__main { padding: 40px 20px 80px; gap: 24px; }
  .footer__top { flex-direction: column; gap: 20px; }
  .footer__bottom { padding: 16px 20px; }
  footer::before { background-size: 200%; }
}


/* ============================================================
   ページ固有スタイル（各 HTML の <style> より移動）
   :root { --page-accent } のみ各 HTML に残す
   ============================================================ */

/* ─────────────────────────────────────────
   共通: ビジネスページ ヒーロー & パンくず
   (.shop-hero, .shop-breadcrumb は全事業ページで共用)
   ───────────────────────────────────────── */
.shop-hero { width: 100%; overflow: hidden; line-height: 0; position: relative; }
.shop-hero > img:first-child { display: block; width: 100%; height: auto; }

.shop-breadcrumb {
  padding: 12px max(80px, calc((100% - 1100px) / 2 + 80px));
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #888;
}
.shop-breadcrumb a { color: #888; text-decoration: none; }
.shop-breadcrumb a:hover { color: var(--page-accent); }
.shop-breadcrumb span { margin: 0 6px; }
@media (max-width: 1024px) { .shop-breadcrumb { padding: 12px 48px; } }
@media (max-width: 768px) { .shop-breadcrumb { padding: 10px 20px; } }



/* ─────────────────────────────────────────
   business-linen.html  (accent: #2B6EF5)
   ───────────────────────────────────────── */
.ln-intro {
  padding: 64px 0 60px;
  background: #fff;
}
.ln-intro__text {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
  margin: 0;
}

.ln-section { padding: 88px 0; background: #fff; }
.ln-section--alt { background: #f0f5ff; }
.ln-section .section-head__en { color: var(--page-accent); }
.ln-section .section-head__ja::before { background: var(--page-accent); }
.ln-section__lead {
  font-size: 16px;
  line-height: 2.3;
  color: #555;
  margin: 0 0 52px;
}

.ln-photo-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 56px;
}
.ln-photo-grid2 img { display: block; width: 100%; height: 240px; object-fit: cover; border-radius: 8px; }

.ln-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.ln-photo-grid img { display: block; width: 100%; height: 240px; object-fit: cover; border-radius: 8px; }

.ln-item-blocks { display: flex; flex-direction: column; }
.ln-item-block {
  padding: 28px 0 28px 20px;
  border-top: 1px solid #dde6ff;
  border-left: 3px solid var(--page-accent);
  margin-bottom: 16px;
}
.ln-item-block:last-child { margin-bottom: 0; border-bottom: none; }
.ln-item-block__title { font-size: 15px; font-weight: 700; color: var(--page-accent); margin: 0 0 10px; }
.ln-item-block__text { font-size: 16px; line-height: 2.1; color: #555; margin: 0; }

.ln-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ln-feature {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(43,110,245,0.10);
  border: 1px solid #dde6ff;
}
.ln-feature__img { display: block; width: 100%; height: 190px; object-fit: cover; }
.ln-feature__body { padding: 22px 20px 24px; }
.ln-feature__title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; line-height: 1.5; }
.ln-feature__sub {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--page-accent);
  color: #fff;
  border-radius: 4px;
  padding: 2px 9px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.ln-feature__text { font-size: 16px; line-height: 2; color: #555; margin: 0; }

@media (max-width: 768px) {
  .ln-intro { padding: 48px 0 44px; }
  .ln-section { padding: 60px 0; }
  .ln-photo-grid2 { grid-template-columns: 1fr; }
  .ln-photo-grid { grid-template-columns: 1fr; }
  .ln-features { grid-template-columns: 1fr; }
  .ln-item-block { padding: 20px 0 20px 16px; }
}


/* ─────────────────────────────────────────
   business-shop.html  (accent: #F59000)
   ───────────────────────────────────────── */
.shop-intro {
  padding: 72px 80px 64px;
  text-align: center;
  background: #fff;
}
.shop-intro__photo {
  display: block;
  width: 100%;
  max-width: 320px;
  object-fit: cover;
  border-radius: 0;
  margin: 0 auto 48px;
  border: none;
}
.shop-intro__text {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
  max-width: 680px;
  margin: 0 auto 10px;
}
.shop-intro__text:last-child { margin-bottom: 0; }

.shop-section { padding: 88px 0; background: #fff; }
.shop-section--alt { background: #fff8ed; }
.shop-section--warm { background: #fff8ed; }
.shop-section__head { max-width: 1060px; margin: 0 auto 52px; }
.shop-section__lead { font-size: 16px; line-height: 2; color: #555; margin: 12px 0 40px; }
.shop-section .section-head__en { color: var(--page-accent); }
.shop-section .section-head__ja::before { background: var(--page-accent); }

.shop-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-partner {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.shop-partner__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  flex-shrink: 0;
}
.shop-partner__body {
  padding: 20px 24px 24px;
  border: 2px solid #e8d5b0;
  border-top: 3px solid var(--page-accent);
  flex: 1;
}
.shop-partner__name-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.shop-partner__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
.shop-content__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.shop-content__text { padding-left: 24px; border-left: 3px solid var(--page-accent); }

.shop-cursive-heading {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  font-weight: 600;
  color: var(--page-accent);
  display: block;
  margin: 0 0 4px;
}
.shop-section-divider { border: none; border-top: 1px solid #ffd9a0; margin: 0 0 24px; }

.shop-list { list-style: none; padding: 0; margin: 0 0 16px; }
.shop-list:last-child { margin-bottom: 0; }
.shop-list li {
  font-size: 16px;
  line-height: 2;
  color: #444;
  padding: 7px 0 7px 1.3em;
  text-indent: -1.3em;
  border-bottom: 1px solid #ffeacc;
}
.shop-list li:last-child { border-bottom: none; }
.shop-list li::before { content: '・'; color: var(--page-accent); }
.shop-list--partners li { display: flex; gap: 32px; padding-left: 0; text-indent: 0; font-size: 14px; }
.shop-list--partners li::before { content: none; }
.partner-name { flex: 0 0 14em; font-weight: 600; color: var(--page-accent); }
.partner-name::before { content: ''; }
.partner-desc { color: #555; }

.shop-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.shop-photo-grid__large { grid-column: 1 / -1; margin-bottom: 2px; }
.shop-photo-grid img,
.shop-photo-grid .shop-ph { display: block; width: 100%; height: 110px; object-fit: cover; border-radius: 6px; }
.shop-photo-grid__large img { height: 280px; border-radius: 10px; }
.shop-ph { background: #e0e0e0; overflow: hidden; }
.shop-ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }

.gallery-main-wrap {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-main-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: opacity 0.25s ease;
}
.gallery-thumb {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.gallery-thumb.is-active { border-color: var(--page-accent); }
.gallery-thumb img { display: block; width: 100%; height: 110px; object-fit: cover; }

.shop-features-section { padding: 88px 0; background: #fff; }
.shop-features-section .section-head__en { color: var(--page-accent); }
.shop-features-section .section-head__ja::before { background: var(--page-accent); }
.shop-features-section .biz-feature {
  box-shadow: 0 2px 16px rgba(245,144,0,0.10);
  border: 2px solid #F59000;
}
.shop-features-section .biz-features .biz-feature:nth-child(1),
.shop-features-section .biz-features .biz-feature:nth-child(2),
.shop-features-section .biz-features .biz-feature:nth-child(3),
.shop-features-section .biz-features .biz-feature:nth-child(4),
.shop-features-section .biz-features .biz-feature:nth-child(5) { border-top: 4px solid #F59000; }

@media (max-width: 768px) {
  .shop-intro { padding: 52px 24px 44px; text-align: left; }
  .shop-intro__photo { margin: 0 auto 32px; }
  .shop-intro__text { max-width: 100%; margin: 0 0 10px; text-align: left; }
  .shop-section { padding: 56px 0; }
  .shop-content { grid-template-columns: 1fr; gap: 36px; }
  .shop-content__text { border-left: none; padding-left: 0; border-top: 3px solid var(--page-accent); padding-top: 20px; }
  .shop-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-partner-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────
   business-estate.html  (accent: #6E30FF)
   ───────────────────────────────────────── */
.es-intro {
  padding: 72px 0 64px;
}
.es-intro .section-head__en { color: var(--page-accent); }
.es-intro .section-head__ja::before { background: var(--page-accent); }
.es-intro__body { max-width: 720px; margin: 0 auto; }
.es-intro__body p { font-size: 16px; line-height: 2.4; color: #444; margin: 0 0 20px; }
.es-intro__body p:last-child { margin-bottom: 0; }

.es-share { padding: 88px 0; }
.es-share .section-head__en { color: var(--page-accent); }
.es-share .section-head__ja::before { background: var(--page-accent); }
.es-share__row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
  margin-bottom: 48px;
}
.es-share__textbox {
  padding: 32px 36px;
  border-left: 3px solid var(--page-accent);
  background: #fff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 16px rgba(110,48,255,0.08);
}
.es-share__textbox p { font-size: 16px; line-height: 2.3; color: #444; margin: 0 0 24px; }
.es-share__list { list-style: none; padding: 0; margin: 0; }
.es-share__list li {
  font-size: 16px;
  line-height: 2;
  color: #444;
  padding: 7px 0 7px 1.4em;
  text-indent: -1.4em;
  border-bottom: 1px solid #e8e0ff;
}
.es-share__list li:last-child { border-bottom: none; }
.es-share__list li::before { content: '・'; color: var(--page-accent); }
.es-share__photo { display: block; width: 100%; height: auto; border-radius: 10px; }

.es-gallery-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--page-accent);
  letter-spacing: 0.1em;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--page-accent);
}

.es-gallery-main-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #f0ecff;
}
.es-gallery-main-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.25s ease;
}
.es-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.es-gallery-thumb {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.es-gallery-thumb.is-active { border-color: var(--page-accent); }
.es-gallery-thumb img { display: block; width: 100%; height: 110px; object-fit: cover; }

.es-vision { padding: 88px 0 0; }
.es-vision .section-head__en { color: var(--page-accent); }
.es-vision .section-head__ja::before { background: var(--page-accent); }
.es-vision__body {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 32px 40px;
  border-left: 3px solid var(--page-accent);
  background: rgba(245,240,255,0.85);
  border-radius: 0 8px 8px 0;
}
.es-vision__body p { font-size: 16px; line-height: 2.4; color: #444; margin: 0; }
.es-vision__photo { display: block; width: 80%; max-width: 900px; height: auto; margin: 0 auto; border-radius: 8px; position: relative; z-index: 1; }

@media (max-width: 768px) {
  .es-intro { padding: 52px 0 44px; }
  .es-share { padding: 56px 0; }
  .es-share__row { grid-template-columns: 1fr; gap: 28px; }
  .es-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .es-vision { padding-top: 56px; }
  .es-vision__body { padding: 24px 20px; margin-bottom: 40px; }
}


/* ─────────────────────────────────────────
   business-cosme.html  (accent: #7EC800)
   ───────────────────────────────────────── */
.cosme-message {
  padding: 72px 0;
  background: #fff;
  text-align: center;
}
.cosme-message .section-head__en { color: var(--page-accent); }
.cosme-message .section-head__ja::before { display: none; }
.cosme-message__body p {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
  margin: 0 auto 20px;
  max-width: 720px;
}
.cosme-message__body p:last-child { margin-bottom: 0; }

.co-brand { padding: 88px 0; background: #f5fbf0; }
.co-brand__logo-wrap { text-align: center; margin-bottom: 12px; }
.co-brand__logo { display: block; width: 220px; height: auto; margin: 0 auto; }
.co-brand__name { text-align: center; font-size: 14px; color: #888; margin: 0 0 52px; }
.co-brand__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--page-accent);
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--page-accent);
}
.co-brand__text { font-size: 16px; line-height: 2.3; color: #444; margin: 0 0 16px; }
.co-brand__text:last-child { margin-bottom: 0; }
.co-brand__divider { border: none; border-top: 1px solid #c8e88a; margin: 40px 0; }

.co-product { padding: 88px 0; background: #fff; }
.co-product .section-head__en { color: var(--page-accent); }
.co-product .section-head__ja::before { background: var(--page-accent); }
.co-product__row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: center;
  margin-bottom: 64px;
}
.co-product__text {
  border-left: 3px solid var(--page-accent);
  padding-left: 20px;
}
.co-product__lead {
  font-size: 16px;
  line-height: 2.3;
  color: #444;
  margin: 0;
}
.co-product__lead + .co-product__lead { margin-top: 20px; }
.co-product__img { display: block; width: 100%; height: auto; border-radius: 10px; }
.co-feature-full { display: block; width: 100%; height: auto; border-radius: 10px; margin-bottom: 48px; }
.co-product .biz-features { grid-template-columns: repeat(2, 1fr); }
.co-product .biz-features .biz-feature {
  border-radius: 8px;
}
.co-product .biz-features .biz-feature:nth-child(1),
.co-product .biz-features .biz-feature:nth-child(2),
.co-product .biz-features .biz-feature:nth-child(3),
.co-product .biz-features .biz-feature:nth-child(4) { border-top: 4px solid #7EC800; }

.co-closing { background: #fff; padding: 48px 0 64px; display: flex; justify-content: center; }
.co-closing__inner { position: relative; width: 88%; max-width: 1060px; overflow: hidden; border-radius: 10px; }
.co-closing__img { display: block; width: 100%; height: 340px; object-fit: cover; }
.co-closing__overlay {
  position: absolute;
  inset: 0;
  background: rgba(160,160,160,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-closing__text {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 2.2;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  max-width: 620px;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .cosme-message { padding: 52px 0; }
  .co-brand { padding: 56px 0; }
  .co-product { padding: 56px 0; }
  .co-product__row { grid-template-columns: 1fr; gap: 28px; }
  .co-product__text { border-left: none; padding-left: 0; border-top: 3px solid var(--page-accent); padding-top: 16px; }
  .co-product .biz-features { grid-template-columns: 1fr; }
  .co-closing__img { height: 240px; }
  .co-closing__text { font-size: 14px; }
}


/* ─────────────────────────────────────────
   business-remake.html  (accent: #D81890)
   ───────────────────────────────────────── */
.rm-kimono {
  padding: 80px 0 72px;
  background: #fff;
  position: relative;
}
.rm-kimono::before { content: ''; position: absolute; inset: 0; background: url('img/remake_tex-01.png') center / cover no-repeat; opacity: 0.4; pointer-events: none; }
.rm-kimono > * { position: relative; z-index: 1; }
.rm-kimono .section-head__en { color: var(--page-accent); }
.rm-kimono .section-head__ja::before { background: var(--page-accent); }
.rm-kimono__body {
  padding: 32px 36px;
}
.rm-kimono p { font-size: 16px; line-height: 2.5; color: #444; margin: 0 0 20px; text-align: left; }
.rm-kimono p:last-child { margin-bottom: 0; }

.rm-ending { padding: 88px 0; background: #fff; position: relative; }
.rm-ending::before { content: ''; position: absolute; inset: 0; background: url('img/remake_tex-02.png') center / cover no-repeat; opacity: 0.4; pointer-events: none; }
.rm-ending > * { position: relative; z-index: 1; }
.rm-ending .section-head__en { color: var(--page-accent); }
.rm-ending .section-head__ja::before { background: var(--page-accent); }
.rm-ending__row { display: grid; grid-template-columns: 280px 1fr; gap: 52px; align-items: start; }
.rm-ending__img { display: block; width: 100%; height: auto; border-radius: 10px; }
.rm-ending__text { border-left: 3px solid var(--page-accent); padding-left: 24px; }
.rm-ending__text p { font-size: 16px; line-height: 2.4; color: #444; margin: 0 0 20px; }
.rm-ending__text p:last-child { margin-bottom: 0; }

.rm-works { padding: 88px 0; background: #fdf0f8; position: relative; }
.rm-works::before { content: ''; position: absolute; inset: 0; background: url('img/remake_tex-02.png') center / cover no-repeat; opacity: 0.4; pointer-events: none; }
.rm-works > * { position: relative; z-index: 1; }
.rm-works .section-head__en { color: var(--page-accent); }
.rm-works .section-head__ja::before { background: var(--page-accent); }
.rm-works__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.rm-gallery-main-wrap { position: relative; overflow: hidden; border-radius: 10px; margin-bottom: 10px; }
.rm-gallery-main-wrap img { display: block; width: 100%; height: auto; border-radius: 10px; transition: opacity 0.25s ease; }
.rm-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.rm-gallery-thumb {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.rm-gallery-thumb.is-active { border-color: var(--page-accent); }
.rm-gallery-thumb img { display: block; width: 100%; height: 80px; object-fit: cover; }

.rm-works__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 0 0 24px;
  border-left: 3px solid var(--page-accent);
}
.rm-profile__icon { display: block; width: 160px; height: auto; margin-bottom: 12px; }
.rm-profile__title { font-size: 15px; font-weight: 700; color: var(--page-accent); margin: 0 0 14px; }
.rm-career {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.9;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5c0e8;
}
.rm-works__text p { font-size: 16px; line-height: 2.3; color: #444; margin: 0 0 16px; }
.rm-works__text p:last-child { margin-bottom: 0; }
.rm-works__sig { width: 200px; height: auto; margin-top: 16px; display: block; }

.rm-new { padding: 88px 0; background: #fff; position: relative; }
.rm-new::before { content: ''; position: absolute; inset: 0; background: url('img/remake_tex-02.png') center / cover no-repeat; opacity: 0.4; pointer-events: none; }
.rm-new > * { position: relative; z-index: 1; }
.rm-new .section-head__en { color: var(--page-accent); }
.rm-new .section-head__ja::before { background: var(--page-accent); }
.rm-new__intro { font-size: 16px; line-height: 2; color: #444; margin: 0 0 48px; }
.rm-new__items { display: flex; flex-direction: column; gap: 52px; max-width: 780px; margin-left: 40px; }
.rm-new__item { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; }
.rm-new__item-left { text-align: center; }
.rm-new__item-img { display: block; width: 100%; height: auto; margin-bottom: 10px; }
.rm-new__item-name { font-size: 14px; font-weight: 700; color: var(--text-dark); margin: 0 0 4px; }
.rm-new__item-cat { font-size: 14px; color: #888; margin: 0; }
.rm-new__item-right p { font-size: 16px; line-height: 2.3; color: #444; margin: 0; }

@media (max-width: 768px) {
  .rm-kimono { padding: 56px 0 48px; }
  .rm-ending, .rm-works, .rm-new { padding: 56px 0; }
  .rm-ending__row { grid-template-columns: 1fr; gap: 28px; }
  .rm-ending__text { border-left: none; padding-left: 0; border-top: 3px solid var(--page-accent); padding-top: 20px; }
  .rm-works__layout { grid-template-columns: 1fr; gap: 36px; }
  .rm-works__right { border-left: none; padding-left: 0; border-top: 3px solid var(--page-accent); padding-top: 20px; }
  .rm-new__item { grid-template-columns: 1fr; gap: 20px; }
  .rm-new__item-img { max-width: 220px; margin: 0 auto 10px; }
}


/* ─────────────────────────────────────────
   business-station.html  (accent: #08B865)
   ───────────────────────────────────────── */
.st-message {
  padding: 80px 0 72px;
  background: #fff;
  text-align: center;
}
.st-message__accent {
  font-size: 30px;
  font-weight: 700;
  color: #08B865;
  display: block;
  margin: 16px 0 24px;
  letter-spacing: 0.02em;
}
.st-message__body p { font-size: 16px; line-height: 2.5; color: #444; margin: 0; }

.st-photo-full { background: #fff; }
.st-photo-full img { display: block; width: 100%; max-height: 480px; object-fit: cover; }

.st-caption {
  padding: 64px 0;
  background: #f5fdf8;
  text-align: center;
}
.st-caption p { font-size: 16px; line-height: 2.5; color: #444; margin: 0; }

.st-concept { padding: 88px 0 0; background: #fff; margin-bottom: 50px; }
.st-concept .section-head__en { color: var(--page-accent); }
.st-concept .section-head__ja::before { background: var(--page-accent); }
.st-concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
}
.st-concept__cell { overflow: hidden; }
.st-concept__img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.st-concept__textbox {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.st-concept__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 20px;
}
.st-concept__body {
  font-size: 16px;
  line-height: 2.3;
  color: #444;
  margin: 0 0 28px;
}
.st-concept__btn {
  display: inline-block;
  background: var(--page-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  align-self: flex-start;
}

.st-closing-photo { padding: 100px 0 0; background: #fff; }
.st-closing-photo__img { display: block; width: 80%; max-width: 900px; height: auto; margin: 0 auto; border-radius: 8px; }

.st-split { padding: 80px 0; background: #fff; }
.st-split__row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.st-split__img { display: block; width: 100%; height: auto; border-radius: 10px; }
.st-split__text { font-size: 16px; line-height: 2.5; color: #444; padding-left: 8px; border-left: 3px solid #08B865; }

.company-section--alt { background: #f5fdf8; }
.st-features-section .section-head__en { color: #08B865; }
.st-features-section .section-head__ja::before { background: #08B865; }
.st-features-section .biz-feature { border-top: 4px solid #08B865; }

.st-gallery { padding: 88px 0; background: #fff; }
.st-gallery .section-head { margin-bottom: 48px; }
.st-gallery .section-head__en { color: #08B865; }
.st-gallery .section-head__ja::before { background: #08B865; }
.st-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.st-gallery .gallery-main-wrap { border-radius: 8px; margin-bottom: 4px; }
.st-gallery .gallery-main-wrap img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .st-message { padding: 52px 0 48px; }
  .st-message__accent { font-size: 22px; }
  .st-caption { padding: 48px 0; }
  .st-split { padding: 56px 0; }
  .st-split__row { grid-template-columns: 1fr; gap: 32px; }
  .st-split__text { border-left: none; padding-left: 0; border-top: 3px solid #08B865; padding-top: 20px; }
  .st-gallery { padding: 60px 0; }
  .st-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumb img { height: 90px; }

  .st-concept { padding: 56px 0 0; }
  .st-concept__grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .st-concept__img { min-height: 240px; }
  .st-concept__textbox { padding: 36px 24px; }
  .st-concept__subtitle { font-size: 18px; }
  .st-concept__body { font-size: 14px; line-height: 2; margin-bottom: 20px; }
  .st-concept__btn { font-size: 15px; padding: 12px 22px; align-self: stretch; text-align: center; }
}


/* ─────────────────────────────────────────
   company.html  (accent: #08B030)
   ───────────────────────────────────────── */
.co-intro { padding: 80px 0; border-bottom: 3px solid var(--page-accent); }
.co-intro__text { font-size: 16px; line-height: 2.4; }

.co-community { padding: 88px 0; background: #f0faf3; }
.co-community .section-head__en { color: var(--page-accent); }
.co-community .section-head__ja::before { background: var(--page-accent); }
.co-community__body { border-left: 3px solid var(--page-accent); padding-left: 24px; }
.co-community__body p { font-size: 16px; line-height: 2.4; margin-bottom: 20px; }

.co-overview { padding: 88px 0 96px; background: var(--bg-base); }
.co-overview .section-head__en { color: var(--page-accent); }
.co-overview .section-head__ja::before { background: var(--page-accent); }
.co-overview__table { width: 100%; }
.co-overview__table th, .co-overview__table td { padding: 26px 24px; border-bottom: 1px solid var(--border); }
.co-overview__table tr:first-child th,
.co-overview__table tr:first-child td { border-top: 2px solid var(--page-accent); }
.co-overview__table th { color: var(--page-accent); width: 160px; font-weight: 600; }
.co-overview__table td a { color: inherit; text-decoration: none; }

@media (max-width: 768px) {
  .co-community { padding: 56px 0; }
  .co-community__body { border-left: none; padding-left: 0; border-top: 3px solid var(--page-accent); padding-top: 20px; }
  .co-overview { padding: 56px 0 72px; }
}


/* ─────────────────────────────────────────
   recruit.html  (accent: #0094D8)
   ───────────────────────────────────────── */
.rc-message {
  padding: 80px 0 72px;
  background: #fff;
  border-bottom: 3px solid var(--page-accent);
}
.rc-message .section-head__en { color: var(--page-accent); }
.rc-message .section-head__ja::before { background: var(--page-accent); }
.rc-message__body { border-left: 3px solid var(--page-accent); padding-left: 24px; max-width: 720px; }
.rc-message p { font-size: 16px; line-height: 2.4; color: #444; margin: 0 0 20px; }
.rc-message p:last-child { margin-bottom: 0; }

.rc-jobs { padding: 88px 0 72px; background: #f0f8fd; }
.rc-jobs .section-head__en { color: var(--page-accent); }
.rc-jobs .section-head__ja::before { background: var(--page-accent); }
.rc-jobs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rc-job {
  border: 1px solid #b0d8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rc-job__header {
  background: #0094D8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  letter-spacing: 0.04em;
}
.rc-job__table { width: 100%; border-collapse: collapse; flex: 1; }
.rc-job__table th {
  width: 96px;
  padding: 14px 16px 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #0094D8;
  vertical-align: top;
  white-space: nowrap;
}
.rc-job__table td { padding: 14px 24px 14px 8px; font-size: 14px; color: #333; line-height: 1.9; }
.rc-job__table tr + tr td,
.rc-job__table tr + tr th { border-top: 1px solid #d0eaf8; }
.rc-job__note { padding: 8px 24px 16px; font-size: 14px; color: #888; text-align: center; background: #f7fbff; }

.rc-cta { padding: 64px 0 72px; background: #fff; text-align: center; }
.rc-cta__btn {
  font-size: 16px;
  font-weight: 600;
  color: #0094D8;
  margin: 0;
}
.rc-photo { max-width: 700px; margin: 0 auto; }
.rc-photo img { display: block; width: 100%; height: auto; }

@media (max-width: 768px) {
  .rc-message { padding: 52px 0 44px; }
  .rc-message__body { border-left: none; padding-left: 0; border-top: 3px solid var(--page-accent); padding-top: 20px; }
  .rc-jobs { padding: 56px 0 48px; }
  .rc-jobs__grid { grid-template-columns: 1fr; }
  .rc-job__table th { width: 72px; padding: 12px 8px 12px 16px; }
  .rc-job__table td { padding: 12px 16px 12px 6px; }
  .rc-cta__btn { font-size: 15px; }
}

/* ── Privacy Policy page ── */
.pv-lead {
  padding: 72px 0 64px;
  background: #fff;
  border-bottom: 3px solid var(--page-accent);
}
.pv-lead__text {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
}

.pv-section {
  padding: 64px 0;
  background: #fff;
}
.pv-section--alt {
  background: #f5f7fa;
}
.pv-section .section-head__en { color: var(--page-accent); }
.pv-section .section-head__ja::before { background: var(--page-accent); }

.pv-body {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
}
.pv-body p { margin: 0 0 20px; }
.pv-body p:last-child { margin-bottom: 0; }

.pv-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.pv-list li {
  font-size: 16px;
  line-height: 2;
  color: #444;
  padding: 8px 0 8px 1.4em;
  text-indent: -1.4em;
  border-bottom: 1px solid #e8edf3;
}
.pv-list li:last-child { border-bottom: none; }
.pv-list li::before { content: '・'; color: var(--page-accent); }

.pv-contact-box {
  background: #f5f7fa;
  border: 1px solid #d0dae8;
  border-left: 4px solid var(--page-accent);
  border-radius: 0 8px 8px 0;
  padding: 32px 40px;
  margin-top: 8px;
}
.pv-contact-box p {
  font-size: 16px;
  line-height: 2.2;
  color: #444;
  margin: 0 0 6px;
}
.pv-contact-box p:last-child { margin-bottom: 0; }

.pv-date {
  text-align: right;
  font-size: 14px;
  color: #888;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

/* ── Remake page: LINE section ── */
.rm-line .section-head__en { color: var(--page-accent); }
.rm-line .section-head__ja::before { background: var(--page-accent); }
.rm-line .btn--outline { color: var(--page-accent); border-color: var(--page-accent); }
.rm-line .btn--outline:hover { background: var(--page-accent); color: #fff; }
.rm-line {
  padding: 64px 0;
  background: #f9fafb;
}
.rm-line__body {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.rm-line__text {
  flex: 1;
  min-width: 240px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}
.rm-line__text p { margin: 0 0 12px; }
.rm-line__qr {
  flex-shrink: 0;
  text-align: center;
}
.rm-line__qr img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.rm-line__qr p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .rm-line__body { flex-direction: column; gap: 32px; align-items: flex-start; }
  .rm-line__qr { align-self: center; order: -1; }
}

/* ── Station page: LINE section ── */
.st-line .section-head__en { color: var(--page-accent); }
.st-line .section-head__ja::before { background: var(--page-accent); }
.st-line .btn--outline { color: var(--page-accent); border-color: var(--page-accent); }
.st-line .btn--outline:hover { background: var(--page-accent); color: #fff; }
.st-line {
  padding: 64px 0;
  background: #f9fafb;
}
.st-line__body {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.st-line__text {
  flex: 1;
  min-width: 240px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}
.st-line__text p { margin: 0 0 12px; }
.st-line__qr {
  flex-shrink: 0;
  text-align: center;
}
.st-line__qr img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.st-line__qr p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .st-line__body { flex-direction: column; gap: 32px; align-items: flex-start; }
  .st-line__qr { align-self: center; order: -1; }
}
