*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #FAFAF8;
  color: #1A1A18;
  overflow-x: hidden;
}

section {
  padding: 100px 0;
}
@media (max-width: 600px) {
  section {
    padding: 70px 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label span {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #6B8F5E;
  text-transform: uppercase;
  font-weight: 400;
}

.label-line {
  width: 40px;
  height: 1px;
  background: #A8C5A0;
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: #2c5a2f;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.section-title-en {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #6B8F5E;
  font-style: italic;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 6px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B8965A;
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #D4B483;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 90, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #B8965A;
  text-decoration: none;
  padding: 16px 36px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-white:hover {
  background: #F7F4EE;
  transform: translateY(-2px);
}

.btn-outline-forest {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #2c5a2f;
  color: #2c5a2f;
  text-decoration: none;
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.btn-outline-forest:hover {
  background: #2c5a2f;
  color: white;
}

.announcement {
  background: #2c5a2f;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 300;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8E2D8;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}
@media (max-width: 600px) {
  .nav-inner {
    padding: 0 20px;
  }
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .company-type {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #6B8F5E;
  font-weight: 400;
}
.nav-logo .company-name {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c5a2f;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  color: #5A5A54;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3D6B40;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #2c5a2f;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #2c5a2f !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.1em;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: #3D6B40 !important;
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c5a2f;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #2c5a2f;
  z-index: 150;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open {
  right: 0;
}

.drawer-inner {
  padding: 90px 40px 60px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.drawer-links li a {
  display: block;
  padding: 18px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(168, 197, 160, 0.15);
  transition: color 0.2s, padding-left 0.3s;
}
.drawer-links li a:hover {
  color: #D4B483;
  padding-left: 8px;
}

.drawer-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(168, 197, 160, 0.2);
}
.drawer-footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  line-height: 2;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-active {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2c5a2f;
}
@media (max-width: 900px) {
  .hero {
    min-height: 75vh;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 42, 22, 0.82) 0%, rgba(30, 58, 32, 0.65) 50%, rgba(20, 42, 22, 0.55) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(233, 245, 229, 0.25) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(130, 160, 132, 0.8) 0%, transparent 50%), linear-gradient(135deg, #b7c9bc 0%, #2c5a2f 50%, #c0d6c1 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.012) 40px, rgba(255, 255, 255, 0.012) 41px);
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(160deg, rgba(168, 197, 160, 0.06) 0%, transparent 60%);
  border-left: 1px solid rgba(168, 197, 160, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #A8C5A0;
  font-weight: 300;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 60px;
  height: 1px;
  background: #A8C5A0;
  opacity: 0.5;
}

.hero-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 5.5vw, 72px);
  color: white;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-tagline em {
  font-style: normal;
  color: #D4B483;
  font-weight: 600;
}
.hero-tagline .tagline-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2vw, 26px);
  color: #A8C5A0;
  font-style: italic;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.hero-desc {
  max-width: 560px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

.news-ticker {
  background: #F7F4EE;
  border-bottom: 1px solid #E8E2D8;
  padding: 16px 0;
}

.ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.ticker-label {
  background: #2c5a2f;
  color: white;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-date {
  color: #6B8F5E;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ticker-text {
  font-size: 13px;
  color: #1A1A18;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.ticker-text:hover {
  color: #3D6B40;
}

.philosophy {
  background: #F7F4EE;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: "LEAD";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 180px;
  color: rgba(44, 74, 46, 0.04);
  letter-spacing: 0.2em;
  pointer-events: none;
  white-space: nowrap;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.phil-card {
  background: #2c5a2f;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.phil-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: rgba(168, 197, 160, 0.12);
  border-radius: 50%;
  transform: translate(40%, -40%);
}

.phil-quote {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  color: white;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.phil-quote em {
  color: #D4B483;
  font-style: normal;
  font-weight: 600;
}

.phil-since {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 197, 160, 0.2);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #A8C5A0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.philosophy-text p {
  font-size: 15px;
  line-height: 2.2;
  color: #5A5A54;
  font-weight: 300;
  margin-bottom: 24px;
}

.fd-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #E8E2D8;
  padding: 14px 24px;
  margin-top: 16px;
  text-decoration: none;
  transition: all 0.3s;
}
.fd-badge:hover {
  border-color: #6B8F5E;
  background: #A8C5A0;
  color: #2c5a2f;
}
.fd-badge span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #2c5a2f;
  font-weight: 500;
}

.fd-icon {
  width: 24px;
  height: 24px;
  background: #2c5a2f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fd-icon svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.services {
  background: #FAFAF8;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
@media (max-width: 900px) {
  .services-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #E8E2D8;
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0;
  background: #3D6B40;
  transition: height 0.4s ease;
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 74, 46, 0.1);
  z-index: 2;
}
.service-card:hover::before {
  height: 100%;
}
.service-card:hover .service-num {
  color: #A8C5A0;
}
.service-card:hover .service-img-overlay {
  opacity: 1;
}
.service-card:hover .service-link {
  gap: 14px;
  color: #2c5a2f;
}

.service-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #E8E2D8;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #E8E2D8 0%, #ddd7cc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.service-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}
.service-img-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.3;
}
.service-img-placeholder span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #5A5A54;
  opacity: 0.5;
  text-transform: uppercase;
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44, 74, 46, 0.5) 100%);
  transition: opacity 0.4s;
}

.service-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: #E8E2D8;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.service-name {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #2c5a2f;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 13px;
  line-height: 1.9;
  color: #5A5A54;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #6B8F5E;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}

.blog-section {
  background: #e7e7e7;
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #E8E2D8;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 74, 46, 0.12);
  z-index: 2;
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}
.blog-card:hover .blog-thumb-overlay {
  opacity: 1;
}
.blog-card:hover .blog-card-link {
  color: #2c5a2f;
  letter-spacing: 0.22em;
}

.blog-thumb {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8E2D8 0%, #ddd7cc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.blog-thumb-placeholder span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #5A5A54;
  opacity: 0.5;
  text-transform: uppercase;
}

.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(44, 74, 46, 0.35) 100%);
  transition: opacity 0.4s;
}

.blog-card-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.blog-card-date {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #6B8F5E;
}

.blog-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A18;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.blog-card-excerpt {
  font-size: 12.5px;
  color: #5A5A54;
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
}

.blog-card-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #6B8F5E;
  margin-top: 8px;
  transition: color 0.3s, letter-spacing 0.3s;
}

.assoc-section {
  background: #328b67;
  padding: 80px 0;
}
.assoc-section .section-label span {
  color: #A8C5A0;
}
.assoc-section .label-line {
  background: rgba(168, 197, 160, 0.5);
}
.assoc-section .section-title {
  color: white;
}

.assoc-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .assoc-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.assoc-section-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-top: 16px;
}

.assoc-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.assoc-item {
  background: rgba(255, 255, 255, 0.07);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
.pcs {
  display: block;
}
.sps {
  display: none;
}
 @media (max-width: 768px) {
.pcs {
  display: none;
}
.sps {
  display: block;
}
 }
.assoc-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4B483;
  flex-shrink: 0;
}

.assoc-item-name {
  font-size: 15px;
  color: white;
  letter-spacing: 0.05em;
}

.insurance {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(233, 245, 230, 0.86), rgba(251, 252, 248, 0.98) 38%, rgba(244, 238, 225, 0.7));
}
.insurance::before,
.insurance::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 140px;
  pointer-events: none;
  opacity: 0.48;
  background: linear-gradient(115deg, transparent 0 13%, rgba(79, 139, 72, 0.15) 13% 14%, transparent 14% 34%, rgba(79, 139, 72, 0.11) 34% 35%, transparent 35%), linear-gradient(164deg, transparent 0 24%, rgba(184, 150, 90, 0.18) 24% 25%, transparent 25%);
}
.insurance::before {
  top: 30px;
}
.insurance::after {
  bottom: 30px;
  transform: scaleX(-1);
}
.insurance .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}
.insurance .section-label span {
  color: #356f3d;
}
.insurance .label-line {
  background: #A8C5A0;
}
.insurance .section-title {
  color: #24572d;
  margin-bottom: 40px;
}

.ins-circle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 46px);
  align-items: start;
}

.ins-risk-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin: 0 0 18px;
  color: #172019;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}
.ins-risk-title span {
  color: #24572d;
}

.ins-circle {
  --item-radius: 220px;
  --item-width: 30%;
  --core-width: 35%;
  --core-x: 0px;
  --core-y: 0px;
  --core-img-x: 50%;
  --core-img-y: 50%;
  --core-img-scale: 1;
  --core-img-shift-x: 0px;
  --core-img-shift-y: 0px;
  --divider-start: 45deg;
  --step-angle: 90deg;
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 3px solid rgba(105, 159, 92, 0.62);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 29%, transparent 29.3%), radial-gradient(circle, transparent 0 34%, rgba(157, 197, 148, 0.42) 34.2% 38.2%, transparent 38.5%), radial-gradient(circle, rgba(255, 255, 255, 0.76), rgba(247, 252, 245, 0.94) 64%, rgba(235, 247, 231, 0.86));
  box-shadow: 0 24px 70px rgba(22, 52, 25, 0.14);
  isolation: isolate;
}
.ins-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from var(--divider-start), transparent 0 calc(var(--step-angle) - 1.35deg), rgba(105, 159, 92, 0.54) calc(var(--step-angle) - 1.35deg) var(--step-angle));
  -webkit-mask: radial-gradient(circle, transparent 0 26.8%, #000 27.1% 100%);
  mask: radial-gradient(circle, transparent 0 26.8%, #000 27.1% 100%);
  pointer-events: none;
}
.ins-circle::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  pointer-events: none;
}
.ins-circle-personal {
  --item-radius: 215px;
  --item-width: 30%;
  --core-width: 35%;
  --icon-size: clamp(38px, 4.6vw, 62px);
  --name-font-size: clamp(16px, 1.55vw, 22px);
}
.ins-circle-business {
  --item-radius: 238px;
  --item-width: 23%;
  --core-width: 35%;
  --name-font-size: clamp(12px, 1vw, 15px);
}

.ins-circle-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: var(--core-width);
  aspect-ratio: 1;
  transform: translate(calc(-50% + var(--core-x)), calc(-50% + var(--core-y)));
  border: 9px solid rgba(139, 182, 127, 0.58);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 52, 25, 0.16);
}
.ins-circle-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--core-img-x) var(--core-img-y);
  transform: translate(var(--core-img-shift-x), var(--core-img-shift-y)) scale(var(--core-img-scale));
  transform-origin: center;
}
.ins-circle-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  pointer-events: none;
}

.ins-circle-item {
  --item-angle-offset: 0deg;
  --item-radius-offset: 0px;
  --item-x: 0px;
  --item-y: 0px;
  --icon-x: 0px;
  --icon-y: 0px;
  --icon-scale: 1;
  --name-x: 0px;
  --name-y: 0px;
  --name-max-width: 100%;
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: 3;
  display: grid;
  gap: 6px;
  width: var(--item-width);
  min-height: 96px;
  padding: 8px 6px;
  color: #172019;
  text-align: center;
  text-decoration: none;
  place-items: center;
  transform: translate(-50%, -50%) rotate(calc(var(--angle) + var(--item-angle-offset))) translateY(calc((var(--item-radius) + var(--item-radius-offset)) * -1)) rotate(calc((var(--angle) + var(--item-angle-offset)) * -1)) translate(var(--item-x), var(--item-y));
  transition: color 0.24s ease, filter 0.24s ease;
}

/* 取扱商品の個別微調整
   --item-angle-offset: 商品全体を円周方向に動かす（+で時計回り）
   --item-radius-offset: 商品全体を外側/内側に動かす（+で外側）
   --item-x / --item-y: 商品全体を最後に上下左右へ動かす
   --icon-x / --icon-y / --icon-scale: アイコンだけ調整する
   --name-x / --name-y / --name-font-size / --name-max-width: 商品名だけ調整する
   中央画像は .ins-circle-personal / .ins-circle-business に --core-* を追加して調整できます。
*/
.ins-circle-item--personal-1 { /* 自動車保険 */ }
.ins-circle-item--personal-2 { /* 火災／地震保険 */ }
.ins-circle-item--personal-3 { /* 医療保険 */ }
.ins-circle-item--personal-4 { /* 傷害保険 */ }

.ins-circle-item--business-1 { 
  width: 30%;

 }
 @media (max-width: 768px) {
.ins-circle-item--business-1 { 
  width: 100%;

 }
 }
.ins-circle-item--business-2 { 
  left: 49%;
 }
.ins-circle-item--business-3 {
  left: 46%;
  top: 48%;
 }
.ins-circle-item--business-4 { 
  top: 47%;
 }
.ins-circle-item--business-5 { 
  top: 46%;
  left: 51%;
 }
.ins-circle-item--business-6 { 
  left: 54%;
   top: 49%;
 }
.ins-circle-item--business-7 { 
  left: 51%;
 }

a.ins-circle-item:hover,
a.ins-circle-item:focus-visible {
  color: #24572d;
  filter: drop-shadow(0 7px 14px rgba(22, 52, 25, 0.14));
}
.ins-circle-icon {
  display: grid;
  place-items: center;
  width: var(--icon-size, clamp(32px, 4vw, 54px));
  aspect-ratio: 1;
  color: #24572d;
  transform: translate(var(--icon-x), var(--icon-y)) scale(var(--icon-scale));
  transform-origin: center;
}
.ins-circle-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ins-circle-name {
  display: block;
  max-width: var(--name-max-width);
  color: currentColor;
  font-size: var(--name-font-size, clamp(14px, 1.18vw, 18px));
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.28;
  overflow-wrap: anywhere;
  transform: translate(var(--name-x), var(--name-y));
}

.ins-underwriters {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 960px;
  margin: 48px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(105, 159, 92, 0.25);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(22, 52, 25, 0.08);
}
.ins-underwriters-label {
  flex: 0 0 auto;
  color: #24572d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.ins-underwriters-line {
  width: 1px;
  height: 24px;
  background: rgba(105, 159, 92, 0.32);
}
.ins-underwriters-text {
  color: #637064;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1160px) {
  .ins-circle-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .insurance {
    padding: 64px 0 72px;
  }
  .insurance .section-title {
    margin-bottom: 30px;
  }
  .ins-risk-title {
    justify-content: flex-start;
    min-height: auto;
    margin-bottom: 14px;
    text-align: left;
  }
  .ins-circle {
    --icon-size: 42px;
    --name-font-size: 16px;
    display: grid;
    width: 100%;
    aspect-ratio: auto;
    gap: 12px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .ins-circle::before,
  .ins-circle::after,
  .ins-circle-core {
    display: none;
  }
  .ins-circle-item,
  .ins-circle-item:hover {
    position: static;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    padding: 16px 18px;
    border: 1px solid rgba(105, 159, 92, 0.23);
    border-left: 6px solid #8bb67f;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 26px rgba(22, 52, 25, 0.08);
    text-align: left;
    transform: none;
    place-items: center start;
    filter: none;
  }
  .ins-circle-icon,
  .ins-circle-personal .ins-circle-icon {
    width: var(--icon-size);
  }
  .ins-circle-name,
  .ins-circle-personal .ins-circle-name,
  .ins-circle-business .ins-circle-name {
    font-size: var(--name-font-size);
    line-height: 1.45;
  }
  .ins-underwriters {
    display: block;
    margin-top: 34px;
    padding: 18px;
  }
  .ins-underwriters-line {
    display: block;
    width: 42px;
    height: 1px;
    margin: 12px 0;
  }
}

.associations {
  background: #F7F4EE;
}

.assoc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .assoc-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.companies-block {
  background: white;
  padding: 44px;
}
.companies-block h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #2c5a2f;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.company-group {
  margin-bottom: 28px;
}

.company-group-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #6B8F5E;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.company-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E8E2D8;
}

.company-names {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-names span {
  font-size: 13px;
  color: #1A1A18;
  letter-spacing: 0.03em;
  padding-left: 12px;
  border-left: 2px solid #A8C5A0;
}

.recruit {
  background: linear-gradient(135deg, #2c5a2f 0%, #1a3020 100%);
  position: relative;
  overflow: hidden;
}
.recruit::after {
  content: "RECRUIT";
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.recruit .section-title {
  color: white;
}
.recruit .section-label span {
  color: #A8C5A0;
}
.recruit .label-line {
  background: rgba(168, 197, 160, 0.5);
}

.recruit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .recruit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.recruit-desc {
  font-size: 15px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin: 28px 0 40px;
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.recruit-tag {
  background: rgba(168, 197, 160, 0.15);
  border: 1px solid rgba(168, 197, 160, 0.25);
  color: #A8C5A0;
  font-size: 12px;
  padding: 7px 16px;
  letter-spacing: 0.08em;
}

.recruit-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 44px;
  border: 1px solid rgba(168, 197, 160, 0.15);
}

.recruit-detail-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.recruit-detail-item:last-child {
  border-bottom: none;
}

.rd-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #A8C5A0;
  white-space: nowrap;
  min-width: 80px;
}

.rd-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.fd-section {
  background: #FAFAF8;
  border-top: 1px solid #E8E2D8;
}

.fd-header {
  margin-bottom: 60px;
}

.fd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #E8E2D8;
}
@media (max-width: 900px) {
  .fd-grid {
    grid-template-columns: 1fr;
  }
}

.fd-block {
  background: white;
  display: flex;
  flex-direction: column;
}

.fd-block-header {
  background: #2c5a2f;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.fd-block-label {
  background: #B8965A;
  color: white;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fd-block-title {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.fd-block-body {
  padding: 36px 40px 44px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fd-block-body p {
  font-size: 13.5px;
  line-height: 2;
  color: #5A5A54;
  font-weight: 300;
}
.fd-block-body strong {
  color: #2c5a2f;
  font-weight: 600;
}

.fd-note {
  font-size: 12px !important;
  color: #6B8F5E !important;
  border-left: 2px solid #A8C5A0;
  padding-left: 12px;
}

.fd-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #2c5a2f;
  text-decoration: none;
  border-bottom: 1px solid #A8C5A0;
  padding-bottom: 2px;
  margin-top: auto;
  align-self: flex-start;
  transition: all 0.3s;
}
.fd-readmore:hover {
  color: #3D6B40;
  border-bottom-color: #2c5a2f;
  gap: 14px;
}

.fd-kpi-intro {
  font-size: 13px !important;
  color: #6B8F5E !important;
  letter-spacing: 0.05em;
}

.kpi-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0;
}

.kpi-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F7F4EE;
  padding: 16px 18px;
  transition: background 0.2s;
}
.kpi-item:hover {
  background: #E8E2D8;
}

.kpi-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #B8965A;
  font-weight: 500;
  min-width: 24px;
  text-align: center;
  padding-top: 1px;
}

.kpi-content {
  flex: 1;
}

.kpi-title {
  font-size: 13px;
  font-weight: 500;
  color: #1A1A18;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.kpi-desc {
  font-size: 12px;
  color: #5A5A54;
  line-height: 1.6;
  font-weight: 300;
}

.contact-banner {
  background: #B8965A;
  padding: 70px 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
    text-align: center;
  }
}

.contact-text h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contact-info {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .contact-info {
    justify-content: center;
  }
}

.contact-tel {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  letter-spacing: 0.05em;
}
.contact-tel small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-top: 2px;
  opacity: 0.75;
}

footer {
  background: #2c5a2f;
  padding: 70px 0 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.footer-brand .tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-address {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #A8C5A0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.footer-policies {
  display: flex;
  gap: 24px;
}
.footer-policies a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-policies a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.animate-in {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */
