@charset "UTF-8";

/* =========================
   Base
========================= */

:root {
  --color-text: #1f1f1f;
  --color-muted: #5f5a52;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f1e5;
  --color-border: rgba(139, 111, 61, .24);
  --color-main: #8b6f3d;
  --color-main-dark: #5d4727;
  --color-accent: #a9823d;

  --container: 1120px;
  --container-narrow: 920px;
  --container-wide: 1240px;

  --font-serif:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  --font-sans:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;

  --shadow-card:
    0 18px 42px rgba(0, 0, 0, .07);
  --shadow-strong:
    0 24px 60px rgba(0, 0, 0, .12);

  --z-header: 100;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .03em;
}

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

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

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

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

p {
  margin-bottom: 1.1em;
}

/* =========================
   Common Layout
========================= */

.section-inner {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section-inner--narrow {
  width: min(100% - 48px, var(--container-narrow));
}

.section-inner--wide {
  width: min(92%, var(--container-wide));
}

/* =========================
   Header
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(7, 21, 37, .10);
  background: rgba(246, 241, 232, .92);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1400px);
  height: 90px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.header__logo:hover {
  opacity: .78;
  transform: translateY(-1px);
}

.header__logo img {
  width: 220px;
  height: auto;
}

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

.list-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #eee5d4;
}

.list-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #f5efe4 0%,
      #f5efe4 23%,
      rgba(245, 239, 228, .97) 34%,
      rgba(245, 239, 228, .86) 47%,
      rgba(245, 239, 228, .46) 61%,
      rgba(245, 239, 228, 0) 76%
    );
}

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

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

.list-hero__content {
  position: relative;
  z-index: 2;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding-top: 48px;
}

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

#list-hero-title {
  width: 760px;
  margin: 0;
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .045em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .92),
    0 4px 14px rgba(139, 111, 61, .20);
}

.list-hero__lead {
  width: 650px;
  margin: 16px 0 0;
  color: #514735;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: .035em;
}

/* =========================
   08. パンくず
========================= */

.breadcrumb {
  padding:
    clamp(9px, 1vw, 14px)
    0;
  font-size: clamp(1.45rem, 1vw, 1.56rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  list-style: none;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
}

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

.breadcrumb a:hover {
  text-decoration: none;
}

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

.examples-intro {
  padding:
    88px
    0
    112px;
  background:
    linear-gradient(
      180deg,
      #f7f2e8 0%,
      #ffffff 28%,
      #faf7f0 100%
    );
}

.examples-intro .section-inner {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.list-section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
}


/* =========================
   List Intro
========================= */

.list-intro-layout {
  display: grid;
  grid-template-columns:
    minmax(0, .95fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: 72px;
  margin-bottom: 104px;
}

.list-intro h2 {
  margin: 0;
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.list-intro__title-nowrap {
  display: inline-block;
  font-size: 2.7rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.list-intro p {
  margin:
    24px
    0
    0;
  color: #514b42;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .04em;
}

.list-intro__visual {
  overflow: hidden;
  border-radius: 28px;
  box-shadow:
    0 22px 52px rgba(93, 71, 39, .14);
}

.list-intro__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


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

.list-problems {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, .95fr);
  margin-bottom: 112px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7f0e4 100%
    );
  border:
    1px
    solid
    var(--color-border);
  border-radius: 30px;
  box-shadow:
    0 22px 52px rgba(93, 71, 39, .12);
}

.list-problems__image {
  min-height: 100%;
  overflow: hidden;
}

.list-problems__image img {
  display: block;
  width: 100%;
  height: auto;
}

.list-problems__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    38px
    44px;
}

.list-problems__label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding:
    7px
    18px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--color-main) 0%,
      var(--color-main-dark) 100%
    );
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.list-problems__body h3 {
  margin:
    0
    0
    30px;
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .04em;
}

.list-problems__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.list-problems__list li {
  display: grid;
  grid-template-columns:
    48px
    minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding:
    14px
    18px;
  background: rgba(255, 255, 255, .92);
  border:
    1px
    solid
    rgba(139, 111, 61, .18);
  border-radius: 16px;
  list-style: none;
}

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

.list-problems__list p {
  margin: 0;
  color: #3c3020;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.65;
}


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

.list-subheading {
  max-width: 780px;
  margin:
    0
    auto
    48px;
  text-align: center;
}

.list-subheading h3 {
  margin: 0;
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.list-subheading p {
  margin:
    20px
    auto
    0;
  color: #514b42;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .04em;
}


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

.list-service {
  margin-bottom: 112px;
}

.list-service__card {
  display: grid;
  grid-template-columns:
    420px
    minmax(0, 1fr);
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7f0e4 100%
    );
  border:
    1px
    solid
    var(--color-border);
  border-radius: 28px;
  box-shadow:
    0 22px 52px rgba(93, 71, 39, .12);
}

.list-service__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  padding:
    48px
    36px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      var(--color-main) 0%,
      var(--color-main-dark) 100%
    );
  text-align: center;
}

.list-service__price-label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
}

.list-service__price p {
  margin: 0;
  color: #ffffff;
  line-height: 1;
}

.list-service__price strong {
  font-family: var(--font-serif);
  font-size: 6.4rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.list-service__price p span {
  margin-left: .3em;
  font-size: 2rem;
  font-weight: 700;
}

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

.list-service__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    48px
    54px;
}

.list-service__application {
  margin: 0;
  color: #3c3020;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.9;
}

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

.list-service__shipping span {
  display: block;
  margin-bottom: 6px;
  color: #6d5731;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

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

.list-service__shipping small {
  display: block;
  margin-top: 8px;
  color: #756d60;
  font-size: 1.2rem;
  line-height: 1.6;
}


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

.list-flow {
  margin-bottom: 112px;
}

.list-flow__list {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
}

.list-flow__list li {
  position: relative;
  min-height: 300px;
  padding:
    38px
    30px
    34px;
  background: #ffffff;
  border:
    1px
    solid
    var(--color-border);
  border-radius: 24px;
  list-style: none;
  box-shadow:
    0 16px 38px rgba(93, 71, 39, .09);
}

.list-flow__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -29px;
  width: 30px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--color-main) 0%,
      rgba(139, 111, 61, .18) 100%
    );
}

.list-flow__number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--color-main) 0%,
      var(--color-main-dark) 100%
    );
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.list-flow__body h4 {
  margin:
    0
    0
    14px;
  color: #3c3020;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.list-flow__body p {
  margin: 0;
  color: #514b42;
  font-size: 1.45rem;
  line-height: 1.9;
  letter-spacing: .04em;
}


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

.list-about {
  display: grid;
  grid-template-columns:
    290px
    minmax(0, 1fr);
  gap: 56px;
  padding:
    58px
    64px;
  background:
    linear-gradient(
      145deg,
      #3f382d 0%,
      #211d17 100%
    );
  border-radius: 30px;
  box-shadow:
    0 22px 52px rgba(40, 34, 25, .18);
}

.list-about__heading {
  align-self: center;
}

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

.list-about__heading h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.list-about__body > p {
  margin:
    0
    0
    24px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.5rem;
  line-height: 1.95;
  letter-spacing: .04em;
}

.list-about__body > p:last-child {
  margin-bottom: 0;
}

.list-about__examples {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin:
    0
    0
    26px;
  padding: 0;
}

.list-about__examples li {
  position: relative;
  padding:
    18px
    18px
    18px
    44px;
  color: #3c3020;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}

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



/* =========================
   15. Footer
========================= */

.footer {
  padding:
    clamp(64px, 7vw, 92px)
    0
    clamp(28px, 3vw, 40px);
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
}

.footer__inner {
  display: grid;
  grid-template-columns:
    1.1fr
    .9fr;
  gap: clamp(36px, 3vw, 56px);
  width: min(88%, var(--container));
  margin: 0 auto;
}

.footer__logo-link {
  display: inline-block;
  color: inherit;
  transition:
    opacity .3s ease,
    transform .3s ease,
    text-shadow .3s ease;
}

.footer__logo-link:hover {
  opacity: .72;
  transform: translateY(-2px);
  text-shadow:
    0 0 8px rgba(255, 255, 255, .18),
    0 0 18px rgba(255, 255, 255, .14);
}

.footer__logo {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.6;
  letter-spacing: .08em;
}

.footer__lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.5rem;
  line-height: 2;
}

.footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.45rem;
  line-height: 2;
}

.footer__contact a {
  transition: color .2s ease;
}

.footer__contact a:hover {
  color: #ffffff;
}

.footer__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__sns {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.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);
  transition:
    transform .2s ease,
    background .2s ease;
}

.footer__sns a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap:
    14px
    18px;
  max-width: 460px;
}

.footer__nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 1.4rem;
  transition: color .2s ease;
}

.footer__nav a:hover {
  color: #ffffff;
}

.footer__copy {
  display: block;
  margin-top: 64px;
  color: rgba(255, 255, 255, .42);
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-align: center;
}

/* =========================
   Focus
========================= */

a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}