:root {
  --moss-green: #4a6d54;
  --tea-green: #e9eee0;
  --washi-cream: #fbfaf5;
  --sumi-black: #333333;
  --soft-border: #d1d9c2;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--washi-cream);
  color: var(--sumi-black);
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  letter-spacing: 0.01em;
}
img{
  width:100%;
}
h1,
h2,
h3,
h4,
.serif-jp {
  font-family: 'Shippori Mincho', serif;
}

.section {
  padding: 7.2rem 2.4rem;
}

@media (min-width: 768px) {
  .section {
    padding: 9.6rem 4rem;
  }
}

.section-soft {
  background: linear-gradient(180deg, rgba(233, 238, 224, 0.32), rgba(233, 238, 224, 0.08));
}

.l-shell {
  margin: 0 auto;
}

.l-shell.narrow {
  max-width: 1200px;
}

.l-shell.wide {
  max-width: 1400px;
}

.section-heading {
  text-align: center;
  margin-bottom: 4.8rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1.4;
}

.section-note {
  text-align: center;
  color: #333;
  background: #fff;
  border: 2px solid #4a6d54;
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 28px;
  line-height: 1.9;
  font-size: 2.4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-note .text-red {
  color: #e74c3c;
  font-weight: 700;
}

.section-note .text-green {
  color: #4a6d54;
  font-weight: 700;
}

.qa-intro {
  text-align: center;
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

.qa-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
  margin-bottom: 3.2rem;
}

@media (min-width: 768px) {
  .qa-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.qa-item {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 14px;
  padding: 2.4rem 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qa-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(74, 109, 84, 0.12);
}

.qa-icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(74, 109, 84, 0.12);
  display: grid;
  place-items: center;
}

.qa-icon .material-symbols-outlined {
  color: #4a6d54;
  font-size: 2.8rem;
}

.qa-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #333;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  padding: 2.8rem;
}

.card p {
  margin-bottom: 1.2rem;
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.8;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-emphasis {
  padding: 3.2rem;
  border-left: 6px solid var(--moss-green);
}

.muted {
  color: rgba(51, 51, 51, 0.6);
}

.inline-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}

.inline-list li {
  display: inline-block;
  margin: 0.6rem 1rem;
  padding: 0.8rem 1.4rem;
  background: rgba(74, 109, 84, 0.08);
  border-radius: 999px;
  font-size: 1.5rem;
  color: rgba(51, 51, 51, 0.8);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
  padding: 1.8rem 4rem;
  background: var(--moss-green);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--moss-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(74, 109, 84, 0.28);
}

.btn-icon {
  font-size: 2.4rem;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(74, 109, 84, 0.22);
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.shoji-grid {
  border: 1px solid var(--soft-border);
  background: linear-gradient(to bottom, transparent 99%, var(--soft-border) 99%),
    linear-gradient(to right, transparent 99%, var(--soft-border) 99%);
  background-size: 80px 80px;
}

.btn-craft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  background: #fff;
  color: var(--moss-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 109, 84, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-craft:hover {
  background: var(--moss-green);
  color: #fff;
  border-color: var(--moss-green);
}

/* Hero */
.bg-hero {
  background: radial-gradient(80% 140% at 50% 0%, rgba(233, 238, 224, 0.6), rgba(233, 238, 224, 0));
}

.hero-grid {
  display: grid;
  gap: 3.2rem;
  max-width: 1180px;
  padding: 1.6rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.45;
  margin-bottom: 3.2rem;
  text-align: center;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-body {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.2rem;
  }
}

.hero-body-visual {
  border-radius: 12px;
  overflow: hidden;
}
.hero-body-visual img{
  width: 100%;
  max-width: 48rem;
  height: auto;
  object-fit: cover;
}

.hero-body-text p {
  margin-bottom: 1rem;
  color: rgba(51, 51, 51, 0.82);
  line-height: 1.8;
  font-size:1.6rem;
}

.hero-cta {
  background: var(--moss-green);
  color: #fff;
  border-radius: 18px;
  padding: 3.2rem 2.8rem;
  box-shadow: 0 14px 28px rgba(74, 109, 84, 0.28);
  text-align: center;
}

.hero-cta .cta-label {
  letter-spacing: 0.14em;
  font-size: 1.3rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.hero-cta .cta-phone {
  display: block;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.6rem;
}

.hero-cta .cta-phone:hover {
  text-decoration: underline;
}

.hero-cta .cta-note {
  font-size: 1.3rem;
  opacity: 0.82;
}

/* Troubles */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  display: grid;
  gap: 1.4rem;
}

.list-check li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  padding: 1.6rem 1.8rem;
  border-radius: 14px;
  border: 1px solid rgba(74, 109, 84, 0.12);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.03);
}

.list-check .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 2.2rem;
}

.list-check span:last-child {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
}
.list-check .detail{
  font-weight:bold;
}

/* Services */
.service-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px 1fr;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(74, 109, 84, 0.16);
}

.service-visual {
  background: linear-gradient(135deg, rgba(74, 109, 84, 0.08), rgba(233, 238, 224, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 6rem;
}

.service-body {
  padding: 2.2rem 2.2rem 2.6rem;
}

.service-body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.service-body p {
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.link-line {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--moss-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 109, 84, 0.35);
  padding-bottom: 0.3rem;
}

.link-line:hover {
  border-color: var(--moss-green);
}

/* Reasons */
.reason-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.6rem;
  display: grid;
  gap: 1.2rem;
}

.reason-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  color: rgba(51, 51, 51, 0.82);
}

.reason-list .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 2rem;
}

.highlight-title {
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--moss-green);
  text-align: center;
  margin-bottom: 2.8rem;
  line-height: 1.4;
}

.highlight-panel {
  background: #fff;
  color: #333;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 16px;
  padding: 2.8rem;
  box-shadow: 0 14px 28px rgba(74, 109, 84, 0.1);
}

.highlight-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

@media (min-width: 768px) {
  .highlight-content {
    grid-template-columns: 1fr 1.3fr;
  }
}

.highlight-visual {
  border-radius: 12px;
  overflow: hidden;
}

.highlight-text p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.highlight-text .note {
  font-size: 1.3rem;
  color: rgba(51, 51, 51, 0.65);
  margin-top: 0.8rem;
}

/* Flow */
.flow-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2.2rem;
}

.flow-step {
  text-align: center;
  padding: 1.6rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.03);
}

.step-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--moss-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.flow-step p {
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.6;
}

/* Access */
.access-grid {
  display: grid;
  gap: 3.4rem;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1180px;
}

@media (min-width: 960px) {
  .access-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.access-heading {
  font-size: 1.4rem;
  letter-spacing: 0.42em;
  color: var(--moss-green);
  margin-bottom: 2.6rem;
  text-transform: uppercase;
}

.access-info {
  display: grid;
  gap: 1.8rem;
}

.access-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.access-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.access-block .material-symbols-outlined {
  color: var(--moss-green);
  margin-top: 0.4rem;
}

.label-en {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: rgba(74, 109, 84, 0.7);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.access-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.access-title a {
  color: inherit;
  text-decoration: none;
}

.access-title a:hover {
  text-decoration: underline;
}

.access-text {
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.7;
}

.map-frame {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
  min-height: 500px;
}

.map-frame img {
  min-height: 360px;
  filter: grayscale(30%);
  transition: filter 0.6s ease;
}

.map-frame img:hover {
  filter: grayscale(0%);
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #4a6d54, #3d5c46);
  color: #fff;
}

.contact-title {
  font-size: clamp(2.8rem, 3.4vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.contact-title span {
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.contact-lead {
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.contact-note {
  margin-top: 1.6rem;
  font-size: 1.7rem;
  line-height: 1.8;
}

/* Contact page */
.page-title {
  font-size: clamp(3rem, 3.6vw, 4.2rem);
  letter-spacing: 0.08em;
  color: var(--moss-green);
  margin: 0.6rem 0 0.6rem;
}

.page-sub {
  color: rgba(51, 51, 51, 0.72);
  font-size: 1.7rem;
}

.lead-line {
  font-size: 2rem;
  color: rgba(51, 51, 51, 0.82);
  margin-bottom: 0.8rem;
}

.lead-strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--moss-green);
}

.contact-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 16px;
  padding: 2.6rem 2.4rem;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(74, 109, 84, 0.12);
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}

.contact-card .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 3rem;
}

.contact-card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0.6rem 0;
  letter-spacing: 0.04em;
}

.contact-meta {
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 1rem;
}

.contact-desc {
  color: rgba(51, 51, 51, 0.75);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.14);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .form-card {
    padding: 2.6rem 2.4rem;
  }
}

.field {
  margin-bottom: 1.8rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: rgba(51, 51, 51, 0.9);
}

.field input,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(74, 109, 84, 0.22);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--moss-green);
  box-shadow: 0 0 0 3px rgba(74, 109, 84, 0.16);
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.required {
  color: var(--moss-green);
}

.field-note {
  color: rgba(51, 51, 51, 0.55);
  font-size: 1.3rem;
  margin-top: 0.6rem;
}

/* Form Result Messages */
.form-result {
  margin-bottom: 2rem;
  border-radius: 12px;
  padding: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}

.result-success {
  background: rgba(74, 109, 84, 0.08);
  border: 2px solid var(--moss-green);
  color: var(--moss-green);
}

.result-error {
  background: rgba(231, 76, 60, 0.08);
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.choice-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(74, 109, 84, 0.14);
  border-radius: 10px;
  background: rgba(233, 238, 224, 0.14);
  cursor: pointer;
}

.choice input {
  width: 18px;
  height: 18px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  color: rgba(51, 51, 51, 0.76);
}

.form-actions {
  text-align: center;
  margin-top: 1rem;
}

.dummy {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dummy--hero {
  aspect-ratio: 16 / 6;
}

.dummy--section {
  aspect-ratio: 3 / 2;
}

.dummy--card {
  aspect-ratio: 4 / 3;
}

.dummy--square,
.dummy--thumb {
  aspect-ratio: 1 / 1;
}

.hero-visual {
  margin-bottom: 3.2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  min-height: 32rem;
  background-image: url(/images/main_image1.jpg);
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .hero-visual {
    min-height: 48rem;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.4rem 1.6rem;
}

@media (min-width: 768px) {
  .hero-overlay {
    padding: 4rem 2.4rem;
  }
}

.hero-lead {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  color: #fff;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-brand {
  font-size: clamp(3.6rem, 5vw, 6.8rem);
  font-weight: 800;
  color: #ffde59;
  margin: 0 0 2.4rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-main {
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Header */
.site-header {
  width: 100%;
  background: rgba(251, 250, 245, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(74, 109, 84, 0.1);
}

.site-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3.2rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-header .container {
    padding: 0 4.8rem;
  }
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
  max-width: calc(100% - 6rem);
}

.site-brand-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-brand-icon .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 3rem;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  color: var(--moss-green);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .site-title {
    font-size: 2rem;
  }
}

.site-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .site-subtitle {
    font-size: 0.9rem;
  }
}

/* Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}

.nav-link {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: inherit;
  text-decoration: none;
  padding: 0.8rem 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--moss-green);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: inherit;
  text-decoration: none;
  padding: 0.8rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-dropdown-trigger:hover {
  color: var(--moss-green);
}

.nav-dropdown-trigger .material-symbols-outlined {
  font-size: 1.2rem;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 109, 84, 0.1);
  min-width: 22rem;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.4rem);
  pointer-events: none;
  transition: all 0.15s ease-out;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(74, 109, 84, 0.1);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: rgba(233, 238, 224, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(74, 109, 84, 0.1);
  border: 1px solid rgba(74, 109, 84, 0.2);
  border-radius: 0.8rem;
  cursor: pointer;
  gap: 0.6rem;
  z-index: 60;
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.menu-bar {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--moss-green);
  border-radius: 0.2rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}

.mobile-menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 32rem;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 2rem 2rem;
    gap: 0;
    transition: transform 0.3s ease;
    z-index: 50;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
  }

  .main-nav.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(74, 109, 84, 0.12);
    font-size: 1.5rem;
  }

  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(74, 109, 84, 0.12);
  }

  .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1.6rem 0;
    font-size: 1.5rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(233, 238, 224, 0.2);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 30rem;
  }

  .dropdown-link {
    padding: 1.2rem 1.6rem;
    border-bottom: none;
  }

  .nav-dropdown-trigger .material-symbols-outlined {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-trigger .material-symbols-outlined {
    transform: rotate(180deg);
  }
}

/* Footer */
.site-footer {
  background: var(--washi-cream);
  padding: 9.6rem 3.2rem 4.8rem;
  border-top: 1px solid rgba(74, 109, 84, 0.1);
}

@media (min-width: 768px) {
  .site-footer {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.4rem;
  margin-bottom: 9.6rem;
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 5fr 7fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}

.footer-brand-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 2.4rem;
}

.footer-brand-title {
  color: var(--moss-green);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-description {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.4rem;
  line-height: 2;
  max-width: 32rem;
  margin-bottom: 3.2rem;
}

.footer-social {
  display: flex;
  gap: 2.4rem;
}

.footer-social-link {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(74, 109, 84, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-green);
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--moss-green);
}

.footer-social-link .material-symbols-outlined {
  font-size: 2rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-links-col h5 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 3.2rem;
  color: var(--moss-green);
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 1.6rem;
}

.footer-links-col a {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--moss-green);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 4.8rem;
  border-top: 1px solid rgba(74, 109, 84, 0.1);
  gap: 2.4rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(51, 51, 51, 0.4);
}

.footer-legal {
  display: flex;
  gap: 3.2rem;
}

.footer-legal a {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(51, 51, 51, 0.4);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--moss-green);
}

/* Utility classes (migrated from Tailwind) */
.text-primary {
  color: var(--moss-green);
}

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

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.hidden {
  display: none;
}

.w-full {
  width: 100%;
}

/* Utility classes (migrated from Tailwind) */

/* Layout */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.gap-4 { gap: 0.4rem; }
.gap-6 { gap: 0.6rem; }
.gap-8 { gap: 0.8rem; }
.space-y-4 > * + * { margin-top: 0.4rem; }

/* Spacing - padding */
.p-4 { padding: 0.4rem; }
.p-6 { padding: 0.6rem; }
.p-8 { padding: 0.8rem; }
.p-10 { padding: 1rem; }
.p-12 { padding: 1.2rem; }
.px-6 { padding-left: 0.6rem; padding-right: 0.6rem; }
.px-8 { padding-left: 0.8rem; padding-right: 0.8rem; }
.px-12 { padding-left: 1.2rem; padding-right: 1.2rem; }
.py-2 { padding-top: 0.2rem; padding-bottom: 0.2rem; }
.py-4 { padding-top: 0.4rem; padding-bottom: 0.4rem; }
.py-5 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-6 { padding-top: 0.6rem; padding-bottom: 0.6rem; }
.py-8 { padding-top: 0.8rem; padding-bottom: 0.8rem; }
.py-10 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 1.6rem; padding-bottom: 1.6rem; }
.py-20 { padding-top: 2rem; padding-bottom: 2rem; }
.py-24 { padding-top: 2.4rem; padding-bottom: 2.4rem; }
.py-32 { padding-top: 3.2rem; padding-bottom: 3.2rem; }
.pt-6 { padding-top: 0.6rem; }
.pt-8 { padding-top: 0.8rem; }
.pb-4 { padding-bottom: 0.4rem; }
.pl-4 { padding-left: 0.4rem; }
.pl-6 { padding-left: 0.6rem; }

/* Spacing - margin */
.m-4 { margin: 0.4rem; }
.m-6 { margin: 0.6rem; }
.m-8 { margin: 0.8rem; }
.m-12 { margin: 1.2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.2rem; }
.mt-4 { margin-top: 0.4rem; }
.mt-6 { margin-top: 0.6rem; }
.mt-8 { margin-top: 0.8rem; }
.mr-2 { margin-right: 0.2rem; }
.mb-2 { margin-bottom: 0.2rem; }
.mb-4 { margin-bottom: 0.4rem; }
.mb-6 { margin-bottom: 0.6rem; }
.mb-8 { margin-bottom: 0.8rem; }
.mb-10 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 1.2rem; }
.mb-16 { margin-bottom: 1.6rem; }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-xs { font-size: 1.2rem; }
.text-sm { font-size: 1.4rem; }
.text-base { font-size: 1.6rem; }
.text-lg { font-size: 1.8rem; }
.text-xl { font-size: 2rem; }
.text-2xl { font-size: 2.4rem; }
.text-3xl { font-size: 3rem; }
.text-4xl { font-size: 3.6rem; }
.text-5xl { font-size: 4.2rem; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-02em { letter-spacing: 0.2em; }
.tracking-06em { letter-spacing: 0.6em; }
.underline { text-decoration: underline; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-12 { width: 1.2rem; }
.h-12 { height: 1.2rem; }
.max-w-none { max-width: none; }
.max-w-650 { max-width: 650px; }
.max-w-1000 { max-width: 1000px; }
.max-w-1400 { max-width: 1400px; }

/* Colors */
.text-white { color: #fff; }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.bg-white { background-color: #fff; }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.text-sumi { color: #333; }
.text-sumi-60 { color: rgba(51, 51, 51, 0.6); }
.text-sumi-70 { color: rgba(51, 51, 51, 0.7); }
.text-sumi-80 { color: rgba(51, 51, 51, 0.8); }
.bg-tea-10 { background-color: rgba(233, 238, 224, 0.1); }
.bg-tea-20 { background-color: rgba(233, 238, 224, 0.2); }
.bg-tea-30 { background-color: rgba(233, 238, 224, 0.3); }
.bg-primary { background-color: #4a6d54; }
.bg-primary-5 { background-color: rgba(74, 109, 84, 0.05); }
.bg-primary-10 { background-color: rgba(74, 109, 84, 0.1); }

/* Borders */
.border { border: 1px solid currentColor; }
.border-t { border-top: 1px solid currentColor; }
.border-b { border-bottom: 1px solid currentColor; }
.border-r { border-right: 1px solid currentColor; }
.border-l { border-left: 1px solid currentColor; }
.border-white { border-color: #fff; }
.border-white-50 { border-color: rgba(255, 255, 255, 0.5); }
.border-primary-10 { border-color: rgba(74, 109, 84, 0.1); }
.border-primary-20 { border-color: rgba(74, 109, 84, 0.2); }
.border-primary-40 { border-color: rgba(74, 109, 84, 0.4); }
.rounded-lg { border-radius: 0.8rem; }
.rounded-full { border-radius: 9999px; }

/* Effects */
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

/* Position & overflow */
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.z-10 { z-index: 10; }

/* Display */
.hidden { display: none; }

/* Table */
.table { display: table; }

/* Aspect ratios */
.aspect-video { aspect-ratio: 16 / 9; }

/* Transition */
.transition-all { transition: all 0.2s ease; }

/* Hover states */
.hover-bg-transparent:hover { background-color: transparent; }
.hover-bg-primary:hover { background-color: #4a6d54; }
.hover-text-white:hover { color: #fff; }

/* Grayscale */
.grayscale-30 { filter: grayscale(30%); }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Grid */
.grid { display: grid; }

/* Responsive utilities */
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-flex-row { flex-direction: row; }
  .md-inline { display: inline; }
  .md-hidden { display: none; }
  .md-items-start { align-items: flex-start; }
  .md-w-1-2 { width: 50%; }
  .md-w-1-3 { width: 33.333333%; }
  .md-w-2-3 { width: 66.666667%; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md-p-8 { padding: 0.8rem; }
  .md-p-10 { padding: 1rem; }
  .md-p-12 { padding: 1.2rem; }
  .md-p-16 { padding: 1.6rem; }
  .md-p-20 { padding: 2rem; }
  .md-px-12 { padding-left: 1.2rem; padding-right: 1.2rem; }
  .md-py-20 { padding-top: 2rem; padding-bottom: 2rem; }
  .md-py-24 { padding-top: 2.4rem; padding-bottom: 2.4rem; }
  .md-py-32 { padding-top: 3.2rem; padding-bottom: 3.2rem; }
  .md-text-base { font-size: 1.6rem; }
  .md-text-lg { font-size: 1.8rem; }
  .md-text-xl { font-size: 2rem; }
  .md-text-2xl { font-size: 2.4rem; }
  .md-text-3xl { font-size: 3rem; }
  .md-text-4xl { font-size: 3.6rem; }
  .md-text-5xl { font-size: 4.2rem; }
}

@media (min-width: 640px) {
  .sm-flex-row { flex-direction: row; }
}

.faqAnswer{
  padding:1rem 2rem;
}
div.faqBlock{
  margin-bottom:4rem;
}

/* Company Page */
.page-header {
  padding: 4.8rem 2rem;
  background: rgba(233, 238, 224, 0.3);
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.page-header h1 {
  font-size: clamp(3.6rem, 4vw, 4.8rem);
  font-weight: 600;
  text-align: center;
  color: var(--moss-green);
  letter-spacing: 0.08em;
}

.company-message {
  padding: 6rem 2rem;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--moss-green);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h3 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.message-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .message-content {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.portrait-frame {
  aspect-ratio: 3 / 4;
  background: rgba(233, 238, 224, 0.4);
  border: 1px solid rgba(74, 109, 84, 0.12);
  overflow: hidden;
  border-radius: 12px;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.message-text p {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.message-signature {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(74, 109, 84, 0.12);
}

.company-info {
  padding: 6rem 2rem;
  background: rgba(233, 238, 224, 0.3);
}

.company-details {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 14px;
  padding: 3rem;
}

@media (min-width: 768px) {
  .company-details {
    padding: 4rem;
  }
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

@media (min-width: 768px) {
  .info-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item dt {
  font-weight: 700;
  color: var(--moss-green);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .info-item dt {
    width: 33.333333%;
    flex-shrink: 0;
  }
}

.info-item dd {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.8;
}

.info-item dd ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-item dd li {
  padding: 0.5rem 0;
}

.company-access {
  padding: 6rem 2rem;
  background: #fff;
}

.access-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .access-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.access-info-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.access-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.access-item .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 3rem;
}

.address-text {
  font-size: 1.8rem;
  line-height: 1.7;
}

.contact-text {
  font-size: 1.8rem;
}

.recruitment {
  padding: 6rem 2rem;
  background: rgba(233, 238, 224, 0.15);
}

.recruitment-card {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(74, 109, 84, 0.2);
  background: #fff;
  padding: 3rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .recruitment-card {
    padding: 5rem;
  }
}

.recruitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25rem;
  height: 25rem;
  background: rgba(74, 109, 84, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.recruitment-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.recruitment-content h3 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.recruitment-content p {
  font-size: 1.6rem;
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.recruitment-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .recruitment-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  background: #fff;
  color: var(--moss-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 109, 84, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--moss-green);
  color: #fff;
  border-color: var(--moss-green);
}

.btn-secondary .material-symbols-outlined {
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .md-inline {
    display: inline;
  }
}

.hidden {
  display: none;
}

/* Service Pages */
.service-hero {
  padding: 4.8rem 2rem;
  background: linear-gradient(180deg, rgba(233, 238, 224, 0.4), rgba(233, 238, 224, 0));
}

@media (min-width: 768px) {
  .service-hero {
    padding: 6.4rem 2rem;
  }
}

.service-hero h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-hero h2 .md-hidden {
  display: none;
}

@media (min-width: 768px) {
  .service-hero h2 .md-hidden {
    display: inline;
  }
}

.service-hero p {
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box {
  background: #fff;
  border: 2px solid var(--moss-green);
  padding: 2rem 2.4rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(74, 109, 84, 0.12);
}

@media (min-width: 768px) {
  .cta-box {
    padding: 2.4rem 3rem;
  }
}

.cta-box p {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.cta-box p:first-child {
  color: var(--moss-green);
}

.cta-box p:nth-child(2) {
  color: #333;
  font-size: clamp(2.8rem, 3.5vw, 3.6rem);
  font-weight: 800;
}

.cta-box .text-highlight {
  font-size: clamp(2.8rem, 3.5vw, 3.6rem);
  font-weight: 800;
  color: #ff6b35;
}

.cta-note {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.8rem;
}

.service-troubles {
  padding: 4.8rem 2rem;
}

@media (min-width: 768px) {
  .service-troubles {
    padding: 6rem 2rem;
  }
}

.service-trouble-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: grid;
  gap: 1rem;
}

.service-trouble-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  padding: 1.6rem 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 109, 84, 0.12);
}

.service-trouble-list .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 2rem;
  flex-shrink: 0;
}

.service-trouble-list span:last-child {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
}

.trouble-note {
  text-align: center;
  font-size: 1.7rem;
  color: rgba(74, 109, 84, 0.8);
}

.service-about {
  padding: 4.8rem 2rem;
  background: rgba(233, 238, 224, 0.3);
}

@media (min-width: 768px) {
  .service-about {
    padding: 6rem 2rem;
  }
}

.service-target {
  padding: 4.8rem 2rem;
}

@media (min-width: 768px) {
  .service-target {
    padding: 6rem 2rem;
  }
}

.service-target-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.service-target-list.compact {
  gap: 0.8rem;
}

.service-target-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  padding: 1.6rem 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 109, 84, 0.12);
}

.service-target-list .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 2rem;
  flex-shrink: 0;
}

.service-target-list span:last-child {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
}

.contract-note {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.7);
  background: rgba(233, 238, 224, 0.3);
  padding: 1.2rem 1.6rem;
  border-radius: 10px;
}

.service-can-do {
  padding: 4.8rem 2rem;
}

@media (min-width: 768px) {
  .service-can-do {
    padding: 6.4rem 2rem;
  }
}

.can-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .can-do-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.can-do-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  padding: 2rem;
}

.can-do-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.can-do-card h4 .material-symbols-outlined {
  font-size: 2rem;
  color: var(--moss-green);
}

.can-do-card--cannot h4 {
  color: #e74c3c;
  border-bottom-color: rgba(231, 76, 60, 0.2);
}

.can-do-card--cannot h4 .material-symbols-outlined {
  color: #e74c3c;
}

.can-do-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.can-do-card ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
  padding: 0.6rem 0;
}

.can-do-card ul li span:first-child {
  color: var(--moss-green);
}

.can-do-note {
  text-align: center;
  background: rgba(233, 238, 224, 0.3);
  padding: 1.6rem;
  border-radius: 12px;
  font-size: 1.5rem;
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.7;
}

.service-flow {
  padding: 4.8rem 2rem;
  background: rgba(233, 238, 224, 0.3);
}

@media (min-width: 768px) {
  .service-flow {
    padding: 6.4rem 2rem;
  }
}

.service-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .service-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-flow-grid .flow-item {
  text-align: center;
}

.flow-note {
  text-align: center;
  color: rgba(74, 109, 84, 0.8);
}

.service-qa {
  padding: 4.8rem 2rem;
}

@media (min-width: 768px) {
  .service-qa {
    padding: 6.4rem 2rem;
  }
}

.qa-list {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 0;
}

.qa-item {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  display: block;
}

@media (min-width: 768px) {
  .qa-item {
    padding: 2rem 2.4rem;
  }
}

.qa-question {
  color: var(--moss-green);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.qa-answer {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
  padding-left: 1.2rem;
}

.service-cta {
  background: var(--moss-green);
  color: #fff;
  padding: 4.8rem 2rem;
}

@media (min-width: 768px) {
  .service-cta {
    padding: 6.4rem 2rem;
  }
}

.service-cta h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.service-cta p {
  font-size: clamp(1.8rem, 2.2vw, 2rem);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

.cta-box-white {
  background: rgba(255, 255, 255, 0.12);
  padding: 2rem 2.4rem;
  border-radius: 12px;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .cta-box-white {
    padding: 2.4rem 3rem;
  }
}

.cta-box-white p {
  margin-bottom: 0.8rem;
}

.cta-box-white .text-highlight {
  font-weight: 700;
}

.cta-final {
  background: #fff;
  color: var(--moss-green);
  padding: 2rem 2.4rem;
  border-radius: 12px;
  display: inline-block;
}

@media (min-width: 768px) {
  .cta-final {
    padding: 2.4rem 3rem;
  }
}

.cta-final p {
  margin-bottom: 0.6rem;
}

.taxi-badge {
  display: inline-block;
  background: var(--moss-green);
  color: #fff;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1.6rem;
}

@media (min-width: 768px) {
  .taxi-badge {
    font-size: 1.5rem;
  }
}

.staff-note {
  background: rgba(233, 238, 224, 0.3);
  padding: 1.8rem 2.2rem;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  margin-bottom: 2.4rem;
}

.staff-note p {
  line-height: 1.7;
}

.service-detail {
  padding: 4.8rem 2rem;
  background: rgba(233, 238, 224, 0.3);
}

@media (min-width: 768px) {
  .service-detail {
    padding: 6rem 2rem;
  }
}

.service-detail p.text-center {
  text-align: center;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 3rem;
}

.service-detail-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  padding: 1.8rem 2.2rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .service-detail-card {
    padding: 2.2rem 2.8rem;
  }
}

.service-detail-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.service-detail-card p {
  line-height: 1.7;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-card ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.service-detail-card ul li:last-child {
  border-bottom: none;
}

.service-detail-card ul li span:first-child {
  color: var(--moss-green);
}

.service-note {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.7;
  margin-top: 1.6rem;
}

.vehicle-list {
  display: grid;
  gap: 3rem;
}

.vehicle-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  padding: 1.8rem 2.2rem;
}

@media (min-width: 768px) {
  .vehicle-card {
    padding: 2.2rem 2.8rem;
  }
}

.vehicle-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.vehicle-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .vehicle-content {
    grid-template-columns: 1fr 1fr;
  }
}

.vehicle-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(74, 109, 84, 0.12);
}

.vehicle-simple {
  background: rgba(233, 238, 224, 0.3);
  padding: 1.8rem 2.2rem;
  border-radius: 12px;
}

.vehicle-text p {
  line-height: 1.7;
  display: grid;
  place-items: center;
}

.pricing-section {
  margin-bottom: 2.4rem;
}

.pricing-section h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.pricing-subtitle {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 1.4rem;
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 109, 84, 0.2);
}

.table-container table {
  margin-bottom: 0;
  border: none;
}

.pricing-table {
  width: 100%;
  min-width: 60rem;
  border: 1px solid rgba(74, 109, 84, 0.2);
  border-radius: 12px;
  overflow: hidden;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom:2rem;
}

.pricing-table thead {
  background: var(--moss-green);
  color: #fff;
}

.pricing-table th {
  padding: 1rem 1.4rem;
  text-align: center;
  font-weight: 500;
  width: 25%;
}

.pricing-table tbody {
  background: #fff;
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(74, 109, 84, 0.12);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(233, 238, 224, 0.2);
}

.pricing-table td {
  padding: 1rem 1.4rem;
  line-height: 1.6;
  text-align: center;
  width: 25%;
}

.pricing-cell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.pricing-note {
  background: rgba(233, 238, 224, 0.3);
  border: 1px solid rgba(74, 109, 84, 0.2);
  padding: 1.4rem 1.8rem;
  border-radius: 12px;
  margin-bottom: 1.6rem;
}

.pricing-note p {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
}

.pricing-info {
  margin-bottom: 1.6rem;
}

.pricing-info h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-info h4 .material-symbols-outlined {
  font-size: 1.8rem;
}

.pricing-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-info ul li {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.7;
  padding: 0.4rem 0;
}

.pricing-info-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  padding: 1.4rem 1.8rem;
  border-radius: 12px;
}

.pricing-info-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-info-card h4 .material-symbols-outlined {
  font-size: 1.8rem;
}

.pricing-info-card p {
  line-height: 1.7;
}

.service-roles {
  padding: 4.8rem 2rem;
}

@media (min-width: 768px) {
  .service-roles {
    padding: 6.4rem 2rem;
  }
}

.service-roles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
  .service-roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.role-card {
  background: #fff;
  border: 1px solid rgba(74, 109, 84, 0.12);
  border-radius: 12px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.role-card .material-symbols-outlined {
  color: var(--moss-green);
  font-size: 2.8rem;
}

.role-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--moss-green);
  margin-bottom: 0.6rem;
}

.role-card p {
  color: rgba(51, 51, 51, 0.7);
  font-size: 1.3rem;
  line-height: 1.6;
}

.role-note {
  background: rgba(233, 238, 224, 0.12);
  border: 1px solid rgba(74, 109, 84, 0.2);
  padding: 1.4rem;
  border-radius: 12px;
  text-align: center;
}

.role-note p {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--moss-green);
}

/* Mobile Menu Script */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
