@charset "utf-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .shine-rainbow-bar        - ロゴのにじいろを帯にした7色グラデーションバー（ヘッダー上端／フッター上端）
 * .shine-header             - sticky（position:sticky）＋クリーム背景のヘッダー。スクロールで白背景へ
 * .shine-header__inner      - ヘッダー内側（高さ固定を解除し wrap 可能に）
 * .shine-header__logo       - 画像ロゴ＋2行の補足テキスト横並び
 * .shine-header__nav        - アイコン画像＋日本語1段のナビ（共通の EN/JA 2段構成ではない）
 * .shine-nav-icon           - ナビ項目のクレヨンアイコン（-8deg 傾き）
 * .shine-tel                - TELラベル付き電話番号（英字フォント）
 * .shine-sns                - Instagram 円形ボタン（公式グラデーション）
 * .shine-sns__icon          - Instagramマーク本体。アイコンフォントに依存しないCSS描画
 *                             （角丸枠＋レンズ円＋右上ドット。色は currentColor 追従）
 * .shine-btn                - 共通 .btn のインライン化（幅auto・ボーダーなし・weight400）
 * .shine-btn--sm/--md/--lg/--wide - ボタンサイズ差分
 * .shine-btn--white         - 白地・濃いブルー文字（写真上／色面上のボタン）
 * .shine-btn--pop           - 下方向のベタ影（0 4px 0）を持つ押し込み型ボタン
 * .shine-btn--sub           - 白地＋くすみブルー枠線＋濃いブルー文字
 * .shine-sec-head           - セクション見出し（EN小＋JA・weight400・字間0.34em）
 * .shine-sec-head__lead     - 見出し下のリード文
 * .shine-sec-head__note     - 仮テキスト注記
 * .shine-rainbow-dots       - 7色ドット列（見出し上の装飾）
 * .shine-hero               - 下層ページヒーロー（高さ240px・くすみブルー45%暗幕）
 * .shine-card               - 白・角丸22〜28px・くすみブルー透過影のカード
 * .shine-card--hover        - ホバーで4px浮く
 * .shine-w-860〜1100        - デザイン元データのコンテナ幅（860/940/1000/1080/1100px）
 * .shine-meta-date          - 記事日付（英字フォント・#9FBFC6）
 * .shine-meta-cat           - 記事カテゴリのクリームpillバッジ
 * .shine-side               - ブログ右サイドバー（白カード3枚）
 * .shine-page-link          - 円形ページャ／カテゴリpillリンク
 * .shine-footer*            - フッター（白背景・2カラムグリッド・クリームのコピーライト行）
 * .js-fade                  - スクロールフェードイン（IntersectionObserver）
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * ■ 装飾パターン不足
 *   - 虹色（7色）グラデーション帯・7色ドット列。ロゴのにじいろを線・点で使う指定が
 *     共通CSSに存在しない（bg-stripe / heading-deco-shape はいずれも単色系）
 *   - 押し込み型ボタン（box-shadow: 0 4px 0）。共通 .btn 群は影なし or 通常の box-shadow のみ
 *   - Instagram 公式グラデーションの円形SNSボタン（.btn-sns はグラデ2色のみ）
 *
 * ■ 構造不足
 *   - ヘッダーの「アイコン画像＋日本語1段」ナビ。共通 .header__nav-item は
 *     flex-direction:column の EN/JA 2段固定で、横並び1段にできない
 *   - ロゴ画像の右に2行テキストを添えるヘッダーロゴ（.header-logo はアイコン丸＋テキスト）
 *   - 1日の流れの「左:児童発達支援／中央:時計＋時刻の帯／右:放課後等デイ」3カラム対比表。
 *     共通 .timeline は単一系列の縦並びのみ
 *
 * ■ 値の粒度不足
 *   - セクション padding が 64/66/70/76/56/44px 等、utility の5px刻み・
 *     40以上は tablet で自動半減、という粒度と合わない
 *   - コンテナ幅 860/940/1000/1080/1100px（共通は 900/1200/1500 の3種のみ）
 *
 * ■ 状態不足
 *   - なし（hover utility で足りた）
 *
 * ■ 指定方向不足
 *   - なし
 *
 * ※ 配色・フォント・角丸・影・セクション余白は scss/site-config.scss で
 *    共通SCSSの !default 変数を上書きし、css/main.css を再コンパイルして反映している。
 *    ビルド: npx sass scss/site-config.scss css/main.css --style=compressed --no-source-map
 */

/* ==========================================================================
   1. base 上書き
   ========================================================================== */
a {
  color: #3E7F8B;
}
a:hover {
  opacity: 1;
  color: #E79A2B;
}
p {
  text-wrap: pretty;
}
body.is-nav-open {
  overflow: hidden;
}
/* main.css の overflow-x:hidden は body をスクロールコンテナ化し、
   ヘッダーの position:sticky を無効化してしまう。clip なら無効化されない
   （未対応ブラウザは hidden のまま） */
html,
body {
  overflow-x: clip;
}

/* Font Awesome 6 を読み込んでいるため、共通CSSの FA5 指定を差し替える */
.sp-nav__link::after {
  font-family: "Font Awesome 6 Free";
  margin-left: 10px;
}
.sp-nav__en {
  font-size: 1.5rem;
}

.container {
  max-width: 1160px;
  padding-left: 20px;
  padding-right: 20px;
}
.container-narrow {
  max-width: 900px;
  padding-left: 20px;
  padding-right: 20px;
}
.container-wide {
  max-width: 1500px;
  padding-left: 20px;
  padding-right: 20px;
}

.shine-w-1100 { max-width: 1100px; }
.shine-w-1080 { max-width: 1080px; }
.shine-w-1000 { max-width: 1000px; }
.shine-w-940  { max-width: 940px; }
.shine-w-860  { max-width: 860px; }

/* スクロールフェードイン --------------------------------------------------- */
.js-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fade.is-shown {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-fade { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   2. にじいろ装飾（ロゴ由来。面ではなく線・点で使う）
   ========================================================================== */
.shine-rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg,
    #E8453C 0 14%, #F5A623 14% 28%, #F7D64A 28% 42%,
    #4CAF50 42% 57%, #4FC3F7 57% 71%, #3B4FB8 71% 85%, #8E44AD 85% 100%);
}

.shine-rainbow-dots {
  display: flex;
  gap: 7px;
}
.shine-rainbow-dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.shine-rainbow-dots span:nth-child(1) { background: #E8453C; }
.shine-rainbow-dots span:nth-child(2) { background: #F5A623; }
.shine-rainbow-dots span:nth-child(3) { background: #F7D64A; }
.shine-rainbow-dots span:nth-child(4) { background: #4CAF50; }
.shine-rainbow-dots span:nth-child(5) { background: #4FC3F7; }
.shine-rainbow-dots span:nth-child(6) { background: #3B4FB8; }
.shine-rainbow-dots span:nth-child(7) { background: #8E44AD; }

/* ==========================================================================
   3. header
   ========================================================================== */
.shine-header {
  position: sticky;
  top: 0;
  background: #FFFCDD;
  box-shadow: 0 2px 14px rgba(127, 184, 193, 0.22);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}
.shine-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.shine-header__inner {
  max-width: 100%;
  height: auto;
  padding: 12px 24px;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.shine-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shine-header__logo img {
  height: 52px;
  width: auto;
  display: block;
}
.shine-header__logo-sub {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #7C8A8F;
  line-height: 1.5;
}

.shine-header__nav {
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-left: auto;
  margin-right: 0;
}
.shine-header__nav .header__nav-item > a {
  flex-direction: row;
  align-items: center;
  gap: 7px;
  padding: 4px 2px;
}
.shine-header__nav .header__nav-item > a::after {
  content: none;
}
.shine-nav-icon {
  width: 15px;
  height: auto;
  display: block;
  transform: rotate(-8deg);
}
.shine-header__nav-ja {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #41565C;
}
.shine-header__nav .header__nav-item > a:hover .shine-header__nav-ja {
  color: #E79A2B;
}
.shine-header__nav .header__nav-item--current .shine-header__nav-ja {
  color: #E79A2B;
}

.shine-header__right {
  gap: 12px;
  flex-wrap: wrap;
  height: auto;
}

/* 電話番号 ---------------------------------------------------------------- */
.shine-tel {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  color: #3E7F8B;
  white-space: nowrap;
}
.shine-tel:hover {
  color: #E79A2B;
}
.shine-tel__label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.1rem;
  color: #9FBFC6;
}
.shine-tel--white,
.shine-tel--white:hover {
  color: #fff;
}
.shine-tel--white .shine-tel__label {
  color: rgba(255, 255, 255, 0.75);
}

/* Instagram --------------------------------------------------------------- */
.shine-sns {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  background: radial-gradient(circle at 28% 100%, #FDD07A 0%, #F9A03F 18%, #E8483C 38%, #D62E7E 58%, #A02FBE 78%, #5B4BE0 100%);
}
.shine-sns:hover {
  color: #fff;
  opacity: 0.85;
}
.shine-sns--lg {
  width: 46px;
  height: 46px;
}

/* Instagram マーク（CDNのアイコンフォントに依存しないCSS描画）
   角丸の枠 + 中央のレンズ円 + 右上のドット */
.shine-sns__icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1.6px solid currentColor;
  border-radius: 5px;
}
.shine-sns__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}
.shine-sns__icon::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}
.shine-sns--lg .shine-sns__icon {
  width: 18px;
  height: 18px;
  border-radius: 5.5px;
}
.shine-sns--lg .shine-sns__icon::before {
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
}
.shine-sns--lg .shine-sns__icon::after {
  width: 2.2px;
  height: 2.2px;
}

/* SPナビ・ハンバーガー ---------------------------------------------------- */
.shine-nav-toggle {
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}
.sp-nav__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   4. button
   ========================================================================== */
.shine-btn {
  width: auto;
  max-width: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 1.5rem;
  font-weight: 400;
}
.shine-btn--sm { padding: 11px 22px; font-size: 1.4rem; }
.shine-btn--wide { padding: 13px 40px; }
.shine-btn--md { padding: 12px 26px; font-size: 1.4rem; }
.shine-btn--lg { padding: 15px 56px; font-size: 1.6rem; }

.shine-btn--pop {
  box-shadow: 0 4px 0 #5E9AA5;
}
.shine-btn--pop:hover {
  background: #8FC6CE;
  color: #fff;
}

.shine-btn--sub {
  border: 2px solid #7FB8C1;
  background: #fff;
  color: #3E7F8B;
}
.shine-btn--sub:hover {
  background: #7FB8C1;
  border-color: #7FB8C1;
  color: #fff;
}

.shine-btn--white {
  background: #fff;
  color: #3E7F8B;
}
.shine-btn--white:hover {
  background: #FFFCDD;
  color: #3E7F8B;
}

@media screen and (max-width: 639px) {
  .shine-btn { max-width: none; font-size: 1.4rem; }
}

/* ==========================================================================
   5. セクション見出し
   ========================================================================== */
.shine-sec-head .heading__en {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: #9FBFC6;
}
.shine-sec-head .heading__ja {
  margin-top: 6px;
  font-size: 2.9rem;
  font-weight: 400;
  color: #3E7F8B;
}
.shine-sec-head--lg .heading__ja {
  margin-top: 10px;
  font-size: 3rem;
}
.shine-sec-head__deco {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.shine-sec-head__deco img {
  width: 96px;
  height: auto;
  display: block;
}
.shine-sec-head__lead {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #6E7C81;
}
.shine-sec-head__note {
  margin-top: 12px;
  font-size: 1.3rem;
  color: #A8968F;
}

@media screen and (max-width: 639px) {
  .shine-sec-head .heading__ja,
  .shine-sec-head--lg .heading__ja { font-size: 2.2rem; }
  .shine-sec-head__lead { font-size: 1.4rem; }
}

/* ==========================================================================
   6. 下層ページヒーロー
   ========================================================================== */
.shine-hero {
  height: 240px;
}
.shine-hero .page-hero__overlay {
  background: rgba(62, 127, 139, 0.45);
}
.shine-hero .page-hero__content {
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 20px;
}
.shine-hero .heading__en {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: #fff;
}
.shine-hero .heading__ja {
  margin-top: 6px;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .shine-hero { height: 180px; }
  .shine-hero .heading__ja { font-size: 2.4rem; }
}

/* ==========================================================================
   7. カード共通
   ========================================================================== */
.shine-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(127, 184, 193, 0.2);
  overflow: hidden;
}
.shine-card--hover {
  transition: transform 0.2s ease;
}
.shine-card--hover:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.shine-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.shine-meta-date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  color: #9FBFC6;
}
.shine-meta-cat {
  padding: 3px 12px;
  border-radius: 999px;
  background: #FFFCDD;
  font-size: 1.1rem;
  color: #C9962E;
  line-height: 1.8;
}

/* ==========================================================================
   8. footer
   ========================================================================== */
.shine-footer {
  background: #fff;
}
.shine-footer-body {
  padding: 0;
}
.shine-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 20px;
}
.shine-footer__col {
  width: 100%;
}
.shine-footer__col--stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shine-footer__logo {
  margin-bottom: 18px;
}
.shine-footer__logo img {
  height: 64px;
  width: auto;
}
.shine-footer__info {
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 2;
  color: #5F6C71;
}
.shine-footer__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.shine-footer__map {
  height: 220px;
  margin-top: 0;
  border-radius: 22px;
}
.shine-footer__nav {
  gap: 10px 22px;
}
.shine-footer__nav .footer-body__nav-item a {
  font-size: 1.4rem;
  color: #5F6C71;
}
.shine-footer__nav .footer-body__nav-item a:hover {
  color: #E79A2B;
}
.shine-footer-bottom {
  padding: 20px;
  background: #FFFCDD;
}
.shine-footer-bottom .footer-bottom__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #A9BABF;
}
@media screen and (max-width: 639px) {
  .shine-footer__inner { padding: 40px 20px; }
  /* SPはハンバーガーメニューがあるためフッターナビは非表示 */
  .shine-footer__nav { display: none; }
}
