:root {
  --ink: #3b4252;
  --muted: #74777b;
  --line: #e9e3dc;
  --paper: #fdfcfa;
  --quiet: #f8f5f0;
  --deep: #3b4252;
  --sage: #a8b5a0;
  --blue: #64717b;
  --plum: #9b858d;
  --warm: #d4a5a5;
  --gold: #8b7355;
  --card: #fdfcfa;
  --card-line: #e8e2d7;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --shadow: 0 22px 54px rgba(21, 27, 30, 0.08);
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  width: 100%;
  margin: 0;
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.custom-background {
  background-color: var(--paper) !important;
  background-image: none !important;
}

img {
  display: block;
  max-width: 100%;
}

[id] {
  scroll-margin-top: 150px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited,
a:active {
  color: inherit;
}

a:hover {
  color: #4f696b;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 16px;
  align-items: center;
  padding: 20px 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 252, 250, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.brand-kicker {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(10px, 2.6vw, 12px);
  font-weight: 500;
  line-height: 1.4;
}

.brand-kicker::before,
.brand-kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin: 0 8px 4px 0;
  border-top: 2px dotted #d6c7bf;
}

.brand-kicker::after {
  margin: 0 0 4px 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-name {
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(25px, 5.3vw, 42px);
  font-weight: 400;
  line-height: 1;
  white-space: normal;
}

.brand-icon {
  flex: 0 0 auto;
  width: clamp(34px, 4.6vw, 42px);
  height: clamp(34px, 4.6vw, 42px);
  margin-left: 10px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.search-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 17px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-button {
  gap: 6px;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.category-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 15px 0 16px;
  scrollbar-width: none;
  white-space: nowrap;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  color: #3f4652;
  font-size: clamp(14px, 3.4vw, 17px);
  font-weight: 500;
}

.category-nav .nav-for-men {
  color: #394252;
}

.category-nav .nav-for-men:hover {
  color: #263142;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #f7f7f5;
  overflow: hidden;
}

.hero picture {
  display: block;
}

.hero img {
  width: 100%;
  height: min(48svh, 520px);
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253, 252, 250, 0.82), rgba(253, 252, 250, 0.54) 35%, rgba(253, 252, 250, 0.18) 66%, rgba(253, 252, 250, 0.1)),
    linear-gradient(180deg, rgba(253, 252, 250, 0.08), rgba(253, 252, 250, 0.22));
}

.hero-panel {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 4vw, 46px);
  width: min(440px, calc(100% - 36px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  z-index: 2;
}

.hero-panel p {
  margin: 0 0 8px;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

.hero-panel h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 4.9vw, 36px);
  font-weight: 400;
  line-height: 1.45;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: #4e5557;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.hero-actions,
.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions a,
.text-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 500;
}

.hero-actions a {
  min-width: 156px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(253, 252, 250, 0.88);
  color: var(--deep);
  text-shadow: none;
}

.hero-actions a + a {
  background: rgba(17, 63, 70, 0.72);
  color: #fff;
}

.text-links a {
  padding: 0 14px;
  border: 1px solid #cfd7d3;
  background: var(--card);
  color: var(--deep);
  font-size: 14px;
}

.entry,
.intro,
.featured,
.concerns,
.search-panel,
.portal-intro,
.positioning,
.note-grid,
.magazines,
.latest-posts,
.mens,
.latest,
.profile {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 34px 18px 0;
}

.intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 0.62fr);
  gap: 22px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.portal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 0.85fr;
  gap: 28px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.portal-intro h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 4.7vw, 34px);
  font-weight: 400;
}

.portal-intro p:not(.section-kicker) {
  margin: 14px 0 0;
  color: #4f5658;
  font-size: clamp(15px, 3.4vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.portal-links {
  display: grid;
  gap: 10px;
}

.portal-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dededb;
  border-radius: 8px;
  background: var(--card);
  color: var(--deep);
  font-weight: 500;
}

.portal-links a:first-child {
  background: var(--deep);
  color: #fff;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.positioning h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 4.6vw, 33px);
  font-weight: 400;
}

.positioning p:not(.section-kicker) {
  margin: 14px 0 0;
  color: #4f5658;
  font-size: clamp(15px, 3.4vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.positioning-tags {
  display: flex;
  width: min(100%, 380px);
  min-height: 248px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  margin-inline: auto;
}

.positioning-tags span {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--card);
  color: #3d4547;
  font-size: 14px;
  font-weight: 500;
}

.portrait {
  display: grid;
  width: clamp(180px, 14vw, 200px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(232, 226, 215, 0.9);
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 18px 42px rgba(24, 35, 36, 0.1);
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-copy h2 {
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(23px, 4.9vw, 32px);
  font-weight: 400;
}

.intro-copy p:not(.section-kicker) {
  margin: 12px 0 0;
  color: #46504f;
  font-size: clamp(15px, 3.6vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.intro-facts {
  display: grid;
  gap: 0 !important;
}

.intro-facts div {
  display: flex;
  min-height: auto !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.intro-facts strong {
  display: inline-flex;
  align-items: baseline;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 28px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  line-height: 1.2 !important;
}

.intro-facts strong .fact-plus {
  display: inline-block;
  position: relative;
  top: -0.42em;
  margin-left: 3px;
  color: #b49862;
  font-family: var(--serif);
  font-size: 0.62em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.intro-facts strong .fact-unit {
  margin-left: 4px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 0.54em;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.intro-facts span {
  color: #8b8680 !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: right;
  text-transform: lowercase !important;
}

.intro-facts span small {
  display: block;
  margin-top: 3px;
  color: #9c968d;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.section-kicker {
  margin: 0;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
}

h1,
h2,
h3,
h4,
h5,
.section-title,
.card-title,
.magazine-title {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

.section-head h2,
.mens h2,
.profile h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 4.8vw, 30px);
  font-weight: 400;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.entry-card {
  display: grid;
  min-height: 172px;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(28, 38, 39, 0.07);
}

.entry-card span,
.article-card span,
.service-card span,
.mens-points span {
  width: fit-content;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none !important;
}

.entry-card span {
  text-transform: none;
}

.entry-card strong {
  font-family: var(--serif);
  font-size: clamp(18px, 4.2vw, 22px);
  font-weight: 400;
  line-height: 1.25;
}

.entry-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.entry-card.is-blog {
  background: #f9faf7;
}

.entry-card.is-analysis {
  background: #f6f8f9;
}

.entry-card.is-line {
  background: #faf8f6;
}

.section-card {
  display: flex !important;
  min-height: 240px !important;
  flex-direction: column !important;
  justify-content: flex-start;
}

.section-card span {
  text-transform: none !important;
}

.concerns {
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.concerns-lead {
  max-width: 720px;
  margin: -2px 0 20px;
  color: #5f6668;
  font-size: clamp(15px, 3.4vw, 17px);
  line-height: 1.9;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.concern-card {
  min-height: 176px !important;
  border-color: rgba(232, 226, 215, 0.95) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

.concern-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}

.concern-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.pinned {
  padding-top: 28px;
}

.article-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
}

.article-card {
  min-width: 0;
}

.article-card a {
  display: grid;
  gap: 10px;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.62;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
}

.article-card span {
  display: block;
  color: var(--sage);
}

.article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 3.8vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.featured .article-strip {
  align-items: stretch !important;
}

.featured .article-card {
  display: flex !important;
  height: 100% !important;
  flex-direction: column !important;
}

.featured .article-card a {
  display: flex !important;
  height: 100% !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.featured .article-card small {
  margin-top: auto !important;
}

.reading-paths {
  display: grid;
  gap: 22px;
}

.reading-group {
  padding: clamp(18px, 3.2vw, 28px);
  border: 1px solid var(--card-line);
  border-radius: 8px;
}

.reading-group-note {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(248, 245, 240, 0.72)),
    #fdfcfa;
}

.reading-group-men-invite {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(18px, 3.4vw, 34px);
  align-items: center;
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.96), rgba(243, 246, 245, 0.82)),
    #f8f7f4;
}

.men-invite-copy h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 4.2vw, 32px);
  font-weight: 400;
  line-height: 1.45;
}

.men-invite-sub {
  margin: 4px 0 0;
  color: #64717b;
  font-family: var(--serif);
  font-size: clamp(15px, 2.8vw, 18px);
  font-weight: 400;
}

.men-invite-copy p:not(.section-kicker):not(.men-invite-sub) {
  margin: 14px 0 0;
  color: #4d565a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.men-invite-button {
  width: fit-content;
  margin-top: 20px;
  border-color: rgba(100, 113, 123, 0.32);
  color: #313a46;
}

.men-invite-image {
  margin: 0;
}

.men-invite-image img {
  width: 100%;
  aspect-ratio: 1.78;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  object-fit: cover;
}

.note-mini-link {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #74777b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.note-mini-link a {
  color: #3b4252;
  font-family: var(--serif);
}

.reading-group-blog {
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.94), rgba(243, 244, 241, 0.76)),
    #f9faf7;
}

.reading-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.reading-group-head h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.5;
}

.reading-group-head p:not(.section-kicker) {
  margin: 8px 0 0;
  color: #5a6470;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.reading-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded8cf;
  border-radius: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.62);
  color: #3b4252;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.reading-group .article-card img {
  background: #fffefe;
}

.reading-group-blog .article-card h3 {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.65;
}

.reading-group-blog .article-card small {
  color: #7b7f7d;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-grid {
  padding-top: 38px;
}

.magazine-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 18px;
}

.magazine-article-grid article {
  min-width: 0;
  height: 100%;
}

.magazine-article-grid a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.magazine-article-grid img {
  width: 100%;
  aspect-ratio: 1.78;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  object-fit: cover;
}

.magazine-article-grid h3 {
  flex-grow: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 3.8vw, 22px);
  font-weight: 400;
  line-height: 1.65;
}

.magazine-article-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.search-panel h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(21px, 4.4vw, 28px);
  font-weight: 400;
}

.search-box {
  display: grid;
  gap: 10px;
  justify-self: stretch;
}

.search-box p {
  margin: 0;
  color: var(--deep);
  font-size: clamp(14px, 2.8vw, 16px);
  font-weight: 500;
  line-height: 1.7;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-form label {
  position: relative;
  display: block;
}

.search-form-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-form input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #e8e2d7;
  border-radius: 4px;
  padding: 0 12px 0 36px;
  background: #fffefe;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.search-form input:focus {
  border-color: #c9a876;
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.15);
}

.search-form button {
  min-height: 40px;
  border: 1px solid #e8e2d7;
  border-radius: 4px;
  padding: 0 16px;
  background: var(--card);
  color: var(--deep);
  font-weight: 500;
  cursor: pointer;
}

.search-form button:hover {
  border-color: #c9a876;
}

.mens {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 14px;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.magazines {
  padding-top: 42px;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.magazine-grid a {
  display: grid;
  min-height: 190px;
  align-content: start;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(28, 38, 39, 0.06);
}

.magazine-grid span,
.post-list span {
  width: fit-content;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none !important;
}

.magazine-grid strong {
  font-family: var(--serif);
  font-size: clamp(17px, 3.7vw, 21px);
  font-weight: 400;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
}

.magazine-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.latest-posts {
  padding-top: 38px;
}

.post-list {
  display: grid;
  border-top: 1px solid #e8e2d7;
}

.post-list a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e2d7;
}

.post-list span {
  text-transform: none !important;
}

.post-list strong {
  font-family: var(--serif);
  font-size: clamp(16px, 3.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
}

.post-list small {
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}

.mens-copy p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #46504f;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.mens-lead span {
  display: block;
}

.mens-points {
  display: grid;
  gap: 12px;
}

.mens-points div,
.mens-points-link {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
}

.mens-points-link {
  border-color: rgba(100, 113, 123, 0.28);
  background: #f8f7f4;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.mens-points-link:hover {
  border-color: #64717b;
  color: #263142;
  transform: translateY(-2px);
}

.mens-points strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.mens-points small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.men-page {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(72px, 9vw, 118px);
}

.note-page {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(72px, 9vw, 118px);
}

.note-hero,
.note-featured,
.note-magazines {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(248, 245, 240, 0.74)),
    #fdfcfa;
}

.note-featured,
.note-magazines {
  margin-top: 22px;
}

.note-hero h1 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 4.8vw, 38px);
  font-weight: 400;
  line-height: 1.5;
}

.note-hero p:not(.section-kicker) {
  margin: 14px 0 0;
  color: #4f5658;
  font-size: clamp(15px, 3.4vw, 17px);
  font-weight: 400;
  line-height: 1.95;
}

.note-hero-link {
  width: fit-content;
  margin-top: 22px;
}

.men-hero,
.men-route,
.men-case,
.men-next-file,
.men-related,
.men-latest {
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(38, 49, 66, 0.055);
}

.men-hero {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 240, 0.72)),
    linear-gradient(120deg, rgba(57, 66, 82, 0.055), rgba(255, 255, 255, 0));
}

.men-hero h1,
.men-route h2,
.men-case h2,
.men-related h2,
.men-latest h2 {
  color: #303948;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.men-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.12;
}

.men-hero-sub {
  margin: -10px 0 0;
  color: #566171;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.45;
}

.men-lead {
  display: grid;
  gap: 18px;
  max-width: 760px;
  color: #46504f;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 2;
}

.men-lead p {
  margin: 0;
}

.men-case,
.men-route,
.men-next-file,
.men-related,
.men-latest {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(28px, 4vw, 42px);
}

.men-case .section-head,
.men-route .section-head,
.men-latest .section-head {
  justify-content: flex-start;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
}

.men-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.men-route-step {
  position: relative;
  min-width: 0;
}

.men-route-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(142, 153, 166, 0.32);
  border-radius: 8px;
  background: rgba(248, 250, 250, 0.72);
  color: #303948;
}

a.men-route-card:hover {
  border-color: rgba(48, 57, 72, 0.36);
  background: rgba(248, 250, 250, 0.92);
}

.men-route-card span,
.men-next-file span,
.men-latest .article-card span {
  color: #566171;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none !important;
}

.men-route-card strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 400;
  line-height: 1.45;
}

.men-route-card small {
  color: #6d7478;
  font-size: 13px;
  line-height: 1.7;
}

.men-route-card.is-disabled {
  color: #6d7478;
  cursor: default;
}

.men-route-arrow {
  position: absolute;
  top: 50%;
  right: calc(clamp(14px, 2vw, 22px) / -1);
  z-index: 1;
  color: rgba(86, 97, 113, 0.58);
  font-family: var(--serif);
  font-size: 18px;
  transform: translate(50%, -50%);
}

.men-next-file {
  padding: 0;
}

.men-next-file a {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 3.4vw, 30px) clamp(24px, 4vw, 38px);
}

.men-next-file strong {
  color: #303948;
  font-family: var(--serif);
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 400;
  line-height: 1.45;
}

.men-next-file small {
  color: #5e6768;
  font-size: 14px;
  line-height: 1.7;
}

.men-case-card {
	display: grid;
	gap: 14px;
	max-width: 760px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(142, 153, 166, 0.38);
  border-radius: 8px;
	background: rgba(248, 250, 250, 0.76);
}

.men-case-card + .men-case-card {
	margin-top: 18px;
}

.men-case-card a {
	display: grid;
	gap: 14px;
}

.men-case-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 1px solid rgba(142, 153, 166, 0.24);
  border-radius: 8px;
  object-fit: contain;
  box-sizing: border-box;
}

.men-case-card .men-case-image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  inline-size: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.men-case-card span {
  width: fit-content;
  color: #566171;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none !important;
}

.men-case-card h3 {
  color: #303948;
  font-family: var(--serif);
  font-size: clamp(21px, 3.5vw, 30px);
  font-weight: 400;
  line-height: 1.45;
}

.men-case-card p {
  margin: 0;
  color: #5e6768;
  font-size: 15px;
  line-height: 1.9;
}

.men-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 28px);
	max-width: 1080px;
}

.men-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.men-latest-card a {
  height: 100%;
}

.men-latest-empty {
  margin: 0;
  color: #5e6768;
  line-height: 1.9;
}

.men-budget-link {
  margin: 18px 0 0;
  text-align: right;
}

.men-budget-link a {
  color: #566171;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-color: rgba(86, 97, 113, 0.28);
  text-underline-offset: 5px;
}

.men-budget-link a:hover {
  color: #303948;
  text-decoration-color: rgba(48, 57, 72, 0.56);
}

.men-related .article-card span,
.men-related .article-card small {
  color: #566171;
}

.men-related .article-card a:hover {
  border-color: rgba(86, 97, 113, 0.46);
}

.latest {
  padding-bottom: 8px;
}

.consultation {
  padding-top: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid {
  gap: 16px;
}

.service-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.96), rgba(250, 248, 244, 0.82)),
    var(--card);
}

.service-card-primary {
  border-color: #d8d3ca;
}

.monitor-card {
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.96), rgba(247, 244, 238, 0.9)),
    var(--card);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 4.4vw, 25px);
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: #47504f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin-top: 4px;
}

.price-row strong {
  color: #3b4252;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.price-row strong .currency {
  margin-left: 2px;
  font-size: 0.62em;
  font-weight: 400;
}

.price-row span {
  color: #8b8680;
  font-family: var(--serif);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.service-card .price-subtext,
.service-card .meta-text,
.service-card small {
  color: #8b8680 !important;
  font-family: var(--serif) !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.service-card small {
  align-self: end;
  color: var(--muted);
  font-weight: 400;
}

.service-flow-link {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid var(--card-line);
  border-radius: 4px;
  color: #3b4252;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.service-flow-link:hover {
  border-color: #c9a876;
  background: #f8f5f0;
}

.service-card > span {
  text-transform: none !important;
}

.service-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.service-notes div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
}

.service-notes .service-note-wide {
  grid-column: 1 / -1;
  gap: 10px;
  padding: 18px 20px;
}

.service-notes span {
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  text-transform: none !important;
}

.service-notes strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.service-notes small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.service-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 2px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  list-style: none;
}

.service-notes li {
  position: relative;
  padding-left: 14px;
}

.service-notes li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a876;
  content: "";
}


.profile {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 58px;
}

.profile p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #46504f;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.profile-links {
  display: grid;
  gap: 10px;
}

.profile-links a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd7d3;
  border-radius: 8px;
  background: var(--card);
  color: var(--deep);
  font-weight: 500;
}

.profile-links a:first-child {
  background: var(--deep);
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
}

.contact-form .wpcf7-form {
  display: grid;
  gap: 12px;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--deep);
  font-size: 13px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--card-line);
  border-radius: 4px;
  background: #fffefe;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline-color: var(--gold);
}

.contact-form input,
.contact-form select {
  min-height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.16);
}

.contact-form button,
.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
  justify-self: start;
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  padding: 0 28px;
  background: #5a6470;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.contact-form .wpcf7 form br {
  display: none !important;
}

.contact-form .wpcf7 form p {
  margin: 0;
  line-height: 1.6;
}

.contact-form .wpcf7 form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form .wpcf7 form label > span {
  display: block;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.contact-form .wpcf7 input,
.contact-form .wpcf7 select,
.contact-form .wpcf7 textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
}

.contact-form .wpcf7 input[type="submit"] {
  display: inline-block;
  width: auto;
}

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 32px 18px 44px;
  border-top: 1px solid var(--line);
  color: #5a6470;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
}

.footer-links a {
  color: #5a6470;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-links li {
  margin: 0;
}

.footer-legal-links a {
  color: #8b8680;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

.footer-tagline {
  margin: 2px 0 0;
  color: #3b4252;
  font-size: 12px;
  font-weight: 400;
}

.site-footer small {
  color: #8b8680;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
}

.section-kicker,
.section-label,
.featured-tag,
.eyebrow,
.category-label,
.card-label,
.intro-facts span,
.entry-card span,
.article-card span,
.service-card span,
.service-notes span,
.magazine-grid span,
.post-list span,
h2 .label,
h3 .label,
[class*="label"],
[class*="tag"],
[class*="eyebrow"] {
  text-transform: none !important;
}

.search-dialog {
  width: min(92vw, 520px);
  border: 0;
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(28, 34, 36, 0.24);
  backdrop-filter: blur(3px);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.search-dialog label {
  display: grid;
  gap: 10px;
  color: var(--deep);
  font-weight: 500;
}

.search-dialog input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd7d3;
  border-radius: 6px;
  padding: 0 14px;
  outline-color: var(--sage);
}

@media (min-width: 768px) {
  .menu-toggle,
  .hamburger-menu,
  .nav-toggle,
  .menu-button,
  [data-menu-toggle],
  [class*="hamburger"],
  [class*="menu-toggle"] {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px 10px;
    padding: 18px 14px 0;
  }

  .brand {
    max-width: calc(100vw - 116px);
    align-items: flex-start;
  }

  .brand-kicker {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
    white-space: nowrap;
  }

  .brand-kicker::before,
  .brand-kicker::after {
    display: none;
  }

  .brand-row {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    margin-left: 2px;
  }

  .category-nav {
    gap: 20px;
  }

  .hero img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
    object-position: center;
  }

  .entry-grid,
  .concern-grid,
  .service-grid,
  .service-notes,
  .intro,
  .search-panel,
  .portal-intro,
  .portal-intro > *,
  .positioning,
  .magazine-grid,
  .magazine-article-grid,
  .men-related-grid,
  .mens,
  .profile {
    grid-template-columns: 1fr;
  }

  .portal-intro {
    max-width: 100%;
    overflow-x: hidden;
  }

  .portal-intro h2,
  .portal-intro p {
    max-width: 100%;
    min-width: 0;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .portal-intro h2 {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.55;
  }

  .service-notes ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .portrait {
    width: 96px;
  }

  .post-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .post-list small {
    white-space: normal;
  }

  .article-strip {
    gap: 24px;
  }

  .reading-group-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reading-group-men-invite {
    grid-template-columns: 1fr;
  }

  .note-page {
    width: min(100% - 28px, 1120px);
  }

  .reading-link {
    justify-self: start;
    white-space: normal;
  }

  .positioning {
    align-items: start;
  }

  .positioning-tags {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    gap: 10px;
    margin-inline: 0;
  }

  .men-case .section-head {
    display: grid;
    gap: 6px;
    justify-items: start;
    align-items: start;
    margin-bottom: 18px;
  }

  .men-page,
  .men-case,
  .men-route,
  .men-next-file,
  .men-related,
  .men-latest,
  .men-case-card,
  .men-case-card > a,
  .men-route-grid,
  .men-route-step,
  .men-route-card,
  .men-latest-grid,
  .men-related-grid,
  .men-related .article-card,
  .men-related .article-card > a {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .men-case-card {
    max-width: 100%;
    overflow: hidden;
    padding: clamp(20px, 6vw, 28px);
  }

  .men-case-card a {
    max-width: 100%;
    min-width: 0;
  }

  .men-case-card img,
  .men-case-card .men-case-image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    inline-size: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    background: #fffefe;
  }

  .men-related .article-card img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    inline-size: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .men-case-card h3 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: clamp(20px, 6vw, 25px);
    line-height: 1.55;
  }

  .men-case-card p,
  .men-case-card span {
    max-width: 100%;
  }

  .men-route .section-head,
  .men-latest .section-head {
    display: grid;
    gap: 6px;
    justify-items: start;
    align-items: start;
    margin-bottom: 18px;
  }

  .men-route-grid,
  .men-latest-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .men-route-step {
    display: grid;
    gap: 10px;
  }

  .men-route-card {
    min-height: 0;
    padding: 18px;
  }

  .men-route-arrow {
    position: static;
    justify-self: center;
    transform: none;
  }

  .men-next-file a {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .men-next-file strong {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px 10px;
  }

  .brand {
    max-width: calc(100vw - 104px);
  }

  .brand-name {
    font-size: clamp(20px, 5.35vw, 24px);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .brand-kicker {
    font-size: 10px;
    margin-left: 0;
  }

  .brand-kicker::before,
  .brand-kicker::after {
    display: none;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .search-icon {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .menu-button span {
    width: 25px;
  }

  .search-panel button {
    justify-self: stretch;
  }

  .hero-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 22px 16px 20px;
    padding: 0;
  }

  .men-case-card {
    padding: 20px;
  }

  .men-case-card h3 {
    font-size: clamp(19px, 5.8vw, 23px);
  }
}

@media (max-width: 374px) {
  .brand-icon {
    display: none;
  }
}

@media (min-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 24px 40px 0;
  }

  .header-actions {
    grid-column: 3;
  }

  .category-nav {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .entry,
  .intro,
  .featured,
  .concerns,
  .search-panel,
  .portal-intro,
  .positioning,
  .note-grid,
  .magazines,
  .latest-posts,
  .mens,
  .latest,
  .profile {
    padding-inline: 30px;
  }

  .entry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reading-group-blog .article-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .men-case-card {
    max-width: 100% !important;
    overflow: hidden;
  }

  .men-case-card > a {
    display: block !important;
  }

  .men-case-card img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    object-fit: contain !important;
  }

  .men-case-card h3,
  .men-case-card p {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }
}

/* ケースファイルを横2列に（シリーズ拡張に強い） */
.men-case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 28px);
	max-width: none;
}
.men-case-card {
	max-width: 100%;
	min-width: 0;
}
.men-case-grid .men-case-card + .men-case-card {
	margin-top: 0;
}
@media (max-width: 760px) {
	.men-case-grid { grid-template-columns: 1fr; }
}

/* 悩み別ナビ：カードに枠をつけてやわらかく */
.concern-grid { gap: 18px; }
.concern-card {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	min-height: 0 !important;
	padding: 22px 22px 24px;
	border: 1px solid rgba(212, 165, 165, 0.28);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 2px 12px rgba(150, 120, 120, 0.05);
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.concern-card:hover {
	border-color: rgba(212, 165, 165, 0.55);
	box-shadow: 0 6px 18px rgba(150, 120, 120, 0.10);
	transform: translateY(-2px);
}
.concern-card > span {
	font-family: Georgia, serif;
	font-style: italic;
	color: rgb(212, 165, 165);
	font-size: 14px;
	letter-spacing: 0.04em;
}
.concern-card > strong { font-family: "Noto Serif JP", serif; }

/* 個別美容設計：2枚のカードのボタンを下端で揃える */
.service-card { display: flex !important; flex-direction: column !important; gap: 10px !important; }
.service-card .service-flow-link { margin-top: auto !important; }
.service-card small { align-self: flex-start !important; }

/* /blog 肝斑検証シリーズ：カード画像のはみ出し防止（検証済み） */
.tomomi-series-item { grid-template-columns: minmax(0, 1fr) !important; }
.tomomi-series-thumb { width: 100%; max-width: 100%; min-width: 0; }
.tomomi-series-thumb img { width: 100%; height: 100%; max-width: 100%; min-width: 0; display: block; object-fit: cover; }

/* スマホ：/blog のグリッドが画像・文字をはみ出す不具合の修正（検証済み） */
@media (max-width: 760px) {
	.tomomi-first-read-grid,
	.tomomi-series-list,
	.tomomi-category-grid,
	.tomomi-blog-grid { grid-template-columns: minmax(0, 1fr) !important; }
	.tomomi-first-read-card,
	.tomomi-first-read-card > a,
	.tomomi-first-read-media,
	.tomomi-series-item { min-width: 0 !important; }
	.tomomi-first-read-media img { width: 100% !important; height: 100% !important; display: block !important; }
}

/* /blog シリーズカード：内側の文字グリッドのはみ出し（文字切れ）防止 */
.tomomi-series-copy { grid-template-columns: minmax(0, 1fr) !important; min-width: 0 !important; }

/* /blog シリーズカード：画像位置と下端リンクを3枚で揃える */
body.tomomi-blog-index .tomomi-series-item {
	grid-template-rows: 1em auto minmax(0, 1fr) auto !important;
	align-items: start !important;
	height: 100% !important;
}
body.tomomi-blog-index .tomomi-series-number {
	display: block !important;
	height: 1em !important;
	line-height: 1 !important;
}
body.tomomi-blog-index .tomomi-series-thumb {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	aspect-ratio: 16 / 9 !important;
	height: auto !important;
	line-height: 0 !important;
	overflow: hidden !important;
}
body.tomomi-blog-index .tomomi-series-thumb img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
	vertical-align: top !important;
}
body.tomomi-blog-index .tomomi-series-copy {
	align-self: stretch !important;
	display: grid !important;
	grid-template-rows: auto 1fr !important;
}
body.tomomi-blog-index .tomomi-series-link {
	align-self: end !important;
	margin-top: 0 !important;
}

/* /blog シリーズ見出し：枠が広がって折り返せず切れるのを修正 */
.tomomi-series-head { grid-template-columns: minmax(0, 1fr) !important; min-width: 0 !important; }

/* スマホヘッダー：横スクロールナビをメニュードロップダウンへ変更 */
@media (max-width: 767px) {
  .site-header {
    padding-bottom: 18px;
  }

  .category-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding: 8px 18px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(253, 252, 250, 0.98);
    box-shadow: 0 12px 24px rgba(59, 66, 82, 0.08);
    white-space: normal;
  }

  .category-nav.is-open {
    display: flex;
  }

  .category-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(214, 199, 191, 0.55);
    font-size: 15px;
  }

  .category-nav a:last-child {
    border-bottom: 0;
  }

  .menu-button span {
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: center;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
}
