/* ===========================================================
   遺品整理のアッタラムヌ（ダミーサイト）
   クラス名プレフィックス: at- (ATTARAMUNU)
   =========================================================== */

:root {
  --green: #029945;
  --green-vivid: #39b142;
  --green-dark: #17612f;
  --green-pale: #f4f8ee;
  --green-line: #e3efe0;
  --orange: #ffa200;
  --orange-light: #ffbe27;
  --blue: #0093cf;
  --blue-pale: #eaf6ff;
  --blue-mid: #5fb0e8;
  --navy: #184c9b;
  --navy-dark: #0f2f5f;
  --yellow-green: #c3d22e;
  --yellow-bg: #fffce6;
  --yellow-accent: #fff27f;
  --ink: #212b23;
  --ink-soft: #566056;
  --white: #ffffff;
  --border: #e2e8dd;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 8px 22px rgba(15, 50, 25, .08);
  --shadow-md: 0 18px 44px rgba(15, 50, 25, .14);
  --max: 1220px;
  --ease: cubic-bezier(.22, .8, .32, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.at-container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

img { border-radius: inherit; }

/* ---------- 見出し共通パーツ ---------- */
.at-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green);
  text-align: center;
  margin-bottom: 6px;
}
.at-eyebrow--white { color: rgba(255, 255, 255, .85); }

.at-section-title {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  margin-bottom: 34px;
}
.at-section-title--white { color: var(--white); }

.at-headline {
  text-align: center;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 26px;
}
.at-headline mark {
  background: none;
  color: var(--green);
}
.at-headline--white { color: var(--white); }
.at-headline--white mark { color: #d8ffe4; }

.at-lead {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0 auto 44px;
}
.at-lead--white { color: rgba(255, 255, 255, .92); }

/* ---------- ボタン ---------- */
.at-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  white-space: nowrap;
}
.at-btn svg { width: 14px; height: 14px; flex: none; transition: transform .25s var(--ease); }
.at-btn:hover { transform: translateY(-3px); }
.at-btn:hover svg { transform: translateX(3px); }

.at-btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-vivid), var(--green));
  box-shadow: 0 14px 28px rgba(2, 153, 69, .3);
}
.at-btn--primary:hover { box-shadow: 0 18px 34px rgba(2, 153, 69, .4); }

.at-btn--navy {
  color: var(--white);
  background: linear-gradient(135deg, #2a63c4, var(--navy-dark));
  box-shadow: 0 14px 28px rgba(15, 47, 95, .32);
}

.at-btn--outline {
  color: var(--green);
  background: var(--white);
  border: 2px solid var(--green);
}
.at-btn--outline:hover { background: var(--green); color: var(--white); }

.at-btn--outline-white {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}
.at-btn--outline-white:hover { background: var(--white); color: var(--green); }

.at-btn--sm { padding: 12px 22px; font-size: 13px; }

.at-btn--circle {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.at-btn--circle svg { width: 16px; height: 16px; }

/* ---------- スクロールリビール ---------- */
.at-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
.at-reveal.is-visible { opacity: 1; transform: none; }
.at-reveal--left { transform: translate(-32px, 0); }
.at-reveal--left.is-visible { transform: none; }
.at-reveal--right { transform: translate(32px, 0); }
.at-reveal--right.is-visible { transform: none; }
.at-reveal--zoom { transform: scale(.92); }
.at-reveal--zoom.is-visible { transform: none; }

/* SPでは横方向のスライドインを使わない（画面幅いっぱいの要素が32pxはみ出して横ズレするため） */
@media (max-width: 980px) {
  .at-reveal--left,
  .at-reveal--right { transform: translateY(24px); }
}

/* ===========================================================
   ヘッダー
   =========================================================== */
.at-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--green-line);
}
.at-topbar__inner {
  width: min(var(--max), 92vw);
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 24px;
  padding: 0;
  font-size: 13px;
}
.at-topbar__nav,
.at-topbar__tel { align-self: center; }
.at-topbar__nav { margin-right: auto; }
.at-topbar__nav ul { display: flex; gap: 20px; }
.at-topbar__nav a { font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.at-topbar__nav a:hover { color: var(--green); }

.at-topbar__tel { display: flex; align-items: center; gap: 6px; }
.at-topbar__tel svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.at-topbar__tel-num { font-size: 17px; font-weight: 800; line-height: 1; color: var(--ink); }
.at-topbar__tel-note { display: block; font-size: 9px; color: var(--ink-soft); margin-top: 2px; }

.at-topbar__actions { display: flex; }
.at-topbar__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 112px;
  padding: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  transition: filter .2s;
}
.at-topbar__action:hover { filter: brightness(1.08); }
.at-topbar__action svg { width: 15px; height: 15px; }
.at-topbar__action--mail { background: linear-gradient(135deg, var(--orange-light), var(--orange)); }
.at-topbar__action--line { background: linear-gradient(135deg, #4cc764, #15c422); }

.at-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 0 var(--green-line);
  transition: box-shadow .3s;
}
.at-header.is-scrolled { box-shadow: var(--shadow-sm); }

.at-header__inner {
  width: min(var(--max), 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.at-logo { display: flex; align-items: center; }
.at-logo img { height: 50px; width: auto; }

.at-nav ul { display: flex; gap: 30px; }
.at-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 4px;
}
.at-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--green);
  transition: right .25s var(--ease);
}
.at-nav a:hover::after { right: 0; }

.at-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex: none;
}
.at-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.at-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.at-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.at-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.at-mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 84vw);
  height: 100%;
  background: var(--white);
  z-index: 90;
  padding: 90px 28px 28px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
}
.at-mobile-nav.is-open { transform: none; }
.at-mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.at-mobile-nav a {
  display: block;
  padding: 13px 6px;
  border-bottom: 1px solid var(--green-line);
  font-weight: 700;
  font-size: 15px;
}
.at-mobile-nav__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}
.at-mobile-nav__tel svg { width: 20px; height: 20px; }

.at-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 12, .45);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.at-scrim.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .at-topbar { display: none; }
  .at-nav { display: none; }
  .at-hamburger { display: flex; }
}

/* ===========================================================
   ヒーロー
   =========================================================== */
.at-hero {
  position: relative;
  background: var(--green-pale);
  padding: 22px 0 40px;
  overflow: hidden;
  min-height: calc(100svh - 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.at-hero__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.at-hero__deco svg { position: absolute; opacity: .5; }
.at-hero__deco .s1 { top: -60px; left: 8%; width: 420px; animation: at-float 9s ease-in-out infinite; }
.at-hero__deco .s2 { bottom: 10%; left: 30%; width: 260px; animation: at-float 11s ease-in-out infinite reverse; }

.at-hero__wave {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -6%;
  width: min(52vw, 760px);
  pointer-events: none;
  animation: at-float 13s ease-in-out infinite;
}
.at-hero__wave svg { width: 100%; height: auto; display: block; }

.at-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

.at-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 999px;
  font-weight: 700;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  animation: at-pulse-badge 3.4s ease-in-out infinite;
}

.at-hero__lead {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.at-hero__lead-underline {
  position: relative;
  display: inline-block;
}
.at-hero__lead-underline svg {
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 10px;
  overflow: visible;
}
.at-hero__lead-underline path {
  stroke: var(--orange);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: at-draw 1.2s var(--ease) .5s forwards;
}
.at-hero__bubble {
  position: relative;
  padding: 8px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.at-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 14px;
}
.at-hero__title .is-green { color: var(--green); }
.at-hero__title .is-mark {
  display: inline-flex;
  margin: 4px 4px 0 0;
}
.at-hero__title .is-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15em;
  padding: .05em .12em;
  margin-right: 4px;
  background: linear-gradient(160deg, var(--orange-light), var(--orange));
  color: var(--white);
  border-radius: 8px;
}

.at-hero__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 0;
  max-width: 46ch;
}

.at-hero__photo {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  justify-self: end;
  width: min(100%, 460px);
}
.at-hero__photo::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, var(--green-vivid), var(--green));
  border-radius: 46% 54% 61% 39% / 45% 45% 55% 55%;
  z-index: 0;
  opacity: .18;
  animation: at-blob 12s var(--ease) infinite;
}
.at-hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 46% 54% 61% 39% / 45% 45% 55% 55%;
  box-shadow: var(--shadow-md);
  animation: at-blob 12s var(--ease) infinite;
}

.at-hero__points {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -40px;
}
.at-hero__point {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 16px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.at-hero__point:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.at-hero__point strong { display: block; font-size: 19px; color: var(--green); }
.at-hero__point span { font-size: 15px; font-weight: 700; }

.at-hero__banner {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 26px;
  background: linear-gradient(120deg, var(--green-vivid), var(--green));
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  overflow: visible;
}
.at-hero__banner-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.at-hero__banner-photo img { width: 100%; height: 100%; object-fit: cover; }
.at-hero__banner-title { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.at-hero__banner-text { color: rgba(255, 255, 255, .95); font-weight: 700; line-height: 1.7; }
.at-hero__banner-badges { display: flex; flex-direction: column; gap: 10px; }
.at-hero__banner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.at-hero__banner-badge b { font-size: 22px; color: var(--orange); }
.at-hero__banner-flag {
  position: absolute;
  top: -20px;
  right: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--yellow-accent);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  box-shadow: var(--shadow-sm);
  animation: at-pulse-badge 3.4s ease-in-out infinite .3s;
}
.at-hero__banner-arrow {
  color: var(--green);
}

@keyframes at-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
@keyframes at-blob {
  0%, 100% { border-radius: 46% 54% 61% 39% / 45% 45% 55% 55%; }
  50% { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
}
@keyframes at-pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes at-draw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  .at-hero__inner { grid-template-columns: 1fr; }
  .at-hero__photo { order: -1; justify-self: center; width: min(80%, 380px); margin-bottom: 20px; }
  .at-hero__points { grid-template-columns: 1fr; margin-top: 0; }
}

/* ===========================================================
   ABOUT US
   =========================================================== */
.at-about { padding: 68px 0 60px; text-align: center; }

.at-about__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
  margin-top: 36px;
}
.at-point-card { position: relative; }
.at-point-card__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  transition: transform .4s var(--ease);
}
.at-point-card:hover .at-point-card__photo { transform: translateY(-6px); }
.at-point-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.at-point-card:hover .at-point-card__photo img { transform: scale(1.06); }
.at-point-card__tag {
  display: inline-block;
  padding: 6px 16px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  background: var(--white);
  margin-bottom: 12px;
}
.at-point-card__title { font-size: 20px; font-weight: 800; line-height: 1.5; margin-bottom: 12px; }
.at-point-card__text { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }

.at-about__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.at-about__note {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--yellow-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  animation: at-pulse-badge 3.8s ease-in-out infinite;
}

@media (max-width: 980px) {
  .at-about { padding: 52px 0 44px; }
  .at-about__points { grid-template-columns: 1fr; }
  .at-about__cta { flex-direction: column; gap: 18px; }
}

/* ===========================================================
   GOMI（山型セクション：帯全体が色つき）
   =========================================================== */
.at-chevron-section { position: relative; padding: 86px 0 64px; }
.at-chevron-section::before {
  content: "";
  position: absolute;
  top: -112px; left: 0;
  width: 52%;
  height: 112px;
  background: inherit;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  z-index: 0;
}

@media (max-width: 980px) {
  .at-chevron-section::before {
    width: 100%;
    height: 52px;
    top: -52px;
  }
}

.at-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.at-divider--white { color: var(--white); }
.at-divider--green { color: var(--green); }

.at-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}
.at-service-card {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--ink);
  transition: transform .35s var(--ease);
}
.at-service-card:hover { transform: translateY(-8px); }
.at-service-card__photo { aspect-ratio: 4 / 3; overflow: hidden; }
.at-service-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.at-service-card:hover .at-service-card__photo img { transform: scale(1.07); }
.at-service-card__body { padding: 20px 6px 4px; }
.at-service-card__title { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.at-service-card__text { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); }

.at-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.at-plus--green { border-color: var(--green); color: var(--green); }

.at-option-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 8px; }
.at-option-card { text-align: center; }
.at-option-card__photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.at-option-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.at-option-card:hover .at-option-card__photo img { transform: scale(1.08); }
.at-option-card__title { font-size: 14px; font-weight: 800; color: var(--white); }
.at-option-card__title--dark { color: var(--ink); }

.at-chevron-section .at-btn-center { position: relative; z-index: 1; text-align: center; }

@media (max-width: 980px) {
  .at-service-grid { grid-template-columns: 1fr; }
  .at-option-grid { grid-template-columns: repeat(2, 1fr); }
  .at-chevron-section { padding: 64px 0 50px; }
}

/* ===========================================================
   遺品整理：おうち形バナー＋白カード
   =========================================================== */
.at-house { position: relative; padding: 60px 0 76px; background: var(--green-pale); }

.at-house__banner {
  position: relative;
  min-height: 560px;
  margin-bottom: -46px;
}

.at-house__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 54%;
  height: 100%;
  background: linear-gradient(165deg, var(--green-vivid), var(--green-dark));
  clip-path: polygon(0 24%, 50% 0, 100% 24%, 100% 100%, 0 100%);
  z-index: 0;
}
.at-house--blue .at-house__shape { background: linear-gradient(165deg, #4e97dd, var(--navy-dark)); }
.at-house--blue .at-house__icon { color: var(--navy-dark); }

.at-house__watermark {
  position: absolute;
  top: 30%;
  left: 4%;
  font-size: min(22vw, 230px);
  font-weight: 900;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.at-house__text {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding-top: 172px;
  margin-left: calc((100% - min(var(--max), 92vw)) / 2);
  color: var(--white);
}
.at-house__title { font-size: clamp(32px, 4vw, 44px); font-weight: 800; margin-bottom: 20px; }
.at-house__lead { font-size: clamp(18px, 2vw, 22px); font-weight: 800; line-height: 1.6; margin-bottom: 18px; }
.at-house__desc { font-size: 14px; line-height: 1.95; color: rgba(255, 255, 255, .92); }

.at-house__photo {
  position: absolute;
  z-index: 1;
  top: 62px;
  right: calc((100% - min(var(--max), 92vw)) / 2);
  width: 40%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.at-house__photo img { width: 100%; height: 100%; object-fit: cover; }

.at-house__icons {
  position: absolute;
  z-index: 1;
  right: calc((100% - min(var(--max), 92vw)) / 2);
  bottom: 62px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.at-house__icon { color: var(--green-dark); opacity: .85; }
.at-house__icon svg { display: block; }
.at-house__icon--vase svg { width: 30px; height: 30px; }
.at-house__icon--box svg { width: 40px; height: 40px; }
.at-house__icon--altar svg { width: 44px; height: 44px; }

.at-house__card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 56px 48px 48px;
}

@media (max-width: 980px) {
  .at-house { padding: 44px 0 56px; }
  .at-house__banner { min-height: 0; margin-bottom: 24px; }
  .at-house__shape { display: none; }
  .at-house__watermark { display: none; }
  .at-house__text {
    position: static;
    max-width: none;
    width: min(var(--max), 92vw);
    margin-inline: auto;
    color: var(--ink);
    background: linear-gradient(165deg, var(--green-vivid), var(--green-dark));
    border-radius: var(--radius-lg);
    padding: 32px 24px;
  }
  .at-house--blue .at-house__text { background: linear-gradient(165deg, #4e97dd, var(--navy-dark)); }
  .at-house__text * { color: var(--white); }
  .at-house__photo {
    position: static;
    width: min(var(--max), 92vw);
    margin-inline: auto;
    aspect-ratio: 16 / 10;
    margin-top: 16px;
  }
  .at-house__icons { display: none; }
  .at-house__card { padding: 34px 22px; }
}

/* ---------- 写真ギャラリーストリップ ---------- */
.at-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.at-strip a, .at-strip__item { display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.at-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.at-strip__item:hover img { transform: scale(1.08); }

.at-strip2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.at-strip2__item { aspect-ratio: 16 / 10; overflow: hidden; }
.at-strip2 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.at-strip2__item:hover img { transform: scale(1.06); }

@media (max-width: 640px) {
  .at-strip { grid-template-columns: repeat(2, 1fr); }
  .at-strip2 { grid-template-columns: 1fr; }
}

/* ===========================================================
   ゴミ屋敷清掃
   =========================================================== */
.at-gomi { background: linear-gradient(160deg, #4e97dd, var(--navy-dark)); color: var(--white); }
.at-gomi__deco { position: absolute; z-index: 0; opacity: .5; pointer-events: none; }

.at-service__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 42px;
}
.at-service__title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; color: var(--white); }
.at-service__lead { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; line-height: 1.6; margin-bottom: 20px; color: var(--white); }
.at-service__text { font-size: 14.5px; line-height: 2; color: rgba(255, 255, 255, .92); }
.at-service__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.at-service__photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .at-service__inner { grid-template-columns: 1fr; }
}

.at-urgent {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  background: var(--yellow-bg);
  border: 2px solid var(--yellow-accent);
  border-radius: var(--radius-lg);
  padding: 24px 34px;
  overflow: hidden;
  color: var(--ink);
}
.at-urgent__label { font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.at-urgent__label svg { width: 30px; height: 30px; color: var(--orange); }
.at-urgent__tags { display: flex; gap: 10px; flex-wrap: wrap; }
.at-urgent__tag { background: var(--yellow-accent); border-radius: 8px; padding: 6px 12px; font-weight: 800; font-size: 13px; }
.at-urgent__text { font-size: 18px; font-weight: 800; }
.at-urgent__photo { width: 130px; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.at-urgent__photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .at-urgent { grid-template-columns: 1fr; text-align: center; padding: 26px; }
  .at-urgent__tags, .at-urgent__label { justify-content: center; }
  .at-urgent__photo { display: none; }
}

/* ===========================================================
   WORKS
   =========================================================== */
.at-works { padding: 78px 0 60px; text-align: center; background: var(--white); }
.at-works__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: linear-gradient(120deg, var(--green-vivid), var(--green));
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.at-works__pill mark { background: none; color: var(--yellow-accent); }

.at-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  margin-bottom: 50px;
}
.at-work-card {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.at-work-card:hover { transform: translateY(-6px); }
.at-work-card__tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.at-work-card__tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  padding: 3px 12px;
  background: var(--white);
}
.at-work-card__text { font-size: 13.5px; line-height: 1.8; margin-bottom: 16px; min-height: 78px; }
.at-work-card__images { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.at-work-card__img { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; }
.at-work-card__img img { width: 100%; height: 100%; object-fit: cover; }
.at-work-card__img span {
  position: absolute;
  left: 8px; bottom: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  background: rgba(0, 0, 0, .55);
}
.at-work-card__img--after span { background: #d43b2e; }
.at-work-card__arrow { color: var(--ink-soft); }

@media (max-width: 980px) {
  .at-works { padding: 56px 0 44px; }
  .at-works__grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   PRICE
   =========================================================== */
.at-price { padding: 68px 0; background: var(--green-pale); text-align: center; }
.at-price__icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 14px; }
.at-price__icons svg { width: 34px; height: 34px; color: var(--green); }

.at-price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 34px 0 34px;
}
.at-price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.at-price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.at-price-card__head { padding: 16px; color: var(--white); font-weight: 800; font-size: 18px; }
.at-price-card--1 .at-price-card__head { background: var(--blue); }
.at-price-card--2 .at-price-card__head { background: var(--yellow-green); }
.at-price-card--3 .at-price-card__head { background: var(--green); }
.at-price-card__body { padding: 30px 16px 34px; }
.at-price-card__price { font-size: clamp(24px, 3vw, 32px); font-weight: 800; line-height: 1.5; }
.at-price-card__price span { font-size: 15px; font-weight: 700; margin-left: 2px; }

@media (max-width: 980px) {
  .at-price { padding: 50px 0; }
  .at-price__grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   FLOW
   =========================================================== */
.at-flow {
  position: relative;
  padding: 68px 0 78px;
  background: linear-gradient(160deg, var(--green-vivid), var(--green-dark));
  overflow: hidden;
}
.at-flow__watermark {
  position: absolute;
  bottom: -4%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: min(14vw, 150px);
  font-weight: 900;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .08);
  white-space: nowrap;
  pointer-events: none;
}

.at-flow__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  margin-bottom: 46px;
}
.at-flow__list { display: flex; flex-direction: column; gap: 30px; }
.at-flow__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.at-flow__item { width: 190px; text-align: center; position: relative; }
.at-flow__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.at-flow__photo img { width: 100%; height: 100%; object-fit: cover; }
.at-flow__step {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.at-flow__title { margin-top: 20px; font-weight: 800; font-size: 14.5px; }
.at-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  flex: none;
  color: var(--border);
  margin-bottom: 28px;
}
.at-flow__arrow svg { width: 16px; height: 16px; }

.at-flow .at-btn-center { position: relative; z-index: 1; text-align: center; }

@media (max-width: 980px) {
  .at-flow__row { flex-direction: column; }
  .at-flow__arrow { display: none; }
  .at-flow__item { width: 220px; margin-bottom: 4px; }
}

/* ===========================================================
   AREA
   =========================================================== */
.at-area { padding: 76px 0 68px; text-align: center; }
.at-area__headline mark { position: relative; }
.at-area__headline .at-slash { display: inline-block; color: var(--blue-mid); font-weight: 900; margin: 0 6px; }

.at-area__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}
.at-area__map { position: relative; justify-self: center; }
.at-area__map img { width: 260px; animation: at-float 10s ease-in-out infinite; }
.at-area__truck {
  position: absolute;
  right: -6px;
  bottom: 6px;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--green);
}
.at-area__truck svg { width: 48px; height: 48px; }

.at-area__box {
  border: 2px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
}
.at-area__group + .at-area__group { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--border); }
.at-area__group-title { font-weight: 800; font-size: 15px; margin-bottom: 14px; color: var(--green-dark); }
.at-area__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.at-area__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.at-area__chip:hover { background: var(--green); color: var(--white); }
.at-area__chip svg { width: 11px; height: 11px; }

.at-area__more-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.at-area__more-wrap.is-open { max-height: 900px; }

.at-area__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px auto 0;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}
.at-area__toggle svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.at-area__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

@media (max-width: 980px) {
  .at-area { padding: 56px 0 48px; }
  .at-area__grid { grid-template-columns: 1fr; }
  .at-area__box { padding: 24px; }
}

/* ===========================================================
   FAQ / COMPANY リンクカード
   =========================================================== */
.at-linkcards {
  padding: 0 0 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.at-linkcard {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.at-linkcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.at-linkcard__photo { width: 128px; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; flex: none; }
.at-linkcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.at-linkcard__body { flex: 1; min-width: 0; }
.at-linkcard__eyebrow { display: block; color: var(--green); font-weight: 800; font-size: 12px; letter-spacing: .12em; margin-bottom: 4px; }
.at-linkcard__title { font-size: 19px; font-weight: 800; }
.at-linkcard__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  flex: none;
}
.at-linkcard__arrow svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
  .at-linkcards { grid-template-columns: 1fr; }
  .at-linkcard { gap: 14px; padding: 14px; }
  .at-linkcard__photo { width: 96px; }
  .at-linkcard__title { font-size: 17px; }
}

/* ===========================================================
   最終CTA
   =========================================================== */
.at-final { padding: 60px 0; background: linear-gradient(180deg, #fffdf2, var(--yellow-bg)); }
.at-final__card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 60px 60px 34px;
  box-shadow: var(--shadow-md);
  overflow: visible;
}
.at-final__pill {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--green-vivid), var(--green));
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.at-final__headline { text-align: center; font-size: clamp(20px, 3vw, 30px); font-weight: 800; margin-bottom: 34px; }
.at-final__headline mark { background: var(--yellow-accent); padding: 2px 8px; border-radius: 6px; }
.at-final__headline .is-green { color: var(--green); }

.at-final__photo {
  position: absolute;
  top: -34px;
  right: 8%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.at-final__photo img { width: 100%; height: 100%; object-fit: cover; }

.at-final__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 26px;
  text-align: center;
}
.at-final__col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.at-final__col .at-btn { width: 100%; }
.at-final__col-label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.at-final__tel { display: flex; align-items: center; gap: 10px; color: var(--green); font-size: 30px; font-weight: 800; }
.at-final__tel svg { width: 22px; height: 22px; }
.at-final__tel-note { font-size: 12px; color: var(--ink-soft); }

.at-final__flag {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
}

.at-final__pay {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.at-final__pay strong { color: var(--green-dark); }
.at-final__cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.at-final__card-chip {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-soft);
  background: var(--white);
}

@media (max-width: 980px) {
  .at-final__card { padding: 70px 24px 30px; }
  .at-final__body { grid-template-columns: 1fr; gap: 32px; }
  .at-final__tel { justify-content: center; }
  .at-final__photo { top: -40px; right: 50%; transform: translateX(50%); width: 110px; height: 110px; }
  /* nowrap のままだと画面幅を超える。丸写真とも重なるのでカード内に流し込む */
  .at-final__pill {
    position: static;
    transform: none;
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 22px;
    white-space: normal;
    text-align: center;
    font-size: 13px;
    padding: 10px 18px;
    line-height: 1.5;
  }
}

/* ===========================================================
   フッター
   =========================================================== */
.at-footer { padding: 70px 0 0; background: var(--white); border-top: 1px solid var(--green-line); }
.at-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
}
.at-footer__brand img { height: 44px; margin-bottom: 16px; }
.at-footer__address { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); }
.at-footer__nav-title { font-weight: 800; font-size: 13px; color: var(--green-dark); margin-bottom: 14px; letter-spacing: .06em; }
.at-footer__nav ul li { margin-bottom: 10px; }
.at-footer__nav a { font-size: 13.5px; color: var(--ink-soft); transition: color .2s; }
.at-footer__nav a:hover { color: var(--green); }

.at-footer__disclaimer {
  font-size: 11.5px;
  line-height: 1.8;
  color: #9aa39a;
  padding: 22px 0;
  border-top: 1px solid var(--green-line);
}

.at-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--green-line);
  font-size: 12px;
  color: var(--ink-soft);
}
.at-footer__bottom nav { display: flex; gap: 18px; }
.at-footer__bottom a:hover { color: var(--green); }

@media (max-width: 980px) {
  .at-footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .at-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- トップへ戻るボタン ---------- */
.at-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-vivid), var(--green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), filter .2s;
  z-index: 50;
}
.at-scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.at-scroll-top:hover { filter: brightness(1.08); transform: translateY(-3px); }
.at-scroll-top svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .at-scroll-top { right: 14px; bottom: 14px; width: 46px; height: 46px; }
}

/* ===========================================================
   下層ページ共通（パンくず・ページヘッダー・セクション）
   =========================================================== */
.at-breadcrumb {
  padding: 16px 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.at-breadcrumb a { color: var(--green); font-weight: 700; }
.at-breadcrumb a:hover { text-decoration: underline; }
.at-breadcrumb .sep { margin: 0 8px; color: var(--border); }
.at-breadcrumb .current { color: var(--ink-soft); }

.at-page-hero {
  position: relative;
  background: var(--green-pale);
  padding: 30px 0 50px;
  overflow: hidden;
  text-align: center;
}
.at-page-hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 200px;
  background: radial-gradient(ellipse at 50% 100%, rgba(2,153,69,.1), transparent 70%);
  pointer-events: none;
}
.at-page-hero__eyebrow { color: var(--green); font-weight: 800; letter-spacing: .18em; font-size: 13px; margin-bottom: 10px; }
.at-page-hero__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 14px; }
.at-page-hero__lead { color: var(--ink-soft); font-size: 14.5px; line-height: 1.9; max-width: 640px; margin-inline: auto; }

.at-page-section { padding: 70px 0; }
.at-page-section--muted { background: var(--green-pale); }
.at-page-section--tight { padding: 40px 0; }
.at-page-section__head { text-align: center; margin-bottom: 44px; }

@media (max-width: 980px) {
  .at-page-hero { padding: 20px 0 36px; }
  .at-page-section { padding: 48px 0; }
}

/* ---------- FAQ アコーディオン（details/summary） ---------- */
.at-faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin-inline: auto; }
.at-faq-item {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.at-faq-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
}
.at-faq-item__q::-webkit-details-marker { display: none; }
.at-faq-item__q-mark {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}
.at-faq-item__q-toggle {
  margin-left: auto;
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--green);
  transition: transform .25s var(--ease);
}
.at-faq-item[open] .at-faq-item__q-toggle { transform: rotate(180deg); }
.at-faq-item__a {
  display: flex;
  gap: 16px;
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}
.at-faq-item__a-mark {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

/* ---------- 会社概要テーブル ---------- */
.at-company-table {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.at-company-table th,
.at-company-table td {
  padding: 18px 26px;
  text-align: left;
  border-bottom: 1px solid var(--green-line);
  font-size: 14px;
  line-height: 1.8;
}
.at-company-table tr:last-child th,
.at-company-table tr:last-child td { border-bottom: none; }
.at-company-table th {
  width: 200px;
  color: var(--green-dark);
  font-weight: 800;
  background: var(--green-pale);
}
.at-company-table td { color: var(--ink); }

@media (max-width: 640px) {
  .at-company-table, .at-company-table tbody, .at-company-table tr, .at-company-table th, .at-company-table td { display: block; width: 100%; }
  .at-company-table th { padding-bottom: 6px; border-bottom: none; }
  .at-company-table td { padding-top: 0; }
}

/* ---------- お問い合わせフォーム ---------- */
.at-form-wrap { max-width: 760px; margin: 0 auto; }
.at-required {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 5px;
  background: #e6534a;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}
.at-form { display: flex; flex-direction: column; gap: 24px; }
.at-form__row { display: flex; flex-direction: column; gap: 8px; }
.at-form__label { font-weight: 800; font-size: 14px; }
.at-form input[type="text"],
.at-form input[type="email"],
.at-form input[type="tel"],
.at-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14.5px;
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.at-form input:focus,
.at-form textarea:focus { outline: none; border-color: var(--green); }
.at-form textarea { min-height: 150px; resize: vertical; }
.at-form__zip { display: flex; align-items: center; gap: 8px; max-width: 240px; }
.at-form__zip span { color: var(--ink-soft); }

.at-privacy {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.at-privacy__head { font-weight: 800; margin-bottom: 10px; }
.at-privacy__body { max-height: 160px; overflow-y: auto; font-size: 12.5px; line-height: 1.9; color: var(--ink-soft); padding-right: 8px; }
.at-privacy__body h4 { margin: 12px 0 6px; font-size: 13px; color: var(--ink); }

.at-form__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  justify-content: center;
}
.at-form__agree input { width: 18px; height: 18px; accent-color: var(--green); }

.at-form__submit {
  align-self: center;
  min-width: 260px;
  padding: 18px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-vivid), var(--green));
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(2, 153, 69, .3);
  transition: opacity .2s, transform .2s;
}
.at-form__submit:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
.at-form__submit:not(:disabled):hover { transform: translateY(-3px); }

/* ---------- 汎用：写真つき見出しブロック ---------- */
.at-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.at-split__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.at-split__photo img { width: 100%; height: 100%; object-fit: cover; }
.at-split--reverse { direction: rtl; }
.at-split--reverse > * { direction: ltr; }

@media (max-width: 980px) {
  .at-split { grid-template-columns: 1fr; }
  .at-split--reverse { direction: ltr; }
}
