@charset "UTF-8";

:root {
  --color-mint: #b9ddc8;
  --color-mint-deep: #4d8d6f;
  --color-green: #0a7a45;
  --color-green-dark: #065c34;
  --color-text: #2f3431;
  --color-sub: #66706a;
  --color-line: #dfe6e1;
  --color-bg: #f7f8f6;
  --color-white: #ffffff;
  --color-footer: #1f2120;
  --shadow: 0 18px 40px rgba(33, 52, 41, 0.08);
  --inner: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --transition: 0.35s ease;
  --header-height: 90px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.pageWrap {
  overflow: hidden;
}

.inner {
  width: min(var(--inner), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.sectionHead {
  margin-bottom: 48px;
}

.sectionHead__title {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  padding-left: 42px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 700;
  color: var(--color-mint-deep);
  letter-spacing: 0.12em;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.sectionHead__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--color-mint-deep);
  transform: translateY(-50%);
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223, 230, 225, 0.9);
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
}

.siteHeader__logo {
  width: 180px;
  margin: 0;
  flex-shrink: 0;
}

.globalNav {
  margin-left: auto;
}

.globalNav__list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.globalNav__list a {
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-sub);
  transition: color var(--transition);
}

.globalNav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--color-mint-deep);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--transition);
}

.globalNav__list a:hover {
  color: var(--color-text);
}

.globalNav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.headerFact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 50px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  box-shadow: 0 10px 24px rgba(10, 122, 69, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.headerFact:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 122, 69, 0.25);
}

.headerFact img {
  width: 150px;
}

.menuToggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menuToggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-text);
  transition: var(--transition);
}

.hero {
  position: relative;
  padding: 120px 0 130px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.45), transparent 22%),
    radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #bddfcb 0%, #aad2bd 50%, #95c4ac 100%);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.45), transparent 22%), radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.28), transparent 24%), linear-gradient(135deg, #345b44 0%, #aad2bd 50%, #0a7643 100%);
}

.hero__bgShape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__bgShape--01 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: rgba(255, 255, 255, 0.18);
}

.hero__bgShape--02 {
  width: 240px;
  height: 240px;
  bottom: 20px;
  left: -60px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__inner {
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__title {
  width: min(700px, 100%);
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.28;
  letter-spacing: 0.1em;
  text-shadow: 0 10px 25px rgba(70, 94, 81, 0.12);
}

.hero__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btnPrimary,
.btnSecondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btnPrimary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  box-shadow: 0 12px 28px rgba(10, 122, 69, 0.2);
}

.btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 122, 69, 0.26);
}

.btnSecondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.btnSecondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.aboutLead {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.aboutLead p {
  margin: 0;
  color: var(--color-sub);
  font-size: 1rem;
}

.aboutLead p+p {
  margin-top: 1.4em;
}

.conceptGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.conceptCard {
  padding: 26px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(185, 221, 200, 0.22), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(185, 221, 200, 0.7);
  box-shadow: 0 14px 28px rgba(33, 52, 41, 0.04);
}

.conceptCard h3 {
  margin: 0 0 8px;
  color: var(--color-mint-deep);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0.06em;
}

.conceptCard p {
  margin: 0;
  color: var(--color-sub);
  font-size: 0.95rem;
}

.service {
  background: linear-gradient(to bottom, rgba(185, 221, 200, 0.14), rgba(185, 221, 200, 0));
}

.serviceBlock {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.serviceBlock+.serviceBlock {
  margin-top: 28px;
}

.serviceBlock__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.serviceBlock__label {
  margin: 0 0 10px;
  color: var(--color-mint-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serviceBlock__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.4;
}

.serviceBlock__lead {
  margin: 0;
  color: var(--color-sub);
  font-size: 0.96rem;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.serviceGrid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.serviceCard {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: var(--radius-md);
  background: #f9fbf9;
  border: 1px solid #e6ece8;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.serviceCard:hover {
  transform: translateY(-4px);
  border-color: #c6d8cc;
  box-shadow: 0 16px 34px rgba(33, 52, 41, 0.07);
}

.serviceCard__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-mint-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.serviceCard h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.55;
}

.serviceCard p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-sub);
  font-size: 0.95rem;
}

section.cta.section {
  padding: 0 0 50px;
}

.ctaBox {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #2f3b34 0%, #1f2120 100%);
  box-shadow: 0 20px 44px rgba(23, 25, 24, 0.12);
}

.ctaBox__sub,
.ctaBox__text h2,
.ctaBox__text p,
.ctaBox__action {
  position: relative;
  z-index: 1;
}

.ctaBox__sub {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ctaBox__text h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.4;
}

.ctaBox__text p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.ctaBox__action {
  display: grid;
  gap: 16px;
}

.factBanner {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 90px;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  box-shadow: 0 14px 28px rgba(10, 122, 69, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.factBanner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 122, 69, 0.24);
}

.factBanner__logo img {
  width: 220px;
  max-width: 100%;
}

.factBanner__text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  box-shadow: 0 12px 28px rgba(10, 122, 69, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 122, 69, 0.26);
}

.siteFooter {
  padding: 46px 0;
  background: var(--color-footer);
}

.siteFooter__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.siteFooter__copy {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.siteFooter__brand img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.siteFooter__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.siteFooter__nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  transition: opacity var(--transition);
}

.siteFooter__nav a:hover {
  opacity: 0.7;
}

.fadeUp,
.scrollReveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeUp.is-show,
.scrollReveal.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1024px) {

  .conceptGrid,
  .serviceGrid,
  .serviceGrid--two,
  .serviceBlock__head,
  .ctaBox {
    grid-template-columns: 1fr;
  }

  .ctaBox__action {
    justify-items: start;
  }
}

@media screen and (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .siteHeader__inner {
    min-height: var(--header-height);
    gap: 8px;
  }

  .menuToggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1002;
  }

  .globalNav {
    display: none;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(340px, 82%);
    height: calc(100vh - var(--header-height));
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--color-line);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 1001;
  }

  .globalNav.is-open {
    display: block;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .globalNav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .menuToggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menuToggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menuToggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 84px 0;
  }

  .inner {
    width: min(calc(100% - 32px), var(--inner));
  }

  .siteHeader__logo {
    width: 140px;
  }

  .hero {
    padding: 90px 0 92px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero__title::after {
    width: 64px;
    margin-top: 16px;
  }

  .aboutLead,
  .serviceBlock,
  .ctaBox {
    padding: 28px 22px;
  }

  .factBanner {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .factBanner__logo img {
    width: 190px;
  }

  .btnPrimary {
    width: 100%;
  }

  .siteFooter__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .siteFooter__nav ul {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .sectionHead__title {
    font-size: 1.8rem;
  }

  .aboutLead,
  .serviceBlock,
  .ctaBox {
    padding: 24px 18px;
  }

  .serviceCard,
  .conceptCard {
    padding: 22px 18px;
  }
}

/* ========================================
   sub page
======================================== */
.subHero {
  position: relative;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.45), transparent 22%), radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.28), transparent 24%), linear-gradient(135deg, #345b44 0%, #aad2bd 50%, #0a7643 100%);
}

.subHero__inner {
  position: relative;
  z-index: 1;
}

.subHero__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subHero__eyebrow img {
  width: 200px;
}

.subHero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.section--compact {
  padding: 40px 0 0;
}

/* ========================================
   service page
======================================== */
.servicePage {
  padding-top: 70px;
}

.ffLead {
  margin-bottom: 38px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.ffLead__logo img {
  width: min(430px, 100%);
}

.ffLead__catch {
  margin: 24px 0 12px;
  color: var(--color-text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.7;
}

.ffLead__text {
  margin: 0;
  color: var(--color-sub);
}

.servicePageSection {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}

.servicePageSection--soft {
  background: linear-gradient(180deg, #fbfcfb 0%, #f5f8f6 100%);
}

.servicePageHead {
  margin-bottom: 22px;
}

.servicePageHead__sub {
  margin: 0 0 8px;
  color: var(--color-mint-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.servicePageHead__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.servicePageBody p {
  margin: 0;
  color: var(--color-sub);
}

.servicePageBody p+p {
  margin-top: 1em;
}

.pointList,
.issueList,
.stepList,
.verticalFlow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pointList {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.pointList li {
  padding: 14px 18px;
  border-radius: 16px;
  background: #f8fbf9;
  border: 1px solid #e2ebe5;
  font-weight: 700;
}

.issueList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.issueList li {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid #e3ebe5;
  color: var(--color-sub);
}

.servicePageNote {
  margin: 18px 0 0;
  font-weight: 700;
  color: var(--color-text);
}

.benefitList {
  display: grid;
  gap: 16px;
}

.benefitCard {
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #f9fbf9;
  border: 1px solid #e4ece7;
}

.benefitCard h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.benefitCard p {
  margin: 0;
  color: var(--color-sub);
}

.servicePageGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.stepList {
  display: grid;
  gap: 12px;
}

.stepList li {
  position: relative;
  padding: 14px 16px 14px 52px;
  border-radius: 14px;
  background: var(--color-white);
  border: 1px solid #e1e8e3;
  counter-increment: step;
}

.stepList {
  counter-reset: step;
}

.stepList li::before {
  content: counter(step);
  position: absolute;
  top: 50%;
  left: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-mint-deep);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.verticalFlow {
  display: grid;
  gap: 14px;
}

.verticalFlow li {
  position: relative;
  padding: 0 0 28px 22px;
  color: var(--color-text);
  font-weight: 700;
}

.verticalFlow li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-mint-deep);
}

.verticalFlow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 2px;
  height: calc(100% - 10px);
  background: #cfe0d6;
}

.faqList {
  display: grid;
  gap: 16px;
}

.faqItem {
  padding: 22px;
  border-radius: 18px;
  background: #f9fbf9;
  border: 1px solid #e3ebe5;
}

.faqItem__q {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--color-text);
}

.faqItem__a {
  margin: 0;
  color: var(--color-sub);
}

@media screen and (max-width: 1024px) {

  .issueList,
  .servicePageGrid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .subHero {
    padding: 74px 0 68px;
  }

  .ffLead,
  .servicePageSection {
    padding: 28px 22px;
  }

  .issueList {
    grid-template-columns: 1fr;
  }

  .ffLead__catch {
    font-size: 1.05rem;
  }
}

@media screen and (max-width: 480px) {

  .ffLead,
  .servicePageSection {
    padding: 24px 18px;
  }

  .faqItem,
  .benefitCard {
    padding: 18px;
  }
}

/* ========================================
   company page
======================================== */
.companyPage {
  padding-top: 70px;
}

.companySection {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.companySection+.companySection {
  margin-top: 28px;
}

.companyMessage {
  display: grid;
  gap: 1.2em;
}

.companyMessage p {
  margin: 0;
  color: var(--color-sub);
}

.companyInfo {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.companyInfoList {
  margin: 0;
}

.companyInfoRow {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e6ece8;
}

.companyInfoRow:first-child {
  border-top: 1px solid #e6ece8;
}

.companyInfoRow dt {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.companyInfoRow dd {
  margin: 0;
  color: var(--color-sub);
}

.companyMap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e4ebe6;
  box-shadow: 0 14px 28px rgba(33, 52, 41, 0.05);
}

.companyMap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

@media screen and (max-width: 1024px) {
  .companyInfo {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .companySection {
    padding: 28px 22px;
  }

  .companyInfoRow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .companyMap iframe {
    min-height: 280px;
  }
}

@media screen and (max-width: 480px) {
  .companySection {
    padding: 24px 18px;
  }
}

/* ========================================
   policy page
======================================== */

.privacySection {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.policyBlock+.policyBlock {
  margin-top: 2em;
}

.policyBlock h4 {
  margin: 0 0 0.9em;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.policyBlock p {
  margin: 0;
  line-height: 2;
}

.policyBlock p+p {
  margin-top: 0.8em;
}