@charset "utf-8";

/* =========================
   01. Base
========================= */
:root {
  --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  --font-serif:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  --color-bg: #f5f4f2;
  --color-white: #fff;
  --color-text: #202020;
  --color-muted: #666;
  --color-border: rgba(0, 0, 0, .08);

  --color-red: #b8122b;
  --color-red-dark: #941126;
  --color-beige: #c8ab82;
  --color-beige-light: #eee7dc;
  --color-dark: #282828;

  --color-accent: #8a6a2f;
  --color-gold: #8a6a2f;

  --fz-xs: clamp(1.1rem, 2.7vw, 1.3rem);
  --fz-s: clamp(1.2rem, 3vw, 1.4rem);
  --fz-m: clamp(1.4rem, 3.6vw, 1.6rem);
  --fz-l: clamp(1.8rem, 5vw, 2.4rem);
  --fz-xl: clamp(2.4rem, 7vw, 3.6rem);
  --fz-xxl: clamp(3rem, 9vw, 4.6rem);

  --lh-base: 1.8;
  --lh-heading: 1.45;

  --section-y: clamp(64px, 16vw, 112px);
  --section-x: clamp(20px, 6vw, 36px);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-card: 0 18px 45px rgba(0, 0, 0, .08);

  --list-main: #8b6f3d;
  --list-main-dark: #5d4727;
  --list-main-soft: #f7f1e5;
  --list-accent: #a9823d;
  --list-border: rgba(139, 111, 61, .24);
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  font-size: var(--fz-m);
  line-height: var(--lh-base);
  color: var(--color-muted);
  letter-spacing: .04em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  line-height: var(--lh-heading);
  letter-spacing: .05em;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  font-size: var(--fz-xxl);
}

h2 {
  font-size: var(--fz-xl);
}

h3 {
  font-size: var(--fz-l);
}



/* =========================
   02. Header / Top Menu
========================= */
.site-header {
  background: var(--color-bg);
}

#top-menu {
  height: 60px;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: -3px;
  width: 100%;
  font-family: var(--font-sans);
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact,
#top-menu .top-menu-pc {
  text-decoration: none;
  float: left;
  width: 66px;
  height: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-right: none;
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact {
  transform: translateY(3px);
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

#top-menu .top-menu-tel:focus,
#top-menu .top-menu-contact:focus,
#top-menu .top-menu-tel:focus-visible,
#top-menu .top-menu-contact:focus-visible {
  outline: none;
  box-shadow: none;
}

#top-menu .top-menu-tel img,
#top-menu .top-menu-contact img,
#top-menu .top-menu-pc img {
  display: block;
  width: 45%;
}

#top-menu .top-menu-tel span,
#top-menu .top-menu-contact span,
#top-menu .top-menu-pc span {
  line-height: 1;
  margin-top: 6px;
  font-size: var(--fz-xs);
  color: var(--color-text);
}

#top-menu .menu-btn {
  float: right;
  width: 56px;
  height: 60px;
  position: relative;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: none;
  padding: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-text);
}

#top-menu .menu-btn .menu-btn-inner,
#top-menu .menu-btn .menu-btn-inner span {
  display: inline-block;
  box-sizing: border-box;
}

#top-menu .menu-btn .menu-btn-inner {
  width: 25px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
}

#top-menu .menu-btn .menu-btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition:
    transform .3s ease,
    opacity .3s ease;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(1) {
  top: 0;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(2) {
  top: 10px;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(3) {
  bottom: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(1),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(2),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(2) {
  opacity: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(3),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

#top-menu .menu-btn > span {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: block;
  line-height: 1;
  width: 100%;
  text-align: center;
  font-size: var(--fz-xs);
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn > span {
  color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn-inner span {
  background-color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel img,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact img {
  filter: brightness(0) invert(1);
}

#top-menu .menu-btn[aria-expanded="true"] {
  color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span {
  background-color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] > span {
  color: #fff;
}

/* =========================
   SP Menu
========================= */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: none;
  overflow-y: auto;
  padding:
    clamp(70px, 18vw, 92px)
    var(--section-x)
    calc(clamp(82px, 22vw, 112px) + env(safe-area-inset-bottom));
  background:
    linear-gradient(
      180deg,
      rgba(93, 71, 39, .95) 0%,
      rgba(48, 37, 22, .97) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sp-menu.active {
  display: block;
}

.sp-menu__panel {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0;
}

.sp-menu__label {
  margin:
    0
    0
    clamp(34px, 9vw, 48px);
  color: #ea5532;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .24em;
  text-align: center;
}

.sp-menu__links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-menu__links--main {
  gap: clamp(24px, 6.8vw, 34px);
}

.sp-menu__links--sub {
  gap: clamp(22px, 6.2vw, 30px);
  margin-top: clamp(46px, 12vw, 62px);
  padding-top: 0;
}

.sp-menu__links li {
  margin: 0;
  padding: 0;
}

.sp-menu__links a {
  display: block;
  color: rgba(255, 255, 255, .94);
  text-align: center;
  text-decoration: none;
}

.sp-menu__main-text {
  display: block;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.72rem, 4.85vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
}

.sp-menu__sub-text {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.16rem, 3.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .16em;
}

.sp-menu__links--sub .sp-menu__main-text {
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.46rem, 4.15vw, 1.68rem);
  font-weight: 500;
  letter-spacing: .1em;
}

.sp-menu__links--sub .sp-menu__sub-text {
  color: rgba(255, 255, 255, .54);
  font-size: clamp(1.04rem, 3vw, 1.2rem);
}

.sp-menu__links a:active {
  opacity: .62;
}


/* =========================
   List Hero
========================= */

.list-page {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f6f2e9 0%,
      #ffffff 48%,
      #faf7f0 100%
    );
}

.list-hero {
  position: relative;
  min-height: clamp(520px, 136vw, 660px);
  overflow: hidden;
  background: #eee5d4;
}

.list-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.list-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.list-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(248, 245, 238, .90) 0%,
      rgba(248, 245, 238, .76) 30%,
      rgba(248, 245, 238, .28) 56%,
      rgba(248, 245, 238, .72) 78%,
      rgba(248, 245, 238, .97) 100%
    );
  pointer-events: none;
}

.list-hero__content {
  position: relative;
  z-index: 2;
  width: min(88%, 680px);
  margin: 0 auto;
  padding:
    clamp(92px, 24vw, 124px)
    0
    0;
}

.list-hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  padding:
    clamp(7px, 2vw, 9px)
    clamp(16px, 4.5vw, 22px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--list-main) 0%,
      var(--list-main-dark) 100%
    );
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  box-shadow:
    0 10px 22px rgba(93, 71, 39, .20);
}

.list-hero h1 {
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .94),
    0 3px 8px rgba(255, 250, 240, .96),
    0 7px 18px rgba(139, 111, 61, .38),
    0 12px 30px rgba(93, 71, 39, .26);
}

.list-hero__lead {
  position: absolute;
  right: 6%;
  bottom: clamp(34px, 9vw, 56px);
  left: 6%;
  z-index: 3;
  width: min(88%, 680px);
  margin: 0 auto;
  color: #514735;
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: .04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .76);
}

/* =========================
   Breadcrumb
========================= */
.breadcrumb {
  width: min(88%, 720px);
  margin: 0 auto;
  padding:
    clamp(12px, 3vw, 16px)
    0;
  font-size: clamp(1.15rem, 3.2vw, 1.3rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  color: #69635b;
  line-height: 1.6;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: rgba(95, 90, 82, .62);
}

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



/* =========================
   List Contents
========================= */

.examples-intro {
  padding:
    clamp(48px, 12vw, 72px)
    0
    clamp(72px, 18vw, 112px);
  background:
    linear-gradient(
      180deg,
      #f6f2e9 0%,
      #ffffff 30%,
      #faf7f0 100%
    );
}

.examples-intro__inner {
  width: min(90%, 720px);
  margin: 0 auto;
}

.list-section-label {
  display: inline-block;
  margin-bottom: clamp(10px, 3vw, 14px);
  color: var(--list-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .18em;
}

.list-intro {
  margin-bottom: clamp(34px, 9vw, 52px);
  text-align: center;
}

.list-intro h2 {
  margin-bottom: clamp(18px, 5vw, 24px);
  color: #3c3020;
  font-size: clamp(2.4rem, 6.8vw, 3.3rem);
  line-height: 1.5;
}

.list-intro__title-nowrap {
  display: inline-block;
  font-size: clamp(2.4rem, 6.7vw, 3.2rem);
  letter-spacing: .01em;
  white-space: nowrap;
}

.list-intro p {
  color: var(--color-text);
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  line-height: 1.95;
  text-align: left;
}

.list-intro__visual {
  margin-bottom: clamp(58px, 15vw, 88px);
}

.list-intro__visual img {
  border-radius: clamp(18px, 5vw, 28px);
  box-shadow:
    0 18px 38px rgba(93, 71, 39, .14);
}


/* =========================
   List Problems
========================= */

.list-problems {
  margin-bottom: clamp(72px, 18vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f2e7 100%
    );
  border:
    1px
    solid
    var(--list-border);
  border-radius: clamp(22px, 6vw, 32px);
  box-shadow:
    0 20px 42px rgba(93, 71, 39, .12);
}

.list-problems__image {
  overflow: hidden;
  aspect-ratio: 1 / .72;
}

.list-problems__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-problems__body {
  padding:
    clamp(26px, 7vw, 38px)
    clamp(20px, 5.5vw, 30px)
    clamp(30px, 8vw, 44px);
}

.list-problems__label {
  display: inline-block;
  margin-bottom: clamp(12px, 3.5vw, 16px);
  padding:
    .42em
    .95em;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--list-main) 0%,
      var(--list-main-dark) 100%
    );
  border-radius: 999px;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
}

.list-problems__body h3 {
  margin:
    0
    0
    clamp(24px, 6.5vw, 34px);
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.6vw, 2.7rem);
  line-height: 1.55;
}

.list-problems__list {
  display: grid;
  gap: clamp(12px, 3.5vw, 16px);
}

.list-problems__list li {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 3.5vw, 16px);
  padding:
    clamp(15px, 4vw, 19px)
    clamp(14px, 4vw, 20px);
  background: #ffffff;
  border:
    1px
    solid
    rgba(139, 111, 61, .18);
  border-radius: clamp(14px, 4vw, 20px);
}

.list-problems__number {
  display: grid;
  place-items: center;
  width: clamp(42px, 11vw, 50px);
  height: clamp(42px, 11vw, 50px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--list-main) 0%,
      var(--list-main-dark) 100%
    );
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.3vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
}

.list-problems__list p {
  color: #3c3020;
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.65;
}


/* =========================
   List Common Heading
========================= */

.list-subheading {
  margin-bottom: clamp(32px, 8.5vw, 48px);
  text-align: center;
}

.list-subheading h3 {
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6.2vw, 3rem);
  line-height: 1.55;
}

.list-subheading p {
  margin-top: clamp(16px, 4.5vw, 22px);
  color: var(--color-text);
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  line-height: 1.95;
  text-align: left;
}


/* =========================
   List Service
========================= */

.list-service {
  margin-bottom: clamp(76px, 19vw, 118px);
}

.list-service__card {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f2e7 100%
    );
  border:
    1px
    solid
    var(--list-border);
  border-radius: clamp(22px, 6vw, 32px);
  box-shadow:
    0 20px 44px rgba(93, 71, 39, .12);
}

.list-service__price {
  padding:
    clamp(30px, 8vw, 44px)
    clamp(20px, 5.5vw, 30px);
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #8b6f3d 0%,
      #5d4727 100%
    );
  text-align: center;
}

.list-service__price-label {
  display: block;
  margin-bottom: clamp(12px, 3.5vw, 16px);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.25rem, 3.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.list-service__price p {
  color: #ffffff;
  line-height: 1.1;
}

.list-service__price strong {
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 12vw, 5.8rem);
  font-weight: 600;
  letter-spacing: .02em;
}

.list-service__price p span {
  margin-left: .25em;
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  font-weight: 700;
}

.list-service__price small {
  display: block;
  margin-top: clamp(10px, 3vw, 14px);
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1.5;
}

.list-service__details {
  padding:
    clamp(26px, 7vw, 38px)
    clamp(20px, 5.5vw, 30px)
    clamp(30px, 8vw, 42px);
}

.list-service__application {
  color: #3c3020;
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.9;
}

.list-service__shipping {
  margin-top: clamp(22px, 6vw, 30px);
  padding:
    clamp(22px, 6vw, 30px)
    clamp(18px, 5vw, 26px);
  background: #fffaf0;
  border:
    1px
    solid
    rgba(169, 130, 61, .28);
  border-radius: clamp(16px, 4.5vw, 22px);
  text-align: center;
}

.list-service__shipping span {
  display: block;
  margin-bottom: clamp(6px, 2vw, 9px);
  color: #6d5731;
  font-size: clamp(1.25rem, 3.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
}

.list-service__shipping strong {
  display: block;
  color: #9b311f;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 3.8rem);
  line-height: 1.3;
  letter-spacing: .06em;
}

.list-service__shipping small {
  display: block;
  margin-top: clamp(8px, 2.5vw, 12px);
  color: #756d60;
  font-size: clamp(1.05rem, 2.9vw, 1.2rem);
  line-height: 1.6;
}


/* =========================
   List Flow
========================= */

.list-flow {
  margin-bottom: clamp(76px, 19vw, 118px);
}

.list-flow__list {
  display: grid;
  gap: clamp(20px, 5.5vw, 28px);
}

.list-flow__list li {
  position: relative;
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr);
  gap: clamp(16px, 4.5vw, 22px);
  padding:
    clamp(24px, 6.5vw, 34px)
    clamp(20px, 5.5vw, 30px);
  background: #ffffff;
  border:
    1px
    solid
    var(--list-border);
  border-radius: clamp(18px, 5vw, 26px);
  box-shadow:
    0 14px 32px rgba(93, 71, 39, .08);
}

.list-flow__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: clamp(-20px, -5vw, -15px);
  left: clamp(40px, 11vw, 50px);
  width: 2px;
  height: clamp(20px, 5vw, 28px);
  background:
    linear-gradient(
      180deg,
      var(--list-main) 0%,
      rgba(139, 111, 61, .16) 100%
    );
}

.list-flow__number {
  display: grid;
  place-items: center;
  width: clamp(50px, 13vw, 60px);
  height: clamp(50px, 13vw, 60px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--list-main) 0%,
      var(--list-main-dark) 100%
    );
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
}

.list-flow__body h4 {
  margin:
    0
    0
    clamp(8px, 2.5vw, 12px);
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  line-height: 1.5;
  letter-spacing: .05em;
}

.list-flow__body p {
  color: var(--color-text);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.9;
}


/* =========================
   About Mokuroku
========================= */

.list-about {
  padding:
    clamp(32px, 8.5vw, 46px)
    clamp(20px, 5.5vw, 30px);
  background:
    linear-gradient(
      145deg,
      #3f382d 0%,
      #211d17 100%
    );
  border-radius: clamp(22px, 6vw, 32px);
  box-shadow:
    0 20px 42px rgba(40, 34, 25, .18);
}

.list-about__heading {
  margin-bottom: clamp(22px, 6vw, 30px);
  text-align: center;
}

.list-about__heading .list-section-label {
  color: #d8bc7f;
}

.list-about__heading h3 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6.2vw, 3rem);
  line-height: 1.5;
}

.list-about > p {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.9;
}

.list-about__examples {
  display: grid;
  gap: clamp(10px, 3vw, 14px);
  margin:
    clamp(24px, 6.5vw, 34px)
    0;
}

.list-about__examples li {
  position: relative;
  padding:
    clamp(14px, 4vw, 18px)
    clamp(16px, 4.5vw, 22px)
    clamp(14px, 4vw, 18px)
    clamp(42px, 11vw, 50px);
  color: #3c3020;
  background: rgba(255, 255, 255, .94);
  border-radius: clamp(12px, 3.5vw, 18px);
  font-size: clamp(1.3rem, 3.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
}

.list-about__examples li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: clamp(16px, 4.5vw, 22px);
  color: var(--list-main);
  font-size: 1.2em;
  font-weight: 800;
  transform: translateY(-50%);
}



/* =========================
   14. Footer
========================= */
.site-footer {
  padding:
    48px
    var(--section-x)
    36px;
  color: var(--color-white);
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
  text-align: center;
}

.site-footer__sns ul {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__sns li {
  list-style: none;
}

.site-footer__sns a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.site-footer__sns img {
  display: block;
  width: 26px;
  height: auto;
}

.site-footer__nav ul {
  display: grid;
  gap: 10px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__nav li {
  list-style: none;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .82);
  font-size: var(--fz-s);
  line-height: 1.7;
  text-decoration: none;
}

.site-footer__copy {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   Utility
========================= */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-beige);
  outline-offset: 3px;
}

#top-menu .menu-btn:focus,
#top-menu .menu-btn:focus-visible {
  outline: none;
}