/*
Theme Name: Wonder Wall
Theme URI: https://www.wonderwall.site
Author: Wonder Wall株式会社
Description: Wonder Wall株式会社 コーポレートサイト用オリジナルテーマ
Version: 1.0
Text Domain: wonderwall
*/
/* ==========================================================
   Wonder Wall株式会社 コーポレートサイト 共通スタイル
   ========================================================== */

:root {
  --navy: #0d1b2a;
  --blue: #1976d2;
  --blue-dark: #0d47a1;
  --lightblue: #4fc3f7;
  --sky: #eaf6fd;
  --orange: #f5a623;
  --orange-dark: #e08e00;
  --text: #2c3440;
  --text-light: #6b7684;
  --bg: #eef6fb;
  --white: #ffffff;
  --border: #dfe9f2;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(13, 27, 42, 0.08);
  --shadow-hover: 0 8px 24px rgba(13, 27, 42, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Meiryo UI", "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

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

/* ---------- placeholder blocks (no real assets yet) ---------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #cfe8f7, #9fd3ef);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.ph.dark { background: linear-gradient(135deg, #26415c, #0d1b2a); color: #dcebf7; }
.ph.circle { border-radius: 50%; }
.ph.orange { background: linear-gradient(135deg, #ffd58a, #f5a623); color: #5c3d00; }
.ph svg { width: 100%; height: 100%; display: block; }
.ph.photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }

/* ---------- character image (うやちゃん) ---------- */
.char-img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("images/img_afdcb36c5598.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: var(--sky);
  border-radius: var(--radius);
}
.char-img.circle {
  border-radius: 50%;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
}
.logo img { height: 34px; width: auto; display: block; }
.logo span { color: var(--lightblue); }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: #f1f6fb;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  color: var(--lightblue);
  border-bottom-color: var(--lightblue);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ---------- hero (TOP page) ---------- */
.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center 20%;
}
.hero-slide.active { opacity: 1; }
.hero-slide.slide-1 {
  background: linear-gradient(rgba(10, 20, 32, 0.55), rgba(10, 20, 32, 0.55)),
    url("images/img_cc5021ee3d50.jpg");
  background-size: cover;
  background-position: center 20%;
}
.hero-slide.slide-2 {
  background: linear-gradient(rgba(10, 20, 32, 0.55), rgba(10, 20, 32, 0.55)),
    url("images/img_f3628beb176a.jpg");
  background-size: cover;
  background-position: center 20%;
}
.hero-slide.slide-3 {
  background: linear-gradient(rgba(10, 20, 32, 0.55), rgba(10, 20, 32, 0.55)),
    url("images/img_0c18fe18b714.jpg");
  background-size: cover;
  background-position: center 20%;
}
.hero-slide.slide-4 {
  background: linear-gradient(rgba(10, 20, 32, 0.55), rgba(10, 20, 32, 0.55)),
    url("images/img_8c41e2af7ea4.jpg");
  background-size: cover;
  background-position: center 20%;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: #fff; transform: scale(1.2); }
.hero-eyebrow {
  letter-spacing: 0.25em;
  font-size: 13px;
  color: var(--lightblue);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(rgba(10, 20, 32, 0.78), rgba(10, 20, 32, 0.78)),
    repeating-linear-gradient(135deg, #1c3552 0 40px, #16293f 40px 80px);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.page-hero .en {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--lightblue);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
}
.breadcrumb {
  margin-top: 14px;
  font-size: 12px;
  color: #cfe0ee;
}
.breadcrumb a { color: #cfe0ee; border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(25,118,210,0.35); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-orange { background: var(--orange); color: #4a2f00; box-shadow: 0 6px 16px rgba(245,166,35,0.4); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-block { display: block; text-align: center; }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-title {
  text-align: center;
  margin-bottom: 44px;
}
.section-title .en {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--lightblue);
  background: var(--navy);
  display: none;
}
.section-title h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-bottom: 16px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.section-title p {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 14px;
}
.section-title h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-bottom: 14px;
}
.section-title h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

/* ---------- video embeds (喫煙ブース事業) ---------- */
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.smoke-variants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.smoke-variant {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}
.smoke-variant .ph {
  height: 130px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 12.5px;
}
.smoke-variant .ph.photo {
  height: 300px;
}
.smoke-variant .ph.photo img {
  object-position: center center;
}
.smoke-variant .label {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
}
@media (max-width: 860px) {
  .video-grid-2 { grid-template-columns: 1fr; }
  .smoke-variants { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .smoke-variants { grid-template-columns: 1fr; }
}

/* ---------- intro cards (top of page under hero) ---------- */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.intro-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.intro-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.intro-card .ph { height: 140px; border-radius: 0; font-size: 15px; flex-direction: column; gap: 10px; }
.intro-card .ph svg { width: 36px; height: 36px; }
.intro-card .btn { width: 100%; border-radius: 0; font-size: 12.5px; padding: 12px 8px; }
.intro-photo { width: 100%; aspect-ratio: 1 / 2; object-fit: contain; background: #fff; display: block; }

/* ---------- mascot intro block ---------- */
.mascot-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}
.mascot-block .ph { height: 100%; min-height: 220px; font-size: 15px; }
.mascot-block .char-img { height: 100%; min-height: 220px; }
.mascot-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.mascot-text h3 { color: var(--blue-dark); font-size: 17px; }
.mascot-text p { font-size: 13.5px; color: var(--text-light); }
.mascot-text .btn { align-self: flex-start; }

/* ---------- service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 15.5px; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.service-card .more { font-size: 12.5px; color: var(--blue); font-weight: 700; }
.service-card .more:hover { text-decoration: underline; }

/* ---------- chat FAQ ---------- */
.chat-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.chat-row.right { flex-direction: row-reverse; }
.chat-row .ph.circle { width: 56px; height: 56px; flex: none; font-size: 11px; }
.chat-row .char-img.circle { width: 56px; height: 56px; flex: none; }
.bubble {
  background: var(--sky);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text);
  position: relative;
}
.chat-row.right .bubble { background: #f3e8fb; }
.chat-list-image {
  max-width: 620px;
  margin: 0 auto;
}
.chat-list-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.chat-cta { text-align: center; margin-top: 36px; }

/* ---------- CEO message (text) ---------- */
.ceo-message {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ceo-message p {
  font-size: 14px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 18px;
}
.ceo-message .brand-name {
  color: #2f9e44;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.ceo-message .catch-copy {
  color: #6b5fc4;
  font-weight: 700;
}
.ceo-photo {
  max-width: 420px;
  margin: 28px auto;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.ceo-photo img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

/* ---------- mascot story page ---------- */
.mascot-video-frame {
  max-width: 340px;
  aspect-ratio: 9 / 16;
  margin: 0 auto 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.mascot-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.mascot-hero-photo {
  max-width: 640px;
  margin: 0 auto 32px;
}
.mascot-hero-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mascot-intro-text {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text-light);
}
.mascot-small-photo {
  max-width: 150px;
  margin: 0 auto 32px;
}
.mascot-small-photo img {
  width: 100%;
  display: block;
}
.mascot-story-text {
  max-width: 660px;
  margin: 0 auto;
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text);
}
.mascot-story-text p { margin-bottom: 20px; }
.mascot-story-text .name-meaning {
  margin: 0 0 20px 0;
  padding-left: 4px;
}
.mascot-story-text .name-meaning li {
  font-size: 13.5px;
  line-height: 2;
  padding-left: 18px;
  position: relative;
}
.mascot-story-text .name-meaning li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.mascot-join-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.mascot-join-header img { max-width: 120px; }
.mascot-join-header img.join-logo { max-width: 160px; }
.mascot-forest-photo {
  max-width: 720px;
  margin: 0 auto 40px;
}
.mascot-forest-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mascot-profile {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 680px;
  margin: 36px auto;
  align-items: center;
}
.mascot-profile-photo img {
  width: 100%;
  display: block;
}
.mascot-profile-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  margin-left: -30px;
}
.mascot-profile-card .profile-heading {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 14px;
}
.profile-list > div { margin-bottom: 12px; }
.profile-list dt {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  display: inline;
}
.profile-list dd {
  display: inline;
  margin: 0;
  font-size: 13px;
  color: var(--text);
}
.profile-list dt::after { content: "："; }
.mascot-quote {
  text-align: center;
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 13.5px;
  line-height: 2;
  color: var(--text-light);
}
.mascot-sns {
  text-align: center;
  margin-top: 44px;
}
.mascot-sns p {
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 18px;
}
.mascot-sns-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
}
.mascot-sns-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mascot-sns-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.sns-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .mascot-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mascot-profile-photo { max-width: 220px; margin: 0 auto; }
  .mascot-profile-card { margin-left: 0; margin-top: -30px; text-align: left; }
}

/* ---------- team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card .ph { height: 160px; border-radius: 0; font-size: 14px; }
.team-card .char-img { height: 160px; border-radius: 0; padding: 10px; }
.team-photo-yamazaki {
  background-image: url("images/img_3ae688f1f8ee.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: var(--sky);
}
.team-photo-furukawa {
  background-image: url("images/img_c919e4354c7b.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: var(--sky);
}
.team-photo-yuki {
  background-image: url("images/img_d844d96b1416.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: var(--sky);
}
.team-card .info { padding: 16px 10px; }
.team-card .name { font-weight: 700; font-size: 14px; color: var(--navy); }
.team-card .role { font-size: 11.5px; color: var(--text-light); margin-top: 4px; }

/* ---------- contact CTA (top page) ---------- */
.contact-cta {
  background: linear-gradient(135deg, var(--lightblue), var(--blue));
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.contact-cta h2 { font-size: 22px; margin-bottom: 14px; }
.contact-cta p { font-size: 13.5px; opacity: 0.95; margin-bottom: 26px; }
.contact-cta .ph.circle { width: 90px; height: 90px; margin: 0 auto 22px; font-size: 11px; }
.contact-cta .char-img.circle { width: 90px; height: 90px; margin: 0 auto 22px; }

/* ---------- forms ---------- */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-row label .req { color: #e05a5a; font-size: 11px; margin-left: 6px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-submit { text-align: center; margin-top: 30px; }
.form-submit button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.form-submit button:hover { background: var(--blue-dark); }

/* ---------- info table (about / careers) ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  vertical-align: top;
}
.info-table th {
  width: 180px;
  color: var(--navy);
  background: var(--bg);
  font-weight: 700;
}

/* ---------- two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.office-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.office-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ---------- business detail sections ---------- */
.biz-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.biz-block:last-child { border-bottom: none; }
.biz-block.reverse { grid-template-columns: 1fr 320px; }
.biz-block.reverse .ph { order: 2; }
.biz-block .ph { height: 190px; font-size: 15px; }
.biz-num { color: var(--lightblue); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; }
.biz-block h3 { font-size: 19px; color: var(--navy); margin: 8px 0 14px; }
.biz-block p { font-size: 13.5px; color: var(--text-light); margin-bottom: 14px; }
.biz-block ul { display: flex; flex-direction: column; gap: 6px; }
.biz-block ul li { font-size: 13px; color: var(--text); padding-left: 18px; position: relative; }
.biz-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- job cards ---------- */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}
.job-card h3 { color: var(--navy); font-size: 16px; margin-bottom: 14px; }
.job-card .info-table th { width: 130px; font-size: 12.5px; }
.job-card .info-table td { font-size: 12.5px; }

.job-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}
.job-card-title .service-icon { margin-bottom: 0; flex: none; }
.job-card-title h3 { margin-bottom: 0; font-size: 18px; text-align: center; }
.job-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.job-point h4 {
  text-align: center;
  color: var(--orange-dark);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.job-point p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
}
.job-point p + p { margin-top: 10px; }
.job-point .note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
@media (max-width: 860px) {
  .job-points { grid-template-columns: 1fr; }
}

.step-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
  padding: 26px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
  font-size: 14px;
}
.step h4 { font-size: 13.5px; margin-bottom: 8px; color: var(--navy); }
.step p { font-size: 12px; color: var(--text-light); }

/* ---------- recommend tags ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 20px;
  border: 1px solid #cfe4f5;
}
.tag::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.faq-q, .faq-a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq-q { font-weight: 700; color: var(--navy); font-size: 14.5px; margin-bottom: 10px; }
.faq-a { font-size: 13.5px; color: var(--text-light); line-height: 1.9; }
.qa-badge {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.faq-q .qa-badge { background: var(--blue); }
.faq-a .qa-badge { background: var(--orange); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  color: #cfe0ee;
  padding: 48px 0 20px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-size: 13px;
}
.footer-nav a:hover { color: var(--lightblue); }
.footer-logo {
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.copyright {
  text-align: center;
  font-size: 11.5px;
  color: #7f93a8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .intro-cards { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mascot-block { grid-template-columns: 1fr; }
  .mascot-block .ph { height: 180px; }
  .two-col { grid-template-columns: 1fr; }
  .biz-block, .biz-block.reverse { grid-template-columns: 1fr; }
  .biz-block .ph { order: -1 !important; }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .info-table th { width: 120px; }
}
@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 4px; border-bottom: none; }
  .info-table td { padding-top: 0; }
}

/* ---------- shopping-cart style order form (訪問サポートお申込み) ---------- */
.cart-section {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.cart-section-header {
  background: #f2f4f6;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-section-header svg { width: 20px; height: 20px; flex: none; color: var(--blue); }
.cart-section-header .note {
  font-weight: 400;
  font-size: 11.5px;
  color: var(--text-light);
  margin-left: 4px;
}
.cart-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.cart-items-4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .cart-items-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cart-items-4col { grid-template-columns: 1fr; }
}
.cart-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 14px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.cart-item:hover { background: #f9fafb; }
.cart-item.selected { background: #fdeef2; }
.cart-item.selected:hover { background: #fbe3ea; }
.cart-item.selected.highlight { background: #fbe3ea; }
.cart-item .check-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.cart-item .check-badge.on { background: #3cb878; }
.cart-item .check-badge.off { background: #b6bcc4; }
.cart-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--blue);
}
.cart-item .icon svg { width: 100%; height: 100%; }
.cart-item .name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cart-item .note-text {
  font-size: 10.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}
.cart-item .price-original {
  text-decoration: line-through;
  color: #9aa3ad;
  font-size: 11px;
  margin-right: 6px;
}
.cart-item .price-final {
  color: #e0447a;
  font-weight: 700;
  font-size: 14.5px;
}

.cart-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 12.5px;
}
.cart-summary-table th {
  background: #f2f4f6;
  text-align: left;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 700;
}
.cart-summary-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.cart-totals {
  margin-left: auto;
  max-width: 320px;
  margin-bottom: 48px;
}
.cart-totals > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.cart-totals .grand-total {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.cart-totals .grand-total span:last-child { color: #e0447a; }

.cart-form { max-width: 640px; margin: 0 auto; }
.form-row-split { display: flex; gap: 12px; }
.form-row-split input { flex: 1; min-width: 0; }
.tel-split { align-items: center; }
.tel-split input { text-align: center; flex: 1; }
.tel-sep { color: var(--text-light); }

.cart-submit-btn {
  background: #e0447a;
  color: #fff;
  border: none;
  padding: 14px 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.cart-submit-btn:hover { background: #c7365f; }

.confirm-view { max-width: 640px; margin: 0 auto; }
.confirm-view .info-table th { width: 160px; }

.map-embed {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed.map-embed-tall { height: 340px; }

@media (max-width: 640px) {
  .cart-items { grid-template-columns: repeat(2, 1fr); }
  .form-row-split { flex-direction: column; }
  .tel-split { flex-direction: row; }
}

/* mobile nav drawer */
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 12px 24px 24px;
  gap: 4px;
}
.nav.open a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
