:root {
  --drt-brand-50: #fff7ed;
  --drt-brand-100: #ffedd5;
  --drt-brand-200: #fed7aa;
  --drt-brand-300: #fdba74;
  --drt-brand-400: #fb923c;
  --drt-brand-500: #f97316;
  --drt-brand-600: #ea580c;
  --drt-brand-700: #c2410c;
  --drt-brand-800: #9a3412;
  --drt-brand-900: #7c2d12;
  --drt-bg: #fdfbf7;
  --drt-ink: #2c3338;
  --drt-muted: #667085;
  --drt-line: #f3ede4;
  --drt-green: #4f6f52;
  --drt-shadow-soft: 0 10px 40px -10px rgba(33, 24, 13, 0.08);
  --drt-shadow-float: 0 20px 40px -5px rgba(33, 24, 13, 0.12);
  --drt-serif: "Noto Serif JP", serif;
  --drt-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
  --drt-adminbar-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--drt-bg);
  color: var(--drt-ink);
  font-family: var(--drt-sans);
  line-height: 1.75;
  overflow-x: hidden;
}

body.admin-bar {
  --drt-adminbar-offset: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    --drt-adminbar-offset: 46px;
  }
}

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

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

.drt-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.drt-skip {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: var(--drt-brand-700);
  border-radius: 999px;
}

.drt-skip:focus {
  top: 16px;
}

.drt-site-header {
  position: sticky;
  top: var(--drt-adminbar-offset);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  color: #fff;
  background: rgba(44, 51, 56, .96);
  box-shadow: 0 18px 35px rgba(13, 18, 22, .18);
  backdrop-filter: blur(14px);
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  will-change: background-color, box-shadow;
}

.drt-site-header:not(.is-solid) {
  position: fixed;
  top: var(--drt-adminbar-offset);
  background: rgba(44, 51, 56, 0);
  box-shadow: none;
  backdrop-filter: blur(0);
}

.drt-site-header.is-solid,
.drt-site-header.is-scrolled {
  background: rgba(44, 51, 56, .96);
  box-shadow: 0 18px 35px rgba(13, 18, 22, .18);
  backdrop-filter: blur(14px);
}

.drt-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
}

.drt-logo {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--drt-serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + .6vw, 1.55rem);
  letter-spacing: .06em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, .55);
}

.drt-logo small {
  margin-top: 3px;
  font-family: var(--drt-sans);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.5;
  white-space: nowrap;
  opacity: .86;
}

.drt-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .92);
  font-size: .86rem;
  font-weight: 600;
}

.drt-nav a {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  white-space: nowrap;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .28));
  transition: color .25s ease;
}

.drt-nav a:hover {
  color: var(--drt-brand-200);
}

.drt-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
}

.drt-mobile-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: calc(100dvh - var(--drt-adminbar-offset) - 108px);
  overflow-y: auto;
  padding: 54px 18px 18px;
  border-radius: 18px;
  background: rgba(44, 51, 56, .98);
  box-shadow: var(--drt-shadow-float);
}

.drt-mobile-panel.is-open {
  display: block;
}

.drt-mobile-panel .drt-nav {
  display: grid;
  gap: 4px;
}

.drt-mobile-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
}

.drt-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.drt-hero__image,
.drt-hero__image img,
.drt-hero__overlay,
.drt-sunbeam {
  position: absolute;
  inset: 0;
}

.drt-hero__image {
  z-index: -3;
}

.drt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.84) saturate(1.05);
}

.drt-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(20, 22, 24, .42), rgba(124, 45, 18, .24) 58%, rgba(44, 51, 56, .44)),
    radial-gradient(circle at 50% 12%, rgba(255, 237, 213, .32), rgba(255, 255, 255, 0) 58%);
}

.drt-sunbeam {
  z-index: -1;
  width: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 0%, rgba(255, 237, 213, .48) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.drt-hero__content {
  width: min(860px, calc(100% - 40px));
  padding-top: 76px;
  text-align: center;
}

.drt-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--drt-brand-200);
  font-family: var(--drt-serif);
  font-size: clamp(1rem, .92rem + .35vw, 1.25rem);
  letter-spacing: .18em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, .6);
}

.drt-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--drt-serif);
  font-size: clamp(2.25rem, 1.54rem + 3vw, 4.2rem);
  line-height: 1.32;
  letter-spacing: 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .62);
}

.drt-hero__lead {
  max-width: 700px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(1rem, .94rem + .35vw, 1.22rem);
  font-weight: 600;
  line-height: 1.9;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .58);
}

.drt-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--drt-brand-900);
  font-weight: 700;
  box-shadow: 0 0 24px rgba(255, 255, 255, .28);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.drt-hero__cta:hover {
  transform: translateY(-2px);
  color: var(--drt-brand-700);
  box-shadow: 0 12px 28px rgba(249, 115, 22, .28);
}

.drt-hero__curve {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: clamp(52px, 7vw, 84px);
  color: var(--drt-bg);
}

.drt-hero__curve svg {
  display: block;
  width: 100%;
  height: 100%;
}

.drt-section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.home .drt-section,
.blog .drt-section {
  padding-bottom: clamp(48px, 6vw, 72px);
}

.drt-section-title {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.drt-section-title span,
.drt-archive-eyebrow {
  color: var(--drt-brand-500);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.drt-section-title h2,
.drt-archive-header h1 {
  margin: 10px 0 0;
  font-family: var(--drt-serif);
  font-size: clamp(2rem, 1.72rem + 1.1vw, 2.8rem);
  line-height: 1.45;
}

.drt-section-title h2::after,
.drt-title-line::after,
.drt-widget-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--drt-brand-400);
}

.drt-section-title p,
.drt-archive-header p {
  margin: 24px auto 0;
  color: var(--drt-muted);
  font-weight: 500;
}

.drt-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: clamp(42px, 5vw, 64px);
  align-items: stretch;
}

.drt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.drt-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--drt-shadow-soft);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s cubic-bezier(.16, 1, .3, 1);
}

.drt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, .16), 0 0 0 1px rgba(249, 115, 22, .1);
}

.drt-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 5fr) 7fr;
}

.drt-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--drt-brand-100);
}

.drt-card--wide .drt-card__image {
  height: 100%;
  min-height: 300px;
  aspect-ratio: auto;
}

.drt-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.drt-card:hover .drt-card__image img {
  transform: scale(1.055);
}

.drt-card__cat {
  position: absolute;
  top: 18px;
  left: 18px;
}

.drt-pill {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 36px);
  padding: 6px 14px;
  border: 1px solid rgba(254, 215, 170, .8);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--drt-brand-600);
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.drt-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
}

.drt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
  color: #98a2b3;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.drt-card__title {
  margin: 0 0 14px;
  font-family: var(--drt-serif);
  font-size: clamp(1.12rem, 1.04rem + .35vw, 1.38rem);
  line-height: 1.65;
}

.drt-card__title a {
  transition: color .25s ease;
}

.drt-card:hover .drt-card__title a {
  color: var(--drt-brand-600);
}

.drt-card__excerpt {
  margin: 0 0 22px;
  color: #667085;
  font-size: .92rem;
  line-height: 1.95;
}

.drt-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--drt-brand-500);
  font-size: .9rem;
  font-weight: 800;
  transition: color .25s ease, transform .25s ease;
}

.drt-readmore:hover {
  color: var(--drt-brand-700);
  transform: translateX(2px);
}

.drt-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: clamp(44px, 5vw, 64px) 0 0;
  flex-wrap: wrap;
}

.drt-pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #f0e8de;
  border-radius: 999px;
  background: #fff;
  color: #667085;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(33, 24, 13, .05);
}

.drt-pagination .current {
  border-color: transparent;
  background: linear-gradient(135deg, var(--drt-brand-400), var(--drt-brand-600));
  color: #fff;
  box-shadow: 0 0 15px rgba(249, 115, 22, .3);
}

.drt-sidebar {
  display: grid;
  gap: 34px;
  align-content: start;
  align-self: stretch;
}

.drt-main-column {
  min-width: 0;
}

.drt-front-widget-top {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.drt-front-widget-bottom {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  margin-top: clamp(36px, 4.5vw, 56px);
}

.drt-front-widget-bottom .drt-widget {
  margin: 0;
}

.drt-sticky-widget-area {
  position: sticky;
  top: calc(var(--drt-adminbar-offset) + 112px);
  display: grid;
  gap: 24px;
  align-self: start;
  z-index: 2;
}

.drt-widget,
.drt-sidebar .widget {
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 18px;
  background: #fff;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--drt-shadow-soft);
}

.drt-widget-title,
.drt-sidebar .widgettitle,
.drt-sidebar .wp-block-heading {
  margin: 0 0 24px;
  font-family: var(--drt-serif);
  font-size: 1.22rem;
  line-height: 1.45;
}

.drt-widget-title::after,
.drt-sidebar .widgettitle::after,
.drt-sidebar .wp-block-heading::after {
  margin-left: 0;
}

.drt-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drt-widget li + li {
  margin-top: 10px;
}

.drt-widget li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f5efe7;
  color: #5b6472;
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s ease;
}

.drt-widget li a:hover {
  color: var(--drt-brand-600);
}

.widget_categories ul {
  display: grid;
  gap: 9px;
}

.widget_categories .cat-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  margin: 0;
  padding: 10px 10px 10px 12px;
  border: 1px solid #f3ede4;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .86), rgba(255, 255, 255, .98)),
    radial-gradient(circle at top right, rgba(253, 186, 116, .14), transparent 42%);
}

.widget_categories .cat-item + .cat-item {
  margin-top: 0;
}

.widget_categories .cat-item > a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0;
  border: 0;
  color: #5b4632;
  font-family: var(--drt-serif);
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.55;
}

.widget_categories .cat-item > a::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--drt-brand-400);
  box-shadow: 0 0 0 4px rgba(253, 186, 116, .16);
}

.widget_categories .cat-item > a:hover {
  color: var(--drt-brand-700);
}

.widget_categories .drt-cat-count {
  align-self: center;
  min-width: 2.4em;
  padding: 3px 9px;
  border: 1px solid rgba(253, 186, 116, .55);
  border-radius: 999px;
  background: #fff;
  color: var(--drt-brand-700);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.widget_categories .children {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  margin: 8px 0 0 12px;
  padding: 8px 0 0 14px;
  border-left: 2px solid rgba(253, 186, 116, .52);
}

.widget_categories .children .cat-item {
  padding: 8px 8px 8px 10px;
  border-color: #f5efe7;
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
}

.widget_categories .children .cat-item > a {
  color: #667085;
  font-family: var(--drt-sans);
  font-size: .84rem;
  font-weight: 750;
}

.widget_categories .children .cat-item > a::before {
  flex-basis: 6px;
  width: 6px;
  height: 6px;
  background: var(--drt-green);
  box-shadow: 0 0 0 3px rgba(79, 111, 82, .13);
}

.widget_categories .children .drt-cat-count {
  border-color: #efe5dc;
  background: var(--drt-bg);
  color: #667085;
  font-size: .68rem;
}

.widget_search form,
.search-form,
.drt-search-form {
  position: relative;
}

.widget_search label {
  display: block;
}

.widget_search .search-field,
.drt-search-input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #eadfd4;
  border-radius: 999px;
  background: var(--drt-bg);
  padding: 13px 54px 13px 20px;
  color: var(--drt-ink);
  font-size: .95rem;
  outline: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.widget_search .search-field:focus,
.drt-search-input:focus {
  border-color: var(--drt-brand-300);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(253, 186, 116, .25);
}

.widget_search .search-submit,
.drt-search-button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--drt-brand-500);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
}

.widget_search .search-submit:hover,
.drt-search-button:hover {
  background: var(--drt-brand-600);
  box-shadow: 0 0 15px rgba(249, 115, 22, .3);
}

.drt-ranking {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rank;
}

.drt-ranking__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.drt-ranking__thumb {
  position: relative;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 14px;
  overflow: visible;
}

.drt-ranking__thumb img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(33, 24, 13, .12);
}

.drt-ranking__thumb span {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--drt-brand-400), var(--drt-brand-600));
  color: #fff;
  font-family: var(--drt-serif);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(33, 24, 13, .12);
}

.drt-ranking__body {
  min-width: 0;
}

.drt-ranking__body a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--drt-ink);
  font-family: var(--drt-serif);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.drt-ranking__body small {
  display: block;
  margin-top: 7px;
  color: #98a2b3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.tagcloud,
.wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tagcloud a,
.wp-block-tag-cloud a {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid #efe5dc;
  border-radius: 999px;
  background: var(--drt-bg);
  color: #667085;
  font-size: .82rem !important;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  transform: translateY(-1px);
  background: var(--drt-brand-500);
  color: #fff;
}

.drt-profile {
  text-align: center;
}

.drt-profile__icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(33, 24, 13, .12);
}

.drt-profile h3 {
  margin: 0 0 12px;
  font-family: var(--drt-serif);
  font-size: 1.14rem;
}

.drt-profile p {
  margin: 0;
  color: #667085;
  font-size: .9rem;
  line-height: 1.85;
}

.drt-widget .textwidget {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .98), rgba(255, 255, 255, .96)),
    radial-gradient(circle at top right, rgba(79, 111, 82, .14), transparent 44%);
  padding: 24px;
  text-align: center;
  color: #5b4632;
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, .24);
}

.drt-widget .textwidget strong {
  color: var(--drt-brand-800);
  font-family: var(--drt-serif);
  font-size: 1.03rem;
}

.drt-widget .textwidget a,
.btn.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--drt-brand-400), var(--drt-brand-600));
  color: #fff !important;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(249, 115, 22, .18);
}

.drt-sidebar .drt-widget .textwidget a,
.drt-sidebar .btn.btn-orange {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  font-size: .78rem;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
}

.drt-before-footer {
  padding: clamp(12px, 2vw, 24px) 0 clamp(54px, 6vw, 72px);
}

.drt-before-footer .drt-widget {
  margin: 0;
}

.drt-breadcrumbs {
  border-bottom: 1px solid #f2e8de;
  background: var(--drt-bg);
  padding: 14px 0;
}

.drt-breadcrumbs nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #98a2b3;
  font-size: .78rem;
  font-weight: 700;
}

.drt-breadcrumbs a:hover {
  color: var(--drt-brand-600);
}

.drt-main {
  padding: clamp(54px, 7vw, 84px) 0;
}

.drt-article {
  min-width: 0;
}

.drt-article-header {
  margin-bottom: 40px;
}

.drt-article-header__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.drt-article-title {
  margin: 0 0 26px;
  font-family: var(--drt-serif);
  font-size: clamp(2rem, 1.7rem + 1.3vw, 3rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.drt-author-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #667085;
  font-size: .9rem;
}

.drt-author-mini img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(33, 24, 13, .1);
}

.drt-author-mini small {
  display: block;
  color: #98a2b3;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.drt-eyecatch {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 38px 0 0;
  border-radius: 18px;
  background: var(--drt-brand-100);
  box-shadow: var(--drt-shadow-soft);
}

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

.drt-eyecatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(124, 45, 18, .1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.drt-entry {
  color: #3d4651;
  font-family: var(--drt-serif);
  font-size: clamp(1rem, .98rem + .16vw, 1.08rem);
  line-height: 2.18;
}

.drt-entry > *:first-child {
  margin-top: 0;
}

.drt-entry p {
  margin: 0 0 2em;
}

.drt-entry h2 {
  margin: 3em 0 1.5em;
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--drt-brand-400);
  border-radius: 0 8px 8px 0;
  background: var(--drt-brand-50);
  color: var(--drt-ink);
  font-size: 1.48rem;
  line-height: 1.58;
  box-shadow: 0 4px 6px -1px rgba(249, 115, 22, .05);
}

.drt-entry h3 {
  position: relative;
  margin: 2.55em 0 1.2em;
  padding-bottom: .55em;
  border-bottom: 1px solid var(--drt-brand-200);
  color: var(--drt-ink);
  font-size: 1.25rem;
  line-height: 1.6;
}

.drt-entry h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--drt-brand-400);
}

.drt-entry ul,
.drt-entry ol {
  margin: 0 0 2em;
  padding-left: 1.5em;
}

.drt-entry ol {
  padding-left: 1.85em;
}

.drt-entry li {
  margin: 0 0 .8em;
}

.drt-entry ul li {
  position: relative;
  list-style: none;
}

.drt-entry ul li::before {
  content: "\f00c";
  position: absolute;
  left: -1.5em;
  top: .1em;
  color: var(--drt-brand-400);
  font-family: "Font Awesome 6 Free";
  font-size: .9em;
  font-weight: 900;
}

.drt-entry strong {
  background: linear-gradient(transparent 60%, rgba(253, 186, 116, .4) 60%);
  color: var(--drt-brand-700);
  font-weight: 800;
}

.drt-entry blockquote {
  position: relative;
  margin: 2em 0;
  padding: 1.5em 2em;
  border-left: 4px solid var(--drt-brand-500);
  border-radius: 0 12px 12px 0;
  background: #fff;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .05);
  color: #667085;
}

.drt-entry blockquote::before {
  content: "\f10d";
  position: absolute;
  top: -10px;
  left: 20px;
  z-index: 0;
  color: var(--drt-brand-100);
  font-family: "Font Awesome 6 Free";
  font-size: 2rem;
  font-weight: 900;
}

.drt-entry blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-style: italic;
}

.drt-entry img {
  width: auto;
  max-width: 100%;
  margin: 3em auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .1);
}

.drt-entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--drt-shadow-soft);
}

.drt-entry th,
.drt-entry td {
  border: 1px solid #f0e4da;
  padding: 14px 16px;
  vertical-align: top;
}

.drt-entry th {
  background: var(--drt-brand-50);
  color: var(--drt-brand-800);
}

.drt-entry .drt-lead-box,
.drt-entry .drt-summary-box,
.drt-entry .drt-action-box,
.drt-entry .drt-caution-box,
.drt-entry .drt-cta-box {
  position: relative;
  margin: 2.3em 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid #f2dfcf;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .95), rgba(255, 255, 255, .98)),
    radial-gradient(circle at top right, rgba(79, 111, 82, .11), transparent 42%);
  box-shadow: 0 18px 46px rgba(33, 24, 13, .07);
}

.drt-entry .drt-lead-box p,
.drt-entry .drt-summary-box p,
.drt-entry .drt-action-box p,
.drt-entry .drt-caution-box p,
.drt-entry .drt-cta-box p {
  margin-bottom: 1.2em;
}

.drt-entry .drt-lead-box p:last-child,
.drt-entry .drt-summary-box p:last-child,
.drt-entry .drt-action-box p:last-child,
.drt-entry .drt-caution-box p:last-child,
.drt-entry .drt-cta-box p:last-child {
  margin-bottom: 0;
}

.drt-entry .drt-caution-box {
  border-color: #f5d0aa;
  background: linear-gradient(135deg, rgba(255, 251, 235, .96), rgba(255, 255, 255, .98));
}

.drt-entry .drt-cta-box {
  overflow: hidden;
  border-color: rgba(249, 115, 22, .25);
  text-align: center;
}

.drt-entry .drt-cta-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--drt-brand-300), var(--drt-brand-600));
}

.drt-entry .drt-cta-box strong {
  display: inline;
  background: none;
  color: var(--drt-ink);
  font-size: 1.06em;
}

.drt-entry .drt-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin-top: .5em;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--drt-brand-400), var(--drt-brand-600));
  color: #fff !important;
  font-family: var(--drt-sans);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .18);
}

.drt-entry .drt-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(249, 115, 22, .23);
}

.drt-entry .drt-check-list,
.drt-entry .drt-step-list {
  display: grid;
  gap: 12px;
  margin: 1.4em 0 2em;
  padding: 0;
}

.drt-entry .drt-step-list {
  counter-reset: drt-step;
  list-style: none;
}

.drt-entry .drt-check-list li,
.drt-entry .drt-step-list li {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 42px;
  border: 1px solid #f3e5d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(33, 24, 13, .04);
}

.drt-entry .drt-check-list li::before {
  top: 14px;
  left: 16px;
  color: var(--drt-brand-500);
}

.drt-entry .drt-step-list li {
  counter-increment: drt-step;
  padding-left: 58px;
}

.drt-entry .drt-step-list li::before {
  content: counter(drt-step);
  position: absolute;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .12);
  color: var(--drt-brand-700);
  font-family: var(--drt-sans);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
}

.drt-toc {
  position: relative;
  margin: 2.2em 0 2.6em;
  padding: 18px 20px;
  border: 1px solid rgba(253, 186, 116, .32);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .82), rgba(255, 255, 255, .96)),
    radial-gradient(circle at top right, rgba(79, 111, 82, .1), transparent 46%);
  box-shadow: 0 14px 34px rgba(33, 24, 13, .055);
  font-family: var(--drt-sans);
}

.drt-toc__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #5b4632;
}

.drt-toc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .1);
  color: var(--drt-brand-600);
  font-size: .82rem;
}

.drt-toc__head p {
  margin: 0;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.drt-toc__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: drt-toc;
}

.drt-toc__item {
  counter-increment: drt-toc;
  margin: 0;
}

.drt-toc__item::before {
  display: none;
}

.drt-toc__item a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 10px;
  color: #475467;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.65;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.drt-toc__item a::before {
  content: counter(drt-toc, decimal-leading-zero);
  flex: 0 0 auto;
  min-width: 2.1em;
  color: var(--drt-brand-500);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.9;
}

.drt-toc__item--h3 a {
  padding-left: 24px;
  color: #667085;
  font-size: .78rem;
  font-weight: 700;
}

.drt-toc__item a:hover {
  transform: translateX(2px);
  background: rgba(255, 247, 237, .9);
  color: var(--drt-brand-700);
}

.drt-entry .drt-mini-note {
  color: #667085;
  font-family: var(--drt-sans);
  font-size: .88rem;
  line-height: 1.85;
}

.drt-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0;
  padding: 14px 16px;
  border: 1px solid rgba(253, 186, 116, .28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .86), rgba(255, 255, 255, .94)),
    radial-gradient(circle at top right, rgba(79, 111, 82, .1), transparent 46%);
  box-shadow: 0 10px 24px rgba(33, 24, 13, .05);
}

.drt-share p {
  flex: 0 0 auto;
  margin: 0;
  color: #5b4632;
  font-family: var(--drt-serif);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.drt-share--top {
  margin-top: 0;
}

.drt-share--bottom {
  margin-top: 42px;
  margin-bottom: 30px;
}

.drt-share--bottom + .drt-single-widget-bottom {
  margin-top: 0;
}

.drt-single-widget-bottom {
  margin: 0 0 58px;
}

.drt-single-cta {
  margin: 34px 0 58px;
}

.drt-share__buttons {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 0;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.drt-share__buttons::-webkit-scrollbar {
  display: none;
}

.drt-share__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #f0e8de;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(33, 24, 13, .05);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.drt-share__button:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 186, 116, .72);
  color: var(--drt-brand-700);
  box-shadow: var(--drt-shadow-soft);
}

.drt-share__button svg,
.drt-share__button i {
  flex: 0 0 auto;
  font-size: .95rem;
}

.drt-share__button--x:hover {
  color: #111827;
}

.drt-share__button--line:hover {
  color: #06c755;
}

.drt-share__button--facebook:hover {
  color: #1877f2;
}

.drt-share__button--hatena:hover {
  color: #00a4de;
}

.drt-share__button--copy.is-copied {
  border-color: rgba(79, 111, 82, .42);
  background: rgba(79, 111, 82, .1);
  color: var(--drt-green);
}

.drt-share__button--copy.is-copied span {
  font-size: 0;
}

.drt-share__button--copy.is-copied span::after {
  content: "コピー済み";
  font-size: .78rem;
}

.drt-share__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  border-radius: 5px;
  background: #00a4de;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.drt-author-box,
.drt-related {
  margin-top: 62px;
}

.drt-author-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--drt-shadow-soft);
}

.drt-author-box img {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
}

.drt-author-box small {
  display: block;
  margin-bottom: 4px;
  color: var(--drt-brand-500);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.drt-author-box h3 {
  margin: 0 0 10px;
  font-family: var(--drt-serif);
}

.drt-author-box p {
  margin: 0;
  color: #667085;
  font-size: .92rem;
  line-height: 1.9;
}

.drt-related h3 {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--drt-serif);
  font-size: 1.6rem;
}

.drt-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.drt-related-card {
  overflow: hidden;
  border: 1px solid #f4ece5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(33, 24, 13, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.drt-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--drt-shadow-soft);
}

.drt-related-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.drt-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drt-related-card__body {
  padding: 16px;
}

.drt-related-card__cat {
  display: block;
  margin-bottom: 7px;
  color: var(--drt-brand-500);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.drt-related-card h4 {
  margin: 0;
  font-family: var(--drt-serif);
  font-size: .95rem;
  line-height: 1.6;
}

.drt-comments {
  position: relative;
  overflow: hidden;
  margin-top: 62px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 247, 237, .94)),
    radial-gradient(circle at top right, rgba(253, 186, 116, .18), transparent 44%);
  box-shadow: var(--drt-shadow-soft);
}

.drt-comments::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--drt-brand-400), var(--drt-green));
}

.drt-comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.drt-comments-eyebrow {
  color: var(--drt-brand-500);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.drt-comments h2,
.comment-reply-title {
  margin: 4px 0 0;
  font-family: var(--drt-serif);
  font-size: clamp(1.35rem, 1.2rem + .55vw, 1.75rem);
  line-height: 1.45;
}

.drt-comments-count,
.drt-comment-awaiting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 800;
}

.drt-comments-count {
  padding: 7px 13px;
  background: var(--drt-brand-50);
  color: var(--drt-brand-700);
  font-size: .78rem;
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, .42);
}

.drt-comment-list,
.drt-comment-list .children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drt-comment-list {
  display: grid;
  gap: 18px;
}

.drt-comment-list .children {
  display: grid;
  gap: 14px;
  margin: 14px 0 0 clamp(18px, 4vw, 42px);
  padding-left: clamp(14px, 2vw, 22px);
  border-left: 2px solid rgba(253, 186, 116, .48);
}

.drt-comment-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid #f4ece5;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 22px rgba(33, 24, 13, .05);
}

.bypostauthor > .drt-comment-card {
  border-color: rgba(253, 186, 116, .64);
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .94), rgba(255, 255, 255, .96));
}

.drt-comment-avatar img {
  width: 56px;
  height: 56px;
  border: 3px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(33, 24, 13, .12);
}

.drt-comment-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.drt-comment-author {
  display: block;
  color: var(--drt-ink);
  font-family: var(--drt-serif);
  font-size: 1rem;
  line-height: 1.45;
}

.drt-comment-date {
  display: inline-flex;
  margin-top: 2px;
  color: #98a2b3;
  font-size: .76rem;
  font-weight: 700;
}

.drt-comment-awaiting {
  padding: 4px 9px;
  background: rgba(79, 111, 82, .1);
  color: var(--drt-green);
  font-size: .7rem;
}

.drt-comment-content {
  color: #4b5563;
  font-family: var(--drt-serif);
  font-size: .98rem;
  line-height: 1.95;
}

.drt-comment-content p {
  margin: 0 0 1.2em;
}

.drt-comment-content p:last-child {
  margin-bottom: 0;
}

.drt-comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.drt-comment-actions a,
.drt-comment-edit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--drt-brand-50);
  color: var(--drt-brand-700);
  font-size: .76rem;
  font-weight: 800;
}

.drt-comment-navigation {
  margin-top: 22px;
}

.drt-comment-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.drt-comments-closed,
.comment-notes,
.logged-in-as {
  color: #667085;
  font-size: .9rem;
  line-height: 1.8;
}

.drt-comment-invitation {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(253, 186, 116, .34);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(255, 255, 255, .94)),
    radial-gradient(circle at top right, rgba(79, 111, 82, .12), transparent 46%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.drt-comment-invitation__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--drt-brand-400), var(--drt-brand-600));
  color: #fff;
  box-shadow: 0 12px 24px rgba(249, 115, 22, .18);
}

.drt-comment-invitation__body h3 {
  margin: 0 0 8px;
  color: var(--drt-ink);
  font-family: var(--drt-serif);
  font-size: 1.12rem;
  line-height: 1.55;
}

.drt-comment-invitation__body p {
  margin: 0;
  color: #5b6472;
  font-size: .92rem;
  line-height: 1.9;
}

.drt-comment-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.drt-comment-prompts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #f0e8de;
  border-radius: 999px;
  background: #fff;
  color: #5b4632;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.35;
}

.drt-comment-prompts li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--drt-brand-400);
}

.drt-comment-invitation__body .drt-comment-privacy-note {
  margin-top: 12px;
  color: #98a2b3;
  font-size: .78rem;
  line-height: 1.7;
}

.drt-comment-form-wrap {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #f0e8de;
}

.drt-comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.drt-comment-form .comment-notes,
.drt-comment-form .logged-in-as,
.drt-comment-form .comment-form-cookies-consent,
.drt-form-field--full,
.drt-form-submit {
  grid-column: 1 / -1;
}

.drt-form-field {
  margin: 0;
}

.drt-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #5b4632;
  font-size: .84rem;
  font-weight: 800;
}

.drt-form-field .required {
  color: var(--drt-brand-600);
}

.drt-form-field input,
.drt-form-field textarea {
  width: 100%;
  border: 1px solid #eadfd4;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--drt-ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.drt-form-field input {
  min-height: 48px;
  padding: 12px 14px;
}

.drt-form-field textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.drt-form-field input:focus,
.drt-form-field textarea:focus {
  border-color: var(--drt-brand-300);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(253, 186, 116, .25);
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #667085;
  font-size: .86rem;
  line-height: 1.7;
}

.comment-form-cookies-consent input {
  margin-top: .35em;
}

.drt-form-submit {
  margin: 2px 0 0;
}

.drt-form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--drt-brand-400), var(--drt-brand-600));
  color: #fff;
  padding: 12px 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .18);
}

.drt-archive-header {
  max-width: 820px;
  margin: 0 0 48px;
}

.drt-empty {
  border-radius: 18px;
  background: #fff;
  padding: 36px;
  box-shadow: var(--drt-shadow-soft);
}

.drt-footer {
  border-top: 6px solid var(--drt-brand-500);
  background: var(--drt-ink);
  color: #cbd5e1;
  padding: 56px 0 28px;
}

.drt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.drt-footer h2,
.drt-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--drt-serif);
  font-size: 1.2rem;
}

.drt-footer p {
  max-width: 560px;
  margin: 0;
  color: #aeb9c7;
  font-size: .9rem;
  line-height: 1.9;
}

.drt-footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .9rem;
}

.drt-footer-links a {
  color: #cbd5e1;
  transition: color .2s ease;
}

.drt-footer-links a:hover {
  color: var(--drt-brand-300);
}

.drt-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(203, 213, 225, .16);
  color: #8290a3;
  font-size: .78rem;
}

.reveal,
.reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal.active,
.reveal-right.active {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 1024px) {
  .drt-layout {
    align-items: start;
  }

  .drt-layout {
    grid-template-columns: 1fr;
  }

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

  .drt-sticky-widget-area {
    position: static;
    grid-column: 1 / -1;
  }

  .drt-card--wide {
    grid-template-columns: 1fr;
  }

  .drt-card--wide .drt-card__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1120px) {
  .drt-nav--desktop {
    display: none;
  }

  .drt-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .drt-container {
    width: min(100% - 32px, 1180px);
  }

  .drt-logo {
    max-width: 250px;
    font-size: 1.08rem;
  }

  .drt-logo small {
    font-size: .58rem;
  }

  .drt-hero {
    min-height: 680px;
  }

  .drt-hero__content {
    padding-top: 92px;
  }

  .drt-hero h1 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .drt-grid,
  .drt-sidebar,
  .drt-related-grid,
  .drt-footer-grid {
    grid-template-columns: 1fr;
  }

  .drt-front-widget-bottom {
    margin-top: 34px;
  }

  .drt-card__body {
    padding: 24px;
  }

  .drt-main {
    padding-top: 38px;
  }

  .drt-article-title {
    font-size: 1.85rem;
  }

  .drt-eyecatch {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .drt-entry {
    font-size: 1rem;
    line-height: 2.05;
  }

  .drt-entry h2 {
    padding: .9rem 1rem;
    font-size: 1.28rem;
  }

  .drt-entry .drt-step-list li {
    padding: 13px 14px 13px 52px;
  }

  .drt-entry .drt-step-list li::before {
    top: 13px;
    left: 14px;
    width: 24px;
    height: 24px;
    font-size: .72rem;
  }

  .drt-toc {
    margin: 1.8em 0 2.2em;
    padding: 15px;
    border-radius: 14px;
  }

  .drt-toc__head {
    margin-bottom: 9px;
  }

  .drt-toc__item a {
    padding: 8px 9px;
    font-size: .78rem;
    line-height: 1.62;
  }

  .drt-toc__item--h3 a {
    padding-left: 18px;
    font-size: .74rem;
  }

  .drt-share {
    display: block;
    margin: 24px 0;
    padding: 12px;
  }

  .drt-share--bottom {
    margin-top: 34px;
    margin-bottom: 24px;
  }

  .drt-single-widget-bottom,
  .drt-single-cta {
    margin-bottom: 42px;
  }

  .drt-share p {
    display: none;
  }

  .drt-share__buttons {
    justify-content: flex-start;
  }

  .drt-share__button {
    min-height: 36px;
    padding: 8px 11px;
    font-size: .76rem;
  }

  .drt-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .drt-comments {
    margin-top: 48px;
    padding: 22px;
  }

  .drt-comments-header,
  .drt-comment-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .drt-comment-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .drt-comment-avatar img {
    width: 44px;
    height: 44px;
  }

  .drt-comment-list .children {
    margin-left: 8px;
    padding-left: 12px;
  }

  .drt-comment-invitation {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .drt-comment-invitation__icon {
    width: 46px;
    height: 46px;
  }

  .drt-comment-form {
    grid-template-columns: 1fr;
  }

  .drt-form-submit .submit {
    width: 100%;
  }

  .drt-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .drt-hero__cta {
    width: 100%;
    justify-content: center;
  }

  .drt-article-header__top,
  .drt-meta {
    gap: 8px;
  }
}

/* DIVORCE-BRAND-ASSETS-START */
.drt-logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	line-height: 1;
	text-decoration: none;
}

.drt-logo .custom-logo {
	display: block;
	width: auto;
	max-width: min(560px, 54vw);
	height: clamp(48px, 6vw, 74px);
	object-fit: contain;
}

.drt-profile__icon,
.profile-card__image {
	width: 132px;
	height: 132px;
	object-fit: cover;
	border-radius: 999px;
	box-shadow: 0 18px 38px rgba(124, 45, 18, 0.16);
	border: 1px solid rgba(253, 186, 116, 0.52);
	background: #fff7ed;
}

@media (max-width: 640px) {
	.drt-logo .custom-logo {
		max-width: 68vw;
		height: 50px;
	}

	.drt-profile__icon,
	.profile-card__image {
		width: 112px;
		height: 112px;
	}
}
/* DIVORCE-BRAND-ASSETS-END */

/* DIVORCE-FIXED-PAGE-POLISH-START */
.drt-site-header {
	padding: 12px 0;
}

.drt-header-inner {
	gap: clamp(12px, 1.6vw, 22px);
	min-height: 42px;
}

.drt-logo {
	flex: 0 1 300px;
	max-width: min(300px, 32vw);
}

.drt-logo .custom-logo {
	width: auto;
	max-width: 100%;
	height: clamp(30px, 3.2vw, 40px);
	object-fit: contain;
	filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .36));
}

.drt-nav--desktop {
	flex: 1 1 auto;
	min-width: 0;
}

.drt-nav--desktop .drt-nav,
.drt-nav--desktop-list {
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 4px clamp(10px, 1.15vw, 18px);
	font-size: clamp(.75rem, .68rem + .15vw, .84rem);
	line-height: 1.45;
}

.drt-nav--desktop a {
	padding: 5px 0;
}

.drt-footer-logo-title {
	margin-bottom: 16px;
}

.drt-footer-logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 260px;
	line-height: 1;
	text-decoration: none;
}

.drt-footer-logo__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: 42px;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .26));
}

.drt-fixed-page-intro {
	position: relative;
	overflow: hidden;
	margin: 0 0 clamp(28px, 4vw, 42px);
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid rgba(253, 186, 116, .45);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(255, 255, 255, .98)),
		radial-gradient(circle at 100% 0, rgba(253, 186, 116, .22), rgba(255, 255, 255, 0) 42%);
	box-shadow: 0 18px 38px rgba(124, 45, 18, .08);
}

.drt-fixed-page-kicker {
	margin: 0 0 8px;
	color: var(--drt-brand-600);
	font-family: var(--drt-sans);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.drt-fixed-page-intro h2 {
	margin-top: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	color: var(--drt-brand-900);
}

.drt-fixed-page-intro h2::before {
	display: none;
}

.drt-fixed-page-intro p:last-child {
	margin-bottom: 0;
}

.drt-entry .wpcf7 {
	margin-top: clamp(24px, 4vw, 36px);
	padding: clamp(24px, 4vw, 38px);
	border: 1px solid rgba(253, 186, 116, .46);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 247, 237, .9)),
		radial-gradient(circle at 92% 10%, rgba(253, 186, 116, .22), rgba(255, 255, 255, 0) 38%);
	box-shadow: 0 22px 50px rgba(33, 24, 13, .08);
	font-family: var(--drt-sans);
}

.drt-entry .wpcf7 form {
	display: grid;
	gap: 18px;
}

.drt-entry .wpcf7 p {
	margin: 0;
}

.drt-entry .wpcf7 label {
	display: grid;
	gap: 8px;
	color: #475467;
	font-size: .94rem;
	font-weight: 800;
	line-height: 1.6;
}

.drt-entry .wpcf7 input:not([type="submit"]),
.drt-entry .wpcf7 textarea,
.drt-entry .wpcf7 select {
	width: 100%;
	border: 1px solid rgba(194, 65, 12, .18);
	border-radius: 12px;
	background: rgba(255, 255, 255, .96);
	color: var(--drt-ink);
	font: inherit;
	padding: 12px 14px;
	outline: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.drt-entry .wpcf7 textarea {
	min-height: 180px;
	resize: vertical;
}

.drt-entry .wpcf7 input:not([type="submit"]):focus,
.drt-entry .wpcf7 textarea:focus,
.drt-entry .wpcf7 select:focus {
	border-color: rgba(249, 115, 22, .58);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(253, 186, 116, .22);
}

.drt-entry .wpcf7 input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--drt-brand-600), var(--drt-brand-800));
	color: #fff;
	cursor: pointer;
	font-family: var(--drt-sans);
	font-weight: 800;
	letter-spacing: .02em;
	padding: 12px 28px;
	box-shadow: 0 14px 26px rgba(194, 65, 12, .2);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.drt-entry .wpcf7 input[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 32px rgba(194, 65, 12, .24);
	filter: brightness(1.04);
}

.drt-entry .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #b42318;
	font-family: var(--drt-sans);
	font-size: .84rem;
	font-weight: 700;
}

.drt-entry .wpcf7 form .wpcf7-response-output {
	margin: 6px 0 0;
	border-radius: 12px;
	padding: 12px 14px;
	font-family: var(--drt-sans);
}

.drt-entry .drt-policy-list {
	display: grid;
	gap: 10px;
	margin: 18px 0 30px;
	padding: 0;
	list-style: none;
}

.drt-entry .drt-policy-list li {
	position: relative;
	padding-left: 1.35em;
}

.drt-entry .drt-policy-list li::before {
	content: "";
	position: absolute;
	top: .78em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--drt-brand-400);
	box-shadow: 0 0 0 4px rgba(253, 186, 116, .2);
}

.drt-entry .wsp-container {
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid rgba(253, 186, 116, .42);
	border-radius: 18px;
	background: rgba(255, 255, 255, .9);
	box-shadow: var(--drt-shadow-soft);
}

.drt-entry .wsp-container ul {
	display: grid;
	gap: 10px;
	margin-left: 0;
	padding-left: 0;
	list-style: none;
	font-family: var(--drt-sans);
}

.drt-entry .wsp-container li {
	margin: 0;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(255, 247, 237, .72);
}

.drt-entry .wsp-container a {
	color: var(--drt-brand-800);
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 1120px) {
	.drt-logo {
		max-width: 260px;
	}

	.drt-logo .custom-logo {
		height: 38px;
	}
}

@media (max-width: 760px) {
	.drt-site-header {
		padding: 10px 0;
	}

	.drt-logo {
		flex-basis: auto;
		max-width: min(210px, 58vw);
	}

	.drt-logo .custom-logo {
		height: 32px;
	}

	.drt-footer-logo__image {
		height: 34px;
	}

	.drt-entry .wpcf7 input[type="submit"] {
		width: 100%;
	}
}
/* DIVORCE-FIXED-PAGE-POLISH-END */

/* DIVORCE-TYPOGRAPHY-POLISH-START */
:root {
	--drt-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
	--drt-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
	--drt-display: var(--drt-serif);
}

body,
button,
input,
select,
textarea {
	font-family: var(--drt-sans);
	font-feature-settings: "palt" 1;
	letter-spacing: 0;
}

.drt-hero h1,
.drt-section-title h2,
.drt-archive-header h1,
.drt-article-title,
.drt-entry h1,
.drt-entry h2,
.drt-entry h3,
.drt-entry h4,
.drt-card__title,
.drt-widget-title,
.drt-footer h2,
.drt-footer h3,
.drt-fixed-page-intro h2,
.drt-profile__name,
.profile-card__name,
.drt-comment-author {
	font-family: var(--drt-display);
	font-weight: 700;
	letter-spacing: 0;
	text-wrap: balance;
}

.drt-hero__eyebrow,
.drt-section-title span,
.drt-archive-eyebrow,
.drt-fixed-page-kicker,
.drt-meta,
.drt-readmore,
.drt-nav,
.drt-button,
.drt-hero__cta,
.drt-entry .wpcf7,
.drt-entry .wsp-container,
.drt-footer-links,
.drt-footer-bottom {
	font-family: var(--drt-sans);
	letter-spacing: 0;
}

.drt-entry {
	font-family: var(--drt-sans);
	letter-spacing: 0;
	line-height: 2.05;
}

.drt-entry p,
.drt-entry li,
.drt-entry td,
.drt-entry th,
.drt-entry dd,
.drt-entry figcaption {
	font-family: var(--drt-sans);
	letter-spacing: 0;
}

.drt-entry h2 {
	line-height: 1.58;
}

.drt-entry h3,
.drt-entry h4 {
	line-height: 1.68;
}

.drt-card__title {
	line-height: 1.58;
}

.drt-card__excerpt,
.drt-footer p,
.drt-widget,
.drt-profile__text,
.profile-card__text,
.drt-comment-body {
	font-family: var(--drt-sans);
	letter-spacing: 0;
}

.drt-nav {
	font-size: .85rem;
	font-weight: 700;
}

.drt-hero__lead {
	font-family: var(--drt-sans);
	font-weight: 700;
	letter-spacing: 0;
}

.drt-footer-logo-title {
	line-height: 1;
}

@media (max-width: 760px) {
	.drt-entry {
		line-height: 2;
	}

	.drt-article-title {
		line-height: 1.52;
	}
}
/* DIVORCE-TYPOGRAPHY-POLISH-END */
