:root {
  --green: #198b35;
  --green-dark: #116b28;
  --green-soft: #eef8e8;
  --green-pale: #f7fbf3;
  --leaf: #91c96a;
  --yellow: #ffe93b;
  --text: #26312a;
  --muted: #68746b;
  --line: #dce8d8;
  --card: #ffffff;
  --shadow: 0 14px 34px rgba(37, 72, 42, .12);
  --radius: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #f8faf6;
  letter-spacing: 0;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.demo-banner {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  color: #fff;
  background: #2f2a26;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site {
  max-width: 1200px;
  margin: 26px auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.container {
  width: min(100% - 56px, 1040px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 178px;
  flex: 0 0 auto;
}

.logo img {
  height: 38px;
  width: auto;
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding: 25px 0 22px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  transform: scaleX(1);
}

.line-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 128px;
  min-height: 44px;
  padding: 8px 14px;
  color: #fff;
  background: linear-gradient(180deg, #1fa238, #16822e);
  border-radius: 8px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .12);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.25;
}

.line-header img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 330px;
  background: linear-gradient(90deg, #fff 0%, #fff 36%, rgba(255, 255, 255, .62) 55%, rgba(255, 255, 255, .1) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: url("assets/wave-green.png") center bottom / cover no-repeat;
  z-index: -1;
}

.hero .container {
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.1fr 1.15fr;
  align-items: center;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 42px 0 64px;
}

.hero-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.38;
  font-weight: 900;
}

.hero h1 .dark {
  color: #202820;
}

.hero p {
  max-width: 430px;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.hero-image {
  position: absolute;
  inset: 0 0 auto 34%;
  height: 100%;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 10%, black 28%);
}

.breadcrumb {
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb span {
  color: var(--green);
}

.section {
  padding: 44px 0;
}

.section.soft {
  background: linear-gradient(180deg, #fbfdf8, #fff);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
}

.section-title::before {
  content: "";
  width: 22px;
  height: 16px;
  background: var(--green);
  border-radius: 80% 0 80% 0;
  transform: rotate(-18deg);
}

.lead-center {
  max-width: 760px;
  margin: -4px auto 28px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(61, 87, 54, .06);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 205px;
  padding: 22px 17px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(48, 91, 45, .13);
}

.service-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.mini-btn,
.primary-btn,
.ghost-btn,
.yellow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.mini-btn {
  min-height: 34px;
  padding: 6px 20px;
  color: var(--green);
  background: #fff;
  border-color: var(--line);
  font-size: 13px;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(180deg, #22a13a, #15812c);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .14);
}

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

.yellow-btn {
  color: #17431d;
  background: var(--yellow);
  border-color: #edcf16;
}

.mini-btn:hover,
.primary-btn:hover,
.ghost-btn:hover,
.yellow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(54, 87, 47, .14);
}

.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
  overflow: hidden;
  background: linear-gradient(90deg, #f2f8ff, #f8fcf3);
  border: 1px solid #dbeadd;
  border-radius: 8px;
}

.info-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 800;
}

.info-strip div + div {
  border-left: 1px solid #dbeadd;
}

.info-strip img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.home-columns {
  display: grid;
  grid-template-columns: 1fr .9fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  padding: 20px;
}

.panel h2,
.panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 21px;
  font-weight: 900;
}

.text-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 90px 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.news-item time {
  color: var(--muted);
  font-weight: 700;
}

.news-item b {
  color: var(--green);
}

.home-photo {
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}

.home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 104px;
  margin-top: 26px;
  padding: 20px 32px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #179532, #0d7b27);
  border-radius: 8px;
}

.line-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .16), transparent 26%);
  pointer-events: none;
}

.line-banner h2,
.line-banner h3 {
  position: relative;
  margin: 0 0 2px;
  font-size: 27px;
  line-height: 1.35;
  font-weight: 900;
}

.line-banner p {
  position: relative;
  margin: 0;
  font-weight: 800;
}

.line-banner .yellow-btn {
  min-width: 230px;
}

.line-illust {
  position: absolute;
  right: 14px;
  bottom: -24px;
  width: 180px;
  pointer-events: none;
}

.line-banner .line-actions {
  position: relative;
  z-index: 2;
  padding-right: 168px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1.4fr .85fr;
  gap: 26px;
  padding: 30px 0 26px;
}

.footer-logo img {
  width: 164px;
  margin-bottom: 12px;
}

.footer-logo p,
.footer-hours {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  font-size: 14px;
  font-weight: 800;
}

.footer-hours {
  padding: 16px 18px;
  background: #f4f6f3;
  border-radius: 8px;
}

.demo-site-note {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.demo-action-note,
.form-demo-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.copyright {
  padding: 8px 0;
  color: #fff;
  background: linear-gradient(90deg, #1a8d34, #43ab4b);
  font-size: 12px;
  text-align: center;
}

.page-title {
  padding: 58px 0 44px;
  background: #fff url("assets/wave-green.png") center bottom / cover no-repeat;
  text-align: center;
}

.page-title .breadcrumb {
  padding: 0;
  text-align: left;
}

.page-title h1 {
  margin: 26px 0 12px;
  color: var(--green);
  font-size: 44px;
  line-height: 1.25;
  font-weight: 900;
}

.page-title p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 22px;
}

.feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 19px;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.message-card {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 24px;
  padding: 28px;
  align-items: end;
}

.message-card h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.message-card p {
  margin: 0 0 12px;
  font-weight: 700;
}

.message-card img {
  height: 230px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-row img {
  height: 130px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #f5fbef, #fff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-step {
  position: relative;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.flow-step + .flow-step::before {
  content: "›";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
}

.flow-step small {
  color: var(--green);
  font-weight: 900;
}

.flow-step img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 6px auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border: 0;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question b {
  color: var(--green);
  font-size: 20px;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px 52px;
  color: var(--muted);
  font-weight: 700;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(180deg);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 22px;
}

.category-tabs button {
  min-width: 126px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.category-tabs button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.news-board {
  padding: 18px 24px;
}

.news-row {
  display: grid;
  grid-template-columns: 128px 128px 1fr 140px 28px;
  gap: 16px;
  align-items: center;
  min-height: 90px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.news-row:last-child {
  border-bottom: 0;
}

.news-row time {
  font-weight: 800;
}

.tag {
  display: inline-flex;
  justify-content: center;
  min-width: 88px;
  padding: 4px 10px;
  color: var(--green);
  border: 1px solid #aad7a9;
  border-radius: 4px;
  background: #f8fff6;
  font-size: 12px;
  font-weight: 900;
}

.tag.blue {
  color: #2f79a8;
  border-color: #aacfe5;
  background: #f5fbff;
}

.tag.gray {
  color: #67706a;
  border-color: #d8ded8;
}

.news-row h2,
.news-row h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.news-row img {
  width: 138px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  font-weight: 900;
}

.pager a,
.pager span {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.pager .current {
  color: #fff;
  background: var(--green);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 38px;
  align-items: start;
}

.article h1 {
  margin: 10px 0 8px;
  font-size: 32px;
  line-height: 1.45;
}

.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.article p {
  font-weight: 700;
}

.article-image {
  border-radius: 8px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.simple-table th,
.simple-table td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: center;
}

.simple-table th {
  color: var(--green);
  background: #f4fbef;
}

.simple-table .closed {
  color: #e54848;
  font-weight: 900;
}

.article-side {
  display: grid;
  gap: 18px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.access-grid {
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 22px;
}

.access-stack {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 22px;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.info-line {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  margin: 10px 0;
  font-weight: 700;
}

.info-line img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.map-card {
  padding: 22px;
}

.map-frame {
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3ed;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(92, 125, 95, .14) 1px, transparent 1px),
    linear-gradient(rgba(92, 125, 95, .14) 1px, transparent 1px),
    #eef3ed;
  background-size: 38px 38px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .08em;
}

.parking-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 14px;
  align-items: center;
}

.parking-diagram {
  min-height: 130px;
  padding: 12px;
  border-radius: 7px;
  background: #eef8e8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.parking-diagram b {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
}

.parking-diagram span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: #fff;
  border-radius: 6px;
  font-weight: 900;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 22px;
}

.contact-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.tel-number {
  color: var(--green);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.45fr .72fr;
  gap: 26px;
  align-items: start;
}

.form-card {
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 900;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d9e1d7;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
}

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

.privacy-check {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 14px;
  font-size: 14px;
  font-weight: 800;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.side-card {
  padding: 20px;
}

.side-card + .side-card {
  margin-top: 18px;
}

.store-small-photo {
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  margin: 10px 0;
}

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

.recruit-voice {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 14px;
  align-items: end;
  padding: 18px;
}

.recruit-voice img {
  height: 118px;
  width: 118px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.job-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.mt-22 {
  margin-top: 22px;
}

.cta-box {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px 22px;
  border-radius: 8px;
  font-weight: 900;
}

.cta-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.cta-box.green-outline {
  color: var(--green);
  background: #fff;
  border: 1px solid var(--green);
}

.cta-box.yellow-fill {
  background: var(--yellow);
  border: 1px solid #e2c917;
}

.demo-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: 360px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(23, 130, 45, .96);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  font-weight: 800;
}

.demo-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 120;
  padding: 22px;
  background: rgba(24, 45, 30, .38);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(640px, 100%);
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 0 0 12px;
  color: var(--green);
}

.confirm-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  background: #f6fbf2;
  border-radius: 8px;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .site {
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }

  .site-header {
    top: 0;
    z-index: 80;
  }

  .container {
    width: min(100% - 40px, 960px);
  }

  .global-nav {
    gap: 18px;
    font-size: 13px;
  }

  .parking-card {
    grid-template-columns: 1fr;
  }

  .parking-diagram {
    width: min(100%, 220px);
    justify-self: center;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .home-columns .panel:first-child {
    grid-column: 1 / -1;
  }

  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-side .line-banner,
  .two-col .line-banner,
  .contact-layout .line-banner {
    grid-template-columns: 1fr;
  }

  .article-side .line-banner .line-actions,
  .two-col .line-banner .line-actions,
  .contact-layout .line-banner .line-actions {
    padding-right: 104px;
  }

  .article-side .line-banner .yellow-btn,
  .two-col .line-banner .yellow-btn,
  .contact-layout .line-banner .yellow-btn {
    min-width: 168px;
  }
}

@media (max-width: 820px) {
  body {
    background: #fff;
  }

  .container {
    width: min(100% - 28px, 680px);
  }

  .header-inner {
    height: 66px;
    gap: 10px;
  }

  .logo {
    width: auto;
  }

  .logo img {
    height: 32px;
  }

  .global-nav {
    display: none;
  }

  .line-header {
    margin-left: auto;
    min-width: 104px;
    min-height: 38px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .line-header img {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 260px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    min-height: inherit;
  }

  .hero-copy {
    width: 72%;
    padding: 28px 0 48px;
  }

  .hero h1 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.45;
  }

  .hero-kicker {
    font-size: 16px;
  }

  .hero p {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.7;
  }

  .hero-image {
    left: 45%;
  }

  .hero-image img {
    object-position: center;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .1), black 26%);
  }

  .section {
    padding: 34px 0;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .lead-center {
    font-size: 14px;
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 88px;
    display: grid;
    grid-template-columns: 58px 1fr 16px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    text-align: left;
  }

  .service-card::after {
    content: "›";
    color: var(--green);
    font-size: 24px;
    font-weight: 900;
  }

  .service-card img {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .service-card h3 {
    margin: 0;
    font-size: 15px;
  }

  .service-card p,
  .service-card .mini-btn {
    display: none;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .info-strip div {
    min-height: 48px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .info-strip div + div {
    border-left: 0;
    border-top: 1px solid #dbeadd;
  }

  .home-columns,
  .two-col,
  .three-col,
  .four-col,
  .article-layout,
  .access-grid,
  .contact-cards,
  .contact-layout,
  .cta-pair,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .panel,
  .feature-card,
  .form-card,
  .info-card,
  .map-card,
  .side-card {
    padding: 16px;
  }

  .line-banner {
    grid-template-columns: 1fr;
    min-height: 156px;
    padding: 22px 18px;
  }

  .line-banner h2,
  .line-banner h3 {
    font-size: 21px;
  }

  .line-banner .line-actions {
    padding-right: 120px;
  }

  .line-banner .yellow-btn {
    min-width: 180px;
  }

  .line-illust {
    width: 145px;
    right: -2px;
  }

  .article-side .line-banner,
  .two-col .line-banner,
  .contact-layout .line-banner {
    grid-template-columns: 1fr;
  }

  .article-side .line-banner .line-actions,
  .two-col .line-banner .line-actions,
  .contact-layout .line-banner .line-actions {
    padding-right: 104px;
  }

  .article-side .line-banner .yellow-btn,
  .two-col .line-banner .yellow-btn,
  .contact-layout .line-banner .yellow-btn {
    min-width: 168px;
  }

  .footer-main {
    gap: 18px;
    padding: 26px 0;
  }

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

  .page-title {
    padding: 30px 0 34px;
    text-align: left;
  }

  .page-title h1 {
    font-size: 32px;
    margin-top: 20px;
  }

  .message-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .message-card img {
    width: 100%;
    height: 210px;
  }

  .photo-row {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .flow-step {
    min-width: 0;
    padding: 10px 5px;
    font-size: 10px;
  }

  .flow-step img {
    width: 45px;
    height: 45px;
  }

  .news-board {
    padding: 8px 12px;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .category-tabs button {
    min-width: 0;
  }

  .news-row {
    grid-template-columns: 1fr 96px 22px;
    gap: 10px;
    min-height: 98px;
  }

  .news-row time,
  .news-row .tag {
    grid-column: 1;
  }

  .news-row h2,
  .news-row h3 {
    grid-column: 1;
    font-size: 14px;
  }

  .news-row img {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 96px;
    height: 62px;
  }

  .news-row > span:last-child {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .article h1 {
    font-size: 24px;
  }

  .simple-table {
    font-size: 12px;
  }

  .simple-table th,
  .simple-table td {
    padding: 8px 6px;
  }

  .map-frame {
    height: 230px;
  }

  .contact-card {
    grid-template-columns: 58px 1fr;
    min-height: auto;
    padding: 16px;
  }

  .contact-card img {
    width: 56px;
    height: 56px;
  }

  .tel-number {
    font-size: 27px;
  }

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

  .recruit-voice {
    grid-template-columns: 1fr 96px;
  }

  .recruit-voice img {
    width: 96px;
    height: 96px;
  }

  .cta-box {
    grid-template-columns: 48px 1fr auto;
    padding: 14px 16px;
  }

  .cta-box img {
    width: 46px;
    height: 46px;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 390px);
  }

  .logo img {
    height: 29px;
  }

  .hero {
    min-height: 248px;
  }

  .hero-copy {
    width: 72%;
    padding-top: 26px;
  }

  .hero p {
    max-width: 205px;
  }

  .hero-image {
    left: 45%;
  }

  .home-hero .hero-image img {
    object-position: 58% center;
  }

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

  .news-item {
    grid-template-columns: 82px 1fr 18px;
    gap: 8px;
  }

  .line-banner .line-actions {
    padding-right: 96px;
  }

  .line-illust {
    width: 118px;
  }

  .category-tabs {
    grid-template-columns: 1fr 1fr;
  }
}
