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

:root {
  --font-head: "Zen Maru Gothic", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --bg: #f8f6f1;
  --paper: #fffdf9;
  --card: #ffffff;
  --ink: #26332f;
  --sub: #68736f;
  --muted: #8a8179;
  --line: #e7e1d8;
  --green: #42685b;
  --green-dark: #2f4e43;
  --accent: #42685b;
  --accent-d: #2f4e43;
  --coral: #d88472;
  --coral-soft: #fae8df;
  --blue: #496f8f;
  --mint: #e7f1ed;
  --soft: #e7f1ed;
  --soft2: #f2f7f4;
  --tag: #68736f;
  --pr: #8a8179;
  --cream: #fff7e8;
  --shadow: 0 18px 45px rgba(55, 70, 63, .10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(231, 241, 237, .74) 0, rgba(248, 246, 241, .95) 360px),
    var(--bg);
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

h1, h2, h3,
.brand {
  font-family: var(--font-head);
  letter-spacing: .01em;
}

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

a {
  color: var(--green-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid rgba(231, 225, 216, .9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1120px, calc(100% - 36px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .88rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--sub);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green-dark);
}

main {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.hero-top {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 51, 47, .62) 0%, rgba(38, 51, 47, .42) 42%, rgba(38, 51, 47, .08) 78%),
    linear-gradient(0deg, rgba(38, 51, 47, .40) 0%, rgba(38, 51, 47, 0) 48%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  padding: clamp(28px, 4.5vw, 54px);
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-top h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.22;
  font-weight: 700;
  text-shadow: 0 6px 22px rgba(0, 0, 0, .30);
}

.hero-top h1 span {
  display: inline-block;
  margin-top: .22em;
  font-size: .6em;
  line-height: 1.32;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.02rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(66, 104, 91, .22);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .48);
  backdrop-filter: blur(6px);
}

.hero-thumbs {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 88px);
  gap: 10px;
}

.hero-thumbs img {
  width: 88px;
  height: 104px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
}

.guide-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 12px 0 54px;
}

.flow-item {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.flow-num {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-weight: 900;
}

.flow-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.04rem;
}

.flow-item p {
  margin: 6px 0 0;
  color: var(--sub);
  font-size: .9rem;
  line-height: 1.7;
}

.stage-selector {
  margin: 48px 0 64px;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 253, 249, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stage-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.stage-head h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.32;
}

.stage-head p {
  margin: 12px 0 0;
  color: var(--sub);
}

.mental-note {
  display: grid;
  grid-template-columns: minmax(160px, 28%) 1fr;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 20px;
  background: linear-gradient(135deg, #fff1ed, #eef7f2 78%);
  border: 1px solid rgba(224, 133, 115, .24);
  border-radius: var(--radius);
}

.mental-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(47, 78, 67, .14);
}

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

.mental-note h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.45;
}

.mental-note p {
  margin: 0;
  color: var(--sub);
  font-size: .92rem;
  line-height: 1.78;
}

.mental-check {
  margin: 20px 0 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(66, 104, 91, .14);
  border-radius: var(--radius);
}

.mental-check-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.mental-check-head span {
  flex: 0 0 auto;
  padding: 4px 10px;
  color: #fff;
  background: var(--coral);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

.mental-check-head h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.02rem;
  line-height: 1.45;
}

.mental-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mental-check-grid div {
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 241, 237, .86), rgba(255, 253, 249, .96));
  border: 1px solid rgba(224, 133, 115, .18);
  border-radius: 14px;
}

.mental-check-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: .96rem;
}

.mental-check-grid p {
  margin: 7px 0 0;
  color: var(--sub);
  font-size: .84rem;
  line-height: 1.65;
}

.mental-ad {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 34%);
  gap: 18px;
  align-items: center;
  margin: 20px 0 24px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(231, 241, 237, .92), rgba(255, 253, 249, .98));
  border: 1px solid rgba(66, 104, 91, .18);
  border-radius: var(--radius);
}

.mental-ad .label {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 3px 10px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.mental-ad h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.45;
}

.mental-ad p {
  margin: 0;
  color: var(--sub);
  font-size: .9rem;
  line-height: 1.75;
}

.mental-ad .mental-ad-note {
  margin-top: 10px;
  color: #7d6b62;
  font-size: .78rem;
}

.mental-ad-banner {
  text-align: center;
}

.mental-ad-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.mental-ad-textlink {
  display: inline-block;
  padding: 12px 18px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(66, 104, 91, .30);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.mental-ad-textlink:hover {
  border-color: var(--green);
}

.stage-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 10px;
  margin: 22px 0 24px;
}

.stage-flow div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(47, 78, 67, .06);
}

.stage-flow span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  font-size: .82rem;
}

.stage-flow i {
  height: 2px;
  background: linear-gradient(90deg, rgba(224, 133, 115, .16), rgba(66, 104, 91, .46));
  position: relative;
}

.stage-flow i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(66, 104, 91, .56);
  border-right: 2px solid rgba(66, 104, 91, .56);
  transform: translateY(-50%) rotate(45deg);
}

.stage-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stage-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.stage-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 104, 91, .36);
  box-shadow: 0 16px 34px rgba(55, 70, 63, .12);
}

.primary-stage {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-color: transparent;
}

.stage-num {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: .82rem;
  font-weight: 900;
}

.primary-stage .stage-num {
  color: #f8d0c5;
}

.stage-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.16rem;
  line-height: 1.45;
}

.primary-stage h3 {
  color: #fff;
}

.stage-card p {
  margin: 12px 0 0;
  color: var(--sub);
  font-size: .92rem;
  line-height: 1.7;
}

.primary-stage p {
  color: rgba(255, 255, 255, .88);
}

.stage-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
}

.primary-stage .stage-link {
  color: #fff;
}

.featured-article,
.cat-block,
.message-box {
  margin: 64px 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 32% 1fr;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  object-position: center;
}

.featured-body {
  padding: clamp(18px, 2.4vw, 26px);
}

.featured-body h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.12rem, 1.65vw, 1.45rem);
  line-height: 1.38;
}

.featured-body p {
  margin: 10px 0 0;
  color: var(--sub);
  font-size: .92rem;
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.step-heading {
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
  gap: clamp(20px, 3.5vw, 42px);
  align-items: center;
  margin-bottom: 28px;
}

.step-heading .section-heading {
  margin-bottom: 0;
}

.step-heading-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(47, 78, 67, .14);
}

.section-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.3;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--sub);
}

.band {
  padding: 56px 0;
  background: rgba(255, 247, 232, .72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 0 100vmax rgba(255, 247, 232, .72);
  clip-path: inset(0 -100vmax);
}

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

.outing-block {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outing-block .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid rgba(66, 104, 91, .24);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 104, 91, .34);
  box-shadow: 0 16px 34px rgba(55, 70, 63, .12);
}

.card-tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
}

.rest-block,
.outing-color,
.work-block,
.skill-block { --cat-main: #42685b; --cat-soft: #e7f1ed; --cat-text: #2f4e43; }

.rest-block .card,
.outing-color .card,
.work-block .card,
.skill-block .card,
.english-block .card {
  border-left-color: var(--cat-main);
}

.rest-block .card-tag,
.outing-color .card-tag,
.work-block .card-tag,
.skill-block .card-tag,
.english-block .card-tag {
  color: var(--cat-text);
  background: var(--cat-soft);
}

.rest-block .cards .card:first-child,
.work-block .cards .card:first-child,
.skill-block .cards .card:first-child {
  background: linear-gradient(135deg, var(--cat-soft), #fffdf9 72%);
  border-color: color-mix(in srgb, var(--cat-main) 28%, #fff);
  border-left-color: var(--cat-main);
  box-shadow: 0 14px 30px rgba(47, 78, 67, .10);
}

.rest-block .cards .card:first-child::after,
.work-block .cards .card:first-child::after,
.skill-block .cards .card:first-child::after {
  content: "まず比較";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 9px;
  color: #fff;
  background: var(--cat-main);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.1rem;
  line-height: 1.45;
}

.card p {
  margin: 10px 0 0;
  color: var(--sub);
  font-size: .92rem;
  line-height: 1.68;
}

.message-box {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 34px;
  background: var(--mint);
  border: 1px solid #d8e7e1;
  border-radius: var(--radius);
}

.message-box h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 1.35rem;
}

.message-box p,
.disc {
  margin: 0;
  color: var(--sub);
}

.disc {
  padding: 16px 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .84rem;
}

footer {
  padding: 36px 18px 42px;
  color: var(--sub);
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: .84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.more-articles {
  margin: 56px 0 0;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.more-articles h2 {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.more-note {
  margin: 0 0 12px;
  color: var(--sub);
  font-size: .86rem;
}

.more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.more-links a {
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.more-links a:hover {
  text-decoration: underline;
}

/* Existing article/about page support */
.wrap {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.wrap h1 {
  margin: 20px 0 12px;
  color: var(--green-dark);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.35;
}

.wrap h2 {
  margin: 42px 0 16px;
  padding: 14px 18px;
  color: var(--green-dark);
  background: var(--mint);
  border-left: 6px solid var(--green);
  border-radius: var(--radius);
  font-size: 1.28rem;
  line-height: 1.45;
}

.wrap h3 {
  margin: 30px 0 12px;
  padding-bottom: 8px;
  color: var(--green-dark);
  border-bottom: 2px dotted var(--line);
  font-size: 1.08rem;
}

.wrap p {
  margin: 0 0 1.15em;
}

.crumb {
  margin: 0 0 18px;
  color: var(--sub);
  font-size: .82rem;
}

.crumb a {
  color: var(--sub);
  text-decoration: none;
}

.tagline {
  margin-top: 4px;
  color: var(--sub);
  font-size: .78rem;
}

.hero {
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-band {
  margin: 18px 0 26px;
  padding: 22px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(47, 78, 67, .18);
}

.hero-band .emoji {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.35rem;
  vertical-align: middle;
}

.hero-band .cat {
  display: inline-block;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 800;
}

.hero-band .ht {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.65;
}

.lead-meta {
  margin-bottom: 18px;
  color: var(--sub);
  font-size: .86rem;
}

.lead-meta span {
  margin-right: 12px;
}

.intro p {
  font-size: 1.02rem;
}

.article-visual {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  margin: 28px 0 34px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(231, 241, 237, .98), rgba(255, 253, 249, .98));
  border: 1px solid rgba(66, 104, 91, .20);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(47, 78, 67, .10);
}

.article-visual-illust {
  position: relative;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 28px;
  box-shadow: inset 0 -14px 24px rgba(0, 0, 0, .12);
}

.article-visual-illust::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 22px;
}

.article-visual-illust::after {
  content: attr(data-icon);
  position: relative;
  font-size: 3.2rem;
  line-height: 1;
}

.article-visual-photo {
  width: 112px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--green-dark);
}

.article-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-visual-label {
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 800;
}

.article-visual h2,
.article-visual h3 {
  margin: 0 0 8px;
  padding: 0;
  color: var(--green-dark);
  background: none;
  border: 0;
  font-size: 1.22rem;
  line-height: 1.55;
}

.article-visual p {
  margin: 0;
  color: var(--sub);
  font-size: .94rem;
  line-height: 1.8;
}

.article-visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.article-visual-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(66, 104, 91, .18);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.marker {
  background: linear-gradient(transparent 62%, #ffe4c7 62%);
  font-weight: 800;
}

.note,
.point,
.caution,
.disc {
  border-radius: var(--radius);
}

.note {
  margin: 22px 0;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
}

.note .ttl,
.point .ttl,
.caution .ttl {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-weight: 900;
}

.point {
  margin: 24px 0;
  padding: 20px 22px;
  background: var(--mint);
  border: 1px solid #d8e7e1;
}

.caution {
  margin: 22px 0;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid #efe0c8;
}

ul.checks,
ul.bad {
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}

ul.checks li,
ul.bad li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 26px;
}

ul.checks li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

ul.bad li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.facts,
.cmp {
  width: 100%;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  font-size: .94rem;
}

.wrap:has(.cmp) {
  max-width: 980px;
}

.facts th,
.facts td,
.cmp th,
.cmp td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.facts th {
  width: 34%;
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 800;
}

.cmp {
  table-layout: fixed;
}

.cmp th,
.cmp td {
  padding: 13px 14px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.cmp thead th {
  color: #fff;
  background: var(--green-dark);
  font-size: .86rem;
  white-space: normal;
}

.cmp tbody th {
  width: auto;
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 800;
}

.cmp th:nth-child(1),
.cmp td:nth-child(1) {
  width: 24%;
}

.cmp th:nth-child(2),
.cmp td:nth-child(2) {
  width: 24%;
}

.cmp th:nth-child(3),
.cmp td:nth-child(3) {
  width: 28%;
}

.cmp th:nth-child(4),
.cmp td:nth-child(4) {
  width: 24%;
}

.facts tr:last-child th,
.facts tr:last-child td,
.cmp tr:last-child th,
.cmp tr:last-child td {
  border-bottom: 0;
}

figure {
  margin: 22px 0;
}

figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-photo {
  margin: 18px 0 26px;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-photo video {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-dark);
}

.service-photo figcaption {
  margin-top: 8px;
  color: var(--sub);
  font-size: .86rem;
  line-height: 1.7;
}

.restaurant-wrap {
  max-width: 980px;
}

.restaurant-table {
  margin-bottom: 34px;
}

.restaurant-list {
  display: grid;
  gap: 26px;
  margin: 22px 0 38px;
}

.restaurant-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.restaurant-card figure {
  margin: 0;
}

.restaurant-card figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 440px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.restaurant-card figcaption {
  margin: 0;
  padding: 8px 18px 0;
  text-align: left;
}

.restaurant-card-body {
  padding: clamp(20px, 4vw, 30px);
}

.restaurant-card-body h3 {
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 1.36rem;
}

.restaurant-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.restaurant-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(66, 104, 91, .18);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

figcaption {
  margin-top: 8px;
  color: var(--sub);
  text-align: center;
  font-size: .82rem;
}

.ad {
  margin: 28px 0;
  padding: 18px;
  background: var(--paper);
  border: 1px dashed #d9cfc4;
  border-radius: var(--radius);
  text-align: center;
}

.ad .label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
}

.ad .ad-lead {
  margin: 0 0 14px;
  text-align: left;
  font-size: .95rem;
}

.ad .ad-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ad img {
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.ad .ad-note {
  margin: 10px 0 0;
  color: var(--sub);
  font-size: .8rem;
}

.tracking-pixel {
  display: none;
}

.revenue-next {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 32%);
  gap: 20px;
  align-items: center;
  margin: 34px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(231, 241, 237, .96), rgba(255, 253, 249, .98));
  border: 1px solid rgba(66, 104, 91, .20);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(47, 78, 67, .08);
}

.revenue-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
}

.revenue-next h2 {
  margin: 0 0 10px;
  padding: 0;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  font-size: 1.28rem;
  line-height: 1.45;
}

.revenue-next p {
  margin: 0;
  color: var(--sub);
  font-size: .94rem;
  line-height: 1.8;
}

.revenue-links {
  display: grid;
  gap: 9px;
}

.revenue-links a {
  display: block;
  padding: 11px 13px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(66, 104, 91, .18);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
}

.revenue-links a:hover {
  border-color: var(--green);
}

.closing {
  margin: 42px 0 12px;
  padding: 24px;
  background: var(--mint);
  border: 1px solid #d8e7e1;
  border-radius: var(--radius);
}

.closing h2 {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.next-links {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.next-links li {
  margin-bottom: 10px;
}

.next-links a {
  display: block;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.next-links a:hover {
  border-color: var(--green);
}

.cta-text {
  text-align: left;
  font-weight: 800;
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 62px;
    display: block;
    padding: 14px 0;
  }

  .site-nav {
    margin-top: 8px;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero-top,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .hero-top {
    min-height: 520px;
    align-items: flex-end;
  }

  .hero-copy {
    padding: 30px 22px 132px;
  }

  .hero-thumbs {
    right: 24px;
    bottom: 24px;
    grid-template-columns: repeat(2, 78px);
  }

  .hero-thumbs img {
    width: 78px;
    height: 92px;
  }

  .guide-flow,
  .stage-cards,
  .cards,
  .outing-block .cards,
  .step-heading {
    grid-template-columns: 1fr;
  }

  .mental-note {
    grid-template-columns: 1fr;
  }

  .mental-photo {
    aspect-ratio: 16 / 9;
  }

  .mental-check-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mental-check-grid {
    grid-template-columns: 1fr;
  }

  .mental-ad {
    grid-template-columns: 1fr;
  }

  .stage-flow {
    grid-template-columns: 1fr;
  }

  .stage-flow i {
    width: 2px;
    height: 18px;
    margin: -2px auto;
    background: linear-gradient(180deg, rgba(224, 133, 115, .16), rgba(66, 104, 91, .46));
  }

  .stage-flow i::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .article-visual {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .revenue-next {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .restaurant-card-body {
    padding: 20px;
  }

  .cmp {
    display: block;
    overflow: hidden;
    border-collapse: separate;
  }

  .cmp thead {
    display: none;
  }

  .cmp tbody,
  .cmp tr,
  .cmp th,
  .cmp td {
    display: block;
    width: 100% !important;
  }

  .cmp tr {
    border-bottom: 1px solid var(--line);
  }

  .cmp tr:last-child {
    border-bottom: 0;
  }

  .cmp tbody th {
    padding: 13px 14px 9px;
    border-bottom: 0;
  }

  .cmp tbody td {
    position: relative;
    min-height: 42px;
    padding: 8px 14px 8px 118px;
    border-bottom: 0;
  }

  .cmp tbody td::before {
    position: absolute;
    left: 14px;
    top: 8px;
    width: 90px;
    color: var(--sub);
    font-size: .78rem;
    font-weight: 800;
  }

  .cmp tbody td:nth-child(2)::before {
    content: "向いている人";
  }

  .cmp tbody td:nth-child(3)::before {
    content: "特徴";
  }

  .cmp tbody td:nth-child(4)::before {
    content: "確認点";
  }

  .article-visual-illust {
    width: 86px;
    border-radius: 22px;
  }

  .article-visual-photo {
    width: 86px;
    border-radius: 22px;
  }

  .article-visual-illust::before {
    inset: 12px;
    border-radius: 17px;
  }

  .article-visual-illust::after {
    font-size: 2.45rem;
  }
}

@media (max-width: 520px) {
  main {
    width: min(100% - 28px, 1120px);
    padding-top: 20px;
  }

  .brand {
    font-size: .95rem;
  }

  .site-nav {
    font-size: .82rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .featured-body,
  .message-box {
    padding: 22px;
  }

  .cat-block,
  .featured-article,
  .message-box {
    margin: 46px 0;
  }
}
