@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --white:        #FFFFFF;
  --warm-white:   #FAF8F6;
  --gray-light:   #F0EDEB;
  --gray-mid:     #C4BFBC;
  --gray-dark:    #6B6460;
  --pastel-pink:  #F5E6E8;
  --dusty-rose:   #C9A8B0;
  --rose-dark:    #9B7380;
  --text-dark:    #3D3535;
  --text-mid:     #6B6460;
  --text-light:   #A09895;

  --font-serif:  'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans:   'Noto Sans JP', 'Yu Gothic', sans-serif;
  --font-en:     'Cormorant Garamond', serif;

  --transition:  0.3s ease;
  --radius:      4px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  margin: 0;
  overflow-x: hidden;
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

p, ul { margin: 0; padding: 0; }
li    { list-style: none; }
img   { max-width: 100%; height: auto; display: block; }
a     { transition: var(--transition); text-decoration: none; }

/* ============================================================
   Utility – responsive show/hide
   ============================================================ */
.hide_pc  { display: none !important; }
.hide_sp  { display: block !important; }

@media (max-width: 767px) {
  .hide_pc { display: block !important; }
  .hide_sp { display: none  !important; }
}

/* ============================================================
   Fade-in (IntersectionObserver)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Header
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.header__logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-decoration: none;
}

.header__menu {
  position: static;
  height: auto;
  width: auto;
  background: transparent;
}
.header__menu ul {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  position: static;
}
.header__menu ul .menu__list {
  display: inline-block;
}
.header__menu ul .menu__list a {
  display: block;
  padding: 4px 0;
  margin: 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
}
.header__menu ul .menu__list a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--dusty-rose);
  transition: width var(--transition);
}
.header__menu ul .menu__list a:hover::after,
.header__menu ul .menu__list.current a::after {
  width: 100%;
}

/* SP hamburger */
.hamburger-menu-wrapper {
  position: fixed;
  right: 16px;
  top: 2px;
  background: var(--pastel-pink);
  border-radius: 50px;
  padding: 8px;
  display: inline-block;
  z-index: 10000;
}
.hamburger-menu-wrapper.bounce-effect {
  animation: bounce 0.3s ease 1;
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245, 230, 232, 0.97);
  z-index: 1111;
}
.menu {
  position: fixed;
  top: 0; right: 0;
  z-index: 9999;
  width: 100%;
}
.hamburger-menu {
  border: 0;
  background: transparent;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 0;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 9999;
}
.hamburger-menu span {
  display: block;
  position: absolute;
  top: 17px; left: 5px; right: 5px;
  height: 2px;
  background: var(--rose-dark);
}
.hamburger-menu span::before,
.hamburger-menu span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--rose-dark);
  content: "";
}
.hamburger-menu span::before { top: -7px; }
.hamburger-menu span::after  { bottom: -7px; }
.hamburger-menu span::before,
.hamburger-menu span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.hamburger-menu span::before { transition-property: top, transform; }
.hamburger-menu span::after  { transition-property: bottom, transform; }
.hamburger-menu.active span  { background: none; }
.hamburger-menu.active span::before { top: 0; transform: rotate(225deg); }
.hamburger-menu.active span::after  { bottom: 0; transform: rotate(135deg); }
.hamburger-menu.active span::before,
.hamburger-menu.active span::after { transition-delay: 0s, 0.3s; }

.menu-list {
  display: none;
  position: absolute;
  top: 18vw; left: 0; right: 0;
  width: 62%;
  margin: 0 auto;
  text-align: center;
  z-index: 9999;
}
.menu-list a {
  color: var(--rose-dark);
  text-decoration: none;
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  display: inline-block;
  margin: 16px 0;
  letter-spacing: 0.05em;
}

@keyframes bounce {
  0%   { transform: rotate(0); }
  45%  { transform: rotate(15deg); }
  90%  { transform: rotate(-7deg); }
  100% { transform: rotate(0); }
}

/* ============================================================
   Section – common
   ============================================================ */
.section {
  padding: 100px 0;
}
.section--gray {
  background: var(--gray-light);
}
.section--pink {
  background: var(--pastel-pink);
}

.section__inner {
  width: 88%;
  max-width: 1140px;
  margin: 0 auto;
}
.section__inner--center {
  text-align: center;
}

.section__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--dusty-rose);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section__label--light {
  color: var(--rose-dark);
}

.section__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 0 0 36px 0;
}

/* ============================================================
   Hero
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url(img/hero_bg.svg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(245, 230, 232, 0.45) 60%,
    rgba(255, 255, 255, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero__label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--dusty-rose);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin: 0 0 48px 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero__title span {
  color: var(--rose-dark);
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--dusty-rose));
  animation: scrollLine 1.8s ease-in-out infinite;
}
.scroll-text {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dusty-rose);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   About
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__body {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* リンクボタン */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--rose-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dusty-rose);
  padding-bottom: 4px;
  transition: var(--transition);
}
.link-btn:hover {
  color: var(--dusty-rose);
  gap: 20px;
}
.link-btn__arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--dusty-rose);
  position: relative;
  flex-shrink: 0;
}
.link-btn__arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--dusty-rose);
  border-right: 1px solid var(--dusty-rose);
  transform: rotate(45deg);
}

.about__img {
  border-radius: 2px;
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.6s ease;
}
.about__img img:hover {
  transform: scale(1.03);
}

/* ============================================================
   Service
   ============================================================ */
.service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.service__card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 176, 0.25);
  border-radius: 4px;
  padding: 40px 36px;
  transition: var(--transition);
}
.service__card:hover {
  background: var(--pastel-pink);
  border-color: var(--dusty-rose);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(155, 115, 128, 0.12);
}

.service__icon-wrap {
  margin-bottom: 20px;
}

.service__en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin: 0 0 6px 0;
}

.service__ja {
  font-size: 13px;
  font-weight: 500;
  color: var(--dusty-rose);
  margin: 0 0 14px 0;
  letter-spacing: 0.05em;
}

.service__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 0;
}

/* ============================================================
   Story
   ============================================================ */
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__img {
  border-radius: 2px;
  overflow: hidden;
}
.story__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.story__body {
  font-size: 15px;
  line-height: 2.4;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.story__name {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--gray-mid);
  padding-top: 20px;
  margin-top: 20px;
}

/* ============================================================
   Contact CTA
   ============================================================ */
.cta__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 0 0 16px 0;
}

.cta__body {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.cta-btn {
  display: inline-block;
  padding: 14px 52px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
}
.cta-btn:hover {
  background: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 115, 128, 0.25);
}

/* ============================================================
   Contact form (formrun埋め込み)
   ============================================================ */
.contact-form__inner {
  width: 100%;
  max-width: 760px;
}
.formrun-embed {
  display: block;
  width: 100%;
  min-height: 500px;
}
.formrun-embed iframe {
  display: block !important;
  width: 100% !important;
  min-height: 500px !important;
  border: none;
}

@media (max-width: 767px) {
  .formrun-embed,
  .formrun-embed iframe {
    min-height: 640px !important;
  }
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--text-dark);
  color: var(--gray-mid);
  text-align: center;
  padding: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
footer p { margin: 0; }

/* ============================================================
   Page top button
   ============================================================ */
a.totop {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--dusty-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
}
a.totop span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--dusty-rose);
  font-weight: 600;
}
a.totop:hover {
  background: var(--pastel-pink);
  transform: translateY(-3px);
}

/* ============================================================
   ── Page Hero (サブページ共通) ──
   ============================================================ */
.page-hero {
  position: relative;
  height: 44vh;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url(img/hero_bg.svg);
  background-size: cover;
  background-position: center top;
  opacity: 0.85;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 88%;
  max-width: 1140px;
  margin: 0 auto;
}
.page-hero__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--dusty-rose);
  margin: 0 0 10px;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin: 0;
}

/* ============================================================
   ── About us – MVV ──
   ============================================================ */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.mvv__card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(201,168,176,0.2);
  border-radius: 4px;
  padding: 36px 28px;
}
.mvv__card--accent {
  border-top: 3px solid var(--dusty-rose);
  padding-top: 33px;
}
.mvv__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--dusty-rose);
  margin: 0 0 6px;
}
.mvv__label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.mvv__body {
  font-size: 14px;
  line-height: 2.0;
  color: var(--text-mid);
  margin: 0;
}
.mvv__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
}
.mvv__list strong { color: var(--rose-dark); font-weight: 600; }
.mvv__dash { color: var(--dusty-rose); margin-right: 4px; }

/* ============================================================
   ── About us – Company Info ──
   ============================================================ */
.info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.info__table dl { margin: 0; }
.info__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: baseline;
}
.info__row:first-child { border-top: 1px solid var(--gray-light); }
.info__row dt {
  font-size: 13px;
  font-weight: 500;
  color: var(--dusty-rose);
  letter-spacing: 0.05em;
}
.info__row dd {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}
.info__img {
  border-radius: 2px;
  overflow: hidden;
}
.info__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================================
   ── About us – Message ──
   ============================================================ */
.about-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-message__img {
  border-radius: 2px;
  overflow: hidden;
}
.about-message__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}
.about-message__body {
  font-size: 15px;
  line-height: 2.4;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.about-message__name {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--gray-mid);
  padding-top: 20px;
  margin-top: 20px;
}

/* 長文メッセージ用レイアウト */
.about-message__inner--long {
  max-width: 760px;
}
.about-message__lead {
  text-align: center;
  margin-bottom: 40px;
}
.about-message__img--long {
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 48px;
}
.about-message__img--long img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
}
.about-message__prose p {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.about-message__prose strong {
  color: var(--rose-dark);
  font-weight: 600;
}
.about-message__sign {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  line-height: 1.9 !important;
  border-top: 1px solid var(--gray-mid);
  padding-top: 24px;
  margin-top: 8px !important;
}

@media (max-width: 767px) {
  .about-message__img--long img { height: 220px; }
  .about-message__prose p { font-size: 14px; }
}

/* Back nav */
.back-nav {
  text-align: center;
  padding: 60px 0 80px;
}
.link-btn__arrow--left {
  transform: rotate(180deg);
}

/* SP */
@media (max-width: 767px) {
  .page-hero { height: 36vh; min-height: 220px; padding-bottom: 36px; }
  .mvv__grid { grid-template-columns: 1fr; }
  .info__inner { grid-template-columns: 1fr; gap: 36px; }
  .info__img img { height: 220px; }
  .about-message__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-message__img img { height: 260px; }
}

/* ============================================================
   ── ABOUT US page (旧スタイル互換) ──
   ============================================================ */
.main_bg_sub {
  position: fixed;
  background-image: url(img/hero_bg.svg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  z-index: -999;
  opacity: 0.5;
}

#title {
  text-align: center;
  padding: 40px 0 20px;
}
#title h2 {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--rose-dark);
  margin: 0 0 8px 0;
}
#title p {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.wrapper--w {
  width: 88%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 0 80px;
}

.about__txt {
  background: rgba(255, 255, 255, 0.85);
  padding: 48px;
  margin: 0 auto 48px;
  width: 65%;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(155, 115, 128, 0.08);
  text-align: center;
  line-height: 2.2;
}
.about__txt strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.about__txt p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 16px 0 0;
}
.about__txt .list-block {
  font-size: 15px;
  color: var(--text-mid);
  display: inline-block;
  text-align: left;
  margin-top: 8px;
  line-height: 2.2;
}

.content__chart ul li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.content__chart ul li:first-child {
  border-top: 1px solid var(--gray-mid);
}
.content__chart ul li p {
  display: inline-block;
  width: 60%;
  vertical-align: top;
  font-size: 15px;
  color: var(--text-mid);
}
.content__chart ul li p.chart__ttl {
  font-weight: 700;
  color: var(--text-dark);
  width: 120px;
}
.content__chart ul li p {
  width: calc(100% - 120px);
}

.btn__back {
  display: block;
  text-align: center;
  margin: 60px 0 0;
}
.top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 40px;
  background: var(--pastel-pink);
  border: 1px solid var(--dusty-rose);
  border-radius: 28px;
  text-decoration: none;
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.top-btn:hover {
  background: var(--dusty-rose);
  color: var(--white);
}
.top-text { margin: 0; }
.arrow-circle,
.arrow-line { display: none; }

/* ============================================================
   ── Privacy policy page ──
   ============================================================ */
#privacy-policy h3 { padding: 24px 0 0; color: var(--text-dark); }
#privacy-policy p  { padding: 6px 0; color: var(--text-mid); font-size: 14px; line-height: 1.9; }

.privacy-detail {
  background: rgba(255,255,255,0.85);
  padding: 24px 32px;
  border-radius: 4px;
}

/* ============================================================
   ── Contact page ──
   ============================================================ */
.contact-top { margin-top: 100px; }

/* ============================================================
   ── SP (max 767px) ──
   ============================================================ */
@media (max-width: 767px) {
  header {
    padding: 0 16px;
    height: 56px;
  }
  .header__logo { font-size: 17px; }

  .hero__title { font-size: clamp(22px, 6.5vw, 32px); }

  .about__inner,
  .story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__img img,
  .story__img img { height: 260px; }

  .story__inner { direction: ltr; }
  .story__img   { order: -1; }

  .service__grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
  .section__title { font-size: 24px; }

  .about__txt { width: 92%; padding: 32px 20px; }
  .about__txt p { font-size: 3.5vw; }
  .about__txt .list-block { font-size: 3.5vw; }

  .contact-top { margin-top: 56px; }

  a.totop { right: 14px; bottom: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   ── Tablet (768–960px) ──
   ============================================================ */
@media (max-width: 960px) and (min-width: 768px) {
  .about__inner,
  .story__inner { gap: 48px; }
  .service__grid { grid-template-columns: repeat(2, 1fr); }
}
