@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&family=Shippori+Mincho:wght@600;800&display=swap");

:root {
  color-scheme: light;
  --ink: #503a2e;
  --muted: #967a68;
  --cream: #fdf3e3;
  --paper: #fffaf2;
  --pink: #f9ddd2;
  --pink-soft: #fdf0e8;
  --pink-deep: #cf7a5f;
  --apricot: #f2b88a;
  --brown: #a3724f;
  --dark: #46362c;
  --line: rgba(80, 58, 46, 0.13);
  --shadow: 0 18px 46px rgba(95, 62, 40, 0.13);
  --font-maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(249, 221, 210, 0.55), transparent 38%),
    radial-gradient(circle at 88% 20%, rgba(253, 233, 203, 0.6), transparent 42%),
    radial-gradient(rgba(207, 122, 95, 0.05) 1.2px, transparent 1.3px),
    linear-gradient(180deg, #fdf0e6, var(--paper) 46%, var(--paper));
  background-size: auto, auto, 26px 26px, auto;
  font-family: var(--font-maru);
  line-height: 1.75;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3 {
  font-family: var(--font-mincho);
}

ruby {
  ruby-align: center;
}

rt {
  color: var(--muted);
  font-size: 0.3em;
  font-weight: 800;
  letter-spacing: 0;
}

.topbar {
  width: min(1120px, calc(100% - 28px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-maru);
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.85em;
  flex-shrink: 0;
}

.paw {
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 68%, var(--pink) 0 20%, transparent 21%),
    radial-gradient(circle at 31% 36%, var(--pink) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 28%, var(--pink) 0 10%, transparent 11%),
    radial-gradient(circle at 69% 36%, var(--pink) 0 10%, transparent 11%),
    var(--dark);
  box-shadow: 0 8px 18px rgba(79, 50, 37, 0.16);
}

.topbar nav {
  display: flex;
  gap: 8px;
}

.topbar nav a {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-family: var(--font-maru);
  font-size: 13px;
  font-weight: 900;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.topbar nav a:hover {
  background: var(--pink-deep);
  color: #fffaf2;
  transform: translateY(-1px);
}

.hero {
  width: min(1120px, calc(100% - 28px));
  margin: 18px auto 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 22px;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--pink-deep);
  font-family: var(--font-maru);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(24px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-copy p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--font-maru);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
}

.cover-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.3;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cover-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(95, 62, 40, 0.18);
}

.cover-photo::after,
.feature-card::after,
.photo-wall figure::after {
  content: "";
  position: absolute;
  inset: 56% 0 0;
  background: linear-gradient(transparent, rgba(44, 31, 26, 0.48));
  pointer-events: none;
}

.cover-photo figcaption,
.photo-wall figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.9);
  color: var(--ink);
  font-family: var(--font-maru);
  font-size: 12px;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.feature-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-5px) rotate(-0.3deg);
  box-shadow: 0 26px 56px rgba(95, 62, 40, 0.2);
}

.feature-card img {
  transition: transform 0.6s ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.tsumu-feature img {
  object-position: 50% 35%;
}

.kohaku-feature img {
  object-position: 20% 80%;
}

.feature-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fffaf4;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.feature-label span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.26);
  backdrop-filter: blur(4px);
  font-family: var(--font-maru);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.feature-label h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
}

.feature-label h2 rt {
  color: rgba(255, 250, 244, 0.88);
}

.feature-label p {
  margin-top: 9px;
  font-family: var(--font-maru);
  font-weight: 900;
}

.favorites {
  width: min(1120px, calc(100% - 28px));
  margin: 42px auto 0;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.photo-wall figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(95, 62, 40, 0.1);
  transition: transform 0.3s ease;
}

.photo-wall figure:hover {
  transform: translateY(-4px);
}

.photo-wall figure:nth-child(1) img {
  object-position: 50% 34%;
}

.photo-wall figure:nth-child(2) img,
.photo-wall figure:nth-child(4) img {
  object-position: 50% 45%;
}

.profile-strip {
  width: min(1120px, calc(100% - 28px));
  margin: 42px auto 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-strip:empty {
  margin: 0 auto;
}

.profile-strip article {
  position: relative;
  padding: 20px 20px 20px 74px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(95, 62, 40, 0.08);
}

.profile-strip h2 {
  margin-bottom: 3px;
  font-size: 24px;
}

.profile-strip p {
  color: var(--muted);
  font-family: var(--font-maru);
  font-weight: 700;
}

.cat-mark {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 31px;
  border-radius: 46% 46% 38% 38%;
  background: var(--brown);
}

.cat-mark::before {
  content: "";
  position: absolute;
  right: -9px;
  top: -13px;
  width: 24px;
  height: 24px;
  background: inherit;
  border-radius: 50%;
  clip-path: polygon(0 100%, 18% 4%, 48% 34%, 78% 4%, 100% 100%);
}

.cat-mark.dark {
  background: var(--dark);
}

/* ---- レビュー記事リスト ---- */

.reviews {
  width: min(1120px, calc(100% - 28px));
  margin: 56px auto 72px;
}

.reviews .section-head {
  margin-bottom: 20px;
}

.reviews .section-head p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(95, 62, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 122, 95, 0.4);
  box-shadow: 0 22px 44px rgba(95, 62, 40, 0.14);
}

.review-card .eyebrow {
  margin-bottom: 0;
}

.review-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  padding-right: 56px;
}

.review-card .summary {
  font-family: var(--font-maru);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin: 0;
}

.review-card .read-more {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--font-maru);
  font-size: 13px;
  font-weight: 900;
  color: var(--pink-deep);
  transition: letter-spacing 0.25s ease;
}

.review-card:hover .read-more {
  letter-spacing: 0.06em;
}

.score-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--apricot), var(--pink-deep));
  color: #fffaf2;
  font-family: var(--font-maru);
  line-height: 1.05;
  box-shadow: 0 8px 18px rgba(207, 122, 95, 0.32);
}

.score-badge b {
  font-size: 19px;
  font-weight: 900;
}

.score-badge small {
  font-size: 9px;
  font-weight: 900;
}

footer {
  margin-top: 24px;
  padding: 34px 20px 30px;
  background: linear-gradient(180deg, var(--pink-soft), var(--pink));
  color: var(--muted);
  font-family: var(--font-maru);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .feature-grid,
  .profile-strip,
  .review-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 520px;
  }

  .photo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0 4px;
  }

  .topbar nav {
    width: 100%;
  }

  .topbar nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: clamp(20px, 8vw, 34px);
  }

  .hero-copy {
    margin-bottom: 14px;
  }

  .cover-photo {
    aspect-ratio: 1 / 1;
    border-width: 6px;
    border-radius: 20px;
  }

  .cover-photo img {
    object-position: 47% 50%;
  }

  .feature-grid {
    gap: 10px;
    margin-top: 10px;
  }

  .feature-card {
    min-height: 430px;
    border-width: 6px;
    border-radius: 20px;
  }

  .feature-label {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .favorites {
    margin-top: 34px;
  }

  .photo-wall {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .photo-wall figure {
    aspect-ratio: 4 / 4.7;
    border-width: 5px;
    border-radius: 18px;
  }

  .profile-strip {
    margin-top: 34px;
    margin-bottom: 46px;
  }

  .profile-strip article {
    padding: 18px 18px 18px 66px;
  }

  .cat-mark {
    left: 18px;
    top: 22px;
    width: 32px;
    height: 28px;
  }

  .reviews {
    margin: 42px auto 56px;
  }

  .review-card {
    padding: 22px 20px 20px;
  }

  .review-card h3 {
    padding-right: 50px;
  }

  .score-badge {
    top: 18px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}
