/* ==========================================================================
   Page-Specific Styles for "当社について" (About Us) Page
   Overhauled with premium Cocoyoka Brand Green (#019d79) and friendly layout
   ========================================================================== */

:root {
  --primary: #019d79;
  --primary-light: #f2faf6;
  --primary-hover: #008465;
  --accent: #e67e22;
  --accent-light: #fff9f5;
  --accent-hover: #d35400;
  --bg-soft: #fbfdfc;
  --text-main: #2c2c2c;
  --text-muted: #666666;
  --border: #e2efe9;
  --shadow: rgba(1, 157, 121, 0.04);
  --shadow-lg: rgba(1, 157, 121, 0.08);
  --font-family: 'Zen Maru Gothic', 'Outfit', 'Noto Sans JP', sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
  --radius-lg: 28px;
}

/* Global Page Body adjustments */
.about-page-body {
  background-color: #ffffff;
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.8;
}

.about-section {
  padding: 6rem 0;
}

.about-section-bg {
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-section-subtitle-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(1, 157, 121, 0.15);
}

/* ==========================================================================
   Section Header Styling
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-title-badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(230, 126, 34, 0.15);
  text-transform: uppercase;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted) !important;
  line-height: 1.8;
  font-weight: 500;
}

/* ==========================================================================
   1. About Page Hero Section (Asymmetric Brand Green Grid)
   ========================================================================== */
.about-hero {
  position: relative;
  background-color: #f7faf9;
  overflow: hidden;
  padding: 6rem 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
}

.about-hero-left {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(1, 157, 121, 0.2);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.about-hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 1.8rem;
  color: var(--primary);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.about-hero-title .hero-subtext {
  font-size: 1.35rem;
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.about-hero-mark {
  background: linear-gradient(transparent 60%, rgba(1, 157, 121, 0.15) 0%);
  color: var(--primary);
  padding: 0 0.15em;
}

.about-hero-desc {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 500;
}

/* Premium Representative Card inside Hero (Overhauled without Image) */
.about-hero-rep-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbf9 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem 2.2rem;
  box-shadow: 0 20px 50px var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  transition: var(--transition);
}

/* Elegant Top Color Ribbon matching the rest of the site */
.about-hero-rep-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.about-hero-rep-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(1, 157, 121, 0.12);
}

.about-hero-rep-meta {
  text-align: center;
  border-bottom: 1.5px dashed rgba(1, 157, 121, 0.15);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-hero-rep-title {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  background-color: var(--accent-light);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(230, 126, 34, 0.15);
  margin-bottom: 0.5rem;
}

.about-hero-rep-name {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0.35rem 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.05em;
}

.about-hero-rep-kana {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

/* Hero Stats Rows underneath */
.about-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.about-hero-stat-card {
  background: #ffffff;
  border: 1px solid rgba(1, 157, 121, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.about-hero-stat-card:hover {
  background: var(--primary-light);
  border-color: rgba(1, 157, 121, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 157, 121, 0.06);
}

.about-hero-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.about-hero-stat-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.about-hero-stat-val span {
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.1rem;
}

.about-hero-stat-card:hover .about-hero-stat-label {
  color: var(--primary);
}

.about-hero-stat-card:hover .about-hero-stat-val {
  color: var(--accent);
}

/* ==========================================================================
   2. Breadcrumb
   ========================================================================== */
.about-breadcrumb-bar {
  background-color: #f7faf9;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.about-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-breadcrumb li a {
  color: var(--primary);
  transition: var(--transition);
  text-decoration: none;
}

.about-breadcrumb li a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.about-breadcrumb li::after {
  content: '>';
  margin-left: 0.5rem;
  color: #a8a29e;
}

.about-breadcrumb li:last-child::after {
  content: '';
}

.about-breadcrumb li:last-child {
  color: var(--text-main);
  pointer-events: none;
}

/* ==========================================================================
   3. CEO Greetings Section (Premium Message & Card Grid)
   ========================================================================== */
.about-ceo-letter-wrapper {
  max-width: 1040px;
  margin: 0 auto;
}

.about-ceo-letter-card {
  background-color: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: 0 20px 45px var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.about-ceo-letter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.about-ceo-letter-card:hover {
  border-color: var(--primary);
  box-shadow: 0 25px 55px rgba(1, 157, 121, 0.12);
}

.ceo-message-flow {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.ceo-message-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  background-color: #ffffff;
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.ceo-message-block:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 45px rgba(1, 157, 121, 0.1);
}

.ceo-message-block:nth-child(even) {
  flex-direction: row-reverse;
}

.ceo-message-img-box {
  flex: 0 0 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  aspect-ratio: 1.4;
}

.ceo-message-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.ceo-message-block:hover .ceo-message-img-box img {
  transform: scale(1.05) rotate(1deg);
}

.ceo-message-text-box {
  flex: 1;
}

.ceo-message-text-box p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.ceo-message-text-box p:last-child {
  margin-bottom: 0;
}

.ceo-message-text-box strong {
  color: var(--primary);
  font-weight: 900;
}

.ceo-message-text-box .highlight-text {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  border-left: 6px solid var(--accent);
  box-shadow: 0 8px 20px rgba(1, 157, 121, 0.12);
  margin: 2rem 0;
  line-height: 1.7;
}

.about-ceo-signature-block {
  margin-top: 3rem;
  text-align: right;
  border-top: 1px dashed var(--border);
  padding-top: 1.5rem;
}

.ceo-signature-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.ceo-signature-name {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.1em;
}

.ceo-signature-kana {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   4. Core Values Section (私たちのこだわり)
   ========================================================================== */
.about-values-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-value-card {
  background-color: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 40px var(--shadow);
  gap: 4rem;
}

.about-value-card:nth-child(even) {
  flex-direction: row-reverse;
}

.about-value-text-wrap {
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Numerical indicators inside commitment cards */
.about-value-card::before {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4.5rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
  transition: var(--transition);
}

.about-value-card:nth-child(even)::before {
  right: auto;
  left: 2rem;
}

.about-value-card:nth-child(1)::before { content: '01'; color: var(--accent); }
.about-value-card:nth-child(2)::before { content: '02'; color: var(--primary); }
.about-value-card:nth-child(3)::before { content: '03'; color: var(--primary); }
.about-value-card:nth-child(4)::before { content: '04'; color: var(--accent); }

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(1, 157, 121, 0.12);
}

.about-value-card:hover::before {
  transform: scale(1.1) translateY(-3px);
  opacity: 0.25;
}

.about-value-icon-box {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 0;
  transition: var(--transition);
  z-index: 2;
}

.about-value-card:nth-child(1) .about-value-icon-box { background-color: var(--accent-light); color: var(--accent); }
.about-value-card:nth-child(2) .about-value-icon-box { background-color: var(--primary-light); color: var(--primary); }
.about-value-card:nth-child(3) .about-value-icon-box { background-color: var(--primary-light); color: var(--primary); }
.about-value-card:nth-child(4) .about-value-icon-box { background-color: var(--accent-light); color: var(--accent); }

.about-value-card:hover .about-value-icon-box {
  transform: scale(1.1) rotate(6deg);
}

.about-value-card-title {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.02em;
}

.about-value-card:nth-child(1) .about-value-card-title { color: var(--accent) !important; }
.about-value-card:nth-child(2) .about-value-card-title { color: var(--primary) !important; }
.about-value-card:nth-child(3) .about-value-card-title { color: var(--primary) !important; }
.about-value-card:nth-child(4) .about-value-card-title { color: var(--accent) !important; }

.about-value-card-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-main) !important;
  font-weight: 500;
  margin: 0;
}

/* ==========================================================================
   5. Interactive Timeline Section (沿革 - Premium Horizontal Flow)
   ========================================================================== */
.about-timeline-flow {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 4rem;
  gap: 2.5rem;
  max-width: 800px;
  margin: 4rem auto 0;
}

/* Timeline center connector line */
.about-timeline-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px; /* center of the 80px dot */
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 1;
  border-radius: 4px;
}

.about-timeline-node {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  z-index: 2;
  gap: 2rem;
}

.about-timeline-dot-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px var(--shadow-lg);
  margin-bottom: 0;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-timeline-node:hover .about-timeline-dot-box {
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.15);
}

.about-timeline-date {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.about-timeline-node:hover .about-timeline-date {
  color: var(--accent);
}

.about-timeline-flow .highlight-node .about-timeline-dot-box {
  border-color: var(--accent);
  background-color: var(--accent-light);
}

.about-timeline-flow .highlight-node .about-timeline-date {
  color: var(--accent);
}

.about-timeline-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 25px var(--shadow);
  transition: var(--transition);
  height: calc(100% - 110px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-timeline-node:hover .about-timeline-card {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px var(--shadow-lg);
}

.about-timeline-node.highlight-node:hover .about-timeline-card {
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.12);
}

.about-timeline-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.45;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.about-timeline-node:hover .about-timeline-title {
  color: var(--accent);
}

.about-timeline-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   6. Trust Middle Banner (初めてのリフォームでも安心)
   ========================================================================== */
.about-trust-section {
  padding: 5rem 0;
  background-color: var(--primary-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.about-trust-wrapper {
  max-width: 1040px;
  margin: 0 auto;
}

.about-trust-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 20px 45px var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.about-trust-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-trust-left {
  text-align: left;
}

.about-trust-badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(230, 126, 34, 0.15);
}

.about-trust-title {
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.about-trust-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.about-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.about-trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(1, 157, 121, 0.08);
}

.about-trust-item:hover .about-trust-icon-box {
  background: var(--accent-light);
  color: var(--accent);
  transform: scale(1.08);
}

.about-trust-text-box {
  display: flex;
  flex-direction: column;
}

.about-trust-item-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.15rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.about-trust-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* Trust Right: Image decoration */
.about-trust-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.trust-deco-img-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 4px solid #ffffff;
  aspect-ratio: 1.5;
}

.trust-youtube-box {
  background: var(--accent-light);
  border: 1px dashed rgba(230, 126, 34, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.trust-yt-icon {
  font-size: 2.25rem;
  color: #ff0000;
  display: flex;
  align-items: center;
}

.trust-yt-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.15rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.trust-yt-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   7. Company Profile Section & Access Guide
   ========================================================================== */
.about-profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.about-profile-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-profile-table-wrapper {
  background-color: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px var(--shadow-lg);
  transition: var(--transition);
}

.about-profile-table-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 0 25px 55px rgba(1, 157, 121, 0.12);
}

.about-profile-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.about-profile-table th, .about-profile-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
}

.about-profile-table tr:last-child th, .about-profile-table tr:last-child td {
  border-bottom: none;
}

.about-profile-table th {
  background-color: var(--primary-light);
  color: var(--primary) !important;
  font-weight: 800;
  width: 25%;
  white-space: nowrap;
  vertical-align: middle;
  border-right: 1px solid var(--border);
}

.about-profile-table td {
  color: var(--text-main) !important;
  font-weight: 500;
  line-height: 1.8;
}

.about-profile-table td ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-profile-table td ul li {
  margin-bottom: 0.4rem;
  color: var(--text-main) !important;
  font-weight: 500;
}

.about-profile-table td ul li:last-child {
  margin-bottom: 0;
}

.profile-tel-link {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.profile-tel-link:hover {
  color: var(--accent);
  transform: scale(1.05);
}

/* ==========================================================================
   会社概要：スタイリッシュなチップス/バッジデザイン
   ========================================================================== */
.profile-company-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 0.35rem;
}

.profile-zip {
  display: inline-block;
  background-color: var(--bg-soft);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.15rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
  border: 1px solid rgba(1, 157, 121, 0.15);
}

/* チップスグリッド */
.profile-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.25rem 0;
}

/* 取り扱い工事チップス */
.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.profile-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.profile-chip.green {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}
.profile-chip.green:hover {
  background-color: #dcfce7;
}

.profile-chip.orange {
  background-color: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}
.profile-chip.orange:hover {
  background-color: #ffedd5;
}

.profile-chip.blue {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.profile-chip.blue:hover {
  background-color: #dbeafe;
}

.profile-chip.purple {
  background-color: #faf5ff;
  color: #6b21a8;
  border-color: #e9d5ff;
}
.profile-chip.purple:hover {
  background-color: #f3e8ff;
}

.chip-icon {
  font-size: 1.1rem;
}

/* 施工エリアチップス（すっきりとした極細ボーダー） */
.profile-chip-area {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  background-color: #ffffff;
  color: var(--primary);
  border: 1.5px solid rgba(1, 157, 121, 0.35);
  box-shadow: 0 2px 6px rgba(1, 157, 121, 0.02);
  transition: var(--transition);
}

.profile-chip-area:hover {
  background-color: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(1, 157, 121, 0.15);
}

/* 許認可・加盟団体リスト */
.profile-license-list,
.profile-union-list {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.profile-license-list li,
.profile-union-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-main) !important;
}

.profile-license-list li:last-child,
.profile-union-list li:last-child {
  margin-bottom: 0;
}

.profile-license-list li::before,
.profile-union-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.92rem;
}

/* Right Side: Building Photo and Accessibility Guide */
.about-profile-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-showroom-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 45px var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.about-showroom-card:hover {
  border-color: var(--primary);
  box-shadow: 0 25px 55px rgba(1, 157, 121, 0.12);
}

.about-showroom-img-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1.6;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

.about-showroom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-showroom-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.about-showroom-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Accessibility Card */
.about-accessibility-info {
  background-color: var(--accent-light);
  border: 1.5px solid rgba(230, 126, 34, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  text-align: left;
}

.about-accessibility-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(230, 126, 34, 0.08);
  border-color: rgba(230, 126, 34, 0.3);
}

.access-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent) !important;
  margin-bottom: 1.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  border-bottom: 3px solid rgba(230, 126, 34, 0.15);
  padding-bottom: 0.75rem;
  display: block;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-main) !important;
  list-style: none;
}

.access-list li {
  line-height: 1.7;
  color: var(--text-main) !important;
  font-weight: 500;
  position: relative;
  padding-left: 1.75rem;
}

.access-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.15rem;
}

.access-list li:nth-child(1)::before { content: '🚗'; }
.access-list li:nth-child(2)::before { content: '🚃'; }
.access-list li:nth-child(3)::before { content: '🚌'; }

.access-list li strong {
  color: var(--accent) !important;
  font-weight: 800;
}

/* Map card underneath */
.about-map-wrapper {
  grid-column: span 2;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 50px var(--shadow-lg);
  transition: var(--transition);
}

.about-map-wrapper:hover {
  box-shadow: 0 25px 60px rgba(1, 157, 121, 0.12);
  transform: translateY(-2px);
}

/* ==========================================================================
   8. CTA Banner
   ========================================================================== */
.about-cta-section {
  padding: 3rem 0 6rem;
}

.about-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4.5rem 3.5rem;
  text-align: center;
  box-shadow: 0 20px 45px rgba(1, 157, 121, 0.2);
  position: relative;
  overflow: hidden;
}

/* Explicit style overrides to block theme-related text washing out on green BG */
.about-cta-card h2.about-cta-title {
  color: #ffffff !important;
  font-weight: 900;
}

.about-cta-card p.about-cta-desc {
  color: #ffffff !important;
  opacity: 0.96 !important;
  font-weight: 500;
}

.about-cta-card p.about-cta-tel-text {
  color: #ffffff !important;
  opacity: 0.96 !important;
  font-weight: 500;
}

.about-cta-card .about-cta-tel-link {
  color: #ffffff !important;
  font-weight: 900;
  text-decoration: underline;
}

.about-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 249, 245, 0.15) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
}

.about-cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.about-cta-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 840px;
  margin: 0 auto 3rem;
  opacity: 0.92;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.about-cta-buttons .btn {
  font-size: 1.15rem;
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.about-cta-buttons .btn-accent {
  background-color: var(--accent);
  color: #ffffff !important;
}

.about-cta-buttons .btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.35);
}

.about-cta-buttons .btn-line {
  background-color: #06c755;
  color: #ffffff !important;
}

.about-cta-buttons .btn-line:hover {
  background-color: #05b04b;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(6, 199, 85, 0.35);
}

.about-cta-tel-text {
  font-size: 1rem;
  opacity: 0.95;
}

.about-cta-tel-link {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.45rem;
  text-decoration: underline;
  transition: var(--transition);
}

.about-cta-tel-link:hover {
  opacity: 0.8;
}

/* ==========================================================================
   9. Responsive Media Queries
   ========================================================================== */

/* Tablet & Smaller Screens */
@media screen and (max-width: 1024px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-left {
    text-align: center;
  }

  .about-hero-desc {
    margin: 0 auto;
  }

  .about-ceo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ceo-letter-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .ceo-deco-img-box {
    aspect-ratio: 1.3;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-timeline-flow {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-timeline-flow::before {
    display: none;
  }

  .about-timeline-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 1.5rem;
  }

  .about-timeline-dot-box {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .about-timeline-card {
    height: auto;
    width: 100%;
  }

  .about-trust-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-showroom-img-box {
    aspect-ratio: 2;
  }

  .about-map-wrapper {
    grid-column: span 1;
    height: 340px;
  }
}

/* Smartphone Screens */
@media screen and (max-width: 767px) {
  .about-section {
    padding: 3.5rem 0;
  }

  .about-hero {
    padding: 4rem 0;
  }

  .about-hero-title {
    font-size: 2.15rem;
  }

  .about-hero-title .hero-subtext {
    font-size: 1.15rem;
  }

  .ceo-message-flow {
    gap: 2rem;
  }

  .ceo-message-block, .ceo-message-block:nth-child(even) {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .ceo-message-img-box {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1.5;
  }

  .ceo-message-text-box .highlight-text {
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
  }

  .about-values-grid {
    gap: 2rem;
  }

  .about-value-card,
  .about-value-card:nth-child(even) {
    padding: 2.5rem 1.75rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .about-value-icon-box {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
    margin: 0 auto;
  }

  .about-value-card::before,
  .about-value-card:nth-child(even)::before {
    font-size: 3rem;
    top: 1rem;
    right: 1.5rem;
    left: auto;
  }

  .about-value-card-title {
    font-size: 1.25rem;
  }

  .about-timeline-node {
    gap: 1rem;
  }

  .about-timeline-dot-box {
    width: 50px;
    height: 50px;
  }

  .about-trust-card {
    padding: 2.5rem 1.5rem;
  }

  .about-trust-title {
    font-size: 1.75rem;
  }

  .about-trust-item-title {
    font-size: 1rem;
  }

  .about-profile-table th, .about-profile-table td {
    padding: 1.2rem 1.25rem;
  }

  .about-profile-table th {
    width: 100%;
    display: block;
    border-right: none;
    border-bottom: 1px dashed var(--border);
  }

  .about-profile-table td {
    display: block;
  }

  .about-cta-card {
    padding: 3rem 1.5rem;
  }

  .about-cta-title {
    font-size: 1.65rem;
  }

  .about-cta-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .about-cta-buttons .btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 1.15rem 2rem;
    justify-content: center;
  }

  .about-cta-tel-link {
    font-size: 1.25rem;
  }
}
