/* ============================================================
   栄電 LP - One-column LP (sample.png reference)
   PC/SP shared visual: max-width 420px, centered on PC.
   ============================================================ */

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

:root {
  --c-yellow: #F2B523;
  --c-yellow-soft: #FFF1C7;
  --c-orange: #F08C2E;
  --c-text: #2A2A2A;
  --c-text-soft: #5A5A5A;
  --c-text-mute: #9C9994;
  --c-bg: #FFFFFF;
  --c-bg-soft: #FAF8F4;
  --c-bg-warm: #FDF7EA;
  --c-line: #ECE6D8;
  --c-line-soft: #F2EEE5;

  --container: 420px;
  --pad-x: 24px;
  --pad-y: 80px;

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, sans-serif;
  --en: "Cormorant Garamond", "Noto Serif JP", serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  font-weight: 400;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }


/* ============================================================
   Loader
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner {
  text-align: center;
  width: 280px;
}
.loader__logo {
  width: 110px; height: 110px;
  margin: 0 auto 22px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loader__logo::before,
.loader__logo::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--c-yellow);
}
.loader__logo::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.loader__logo::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.loader__logo svg { width: 70%; height: 70%; }
.loader__logo img { width: 78%; height: 78%; object-fit: contain; }
.loader__text {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: .55em;
  color: var(--c-text-soft);
  margin-bottom: 22px;
  padding-left: .55em;
}
.loader__bar {
  width: 180px;
  height: 1px;
  margin: 0 auto;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
}
.loader__bar span {
  position: absolute;
  inset: 0;
  background: var(--c-yellow);
  animation: loaderBar 1.6s var(--ease) infinite;
}
@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}


/* ============================================================
   Header (固定幅 420px、PC/SP共通)
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  pointer-events: none;
}
.header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(255, 255, 255, 0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
  pointer-events: auto;
}
.header.is-scrolled .header__inner {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--c-line-soft);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo__img {
  height: 40px;
  width: auto;
  display: block;
}
.logo__text {
  font-family: var(--en);
  font-size: 20px;
  letter-spacing: .25em;
  color: var(--c-text);
  font-weight: 500;
}
.logo__sub {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--c-yellow);
  font-weight: 500;
}

/* Nav は常にオーバーレイ式 */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: var(--header-h) 24px 40px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 320px;
}
.nav__list li {
  border-bottom: 1px solid var(--c-line);
}
.nav__list li:first-child { border-top: 1px solid var(--c-line); }
.nav__link {
  display: block;
  padding: 18px 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .15em;
  text-align: center;
  color: var(--c-text);
}
.nav__link:hover { color: var(--c-orange); }

.hamburger {
  width: 32px; height: 32px;
  position: relative;
  z-index: 101;
}
.hamburger span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 1px;
  background: var(--c-text);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.is-active span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 16px; transform: rotate(-45deg); }


/* ============================================================
   Photo placeholder ("No Image")
   ============================================================ */
.ph {
  position: relative;
  background: var(--c-bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--c-text-mute);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  right: 12px; bottom: 12px;
  border: 1px dashed var(--c-line);
  pointer-events: none;
}
.ph__label {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--c-text-mute);
  font-weight: 500;
}
.ph__sub {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--c-text-mute);
}
.ph--fv { aspect-ratio: 4 / 5; }
.ph--wide { aspect-ratio: 16 / 10; }
.ph--feature { aspect-ratio: 5 / 4; }
.ph--service { aspect-ratio: 1 / 1; }
.ph--message { aspect-ratio: 4 / 5; }

.ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ph:has(> img)::before { display: none; }


/* ============================================================
   Container utility (各セクション共通)
   ============================================================ */
.fv,
.section,
.contact,
.footer__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}


/* ============================================================
   FV
   ============================================================ */
.fv {
  padding: calc(var(--header-h) + 24px) var(--pad-x) 70px;
}
.fv__photo {
  position: relative;
  margin-bottom: 50px;
}
.fv__tag {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  background: var(--c-yellow);
  z-index: 2;
}
.fv__lead {
  text-align: center;
}
.fv__en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--c-yellow);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.fv__en .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--c-yellow);
  border-radius: 50%;
}
.fv__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: .08em;
  margin-bottom: 26px;
  color: var(--c-text);
}
.fv__title span {
  position: relative;
  display: inline-block;
}
.fv__title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.1em;
  transform: translateX(-50%);
  width: 60%;
  height: .35em;
  background: var(--c-yellow-soft);
  z-index: -1;
}
.fv__desc {
  font-size: 13px;
  line-height: 2.1;
  color: var(--c-text-soft);
  font-weight: 400;
}


/* ============================================================
   Section base
   ============================================================ */
.section {
  padding: var(--pad-y) var(--pad-x);
}
.section__head {
  text-align: center;
  margin-bottom: 50px;
}
.section__en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--c-yellow);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.section__en .bar {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--c-yellow);
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: .08em;
  margin-bottom: 20px;
  color: var(--c-text);
}
.section__desc {
  font-size: 13px;
  line-height: 2.05;
  color: var(--c-text-soft);
  font-weight: 400;
}


/* ============================================================
   Link arrow ("詳細を見る →")
   ============================================================ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-text);
  padding: 8px 0;
  font-weight: 500;
  position: relative;
}
.link-arrow::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--c-yellow);
  position: relative;
}
.link-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px; height: 5px;
  border-top: 1px solid var(--c-yellow);
  border-right: 1px solid var(--c-yellow);
  transform: translateY(-50%) rotate(45deg);
}
.link-arrow:hover::after { width: 56px; transition: width .3s var(--ease); }
.link-arrow--small { font-size: 10px; gap: 8px; padding: 4px 0; }
.link-arrow--small::after { width: 28px; }

.intro .link-arrow,
.section > .link-arrow {
  margin: 0 auto;
  display: flex;
  width: max-content;
  justify-content: center;
}


/* ============================================================
   Intro / Worry
   ============================================================ */
.intro__media {
  margin-bottom: 50px;
}
.intro__text {
  text-align: center;
  margin-bottom: 50px;
}
.intro__sub-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.intro__sub-desc {
  font-size: 13px;
  line-height: 2.05;
  color: var(--c-text-soft);
}

.worry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--c-line);
}
.worry-list__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.worry-list__num {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--c-yellow);
  font-weight: 500;
  padding-top: 4px;
  position: relative;
}
.worry-list__num::before {
  content: "";
  position: absolute;
  left: 28px; top: 14px;
  width: 22px; height: 1px;
  background: var(--c-yellow);
}
.worry-list__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.worry-list__text {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--c-text-soft);
}


/* ============================================================
   Strength (feature)
   ============================================================ */
.strength {
  background: var(--c-bg-warm);
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 60px;
}
.feature:last-child { margin-bottom: 0; }
.feature__media {
  position: relative;
}
.feature__media::before {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  background: var(--c-yellow);
  top: -12px; right: -12px;
  z-index: 2;
}
.feature__num {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--c-yellow);
  margin-bottom: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
}
.feature__num::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--c-yellow);
}
.feature__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.feature__text {
  font-size: 13px;
  line-height: 2.05;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}
.feature__points {
  border-top: 1px solid var(--c-line);
}
.feature__points li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-size: 13px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
}
.feature__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--c-yellow);
  transform: translateY(-50%);
}
.feature__points li::after {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  width: 5px; height: 5px;
  background: var(--c-yellow);
  border-radius: 50%;
  transform: translateY(-50%);
}


/* ============================================================
   Service
   ============================================================ */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-bottom: 60px;
}
.service-list__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list__body {
  position: relative;
  padding-top: 4px;
}
.service-list__num {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-yellow);
  font-weight: 500;
  margin-bottom: 8px;
}
.service-list__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.service-list__text {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}

.price-info {
  border-top: 1px solid var(--c-line);
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-info__head {
  text-align: left;
}
.price-info__en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--c-yellow);
  margin-bottom: 12px;
  font-weight: 500;
}
.price-info__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: .06em;
}
.price-info__lead {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.7;
}
.price-info__lead em {
  font-style: normal;
  background: linear-gradient(transparent 65%, var(--c-yellow-soft) 65%);
  padding: 0 4px;
}
.price-info__text {
  font-size: 12.5px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 18px;
}
.price-info__points {
  background: var(--c-bg-soft);
  padding: 20px 22px;
  border-left: 2px solid var(--c-yellow);
}
.price-info__points li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text);
}
.price-info__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 5px; height: 5px;
  background: var(--c-yellow);
  border-radius: 50%;
}


/* ============================================================
   Flow
   ============================================================ */
.flow {
  background: var(--c-bg-soft);
}
.flow-list {
  position: relative;
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: var(--c-line);
}
.flow-list__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  position: relative;
  align-items: start;
}
.flow-list__item + .flow-list__item {
  border-top: 1px solid var(--c-line);
}
.flow-list__num {
  font-family: var(--en);
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--c-yellow);
  font-weight: 500;
  line-height: 1;
  background: var(--c-bg-soft);
  position: relative;
  z-index: 2;
  padding: 4px 0;
}
.flow-list__num span {
  display: block;
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--c-yellow);
  margin-bottom: 4px;
  font-weight: 500;
}
.flow-list__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.flow-list__text {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--c-text-soft);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--c-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item summary {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--c-text);
}
.faq-item summary:hover .faq-item__title { color: var(--c-orange); }
.faq-item__q {
  font-family: var(--en);
  font-size: 15px;
  color: var(--c-yellow);
  font-weight: 500;
  letter-spacing: .04em;
}
.faq-item__title { transition: color .25s var(--ease); }
.faq-item__icon {
  position: relative;
  width: 14px; height: 14px;
  margin-left: auto;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--c-yellow);
  transition: transform .3s var(--ease);
}
.faq-item__icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-item__icon::after { transform: rotate(0); }

.faq-item__body {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  gap: 12px;
  padding: 0 0 20px;
}
.faq-item__a {
  font-family: var(--en);
  font-size: 15px;
  color: var(--c-orange);
  font-weight: 500;
  letter-spacing: .04em;
}
.faq-item__body p {
  grid-column: 2;
  font-size: 12.5px;
  line-height: 2;
  color: var(--c-text-soft);
}


/* ============================================================
   Message
   ============================================================ */
.message__media {
  margin: 0 auto 40px;
  position: relative;
  max-width: 280px;
}
.message__media::before {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  background: var(--c-yellow);
  top: -12px; left: -12px;
  z-index: 2;
}
.message__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: .06em;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  padding-bottom: 22px;
}
.message__lead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--c-yellow);
  transform: translateX(-50%);
}
.message__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.message__text p {
  font-size: 13px;
  line-height: 2.1;
  color: var(--c-text);
}
.message__sign {
  text-align: right;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-text);
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
}
.message__sign span {
  display: inline-block;
  margin-left: 14px;
  font-size: 16px;
  letter-spacing: .15em;
}


/* ============================================================
   Contact
   ============================================================ */
.contact {
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--c-line);
}
.contact .section__head { margin-bottom: 40px; }
.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
}
.contact-btn {
  display: grid;
  grid-template-columns: 36px 1fr 30px;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: all .3s var(--ease);
}
.contact-btn:hover {
  border-color: var(--c-yellow);
  background: var(--c-bg-soft);
}
.contact-btn--line {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
}
.contact-btn--line:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #fff;
}
.contact-btn__num {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--c-text-soft);
  font-weight: 500;
}
.contact-btn--line .contact-btn__num { color: rgba(42, 42, 42, .65); }
.contact-btn--line:hover .contact-btn__num { color: rgba(255, 255, 255, .8); }
.contact-btn__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-btn__label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .04em;
}
.contact-btn__sub {
  font-size: 11px;
  color: var(--c-text-soft);
  letter-spacing: .04em;
}
.contact-btn--line .contact-btn__sub { color: rgba(42, 42, 42, .7); }
.contact-btn--line:hover .contact-btn__sub { color: rgba(255, 255, 255, .85); }
.contact-btn__arrow {
  width: 28px; height: 1px;
  background: var(--c-text);
  margin-left: auto;
  position: relative;
  transition: width .3s var(--ease);
}
.contact-btn__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--c-text);
  border-right: 1px solid var(--c-text);
  transform: rotate(45deg);
}
.contact-btn--line:hover .contact-btn__arrow { background: #fff; }
.contact-btn--line:hover .contact-btn__arrow::after { border-color: #fff; }
.contact-btn:hover .contact-btn__arrow { width: 36px; }

.contact__info {
  text-align: left;
  border-top: 1px solid var(--c-line);
}
.contact__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.contact__row dt {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--c-yellow);
  font-weight: 500;
  padding-top: 4px;
}
.contact__row dd {
  font-size: 12px;
  line-height: 1.95;
  color: var(--c-text);
  font-weight: 500;
}


/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--c-line);
  padding: 50px var(--pad-x) 26px;
  text-align: center;
  background: #fff;
}
.footer__brand {
  margin-bottom: 30px;
}
.footer__logo {
  font-family: var(--en);
  font-size: 26px;
  letter-spacing: .25em;
  color: var(--c-text);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer__logo img {
  height: 56px;
  width: auto;
  margin: 0 auto;
}
.footer__name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .12em;
  margin-bottom: 6px;
  font-weight: 500;
}
.footer__tag {
  font-size: 11px;
  color: var(--c-text-soft);
  letter-spacing: .08em;
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 22px;
}
.footer__nav a {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--c-text);
  padding: 4px 0;
  font-weight: 500;
}
.footer__nav a:hover { color: var(--c-orange); }
.footer__copy {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--c-text-mute);
}


/* ============================================================
   Reveal
   ============================================================ */
.is-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.is-reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   PC時のみ周囲の余白に薄い背景を敷く
   （420pxのコンテンツボックスは PC/SP で完全に同一）
   ============================================================ */
@media (min-width: 700px) {
  body {
    background: #F4F1EA;
  }
  main {
    background: #fff;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    box-shadow: 0 0 60px rgba(120, 80, 20, .05);
  }
  .footer {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
  }
}
