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

:root {
  --green: #3f7f3f;
  --green-dark: #2e6632;
  --green-soft: #dceccf;
  --mint: #dfeff0;
  --yellow: #f3eb99;
  --orange: #f4a24b;
  --blue: #94c6d6;
  --ink: #2f302e;
  --muted: #6f756b;
  --line: #e6ebe0;
  --paper: #f9faf5;
  --white: #fff;
  --shadow: 0 18px 42px rgba(51, 82, 43, .12);
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 235, 209, .42), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(238, 231, 204, .5), transparent 27%),
    #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(20px, 8vw, 112px);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #20241f;
  line-height: 1;
}

.brand img {
  width: clamp(138px, 17vw, 188px);
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 46px);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.global-nav a {
  transition: color .2s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.hero-main,
.hero-side {
  position: relative;
  overflow: hidden;
  height: calc(100svh - 132px);
  min-height: 540px;
  background: var(--mint);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: min(50vw, calc(100svh - 78px));
  min-height: 560px;
  border-radius: 0;
  background: linear-gradient(#e5f3f4 0 58%, #eef8e5 58%);
}

@media (min-width: 761px) {
  .hero {
    width: min(1440px, calc(100% - clamp(40px, 6vw, 96px)));
    margin: clamp(18px, 2.4vw, 30px) auto 0;
  }

  .hero-main {
    border-radius: clamp(14px, 1.8vw, 24px);
  }
}

.hero-side {
  display: none;
}

.hero-copy {
  position: absolute;
  top: clamp(42px, 8vh, 84px);
  left: clamp(24px, 7vw, 112px);
  right: clamp(24px, 7vw, 112px);
  z-index: 4;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.58;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.95;
}

.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}

.hero-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.05));
}

.hero-side-right::after {
  background: linear-gradient(270deg, rgba(255,255,255,.7), rgba(255,255,255,.03));
}

.hero-side p {
  position: absolute;
  z-index: 2;
  top: 128px;
  left: 15px;
  margin: 0;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.8;
  writing-mode: vertical-rl;
}

.hero-side-right p {
  left: auto;
  right: 18px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 6px 18px rgba(60, 80, 51, .18);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: clamp(20px, 4vw, 62px);
}

.hero-next {
  right: clamp(20px, 4vw, 62px);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b5b7b0;
  cursor: pointer;
}

.slider-dots .active {
  background: var(--green);
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.concept {
  padding: 118px 0 104px;
}

.concept-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.concept h2,
.marche h2,
.section-heading h2,
.movie-copy h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.7;
}

.concept-text > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 32px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 2.15;
}

.company-details {
  display: grid;
  gap: 0;
  max-width: 610px;
  margin: -6px 0 32px;
  padding: 0;
  border-top: 1px solid #d8ded4;
  border-bottom: 1px solid #d8ded4;
  background: transparent;
  font-style: normal;
}

.company-details > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid #e7ebe3;
}

.company-details > div:last-child {
  border-bottom: 0;
}

.company-details dt,
.company-details dd {
  margin: 0;
}

.company-details dt {
  color: #4d5b49;
  font-weight: 900;
}

.company-details dd {
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.85;
}

.company-founded {
  font-weight: 900;
}

.pill-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 192px;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5b9155, #3e773e);
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 9px 18px rgba(58, 115, 55, .18);
}

.pill-button span,
.outline-button span {
  font-size: 1rem;
}

.concept-art {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.concept-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(54, 90, 48, .1));
}

.marche {
  padding: 96px 0 108px;
}

.marche-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  width: min(1320px, calc(100% - 8px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 0 20%, rgba(184, 216, 180, .55), transparent 34%),
    linear-gradient(90deg, #f3f9ee 0%, #f9fcf5 52%, #edf7e5 100%);
  box-shadow: var(--shadow);
}

.marche-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: clamp(34px, 5vw, 62px) clamp(24px, 4vw, 70px);
}

.marche h2 {
  color: var(--green-dark);
  font-weight: 700;
}

.marche .lead {
  margin: 6px 0 18px;
  font-weight: 900;
  font-size: 1.08rem;
}

.marche p:not(.lead) {
  margin: 0;
  max-width: 590px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 2.05;
  text-align: justify;
  text-wrap: pretty;
}

.marche-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 38px 0 28px;
  padding: 0;
  list-style: none;
}

.marche-icons li {
  position: relative;
  color: #52624c;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.marche-icons a {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 126px;
  padding: 10px 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition:
    color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.marche-icons a:hover,
.marche-icons a:focus-visible {
  color: var(--green-dark);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 28px rgba(54, 90, 48, .14);
  transform: translateY(-6px) scale(1.025);
}

.marche-icons a:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .32);
  outline-offset: 3px;
}

.marche-icons strong {
  font-weight: 900;
}

.marche-icons li + li::before {
  content: "›";
  position: absolute;
  left: -10px;
  top: 40px;
  color: #9faf94;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}

.marche-icons span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 1px solid #bfd0b4;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 5px 12px rgba(60, 92, 52, .08);
}

.marche-icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marche-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  background: transparent;
}

.marche-logo-frame {
  width: clamp(280px, 28vw, 390px);
  aspect-ratio: 1;
}

.marche-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.coming {
  position: absolute;
  top: 30px;
  right: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  padding: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.coming strong {
  display: block;
  font: inherit;
}

.coming small {
  display: block;
  margin-top: 10px;
  font-size: .68rem;
  line-height: 1;
}

.works {
  padding: 100px 0 108px;
}

.section-heading {
  margin: 0 0 46px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.section-heading p {
  margin: 2px 0 0;
  font-weight: 700;
  color: #4e5a4c;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.work-card,
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(53, 72, 46, .06);
}

.work-card {
  min-height: 252px;
  padding: 30px 28px;
  text-align: center;
}

.work-card h3 {
  margin: 16px 0 10px;
  font-size: 1.12rem;
  font-weight: 900;
}

.work-card p {
  margin: 0;
  font-size: .86rem;
  font-weight: 700;
  line-height: 2;
}

.work-illust {
  display: grid;
  place-items: center;
  width: 112px;
  height: 104px;
  margin: 0 auto;
  color: var(--green);
}

.work-illust img {
  width: 104px;
  height: 100px;
  object-fit: contain;
}

.work-make,
.work-partner,
.work-customer {
  color: #4f8c48;
}

.movie {
  padding: 96px 0 108px;
}

.movie-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg, #e5f3f4, #f8fbef);
}

.movie-thumb {
  position: relative;
  min-height: 226px;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.movie-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 2rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(54, 86, 50, .16);
}

.movie-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px clamp(24px, 5vw, 66px);
}

.movie-copy h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.movie-copy p {
  margin: 12px 0 24px;
  max-width: 430px;
  font-weight: 700;
}

.outline-button {
  min-height: 42px;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green);
  box-shadow: none;
}

.journal {
  padding: 96px 0 104px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
}

.article-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  align-self: start;
}

.article-card {
  color: inherit;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.article-card:hover,
.article-card:focus-visible {
  border-color: #bdd2b5;
  box-shadow: 0 18px 36px rgba(53, 72, 46, .14);
  transform: translateY(-4px);
}

.article-card:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .25);
  outline-offset: 3px;
}

.article-card:first-child {
  grid-row: span 2;
}

.article-card:first-child img {
  height: auto;
}

.article-card:not(:first-child) {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 190px;
}

.article-card:not(:first-child) img {
  height: auto;
  min-height: 0;
}

.article-body {
  padding: 16px 18px 22px;
}

.article-card:first-child .article-body {
  padding: 22px 24px 28px;
}

.article-body > p:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 9px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 23px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.tag.green { background: #5c9a45; }
.tag.blue { background: #459bc7; }
.tag.orange { background: #ef8a19; }

time {
  color: #899083;
  font-size: .82rem;
  font-weight: 700;
}

.article-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.journal .section-heading h2 {
  font-weight: 700;
}

.article-card p:last-child {
  margin: 0;
  color: #4d554a;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.85;
}

.column-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 42px auto 0;
}

.columns-main,
.column-detail-main {
  background:
    radial-gradient(circle at 8% 6%, rgba(204, 229, 190, .48), transparent 22%),
    linear-gradient(180deg, #fbfcf8, #fff 34%);
}

.columns-main {
  padding-bottom: 110px;
}

.columns-hero {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0 52px;
  text-align: center;
}

.columns-hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.35;
}

.columns-hero > p:last-child {
  margin: 18px 0 0;
  color: #4d5849;
  font-weight: 700;
  line-height: 2;
}

.column-archive {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.column-archive-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce5d6;
}

.column-archive-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.column-archive-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}

.column-list {
  display: grid;
  gap: 22px;
}

.column-list-card {
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(53, 72, 46, .07);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.column-list-card:hover,
.column-list-card:focus-visible {
  border-color: #b8ceb0;
  box-shadow: 0 20px 40px rgba(53, 72, 46, .14);
  transform: translateY(-4px);
}

.column-list-card:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .25);
  outline-offset: 3px;
}

.column-list-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: start;
  object-fit: initial;
}

.column-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.column-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.column-list-body h3 {
  margin: 15px 0 10px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
}

.column-list-body > p:not(.column-meta) {
  margin: 0;
  color: #566052;
  font-weight: 700;
  line-height: 1.9;
}

.column-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--green);
  font-size: .88rem;
  font-weight: 900;
}

.column-list-card:hover .column-read-more b {
  transform: translateX(5px);
}

.column-read-more b {
  transition: transform .22s ease;
}

.column-detail-main {
  padding: clamp(64px, 9vw, 112px) 0 110px;
}

.column-article {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.column-article-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.column-article-header .column-meta {
  justify-content: center;
}

.column-article-header h1 {
  margin: 18px 0 16px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.45;
}

.column-article-lead {
  margin: 0;
  color: #556052;
  font-weight: 700;
  line-height: 2;
}

.column-article-hero {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 16px;
  object-fit: initial;
  background: transparent;
  box-shadow: var(--shadow);
}

.column-article-content {
  width: min(700px, 100%);
  margin: 52px auto 0;
}

.column-article-content p {
  margin: 0;
  color: #40483e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.2;
}

.column-article-content h2 {
  margin: 48px 0 16px;
  padding: 0 0 12px;
  border-bottom: 2px solid #dce8d6;
  color: var(--green-dark);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.55;
}

.column-article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(700px, 100%);
  margin: 64px auto 0;
  padding-top: 26px;
  border-top: 1px solid #dce5d6;
}

.column-back-link,
.column-next-link {
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 900;
}

.column-back-link:hover,
.column-next-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.column-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
}

.column-pagination a,
.column-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #cfddc9;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: .85rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.column-pagination a:hover,
.column-pagination a:focus-visible {
  border-color: var(--green);
  background: #edf6e8;
  transform: translateY(-2px);
}

.column-pagination a:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .25);
  outline-offset: 2px;
}

.column-pagination .column-pagination-current {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.column-pagination .column-pagination-disabled {
  border-color: #e3e8df;
  background: #f7f8f5;
  color: #a3aaa0;
}

.column-pagination .column-pagination-next {
  min-width: 92px;
}

.instagram {
  padding: 92px 0 112px;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(249, 250, 245, .72), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 42%, rgba(132, 180, 112, .16), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(237, 168, 92, .16), transparent 25%);
}

.insta-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(14px, 2.4vw, 26px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(210, 220, 202, .68);
  box-shadow: var(--shadow);
}

.instagram-heading-link {
  display: block;
}

.instagram-heading-link:hover h2,
.instagram-heading-link:focus-visible h2 {
  color: var(--green);
}

.instagram-heading-link:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .28);
  outline-offset: 8px;
  border-radius: 8px;
}

.instagram-live-feed {
  position: absolute !important;
  left: -10000px;
  top: 0;
  width: min(620px, calc(100% - 30px));
  opacity: 0;
  pointer-events: none;
}

.instagram.has-live-instagram .instagram-live-feed {
  position: relative !important;
  left: auto;
  top: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  opacity: 1;
  pointer-events: auto;
}

.instagram.has-live-instagram .instagram-live-feed iframe {
  width: 100% !important;
  max-width: 620px !important;
}

.instagram.has-live-instagram .insta-inner {
  display: none;
}

.instagram-profile-button {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
  cursor: pointer;
}

.insta-post {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #edf1e8;
}

.insta-post img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.insta-post:hover img,
.insta-post:focus-visible img {
  transform: scale(1.035);
  filter: brightness(.9);
}

.insta-post:focus-visible {
  outline: 3px solid #3f7f3f;
  outline-offset: 3px;
}

.detail-main {
  min-height: calc(100svh - 78px);
  padding: clamp(68px, 9vw, 118px) 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(204, 229, 190, .5), transparent 28%),
    linear-gradient(160deg, #fbfcf8, #f0f7e9);
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.detail-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f8ed;
}

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

.detail-copy .eyebrow {
  margin-bottom: 10px;
}

.detail-copy h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.45;
}

.detail-lead {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .02em;
}

.detail-description {
  margin: 0 0 34px;
}

.detail-description p {
  margin: 0;
  font-weight: 700;
  line-height: 2.05;
}

.detail-description p + p {
  margin-top: 6px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 10px 18px;
  color: var(--green-dark);
  font-weight: 900;
}

.services-header-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: #3f463d;
  font-size: .86rem;
  font-weight: 800;
}

.services-header-links a:hover {
  color: var(--green);
}

.services-main {
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 8% 7%, rgba(204, 229, 190, .48), transparent 22%),
    linear-gradient(180deg, #fbfcf8, #fff 32%);
}

.services-hero {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0 44px;
  text-align: center;
}

.services-hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
}

.services-hero > p:last-of-type {
  max-width: 720px;
  margin: 18px auto 0;
  color: #4d5849;
  font-weight: 700;
  line-height: 2;
}

@media (min-width: 1000px) {
  .services-hero > p:last-of-type {
    max-width: none;
    white-space: nowrap;
  }
}

.services-jump-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.services-jump-nav a {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px 12px 20px;
  border: 1px solid #dce5d6;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  color: #465442;
  font-size: .84rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(54, 90, 48, .06);
  transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.services-jump-nav a:hover,
.services-jump-nav a:focus-visible {
  color: var(--green-dark);
  border-color: #b7cdae;
  box-shadow: 0 16px 30px rgba(54, 90, 48, .14);
  transform: translateY(-5px);
}

.services-jump-nav a:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .28);
  outline-offset: 3px;
}

.services-jump-nav img {
  width: min(100%, 150px);
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.services-list {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding: clamp(62px, 8vw, 96px) 0;
  border-top: 1px solid #dde5d8;
  scroll-margin-top: 92px;
}

.service-section:nth-child(even) {
  grid-template-columns: minmax(0, 1.28fr) minmax(240px, .72fr);
}

.service-section:nth-child(even) .service-section-visual {
  order: 2;
}

.service-section-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #eef5e9;
  box-shadow: 0 14px 34px rgba(54, 90, 48, .12);
}

.service-section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section-copy h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.service-section-copy h3 {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.65;
}

.service-section-copy > p:not(.eyebrow) {
  margin: 6px 0 0;
  color: #444c42;
  font-weight: 700;
  line-height: 2.05;
}

.services-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(1080px, calc(100% - 48px));
  margin: 48px auto 0;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 18px;
  background: linear-gradient(110deg, #edf7df, #f8fbf3);
}

.services-contact h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.55;
}

.services-contact div > p:last-child {
  margin: 8px 0 0;
  font-weight: 700;
}

.services-footer {
  grid-template-columns: 1fr auto;
}

/* Contact page */
.contact-main {
  padding-bottom: clamp(72px, 9vw, 118px);
  background:
    radial-gradient(circle at 9% 5%, rgba(204, 229, 190, .5), transparent 24%),
    radial-gradient(circle at 92% 26%, rgba(244, 226, 184, .38), transparent 20%),
    linear-gradient(180deg, #fbfcf8, #fff 40%);
}

.contact-hero {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0 clamp(46px, 6vw, 72px);
  text-align: center;
}

.contact-hero h1,
.contact-form-heading h2,
.contact-guide h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: var(--green-dark);
  font-weight: 600;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  letter-spacing: .08em;
  line-height: 1.4;
}

.contact-hero > p:last-child {
  margin: 18px 0 0;
  color: #4d5849;
  font-size: clamp(.93rem, 1.5vw, 1.02rem);
  font-weight: 700;
  line-height: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-guide {
  position: static;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid #dce7d5;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(238, 247, 226, .96), rgba(250, 252, 245, .96));
  box-shadow: 0 18px 44px rgba(54, 90, 48, .09);
}

.contact-guide h2,
.contact-form-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.5;
}

.contact-guide > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #4d5849;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.95;
}

.contact-steps {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 24px;
}

.contact-steps li:last-child {
  padding-bottom: 0;
}

.contact-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 42px;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: #bdd3b3;
}

.contact-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
}

.contact-steps strong,
.contact-steps small {
  display: block;
}

.contact-steps strong {
  color: #354431;
  font-size: .92rem;
}

.contact-steps small {
  margin-top: 2px;
  color: #677064;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.65;
}

.contact-note {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.contact-note strong {
  color: var(--green-dark);
  font-size: .88rem;
}

.contact-note p {
  margin: 5px 0 0;
  color: #5a6357;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.75;
}

.contact-form-card {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid #e2e8dd;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form-heading {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e3e8df;
}

.contact-form-heading > p:last-child {
  margin: 12px 0 0;
  color: #687064;
  font-size: .82rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  color: #394436;
  font-size: .9rem;
  font-weight: 900;
}

.required-mark,
.optional-mark {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .05em;
  vertical-align: 1px;
}

.required-mark {
  background: #e8f2df;
  color: var(--green-dark);
}

.optional-mark {
  background: #f0f1ed;
  color: #73796e;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ced7c9;
  border-radius: 11px;
  background: #fcfdfb;
  color: var(--ink);
  font: inherit;
  font-size: .94rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 16px;
}

.form-field select {
  cursor: pointer;
}

.form-field textarea {
  min-height: 190px;
  padding: 14px 16px;
  line-height: 1.75;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a2a89e;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(63, 127, 63, .13);
}

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f6f8f3;
  color: #50594d;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.8;
  cursor: pointer;
}

.privacy-check input {
  width: 19px;
  height: 19px;
  margin: 4px 0 0;
  accent-color: var(--green);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(100%, 340px);
  min-height: 58px;
  margin: 4px auto 0;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 900;
  letter-spacing: .05em;
  box-shadow: 0 12px 24px rgba(63, 127, 63, .22);
  cursor: pointer;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 16px 28px rgba(63, 127, 63, .28);
  transform: translateY(-3px);
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(63, 127, 63, .28);
  outline-offset: 4px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.form-status {
  min-height: 1.8em;
  margin: -8px 0 0;
  text-align: center;
  font-size: .84rem;
  font-weight: 900;
}

.form-status.is-success {
  color: var(--green-dark);
}

.form-status.is-error {
  color: #a24436;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (min-width: 1000px) {
  .services-contact h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    white-space: nowrap;
  }
}

.follow {
  display: none;
  place-items: center;
  align-self: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(63, 127, 63, .13);
}

.follow span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  line-height: 1;
}

.contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1320px, calc(100% - 8px));
  margin: 0 auto 72px;
  min-height: 148px;
  padding: 24px clamp(24px, 5vw, 76px);
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg, #edf7df, #f9fcf3, #eaf5db);
}

.contact-cta h2 {
  color: var(--green-dark);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.45;
}

/* Green page titles use a soft, natural rounded-gothic tone. */
.marche h2,
.section-heading h2,
.columns-hero h1,
.column-archive-heading h2,
.column-article-header h1,
.column-article-content h2,
.detail-copy h1,
.services-hero h1,
.service-section-copy h2,
.services-contact h2,
.contact-cta h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.marche h2,
.section-heading h2 {
  font-size: clamp(1.42rem, 2.25vw, 1.95rem);
}

.columns-hero h1,
.services-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
}

.column-article-header h1,
.detail-copy h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
}

.service-section-copy h2 {
  font-size: clamp(1.7rem, 3.25vw, 2.65rem);
}

.services-contact h2,
.contact-cta h2 {
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
}

.contact-cta p {
  margin: 4px 0 0;
  font-weight: 900;
}

.contact-cta .pill-button {
  position: relative;
  z-index: 3;
}

.cta-people {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 130px;
}

.cta-people img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leaf {
  position: absolute;
  z-index: 0;
  top: 22px;
  width: 160px;
  height: 92px;
  opacity: .55;
  background: radial-gradient(ellipse at 40% 50%, #8ab970 0 42%, transparent 45%);
  filter: blur(.1px);
}

.leaf-left {
  left: -35px;
  transform: rotate(22deg);
}

.leaf-right {
  right: -35px;
  transform: scaleX(-1) rotate(22deg);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0 28px;
}

.site-footer .brand {
  width: 138px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  color: #3f463d;
  font-size: .78rem;
  font-weight: 700;
}

.site-footer small {
  color: #6e756b;
  font-size: .78rem;
}

.instagram-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #3f463d;
  border-radius: 8px;
}

.instagram-icon::before,
.instagram-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.instagram-icon::before {
  width: 8px;
  height: 8px;
  border: 2px solid #3f463d;
  border-radius: 50%;
}

.instagram-icon::after {
  top: 5px;
  right: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3f463d;
}

/* Page motion
   画像を増やさず、transform と opacity を中心に軽量に動かします。 */
.hero-main {
  transform-origin: center;
}

.motion-enabled:not(.motion-loaded) .hero-main {
  opacity: 0;
  transform: scale(1.035);
}

.motion-enabled.motion-loaded .hero-main {
  animation: hero-reveal 1.15s cubic-bezier(.22, 1, .36, 1) both;
}

.motion-enabled.motion-loaded .hero-slide.is-active {
  animation: hero-breathe 5.2s ease-out both;
}

.motion-enabled:not(.motion-loaded) .hero-prev,
.motion-enabled:not(.motion-loaded) .slider-dots {
  opacity: 0;
}

.motion-enabled.motion-loaded .hero-prev {
  animation: hero-control-in .75s .55s cubic-bezier(.22, 1, .36, 1) both;
}

.motion-enabled.motion-loaded .slider-dots {
  animation: hero-dots-in .75s .7s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-arrow {
  transition: color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: #2f682f;
  box-shadow: 0 14px 34px rgba(47, 104, 47, .22);
  transform: translateY(-50%) scale(1.08);
}

.slider-dots button {
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.slider-dots .active {
  box-shadow: 0 0 0 6px rgba(63, 127, 63, .13);
  transform: scale(1.16);
}

.concept,
.instagram,
.journal,
.marche {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.concept > *,
.instagram > *,
.journal > *,
.marche > * {
  position: relative;
  z-index: 1;
}

.concept::before,
.instagram::before,
.journal::before,
.marche::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.concept::before {
  top: 4%;
  right: -120px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(118, 166, 98, .18);
  background: radial-gradient(circle at 38% 38%, rgba(213, 235, 196, .56), rgba(236, 246, 227, .12) 62%, transparent 63%);
  animation: ambient-orbit 12s ease-in-out infinite alternate;
}

.instagram::before {
  left: -100px;
  bottom: 8%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(237, 168, 92, .17);
  background: radial-gradient(circle at 58% 42%, rgba(250, 214, 174, .42), transparent 66%);
  animation: ambient-drift 10s ease-in-out infinite alternate;
}

.journal::before {
  top: 7%;
  right: -90px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(118, 166, 98, .16);
  background: radial-gradient(circle, rgba(210, 234, 198, .42), transparent 67%);
  animation: ambient-drift 11s 1s ease-in-out infinite alternate-reverse;
}

.marche::before {
  left: 8%;
  bottom: 3%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(118, 166, 98, .15);
  background: radial-gradient(circle, rgba(224, 240, 209, .42), transparent 68%);
  animation: ambient-orbit 13s ease-in-out infinite alternate-reverse;
}

.motion-enabled .motion-section .section-heading,
.motion-enabled .motion-section .concept-text,
.motion-enabled .motion-section .concept-art,
.motion-enabled .motion-section .insta-inner,
.motion-enabled .motion-section .insta-post,
.motion-enabled .motion-section .article-card,
.motion-enabled .motion-section .column-more-button,
.motion-enabled .motion-section .marche-panel,
.motion-enabled .motion-section .marche-copy,
.motion-enabled .motion-section .marche-visual,
.motion-enabled .motion-section .marche-icons li,
.motion-enabled .contact-cta.motion-section,
.motion-enabled .contact-cta.motion-section .cta-people,
.motion-enabled .contact-cta.motion-section > div:not(.cta-people),
.motion-enabled .contact-cta.motion-section .pill-button {
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1),
    transform .85s cubic-bezier(.22, 1, .36, 1);
}

.motion-enabled .concept.motion-section:not(.is-visible) .concept-text {
  opacity: 0;
  transform: translate3d(-46px, 18px, 0);
}

.motion-enabled .concept.motion-section:not(.is-visible) .concept-art {
  opacity: 0;
  transform: translate3d(48px, 24px, 0) scale(.955) rotate(1.2deg);
}

.motion-enabled .concept.motion-section.is-visible:not(.is-motion-complete) .concept-art {
  transition-delay: .13s;
}

.concept-art img {
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}

.concept-art:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) drop-shadow(0 20px 38px rgba(54, 90, 48, .13));
}

.motion-enabled .instagram.motion-section:not(.is-visible) .section-heading {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.motion-enabled .instagram.motion-section:not(.is-visible) .insta-inner {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.975);
}

.motion-enabled .instagram.motion-section:not(.is-visible) .insta-post {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(.92) rotate(1.5deg);
}

.motion-enabled .instagram.motion-section:not(.is-visible) .insta-post:nth-child(even) {
  transform: translate3d(0, 38px, 0) scale(.92) rotate(-1.5deg);
}

.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-inner {
  transition-delay: .08s;
}

.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-post:nth-child(1) { transition-delay: .12s; }
.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-post:nth-child(2) { transition-delay: .19s; }
.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-post:nth-child(3) { transition-delay: .26s; }
.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-post:nth-child(4) { transition-delay: .33s; }
.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-post:nth-child(5) { transition-delay: .40s; }
.motion-enabled .instagram.motion-section.is-visible:not(.is-motion-complete) .insta-post:nth-child(6) { transition-delay: .47s; }

.insta-inner {
  border-radius: 22px;
  backdrop-filter: blur(8px);
}

.insta-post {
  position: relative;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(53, 72, 46, .08);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1),
    transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s ease;
}

.insta-post::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -35%;
  bottom: -35%;
  left: -65%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .44), transparent);
  transform: skewX(-18deg);
  transition: left .65s cubic-bezier(.22, 1, .36, 1);
}

.insta-post:hover,
.insta-post:focus-visible {
  box-shadow: 0 20px 38px rgba(53, 72, 46, .18);
  transform: translateY(-7px) scale(1.012);
}

.insta-post:hover::before,
.insta-post:focus-visible::before {
  left: 132%;
}

.insta-post img {
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.insta-post:hover img,
.insta-post:focus-visible img {
  transform: scale(1.07);
  filter: brightness(.88) saturate(1.06);
}

.motion-enabled .journal.motion-section:not(.is-visible) .section-heading {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

.motion-enabled .journal.motion-section:not(.is-visible) .article-card {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(.965);
}

.motion-enabled .journal.motion-section:not(.is-visible) .column-more-button {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.motion-enabled .journal.motion-section.is-visible:not(.is-motion-complete) .article-card:nth-child(1) { transition-delay: .1s; }
.motion-enabled .journal.motion-section.is-visible:not(.is-motion-complete) .article-card:nth-child(2) { transition-delay: .2s; }
.motion-enabled .journal.motion-section.is-visible:not(.is-motion-complete) .article-card:nth-child(3) { transition-delay: .3s; }
.motion-enabled .journal.motion-section.is-visible:not(.is-motion-complete) .column-more-button { transition-delay: .4s; }

.article-card img {
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.article-card:hover img,
.article-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.motion-enabled .marche.motion-section:not(.is-visible) .marche-panel {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(.965);
}

.motion-enabled .marche.motion-section:not(.is-visible) .marche-copy {
  opacity: 0;
  transform: translate3d(-42px, 0, 0);
}

.motion-enabled .marche.motion-section:not(.is-visible) .marche-visual {
  opacity: 0;
  transform: translate3d(42px, 0, 0) scale(.94);
}

.motion-enabled .marche.motion-section:not(.is-visible) .marche-icons li {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

.motion-enabled .marche.motion-section.is-visible:not(.is-motion-complete) .marche-copy { transition-delay: .1s; }
.motion-enabled .marche.motion-section.is-visible:not(.is-motion-complete) .marche-visual { transition-delay: .18s; }
.motion-enabled .marche.motion-section.is-visible:not(.is-motion-complete) .marche-icons li:nth-child(1) { transition-delay: .2s; }
.motion-enabled .marche.motion-section.is-visible:not(.is-motion-complete) .marche-icons li:nth-child(2) { transition-delay: .27s; }
.motion-enabled .marche.motion-section.is-visible:not(.is-motion-complete) .marche-icons li:nth-child(3) { transition-delay: .34s; }
.motion-enabled .marche.motion-section.is-visible:not(.is-motion-complete) .marche-icons li:nth-child(4) { transition-delay: .41s; }

.marche-logo-frame {
  animation: logo-float 5.4s ease-in-out infinite;
}

.coming {
  animation: coming-pulse 3s ease-in-out infinite;
}

.motion-enabled .contact-cta.motion-section:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(.97);
}

.motion-enabled .contact-cta.motion-section:not(.is-visible) .cta-people {
  opacity: 0;
  transform: translate3d(-38px, 18px, 0);
}

.motion-enabled .contact-cta.motion-section:not(.is-visible) > div:not(.cta-people) {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.motion-enabled .contact-cta.motion-section:not(.is-visible) .pill-button {
  opacity: 0;
  transform: translate3d(34px, 0, 0);
}

.motion-enabled .contact-cta.motion-section.is-visible:not(.is-motion-complete) .cta-people { transition-delay: .12s; }
.motion-enabled .contact-cta.motion-section.is-visible:not(.is-motion-complete) > div:not(.cta-people) { transition-delay: .2s; }
.motion-enabled .contact-cta.motion-section.is-visible:not(.is-motion-complete) .pill-button { transition-delay: .3s; }

.contact-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -80% auto -80% -28%;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-18deg);
  animation: cta-shimmer 6.5s 1.5s ease-in-out infinite;
}

.pill-button {
  transition: box-shadow .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  box-shadow: 0 16px 30px rgba(58, 115, 55, .25);
  filter: saturate(1.08);
  transform: translateY(-4px);
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-breathe {
  from { transform: scale(1.025); }
  to { transform: scale(1); }
}

@keyframes hero-control-in {
  from {
    opacity: 0;
    transform: translate3d(-24px, -50%, 0) scale(.85);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
  }
}

@keyframes hero-dots-in {
  from {
    opacity: 0;
    transform: translate3d(-50%, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ambient-orbit {
  from { transform: translate3d(0, 0, 0) rotate(0); }
  to { transform: translate3d(-34px, 26px, 0) rotate(12deg); }
}

@keyframes ambient-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, -24px, 0) scale(1.08); }
}

@keyframes logo-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.6deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(.6deg); }
}

@keyframes coming-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 127, 63, .18); transform: scale(1); }
  50% { box-shadow: 0 0 0 14px rgba(63, 127, 63, 0); transform: scale(1.035); }
}

@keyframes cta-shimmer {
  0%, 68% { left: -28%; }
  100% { left: 128%; }
}

@media (max-width: 1100px) {
  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-side {
    display: none;
  }

  .hero-main {
    height: min(50vw, calc(100svh - 78px));
    min-height: 500px;
  }

  .hero-prev {
    left: 28px;
  }

  .hero-next {
    right: 28px;
  }

  .concept-grid,
  .marche-panel,
  .movie-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid {
    gap: 36px;
  }

  .concept-art {
    min-height: 380px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .follow {
    grid-column: 2;
    justify-self: center;
  }

  .contact-cta {
    grid-template-columns: 170px 1fr;
  }

  .contact-cta .pill-button {
    grid-column: 2;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 12px 14px;
  }

  .brand {
    width: 145px;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-main {
    height: min(110vw, calc(100svh - 66px));
    min-height: 420px;
    max-height: 620px;
    border-radius: 0;
  }

  .hero-copy {
    top: clamp(30px, 8vh, 62px);
    left: 18px;
    right: 18px;
  }

  .hero-copy h1 {
    font-size: 1.55rem;
    line-height: 1.65;
  }

  .hero-copy p {
    font-size: .82rem;
  }

  .hero-slide {
    object-position: center center;
  }

  .hero-arrow {
    display: none;
  }

  .section-inner {
    width: min(100% - 30px, 1180px);
  }

  .concept {
    padding: 78px 0 72px;
  }

  .concept h2,
  .marche h2,
  .section-heading h2,
  .movie-copy h2,
  .contact-cta h2 {
    font-size: 1.45rem;
  }

  .concept-text > p:not(.eyebrow),
  .marche p:not(.lead),
  .movie-copy p {
    font-size: .86rem;
    line-height: 2;
  }

  .concept-art img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .concept-art {
    min-height: 0;
  }

  .marche-panel {
    width: calc(100% - 12px);
  }

  .marche,
  .works,
  .movie,
  .journal {
    padding: 72px 0;
  }

  .instagram {
    padding: 62px 0 72px;
  }

  .contact-cta {
    margin-bottom: 52px;
  }

  .marche-copy {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 22px;
  }

  .marche-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .marche-icons li + li::before {
    display: none;
  }

  .marche-visual {
    min-height: 260px;
  }

  .marche-logo-frame {
    width: 220px;
  }

  .work-grid,
  .article-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-card:first-child {
    grid-row: auto;
  }

  .article-card:first-child img,
  .article-card:not(:first-child) img {
    height: auto;
    min-height: 0;
  }

  .article-card:not(:first-child) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .column-more-button {
    width: min(100%, 280px);
  }

  .columns-main {
    padding-bottom: 72px;
  }

  .columns-hero {
    width: calc(100% - 30px);
    padding: 58px 0 40px;
  }

  .column-archive {
    width: calc(100% - 30px);
  }

  .column-archive-heading {
    display: block;
  }

  .column-archive-heading p {
    margin-top: 5px;
  }

  .column-list-card {
    grid-template-columns: 1fr;
  }

  .column-list-image {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .column-list-body {
    padding: 24px 22px 28px;
  }

  .column-pagination {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
  }

  .column-pagination a,
  .column-pagination span {
    min-width: 40px;
    min-height: 40px;
    padding: 7px 12px;
    font-size: .78rem;
  }

  .column-detail-main {
    padding: 52px 0 72px;
  }

  .column-article {
    width: calc(100% - 30px);
  }

  .column-article-header {
    margin-bottom: 30px;
  }

  .column-article-header h1 {
    margin-top: 15px;
    font-size: 1.8rem;
  }

  .column-article-hero {
    border-radius: 10px;
  }

  .column-article-content {
    margin-top: 36px;
  }

  .column-article-content p {
    font-size: .94rem;
    line-height: 2.05;
  }

  .column-article-content h2 {
    margin-top: 38px;
  }

  .column-article-nav {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }

  .movie-thumb {
    min-height: 190px;
  }

  .movie-copy {
    padding: 28px 22px;
  }

  .insta-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 30px);
    gap: 14px;
    padding: 16px;
  }

  .follow {
    grid-column: auto;
    justify-self: center;
  }

  .insta-post img {
    aspect-ratio: 1;
    height: auto;
  }

  .company-details > div {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .detail-main {
    min-height: calc(100svh - 66px);
    padding: 46px 0 70px;
  }

  .detail-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 30px);
    gap: 28px;
    padding: 26px 22px 32px;
  }

  .detail-visual {
    width: min(280px, 82vw);
    margin: 0 auto;
  }

  .services-header-links {
    gap: 14px;
    font-size: .74rem;
  }

  .services-header-links a:first-child {
    display: none;
  }

  .column-page-links a:first-child {
    display: block;
  }

  .services-main {
    padding-bottom: 56px;
  }

  .services-hero {
    width: calc(100% - 30px);
    padding: 58px 0 38px;
  }

  .services-jump-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
  }

  .services-jump-nav a {
    padding: 16px 8px;
  }

  .services-jump-nav img {
    width: min(100%, 130px);
    height: auto;
  }

  .services-list {
    width: calc(100% - 30px);
  }

  .service-section,
  .service-section:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 58px 0;
  }

  .service-section:nth-child(even) .service-section-visual {
    order: 0;
  }

  .service-section-visual {
    width: min(270px, 78vw);
    margin: 0 auto;
  }

  .services-contact {
    grid-template-columns: 1fr;
    width: calc(100% - 30px);
    margin-top: 20px;
    padding: 28px 22px;
  }

  .services-contact .pill-button {
    justify-self: start;
  }

  .services-footer {
    grid-template-columns: 1fr;
  }

  .contact-page-links a:first-child {
    display: block;
  }

  .contact-page-links a:last-child {
    display: none;
  }

  .contact-main {
    padding-bottom: 62px;
  }

  .contact-hero {
    width: calc(100% - 30px);
    padding: 54px 0 38px;
  }

  .desktop-break {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 30px);
  }

  .contact-guide {
    position: static;
    padding: 28px 22px;
    border-radius: 17px;
  }

  .contact-form-card {
    padding: 30px 20px;
    border-radius: 17px;
  }

  .contact-form-heading {
    margin-bottom: 30px;
    padding-bottom: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .form-field input,
  .form-field select {
    height: 52px;
  }

  .privacy-check {
    padding: 16px;
  }

  .contact-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 12px);
    justify-items: start;
    padding: 28px 22px;
  }

  .cta-people {
    width: 190px;
    height: 110px;
  }

  .contact-cta .pill-button {
    grid-column: auto;
  }

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .insta-inner {
    border-radius: 16px;
    backdrop-filter: blur(4px);
  }

  .insta-post {
    border-radius: 11px;
  }

  .motion-enabled .concept.motion-section:not(.is-visible) .concept-text,
  .motion-enabled .concept.motion-section:not(.is-visible) .concept-art,
  .motion-enabled .marche.motion-section:not(.is-visible) .marche-copy,
  .motion-enabled .marche.motion-section:not(.is-visible) .marche-visual,
  .motion-enabled .contact-cta.motion-section:not(.is-visible) .cta-people,
  .motion-enabled .contact-cta.motion-section:not(.is-visible) .pill-button {
    transform: translate3d(0, 30px, 0) scale(.97);
  }

  .insta-post:hover,
  .insta-post:focus-visible {
    transform: translateY(-3px) scale(1.008);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }

  .motion-enabled .motion-section,
  .motion-enabled .motion-section *,
  .motion-enabled .hero-main,
  .motion-enabled .hero-prev,
  .motion-enabled .slider-dots {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Typography roles: Zen Maru Gothic for primary titles, Noto Sans JP for all supporting text. */
body,
input,
select,
textarea,
button {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

main h1,
.concept h2,
.marche h2,
.section-heading h2,
.movie-copy h2,
.contact-cta h2,
.column-archive-heading h2,
.column-article-header h1,
.detail-copy h1,
.services-hero h1,
.service-section-copy h2,
.services-contact h2,
.contact-hero h1,
.contact-guide h2,
.contact-form-heading h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.article-card h3,
.column-list-body h3,
.column-article-content h2,
.detail-lead,
.service-section-copy h3,
.contact-steps strong,
.contact-note strong,
.form-field label {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}


/* Document article layouts */
.column-article-lead p { margin: 0; }
.column-article-content p + p { margin-top: 1.35em; }
.column-article-content h2 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}
.article-inline-image { margin: 34px 0; }
.article-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 14px;
  object-fit: initial;
  background: transparent;
  box-shadow: 0 12px 32px rgba(51, 82, 43, .1);
}
.recipe-article .column-article-hero {
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: initial;
  background: transparent;
}
.recipe-section { margin-top: 52px; }
.recipe-section h2,
.recipe-author > strong {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid #dce8d6;
  color: var(--green-dark);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.55;
}
.recipe-author > strong { display: block; }
.recipe-ingredients { margin: 0; padding: 0; border-top: 1px solid #e2e8dd; }
.recipe-ingredients > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, auto);
  gap: 24px;
  align-items: baseline;
  padding: 13px 4px;
  border-bottom: 1px solid #e2e8dd;
}
.recipe-ingredients dt,
.recipe-ingredients dd { margin: 0; line-height: 1.75; }
.recipe-ingredients dt { font-weight: 500; }
.recipe-ingredients dd { color: #4f5b4c; text-align: right; }
.recipe-note { margin: 14px 0 0 !important; color: #687064; font-size: .88rem !important; }
.recipe-steps { display: grid; gap: 34px; margin: 0; padding: 0; list-style: none; }
.recipe-steps > li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; align-items: start; }
.recipe-step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--green);
}
.recipe-step-body > p:first-child { margin-top: 3px; }
.recipe-step-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.recipe-step-images .article-inline-image { margin: 0; }
.recipe-step-images img { height: auto; max-height: none; aspect-ratio: auto; object-fit: initial; }
.recipe-author-image { margin: 54px 0 22px; }
.recipe-author-image img { height: auto; max-height: none; object-fit: initial; }
.recipe-author { margin-top: 0; padding: 28px; border-radius: 16px; background: #f3f8ef; }
.recipe-author p { margin: 0; }
@media (max-width: 640px) {
  .column-article-content p { font-size: .96rem; line-height: 2.05; }
  .article-inline-image { margin: 26px 0; }
  .article-inline-image img { border-radius: 10px; }
  .recipe-section { margin-top: 42px; }
  .recipe-ingredients > div { grid-template-columns: minmax(0, 1fr) minmax(74px, auto); gap: 14px; }
  .recipe-steps > li { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .recipe-step-number { width: 32px; height: 32px; font-size: .9rem; }
  .recipe-step-images { grid-template-columns: 1fr; }
  .recipe-author { padding: 22px 18px; }
}
