/*
Theme Name: TETOTE Brand Flow
Theme URI: https://tetoteandco.com/
Author: TÉTOTE&Co.
Author URI: https://tetoteandco.com/
Description: TÉTOTE&Co. のブランドサイト用テーマ。モリンガ・バランスサポート・法人導入を一枚で伝えるランディング型デザイン。
Version: 3.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tetote-brand-flow
Tags: one-page, landing, business, custom-logo, dark
*/

/* =========================================================
   1. デザイントークン（色・余白などをここで一元管理）
   ========================================================= */
:root{
  --bg-dark:#111;
  --bg-dark-2:#1c1b18;
  --bg-darkest:#0a0a0a;
  --bg-soft:#efe7db;
  --text-light:#f5f1ea;
  --text-muted:#ddd1c2;
  --text-soft:#555;
  --gold:#cda86e;
  --gold-deep:#9a7440;
  --footer-text:#b7a58a;
  --radius:26px;
  --section-pad:150px;
}

/* =========================================================
   2. リセット & ベース
   ========================================================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg-dark);
  color:var(--text-light);
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  line-height:1.9;
  overflow-x:hidden;
}

main{
  overflow:hidden;
}

img{
  max-width:100%;
}

a{
  color:inherit;
}

/* キーボード操作時のフォーカスを見やすく（アクセシビリティ） */
a:focus-visible,
.contact-button:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}

.container{
  width:min(1180px,92%);
  margin-inline:auto;
}

/* スクリーンリーダー用に隠す見出しなど */
.screen-reader-text{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

/* =========================================================
   3. ヒーロー（ロゴ中心・高級感ある導入）
   ========================================================= */

/* ---- ベース（旧テキスト型ヒーロー。フォールバック用に残す）---- */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  padding:120px 0;
}

.hero-logo{
  width:110px;
  height:auto;
  margin-bottom:34px;
}

/* =========================================================
   ロゴ主役のヒーロー（.hero--logo）
   アイボリー地にブランドロゴを大きく置く構成。
   ========================================================= */
.hero--logo{
  min-height:100vh;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  /* アイボリーの地。ロゴ画像の背景色と合わせる */
  background:
    radial-gradient(ellipse at 50% 38%, #ffffff 0%, #f4efe4 55%, #ece4d3 100%);
}

/* 上品な質感：細い金のフレームを内側に */
.hero--logo::before{
  content:"";
  position:absolute;
  inset:26px;
  border:1px solid rgba(154,116,64,.28);
  pointer-events:none;
  z-index:1;
}

/* 下端を黒へ静かにグラデーションさせ、次セクションへつなぐ */
.hero--logo::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:160px;
  background:linear-gradient(to bottom, rgba(17,17,17,0), rgba(17,17,17,.92));
  pointer-events:none;
  z-index:1;
}

.hero-logo-inner{
  position:relative;
  z-index:2;
  text-align:center;
  padding:80px 30px;
  width:min(720px,90%);
  /* 読み込み時にふわりと立ち上がる */
  animation:heroRise 1.4s ease both;
}

@keyframes heroRise{
  from{ opacity:0; transform:translateY(24px); }
  to{ opacity:1; transform:translateY(0); }
}

.hero-mark{
  margin-bottom:30px;
}

.hero-mark img,
.hero-mark .custom-logo{
  width:min(420px,72%);
  height:auto;
  display:block;
  margin:0 auto;
  /* ロゴは背景透過PNG。静かな影で奥行きを */
  filter:drop-shadow(0 18px 40px rgba(60,45,20,.16));
}

/* ロゴ下の細い区切り線 */
.hero-statement{
  position:relative;
  font-size:clamp(14px,1.7vw,18px);
  font-weight:400;
  letter-spacing:.08em;
  line-height:2;
  color:#5b513f;
  max-width:440px;
  margin:0 auto;
  padding-top:34px;
}

.hero-statement::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:46px;
  height:1px;
  background:rgba(154,116,64,.55);
}

/* スクロール誘導 */
.hero-scroll{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-top:56px;
  font-size:10px;
  letter-spacing:.34em;
  text-decoration:none;
  color:#9a7440;
}

.hero-scroll-line{
  width:1px;
  height:46px;
  background:linear-gradient(to bottom, rgba(154,116,64,.7), transparent);
  animation:scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse{
  0%,100%{ opacity:.35; transform:scaleY(.7); transform-origin:top; }
  50%{ opacity:1; transform:scaleY(1); transform-origin:top; }
}

@media (prefers-reduced-motion:reduce){
  .hero-logo-inner{ animation:none; }
  .hero-scroll-line{ animation:none; }
}

@media(max-width:700px){
  .hero--logo::before{ inset:16px; }
  .hero-logo-inner{ padding:60px 20px; }
  .hero-mark img,
  .hero-mark .custom-logo{ width:84%; }
}

/* =========================================================
   4. 共通セクション
   ========================================================= */
.section{
  padding:var(--section-pad) 0;
  position:relative;
}

.section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(255,255,255,.015), transparent);
  pointer-events:none;
}

.section-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.label{
  font-size:12px;
  letter-spacing:.32em;
  color:var(--gold);
  margin-bottom:20px;
  display:block;
}

.section h2{
  font-size:clamp(34px,5vw,68px);
  line-height:1.15;
  font-weight:300;
  margin-bottom:28px;
}

.lead{
  font-size:18px;
  line-height:2;
  color:var(--text-muted);
  max-width:620px;
}

.visual{
  margin-top:50px;
}

.visual img{
  width:100%;
  display:block;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  background:var(--bg-soft);
}

/* 明るい背景のセクション */
.soft{
  background:var(--bg-soft);
  color:#111;
}

.soft .lead{
  color:var(--text-soft);
}

.soft .label{
  color:var(--gold-deep);
}

/* =========================================================
   5. カード
   ========================================================= */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  margin-top:60px;
}

.card{
  padding:40px;
  border-radius:24px;
  background:rgba(255,255,255,.04);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.06);
}

.soft .card{
  background:#fff;
  border:1px solid rgba(0,0,0,.05);
}

.card h3{
  font-size:22px;
  font-weight:400;
  margin-bottom:18px;
}

.card ul{
  padding-left:18px;
}

.card li{
  margin-bottom:10px;
}

/* =========================================================
   6. ABOUT / SERVICES / CONTACT
   ========================================================= */
.about{
  text-align:center;
}

.about p{
  max-width:850px;
  margin-inline:auto;
  font-size:clamp(20px,3vw,34px);
  line-height:2;
  font-weight:300;
}

.services{
  padding-top:80px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.service-card{
  padding:36px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:transform .3s ease, border-color .3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(205,168,110,.4);
}

.service-card h3{
  font-size:20px;
  margin-bottom:14px;
  font-weight:400;
}

.contact{
  text-align:center;
  padding-bottom:180px;
}

.contact .lead{
  margin-inline:auto;
}

.contact-button{
  display:inline-block;
  margin-top:40px;
  padding:16px 42px;
  border:1px solid var(--gold);
  border-radius:999px;
  color:var(--text-light);
  text-decoration:none;
  letter-spacing:.2em;
  transition:.3s;
}

.contact-button:hover{
  background:var(--gold);
  color:#111;
}

/* =========================================================
   7. フッター
   ========================================================= */
footer.site-footer{
  background:var(--bg-darkest);
  padding:34px 0;
  text-align:center;
  font-size:12px;
  letter-spacing:.12em;
  color:var(--footer-text);
}

/* =========================================================
   8. スクロールフェード演出
   JS無効でも内容が見えるよう .js クラスが付いた時だけ隠す
   ========================================================= */
.js .fade{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 1s ease, transform 1s ease;
}

.js .fade.active{
  opacity:1;
  transform:translateY(0);
}

/* 動きを減らす設定の利用者には演出をオフに（アクセシビリティ） */
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }
  .js .fade{
    opacity:1;
    transform:none;
    transition:none;
  }
  .service-card:hover{
    transform:none;
  }
}

/* =========================================================
   9. レスポンシブ
   ========================================================= */
@media(max-width:900px){
  :root{
    --section-pad:100px;
  }

  .hero{
    padding:80px 0;
    min-height:auto;
  }

  .hero-grid,
  .section-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero-logo{
    width:85px;
    margin-bottom:22px;
  }

  .main-copy{
    font-size:56px;
  }

  .cards,
  .service-grid{
    grid-template-columns:1fr;
  }

  .about p{
    font-size:26px;
  }

  .card,
  .service-card{
    padding:28px;
  }
}

/* =========================================================
   10. ヘッダーナビ（メニュー設定時のみ表示される）
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(17,17,17,.85);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:30px;
}

.site-header-brand{
  font-size:18px;
  letter-spacing:.1em;
  text-decoration:none;
  color:var(--text-light);
}

.site-header-brand img{
  max-height:44px;
  width:auto;
}

.site-nav-list{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}

.site-nav-list a{
  font-size:13px;
  letter-spacing:.16em;
  text-decoration:none;
  color:var(--text-muted);
  transition:color .3s;
}

.site-nav-list a:hover,
.site-nav-list .current-menu-item a{
  color:var(--gold);
}

/* =========================================================
   11. 投稿・固定ページ共通（記事本文）
   ========================================================= */
.container--narrow{
  width:min(780px,92%);
}

.page-section{
  padding-top:120px;
}

.archive-header,
.entry-header{
  margin-bottom:50px;
}

.entry-title{
  font-size:clamp(30px,4.5vw,52px);
  font-weight:300;
  line-height:1.3;
  letter-spacing:.02em;
}

.archive-description{
  margin-top:14px;
  color:var(--text-muted);
}

.entry-meta{
  font-size:13px;
  letter-spacing:.12em;
  color:var(--gold);
  margin-bottom:14px;
}

.entry-thumbnail{
  margin-bottom:40px;
}

.entry-thumbnail img{
  width:100%;
  height:auto;
  border-radius:var(--radius);
  display:block;
}

/* 記事本文の余白・要素スタイル */
.entry-content{
  font-size:17px;
  line-height:2;
  color:var(--text-muted);
}

.entry-content > * + *{
  margin-top:1.5em;
}

.entry-content h2{
  font-size:28px;
  font-weight:400;
  color:var(--text-light);
  margin-top:2em;
}

.entry-content h3{
  font-size:22px;
  font-weight:400;
  color:var(--text-light);
  margin-top:1.8em;
}

.entry-content a{
  color:var(--gold);
  text-underline-offset:3px;
}

.entry-content img{
  height:auto;
  border-radius:16px;
}

.entry-content ul,
.entry-content ol{
  padding-left:1.4em;
}

.entry-content blockquote{
  border-left:2px solid var(--gold);
  padding-left:24px;
  color:var(--text-light);
  font-style:italic;
}

.entry-content code{
  background:rgba(255,255,255,.07);
  padding:2px 8px;
  border-radius:6px;
  font-size:.9em;
}

.entry-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
  margin-top:50px;
}

.entry-tags li a{
  font-size:12px;
  letter-spacing:.08em;
  padding:6px 16px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  text-decoration:none;
  color:var(--text-muted);
}

.page-links{
  margin-top:40px;
  font-size:14px;
  letter-spacing:.1em;
}

/* 前後の投稿リンク */
.post-nav{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:70px;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:14px;
}

.post-nav a{
  color:var(--text-muted);
  text-decoration:none;
  transition:color .3s;
}

.post-nav a:hover{
  color:var(--gold);
}

.post-nav-next{
  text-align:right;
  margin-left:auto;
}

/* =========================================================
   12. 投稿一覧（カード）
   ========================================================= */
.post-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:36px;
}

.post-card{
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:transform .3s ease, border-color .3s ease;
}

.post-card:hover{
  transform:translateY(-6px);
  border-color:rgba(205,168,110,.4);
}

.post-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
  height:100%;
}

.post-card-thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.post-card-body{
  padding:30px;
}

.post-card-title{
  font-size:21px;
  font-weight:400;
  line-height:1.5;
  margin-bottom:14px;
  color:var(--text-light);
}

.post-card-excerpt{
  font-size:14px;
  line-height:1.9;
  color:var(--text-muted);
}

.no-posts{
  color:var(--text-muted);
  padding:40px 0;
}

/* ページネーション */
.pagination{
  margin-top:70px;
}

.pagination .nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  text-decoration:none;
  color:var(--text-muted);
  font-size:14px;
  transition:.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#111;
}

/* 検索フォーム */
.search-again{
  margin-top:30px;
}

.search-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.search-form .search-field{
  flex:1;
  min-width:220px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--text-light);
  font-size:15px;
}

.search-form .search-submit{
  padding:12px 28px;
  border-radius:999px;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--text-light);
  letter-spacing:.1em;
  cursor:pointer;
  transition:.3s;
}

.search-form .search-submit:hover{
  background:var(--gold);
  color:#111;
}

/* =========================================================
   13. フッター（メニュー・ウィジェット）
   ========================================================= */
.footer-widgets{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:36px;
  text-align:left;
  padding-bottom:34px;
  margin-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.footer-widget-title{
  font-size:14px;
  font-weight:400;
  letter-spacing:.1em;
  color:var(--text-light);
  margin-bottom:14px;
}

.footer-nav-list{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:center;
  list-style:none;
  padding:0;
  margin:0 0 18px;
}

.footer-nav-list a{
  font-size:12px;
  letter-spacing:.12em;
  text-decoration:none;
  color:var(--footer-text);
}

.footer-nav-list a:hover{
  color:var(--gold);
}

.site-copyright{
  margin:0;
}

/* =========================================================
   14. コメント
   ========================================================= */
.comments-area{
  margin-top:70px;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.08);
}

.comment-list{
  list-style:none;
  padding:0;
}

.comment-list .comment{
  margin-bottom:24px;
}

.comment-body{
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:24px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea{
  width:100%;
  padding:12px 16px;
  margin-top:6px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--text-light);
  font-family:inherit;
}

.comment-form .submit{
  margin-top:16px;
  padding:12px 32px;
  border-radius:999px;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--text-light);
  letter-spacing:.1em;
  cursor:pointer;
}

/* 一覧カードのレスポンシブ */
@media(max-width:900px){
  .post-list{
    grid-template-columns:1fr;
  }
  .site-header-inner{
    flex-direction:column;
    gap:14px;
  }
  .post-nav{
    flex-direction:column;
  }
  .post-nav-next{
    text-align:left;
    margin-left:0;
  }
}

/* =========================================================
   15. PHILOSOPHY（BALANCE → ALIGNMENT → WELLNESS の3段）
   ========================================================= */
.philosophy{
  text-align:center;
}

.philo-intro{
  font-size:clamp(18px,2.6vw,26px);
  font-weight:300;
  color:var(--text-light);
  margin-bottom:70px;
}

.philo-flow{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.philo-step{
  width:min(680px,100%);
  padding:46px 40px;
  border-radius:24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  position:relative;
}

/* 段ごとにゴールドの濃淡をつけて流れを感じさせる */
.philo-step:nth-child(1){
  background:linear-gradient(135deg, rgba(205,168,110,.05), rgba(255,255,255,.03));
}
.philo-step:nth-child(3){
  background:linear-gradient(135deg, rgba(205,168,110,.12), rgba(255,255,255,.03));
}
.philo-step:nth-child(5){
  background:linear-gradient(135deg, rgba(205,168,110,.20), rgba(255,255,255,.04));
}

.philo-num{
  display:block;
  font-size:13px;
  letter-spacing:.3em;
  color:var(--gold);
  margin-bottom:14px;
}

.philo-word{
  display:block;
  font-size:clamp(26px,4vw,40px);
  font-weight:300;
  letter-spacing:.16em;
  color:var(--text-light);
  margin-bottom:10px;
}

.philo-title{
  font-size:clamp(20px,2.6vw,26px);
  font-weight:400;
  color:var(--gold);
  margin-bottom:16px;
}

.philo-text{
  font-size:15px;
  line-height:2;
  color:var(--text-muted);
  max-width:480px;
  margin-inline:auto;
}

.philo-arrow{
  font-size:26px;
  color:var(--gold);
  opacity:.6;
  line-height:1;
  padding:6px 0;
}

/* =========================================================
   16. BUSINESS グリッド（5領域）
   ========================================================= */
.services-heading{
  font-size:clamp(28px,4vw,46px);
  font-weight:300;
  margin-bottom:10px;
}

/* 5枚を収めるグリッド。広い画面では1行、中間で折り返す */
.service-grid--5{
  grid-template-columns:repeat(5,1fr);
}

.service-card{
  position:relative;
}

.service-no{
  display:block;
  font-size:12px;
  letter-spacing:.2em;
  color:var(--gold);
  margin-bottom:12px;
}

@media(max-width:1100px){
  .service-grid--5{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:900px){
  .service-grid--5{
    grid-template-columns:1fr;
  }
  .philo-step{
    padding:34px 26px;
  }
}

/* =========================================================
   17. CONTACT のリンク群（Instagram / LINE / メール）
   ========================================================= */
.contact-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
  margin-top:40px;
}

/* contact-links 内ではボタン自体の上マージンをリセット */
.contact-links .contact-button{
  margin-top:0;
}

@media(max-width:600px){
  .contact-links{
    flex-direction:column;
    align-items:center;
  }
  .contact-links .contact-button{
    width:100%;
    max-width:280px;
    text-align:center;
  }
}


/* =========================================================
   追加アニメーション演出
   ========================================================= */

/* 背景がゆっくり呼吸する */
.hero--logo{
  background-size:140% 140%;
  animation:heroBackgroundFlow 18s ease-in-out infinite alternate;
}

@keyframes heroBackgroundFlow{
  0%{
    background-position:50% 40%;
  }
  100%{
    background-position:50% 55%;
  }
}

/* 光のヴェール */
.hero--logo .hero-logo-inner::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(205,168,110,.18), transparent 42%);
  filter:blur(30px);
  opacity:.8;
  animation:lightFloat 10s ease-in-out infinite alternate;
  pointer-events:none;
  z-index:-1;
}

@keyframes lightFloat{
  from{
    transform:translateY(-10px) scale(1);
  }
  to{
    transform:translateY(12px) scale(1.04);
  }
}

/* ロゴを静かに浮遊 */
.hero-mark img,
.hero-mark .custom-logo{
  animation:logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-8px);
  }
  100%{
    transform:translateY(0px);
  }
}

/* スクロール時の立体感 */
.fade{
  opacity:0;
  transform:translateY(40px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.22,1,.36,1);
  will-change:transform,opacity;
}

.fade.active{
  opacity:1;
  transform:translateY(0);
}

/* カードの浮き上がり */
.service-card{
  transition:
    transform .5s ease,
    box-shadow .5s ease,
    border-color .5s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  border-color:rgba(205,168,110,.4);
}

/* スクロール時に少し奥行きを出す */
.parallax-soft{
  transform:translateY(var(--parallax-offset, 0px));
  transition:transform .15s linear;
}

/* スクロール誘導ライン */
.hero-scroll-line{
  animation:scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse{
  0%{
    transform:scaleY(.4);
    opacity:.4;
  }
  50%{
    transform:scaleY(1);
    opacity:1;
  }
  100%{
    transform:scaleY(.4);
    opacity:.4;
  }
}



/* =========================================================
   強めパララックス演出
   ========================================================= */

.hero--logo{
  overflow:hidden;
  position:relative;
}

/* 背景ズーム */
.hero--logo::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:inherit;
  background-size:cover;
  background-position:center;
  transform:scale(1.15);
  animation:heroZoom 18s ease-in-out infinite alternate;
  z-index:0;
}

.hero--logo > *{
  position:relative;
  z-index:2;
}

@keyframes heroZoom{
  0%{
    transform:scale(1.12) translateY(0px);
  }
  100%{
    transform:scale(1.22) translateY(-30px);
  }
}

/* ヒーローテキスト大きく流れる */
.hero-copy,
.hero-subcopy,
.hero-cta{
  opacity:0;
  transform:translateY(80px);
  animation:heroTextReveal 1.6s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-subcopy{
  animation-delay:.3s;
}

.hero-cta{
  animation-delay:.6s;
}

@keyframes heroTextReveal{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* スクロール時の大きめパララックス */
.parallax-deep{
  transition:transform .1s linear;
  will-change:transform;
}

/* セクション全体に奥行き */
section{
  transform-style:preserve-3d;
}

/* 画像ズーム */
img{
  transition:transform 1s ease;
}

.section-image:hover img,
.hero-image:hover img{
  transform:scale(1.08);
}

/* 大きく浮遊 */
.service-card{
  transform:translateY(0);
}

.service-card:hover{
  transform:translateY(-18px) scale(1.02);
}

/* タイトル滑り込み */
.section-title{
  opacity:0;
  transform:translateX(-80px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.22,1,.36,1);
}

.section-title.active{
  opacity:1;
  transform:translateX(0);
}

.service-no{

position:absolute !important;

top:-80px !important;

right:20px !important;

display:block !important;

font-size:220px !important;

font-weight:900 !important;

line-height:1 !important;

color:rgba(255,255,255,.08) !important;

z-index:9999 !important;

opacity:1 !important;

visibility:visible !important;

pointer-events:none !important;

}

.service-card{

position:relative !important;

overflow:visible !important;

}

.service-grid{

overflow:visible !important;

}

.services{

overflow:visible !important;

}