@charset "UTF-8";

:root {
  --base: #ffffff;
  --paper: #f7f3ed;
  --outer: #d8ddc7;
  --text: #2d251f;
  --sub: #6c6258;
  --green: #5b711f;
  --green-dark: #40551a;
  --wine: #78354a;
  --line: #ddd5ce;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 1.8;
  background: var(--outer);
}

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

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

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

.sp-only {
  display: none;
}

.site-wrapper {
  width: 100%;
  background: var(--base);
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
}

/* header */
.site-header {
  background:rgba(247, 243, 237, 0.94);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid #ddd2c4;
  box-shadow: 0 3px 8px rgba(17, 14, 12, 0.1);
}

.header-inner {
  width: 100%;
  margin: 0 auto;
  min-height: 100px;
  padding: 0 clamp(20px, 1.0vw, 55px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-logo {
  margin: -3px 0 0 0;
  width: 220px;
  flex: 0 0 auto;
}

.site-logo a {
  display: block;
}


.global-nav {
  margin-left: auto;
  margin-top: -10px;;
  transform: translateX(-10px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
  font-size: 15px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-item > a {
  display: block;
  padding: 7px 22px;
  position: relative;
}

.nav-item.is-current > a,
.nav-item > a:hover {
  color: var(--text);
  background-color: rgba(216, 221, 199, 0.77);
}

.submenu-toggle {
  display: none;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 0;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(60, 45, 35, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.has-child:hover > .sub-menu,
.has-child:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  position: relative;
  font-size: 14px;
}

.sub-menu a {
  display: block;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
}

.sub-menu li:last-child > a {
  border-bottom: 0;
}

.sub-menu a:hover {
  /* background: var(--outer); */
  background-color: rgba(216, 221, 199, 0.77);
  color: var(--text);
}

.third-menu {
  top: -1px;
  left: 100%;
}

/* hamburger */
.nav-toggle {
  display: none;
}

@media (min-width: 861px) {
  .nav-list > .nav-item > a {
    border-bottom: 2px solid transparent;
    margin-bottom: 10px;
    padding-bottom: 5px;
    margin-top: 10px;
  }

  .nav-list > .nav-item.is-current > a {
    background-color: transparent;
  }

  .nav-list > .nav-item > a:hover,
  .nav-list > .nav-item:hover > a,
  .nav-list > .nav-item:focus-within > a {
    background-color: transparent;
    border-bottom-color:rgba(64, 85, 26, 0.30)
  }

  .sub-menu {
    left: 50%;
    width: max-content;
    min-width: 0;
    transform: translate(-50%, 8px);
  }

  .has-child:hover > .sub-menu,
  .has-child:focus-within > .sub-menu {
    transform: translate(-50%, 0);
  }

  .sub-menu a {
    position: relative;
    padding: 8px 44px 8px 18px;
  }

  .sub-menu a::after {
    content: "›";
    position: absolute;
    right: 16px;
    top: 47%;
    color: var(--green-dark);
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 1;
  }

  .sub-menu > li.has-child > a::after {
    content: "";
    right: 15px;
    top: 50%;
    width: 9px;
    height: 9px;
    background: url("../images/icon-submenu-arrow.svg") no-repeat center / contain;
    font-size: 0;
  }

  .nav-list > .nav-item:last-child .sub-menu li:last-child > a::after {
    top: 50%;
  }



  .third-menu {
    left: 100%;
    transform: translate(0, 8px);
  }

  .has-child:hover > .third-menu,
  .has-child:focus-within > .third-menu {
    transform: translate(0, 0);
  }
}

/* hero */
.hero {
  background: #f6f1e9;
}

.hero-inner {
  position: relative;
  min-height: clamp(570px, 31.15vw, 640px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 540px);
  align-items: center;
  gap: clamp(28px, 4vw, 82px);
  padding: clamp(36px, 3.4vw, 62px) clamp(16px, 1.3vw, 25px) clamp(42px, 3.55vw, 68px) clamp(30px, 4.1vw, 78px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.44) 34%, rgba(255, 255, 255, 0.16) 65%, rgba(255, 255, 255, 0.51) 100%),
    url("../images/haikei.jpg") no-repeat center center / auto 100%,
    #f6f1e9;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
  max-width: 560px;
  padding-top: 0;
}

.hero-copy h1 {
  margin: 0 0 clamp(24px, 2.2vw, 38px);
  font-size: clamp(30px, 2.05vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.65;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(16px, 1.04vw, 20px);
  letter-spacing: 0.02em;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(44px, 4.6vw, 88px);
}

.hero-button {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: center;
  min-width: 0;
  min-height: 78px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #7aa095;
  color: #fff;
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-button span {
  display: block;
  min-width: 0;
  text-align: left;
}

.hero-button::after {
  content: "›";
  font-size: 0.82em;
  line-height: 1;
  margin-left: 14px;
  letter-spacing: 0;
}

.hero-button:hover {
  background: #668f84;
  transform: translateY(-2px);
}

.hero-news {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 26px;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  padding: clamp(24px, 1.9vw, 36px) clamp(20px, 1.9vw, 34px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(60, 45, 35, 0.14);
  backdrop-filter: blur(5px);
}

.hero-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.hero-news-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 1.65vw, 31px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-news-head a {
  flex: 0 0 auto;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.6;
}

.hero-news-head a::after {
  content: ">";
  margin-left: 1em;
}

.hero-news-list {
  display: grid;
  gap: 14px;
}

.hero-news-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 20px;
  color: #111;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.55;
}

.hero-news-list li.is-pickup {
  background: rgba(231, 224, 217, 0.78);
  padding: 10px 12px;
}

.hero-news-list time {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hero-news-list a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-news-list a:hover {
  color: var(--green-dark);
}

.hero-news-list span {
  min-width: 62px;
  max-width: 92px;
  padding: 1px 6px;
  border: 1px solid rgba(108, 98, 88, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
}

.hero-message {
  --hero-message-body-height: 186px;
  padding: 20px 22px 20px;
  border-radius: 8px;
  background: rgba(231, 224, 217, 0.92);
}

.hero-message-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-message-label span {
  flex: 0 0 auto;
  min-width: 68px;
  padding: 4px 12px;
  border-radius: 4px;
  background: #9d9280;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.hero-message h2 {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.hero-message h2::before,
.hero-message h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
}

.hero-message h2::before {
  left: 0;
}

.hero-message h2::after {
  position: static;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}

.hero-message-scroll {
  height: var(--hero-message-body-height);
  padding-right: 12px;
  overflow-y: auto;
  scrollbar-color: rgba(91, 82, 72, 0.48) rgba(255, 255, 255, 0.7);
  scrollbar-width: thin;
}

.hero-message-scroll::-webkit-scrollbar {
  width: 8px;
}

.hero-message-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.7);
}

.hero-message-scroll::-webkit-scrollbar-thumb {
  background: rgba(91, 82, 72, 0.48);
  border-radius: 999px;
}

.hero-message h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-message p {
  margin: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-message .hero-message-date {
  margin-top: 18px;
}

/* home panels */
.home-panels {
  padding: 58px 0 96px;
  background: rgba(255, 255, 255, 0.96);
}

.home-panels-inner {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0 clamp(20px, 2vw, 24px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 44px);
  align-items: stretch;
}

.webtopics-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 16px var(--gutter) 58px;
}

.webtopics-page-lead {
  width: 100%;
  margin: 28px auto 0;
  text-align: left;
}

.page-title .webtopics-page-lead p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.page-title .webtopics-page-lead p + p {
  margin-top: 12px;
}

.webtopics-page-lead a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: rgba(64, 85, 26, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.webtopics-page-lead a:hover {
  text-decoration: none;
}

.webtopics-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.webtopics-filter button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 7px 15px;
  border: 1px solid rgba(108, 98, 88, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.webtopics-filter button:hover,
.webtopics-filter button.is-active {
  border-color: #7b9a90;
  background: #7b9a90;
  color: #fff;
}

.webtopics-filter button span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(108, 98, 88, 0.12);
  font-size: 12px;
  line-height: 1;
}

.webtopics-filter button:hover span,
.webtopics-filter button.is-active span {
  background: rgba(255, 255, 255, 0.22);
}

.webtopics-filter-status,
.webtopics-empty {
  margin: 0 0 22px;
  color: var(--sub);
  font-size: 14px;
}

.webtopics-page-list {
  display: grid;
  gap: 20px;
}

.webtopics-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.webtopics-pagination[hidden] {
  display: none;
}

.webtopics-pagination button {
  min-width: 42px;
  min-height: 38px;
  padding: 6px 12px;
  border: 1px solid rgba(108, 98, 88, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.webtopics-pagination button:hover,
.webtopics-pagination button.is-current {
  border-color: #7b9a90;
  background: #7b9a90;
  color: #fff;
}

.webtopics-pagination button:disabled {
  cursor: default;
  opacity: 0.48;
}

.webtopics-pagination button:disabled:hover {
  border-color: rgba(108, 98, 88, 0.26);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.webtopics-page-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(60, 45, 35, 0.06);
}

.webtopics-page-card.is-pickup {
  background: rgba(247, 243, 237, 0.96);
}

.webtopics-page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
  color: var(--sub);
  font-size: 13px;
}

.webtopics-page-meta span,
.webtopics-page-meta strong {
  display: inline-block;
  padding: 1px 8px;
  border: 1px solid rgba(108, 98, 88, 0.2);
  border-radius: 4px;
  background: #fff;
  font-size: 12px;
  font-weight: 400;
}

.webtopics-page-meta em {
  font-style: normal;
}

.webtopics-page-meta strong {
  border-color: #9d9280;
  background: #9d9280;
  color: #fff;
}

.webtopics-page-card h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.6;
}

.webtopics-page-card h2 a:hover {
  color: var(--green-dark);
}

.webtopics-page-comment {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(231, 224, 217, 0.75);
}

.webtopics-page-label {
  margin: 0 0 8px;
  color: var(--sub);
  font-size: 13px;
}

.webtopics-page-comment p:last-child {
  margin-bottom: 0;
}

.webtopics-page-comment-link {
  margin: 16px 0 0;
  font-size: 13px;
  text-align: right;
}

.webtopics-page-comment-link a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 14px 5px 16px;
  border: 1px solid rgba(91, 113, 31, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--green-dark);
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(60, 45, 35, 0.06);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.webtopics-page-comment-link a:hover {
  border-color: rgba(91, 113, 31, 0.46);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(60, 45, 35, 0.1);
  transform: translateY(-1px);
}

.webtopics-page-comment .webtopics-page-comment-date {
  margin-top: 14px;
  color: var(--sub);
  font-size: 13px;
}

.webtopics-guide-concept {
  margin-top: 0;
}

.season-color-banners.webtopics-guide-banners {
  margin-bottom: 120px;
}

.home-note-panel,
.home-hitoiro-panel {
  min-width: 0;
  border: 1px solid rgba(203, 210, 218, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(60, 45, 35, 0.12);
}

.home-note-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(28px, 3vw, 42px) clamp(26px, 3vw, 42px);
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(60, 45, 35, 0.07);
}

.home-note-intro {
  min-width: 0;
}

.home-note-intro h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(28px, 2.15vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.home-note-intro p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.home-note-intro a {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-note-intro a::after {
  content: "›";
  margin-left: 0.65em;
  color: var(--green-dark);
  font-size: 1.1em;
  line-height: 1;
}

.home-note-intro a:hover,
.home-note-intro a:focus-visible {
  color: var(--green-dark);
  transform: translateY(-2px);
}

.home-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.home-panel-head h2,
.hitoiro-summary h2 {
  margin: 0;
  color: #1f1c1a;
  font-size: clamp(29px, 2.35vw, 42px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.home-panel-head h2 {
  white-space: nowrap;
}

.home-panel-head a {
  flex: 0 0 auto;
  color: #8a8178;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.16em;
  transition: color 0.2s ease;
}

.home-panel-head a::after {
  content: ">";
  margin-left: 0.9em;
}

.home-panel-head a:hover {
  color: var(--green-dark);
}

.home-note-list {
  display: grid;
  gap: 0;
}

.home-note-list a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(108, 98, 88, 0.12);
  transition: color 0.2s ease;
}

.home-note-list li:first-child a {
  padding-top: 0;
}

.home-note-list li:last-child a {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-note-list time {
  color: #979088;
  font-size: 15px;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.home-note-list span {
  color: #2f2a26;
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.home-note-list a:hover span {
  color: var(--green-dark);
}

.home-note-empty {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.8;
}

.home-hitoiro-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(560px, 1.42fr);
  gap: clamp(28px, 3.4vw, 54px);
  align-items: stretch;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(60, 45, 35, 0.07);
  padding: clamp(28px, 3vw, 42px);
}

.hitoiro-summary {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  padding-bottom: 54px;
  text-align: center;
}

.hitoiro-summary h2 {
  justify-self: center;
  margin-bottom: clamp(38px, 4vw, 64px);
  color: var(--text);
  text-align: center;
}

.hitoiro-color-name {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 1.85vw, 34px);
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.hitoiro-color-kana {
  position: relative;
  z-index: 1;
  margin: 4px 0 22px;
  color: var(--hitoiro-dark, #5daec0);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.14em;
}

.hitoiro-color-chip {
  position: relative;
  z-index: 1;
  width: min(42%, 156px);
  min-width: 112px;
  aspect-ratio: 1;
  margin: 2px 0 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.42) 0 18%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 54% 58%, var(--hitoiro-light, #d9eef3) 0 58%, rgba(255, 255, 255, 0) 72%);
  filter: saturate(0.95);
}

.hitoiro-color-text {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 285px);
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  text-align: left;
  letter-spacing: 0.08em;
}

.hitoiro-more-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(100%, 260px);
  min-height: 48px;
  margin-top: clamp(28px, 3vw, 44px);
  border: 1px solid var(--hitoiro-dark, #53aabd);
  border-radius: 999px;
  color: var(--hitoiro-dark, #53aabd);
  background: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hitoiro-more-link::after {
  content: ">";
  flex: 0 0 auto;
}

.hitoiro-more-link:hover {
  border-color: var(--hitoiro-dark, #53aabd);
  color: var(--hitoiro-dark, #2f8fa4);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.hitoiro-branch {
  position: absolute;
  left: -6%;
  bottom: -24px;
  z-index: 0;
  display: block;
  width: min(52%, 190px);
  color: var(--hitoiro-light, #d9eef3);
  opacity: 0.82;
}

.hitoiro-branch-svg {
  display: block;
  width: 100%;
  height: auto;
}

.hitoiro-season-card {
  overflow: hidden;
  align-self: start;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid rgba(203, 210, 218, 0.74);
  background: #fff;
  box-shadow: 0 12px 26px rgba(47, 95, 127, 0.16);
}

.hitoiro-season-body {
  position: relative;
  --hitoiro-season-space-x: clamp(28px, 3.2vw, 52px);
  width: 100%;
  padding: clamp(28px, 2.8vw, 46px) var(--hitoiro-season-space-x) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 30px);
  align-content: start;
}

.hitoiro-season-body::before {
  content: none;
}

.hitoiro-season-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
}

.hitoiro-season-header > div + div {
  border-left: 1px solid var(--hitoiro-light, #d9eef3);
  padding-left: clamp(36px, 4vw, 58px);
}

.hitoiro-season-meta {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.hitoiro-season-term {
  margin: 0;
  color: var(--hitoiro-dark, #53aabd);
  font-size: clamp(28px, 2.25vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.hitoiro-season-term-kana {
  margin: 1px 0 28px;
  color: var(--hitoiro-dark, #53aabd);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.18em;
}

.hitoiro-season-body h3 {
  margin: 0;
  color: var(--hitoiro-dark, #53aabd);
  font-size: clamp(32px, 2.65vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
}

.hitoiro-season-kana {
  margin: 3px 0 0;
  color: var(--hitoiro-dark, #53aabd);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.18em;
}

.hitoiro-season-text {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.08em;
}

.hitoiro-season-photo {
  position: static;
  display: block;
  align-self: end;
  margin-left: calc(-1 * var(--hitoiro-season-space-x));
  width: calc(100% + (var(--hitoiro-season-space-x) * 2));
  max-width: none;
  height: clamp(330px, 27vw, 460px);
  object-fit: cover;
  object-position: center bottom;
}

.home-support-panel {
  padding: clamp(18px, 2.5vw, 34px) 0 0;
}

.season-preview {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) clamp(20px, 2vw, 24px) clamp(70px, 7vw, 110px);
}

.season-preview-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: 24px;
}

.season-preview-tools h1 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.4;
}

.season-preview-tools label {
  display: grid;
  gap: 6px;
  color: var(--sub);
  font-size: 13px;
}

.season-preview-tools select {
  min-width: min(72vw, 360px);
  padding: 9px 34px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.season-preview-pager {
  display: flex;
  gap: 10px;
}

.season-preview-pager a {
  min-width: 82px;
  padding: 8px 16px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.season-preview-pager a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.season-color-layout {
  display: grid;
  grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
  align-items: start;
  width: min(100%, 1680px);
  margin: 0 auto;
}

.season-color-sidebar {
  position: sticky;
  top: var(--header-height, 88px);
  height: calc(100vh - var(--header-height, 88px));
  min-height: 0;
  overflow: hidden;
  padding: 44px 34px 0;
  border-right: 1px solid rgba(200, 190, 170, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 50% 0, rgba(228, 218, 190, 0.3), rgba(255, 255, 255, 0) 58%);
  box-shadow: 10px 0 24px rgba(71, 58, 42, 0.04);
}

.season-color-calendar {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.season-color-calendar-head {
  min-width: 0;
}

.season-color-calendar-scroll {
  min-height: 0;
  max-height: calc(100vh - var(--header-height, 88px) - 138px);
  margin-top: 20px;
  overflow-y: scroll;
  padding-right: 6px;
  scroll-behavior: smooth;
}

.season-color-main {
  min-width: 0;
  padding-bottom: 120px;
}

.season-color-title {
  padding-bottom: 42px;
}

.season-color-mobile-calendar {
  display: none;
}

.season-color-calendar-title {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}

.season-color-calendar-year {
  margin: 2px 0 20px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.season-color-calendar ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.season-color-calendar li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 54px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 5px 10px 5px 42px;
  border-radius: 3px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.season-color-calendar li.is-current {
  background: linear-gradient(90deg, var(--hitoiro-light, rgba(214, 188, 60, 0.18)), rgba(255, 255, 255, 0.52));
}

.season-color-now-badge {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hitoiro-dark, #c6a523);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 16px rgba(87, 67, 28, 0.16);
}

.season-color-calendar .season-color-now-badge {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.season-color-calendar-date,
.season-color-calendar-term {
  white-space: nowrap;
}

.season-color-calendar-date {
  color: var(--sub);
}

.season-color-calendar-micro {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.season-color-current,
.season-color-concept,
.season-color-empty {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.season-color-current {
  display: grid;
  gap: 52px;
}

.season-position-panel,
.season-detail-panel {
  display: grid;
  border: 1px solid rgba(212, 202, 191, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(67, 54, 43, 0.08);
}

.season-position-panel {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  padding: 38px 42px;
}

.season-position-current {
  padding-right: 34px;
  border-right: 1px solid rgba(108, 98, 88, 0.16);
}

.season-panel-kicker {
  margin: 0 0 10px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.season-position-current h2,
.season-detail-color h2,
.season-detail-micro h2 {
  margin: 0;
  color: var(--hitoiro-dark, #c6a523);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.season-position-current h2 {
  font-size: clamp(34px, 3.2vw, 52px);
}

.season-position-kana,
.season-detail-kana {
  margin: 4px 0 0;
  color: var(--hitoiro-dark, #c6a523);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.18em;
}

.season-position-period {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.season-position-text,
.season-detail-color p,
.season-detail-micro p,
.season-color-concept p {
  color: var(--text);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.season-detail-color .season-detail-kana,
.season-detail-micro .season-detail-kana {
  color: var(--hitoiro-dark, #c6a523);
}

.season-position-text {
  margin: 14px 0 0;
}

.season-term-flow-list {
  --term-flow-gap: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--term-flow-gap);
  align-items: stretch;
}

.season-term-flow-card {
  position: relative;
  z-index: 0;
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(212, 202, 191, 0.8);
  border-radius: 5px;
  background: rgba(250, 249, 246, 0.72);
  text-align: left;
}

.season-term-flow-card.is-current {
  z-index: 1;
  border: 3px solid var(--hitoiro-dark, #c6a523);
  box-shadow: 0 14px 28px rgba(87, 67, 28, 0.08);
}

.season-term-flow-card .season-color-now-badge {
  position: absolute;
  right: 12px;
  top: 12px;
}

.season-term-flow-phase {
  margin: 0 0 8px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.season-term-flow-card h3 {
  margin: 0;
  color: rgba(38, 35, 31, 0.72);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.season-term-flow-card.is-current h3 {
  color: var(--hitoiro-dark, #c6a523);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.28;
}

.season-term-flow-kana,
.season-term-flow-period {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.season-term-flow-kana {
  margin: 4px 0 0;
  color: var(--text);
}

.season-term-flow-card.is-current .season-term-flow-kana {
  color: var(--hitoiro-dark, #c6a523);
}

.season-term-flow-period {
  margin: 9px 0 0;
  color: var(--text);
}

.season-detail-panel {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 44px;
  padding: 42px;
}

.season-detail-color {
  padding-right: 38px;
  border-right: 1px solid rgba(108, 98, 88, 0.16);
  text-align: center;
}

.season-detail-color h2,
.season-detail-micro h2 {
  font-size: clamp(32px, 3vw, 50px);
}

.season-detail-chip {
  width: 132px;
  aspect-ratio: 1;
  margin: 36px auto 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.55) 0 20%, rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at 54% 58%, var(--hitoiro-light, #d9eef3) 0 58%, rgba(255, 255, 255, 0) 72%);
}

.season-detail-color p:last-child {
  margin: 0 auto;
  max-width: 20em;
  text-align: left;
}

.season-detail-micro img {
  display: block;
  width: 100%;
  margin-top: 26px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 3px;
}

.season-color-concept {
  margin-top: 84px;
}

.season-color-concept h2 {
  position: relative;
  margin: 0;
  padding: 0 0 16px 12px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.season-color-concept h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.season-color-concept h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: -16px;
  padding-bottom: 16px;
}

.season-color-concept h2 span::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0;
  left: -12px;
  height: 5px;
  background: var(--green-dark);
}

.season-color-concept-heading {
  margin-bottom: 34px;
}

.season-color-concept .season-color-concept-subtitle {
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.season-color-concept p {
  margin: 0;
}

.season-color-concept-heading + p,
.season-color-concept-heading ~ p {
  font-size: 17px;
  line-height: 2.1;
}

.season-color-concept p + p {
  margin-top: 20px;
}

.season-color-banners {
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), calc(1220px - (var(--gutter) * 2)));
  margin: 38px auto 0;
  padding: 18px 32px;
  border: 1px solid rgba(122, 160, 149, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 24px rgba(67, 54, 43, 0.06);
}

.season-color-banner {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 26px;
  min-height: 132px;
  padding: 18px 0;
}

.season-color-banner + .season-color-banner {
  border-top: 1px solid rgba(108, 98, 88, 0.16);
}

.season-color-banner {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.season-color-banner:hover,
.season-color-banner:focus-visible {
  opacity: 0.82;
  transform: translateX(3px);
}

.season-color-banner-image {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.42) 0 18%, rgba(255, 255, 255, 0) 48%),
    rgba(122, 160, 149, 0.15);
}

.season-color-banner-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 86px;
  aspect-ratio: 1;
  object-fit: contain;
}

.season-color-banner-content {
  display: grid;
  min-width: 0;
}

.season-color-banner-title {
  color: var(--text);
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.season-color-banner-text {
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.season-color-banner-link {
  justify-self: center;
  color: var(--green-dark);
  font-size: 34px;
  font-family: "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}

.season-color-notice {
  width: min(100%, 1220px);
  margin: 76px auto 0;
  padding: 0 var(--gutter);
}

.season-color-notice h2 {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.season-color-notice p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.season-color-notice p + p {
  margin-top: 16px;
}

.home-support-panel h2 {
  margin: 0 0 clamp(24px, 2.8vw, 42px);
  color: var(--text);
  font-size: clamp(28px, 2.15vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.12em;
}

.home-support-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.home-support-card {
  min-width: 0;
  min-height: 258px;
  padding: 28px 22px 24px;
  display: grid;
  justify-items: center;
  align-content: start;
  border: 1px solid rgba(203, 210, 218, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(60, 45, 35, 0.1);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-support-card:hover,
.home-support-card:focus-visible {
  box-shadow: 0 14px 28px rgba(60, 45, 35, 0.14);
  transform: translateY(-2px);
}

.home-support-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.home-support-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(19px, 1.3vw, 23px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.home-support-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.home-support-card span {
  margin-top: 16px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.home-support-card span::after {
  content: ">";
  margin-left: 0.75em;
  color: var(--green-dark);
  letter-spacing: 0;
}

.home-voice-works {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.home-feature-card {
  position: relative;
  min-width: 0;
  min-height: clamp(220px, 13vw, 252px);
  overflow: hidden;
  border: 1px solid rgba(203, 210, 218, 0.74);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(60, 45, 35, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-feature-voice {
  background:
    radial-gradient(
      ellipse 85% 145% at 100% 50%,
      rgba(179, 201, 193, 0.34) 0%,
      rgba(179, 201, 193, 0.2) 48%,
      rgba(179, 201, 193, 0) 100%
    ),
    rgba(179, 201, 193, 0.08);
}

.home-feature-works {
  background:
    radial-gradient(
      ellipse 85% 145% at 0% 50%,
      rgba(246, 216, 195, 0.32) 0%,
      rgba(246, 216, 195, 0.22) 48%,
      rgba(246, 216, 195, 0) 100%
    ),
    rgba(246, 216, 195, 0.16);
}

.home-feature-card:hover,
.home-feature-card:focus-visible {
  box-shadow: 0 14px 28px rgba(60, 45, 35, 0.14);
  transform: translateY(-2px);
}

.home-feature-card > img {
  position: absolute;
  z-index: 1;
  height: auto;
  object-fit: contain;
}

.home-feature-voice > img {
  left: clamp(46px, 6.4vw, 104px);
  top: 50%;
  width: clamp(96px, 8.5vw, 143px);
  transform: translateY(-50%);
}

.home-feature-works > img {
  right: clamp(28px, 4.2vw, 72px);
  bottom: clamp(22px, 2.4vw, 38px);
  width: clamp(210px, 18vw, 330px);
}

.home-feature-content {
  position: relative;
  z-index: 2;
  width: min(48%, 330px);
  min-height: inherit;
  padding: clamp(34px, 3.1vw, 50px) clamp(28px, 3vw, 50px);
  display: grid;
  align-content: center;
  justify-items: start;
}

.home-feature-voice .home-feature-content {
  margin-left: 41%;
}

.home-feature-works .home-feature-content {
  margin-left: 7%;
}

.home-feature-content h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(28px, 2.15vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.home-feature-content p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.home-feature-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 42px;
  margin-top: 24px;
  padding: 8px 22px;
  border: 1px solid rgba(91, 113, 31, 0.5);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.home-feature-content span::after {
  content: ">";
  margin-left: 0.75em;
  color: var(--green-dark);
  letter-spacing: 0;
}

.home-letter-section {
  padding: 10px var(--gutter) 0;
  background: rgba(179, 201, 193, 0.26);
}

.home-letter-banner {
  position: relative;
  width: min(100%, 1560px);
  min-height: 150px;
  margin: 0 auto;
  padding: 34px clamp(28px, 4vw, 70px) 32px clamp(210px, 18vw, 300px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 46%);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
}

.home-letter-image {
  position: absolute;
  left: clamp(0px, 2vw, 28px);
  top: -38px;
  width: clamp(201px, 15.15vw, 253px);
  height: auto;
}

.home-letter-content {
  display: block;
  transform: translateY(-10px);
}

.home-letter-content h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(24px, 1.75vw, 31px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease;
}

.home-letter-content h2::after {
  content: "›";
  display: inline-block;
  margin-left: 0.45em;
  color: var(--green-dark);
  font-size: 0.72em;
  line-height: 1;
  vertical-align: 0.18em;
  letter-spacing: 0;
}

.home-letter-content:hover h2,
.home-letter-content:focus-visible h2 {
  transform: translateY(-2px);
}

.home-letter-content p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.home-letter-form {
  width: 100%;
  display: grid;
  gap: 10px;
  transform: translateY(-12px);
}

.home-letter-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(60, 45, 35, 0.06);
}

.home-letter-entry label {
  min-width: 0;
  display: block;
}

.home-letter-entry label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.home-letter-entry input {
  width: 100%;
  min-height: 58px;
  padding: 12px 28px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.home-letter-entry input::placeholder {
  color: rgba(108, 98, 88, 0.72);
}

.home-letter-entry input:focus {
  outline: 0;
}

.home-letter-entry:has(input:-webkit-autofill) {
  background: #e8f0fe;
}

.home-letter-entry input:-webkit-autofill,
.home-letter-entry input:-webkit-autofill:hover,
.home-letter-entry input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #e8f0fe inset;
  box-shadow: 0 0 0 1000px #e8f0fe inset;
  -webkit-text-fill-color: var(--text);
}

.home-letter-entry button {
  min-height: 58px;
  padding: 10px 28px;
  border: 0;
  border-radius: 999px;
  background: #66856d;
  color: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-letter-entry button::after {
  content: ">";
  margin-left: 0.75em;
  letter-spacing: 0;
}

.home-letter-entry:focus-within {
  box-shadow: 0 0 0 2px rgba(91, 113, 31, 0.18), 0 8px 18px rgba(60, 45, 35, 0.06);
}

.home-letter-entry button:hover,
.home-letter-entry button:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.letter-subscribe-options {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.letter-subscribe-options legend {
  margin: 0 0 8px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.letter-subscribe-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.letter-subscribe-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #66856d;
}

.home-letter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding-left: 12px;
}

.home-letter-options legend {
  margin: 0;
}

.letter-subscribe-note {
  margin: -2px 0 8px;
  padding-left: 12px;
  color: var(--sub);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.letter-subscribe-alert {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(171, 100, 77, 0.44);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.96);
  color: #8d4e3d;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(80, 52, 37, 0.08);
}

.letter-subscribe-alert[hidden] {
  display: none;
}

/* page */
.site-main {
  background:
    url("../images/background2.jpg") no-repeat right top / 100% auto,
    var(--base);
  flex: 1 0 auto;
}

.page-title,
.preparing,
.breadcrumb {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.breadcrumb {
  padding-top: 28px;
  font-size: 14px;
  color: var(--sub);
  letter-spacing: 0.08em;
}

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

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
  color: var(--sub);
}

.breadcrumb a {
  color: var(--sub);
  text-decoration: underline;
  text-decoration-color: rgba(45, 37, 31, 0.33);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

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

.preparing {
  min-height: 560px;
  display: grid;
  place-items: start center;
  padding-top: 70px;
  font-size: 18px;
  letter-spacing: 0.18em;
}

.page-title {
  padding-top: 34px;
  padding-bottom: 28px;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.page-title p {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #8a8178;
}

.contact-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 34px var(--gutter) 135px;
}

.contents-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 34px var(--gutter) 135px;
}

.contents-top-main {
  background:
    linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)),
    url("../images/background2.jpg") no-repeat right top / 100% auto,
    var(--base);
}

.contents-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 26px;
  align-items: stretch;
}

.contents-feature-side {
  display: grid;
  gap: 26px;
}

.contents-feature-card {
  --contents-accent: #7b9a90;
  --contents-tint: rgba(123, 154, 144, 0.13);
  --contents-circle-tint: rgba(123, 154, 144, 0.24);
  --contents-bg: none;
  --contents-bg-position: center;
  --contents-bg-size: cover;
  --contents-bg-opacity: 0.86;
  --contents-bg-hover-opacity: 0.94;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 248px;
  padding: clamp(30px, 3.4vw, 48px);
  border: 0;
  outline: 0;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.64) 48%, var(--contents-tint) 100%),
    rgba(250, 247, 242, 0.95);
  box-shadow: inset 0 0 0 1px rgba(64, 85, 26, 0.13);
  color: var(--text);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contents-feature-card::before {
  content: "";
  position: absolute;
  left: -86px;
  top: -92px;
  z-index: 1;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.14) 0 22%, rgba(255, 255, 255, 0) 54%),
    var(--contents-circle-tint);
  opacity: 1;
  pointer-events: none;
}

.contents-feature-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(250, 247, 242, 0.94) 0%, rgba(250, 247, 242, 0.76) 36%, rgba(250, 247, 242, 0.42) 64%, rgba(250, 247, 242, 0.08) 100%),
    var(--contents-bg) no-repeat var(--contents-bg-position) / var(--contents-bg-size);
  opacity: var(--contents-bg-opacity);
  transition: opacity 0.2s ease;
}

.contents-feature-card > * {
  position: relative;
  z-index: 2;
}

.contents-feature-card:hover,
.contents-feature-card:focus-visible {
  transform: translateY(-5px);
}

.contents-feature-card:hover::after,
.contents-feature-card:focus-visible::after {
  opacity: var(--contents-bg-hover-opacity);
}

.contents-feature-main {
  --contents-bg: url("../images/contents/note-bg.jpg");
  --contents-bg-opacity: 0.62;
  --contents-bg-hover-opacity: 0.7;
  align-content: start;
  min-height: 524px;
}

@media (min-width: 861px) and (max-width: 1099px) {
  .contents-feature-main {
    --contents-bg-position: 82% 48%;
    --contents-bg-size: auto 122%;
  }
}

@media (min-width: 1100px) {
  .contents-feature-main {
    --contents-bg-position: 82% 46%;
    --contents-bg-size: auto 118%;
  }
}

.contents-feature-web {
  --contents-accent: #7b9a90;
  --contents-tint: rgba(123, 154, 144, 0.15);
  --contents-bg: url("../images/contents/web-bg.jpg");
  --contents-bg-opacity: 0.68;
  --contents-bg-hover-opacity: 0.76;
}

.contents-feature-season {
  --contents-accent: #a27758;
  --contents-tint: rgba(162, 119, 88, 0.14);
  --contents-circle-tint: rgba(162, 119, 88, 0.22);
  --contents-bg: url("../images/contents/season-bg.jpg");
}

.contents-feature-number {
  display: none;
}

.contents-feature-kicker {
  display: block;
  width: fit-content;
  margin-bottom: 22px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--contents-accent);
  color: var(--contents-accent);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.contents-feature-title {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.6vw, 37px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.contents-feature-side .contents-feature-title {
  font-size: clamp(21px, 1.8vw, 27px);
}

.contents-feature-text {
  display: block;
  max-width: 28em;
  color: var(--text);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.contents-feature-main .contents-feature-text {
  max-width: 30em;
  font-size: 16px;
}

.contents-feature-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 34px;
  padding-top: 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.contents-feature-more::after {
  content: ">";
  margin-left: 1em;
  color: var(--contents-accent);
  letter-spacing: 0;
}

.links-index {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
  display: grid;
  gap: 28px;
}

.links-group + .links-group {
  margin-top: 0;
}

.links-group {
  padding: 30px 32px;
  background: rgba(247, 243, 237, 0.72);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.links-group h2 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(108, 98, 88, 0.18);
  color: var(--text);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

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

.links-list li {
  min-width: 0;
}

.links-list a {
  display: block;
  min-height: 48px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 213, 206, 0.72);
  border-radius: 6px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.links-list a:hover {
  background: #fff;
  border-color: rgba(91, 113, 31, 0.32);
  color: var(--green-dark);
}

.privacy-index {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.privacy-lead,
.privacy-section,
.privacy-signature {
  padding: 0;
}

.privacy-section,
.privacy-signature {
  margin-top: 78px;
}

.privacy-section h2 {
  margin: 0 0 24px;
  padding-left: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(108, 98, 88, 0.18);
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.privacy-index p,
.privacy-index li {
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.privacy-index p {
  margin: 0;
}

.privacy-index p + p,
.privacy-section ul + p {
  margin-top: 16px;
}

.privacy-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.6em;
  list-style: disc;
}

.privacy-section li::marker {
  color: var(--text);
}

.privacy-section li {
  padding-left: 0.2em;
}

.privacy-signature {
  padding-top: 0;
}

.about-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
  display: grid;
  gap: 82px;
}

.about-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.about-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.about-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.about-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.about-text {
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.about-text h3 {
  margin: 62px 0 18px;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.about-text h3:first-child {
  margin-top: 42px;
}

.about-text p {
  margin: 0;
}

.about-text p + p {
  margin-top: 1.05em;
}

.about-closing-message {
  margin-top: 28px;
  margin-bottom: 58px;
}

.about-closing-message::before {
  content: none;
}

.about-closing-message p {
  font-size: 19px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}

.about-closing-message p:last-child {
  margin-top: 1.25em;
  font-size: 19px;
  font-weight: 600;
}

.about-season-concept {
  width: 100%;
  margin-top: 0;
  padding: 0;
}

.about-season-concept .season-color-concept-heading {
  margin-bottom: 26px;
  padding: 26px 34px;
  background: #ebf1ef;
}

.about-season-concept h3 {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-align: center;
}

.about-season-concept h3::after {
  content: none;
}

.about-season-concept h3 span {
  display: inline;
  margin: 0;
  padding: 0;
}

.about-season-concept h3 span::after {
  content: none;
}

.about-season-banners {
  width: 100%;
  margin: -50px 0 0;
}

@media (max-width: 860px) {
  .about-season-concept .season-color-concept-heading {
    margin-bottom: 22px;
    padding: 22px 20px;
  }

  .about-season-concept h3 {
    padding: 0;
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: 0.1em;
  }

  .about-season-concept h3 span {
    margin: 0;
    padding: 0;
  }

  .about-season-banners {
    width: 100%;
    margin: -46px 0 0;
  }
}

.faq-index {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.faq-item {
  padding: 52px 0;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(108, 98, 88, 0.18);
}

.faq-item h2 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 2.2em;
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.faq-item h2::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}

.faq-answer {
  position: relative;
  padding-left: 2.75em;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.faq-answer::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0.3em;
}

.information-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
  display: grid;
  gap: 82px;
}

.information-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.information-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.information-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.information-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.operator-section h2 {
  margin-bottom: 46px;
}

.information-list {
  margin: 0;
}

.information-list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 44px;
  padding: 38px 0;
  border-bottom: 1px dotted rgba(91, 113, 31, 0.60);
}

.information-list dt,
.information-list dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.information-list dt {
  padding-left: 12px;
  color: var(--sub);
  font-weight: 500;
}

.information-list dd {
  color: var(--text);
}

.information-list dd span {
  display: block;
}

.information-list .contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.information-list .contact-line + .contact-line {
  margin-top: 8px;
}

.contact-label {
  flex: 0 0 88px;
  min-width: 88px;
  padding: 2px 10px;
  background: rgba(108, 98, 88, 0.12);
  border-radius: 4px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.04em;
}

.information-list a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: rgba(91, 113, 31, 0.3);
  text-underline-offset: 5px;
}

.information-list a:hover {
  text-decoration: none;
}

.operator-profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 34px;
  padding: 34px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.operator-photo img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.operator-message p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.operator-message p + p {
  margin-top: 0.55em;
}

.operator-list {
  margin-top: 0;
}

.letters-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.letters-intro {
  display: grid;
  gap: 0.75em;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.letters-hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 46px;
  border: 1px solid rgba(184, 166, 145, 0.42);
  border-radius: 8px;
}

.letters-content-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 22px 0 18px;
  border-radius: 8px;
}

.letters-intro p {
  margin: 0;
}

.letters-intro-heading {
  margin-bottom: 28px;
}

.letters-intro-heading h2 {
  margin-bottom: 0;
}

.letters-intro a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: rgba(64, 85, 26, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.letters-intro a:hover {
  text-decoration: none;
}

.letters-subscribe,
.letters-backnumber {
  margin-top: 70px;
}

.letters-backnumber {
  margin-top: 116px;
}

.letters-intro h2,
.letters-subscribe h2,
.letters-backnumber h2 {
  position: relative;
  margin: 0 0 28px;
  padding-left: 12px;
  padding-bottom: 14px;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.letters-intro h2::after,
.letters-subscribe h2::after,
.letters-backnumber h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.letters-intro h2 span,
.letters-subscribe h2 span,
.letters-backnumber h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.letters-intro h2 span::after,
.letters-subscribe h2 span::after,
.letters-backnumber h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.letters-intro-heading h2 {
  margin-bottom: 0;
}

.letters-intro p + h2 {
  margin-top: 66px;
}

.letters-letter-types {
  display: grid;
  margin-top: 30px;
  padding: 24px 32px;
  border: 1px solid rgba(122, 160, 149, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 24px rgba(67, 54, 43, 0.06);
}

.letters-letter-types .season-color-banner {
  grid-template-columns: 124px minmax(0, 1fr);
  padding: 28px 0;
}

.letters-letter-types .season-color-banner:first-child {
  padding-top: 18px;
}

.letters-letter-types .season-color-banner:last-child {
  padding-bottom: 18px;
}

.letters-letter-types .season-color-banner:hover,
.letters-letter-types .season-color-banner:focus-visible {
  opacity: 1;
  transform: none;
}

.letters-letter-types .season-color-banner-text {
  display: grid;
  gap: 6px;
}

.letters-subscribe h2 {
  margin-bottom: 52px;
}

.letters-form {
  padding: 34px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.letters-options {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.letters-options label {
  align-items: flex-start;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(212, 202, 191, 0.82);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.letters-options input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 4px;
}

.option-note {
  display: block;
  margin-top: 2px;
  color: var(--sub);
  font-size: 12px;
  line-height: 1.6;
}

.letters-mail-label {
  display: block;
  margin-bottom: 12px;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.letters-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 14px;
}

.letters-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d4cabf;
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.letters-form input[type="email"]:focus {
  outline: 0;
  border-color: #7aa095;
  box-shadow: 0 0 0 3px rgba(122, 160, 149, 0.2);
}

.letters-form button {
  min-height: 50px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.letters-form button:hover {
  background: var(--green);
  border-color: var(--green);
}

.mailmagazine-result {
  width: min(760px, calc(100% - 48px));
  margin: 100px auto 120px;
}

.mailmagazine-result-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mailmagazine-result h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.mailmagazine-result-card {
  padding: 32px;
  border: 1px solid rgba(212, 202, 191, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(67, 54, 43, 0.08);
}

.mailmagazine-result-card.is-error {
  border-color: rgba(170, 91, 70, 0.5);
}

.mailmagazine-result-card h2 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.mailmagazine-result-card p,
.mailmagazine-result-card li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.mailmagazine-result-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.3em;
}

.mailmagazine-result-messages {
  display: grid;
  gap: 10px;
}

.mailmagazine-result-messages p {
  margin: 0;
}

.mailmagazine-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mailmagazine-result-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border: 1px solid rgba(91, 113, 31, 0.34);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mailmagazine-result-actions a:hover {
  background: rgba(91, 113, 31, 0.08);
  border-color: rgba(91, 113, 31, 0.5);
}

.letters-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  border-top: 0;
}

.letters-list li {
  border-bottom: 1px dotted rgba(91, 113, 31, 0.42);
}

.letters-list a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 12px 22px 26px;
  color: #2f5f7f;
  line-height: 1.8;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.letters-list time {
  color: var(--sub);
  font-size: 15px;
}

.letters-list span {
  font-size: 16px;
}

.letters-list a:hover {
  color: #1f4965;
}

.letters-empty {
  margin: 0;
  padding: 26px 12px;
  border-top: 1px dotted rgba(91, 113, 31, 0.42);
  border-bottom: 1px dotted rgba(91, 113, 31, 0.42);
  color: var(--sub);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.works-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 30px var(--gutter) 135px;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 38px;
}

.works-card {
  display: block;
  color: var(--text);
}

.works-thumb {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.works-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.works-name {
  display: block;
  margin-top: 13px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.works-card:hover .works-thumb,
.works-card:focus-visible .works-thumb {
  border-color: rgba(91, 113, 31, 0.38);
  box-shadow: 0 12px 22px rgba(60, 45, 35, 0.1);
  transform: translateY(-3px);
}

.works-card:hover .works-name,
.works-card:focus-visible .works-name {
  color: var(--green-dark);
}

.price-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.price-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.price-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.price-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.price-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.price-lead {
  display: grid;
  gap: 0.4em;
  margin-bottom: 44px;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.price-lead p {
  margin: 0;
}

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

.price-plan-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 34px 28px 30px;
  background: #f4f0ea;
  border: 1px solid #ddd2c4;
  border-radius: 6px;
  color: var(--text);
}

.price-plan-card h3 {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}

.price-plan-price {
  display: grid;
  place-items: center;
  min-height: 62px;
  margin: 0 0 24px;
  padding: 10px 14px;
  background: rgba(91, 113, 31, 0.1);
  border-radius: 5px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.price-plan-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.price-plan-text p {
  margin: 0;
}

.price-plan-text p + p {
  margin-top: 0.5em;
}

.price-diagnosis {
  margin-top: 72px;
  padding: 34px 38px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
  text-align: center;
}

.price-diagnosis p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.price-diagnosis a {
  display: inline-block;
  min-width: 260px;
  padding: 13px 24px;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.price-diagnosis a::after {
  content: ">";
  margin-left: 0.65em;
}

.price-diagnosis a:hover {
  background: var(--green);
  border-color: var(--green);
}

.service-guide {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
  display: grid;
  gap: 82px;
}

.service-guide-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.service-guide-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.service-guide-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.service-guide-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.service-guide-text {
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.service-guide-text p {
  margin: 0;
}

.service-guide-text p + p,
.service-guide-text ul + p {
  margin-top: 1.05em;
}

.service-guide-text ul {
  display: grid;
  gap: 0.4em;
  margin: 0.65em 0 0;
  padding-left: 1.25em;
  list-style: disc;
}

.service-guide-text a {
  color: #2f5f7f;
  text-decoration: underline;
  text-decoration-color: rgba(47, 95, 127, 0.28);
  text-underline-offset: 6px;
}

.service-guide-text a:hover {
  color: #1f4965;
  text-decoration: none;
}

.service-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding: 24px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.service-guide-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.28);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.service-guide-links a::after {
  content: ">";
  margin-left: 0.65em;
}

.service-guide-links a:hover {
  background: rgba(91, 113, 31, 0.08);
  border-color: rgba(91, 113, 31, 0.46);
}

.service-guide-links-multi {
  align-items: stretch;
}

.ai-editor-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.ai-editor-hero {
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 38px;
  border-radius: 8px;
  background: transparent;
}

.ai-editor-hero img {
  display: block;
  width: 88%;
  margin: 0 auto;
}

.ai-editor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 70px;
  padding: 22px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.ai-editor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.22);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.ai-editor-nav a:hover {
  background: rgba(91, 113, 31, 0.08);
  border-color: rgba(91, 113, 31, 0.46);
}

.ai-editor-section {
  scroll-margin-top: 120px;
}

.ai-editor-section + .ai-editor-section {
  margin-top: 82px;
}

.ai-editor-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.ai-editor-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.ai-editor-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.ai-editor-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.ai-editor-section h3 {
  margin: 46px 0 18px;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.ai-editor-text,
.ai-editor-case,
.ai-editor-note,
.ai-editor-faq {
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.ai-editor-text p,
.ai-editor-case p,
.ai-editor-note p,
.ai-editor-faq p {
  margin: 0;
}

.ai-editor-text p + p,
.ai-editor-case p + p,
.ai-editor-note p + p,
.ai-editor-faq p + p {
  margin-top: 1.05em;
}

.ai-editor-text a,
.ai-editor-note a,
.ai-editor-faq a {
  color: #2f5f7f;
  text-decoration: underline;
  text-decoration-color: rgba(47, 95, 127, 0.28);
  text-underline-offset: 6px;
}

.ai-editor-text a:hover,
.ai-editor-note a:hover,
.ai-editor-faq a:hover {
  color: #1f4965;
  text-decoration: none;
}

.ai-editor-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: start;
}

.ai-editor-media-left {
  grid-template-columns: 260px minmax(0, 1fr);
}

.ai-editor-mode-media {
  grid-template-columns: 1fr;
}

.ai-editor-why-media {
  display: block;
}

.ai-editor-why-media::after {
  display: block;
  clear: both;
  content: "";
}

.ai-editor-media.ai-editor-why-media > img {
  float: right;
  width: min(42%, 420px);
  margin: 0 0 22px 34px;
}

.ai-editor-media-right img {
  order: 2;
}

.ai-editor-media img {
  width: 100%;
  border-radius: 6px;
}

.ai-editor-case {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-top: 24px;
}

.ai-editor-case > div,
.ai-editor-note {
  padding: 30px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.ai-editor-label,
.ai-editor-note-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 2px 12px;
  background: rgba(91, 113, 31, 0.12);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.ai-editor-case img {
  margin-top: 18px;
  border-radius: 6px;
}

.ai-editor-note {
  margin-top: 44px;
}

.ai-editor-note-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.ai-editor-note-heading .ai-editor-note-label {
  margin: 0;
}

.ai-editor-note h3 {
  display: inline-block;
  margin: 0 0 28px 12px;
  vertical-align: middle;
}

.ai-editor-note-heading h3 {
  display: block;
  margin: 0;
}

@media (min-width: 861px) {
  .ai-editor-note > .ai-editor-note-label {
    margin-bottom: 0;
    transform: translateY(-4px);
  }
}

.ai-editor-note > img {
  float: right;
  width: min(36%, 260px);
  margin: 0 0 20px 28px;
  border-radius: 6px;
}

.ai-editor-note::after {
  content: "";
  display: block;
  clear: both;
}

.ai-editor-recommend {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.ai-editor-recommend > img {
  float: none;
  width: 100%;
  margin: 0;
}

.ai-editor-recommend ul,
.ai-editor-faq ol {
  margin: 0;
  padding-left: 1.4em;
}

.ai-editor-recommend ul {
  list-style: disc;
}

.ai-editor-recommend li + li,
.ai-editor-faq li + li {
  margin-top: 0.35em;
}

.ai-editor-caption {
  margin: 20px 0 0;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.ai-editor-trial .ai-editor-text strong {
  color: var(--green-dark);
}

.ai-editor-faq {
  display: grid;
  gap: 12px;
}

.ai-editor-faq details {
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.ai-editor-faq summary {
  cursor: pointer;
  padding: 18px 24px;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.ai-editor-faq details > p,
.ai-editor-faq details > ol,
.ai-editor-faq details > h3 {
  margin-left: 24px;
  margin-right: 24px;
}

.ai-editor-faq details > p:last-child,
.ai-editor-faq details > ol:last-child {
  margin-bottom: 24px;
}

.ai-editor-faq details > h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.ai-editor-price {
  color: var(--wine);
  font-size: 1.35em;
  font-weight: 500;
}

.ai-editor-plan-note {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.18);
  border-radius: 6px;
}

.web-edit-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.web-edit-hero {
  margin: 24px 0 38px;
}

.web-edit-hero img {
  display: block;
  width: 88%;
  margin: 0 auto;
  border-radius: 8px;
}

.web-edit-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 70px;
  padding: 22px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.web-edit-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.22);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.web-edit-nav a:hover {
  background: rgba(91, 113, 31, 0.08);
  border-color: rgba(91, 113, 31, 0.46);
}

.web-edit-section {
  scroll-margin-top: 120px;
}

.web-edit-section + .web-edit-section {
  margin-top: 82px;
}

.web-edit-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.web-edit-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.web-edit-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.web-edit-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.web-edit-section h3 {
  margin: 34px 0 18px;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.web-edit-section h4 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 500;
}

.web-edit-text,
.web-edit-lead,
.web-edit-note,
.web-edit-case,
.web-edit-faq {
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.web-edit-text p,
.web-edit-lead,
.web-edit-note p,
.web-edit-case p,
.web-edit-faq p {
  margin: 0;
}

.web-edit-text p + p,
.web-edit-note p + p,
.web-edit-case p + p,
.web-edit-faq p + p {
  margin-top: 18px;
}

.web-edit-text a,
.web-edit-note a,
.web-edit-case a,
.web-edit-faq a {
  color: #1f4965;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.web-edit-text a:hover,
.web-edit-note a:hover,
.web-edit-case a:hover,
.web-edit-faq a:hover {
  text-decoration: none;
}

.web-edit-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

.web-edit-media-left {
  grid-template-columns: 300px minmax(0, 1fr);
}

.web-edit-media-right img {
  order: 2;
}

.web-edit-media img {
  width: 100%;
  border-radius: 6px;
}

.web-edit-note,
.web-edit-case,
.web-edit-faq {
  padding: 30px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.web-edit-note-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 2px 12px;
  background: rgba(91, 113, 31, 0.12);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.web-edit-note-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.web-edit-note-heading .web-edit-note-label {
  margin: 0;
}

.web-edit-note-heading h3 {
  display: block;
  margin: 0;
}

.web-edit-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 24px 0 28px;
}

.web-edit-case-grid > div {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.web-edit-case ul,
.web-edit-note ul,
.web-edit-faq ol {
  margin: 16px 0 0;
  padding-left: 1.4em;
}

.web-edit-note ul {
  list-style: disc;
}

.web-edit-case li + li,
.web-edit-note li + li,
.web-edit-faq li + li {
  margin-top: 8px;
}

.web-edit-case-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.web-edit-case-images a {
  display: block;
  text-decoration: none;
}

.web-edit-case-images img {
  width: 100%;
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 6px;
}

.web-edit-case-images span {
  display: block;
  margin-top: 8px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.6;
}

.web-edit-note {
  margin-top: 24px;
}

.web-edit-recommend {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px 28px;
  align-items: start;
}

.web-edit-recommend h3,
.web-edit-recommend ul,
.web-edit-recommend .web-edit-note-label,
.web-edit-recommend .web-edit-note-heading {
  grid-column: 1;
}

.web-edit-recommend ul {
  margin-top: 0;
}

.web-edit-recommend .web-edit-note-heading {
  margin-bottom: 18px;
}

.web-edit-recommend > img {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  border-radius: 6px;
}

.web-edit-faq {
  display: grid;
  gap: 12px;
}

.web-edit-faq details {
  background: #fff;
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
  overflow: hidden;
}

.web-edit-faq summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 500;
  list-style-position: inside;
}

.web-edit-faq details > p,
.web-edit-faq details > ol,
.web-edit-faq details > h3 {
  margin-left: 22px;
  margin-right: 22px;
}

.web-edit-faq details > p:last-child,
.web-edit-faq details > ol:last-child {
  margin-bottom: 24px;
}

.web-edit-price {
  color: var(--wine);
  font-size: 1.35em;
  font-weight: 500;
}

.web-edit-plan-note {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.18);
  border-radius: 6px;
}

.structured-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 135px;
}

.structured-hero {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0 38px;
}

.structured-hero img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.structured-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 70px;
  padding: 22px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.structured-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.22);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.structured-nav a:hover {
  background: rgba(91, 113, 31, 0.08);
  border-color: rgba(91, 113, 31, 0.46);
}

.structured-section {
  scroll-margin-top: 120px;
}

.structured-section + .structured-section {
  margin-top: 82px;
}

.structured-section h2 {
  position: relative;
  margin: 42px 0 32px;
  padding-left: 12px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.structured-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
}

.structured-section h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.structured-section h2 span::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 5px;
  background: var(--green-dark);
}

.structured-section h3 {
  margin: 34px 0 18px;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.structured-text,
.structured-note,
.structured-code,
.structured-faq {
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.structured-text p,
.structured-note p,
.structured-faq p {
  margin: 0;
}

.structured-text p + p,
.structured-note p + p,
.structured-faq p + p {
  margin-top: 18px;
}

.structured-text a,
.structured-note a,
.structured-faq a {
  color: #1f4965;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.structured-text a:hover,
.structured-note a:hover,
.structured-faq a:hover {
  text-decoration: none;
}

.structured-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

.structured-media-left {
  grid-template-columns: 300px minmax(0, 1fr);
}

.structured-media-right img,
.structured-media-right a {
  order: 2;
}

.structured-media img {
  width: 100%;
  border-radius: 6px;
}

.structured-ai-media {
  display: block;
}

.structured-ai-media::after {
  display: block;
  clear: both;
  content: "";
}

.structured-ai-media > a {
  display: block;
}

.structured-ai-media-left > a {
  float: left;
  width: min(30%, 300px);
  margin: 0 34px 20px 0;
}

.structured-ai-media-right > a {
  float: right;
  width: min(36%, 360px);
  margin: 0 0 20px 34px;
}

.structured-ai-media > a img {
  width: 100%;
}

.structured-note,
.structured-code,
.structured-faq {
  padding: 30px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
}

.structured-note {
  margin-top: 28px;
}

.structured-note-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.structured-note-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 2px 12px;
  background: rgba(91, 113, 31, 0.12);
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.structured-note-heading .structured-note-label {
  margin: 0;
}

.structured-note-heading h3 {
  margin: 0;
}

.structured-column > img {
  float: right;
  width: min(36%, 260px);
  margin: 0 0 20px 28px;
  border-radius: 6px;
}

.structured-rich-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 28px;
}

.structured-rich-grid a {
  display: block;
  padding: 12px;
  background: rgba(247, 243, 237, 0.62);
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
  color: var(--green-dark);
  text-align: center;
  text-decoration: none;
}

.structured-rich-grid img {
  width: 100%;
  border-radius: 6px;
}

.structured-rich-grid span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.structured-code {
  margin: 28px 0;
}

.structured-code pre {
  overflow-x: auto;
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 6px;
  color: #2d251f;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.7;
}

.structured-faq {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.structured-faq details {
  background: #fff;
  border: 1px solid rgba(221, 213, 206, 0.78);
  border-radius: 8px;
  overflow: hidden;
}

.structured-faq summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 500;
  list-style-position: inside;
}

.structured-faq details > p,
.structured-faq details > ol,
.structured-faq details > h3 {
  margin-left: 22px;
  margin-right: 22px;
}

.structured-faq details > p:last-child,
.structured-faq details > ol:last-child {
  margin-bottom: 24px;
}

.structured-faq ol {
  padding-left: 1.4em;
}

.structured-price {
  color: var(--wine);
  font-size: 1.25em;
  font-weight: 500;
}

.structured-strike {
  color: var(--sub);
  text-decoration: line-through;
}

.structured-plan-note {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(91, 113, 31, 0.18);
  border-radius: 6px;
}

/* WEB application */
.web-app-breadcrumb {
  width: min(calc(100vw - (var(--gutter) * 2)), 1540px);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.web-app-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 12px var(--gutter) 135px;
}

.web-app-hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 5.2vw, 88px);
  width: min(calc(100vw - (var(--gutter) * 2)), 1540px);
  margin: 22px 50% 70px;
  padding: 20px 0 22px;
  transform: translateX(-50%);
}

.web-app-hero-copy {
  min-width: 0;
}

.web-app-hero-title {
  margin: 0 0 28px;
  color: var(--green);
  font-size: clamp(21px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.web-app-hero-copy h2 {
  margin: 0 0 26px;
  color: var(--text);
  font-size: clamp(36px, 2.75vw, 54px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.web-app-hero-line {
  display: block;
  white-space: nowrap;
}

.web-app-hero-accent {
  color: var(--green);
}

.web-app-hero-copy p {
  max-width: 630px;
  margin: 0;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 2;
}

.web-app-hero-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 54px);
  max-width: 610px;
  margin: 78px auto 0;
  padding: 0;
  list-style: none;
}

.web-app-hero-icons li {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--green);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
}

.web-app-hero-icons img {
  width: clamp(66px, 6vw, 98px);
  aspect-ratio: 1;
  object-fit: contain;
}

.web-app-hero-visual {
  align-self: center;
}

.web-app-hero-visual img {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.web-app-kicker {
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.web-app-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 92px;
  overflow: hidden;
  background: rgba(91, 113, 31, 0.18);
  border: 1px solid rgba(91, 113, 31, 0.18);
  border-radius: 8px;
}

.web-app-nav a {
  padding: 14px 10px;
  background: #fff;
  color: var(--green-dark);
  text-align: center;
}

.web-app-nav a:hover {
  background: #f3f5ef;
  text-decoration: none;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .web-app-hero {
    grid-template-columns: minmax(420px, 0.98fr) minmax(330px, 1.02fr);
    gap: clamp(26px, 3.2vw, 42px);
  }

  .web-app-hero-copy h2 {
    font-size: clamp(31px, 2.92vw, 36px);
  }

  .web-app-hero-copy p {
    font-size: 16px;
  }

  .web-app-hero-icons {
    margin-top: 54px;
  }
}

.web-app-section + .web-app-section {
  margin-top: 105px;
}

.web-app-section > h2 {
  position: relative;
  margin: 0 0 42px;
  padding-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.38;
  text-align: center;
  letter-spacing: 0.07em;
}

.web-app-section > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--wine);
  transform: translateX(-50%);
}

.web-app-section > h2 span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.52em;
  line-height: 1.25;
}

.web-app-text {
  max-width: none;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2.05;
}

.web-app-text p + p {
  margin-top: 1.25em;
}

.web-app-lead {
  margin: -18px 0 34px;
  text-align: center;
}

.web-app-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.web-app-card-grid article,
.web-app-points article {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(221, 213, 206, 0.9);
  border-radius: 9px;
}

.web-app-card-grid h3,
.web-app-points h3,
.web-app-flow h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 500;
}

.web-app-card-grid p,
.web-app-points p,
.web-app-flow p {
  margin: 0;
  line-height: 1.85;
}

.web-app-card-grid .web-app-card-number {
  margin-bottom: 15px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.web-app-card-grid .web-app-card-example {
  margin-top: 14px;
  color: var(--sub);
  font-size: 13px;
}

.web-app-card-example a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.web-app-card-example a:hover {
  color: var(--green-dark);
}

.web-app-note {
  margin: 18px 0 0;
  color: var(--sub);
  font-size: 13px;
  text-align: right;
}

.web-app-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.web-app-points article {
  border-top: 3px solid rgba(91, 113, 31, 0.55);
}

.web-app-flow {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.web-app-flow li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(221, 213, 206, 0.9);
}

.web-app-flow li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--green-dark);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
}

.web-app-faq {
  display: grid;
  max-width: none;
  margin: 0 auto;
  gap: 10px;
}

.web-app-faq details {
  background: #fff;
  border: 1px solid rgba(221, 213, 206, 0.9);
  border-radius: 8px;
}

.web-app-faq summary {
  padding: 18px 22px;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.web-app-faq p {
  margin: 0;
  padding: 0 22px 22px;
  line-height: 1.9;
}

.web-app-contact {
  margin-top: 110px;
  padding: 62px 40px;
  background: #edf0e8;
  border-radius: 12px;
  text-align: center;
}

.web-app-contact h2 {
  margin: 10px 0 18px;
  color: var(--green-dark);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.web-app-contact > p:not(.web-app-kicker) {
  line-height: 2;
}

.web-app-contact a {
  display: inline-block;
  min-width: 280px;
  margin-top: 26px;
  padding: 15px 28px;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  color: #fff;
}

.web-app-contact a:hover {
  background: #fff;
  color: var(--green-dark);
  text-decoration: none;
}

.flow-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 30px var(--gutter) 135px;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 53px 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(221, 213, 206, 0.72);
  border-radius: 8px;
}

.flow-item:last-child {
  border-bottom: 0;
}

.flow-thumb {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(221, 213, 206, 0.72);
}

.flow-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.flow-number {
  margin: 0 0 3px;
  color: var(--green-dark);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.flow-body h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.flow-body p {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.95;
}

.flow-body p + p {
  margin-top: 8px;
}

.note-index {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 26px var(--gutter) 135px;
}

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

.note-item {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.note-item:hover,
.note-item:focus-within {
  background: rgba(247, 243, 237, 0.98);
  border-color: rgba(91, 113, 31, 0.36);
  transform: translateY(-2px);
}

.note-item-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 28px;
  color: inherit;
}

.note-item:not(.has-thumb) .note-item-link {
  grid-template-columns: 1fr;
}

.note-thumb {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.note-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.note-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.note-date {
  color: var(--sub);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.note-category,
.note-new {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
}

.note-category {
  background: var(--paper);
  color: var(--sub);
}

.note-new {
  background: var(--wine);
  color: #fff;
}

.note-title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.note-title a {
  text-decoration: underline;
  text-decoration-color: rgba(64, 85, 26, 0.26);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.note-item:hover .note-title,
.note-item:focus-within .note-title,
.note-title a:hover {
  color: var(--green-dark);
  text-decoration: none;
}

.note-excerpt {
  margin: 14px 0 0;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.9;
}

.note-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}

.note-list + .note-pager {
  margin: 30px 0 0;
}

.note-rss-link {
  margin: 4px 0 18px;
  text-align: left;
  color: rgba(91, 113, 31, 0.72);
  font-size: 14px;
}

.note-rss-link a {
  display: inline-block;
  padding: 0 1px 2px 7px;
  border-bottom: 1px solid transparent;
}

.note-rss-link a:hover {
  border-bottom-color: rgba(91, 113, 31, 0.42);
  text-decoration: none;
}

.note-detail {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 58px var(--gutter) 135px;
}

.note-detail-header {
  margin-bottom: 64px;
  padding-bottom: 0;
  border-bottom: 0;
}

.note-detail-date {
  margin: 0 0 12px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.note-detail-header h1 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.note-detail-body {
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.note-detail-text {
  margin: 0 0 28px;
}

.note-detail-text p {
  margin: 0;
}

.note-detail-text p + p,
.note-detail-text br + br {
  margin-top: 1em;
}

.note-detail-body a {
  color: #2f5f7f;
  text-decoration: underline;
  text-decoration-color: rgba(47, 95, 127, 0.28);
  text-underline-offset: 6px;
}

.note-detail-body a:hover {
  color: #1f4965;
  text-decoration: none;
}

.note-detail-file {
  margin: 0 auto 34px;
  text-align: center;
}

.note-detail-file img {
  width: 84%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.note-author-box {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 100px 0 0;
  padding: 30px 34px;
  border-top: 1px solid rgba(91, 113, 31, 0.24);
  border-bottom: 1px solid rgba(91, 113, 31, 0.24);
  background: rgba(247, 243, 237, 0.56);
}

.note-author-photo img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(221, 213, 206, 0.9);
}

.note-author-content h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.note-author-content p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.note-author-content p + p {
  margin-top: 4px;
}

.note-author-content a,
.note-author-links a {
  color: var(--green-dark);
  text-decoration: none;
}

.note-author-content a:hover,
.note-author-links a:hover {
  color: var(--green);
  text-decoration: none;
}

.note-author-content a {
  text-decoration: underline;
  text-decoration-color: rgba(91, 113, 31, 0.28);
  text-underline-offset: 6px;
}

.note-author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.note-author-links a {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
}

.note-author-links a span {
  text-decoration: underline;
  text-decoration-color: rgba(91, 113, 31, 0.28);
  text-underline-offset: 6px;
}

.note-author-links a:hover span {
  text-decoration: none;
}

.note-author-links a::after {
  content: "▶︎";
  display: inline-block;
  width: 5px;
  margin-left: 0.55em;
  color: var(--green-dark);
  font-size: 8px;
  line-height: 1;
  vertical-align: 0.08em;
  text-decoration: none;
}

.note-detail-back {
  margin: 52px 0 28px;
  text-align: center;
}

.note-detail-back a {
  display: inline-block;
  min-width: 180px;
  padding: 11px 24px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.note-detail-back a:hover {
  background: var(--green);
  border-color: var(--green);
}

.note-pager a,
.note-pager .current,
.note-pager .overPagerPattern {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
}

.note-pager a:hover,
.note-pager .current {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  padding: 34px 28px 24px;
  background: #f4f0ea;
  border: 1px solid #ddd2c4;
  border-radius: 6px;
  color: var(--text);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  background :rgba(62, 83, 42, 0.80);
  border: 1px solid rgba(62, 83, 42, 0.80);
  border-radius: 50%;
}

.contact-card-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.support-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px var(--gutter) 135px;
}

.support-intro {
  max-width: none;
  margin: 0 auto 54px;
  color: var(--text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  text-align: left;
}

.support-intro p {
  margin: 0;
}

.support-intro p + p {
  margin-top: 14px;
}

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

.support-service-card {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 24px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 210, 218, 0.78);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(60, 45, 35, 0.08);
  color: var(--text);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.support-service-card:hover,
.support-service-card:focus-visible {
  box-shadow: 0 14px 28px rgba(60, 45, 35, 0.13);
  transform: translateY(-2px);
}

.support-service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  object-fit: contain;
}

.support-service-label {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.support-service-card h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(19px, 1.3vw, 23px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.support-service-card > p:not(.support-service-label):not(.support-service-fit) {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.support-service-fit {
  width: 100%;
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(91, 113, 31, 0.16);
  color: var(--sub);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.support-service-card span {
  margin-top: auto;
  padding-top: 20px;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.support-service-card span::after {
  content: ">";
  margin-left: 0.75em;
  letter-spacing: 0;
}

.diagnosis-tool {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 24px var(--gutter) 130px;
}

.diagnosis-form,
.diagnosis-result {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 54px 50px;
  border: 1px solid #ddd2c4;
  border-radius: 6px;
  background: rgba(247, 243, 237, 0.82);
}

.diagnosis-progress {
  height: 6px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ded5;
}

.diagnosis-progress-bar {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--green-dark);
  transition: width 0.25s ease;
}

.diagnosis-count {
  margin: 0 0 24px;
  color: #8a8178;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: right;
}

.diagnosis-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.diagnosis-step.is-active {
  display: block;
}

.diagnosis-step legend {
  margin-bottom: 26px;
  padding: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.diagnosis-options {
  display: grid;
  gap: 14px;
}

.diagnosis-options label {
  display: block;
  cursor: pointer;
}

.diagnosis-options input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.diagnosis-options span {
  display: block;
  min-height: 54px;
  padding: 13px 18px;
  border: 1px solid #d4cabf;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.diagnosis-options input:checked + span {
  border-color: var(--green-dark);
  background: rgba(91, 113, 31, 0.11);
  color: var(--green-dark);
}

.diagnosis-options input:focus-visible + span {
  outline: 2px solid rgba(91, 113, 31, 0.42);
  outline-offset: 3px;
}

.diagnosis-message {
  min-height: 30px;
  margin: 20px 0 0;
  color: var(--wine);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.diagnosis-actions,
.diagnosis-result-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.diagnosis-button {
  display: inline-grid;
  place-items: center;
  min-width: 164px;
  min-height: 48px;
  padding: 10px 28px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.diagnosis-button:hover,
.diagnosis-button:focus-visible {
  background: var(--green);
  border-color: var(--green);
}

.diagnosis-button-sub {
  background: #fff;
  color: var(--green-dark);
}

.diagnosis-button-sub:hover,
.diagnosis-button-sub:focus-visible {
  background: rgba(91, 113, 31, 0.08);
  color: var(--green-dark);
}

.diagnosis-result {
  text-align: center;
}

.diagnosis-result-label {
  margin: 0 0 18px;
  color: #8a8178;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.diagnosis-result h2 {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.diagnosis-result p:not(.diagnosis-result-label) {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.contact-card-title {
  display: block;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.contact-card-text {
  display: block;
  min-height: 58px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.08em;
}

.contact-card-more {
  position: relative;
  display: block;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(91, 113, 31, 0.45);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.contact-card-more::after {
  content: "▶";
  position: absolute;
  right: 0;
  top: 25px;
  color: var(--green-dark);
  font-size: 8px;
  line-height: 1;
}

.contact-form-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px var(--gutter) 130px;
}

.contact-form-lead {
  max-width: 920px;
  margin: 0 auto 54px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.contact-form-lead p {
  margin: 0;
}

.contact-form {
  max-width: 920px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 45px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.required-label {
  display: inline-grid;
  place-items: center;
  min-width: 37px;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--wine);
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 16px;
  border: 1px solid #cfc8c1;
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.form-field select {
  appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, var(--sub) 50%), linear-gradient(135deg, var(--sub) 50%, transparent 50%);
  background-position: calc(100% - 24px) 50%, calc(100% - 17px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.form-field textarea {
  min-height: 230px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa49e;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: rgba(91, 113, 31, 0.68);
  box-shadow: inset 0 0 0 1px rgba(91, 113, 31, 0.68);
}

.field-error {
  margin: 8px 0 0;
  color: #9b4b3b;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.form-message {
  max-width: 920px;
  margin: 0 auto 36px;
  padding: 26px 30px;
  border: 1px solid rgba(212, 202, 191, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.form-message.is-error {
  border-color: rgba(170, 91, 70, 0.45);
  background: rgba(255, 249, 247, 0.92);
}

.form-message.is-success {
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.contact-complete .form-message {
  max-width: 820px;
}

.form-message h2 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.form-message p,
.form-message li {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.form-message p + p {
  margin-top: 8px;
}

.form-message ul {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 1.4em;
  list-style: disc;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy-note {
  max-width: 920px;
  margin: 8px 0 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.form-privacy-note a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.form-confirm-box {
  padding: 34px 38px;
  border: 1px solid rgba(212, 202, 191, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.form-confirm-lead {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.form-confirm-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.form-confirm-list div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(108, 98, 88, 0.14);
}

.form-confirm-list div:last-child {
  border-bottom: 1px solid rgba(108, 98, 88, 0.14);
}

.form-confirm-list dt,
.form-confirm-list dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.form-confirm-list dt {
  color: var(--sub);
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 48px;
  padding: 10px 28px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.form-button.is-secondary {
  background: #fff;
  color: var(--green-dark);
}

.form-button:hover,
.form-button:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.online-consult {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px var(--gutter) 130px;
}

.online-intro {
  max-width: var(--max);
  margin: 38px auto 58px;
}

.online-intro-image img {
  display: block;
  width: 90%;
  margin: 55px auto;
}

.online-intro-image {
  margin-top: 34px;
}

.online-intro-text h2 {
  position: relative;
  margin: 0 0 32px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.online-intro-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--green-dark) 0,
    var(--green-dark) 154px,
    rgba(91, 113, 31, 0.28) 154px,
    rgba(91, 113, 31, 0.12) 52%,
    rgba(255, 255, 255, 0) 100%
  );
}

.online-intro-text p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.online-intro-text p + p {
  margin-top: 12px;
}

.online-memo {
  max-width: var(--max);
  margin: 0 auto 52px;
  padding: 0;
}

.online-memo h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.online-memo p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.online-memo ul {
  margin: 0;
  padding: 0;
}

.online-memo li {
  position: relative;
  padding-left: 1.2em;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.online-memo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dark);
}

.online-memo a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reserve-calendar {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}

.reserve-calendar iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
}

.reserve-calendar .reserve-calendar-frame-sp {
  display: none;
}

/* footer */
.site-footer {
  background:#e8e0d6;
  flex-shrink: 0;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 250px;
  padding: 38px clamp(20px, 1.5vw, 55px) 34px;
  display: grid;
  grid-template-columns: 330px minmax(620px, 900px);
  justify-content: space-between;
  gap: clamp(32px, 3vw, 56px);
}

.footer-logo {
  width: 250px;
  margin: 0 0 25px 0px;
}

.footer-logo img {
  display: block;
  transform: translateX(-8px);
}

.footer-lead,
.copyright {
  margin: 0;
  font-size: 13px;
  color: var(--sub);
  line-height: 1.8;
}

.footer-nav {
  width: min(100%, 980px);
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(6, minmax(95px, 1fr));
  gap: clamp(10px, 1vw, 16px);
  padding-top: 10px;
}

.footer-service-group {
  grid-column: span 2;
}

.footer-nav h2 {
  margin: 0 0 11px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-nav li {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 2px;
  white-space: nowrap;
}

.footer-service-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 2px 18px;
}

.footer-nav a {
  position: relative;
  display: inline-block;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -1px;
  height: 1px;
  background:rgba(45, 37, 31, 0.44);
  opacity: 0;
}

.footer-nav a:hover {
  /* color: var(--green-dark); */
  text-decoration: none;
}

.footer-nav a:hover::after {
  opacity: 1;
}

.sns-list {
  position: absolute;
  right: 42px;
  bottom: 28px;
  display: flex;
  gap: 24px;
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-weight: bold;
}

/* responsive */
@media (max-width: 1100px) {
  .site-wrapper {
    padding-top: 92px;
  }

  .header-inner {
    width: 100%;
    min-height: 92px;
    padding: 0 15px 0 5px;
  }

  .site-logo {
    width: 220px;
  }

  .nav-item > a {
    padding: 10px 13px;
    font-size: 14px;
  }

  .hero-inner {
    grid-template-columns: minmax(330px, 1fr) minmax(360px, 0.88fr);
    gap: 18px;
    min-height: 560px;
    padding-left: 28px;
    padding-right: 28px;
    background-position: 45% center;
  }

  .hero-news-list li {
    grid-template-columns: 88px minmax(0, 1fr) 56px;
    gap: 12px;
    font-size: 14px;
  }

  .hero-news-list span {
    min-width: 56px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .hero-copy p br {
    display: none;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-button {
    min-height: 60px;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .hero-button::after {
    margin-left: 3px;
  }

  .home-panels {
    padding-top: 46px;
  }

  .home-hitoiro-panel {
    grid-template-columns: minmax(230px, 0.76fr) minmax(480px, 1.24fr);
    gap: 28px;
  }

  .season-color-layout {
    grid-template-columns: 330px minmax(0, 1fr);
  }

  .season-color-sidebar {
    padding-left: 28px;
    padding-right: 24px;
  }

  .season-position-panel,
  .season-detail-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .season-position-current,
  .season-detail-color {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(108, 98, 88, 0.16);
  }

  .season-detail-color {
    text-align: center;
  }

  .season-detail-chip {
    margin-left: auto;
    margin-right: auto;
  }

  .season-detail-color p:last-child {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .season-detail-micro .season-panel-kicker,
  .season-detail-micro h2,
  .season-detail-micro .season-detail-kana {
    text-align: center;
  }

  .hitoiro-summary {
    padding-bottom: 42px;
  }

  .hitoiro-summary h2 {
    margin-bottom: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 34px;
  }

  .footer-nav {
    width: 100%;
    justify-self: start;
  }
}

@media (max-width: 1280px) and (min-width: 861px) {
  .hero-inner {
    grid-template-columns: minmax(390px, 1fr) minmax(410px, 0.92fr);
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-button {
    min-height: 60px;
    padding: 12px 14px;
    font-size: 13px;
    letter-spacing: 0.035em;
  }

  .hero-button::after {
    margin-left: 2px;
  }

  .home-letter-banner {
    min-height: 0;
    padding: 30px clamp(28px, 4vw, 48px);
    grid-template-columns: clamp(170px, 19vw, 210px) minmax(0, 1fr);
    grid-template-areas:
      "image content"
      "image form";
    gap: 14px clamp(28px, 4vw, 52px);
  }

  .home-letter-image {
    position: static;
    grid-area: image;
    align-self: center;
    justify-self: center;
    width: min(100%, 210px);
  }

  .home-letter-content {
    grid-area: content;
    align-self: end;
    transform: translateY(-12px);
  }

  .home-letter-form {
    grid-area: form;
    align-self: start;
    transform: none;
  }

  .season-term-flow-list {
    --term-flow-gap: 14px;
    grid-template-columns: 1fr;
  }

  .season-term-flow-card {
    min-height: 0;
    padding: 18px;
    text-align: left;
  }

  .season-term-flow-card .season-color-now-badge {
    left: auto;
    right: 12px;
    top: 12px;
  }
}

@media (max-width: 860px) {
  .site-wrapper {
    width: 100%;
    padding-top: 60px;
  }

  .site-header {
    --mobile-header-height: 60px;
  }

  .header-inner {
    min-height: var(--mobile-header-height);
  }

  .site-logo {
    width: 140px;
    margin-left: 3px;
    margin-top: 1px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    align-content: center;
    position: relative;
    gap: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 2px;
    background: #3e532a;
    display: block;
    margin: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 10px));
  }

  .nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .nav-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 10px));
  }

  body.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .global-nav {
    --mobile-nav-level-1-bg: rgba(74, 130, 2, 1.0);
    --mobile-nav-level-1-color: rgba(255, 255, 255, 1.0);
    --mobile-nav-level-1-line: rgba(255, 255, 255, 0.5);
    --mobile-nav-level-1-indent: 14px;
    --mobile-nav-level-2-bg: rgba(74, 130, 2, 0.3);
    --mobile-nav-level-2-color: var(--text);
    --mobile-nav-level-2-line: rgba(91, 113, 31, 0.27);
    --mobile-nav-level-2-indent: 25px;
    --mobile-nav-level-3-bg: rgba(74, 130, 2, 0.1);
    --mobile-nav-level-3-color: var(--sub);
    --mobile-nav-level-3-line: rgba(91, 113, 31, 0.22);
    --mobile-nav-level-3-indent: 35px;
    position: absolute;
    left: 0;
    top: var(--mobile-header-height);
    margin-top: 0;
    width: 100%;
    max-height: calc(100vh - var(--mobile-header-height));
    overflow: auto;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid rgba(91, 113, 31, 0.33);
    display: none;
    height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      height 0.46s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease,
      transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-nav-open .global-nav {
    display: block;
    height: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: block;
    padding: 0px 0px 0px;
  }

  .nav-item {
    border-bottom: 0;
  }

  .nav-item > a,
  .sub-menu a {
    padding: 13px 44px 13px var(--mobile-nav-level-1-indent);
    border-bottom: 1px solid transparent;
  }

  .sub-menu a::after {
    content: none;
  }

  .nav-list > .nav-item > a,
  .nav-list > .nav-item.is-current > a {
    background-color: var(--mobile-nav-level-1-bg);
    border-bottom-color: var(--mobile-nav-level-1-line);
    color: var(--mobile-nav-level-1-color);
  }

  .nav-list > .nav-item > .sub-menu > li > a {
    background-color: var(--mobile-nav-level-2-bg);
    border-bottom-color: var(--mobile-nav-level-2-line);
    color: var(--mobile-nav-level-2-color);
    padding-left: var(--mobile-nav-level-2-indent);
  }

  .nav-list > .nav-item > .sub-menu > li > .third-menu > li > a {
    background-color: var(--mobile-nav-level-3-bg);
    border-bottom-color: var(--mobile-nav-level-3-line);
    color: var(--mobile-nav-level-3-color);
    padding-left: var(--mobile-nav-level-3-indent);
  }

  .submenu-toggle {
    display: block;
    position: absolute;
    right: 13px;
    top: 8px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .submenu-toggle::before,
  .submenu-toggle::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 17px;
    width: 14px;
    height: 1px;
    background: var(--green-dark);
  }

  .submenu-toggle::after {
    transform: rotate(90deg);
    transition: opacity 0.22s ease, transform 0.32s ease;
  }

  .nav-list > .nav-item > .submenu-toggle::before,
  .nav-list > .nav-item > .submenu-toggle::after {
    background: var(--base);
  }

  .has-child.is-open > .submenu-toggle::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0.2);
  }

  .sub-menu,
  .third-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 0px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    height: 0;
    overflow: hidden;
    transition:
      height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .has-child.is-open > .sub-menu {
    display: block;
    transform: translateY(0);
  }

  .sub-menu li {
    font-size: 14px;
    border-top: 0;
  }

  .hero-inner {
    isolation: isolate;
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 0 22px 46px;
    background: #fff;
  }

  .hero-inner::before {
    content: none;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .hero-copy h1 {
    position: relative;
    width: calc(100% + 44px);
    min-height: clamp(280px, 46vw, 380px);
    margin: 0 0 30px -22px;
    padding: 30px 22px;
    display: grid;
    place-items: center;
    background: url("../images/haikei.jpg") no-repeat center center / cover;
    font-size: clamp(26px, 4.4vw, 34px);
    line-height: 1.55;
    text-align: center;
    overflow: hidden;
  }

  .hero-copy h1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.46);
  }

  .hero-copy h1 span {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 22px 32px;
    white-space: nowrap;
    text-align: center;
  }

  .hero-copy h1 span::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -12px -24px;
    border-radius: 50%;
    background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.64) 42%,
      rgba(255, 255, 255, 0.28) 68%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: blur(4px);
  }

  .hero-copy p {
    display: block;
    inline-size: 100%;
    width: 100%;
    max-width: none;
    font-size: 15px;
    line-height: 2;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy p br {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
  }

  .hero-button {
    width: 100%;
    min-height: 58px;
    padding: 13px 30px;
    font-size: 16px;
  }

  .hero-news {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding: 26px 20px;
    border-radius: 12px;
  }

  .hero-news-head {
    margin-bottom: 22px;
  }

  .hero-news-list li {
    grid-template-columns: 86px minmax(0, 1fr) 52px;
    gap: 10px;
    font-size: 14px;
  }

  .hero-message {
    padding: 20px 18px;
  }

  .hero-message-scroll {
    height: 200px;
  }

  .home-panels {
    padding: 40px 0 72px;
  }

  .home-panels-inner {
    grid-template-columns: 1fr;
  }

  .home-hitoiro-panel {
    border-radius: 8px;
  }

  .home-hitoiro-panel {
    grid-template-columns: 1fr;
  }

  .home-support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-note-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-voice-works {
    grid-template-columns: 1fr;
  }

  .home-feature-card {
    min-height: 230px;
  }

  .home-letter-banner {
    min-height: 0;
    padding: 30px 24px;
    grid-template-columns: clamp(138px, 24vw, 176px) minmax(0, 1fr);
    grid-template-areas:
      "image content"
      "form form";
    gap: 18px 24px;
    align-items: center;
  }

  .home-letter-image {
    position: static;
    grid-area: image;
    justify-self: center;
    width: min(100%, 176px);
    transform: none;
  }

  .home-letter-content {
    grid-area: content;
    transform: translateY(-10px);
  }

  .home-letter-form {
    grid-area: form;
    justify-self: center;
    width: min(100%, 620px);
    transform: none;
  }

  .hitoiro-season-body {
    --hitoiro-season-space-x: 26px;
    width: 100%;
    padding: 34px var(--hitoiro-season-space-x) 0;
    grid-template-columns: 1fr;
  }

  .hitoiro-season-body::before {
    content: none;
  }

  .hitoiro-season-body > :nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .hitoiro-season-header {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hitoiro-season-header > div + div {
    border-left: 0;
    border-top: 1px solid var(--hitoiro-light, #d9eef3);
    padding-top: 24px;
    padding-left: 0;
  }

  .hitoiro-season-photo {
    width: calc(100% + (var(--hitoiro-season-space-x) * 2));
  }

  .preparing {
    min-height: 420px;
    padding-top: 56px;
  }

  .breadcrumb {
    display: none;
  }

  .page-title p {
    font-size: 16px;
    line-height: 1.9;
  }

  .contact-index,
  .contents-index {
    padding-top: 18px;
    padding-bottom: 78px;
  }

  .contents-feature-grid,
  .contents-feature-side {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contents-feature-main,
  .contents-feature-card {
    min-height: 0;
  }

  .contents-feature-card {
    padding: 32px 26px 28px;
  }

  .links-index {
    width: 100%;
    padding: 12px 22px 86px;
    gap: 22px;
  }

  .links-group {
    padding: 24px 20px;
  }

  .links-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .privacy-index {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .privacy-lead,
  .privacy-section,
  .privacy-signature {
    padding: 0;
  }

  .privacy-section,
  .privacy-signature {
    margin-top: 64px;
  }

  .privacy-section h2 {
    padding-left: 12px;
    font-size: 18px;
    line-height: 1.65;
  }

  .privacy-index p,
  .privacy-index li {
    font-size: 15px;
    line-height: 1.95;
  }

  .about-index {
    width: 100%;
    padding: 12px 22px 86px;
    gap: 62px;
  }

  .about-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .about-section h2::after {
    background: var(--green-dark);
  }

  .about-section h2 span {
    display: inline;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .about-section h2 span::after {
    content: none;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.95;
  }

  .about-text h3 {
    margin: 48px 0 16px;
    font-size: 19px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .about-text h3:first-child {
    margin-top: 34px;
  }

  .about-closing-message {
    margin-top: 24px;
    margin-bottom: 46px;
    padding-top: 0;
  }

  .about-closing-message::before {
    content: none;
  }

  .about-closing-message p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.95;
    letter-spacing: 0.06em;
  }

  .about-closing-message p:last-child {
    font-size: 16px;
  }

  .faq-index {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .faq-item {
    padding: 40px 0;
  }

  .faq-item h2 {
    font-size: 18px;
    line-height: 1.75;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 1.95;
  }

  .information-index {
    width: 100%;
    padding: 12px 22px 86px;
    gap: 62px;
  }

  .information-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .information-section h2::after {
    height: 5px;
    background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
  }

  .information-section h2 span::after {
    left: -10px;
    right: -10px;
    bottom: 0;
  }

  .information-section h2 span {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .operator-section h2 {
    margin-bottom: 40px;
  }

  .information-list div {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 31px 0;
    border-bottom: 0;
  }

  .information-list dt,
  .information-list dd {
    font-size: 15px;
    line-height: 1.85;
  }

  .information-list dt {
    padding-left: 0;
    padding: 7px 12px;
    background: rgba(91, 113, 31, 0.12);
    border-radius: 5px;
    color: var(--green-dark);
  }

  .information-list dd {
    padding-left: 12px;
  }

  .operator-profile {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
    padding: 26px 22px;
  }

  .operator-photo {
    text-align: center;
  }

  .operator-photo img {
    width: 150px;
  }

  .operator-message p {
    font-size: 15px;
    line-height: 1.95;
  }

  .letters-index {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .letters-intro {
    font-size: 15px;
    line-height: 1.95;
  }

  .letters-intro-heading {
    margin-bottom: 26px;
  }

  .letters-subscribe,
  .letters-backnumber {
    margin-top: 54px;
  }

  .letters-backnumber {
    margin-top: 96px;
  }

  .letters-intro h2,
  .letters-subscribe h2,
  .letters-backnumber h2 {
    margin-bottom: 24px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 19px;
    line-height: 1.75;
    letter-spacing: 0.06em;
  }

  .letters-intro h2::after,
  .letters-subscribe h2::after,
  .letters-backnumber h2::after {
    height: 5px;
    background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
  }

  .letters-intro h2 span,
  .letters-subscribe h2 span,
  .letters-backnumber h2 span {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .letters-intro h2 span::after,
  .letters-subscribe h2 span::after,
  .letters-backnumber h2 span::after {
    content: none;
  }

  .letters-intro-heading h2 {
    margin-bottom: 0;
  }

  .letters-letter-types {
    margin-top: 24px;
    padding: 20px 18px;
  }

  .letters-letter-types .season-color-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    min-height: 0;
    padding: 26px 0;
    text-align: center;
  }

  .letters-letter-types .season-color-banner:first-child {
    padding-top: 12px;
  }

  .letters-letter-types .season-color-banner:last-child {
    padding-bottom: 12px;
  }

  .letters-letter-types .season-color-banner-image {
    width: 82px;
  }

  .letters-letter-types .season-color-banner-image img {
    width: 64px;
  }

  .letters-letter-types .season-color-banner-content {
    justify-items: center;
  }

  .letters-letter-types .season-color-banner-title {
    font-size: 18px;
    text-align: center;
  }

  .letters-letter-types .season-color-banner-text {
    font-size: 13px;
    text-align: left;
  }

  .letters-subscribe h2 {
    margin-bottom: 42px;
  }

  .letters-form {
    padding: 24px 20px;
  }

  .letters-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .letters-form button {
    width: 100%;
  }

  .mailmagazine-result {
    width: calc(100% - 36px);
    margin: 70px auto 90px;
  }

  .mailmagazine-result-card {
    padding: 24px 20px;
  }

  .mailmagazine-result-actions {
    display: grid;
  }

  .mailmagazine-result-actions a {
    width: 100%;
  }

  .letters-list a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 10px 20px 18px;
  }

  .letters-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .letters-list time {
    font-size: 14px;
  }

  .letters-list span {
    font-size: 15px;
    line-height: 1.7;
  }

  .letters-empty {
    padding: 22px 10px;
    font-size: 15px;
  }

  .works-index {
    width: 100%;
    padding: 14px 18px 86px;
  }

  .works-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }

  .works-name {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }

  .price-index {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .price-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .price-section h2 span {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .price-section h2 span::after {
    left: -10px;
    right: -10px;
  }

  .price-lead {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.95;
  }

  .price-plan-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-plan-card {
    min-height: 0;
    padding: 30px 24px 26px;
  }

  .price-plan-card h3 {
    font-size: 19px;
  }

  .price-plan-price {
    min-height: 56px;
    font-size: 18px;
  }

  .price-plan-text {
    font-size: 14px;
    line-height: 1.85;
  }

  .price-diagnosis {
    margin-top: 54px;
    padding: 28px 22px;
  }

  .price-diagnosis p {
    font-size: 15px;
    line-height: 1.85;
  }

  .price-diagnosis a {
    width: 100%;
    min-width: 0;
  }

  .service-guide {
    width: 100%;
    padding: 12px 22px 86px;
    gap: 62px;
  }

  .service-guide-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .service-guide-section h2 span {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .service-guide-section h2 span::after {
    left: -10px;
    right: -10px;
  }

  .service-guide-text {
    font-size: 15px;
    line-height: 1.95;
  }

  .service-guide-links {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding: 20px;
  }

  .service-guide-links a {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 14px;
  }

  .ai-editor-page {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .ai-editor-hero {
    margin-bottom: 28px;
  }

  .ai-editor-nav {
    display: grid;
    gap: 8px;
    margin-bottom: 54px;
    padding: 18px;
  }

  .ai-editor-nav a {
    justify-content: center;
    min-height: 40px;
    font-size: 13px;
  }

  .ai-editor-section + .ai-editor-section {
    margin-top: 62px;
  }

  .ai-editor-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .ai-editor-section h2 span {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .ai-editor-section h2 span::after {
    left: -10px;
    right: -10px;
  }

  .ai-editor-section h3 {
    margin-top: 34px;
    font-size: 19px;
  }

  .ai-editor-text,
  .ai-editor-case,
  .ai-editor-note,
  .ai-editor-faq {
    font-size: 15px;
    line-height: 1.95;
  }

  .ai-editor-media,
  .ai-editor-media-left,
  .ai-editor-case,
  .ai-editor-recommend {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ai-editor-media-right img {
    order: 0;
  }

  .ai-editor-media img {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .ai-editor-mode-media > img {
    width: 100%;
  }

  .ai-editor-media.ai-editor-why-media > img {
    display: block;
    float: none;
    width: 77%;
    margin: 0 auto 22px;
  }

  .ai-editor-case > div,
  .ai-editor-note {
    padding: 24px 20px;
  }

  .ai-editor-note-label {
    display: table;
    margin-bottom: 14px;
  }

  .ai-editor-note-heading {
    display: block;
    margin-bottom: 18px;
  }

  .ai-editor-note-heading .ai-editor-note-label {
    margin-bottom: 8px;
  }

  .ai-editor-note h3 {
    display: block;
    margin: 0 0 18px;
    padding-top: 8px;
    line-height: 1.45;
  }

  .ai-editor-note-heading h3 {
    margin: 0;
    padding-top: 0;
  }

  .ai-editor-note > img {
    float: none;
    width: min(100%, 260px);
    margin: 0 auto 20px;
    display: block;
  }

  .ai-editor-recommend > img {
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .ai-editor-faq summary {
    padding: 16px 18px;
    font-size: 16px;
  }

  .ai-editor-faq details > p,
  .ai-editor-faq details > ol,
  .ai-editor-faq details > h3 {
    margin-left: 18px;
    margin-right: 18px;
  }

  .ai-editor-plan-note {
    padding: 14px 16px;
  }

  .flow-index {
    width: 100%;
    padding: 14px 18px 86px;
  }

  .flow-list {
    gap: 0;
  }

  .flow-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 39px 4px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .flow-thumb {
    border-radius: 6px;
  }

  .flow-body h2 {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .flow-body p {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-card-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .note-index {
    width: 100%;
    padding-top: 12px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 86px;
  }

  .note-rss-link {
    margin-top: 14px;
    text-align: center;
  }

  .note-detail {
    width: 100%;
    padding: 38px 22px 86px;
  }

  .note-detail-header {
    margin-bottom: 44px;
    padding-bottom: 0;
  }

  .note-detail-header h1 {
    font-size: 24px;
    line-height: 1.55;
  }

  .note-detail-body {
    font-size: 15px;
    line-height: 1.95;
  }

  .note-detail-file img {
    width: 100%;
  }

  .note-author-box {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 68px;
    padding: 26px 22px;
    text-align: center;
  }

  .note-author-photo img {
    width: 108px;
  }

  .note-author-content h2 {
    margin-bottom: 16px;
    font-size: 19px;
  }

  .note-author-content p {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }

  .note-author-links {
    justify-content: center;
    margin-top: 16px;
  }

  .note-detail-back a {
    width: 100%;
    min-width: 0;
  }

  .note-list {
    gap: 0;
  }

  .note-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .note-item:hover,
  .note-item:focus-within {
    background: transparent;
    border-color: var(--line);
    transform: none;
  }

  .note-item-link {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-areas:
      "meta meta"
      "title title"
      "thumb excerpt";
    gap: 9px 14px;
    padding: 20px 4px;
  }

  .note-item:not(.has-thumb) .note-item-link {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "title"
      "excerpt";
  }

  .note-item-body {
    display: contents;
  }

  .note-meta {
    grid-area: meta;
    margin-bottom: 0;
  }

  .note-thumb {
    grid-area: thumb;
    align-self: start;
  }

  .note-title {
    grid-area: title;
    font-size: 19px;
  }

  .note-excerpt {
    grid-area: excerpt;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-card {
    min-height: 0;
    padding: 30px 24px 22px;
  }

  .contact-card-title {
    font-size: 19px;
  }

  .contact-card-text {
    min-height: 0;
  }

  .diagnosis-tool {
    padding-top: 18px;
    padding-bottom: 86px;
  }

  .diagnosis-form,
  .diagnosis-result {
    padding: 30px 22px 34px;
  }

  .diagnosis-step legend {
    margin-bottom: 22px;
    font-size: 19px;
  }

  .diagnosis-options span {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .diagnosis-actions,
  .diagnosis-result-actions {
    flex-direction: column-reverse;
    gap: 14px;
  }

  .diagnosis-button {
    width: 100%;
    min-width: 0;
  }

  .diagnosis-result h2 {
    font-size: 25px;
  }

  .contact-form-section {
    padding-top: 12px;
    padding-bottom: 86px;
  }

  .contact-form-lead {
    margin-bottom: 42px;
    font-size: 16px;
  }

  .form-row {
    display: block;
    margin-bottom: 28px;
  }

  .form-label {
    min-height: 0;
    margin-bottom: 10px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 43px;
    font-size: 16px;
  }

  .form-field textarea {
    min-height: 190px;
  }

  .form-message {
    padding: 22px 20px;
    margin-bottom: 30px;
  }

  .form-confirm-box {
    padding: 26px 20px;
  }

  .form-confirm-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .form-actions {
    gap: 16px;
    margin-top: 42px;
  }

  .form-button {
    min-width: 128px;
    min-height: 46px;
    padding: 9px 22px;
    font-size: 16px;
  }

  .online-consult {
    padding-top: 12px;
    padding-bottom: 86px;
  }

  .online-intro {
    margin-top: 24px;
    margin-bottom: 46px;
  }

  .online-intro-image {
    margin-top: 28px;
  }

  .online-intro-text h2 {
    margin-bottom: 28px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .online-intro-text h2::after {
    height: 5px;
    background: linear-gradient(
      90deg,
      var(--green-dark) 0,
      var(--green-dark) 128px,
      rgba(91, 113, 31, 0.28) 128px,
      rgba(91, 113, 31, 0.12) 56%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .online-intro-text p {
    font-size: 16px;
    line-height: 1.9;
  }

  .online-memo {
    margin-bottom: 42px;
    padding: 0;
  }

  .online-memo h2 {
    font-size: 16px;
  }

  .online-memo p {
    font-size: 16px;
    line-height: 1.9;
  }

  .online-memo li {
    font-size: 16px;
    line-height: 1.9;
  }

  .reserve-calendar iframe {
    height: 680px;
  }

  .reserve-calendar .reserve-calendar-frame-pc {
    display: none;
  }

  .reserve-calendar .reserve-calendar-frame-sp {
    display: block;
  }

  .footer-inner {
    padding: 34px 28px 42px;
  }

  .footer-logo {
    margin-bottom: 26px;
    margin-left: 0px;
  }

  .footer-lead-line {
    display: block;
  }

  .footer-lead-separator {
    display: none;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    display: none;
  }

  .sns-list {
    position: static;
    margin-top: 18px;
  }

  .web-edit-page {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .web-edit-hero {
    margin: 24px 0 28px;
  }

  .web-edit-hero img {
    width: 100%;
  }

  .web-edit-nav {
    display: grid;
    gap: 8px;
    margin-bottom: 54px;
    padding: 18px;
  }

  .web-edit-nav a {
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
    text-align: center;
  }

  .web-edit-section + .web-edit-section {
    margin-top: 58px;
  }

  .web-edit-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .web-edit-section h2::after {
    height: 5px;
    background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
  }

  .web-edit-section h2 span {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .web-edit-section h2 span::after {
    left: -10px;
    right: -10px;
  }

  .web-edit-section h3 {
    font-size: 19px;
  }

  .web-edit-text,
  .web-edit-lead,
  .web-edit-note,
  .web-edit-case,
  .web-edit-faq {
    font-size: 15px;
    line-height: 1.95;
  }

  .web-edit-media,
  .web-edit-media-left,
  .web-edit-case-grid,
  .web-edit-case-images,
  .web-edit-recommend {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .web-edit-media-right img {
    order: 0;
  }

  .web-edit-media img {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .web-edit-note,
  .web-edit-case,
  .web-edit-faq {
    padding: 24px 20px;
  }

  .web-edit-note-heading {
    display: block;
    margin-bottom: 18px;
  }

  .web-edit-note-heading .web-edit-note-label {
    display: table;
    margin-bottom: 8px;
  }

  .web-edit-note-heading h3 {
    margin: 0;
    padding-top: 0;
    line-height: 1.45;
  }

  .web-edit-recommend > img,
  .web-edit-recommend h3,
  .web-edit-recommend ul,
  .web-edit-recommend .web-edit-note-label {
    grid-column: auto;
    grid-row: auto;
  }

  .web-edit-recommend > img {
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .web-edit-faq summary {
    padding: 16px 18px;
    font-size: 16px;
  }

  .web-edit-faq details > p,
  .web-edit-faq details > ol,
  .web-edit-faq details > h3 {
    margin-left: 18px;
    margin-right: 18px;
  }

  .structured-page {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .structured-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0 28px;
  }

  .structured-nav {
    display: grid;
    gap: 8px;
    margin-bottom: 54px;
    padding: 18px;
  }

  .structured-nav a {
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
    text-align: center;
  }

  .structured-section + .structured-section {
    margin-top: 58px;
  }

  .structured-section h2 {
    margin: 34px 0 28px;
    padding-left: 10px;
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.55;
  }

  .structured-section h2 span {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }

  .structured-section h2 span::after {
    left: -10px;
    right: -10px;
  }

  .structured-section h3 {
    font-size: 19px;
  }

  .structured-text,
  .structured-note,
  .structured-code,
  .structured-faq {
    font-size: 15px;
    line-height: 1.95;
  }

  .structured-media,
  .structured-media-left,
  .structured-rich-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .structured-media-right img,
  .structured-media-right a {
    order: 0;
  }

  .structured-media img {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .structured-media > a {
    display: block;
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .structured-media > a img {
    width: 100%;
  }

  .structured-ai-media-left > a,
  .structured-ai-media-right > a {
    float: none;
    width: min(100%, 280px);
    margin: 0 auto 22px;
  }

  .structured-note,
  .structured-code,
  .structured-faq {
    padding: 24px 20px;
  }

  .structured-note-heading {
    display: block;
    margin-bottom: 18px;
  }

  .structured-note-heading .structured-note-label {
    display: table;
    margin-bottom: 8px;
  }

  .structured-note-heading h3 {
    margin: 0;
    line-height: 1.45;
  }

  .structured-column > img {
    float: none;
    display: block;
    width: min(100%, 260px);
    margin: 0 auto 20px;
  }

  .structured-faq summary {
    padding: 16px 18px;
    font-size: 16px;
  }

  .structured-faq details > p,
  .structured-faq details > ol,
  .structured-faq details > h3 {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 860px) {
  .web-app-page {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .web-app-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
    margin: 18px 0 46px;
    padding: 12px 0 6px;
    transform: none;
  }

  .web-app-hero-copy {
    padding-top: 0;
  }

  .web-app-hero-title {
    margin-bottom: 18px;
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 0.12em;
  }

  .web-app-hero-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(22px, 5.78vw, 34px);
    line-height: 1.7;
  }

  .web-app-hero-copy p {
    font-size: 15px;
    line-height: 1.9;
  }

  .web-app-hero-icons {
    gap: 12px;
    margin-top: 38px;
  }

  .web-app-hero-icons li {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .web-app-hero-icons img {
    width: clamp(58px, 19vw, 76px);
  }

  .web-app-hero-visual {
    order: 2;
  }

  .web-app-hero-visual img {
    width: min(100%, 560px);
  }

  .web-app-nav {
    grid-template-columns: 1fr;
    margin-bottom: 68px;
  }

  .web-app-section + .web-app-section {
    margin-top: 78px;
  }

  .web-app-section > h2 {
    margin-bottom: 32px;
    font-size: 27px;
    padding-bottom: 19px;
    line-height: 1.38;
  }

  .web-app-section > h2 span {
    margin-bottom: 9px;
    font-size: 0.5em;
  }

  .web-app-card-grid,
  .web-app-points {
    grid-template-columns: 1fr;
  }

  .web-app-card-grid article,
  .web-app-points article {
    padding: 25px;
  }

  .web-app-note {
    text-align: left;
  }

  .web-app-flow li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .web-app-flow li > span {
    width: 44px;
    height: 44px;
  }

  .web-app-contact {
    margin-top: 82px;
    padding: 44px 24px;
  }

  .web-app-contact a {
    min-width: 0;
    width: 100%;
  }

  .season-color-layout {
    display: block;
    width: 100%;
    overflow-x: hidden;
  }

  .season-color-sidebar {
    display: none;
  }

  .season-color-main {
    width: 100%;
    min-width: 0;
    padding-bottom: 86px;
  }

  .season-color-title {
    padding-bottom: 26px;
  }

  .season-color-mobile-calendar {
    display: block;
    width: calc(100% - 44px);
    margin: 0 auto 34px;
    border: 1px solid rgba(212, 202, 191, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
  }

  .season-color-mobile-calendar summary {
    min-height: 52px;
    padding: 14px 18px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.06em;
    cursor: pointer;
  }

  .season-color-mobile-calendar .season-color-calendar {
    height: auto;
    padding: 0 18px 20px;
  }

  .season-color-mobile-calendar .season-color-calendar-scroll {
    max-height: min(62vh, 560px);
  }

  .season-color-mobile-calendar .season-color-calendar-title {
    display: none;
  }

  .season-color-mobile-calendar .season-color-calendar-year {
    text-align: left;
  }

  .season-color-calendar li {
    grid-template-columns: 58px 48px minmax(0, 1fr);
    padding-left: 34px;
    font-size: 13px;
  }

  .season-color-calendar .season-color-now-badge {
    left: 0;
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .season-color-current,
  .season-color-concept,
  .season-color-empty {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .season-color-current {
    gap: 34px;
  }

  .season-position-panel,
  .season-detail-panel {
    padding: 26px 20px;
  }

  .season-detail-color {
    text-align: center;
  }

  .season-detail-chip {
    margin-left: auto;
    margin-right: auto;
  }

  .season-detail-color p:last-child {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .season-detail-micro .season-panel-kicker,
  .season-detail-micro h2,
  .season-detail-micro .season-detail-kana {
    text-align: center;
  }

  .season-term-flow-list {
    --term-flow-gap: 14px;
    grid-template-columns: 1fr;
    gap: var(--term-flow-gap);
  }

  .season-term-flow-card {
    min-height: 0;
    padding: 18px 16px;
    text-align: left;
  }

  .season-term-flow-card .season-color-now-badge {
    left: auto;
    right: 12px;
    top: 12px;
  }

  .season-detail-micro img {
    aspect-ratio: 4 / 3;
  }

  .season-color-concept {
    margin-top: 58px;
  }

  .season-color-concept h2 {
    padding: 0 0 14px 10px;
    font-size: 20px;
    line-height: 1.55;
  }

  .season-color-concept h2 span {
    margin-bottom: -14px;
    padding-bottom: 14px;
  }

  .season-color-concept-heading {
    margin-bottom: 26px;
  }

  .season-color-concept .season-color-concept-subtitle {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .season-color-concept-heading + p,
  .season-color-concept-heading ~ p {
    font-size: 16px;
    line-height: 2;
  }

  .season-color-banners {
    margin-top: 36px;
    padding: 16px 26px;
  }

  .season-color-banner {
    grid-template-columns: 104px minmax(0, 1fr) 34px;
    gap: 22px;
    min-height: 116px;
    padding: 16px 0;
  }

  .season-color-banner-image {
    width: 96px;
  }

  .season-color-banner-image img {
    width: 74px;
  }

  .season-color-banner-title {
    font-size: 19px;
  }

  .season-color-banner-text {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 0 10px 0 6px;
  }

  .site-logo {
    width: 120px;
  }

  .contents-index {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contents-feature-card {
    padding: 30px 22px 26px;
  }

  .contents-feature-card::before {
    left: -70px;
    top: -76px;
    width: 170px;
    opacity: 1;
  }

  .contents-feature-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .contents-feature-title,
  .contents-feature-side .contents-feature-title {
    font-size: 22px;
  }

  .contents-feature-text,
  .contents-feature-main .contents-feature-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .contents-feature-more {
    margin-top: 26px;
  }

  .hero-inner {
    gap: 28px;
    padding: 0 16px 34px;
  }

  .hero-inner::before {
    content: none;
  }

  .hero-copy h1 {
    position: relative;
    width: calc(100% + 32px);
    min-height: clamp(205px, 56vw, 245px);
    margin: 0 0 28px -16px;
    padding: 28px 16px;
    display: grid;
    place-items: center;
    background: url("../images/haikei.jpg") no-repeat 46% 44% / cover;
    font-size: clamp(21px, 5.9vw, 25px);
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
  }

  .hero-copy h1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.46);
  }

  .hero-copy h1 span {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 18px 8px;
    white-space: nowrap;
    text-align: center;
  }

  .hero-copy p {
    display: block;
    inline-size: 100%;
    width: 100%;
    max-width: none;
    font-size: 15px;
    line-height: 1.9;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: start;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-button {
    width: 100%;
    min-height: 54px;
    min-width: 0;
    padding: 12px 18px;
    font-size: clamp(13px, 4vw, 15px);
    letter-spacing: 0.08em;
  }

  .hero-news {
    gap: 22px;
    padding: 23px 16px;
  }

  .hero-news-head {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
  }

  .hero-news-head h2 {
    font-size: 22px;
  }

  .hero-news-head a {
    justify-self: start;
    font-size: 13px;
  }

  .hero-news-list {
    gap: 14px;
  }

  .hero-news-list li {
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: start;
    padding: 12px 10px;
    font-size: 13px;
  }

  .hero-news-list time,
  .hero-news-list a {
    grid-column: 1;
  }

  .hero-news-list a {
    width: 100%;
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-news-list span {
    grid-column: 1;
    justify-self: start;
    min-width: 42px;
    font-size: 10px;
  }

  .hero-message h2 {
    padding-left: 25px;
    font-size: 14px;
  }

  .hero-message h2::after {
    left: 144px;
  }

  .hero-message h3 {
    font-size: 16px;
  }

  .hero-message p {
    font-size: 13px;
    line-height: 1.8;
    word-break: break-all;
  }

  .home-panels {
    padding: 32px 0 56px;
  }

  .home-note-panel,
  .home-hitoiro-panel {
    padding: 24px 18px;
  }

  .season-color-layout {
    display: block;
    width: 100%;
  }

  .season-color-sidebar {
    display: none;
  }

  .season-color-main {
    padding-bottom: 86px;
  }

  .season-color-title {
    padding-bottom: 26px;
  }

  .season-color-mobile-calendar {
    display: block;
    width: calc(100% - 44px);
    margin: 0 auto 34px;
    border: 1px solid rgba(212, 202, 191, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
  }

  .season-color-mobile-calendar summary {
    min-height: 52px;
    padding: 14px 18px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.06em;
    cursor: pointer;
  }

  .season-color-mobile-calendar .season-color-calendar {
    height: auto;
    padding: 0 18px 20px;
  }

  .season-color-mobile-calendar .season-color-calendar-scroll {
    max-height: min(62vh, 560px);
  }

  .season-color-mobile-calendar .season-color-calendar-title {
    display: none;
  }

  .season-color-mobile-calendar .season-color-calendar-year {
    text-align: left;
  }

  .season-color-calendar li {
    grid-template-columns: 58px 48px minmax(0, 1fr);
    padding-left: 34px;
    font-size: 13px;
  }

  .season-color-calendar .season-color-now-badge {
    left: 0;
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .season-color-current,
  .season-color-concept,
  .season-color-empty {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .season-color-current {
    gap: 34px;
  }

  .season-position-panel,
  .season-detail-panel {
    padding: 26px 20px;
  }

  .season-detail-color {
    text-align: center;
  }

  .season-detail-chip {
    margin-left: auto;
    margin-right: auto;
  }

  .season-detail-color p:last-child {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .season-detail-micro .season-panel-kicker,
  .season-detail-micro h2,
  .season-detail-micro .season-detail-kana {
    text-align: center;
  }

  .season-term-flow-list {
    --term-flow-gap: 14px;
    grid-template-columns: 1fr;
    gap: var(--term-flow-gap);
  }

  .season-term-flow-card {
    min-height: 0;
    padding: 18px 16px;
    text-align: left;
  }

  .season-term-flow-card.is-current {
    min-height: 0;
  }

  .season-term-flow-card .season-color-now-badge {
    left: auto;
    right: 12px;
    top: 12px;
  }

  .season-detail-micro img {
    aspect-ratio: 4 / 3;
  }

  .season-color-concept {
    margin-top: 58px;
  }

  .season-color-concept h2 {
    padding: 0 0 14px 10px;
    font-size: 20px;
    line-height: 1.55;
  }

  .season-color-concept h2 span {
    margin-bottom: -14px;
    padding-bottom: 14px;
  }

  .season-color-concept-heading {
    margin-bottom: 26px;
  }

  .season-color-concept .season-color-concept-subtitle {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .season-color-concept-heading + p,
  .season-color-concept-heading ~ p {
    font-size: 16px;
    line-height: 2;
  }

  .season-color-banners {
    margin-top: 32px;
    padding: 12px 18px;
  }

  .season-color-banner {
    grid-template-columns: 76px minmax(0, 1fr) 22px;
    justify-items: stretch;
    gap: 14px;
    min-height: 98px;
    padding: 14px 0;
    text-align: left;
  }

  .season-color-banner-image {
    width: 68px;
  }

  .season-color-banner-image img {
    width: 54px;
  }

  .season-color-banner-title {
    font-size: 18px;
  }

  .season-color-banner-text {
    margin-top: 6px;
    font-size: 13px;
  }

  .season-color-banner-link {
    justify-self: center;
    font-size: 26px;
  }

  .home-note-panel {
    gap: 22px;
  }

  .home-panel-head {
    display: grid;
    gap: 6px;
    margin-bottom: 22px;
  }

  .home-panel-head h2,
  .hitoiro-summary h2 {
    font-size: 26px;
    line-height: 1.45;
  }

  .home-panel-head a {
    justify-self: start;
    font-size: 13px;
  }

  .home-note-list {
    gap: 0;
  }

  .home-note-list a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .home-note-list time {
    font-size: 13px;
  }

  .home-note-list span {
    font-size: 15px;
    line-height: 1.7;
  }

  .hitoiro-color-chip {
    width: 132px;
  }

  .hitoiro-color-text,
  .hitoiro-season-text {
    font-size: 14px;
    line-height: 1.95;
  }

  .hitoiro-season-body {
    --hitoiro-season-space-x: 20px;
    width: 100%;
    padding: 26px var(--hitoiro-season-space-x) 0;
  }

  .hitoiro-season-photo {
    width: calc(100% + (var(--hitoiro-season-space-x) * 2));
    height: 250px;
  }

  .hitoiro-season-meta {
    font-size: 13px;
  }

  .hitoiro-season-term {
    font-size: 28px;
  }

  .hitoiro-season-term-kana {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .hitoiro-season-body h3 {
    font-size: 32px;
  }

  .hitoiro-season-kana {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .home-support-panel {
    padding-top: 10px;
  }

  .home-support-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-page {
    width: 100%;
    padding: 12px 22px 86px;
  }

  .support-intro {
    margin-bottom: 42px;
    font-size: 15px;
    line-height: 1.95;
    text-align: left;
  }

  .support-service-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-service-card {
    min-height: 0;
    padding: 26px 20px 24px;
  }

  .support-service-card img {
    width: 64px;
    height: 64px;
  }

  .home-support-card {
    min-height: 0;
    padding: 24px 18px 22px;
  }

  .home-support-card img {
    width: 64px;
    height: 64px;
  }

  .home-feature-card {
    min-height: 0;
    padding: 26px 20px 24px;
    display: grid;
    grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1.2fr);
    grid-template-areas:
      "title title"
      "image text"
      "button button";
    gap: 20px 18px;
    align-items: center;
  }

  .home-feature-card > img {
    position: static;
    grid-area: image;
    align-self: center;
    justify-self: center;
    max-width: 100%;
    transform: none;
  }

  .home-feature-voice > img {
    width: min(100%, 112px);
  }

  .home-feature-works > img {
    width: min(100%, 180px);
  }

  .home-feature-content {
    display: contents;
  }

  .home-feature-voice .home-feature-content,
  .home-feature-works .home-feature-content {
    margin-left: 0;
  }

  .home-feature-content h2 {
    grid-area: title;
    margin: 0;
    font-size: 26px;
    text-align: center;
    justify-self: center;
  }

  .home-feature-content p {
    grid-area: text;
    align-self: center;
    font-size: 14px;
    line-height: 1.9;
  }

  .home-feature-content span {
    grid-area: button;
    justify-self: center;
    min-width: 126px;
    min-height: 40px;
    margin-top: 0;
  }

  .home-letter-section {
    padding: 18px 22px 0;
  }

  .home-letter-banner {
    padding: 28px 22px 52px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content"
      "form";
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .home-letter-image {
    position: static;
    grid-area: image;
    width: 166px;
    transform: none;
  }

  .home-letter-content {
    grid-area: content;
    padding: 10px 0 8px;
    transform: none;
  }

  .home-letter-content h2 {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .home-letter-form {
    grid-area: form;
    justify-self: center;
    width: min(100%, 360px);
    transform: none;
  }

  .home-letter-entry {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-letter-entry label {
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(60, 45, 35, 0.06);
  }

  .home-letter-entry:focus-within {
    box-shadow: none;
  }

  .home-letter-entry label:focus-within {
    box-shadow:
      0 0 0 2px rgba(91, 113, 31, 0.18),
      0 8px 18px rgba(60, 45, 35, 0.06);
  }

  .home-letter-entry:has(input:-webkit-autofill) {
    background: transparent;
  }

  .home-letter-entry label:has(input:-webkit-autofill) {
    background: #e8f0fe;
  }

  .home-letter-entry input {
    min-height: 46px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .home-letter-entry button {
    display: block;
    justify-self: center;
    width: 170px;
    min-height: 46px;
    padding: 8px 18px;
    font-size: 15px;
  }

  .sp-only {
    display: inline;
  }

  .contact-form-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-form-lead {
    line-height: 1.9;
  }

  .form-actions {
    align-items: center;
  }

  .form-button {
    min-width: 112px;
  }

  .online-consult {
    padding-left: 22px;
    padding-right: 22px;
  }

  .reserve-calendar iframe {
    height: 620px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-season-concept {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-season-banners {
    width: 100%;
    margin: -46px 0 0;
  }
}

@media (max-width: 860px) {
  .about-section h2::after,
  .information-section h2::after,
  .letters-intro h2::after,
  .letters-subscribe h2::after,
  .letters-backnumber h2::after,
  .season-color-concept h2::after,
  .price-section h2::after,
  .service-guide-section h2::after,
  .ai-editor-section h2::after,
  .web-edit-section h2::after,
  .structured-section h2::after,
  .online-intro-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(91, 113, 31, 0.16) 0, rgba(91, 113, 31, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
  }

  .about-section h2 span,
  .information-section h2 span,
  .letters-intro h2 span,
  .letters-subscribe h2 span,
  .letters-backnumber h2 span,
  .season-color-concept h2 span,
  .price-section h2 span,
  .service-guide-section h2 span,
  .ai-editor-section h2 span,
  .web-edit-section h2 span,
  .structured-section h2 span {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .about-section h2 span::after,
  .information-section h2 span::after,
  .letters-intro h2 span::after,
  .letters-subscribe h2 span::after,
  .letters-backnumber h2 span::after,
  .season-color-concept h2 span::after,
  .price-section h2 span::after,
  .service-guide-section h2 span::after,
  .ai-editor-section h2 span::after,
  .web-edit-section h2 span::after,
  .structured-section h2 span::after {
    content: none;
  }
}

.about-index > .about-season-concept {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-index > .about-season-concept > .season-color-concept-heading {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 26px;
  padding: 26px 34px;
  background-color: #ebf1ef;
}

.about-index > .about-season-concept h3 {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-align: center;
}

.about-index > .about-season-concept h3::after,
.about-index > .about-season-concept h3 span::after {
  content: none;
}

.about-index > .about-season-concept h3 span {
  display: inline;
  margin: 0;
  padding: 0;
}

.about-index > .about-season-concept > p {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 860px) {
  .about-index > .about-season-concept > .season-color-concept-heading {
    margin-bottom: 22px;
    padding: 22px 20px;
  }

  .about-index > .about-season-concept h3 {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: 0.1em;
  }
}

/* Detail page typography baseline */
.about-section h2,
.information-section h2,
.letters-intro h2,
.letters-subscribe h2,
.letters-backnumber h2,
.season-color-concept h2,
.price-section h2,
.service-guide-section h2,
.ai-editor-section h2,
.web-edit-section h2,
.structured-section h2,
.web-app-section > h2,
.online-intro-text h2,
.privacy-section h2,
.links-group h2,
.flow-body h2 {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.6;
}

.about-text h3,
.about-index > .about-season-concept h3,
.price-plan-card h3,
.ai-editor-section h3,
.web-edit-section h3,
.structured-section h3,
.web-app-card-grid h3,
.web-app-points h3,
.web-app-flow h3,
.note-author-content h2,
.support-service-card h2,
.form-message h2 {
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.65;
}

.season-color-concept .season-color-concept-subtitle {
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.65;
}

.about-text,
.faq-answer,
.privacy-index p,
.privacy-index li,
.information-list dt,
.information-list dd,
.letters-intro,
.season-position-text,
.season-detail-color p,
.season-detail-micro p,
.season-color-concept-heading + p,
.season-color-concept-heading ~ p,
.season-color-notice p,
.price-lead,
.price-plan-text,
.price-diagnosis p,
.service-guide-text,
.ai-editor-text,
.ai-editor-case,
.ai-editor-note,
.ai-editor-faq,
.web-edit-text,
.web-edit-lead,
.web-edit-note,
.web-edit-case,
.web-edit-faq,
.structured-text,
.structured-note,
.structured-code,
.structured-faq,
.web-app-text,
.web-app-card-grid p,
.web-app-points p,
.web-app-flow p,
.web-app-faq p,
.web-app-contact > p:not(.web-app-kicker),
.flow-body p,
.note-detail-body,
.note-author-content p,
.support-intro,
.support-service-card > p:not(.support-service-label):not(.support-service-fit),
.online-intro-text p,
.online-memo p,
.online-memo li,
.page-title .webtopics-page-lead p,
.form-message p,
.form-message li {
  color: var(--text);
  font-size: 17px;
  line-height: 2.05;
}

@media (max-width: 860px) {
  .about-section h2,
  .information-section h2,
  .letters-intro h2,
  .letters-subscribe h2,
  .letters-backnumber h2,
  .season-color-concept h2,
  .price-section h2,
  .service-guide-section h2,
  .ai-editor-section h2,
  .web-edit-section h2,
  .structured-section h2,
  .web-app-section > h2,
  .online-intro-text h2,
  .privacy-section h2,
  .links-group h2,
  .flow-body h2 {
    font-size: 20px;
    line-height: 1.6;
  }

  .about-text h3,
  .about-index > .about-season-concept h3,
  .price-plan-card h3,
  .ai-editor-section h3,
  .web-edit-section h3,
  .structured-section h3,
  .web-app-card-grid h3,
  .web-app-points h3,
  .web-app-flow h3,
  .note-author-content h2,
  .support-service-card h2,
  .form-message h2 {
    font-size: 19px;
    line-height: 1.65;
  }

  .season-color-concept .season-color-concept-subtitle {
    font-size: 19px;
    line-height: 1.65;
  }

  .about-text,
  .faq-answer,
  .privacy-index p,
  .privacy-index li,
  .information-list dt,
  .information-list dd,
  .letters-intro,
  .season-position-text,
  .season-detail-color p,
  .season-detail-micro p,
  .season-color-concept-heading + p,
  .season-color-concept-heading ~ p,
  .season-color-notice p,
  .price-lead,
  .price-plan-text,
  .price-diagnosis p,
  .service-guide-text,
  .ai-editor-text,
  .ai-editor-case,
  .ai-editor-note,
  .ai-editor-faq,
  .web-edit-text,
  .web-edit-lead,
  .web-edit-note,
  .web-edit-case,
  .web-edit-faq,
  .structured-text,
  .structured-note,
  .structured-code,
  .structured-faq,
  .web-app-text,
  .web-app-card-grid p,
  .web-app-points p,
  .web-app-flow p,
  .web-app-faq p,
  .web-app-contact > p:not(.web-app-kicker),
  .flow-body p,
  .note-detail-body,
  .note-author-content p,
  .support-intro,
  .support-service-card > p:not(.support-service-label):not(.support-service-fit),
  .online-intro-text p,
  .online-memo p,
  .online-memo li,
  .page-title .webtopics-page-lead p,
  .form-message p,
  .form-message li {
    font-size: 16px;
    line-height: 2;
  }
}
