@charset "utf-8";
/* ============================================================
   cochi 採用LP v11 — base（土台・和文組版）

   ★中身は現行本番 cochi.mykino.jp のCSSをそのまま引き継いだもの。
     岩田さん指示「デザインは現行LPのまま」（2026-08-19）。
     LIM標準の素CSS4分割に合わせて切り分けただけで、値は書き換えていない。
   ============================================================ */

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
html,body{ overflow-x:hidden; }
@supports (overflow-x:clip){ html,body{ overflow-x:clip; } }

/* 和文の禁則と折り返し。現行LPに無かった分だけを足す（1文字孤立の防止） */
body{
  line-break:strict;
  overflow-wrap:break-word;
  word-break:auto-phrase;
}
img{ max-width:100%; height:auto; }
a{ color:inherit; }
button{ font:inherit; color:inherit; }

/* フォーカスリングは必ず見える状態を保つ */
:focus-visible{ outline:2px solid var(--sage); outline-offset:3px; }

/* 動きを減らす設定の人には動かさない */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
}
.visually-hidden{
  position:absolute; width:1px; height:1px;
  margin:-1px; padding:0; overflow:hidden;
  clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap;
}
