:root {
  --ink: #252b27;
  --muted: #4f5953;
  --paper: #fff;
  --ivory: #fff;
  --sage: #eff4ef;
  --forest: #315b46;
  --deep-forest: #234535;
  --coral: #c34843;
  --soft-coral: #f8efed;
  --line: #d9ddd7;
  --frame-width: 430px;
  --gutter: 34px;
  --font-sans:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
    "Helvetica Neue", Arial, sans-serif;
  --font-latin: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.sh-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sh-skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.sh-skip-link:focus {
  transform: translateY(0);
}

.sh-page-frame {
  position: relative;
  width: min(100%, var(--frame-width));
  min-height: 100svh;
  margin-inline: auto;
  overflow: hidden;
  background: var(--paper);
}

.sh-desktop-aside {
  display: none;
}

.sh-site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 27px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.sh-site-logo {
  width: 128px;
  height: 52px;
  display: flex;
  align-items: center;
}

.sh-site-logo img {
  width: 100%;
  height: auto;
}

.sh-menu-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: var(--forest);
  cursor: pointer;
}

.sh-menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.sh-menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.sh-menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.sh-site-menu {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  align-items: end;
  visibility: hidden;
  background: rgba(31, 37, 33, 0.34);
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.sh-site-menu.sh-is-open {
  visibility: visible;
  opacity: 1;
}

.sh-menu-inner {
  width: min(100%, var(--frame-width));
  margin: 0 auto;
  padding: 118px 36px 56px;
  border-radius: 34px 34px 0 0;
  background: #fff;
  transform: translateY(28px);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-site-menu.sh-is-open .sh-menu-inner {
  transform: translateY(0);
}

.sh-menu-label,
.sh-page-name,
.sh-eyebrow,
.sh-section-label,
.sh-feature-number,
.sh-step-number,
.sh-aside-kicker,
.sh-aside-index,
.sh-aside-scroll {
  margin: 0;
  font-family: var(--font-latin);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sh-page-name {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sh-menu-label {
  margin-bottom: 26px;
  color: var(--coral);
  font-size: 14px;
}

.sh-menu-inner a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.sh-hero {
  position: relative;
  padding: 0 0 105px;
  background: #fff;
}

.sh-hero-copy {
  padding: 134px var(--gutter) 68px;
}

.sh-eyebrow {
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.sh-hero h1 {
  margin: 28px 0 0;
  font-size: clamp(40px, 11.3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.sh-hero-lead {
  margin: 53px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
}

.sh-hero-description {
  max-width: 320px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.sh-button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.sh-button:hover {
  transform: translateY(-2px);
}

.sh-button--primary {
  margin-top: 45px;
  background: var(--forest);
  color: #fff;
}

.sh-button--primary:hover {
  background: var(--deep-forest);
}

.sh-hero-photo {
  height: 428px;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 50px 20px 50px 20px;
  rotate: 0deg;
  transform-origin: center;
}

.sh-hero-photo img,
.sh-feature-photo img,
.sh-collage-photo img,
.sh-cycle-photo img,
.sh-safety-photo img,
.sh-final-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sh-hero-photo img {
  object-position: 54% center;
}

.sh-hero-caption {
  width: calc(100% - 70px);
  margin: 23px 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 10px;
  rotate: 0deg;
}

.sh-hero-caption span {
  color: var(--coral);
  font-family: var(--font-latin);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sh-hero-caption strong {
  font-size: 12px;
}

.sh-section-white {
  background: var(--paper);
}

.sh-statement {
  padding: 148px var(--gutter) 138px;
  background: var(--sage);
}

.sh-section-label {
  color: var(--coral);
  font-size: 17px;
  line-height: 1.5;
}

.sh-statement .sh-section-label {
  color: var(--forest);
  font-size: clamp(38px, 10vw, 43px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.sh-statement h2,
.sh-feature h2,
.sh-cycle h2,
.sh-safety h2,
.sh-final-cta h2 {
  margin: 40px 0 0;
  font-size: clamp(28px, 7.8vw, 33px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.sh-statement-body {
  margin-top: 68px;
}

.sh-statement-body p {
  margin: 0;
  color: var(--muted);
}

.sh-statement-body p + p {
  margin-top: 28px;
}

.sh-photo-collage {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: 220px 105px 205px;
  gap: 12px;
  padding: 0 18px 154px;
  background: #fff;
}

.sh-collage-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.sh-collage-photo--one {
  grid-row: 1 / 3;
  rotate: 0deg;
}

.sh-collage-photo--one img {
  object-position: 49% center;
}

.sh-collage-photo--two {
  margin-top: 40px;
  rotate: 0deg;
}

.sh-collage-photo--two img {
  object-position: 52% 64%;
}

.sh-collage-photo--three {
  grid-column: 1 / 3;
  margin: 0;
  rotate: 0deg;
}

.sh-collage-photo--three img {
  object-position: 63% 69%;
}

.sh-feature {
  padding: 118px 0 126px;
}

.sh-feature--relief {
  position: relative;
  margin-top: -30px;
  padding-top: 154px;
  border-radius: 50% 50% 0 0 / 34px 34px 0 0;
  background: var(--forest);
  color: #fff;
}

.sh-feature-heading {
  padding-inline: var(--gutter);
}

.sh-feature-heading--left {
  width: 88%;
}

.sh-feature-heading--right {
  width: 84%;
  margin-left: auto;
}

.sh-feature-number {
  color: var(--coral);
  font-size: 14px;
}

.sh-feature--relief .sh-feature-number {
  color: #f7c4c0;
}

.sh-section-label--light {
  color: #fff;
}

.sh-feature-heading .sh-section-label {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(38px, 10.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.sh-feature--relief .sh-feature-heading .sh-section-label {
  color: #fff;
}

.sh-feature-heading h2 {
  margin-top: 32px;
}

.sh-feature-photo {
  overflow: hidden;
}

.sh-feature-photo--wide {
  height: 312px;
  margin: 67px 22px 0;
  border-radius: 18px;
  rotate: 0deg;
}

.sh-feature-photo--wide img {
  object-position: 56% center;
}

.sh-feature-copy {
  padding: 54px var(--gutter) 0;
}

.sh-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.sh-feature-copy p + p {
  margin-top: 24px;
}

.sh-feature-copy--light p {
  color: rgba(255, 255, 255, 0.92);
}

.sh-feature-copy--narrow {
  width: 88%;
}

.sh-text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
  padding: 11px 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.sh-text-link--light {
  color: #fff;
}

.sh-feature--share {
  padding-top: 142px;
  background: #fff;
}

.sh-feature-photo--portrait {
  width: calc(100% - 72px);
  height: 470px;
  margin: 65px 0 0 72px;
  border-radius: 44px 0 0 44px;
  rotate: 0deg;
  transform-origin: right center;
}

.sh-feature-photo--portrait img {
  object-position: 49% center;
}

.sh-feature--volunteer {
  padding-top: 138px;
  background: var(--sage);
}

.sh-feature-photo--landscape {
  width: calc(100% - 44px);
  height: 258px;
  margin: 0 44px 75px 0;
  border-radius: 0 32px 32px 0;
  rotate: 0deg;
  transform-origin: left center;
}

.sh-feature-photo--landscape img {
  object-position: 50% 62%;
}

.sh-feature-heading--right + .sh-feature-copy {
  padding-top: 51px;
}

.sh-cycle {
  padding: 148px 0 0;
  background: var(--deep-forest);
  color: #fff;
}

.sh-cycle-copy {
  padding: 0 var(--gutter) 74px;
}

.sh-cycle h2 {
  font-size: clamp(34px, 9.4vw, 40px);
  line-height: 1.47;
}

.sh-cycle .sh-section-label {
  color: #f7c4c0;
  font-size: clamp(34px, 9vw, 40px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.sh-cycle .sh-section-label + h2 {
  margin-top: 42px;
}

.sh-cycle-copy > p:last-child {
  margin: 43px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.sh-cycle-photo {
  height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 54px 54px 0 0;
}

.sh-cycle-photo img {
  object-position: 61% 62%;
}

/* アプリの実画面（横スクロールで見せる） */
.sh-screens {
  padding: 132px 0 128px;
  background: var(--sage);
}

.sh-screens-heading {
  padding-inline: var(--gutter);
  text-align: center;
}

.sh-screens-heading h2 {
  margin: 26px 0 0;
  font-size: 29px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.sh-screens-heading .sh-section-label {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.sh-screens-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sh-screen-rail {
  display: flex;
  gap: 20px;
  margin: 54px 0 0;
  padding: 0 var(--gutter) 8px;
  overflow-x: auto;
  list-style: none;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sh-screen-rail::-webkit-scrollbar {
  display: none;
}

.sh-screen-card {
  flex: 0 0 216px;
  scroll-snap-align: center;
}

.sh-screen-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(37, 43, 39, 0.08);
  border-radius: 22px;
  box-shadow:
    0 2px 4px rgba(37, 43, 39, 0.04),
    0 18px 34px -22px rgba(37, 43, 39, 0.5);
}

.sh-screen-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.sh-screen-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.sh-screens-note {
  margin: 34px var(--gutter) 0;
  color: var(--muted);
  font-size: 12px;
}

.sh-how {
  padding: 150px 0 142px;
  background: var(--paper);
}

.sh-how-heading {
  padding-inline: var(--gutter);
  text-align: center;
}

.sh-how-heading h2,
.sh-faq-heading h2 {
  margin: 26px 0 0;
  font-size: 29px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.sh-how-heading .sh-section-label,
.sh-faq-heading .sh-section-label,
.sh-safety-copy .sh-section-label {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.sh-how-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sh-step-rail {
  margin-top: 77px;
  padding: 0 var(--gutter);
}

.sh-step-list {
  display: grid;
  gap: 67px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-step-list li {
  position: relative;
  width: 78%;
  min-height: 205px;
  padding: 26px 0 0;
}

.sh-step-number {
  display: block;
  color: var(--coral);
  font-size: 14px;
}

.sh-step-list strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.035em;
}

.sh-step-list p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sh-step-item::before {
  position: absolute;
  z-index: 0;
  top: -6px;
  right: -44px;
  color: #f4f1eb;
  font-family: var(--font-latin);
  font-size: 132px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.sh-step-item > * {
  position: relative;
  z-index: 1;
}

.sh-step-item--one::before {
  content: "01";
}

.sh-step-item--two {
  margin-left: auto;
  text-align: right;
}

.sh-step-item--two::before {
  right: auto;
  left: -50px;
  content: "02";
  color: #edf3ee;
}

.sh-step-item--three::before {
  content: "03";
  color: #f8eeee;
}

.sh-how-button {
  margin: 64px var(--gutter) 0;
}

.sh-safety {
  padding: 132px 0 132px;
  background: var(--sage);
}

.sh-safety-photo {
  width: calc(100% - 58px);
  height: 285px;
  margin: 0 0 0 58px;
  overflow: hidden;
  border-radius: 34px 0 0 34px;
}

.sh-safety-photo img {
  object-position: 51% center;
}

.sh-safety-copy {
  padding: 72px var(--gutter) 0;
}

.sh-safety-copy > p:not(.sh-section-label) {
  margin: 39px 0 0;
  color: var(--muted);
}

.sh-faq {
  padding: 120px var(--gutter) 128px;
  background: var(--paper);
}

.sh-faq-heading {
  margin-bottom: 59px;
}

.sh-faq-list details {
  border-bottom: 1px solid var(--line);
}

.sh-faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.sh-faq-list summary::-webkit-details-marker {
  display: none;
}

.sh-faq-list summary span {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.sh-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.sh-faq-list details p {
  margin: 0;
  padding: 0 34px 27px 0;
  color: var(--muted);
  font-size: 14px;
}

.sh-faq-link {
  margin-top: 35px;
}

.sh-final-cta {
  padding: 103px 0 118px;
  background: var(--forest);
  color: #fff;
}

.sh-final-gallery {
  display: grid;
  grid-template-columns: 1.48fr 1fr;
  grid-template-rows: 178px 178px;
  gap: 10px;
  padding: 0 15px;
}

.sh-final-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.sh-final-gallery__large {
  grid-row: 1 / 3;
}

.sh-final-gallery__large img {
  object-position: 51% 62%;
}

.sh-final-gallery figure:nth-child(2) img {
  object-position: 56% center;
}

.sh-final-gallery figure:nth-child(2) {
  rotate: 0deg;
}

.sh-final-gallery figure:nth-child(3) img {
  object-position: 50% center;
}

.sh-final-gallery figure:nth-child(3) {
  rotate: 0deg;
}

.sh-final-copy {
  padding: 75px var(--gutter) 0;
}

.sh-final-copy > p:not(.sh-section-label) {
  margin: 37px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.sh-button--coral {
  margin-top: 45px;
  background: var(--coral);
  color: #fff;
}

.sh-button--coral:hover {
  background: #a83c38;
}

.sh-site-footer {
  padding: 85px var(--gutter) 118px;
  background: #fff;
}

.sh-footer-logo {
  width: 160px;
  height: auto;
}

.sh-footer-copy {
  margin: 30px 0 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.65;
}

.sh-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 56px;
}

.sh-footer-links a {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.sh-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
}

.sh-social-links a {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
}

.sh-site-footer small {
  display: block;
  margin-top: 56px;
  color: #69716c;
  font-family: var(--font-latin);
  font-size: 10px;
}

.sh-mobile-sticky-cta {
  position: fixed;
  z-index: 30;
  right: max(17px, calc((100vw - var(--frame-width)) / 2 + 17px));
  bottom: max(17px, env(safe-area-inset-bottom));
  min-width: 150px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 15px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 30px rgba(52, 42, 38, 0.18);
  font-size: 14px;
  font-weight: 700;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sh-mobile-sticky-cta.sh-is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}

/*
 * スクロール表示アニメの初期状態（透明・少しずらす）。
 *
 * ⚠️ 必ず html.sh-motion-ready の中に置くこと。素の [data-motion] に opacity:0 を
 *    書くと「JSが動かない＝本文が永久に見えない」になる（2026-08-06、Instagramの
 *    アプリ内ブラウザでLPが真っ白になった事故の原因）。
 *    このクラスは layout.tsx のインラインスクリプトが付け、home-static.js が
 *    生きていることを確認できないときは外す＝JS事故でも本文は必ず見える。
 */
html.sh-motion-ready [data-motion] {
  opacity: 0;
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--sh-motion-delay, 0ms);
  will-change: opacity, transform;
}

html.sh-motion-ready [data-motion="up"] {
  transform: translateY(24px);
}

html.sh-motion-ready [data-motion="left"] {
  transform: translateX(-24px);
}

html.sh-motion-ready [data-motion="right"] {
  transform: translateX(24px);
}

html.sh-motion-ready [data-motion="zoom"] {
  transform: scale(0.985);
}

html.sh-motion-ready [data-motion].sh-is-visible {
  opacity: 1;
  transform: none;
}

html.sh-motion-ready [data-motion="zoom"] img {
  transform: translate3d(0, var(--sh-parallax-y, 0), 0) scale(1.055);
  transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

html.sh-motion-ready [data-motion="zoom"].sh-is-visible img {
  transform: translate3d(0, var(--sh-parallax-y, 0), 0) scale(1.018);
}

html.sh-motion-ready [data-motion="zoom"].sh-parallax-active img {
  will-change: transform;
}

@media (min-width: 900px) {
  body {
    background: var(--forest);
  }

  .sh-page-frame {
    z-index: 3;
    box-shadow: none;
  }

  .sh-desktop-aside {
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: calc((100vw - var(--frame-width)) / 2);
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3.8vw, 64px);
    overflow: hidden;
    background: var(--forest);
    color: #fff;
  }

  .sh-desktop-aside--left {
    left: 0;
    justify-content: space-between;
    align-items: flex-start;
  }

  .sh-desktop-aside--right {
    right: 0;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
  }

  .sh-aside-logo {
    width: clamp(122px, 12vw, 178px);
    height: auto;
    filter: brightness(0) invert(1);
  }

  .sh-aside-story {
    position: relative;
    width: min(100%, 330px);
    padding-bottom: 22px;
  }

  .sh-aside-cat {
    position: absolute;
    z-index: 1;
    top: clamp(112px, 14vh, 138px);
    right: clamp(-6px, 0.5vw, 8px);
    width: clamp(72px, 7.4vw, 106px);
    height: auto;
    display: block;
    margin: 0;
  }

  .sh-aside-girl {
    position: absolute;
    top: clamp(24px, 4vh, 46px);
    left: clamp(18px, 2.7vw, 42px);
    width: clamp(124px, 12.5vw, 180px);
    height: auto;
  }

  .sh-aside-kicker,
  .sh-aside-index {
    color: #f5b0aa;
    font-size: 11px;
  }

  .sh-aside-copy {
    margin: 31px 0 0;
    padding-right: clamp(20px, 2vw, 34px);
    color: #fff;
    font-size: clamp(22px, 2.1vw, 32px);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.55;
  }

  .sh-aside-note {
    margin: 38px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-latin);
    font-size: 12px;
  }

  .sh-aside-social {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-latin);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .sh-aside-position {
    margin-top: clamp(310px, 43vh, 420px);
  }

  .sh-aside-section {
    margin: 24px 0 0;
    color: #fff;
    font-family: var(--font-latin);
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .sh-aside-scroll {
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
  }

  .sh-aside-side-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.09);
    font-family: var(--font-latin);
    font-size: clamp(46px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.9;
  }

  .sh-site-menu {
    left: calc((100vw - var(--frame-width)) / 2);
    right: calc((100vw - var(--frame-width)) / 2);
  }
}

@media (min-width: 900px) and (max-height: 720px) {
  .sh-aside-cat {
    top: 99px;
    width: 68px;
  }

  .sh-aside-copy {
    margin-top: 20px;
  }

  .sh-aside-note {
    display: none;
  }

  .sh-aside-position {
    margin-top: 270px;
  }

  .sh-aside-girl {
    width: 120px;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .sh-aside-cat {
    top: 94px;
    right: -2px;
    width: 64px;
  }

  .sh-aside-copy {
    font-size: 20px;
  }

  .sh-aside-side-copy {
    font-size: 42px;
  }

  .sh-aside-girl {
    left: 8px;
    width: 112px;
  }
}

@media (max-width: 374px) {
  :root {
    --gutter: 28px;
  }

  .sh-site-header {
    left: 0;
    right: 0;
  }

  .sh-hero h1 {
    font-size: 39px;
  }

  .sh-hero-photo {
    height: 402px;
  }

  .sh-feature-photo--portrait {
    width: calc(100% - 54px);
    margin-left: 54px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  /* 上の html.sh-motion-ready 付きルールより詳細度を高くして必ず打ち消す */
  html.sh-motion-ready [data-motion] {
    opacity: 1;
    transform: none;
  }

  html.sh-motion-ready [data-motion="zoom"] img {
    transform: none;
  }
}

/* Isolate the restored 4174 home from the shared application shell. */
body:has([data-static-home]) > .desktop-frame,
body:has([data-static-home]) > .skip-link,
body:has([data-static-home]) > .site-rail > .site-header {
  display: none !important;
}

body:has([data-static-home]) > .site-rail {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

body:has([data-static-home]) > .site-rail > .site-footer {
  width: min(100%, var(--frame-width));
  margin-inline: auto;
}

[data-static-home] {
  display: contents;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

[data-static-home] h1,
[data-static-home] h2,
[data-static-home] h3 {
  color: inherit;
}


/* --- アプリダウンロード誘導（App セクション末尾） --- */
.sh-dl {
  margin-top: 34px;
  background: var(--deep-forest);
  border-radius: 24px;
  padding: 40px 30px 34px;
  text-align: center;
  color: #fff;
}
.sh-dl-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 14px;
}
.sh-dl h3 {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 12px;
}
.sh-dl-copy {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
}
.sh-dl-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sh-dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #10130f;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 9px 18px 9px 14px;
  color: #fff;
  opacity: 0.92;
  /* App Store のバッジはリンクになった（2026-08-20 公開）。既定の下線を消す。
     Google Play 側はまだ span のままなので、この指定は両方に効いて問題ない。 */
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a.sh-dl-badge:hover,
a.sh-dl-badge:focus-visible {
  opacity: 1;
}
.sh-dl-badge svg {
  width: 22px;
  height: 22px;
}
.sh-dl-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.sh-dl-badge-text small {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.sh-dl-note {
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.sh-dl-note a {
  color: inherit;
}


/* --- 写真の角丸を廃止（編集的な直角に統一） --- */
.sh-hero-photo, .sh-collage-photo, .sh-feature-photo--wide,
.sh-feature-photo--portrait, .sh-feature-photo--landscape,
.sh-cycle-photo, .sh-screen-card img, .sh-safety-photo,
.sh-final-gallery figure, .sh-final-gallery figure img {
  border-radius: 0 !important;
}
.sh-screen-card img { border: 1px solid #d9ddd7; }

/* aboutセクションからフラワーロス解説記事への内部リンク */
.sh-statement-link {
  margin-top: 34px !important;
}
.sh-statement-link a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: #2f6048;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}
