/* ==========================================================================
   Variables & Base
   ========================================================================== */
:root {
  --color-primary: #f3b31a;
  --color-primary-dark: #d9a015;
  --color-menu: #f3b31a;
  --color-black: #333333;
  --color-gray: #555;
  --color-gray-light: #e8e8e8;
  --color-cream: #fff3df;
  --color-white: #fff;
  --container: 1100px;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-box: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* Adobe Fonts (Typekit kit: qgd3vsb) — SicUビュー */
  --font-jp: "sicuveiw", sans-serif;
  --font-en: "LINE Seed JP", var(--font-jp);
  --fw-light: 200;
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 800;
  --header-height: 7.5rem;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: var(--font-jp);
  font-weight: var(--fw-regular);
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  background: var(--color-white);
}

.u-font-en {
  font-family: var(--font-en);
}

.u-fw-light {
  font-weight: var(--fw-light);
}

.u-fw-regular {
  font-weight: var(--fw-regular);
}

.u-fw-semibold {
  font-weight: var(--fw-semibold);
}

.u-fw-bold {
  font-weight: var(--fw-bold);
}

body.is-scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.l-container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }

  .u-sp-only {
    display: block !important;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
}

.c-btn:hover {
  opacity: 0.85;
}

.c-btn--primary {
  background: var(--color-primary);
  color: var(--color-black);
  border-color: var(--color-primary);
}

.c-btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.c-btn--line {
  background: #06c755;
  color: var(--color-white);
  border-color: #06c755;
}

.c-btn--lg {
  min-height: 56px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.c-btn--sm {
  min-height: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 1.75rem 0 1.25rem;
}

.site-header__logo-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.site-header__logo {
  display: block;
  margin: 0;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header.is-logo-hidden .site-header__logo {
  transform: translateY(-110%);
  pointer-events: none;
}

.site-header__logo picture {
  display: block;
  line-height: 0;
}

.site-header__logo picture img,
.site-header__logo-drawer {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
}

.site-header__logo-drawer {
  display: none;
}

body.is-menu-open .site-header__logo picture {
  display: none;
}

body.is-menu-open .site-header__logo-drawer {
  display: block;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  padding: 14px 0 12px;
  border: none;
  border-radius: 50%;
  background: var(--color-menu);
  cursor: pointer;
  transition: opacity 0.2s, background 0.25s ease;
}

.site-header__menu:hover {
  opacity: 0.9;
}

.site-header__menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 42px;
}

.site-header__menu-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.site-header__menu-lines span {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--color-black);
  border-radius: 1px;
  transition: transform 0.25s ease, height 0.25s ease;
}

.site-header__menu-label {
  display: block;
  width: 42px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

body.is-menu-open .site-header__menu {
  background: transparent;
  overflow: visible;
}

body.is-menu-open .site-header__logo {
  transform: none;
  pointer-events: auto;
  transition: none;
}

body.is-menu-open .site-header__menu-lines {
  display: block;
}

body.is-menu-open .site-header__menu-lines span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  margin: 0;
  transform-origin: 50% 50%;
}

body.is-menu-open .site-header__menu-lines span:nth-child(1) {
  transform: translateY(-50%) rotate(14deg);
}

body.is-menu-open .site-header__menu-lines span:nth-child(2) {
  transform: translateY(-50%) rotate(-14deg);
}

/* ==========================================================================
   Drawer
   ========================================================================== */
#site-drawer.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: block;
  visibility: hidden;
  width: 100%;
  max-width: none;
  min-width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--color-primary);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0s linear 0.4s;
}

#site-drawer.site-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 0.4s ease,
    visibility 0s;
}

.site-drawer__panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--color-primary);
  overflow: hidden;
}

.site-drawer__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: min(42vw, 520px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: top right;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.15s;
}

.site-drawer.is-open .site-drawer__deco {
  opacity: 0.35;
}

.site-drawer__scroll {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: var(--header-height);
  background: var(--color-primary);
}

@media (prefers-reduced-motion: reduce) {
  #site-drawer.site-drawer,
  #site-drawer.site-drawer.is-open,
  .site-drawer__deco {
    transition: none;
  }
}

.site-drawer__content {
  position: relative;
  z-index: 1;
  padding: 0 0 3rem;
  box-sizing: border-box;
  transition: none;
}

.site-drawer__content > * {
  margin-right: 0;
}

.site-drawer__nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
  margin: 0 0 2.5rem;
  padding: 0;
  width: 100%;
}

.site-drawer__nav-col {
  margin: 0;
  padding: 0;
}

.site-drawer__nav-col + .site-drawer__nav-col {
  margin-top: 0;
}

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

.site-drawer__nav li {
  margin: 0;
  padding: 0;
}

.site-drawer__nav a {
  display: block;
  padding: 0.3rem 0;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
}

.site-drawer__nav a:hover {
  opacity: 0.75;
}

.site-drawer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  border-radius: var(--radius-box);
  background: var(--color-white);
  width: 100%;
  box-sizing: border-box;
}

.site-drawer__contact-tel {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.625rem;
  row-gap: 0.4rem;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.site-drawer__tel-icon {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  width: auto;
  height: 0.72em;
  flex-shrink: 0;
}

.site-drawer__tel {
  grid-row: 1;
  grid-column: 2;
  display: block;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.02em;
}

.site-drawer__tel:hover {
  opacity: 0.8;
}

.site-drawer__hours {
  grid-row: 2;
  grid-column: 2;
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  color: var(--color-black);
}

.site-drawer__contact-btns {
  display: flex;
  flex: 1 1 50%;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  min-width: 340px;
}

.site-drawer__contact-btns .c-btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 76px;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: var(--radius-box);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

.site-drawer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-drawer__copy {
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  text-align: left;
}

.site-drawer__copy small {
  font-family: var(--font-en);
}

.site-drawer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.site-drawer__brand {
  display: block;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-box);
  background: var(--color-white);
}

.site-drawer__brand img {
  display: block;
  width: auto;
  max-height: 40px;
}

@media (max-width: 767px) {
  .site-drawer__nav-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-drawer__nav-col + .site-drawer__nav-col {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-drawer__contact {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-box);
  }

  .site-drawer__contact-tel {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .site-drawer__contact-btns {
    flex: 1 1 100%;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }

  .site-drawer__contact-btns .c-btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 1.0625rem;
  }

  .site-drawer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-drawer__brands {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

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

  .site-drawer__brand img {
    margin-inline: auto;
  }
}

/* ==========================================================================
   Top – Hero
   ========================================================================== */
.top-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.top-hero__watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 120%;
  font-family: var(--font-en);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.top-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.top-hero__eyebrow {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
}

.top-hero__title {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.35;
}

.top-hero__lead {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  color: var(--color-gray);
}

.top-hero__btn {
  width: 100%;
  max-width: 360px;
}

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

.top-hero__char {
  display: block;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .top-hero__inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 0 2.5rem;
    text-align: center;
  }

  .top-hero__catch img {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .top-hero__btn {
    max-width: none;
  }

  .top-hero__visual {
    order: -1;
  }

  .top-hero__char {
    max-height: 280px;
  }
}

/* ==========================================================================
   Top – Points
   ========================================================================== */
.top-points {
  padding: 2rem 0;
  background: var(--color-primary);
}

.top-points__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.top-points__item {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-black);
  background: var(--color-white);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  .top-points__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Top – Sections common
   ========================================================================== */
.top-section {
  padding: 4rem 0;
}

.top-section__title {
  margin-bottom: 2rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  text-align: center;
  line-height: 1.4;
}

.top-section__title--light {
  color: var(--color-black);
}

.top-section__action {
  margin-top: 2.5rem;
  text-align: center;
}

/* ==========================================================================
   Top – Can do
   ========================================================================== */
.top-can-do {
  background: var(--color-primary);
}

.top-can-do .top-section__title {
  color: var(--color-black);
}

.top-can-do__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.top-can-do__card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.top-can-do__icon {
  margin-bottom: 0.75rem;
}

.top-can-do__card-title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
}

.top-can-do__card-text {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .top-can-do__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Top – About
   ========================================================================== */
.top-about {
  background: var(--color-cream);
}

.top-about__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: center;
}

.top-about__body p {
  margin-bottom: 1rem;
  color: var(--color-gray);
}

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

@media (max-width: 767px) {
  .top-about__inner {
    grid-template-columns: 1fr;
  }

  .top-about__visual {
    order: -1;
  }
}

/* ==========================================================================
   Top – Cost
   ========================================================================== */
.top-cost {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
}

.top-cost__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  pointer-events: none;
}

.top-cost__thunder {
  max-width: 40%;
  max-height: 80%;
  object-fit: contain;
}

.top-cost__inner {
  position: relative;
}

.top-cost__text {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  font-weight: var(--fw-regular);
}

/* ==========================================================================
   Top – Kodawari
   ========================================================================== */
.top-kodawari {
  background: var(--color-cream);
}

.top-kodawari__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1rem;
}

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

.top-kodawari__item img {
  margin-bottom: 0.75rem;
}

.top-kodawari__item h3 {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
}

.top-kodawari__item p {
  font-size: 0.8125rem;
  color: var(--color-gray);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .top-kodawari__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Top – Makers
   ========================================================================== */
.top-makers {
  background: var(--color-primary);
}

.top-makers__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.top-makers__card {
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.top-makers__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 1rem;
}

.top-makers__logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.top-makers__card ul {
  font-size: 0.8125rem;
  color: var(--color-gray);
}

.top-makers__card li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.35rem;
}

.top-makers__card li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .top-makers__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .top-makers__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Top – Flow
   ========================================================================== */
.top-flow {
  position: relative;
  background: var(--color-white);
}

.top-flow__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.03) 8px,
    rgba(0, 0, 0, 0.03) 16px
  );
  pointer-events: none;
}

.top-flow .l-container {
  position: relative;
}

.top-flow__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.top-flow__item {
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius);
  background: var(--color-primary);
  text-align: center;
}

.top-flow__num {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 700;
}

.top-flow__item h3 {
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

.top-flow__item p {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--color-gray);
}

@media (max-width: 767px) {
  .top-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .top-flow__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Top – Works
   ========================================================================== */
.top-works {
  position: relative;
  color: var(--color-white);
}

.top-works__bg {
  position: absolute;
  inset: 0;
}

.top-works__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-works__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.top-works__inner {
  position: relative;
}

.top-works .top-section__title--light {
  color: var(--color-white);
}

.top-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.top-works__card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: var(--shadow);
}

.top-works__card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.top-works__meta {
  padding: 1.25rem;
}

.top-works__meta time {
  font-size: 0.8125rem;
  color: var(--color-gray);
}

.top-works__place {
  margin: 0.25rem 0;
  font-weight: var(--fw-semibold);
}

.top-works__type {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-gray);
}

@media (max-width: 767px) {
  .top-works__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Top – FAQ
   ========================================================================== */
.top-faq__list {
  max-width: 800px;
  margin-inline: auto;
}

.top-faq__item {
  border-bottom: 1px solid var(--color-gray-light);
}

.top-faq__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.top-faq__q {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
}

.top-faq__q-text {
  flex: 1;
  font-weight: var(--fw-semibold);
}

.top-faq__arrow {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.top-faq__item.is-open .top-faq__arrow {
  transform: rotate(-135deg);
}

.top-faq__answer {
  display: none;
  padding: 0 0 1.25rem 3.25rem;
}

.top-faq__item.is-open .top-faq__answer {
  display: block;
}

.top-faq__answer p {
  font-size: 0.9375rem;
  color: var(--color-gray);
}

/* ==========================================================================
   Top – Area
   ========================================================================== */
.top-area {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
}

.top-area__bg {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 45%;
  opacity: 0.12;
  pointer-events: none;
}

.top-area__inner {
  position: relative;
}

.top-area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.top-area__map img {
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.top-area__list p {
  margin-bottom: 1rem;
  font-weight: var(--fw-semibold);
}

.top-area__list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.35rem;
}

.top-area__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-black);
  font-size: 0.5em;
}

@media (max-width: 767px) {
  .top-area__content {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Top – Company
   ========================================================================== */
.top-company {
  background: var(--color-cream);
}

.top-company__table {
  max-width: 640px;
  margin-inline: auto;
}

.top-company__table > div {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.top-company__table dt {
  font-weight: var(--fw-semibold);
}

.top-company__table a {
  text-decoration: underline;
}

.top-company__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .top-company__table > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* ==========================================================================
   Top – CTA (before footer)
   ========================================================================== */
.top-cta {
  padding: 4rem 0;
  background: var(--color-white);
  text-align: center;
}

.top-cta__lead {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.6;
}

.top-cta__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.top-cta__tel-num {
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
}

.top-cta__tel:hover {
  opacity: 0.8;
}

.top-cta__hours {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--color-gray);
}

.top-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.top-cta__buttons .c-btn {
  min-width: 200px;
}

@media (max-width: 767px) {
  .top-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 2rem 0;
  background: var(--color-gray-light);
  font-size: 0.875rem;
}

.site-footer--top {
  padding: 3rem 0 2rem;
  background: var(--color-primary);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.site-footer--top .site-footer__inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.site-footer__brand img {
  max-height: 56px;
}

.site-footer--top .site-footer__brand {
  margin-bottom: 0.5rem;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.site-footer--top .site-footer__nav {
  grid-column: 1 / -1;
}

.site-footer__menu a {
  font-weight: var(--fw-regular);
}

.site-footer__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.site-footer--top .site-footer__sub {
  grid-column: 1 / -1;
}

.site-footer__sub a {
  font-size: 0.8125rem;
  text-decoration: underline;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.site-footer--top .site-footer__actions {
  grid-column: 1 / -1;
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--color-gray);
}

.site-footer--top .site-footer__copy {
  color: var(--color-black);
}

/* ==========================================================================
   Non-front pages (minimal)
   ========================================================================== */
body:not(.home) main {
  max-width: var(--container);
  margin-inline: auto;
  padding: 2rem 1rem;
}
