@charset "utf-8" ;

/* コンテナ：サイト全体の基準 */
.w-container{
  max-width: 1200px;      /* あなたの基準に合わせて変更OK */
  margin-inline: auto;
  padding-inline: 24px;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }


p {
    font-size: 14px;
    line-height: 2.3;
    color: #3b3b3b;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.8px;

}

body{
  background-color: #f0f0f0; /* 通常時 */
  transition: background-color 400ms ease;
}




h3 {
    font-size: 40px;
    margin-bottom: 2rem;
    color: #3b3b3b;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

h4 {
  font-size: 14px;
  line-height: 1.5;
  color: #3b3b3b;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

h5 {
  font-size: 40px;
}


.shadow-img{
  display: block;
  box-shadow:
    0 6px 18px rgba(0,0,0,.12),
    0 24px 48px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}


.shadow-img{
  display: block;
  will-change: transform;
  transform: translateZ(0);
}


/* hoverした瞬間だけアニメーション */
.shadow-img:hover{
  animation: purun 400ms cubic-bezier(.22,1,.36,1) 1;
}

@keyframes purun{
  0%{
    transform: translateZ(0) scale(1);
  }
  42%{
    transform: translateZ(0) scale(1.055, 0.965);
  }
  72%{
    transform: translateZ(0) scale(0.99, 1.02);
  }
  100%{
    transform: translateZ(0) scale(1);
  }
}



/* ヘッダー */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;           /* ヘッダー高さ */
}


/* ロゴ（画像） */
.site-logo{
  display: inline-flex;
  align-items: center;
  height: 20px;           /* ロゴの見え方 */
}

.site-logo img{
  height: 80%;
  width: auto;
  display: block;
}

/* ナビ */
.nav-list{
  position: relative;
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link{
  display: inline-block;
  font-size: 14px;
  color: rgba(0,0,0,.75);
  text-decoration: none;
  padding: 6px 2px;       /* クリック領域 */
}

.nav-link.is-active{
  color: rgba(0,0,0,.95);
}

/* 丸い球（インジケータ） */
.nav-indicator{
  position: absolute;
  left: 0;
  top: 100%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18a999;    /* 色は調整 */
  transform: translate3d(0, 10px, 0);
  transition: transform 420ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.nav-link{
  color: #2b2b2b;            /* 通常色 */
  transition: color .25s ease;
}

.nav-link:hover{
  color: #888;            /* ホバー時 */
}

.site-logo{
  position: relative;
  display: inline-block;
}

/* 2枚を重ねる */
.site-logo img{
  position: absolute;
  inset: 0;
  display: block;
}

/* ロゴ枠のサイズを確保（数値はロゴに合わせて調整） */
.site-logo{
  width: 140px;
  height: 24px;
}

/* 初期：黒だけ */
.site-logo .logo-black{ opacity: 1; }
.site-logo .logo-white{ opacity: 0; }

/* Recruit 上：白だけ */
header.is-white .site-logo .logo-black{ opacity: 0; }
header.is-white .site-logo .logo-white{ opacity: 1; }

header.is-white .nav-link{
  color: #fff;
}

/* Aboutの円：初期状態 */
#about .aboutus-orbit-wrap{
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 2s ease, transform 0.8s ease;
}
/* セクション表示後、少し遅れて円を出す */
#about.is-visible .aboutus-orbit-wrap{
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s; /* ← 出現を少し遅らせる */
}

/* 初期：回転しない */
#about .orbit-1,
#about .orbit-2,
#about .orbit-3,
#about .orbit-4{
  animation-play-state: paused;
}

/* 表示されたら回転開始（出現より少し後） */
#about.is-visible .orbit-1,
#about.is-visible .orbit-2,
#about.is-visible .orbit-3,
#about.is-visible .orbit-4{
  animation-play-state: running;
  animation-delay: 0.6s; /* ← 出現後に回り出す */
}



/* セクションは普通に。高さは中身で決まる */
section{
  padding: 80px 0;
}

/* TOP */
.top{
  display: block;
}

.top-title,
.top-text{
  width: 100%;
  max-width: none;
}

h1 {
    font-size: 100px;
    text-wrap: auto;
    font-weight: 600;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

h2 {
    font-size: 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
}

.bold {
    font-weight: 500;
    font-size: 28px;
    line-height: 50px;
}

.toptext {
  font-size: 14px;
  font-weight: bold;

  width: 50%;
}

























@keyframes shine-sweep{
  0%   { opacity: 0; background-position: 220% 0; }
  10%  { opacity: 1; }
  100% { opacity: 0; background-position: -220% 0; }
}

/* 動きを苦手な人向け */
@media (prefers-reduced-motion: reduce){
  .shine::after{ animation: none; }
}

.top-text .bold {
  margin-top: 2rem;
  font-size: 24px;
} 

.top-slider{
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
}

.top-track{
  display: flex;
  gap: 8px;
  will-change: transform;
  animation: topMarquee 24s linear infinite;
}

.top-item{
  flex: 0 0 calc((100% - 48px) / 3);
}

.top-item img{
  width: 100%;
  height: auto;
  display: block;
}

/* ここはJSで距離を入れるので一旦ダミー */
@keyframes topMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}





/* aboutus */
.aboutus-row{
  display: flex;
  justify-content: flex-start;
}

.about {
  margin-top: 80px;
}


.aboutus-box{
  display: flex;
  align-items: center;
  gap: 100px;
}













/* テキスト */


/* SVGまわりの余白を完全に殺す */
.aboutus-orbit-wrap {
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  margin-left: 4%;
}

.aboutus-orbit {
  display: block;
  margin: 0;
  line-height: 0;
}

/* 図のスタイル */
.aboutus-orbit .ring {
  fill: none;
  stroke: #777;
  stroke-width: 1;
}

 .dot {
  color: #00000071;
}


.aboutus-content{
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* 左:見出し 右:本文 */
  gap: 8%;
  margin-top: 2rem;

}



.aboutus-kicker{
  display: flex;
  align-items: center;

  margin: 0 0 18px;
}

.kicker-dots{
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.kicker-label{
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 14px;
  opacity: 0.85;
}

.aboutus-title{
  margin: 0;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-wrap: auto;

}

.aboutus-body .aboutus-text{
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 3;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.78);
}

/* スマホは縦積み */
@media (max-width: 900px){
  .aboutus-content{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}




/* 回転 */
.aboutus-orbit .orbit-1 {
  animation: spin 32s linear infinite;
}
.aboutus-orbit .orbit-2 {
  animation: spin 46s linear infinite reverse;
}
.aboutus-orbit .orbit-3 {
  animation: spin 60s linear infinite;
}
.aboutus-orbit .orbit-4 {
  animation: spin 78s linear infinite reverse;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.aboutus-orbit-wrap { padding: 0; margin: 0; }
.aboutus-orbit { display: block; margin: 0; line-height: 0; }




/* ボタン：文章の下、少し余白 */
.aboutus-cta{
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(0,0,0,.85);
  letter-spacing: .02em;
}

/* 丸アイコン */
.aboutus-cta__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,.85);
  color: #F3F3F3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 180ms ease, background-color 180ms ease;
}



.aboutus-cta{
  align-self: flex-end;
  margin-top: 6rem;
}



.aboutus-cta__icon{
  width: 28px;
  height: 28px;

  /* ここが肝：円固定ではなく、アニメで形を変える */
  border-radius: 50%;

  background: rgba(0,0,0,.85);
  color: #F3F3F3;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;

  /* “形だけ”をうにょうにょ */
animation: blob-icon 6.6s linear infinite;
  will-change: border-radius;
}

.aboutus-cta__icon{
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.aboutus-cta:hover .aboutus-cta__icon{
  background: #18a999;
  color: #F3F3F3;
}


.aboutus-text .bold {
  margin-bottom: 1rem;
}



/* セクション全体 */


.whatdo-heading {
    margin-bottom: 1rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 50px;
    text-wrap: auto;


}



.section-title{
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 28px;
}

/* 2カラム */
.whatdo-layout{
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
  padding-right: 140px;
}

/* 左：図の枠 */
/* 図のキャンバス */
.tri{
  position: relative;
  width: min(460px, 92vw);
  aspect-ratio: 520 / 420;
}

/* 線：後ろ */
.tri-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tri-line{
  stroke: rgb(49, 49, 49);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;

  /* 初期：描画前 */
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
}

/* 玉：前 */
.node{
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 999px;
  background: #000;
  display: grid;
  place-items: center;
  z-index: 2;

  /* ★線の頂点(520x420)に中心を合わせる */
  left: calc((var(--x) / 520) * 100%);
  top:  calc((var(--y) / 420) * 100%);
  transform: translate(-50%, -50%) translateY(14px) scale(.98);

  /* 初期：隠す */
  opacity: 0;
}

/* ラベル */
.node-label{
  color: #F3F3F3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
}

.node--product  { --x: 260; --y: 135; }
.node--brand    { --x: 140; --y: 325; }
.node--audience { --x: 380; --y: 325; }

/* -------------------------
   アニメーション（発火）
------------------------- */

/* 玉：順番にふわっと */
.whatdo.is-animate .node{
  animation: nodeIn 1200ms cubic-bezier(.2,.9,.2,1) both; /* ★bothにする */
  animation-delay: var(--delay);
  will-change: transform, opacity; /* 任意：チラつき抑制 */
}

@keyframes nodeIn{
  from{ opacity: 0; transform: translate(-50%, -50%) translateY(12px) scale(.98); }
  to  { opacity: 1; transform: translate(-50%, -50%) translateY(0) scale(1); }
}

/* 線：最後に順番に描く */
.whatdo.is-animate .tri-line{
  animation: lineDraw 1800ms ease forwards;
}

/* ① PRODUCT → BRAND */
.whatdo.is-animate .tri-line--1{ animation-delay: 1100ms; }

/* ② BRAND → AUDIENCE */
.whatdo.is-animate .tri-line--2{ animation-delay: 1350ms; }

/* ③ AUDIENCE → PRODUCT（最後に閉じる） */
.whatdo.is-animate .tri-line--3{ animation-delay: 1600ms; }


@keyframes lineDraw{
  0%   { opacity: 0; stroke-dashoffset: 1000; }
  15%  { opacity: 1; }
  100% { opacity: 1; stroke-dashoffset: 0; }
}





.tri {
  position: relative; /* これ必須 */
  z-index: 0;
}






.dot-line {
  width: 100%;
  height: 2px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.144) 2px,
    transparent 1px
  );
  background-size: 6px 1px;
  background-repeat: repeat-x;

}



.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee p {
  display: inline-block;
  font-size: 100px;          /* 超でか文字 */
  font-weight: 600;
  line-height: 120px;
  color: rgba(0,0,0,0.04);   /* ほぼ見えない */
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.tri {
  position: relative; /* これ必須 */
  z-index: 0;
}




/* 本文＋背景をまとめる箱 */
.aboutus-text-wrap{
  position: relative;
  margin-top: -6px;
}

/* うっすら背景のくるくる */
.aboutus-text-wrap .aboutus-orbit-bg{
  position: absolute;
  top: 60%;
  right: 100%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 520px;
  opacity: 0.1;          /* ここが濃さの肝 */
  z-index: 0;
  pointer-events: none;
}

/* 本文を前に */
.aboutus-text-wrap .aboutus-text{
  position: relative;
  z-index: 1;
}

.about h3 {
  margin-bottom: 8px;
}


.philosophy-text {
  font-size: 14px;
  margin-top: 8px;
  color: #858585;
}



/* 本文の後ろ用：基準 */
.aboutus-text-wrap{
  position: relative;
  isolation: isolate;
}

/* 最初は「無」 */
#about-orbit-trigger .aboutus-orbit-bg__inner{
  transform: scale(0);
  transform-origin: 50% 50%;
}

/* 入ったら拡大して出す（JSがclass付ける） */
#about-orbit-trigger.orbit-on .aboutus-orbit-bg__inner{
  animation: orbitScaleIn 900ms cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes orbitScaleIn{
  from { transform: scale(0); }
  to   { transform: scale(1); }
}



/* ブランディング */


.light {
  font-size: 14px;
  color: #858585;
  line-height: 2;
}

.bland-box {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.bland {
  flex: 0 0 calc((100% - 10px) / 3);
  margin-bottom: 2rem;
}

.bland{
  display: block;
  color: inherit;
  text-decoration: none;

}

.bland-text-box {
  display: flex;
  gap: 100px;
  width: 800px;
}

.blanding {
  color: #858585;
  font-size: 14px;
}


.bland-title {
  margin-bottom: 56px;
  margin-top: 200px;
}

.brand-text{
  max-width: 52%;
  font-size: 18px;
  color: #fff;
  font-weight: normal;
}

.bland h4 {
    font-weight: normal;
    font-size: 12px;

}

.bland2 p {
  font-size: 12px;
}











.brand-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.brand-feature video {
  max-width: 700px;
  display: block;
  object-fit: cover;
 
}

.brand-feature-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
    font-weight: normal;
}

.brand-feature-text {
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
  font-weight: normal;
  margin-bottom: 2rem;
}







.news{
  padding: 100px 0;
}



.news-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #111;
}

/* 1行 */
.news-item{
  border-bottom: 1px solid #111;
}

.news-link{
  display: grid;
  grid-template-columns: 120px 220px 1fr 24px; /* 日付 / タグ / タイトル / 矢印 */
  align-items: center;
  gap: 24px;

  padding: 22px 0;
  color: inherit;
  text-decoration: none;

  /* “横ズレ演出”はtransformで、かつはみ出さない範囲に */
  transform: translateX(0);
  transition: transform .25s ease, opacity .25s ease;
  will-change: transform;
}

/* hover */
.news-link:hover{
  transform: translateX(8px);
}

/* 日付 */
.news-date{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* タグ（参考画像の黒ピル） */
.news-tags{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-tag{
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;

  border-radius: 999px;
  background: #111;
  color: #fff;

  font-size: 12px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ゴーストタグ（黒枠＋透明） */
.news-tag.is-ghost{
  background: transparent;
  color: #111;
  border: 1px solid #111;
}

/* タイトル */
.news-title{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;

  /* 長文でもはみ出さない */
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-arrow{
  justify-self: end;
  opacity: .6;
  transition: opacity .25s ease;
}

.news-link:hover .news-arrow{
  opacity: 1;
}

/* ========= Responsive ========= */
@media (max-width: 900px){
  .news-link{
    grid-template-columns: 100px 1fr 24px;
    grid-template-areas:
      "date tags arrow"
      "title title title";
    align-items: start;
    gap: 12px 16px;
    padding: 18px 0;
  }

  .news-date{ grid-area: date; }
  .news-tags{ grid-area: tags; }
  .news-title{
    grid-area: title;
    white-space: normal;   /* モバイルは2行OKに */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-arrow{ grid-area: arrow; align-self: center; }
}




.news-link{
  /* transform消す */
  transform: none;
  transition: padding-left .25s ease, opacity .25s ease;
}

.news-link:hover{
  padding-left: 8px;
}








/* =========================
   Recruit Section
========================= */

#recruit{
  position: relative;
  color: #fff;

  background-image: url("img/recruit.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* オーバーレイ */
#recruit::before{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(0, 0, 0, 0.116);

  z-index:0;
}

/* 中身 */
.recruit{
  position: relative;
  z-index: 1;
}

.recruit2 {
  margin-top: -160px;
}






/* Recruit 表示中だけ動かす */
.recruit.is-animate{
  animation: bg-pan-left 15s linear infinite;
}

@keyframes bg-pan-left{
  from{
    background-position: center;
  }
  to{
    background-position: left center;
  }
}

.recruit-label {
  font-size: 20px;
}

.saiyou {
  margin-bottom: 2rem;
}



.recruit-inner{
  position: relative;
  z-index: 1;
  padding: 180px 64px 240px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: -180px;
}


.recruit-inner2{
  position: relative;
  z-index: 1;
  padding: 240px 64px 240px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: -80px;
}

/* 白バージョン */
.aboutus-cta--white{
  color: #fff;
}

/* 丸アイコンを白縁に */
.aboutus-cta--white .aboutus-cta__icon{
  border: 1px solid #fff;
  color: #fff;
  background-color: #55000000;
}

.recruit p {
    color: #fff;
    font-weight: normal;
}

.recruit h3 {
    color: #fff;
}




@media (max-width:768px){

  #recruit{
    background-position:70% 40%;
  }

  .recruit-inner{
    padding:0px 0px 0px;
  }

}











/* 全体 */
.group-box{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 40px 0 120px;

}

/* 左テキスト */
.group-text{
  flex: 0 0 320px;
}

.group-text h5{
  font-size: 20px;
  letter-spacing: .08em;
  margin-bottom: 24px;
}

.group-text p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: .04em;
}






/* 右カード共通 */
.group{
  flex: 1;
}

.group img{
  width: 100%;
  height: auto;
  display: block;
}

/* カードタイトル */
.group h4{
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
}

/* サブテキスト */
.group .light{
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .04em;
  color: #999;
}

.group-text h5{
  font-size: 30px;
  letter-spacing: .08em;

  position: relative;

}

/* .group-text h5::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  height: 1px;
  background: #111;
} */

.group{
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Brand Design：サブテキスト */
.bland .light{
  margin-top: 6px;
  letter-spacing: .04em;
  color: #999;
}

.bland h4{
  margin-top: 16px;
  color: #fff;
}




/* ===== Fade In (data-observe) ===== */
/* ===== Fade In (ゆっくり版) ===== */
[data-observe]{
  opacity: 0;
  transform: translateY(40px); /* 少しだけ距離を伸ばす */
  transition: opacity 0.9s ease,
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-observe].is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Footer (mock like screenshot) ===== */
.site-footer{
  background: #8b8b8b;          /* 画像に近いグレー */
  padding: 90px 0 30px;         /* 上下に余白を大きめ */
}

.footer-inner{
  position: relative;
  min-height: 260px;             /* コピーライトを下に“固定っぽく”見せるため */
}

/* 左ブロック */
.footer-left{
  max-width: 520px;
  padding-top: 10px;
}

.footer-en{
  font-size: 24px;
  font-weight: 600;
    line-height: 1;
      color: #fff;
}

.footer-jp{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2rem;
    color: #fff;
}

.footer-address{
  font-size: 14px;
  line-height: 2;
    color: #fff;
}

/* 中央下コピーライト */
.footer-copy{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75); /* 画像の薄さに合わせる */
  text-align: center;
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px){
  .site-footer{
    padding: 80px 0 60px;
  }

  .footer-inner{
    min-height: 300px;
  }

  .footer-en{ font-size: 16px; }
  .footer-jp{ font-size: 14px; margin-bottom: 32px; }
  .footer-address{ font-size: 14px; }

  .footer-copy{
    white-space: normal;
    width: 100%;
    padding: 0 16px;
  }
}

/* ===== Floating Contact Button ===== */
.contact-float{
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 96px;
  height: 96px;
  border-radius: 50%;

  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  z-index: 1000;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    background 0.3s ease;

    background: #222222;
font-weight: 500;

}


/* スマホ調整 */
@media (max-width: 768px){
  .contact-float{
    width: 72px;
    height: 72px;
    right: 16px;
    bottom: 16px;
    font-size: 12px;
  }
}

.contact-float{
  width: 72px;      /* ← 96 → 72 */
  height: 72px;     /* ← 96 → 72 */
  font-size: 12px;  /* ← 14 → 12 */
}

/* ぷるぷる用 */
@keyframes wobble {
  0%   { transform: translate(0,0) rotate(0deg); }
  20%  { transform: translate(0,-1px) rotate(-5deg); }
  40%  { transform: translate(0,0) rotate(5deg); }
  60%  { transform: translate(0,1px) rotate(-3deg); }
  80%  { transform: translate(0,0) rotate(3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}





/* ホバー時（グレー） */
.contact-float:hover{
  background: #2fb7a3a0;  /* 好みで調整OK */

}

@keyframes blob {
  0% {
    border-radius: 50%;
  }
  18% {
    border-radius: 62% 38% 54% 46% / 58% 42% 58% 42%;
  }
  38% {
    border-radius: 46% 54% 64% 36% / 42% 58% 44% 56%;
  }
  62% {
    border-radius: 58% 42% 44% 56% / 64% 36% 60% 40%;
  }
  82% {
    border-radius: 54% 46% 58% 42% / 48% 52% 40% 50%;
  }
  100% {
    border-radius: 50%;
  }
}




.contact-float{
  border-radius: 50%;
  background: #2e2e2e;
  animation: blob 10s cubic-bezier(.45,0,.25,1) infinite;
}


/* 標準カーソルは隠す */
body { cursor: none; }

/* タッチ端末は無効化（任意だけど推奨） */
@media (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
}

.cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;               /* ← 大きく */
  height: 18px;
  border-radius: 999px;
  background: #111;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

/* ===== 外円 ===== */
.cursor::before{
  content: "";
  position: absolute;
  inset: -34px;              /* ← 全体サイズUP */
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  opacity: 0;
  transform: scale(.6);
  transition:
    opacity .25s ease,
    transform .45s cubic-bezier(.22,1,.36,1);
}

/* ===== 矢印 ===== */
.cursor::after{
  content: "↓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 22px;           /* ← 矢印も拡大 */
  font-weight: 300;
  color: #111;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity .2s ease,
    transform .4s cubic-bezier(.22,1,.36,1);
}

/* ===== link hover ===== */
.cursor.is-hover{
  background: transparent;
}

.cursor.is-hover::before{
  opacity: 1;
  transform: scale(1);
}

.cursor.is-hover::after{
  opacity: 1;
  transform: translateY(0);
}

/* ===== デフォルト（黒） ===== */
.cursor{
  --cursor-color: #111;
  background: var(--cursor-color);
}

/* 円 */
.cursor::before{
  border-color: rgba(17,17,17,.40);
}

/* 矢印 */
.cursor::after{
  color: var(--cursor-color);
}

/* ===== 白カーソル ===== */
.cursor.is-white{
  --cursor-color: #fff;
}

/* 白時の円（暗背景用） */
.cursor.is-white::before{
  border-color: rgba(255,255,255,.35);
}


/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/* 上下のアニメーション*/
.downAnime{
    opacity: 0;/* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
    animation-name:slideTextY100;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);/* 要素を上の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateY(0);/* 要素を元の位置に移動*/
        opacity: 1;
    }
}

.slideAnimeUpDown {
    animation-name:slideTextY-100;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
        transform: translateY(-100%);/* 要素を下の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateY(0);/* 要素を元の位置に移動*/
        opacity: 1;
    }
}


/* Company */
.company {
  margin-top: 3rem;
}


.company-headline {
  margin: 24px 0 100px;
  height: 1px;
  background: #777;

}

/* ここが右寄せの肝 */
.company-body {
  display: flex;
  justify-content: flex-end;

}

/* 情報ブロック自体の幅 */
.company-list {
  width: 720px;
}

/* 各行 */
.company-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 40px;
  padding: 16px 0;
  border-bottom: 1px solid #cfcfcf;
}

.company-row dt {
  font-size: 14px;
  color: #888;
}

.company-row dd {
  font-size: 14px;
  line-height: 1.8;
}


.concept-row{
width: 1100px;
  margin: 0 auto;
  padding: 0px 110px 0px 0px;
  display: flex;
  align-items: center;
  gap: 90px;

}
.concept-orbit-wrap{
  width: 420px;
  height: 420px;
  display: grid;
  place-items: center;

  /* 入るまで非表示 */
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s ease, transform .9s ease;
}
.concept-orbit-wrap.orbit-on{
  opacity: 1;
  transform: scale(1);
}

.concept-content{
  flex: 1;
}

/* typography */
.TextTyping{
  font-size: 56px;
  margin: 0 0 26px 0;
  font-weight: 700;

}
.concept-lead{
  margin-bottom: 16px;
  color: #3b3b3b;
  text-wrap: unset;
}
.concept-text{
  margin-bottom: 14px;
  line-height: 2.2;
  letter-spacing: .02em;
  opacity: .9;
}

/* button */
.concept-link{
  all: unset;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .06em;
}
.concept-link__icon{
  width: 22px;
  height: 22px;
  border: 1px solid #111;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* orbit style */
.concept-orbit .ring{
  fill: none;
  stroke: rgba(0,0,0,.35);
  stroke-width: 1;
}
.concept-orbit .dot{
  fill: rgba(0,0,0,.18);
}

/* 回転（orbit-on後） */
.orbit{
  transform-origin: 0 0;
  animation: none;
}
.concept-orbit-wrap.orbit-on .orbit{
  animation: orbitRotate 18s linear infinite;
}
.concept-orbit-wrap.orbit-on .orbit-mid{
  animation-duration: 14s;
  animation-direction: reverse;
}
.concept-orbit-wrap.orbit-on .orbit-inner{
  animation-duration: 10s;
}

@keyframes orbitRotate{
  to{ transform: rotate(360deg); }
}

/* responsive */
@media (max-width: 900px){
  .concept-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .concept-orbit-wrap{
    width: 320px;
    height: 320px;
  }

  .concept-lead {
    font-size: 22px;
  }

  

}















.slidewall{
  position: relative;
  height: calc(100vh - var(--header-h, 0px));
  min-height: 520px;
  overflow: hidden;
  background: #0f0f0f;
}

/* 画像の壁 */
.slidewall__rows{
  position: absolute;
  inset: -10vh -10vw;         /* スライドで隙間出ないように余白 */
  display: grid;
  gap: 24px;
  padding: 12vh 10vw;
  transform: rotate(-10deg);  /* 斜めにしたいなら */
  transform-origin: center;
}

/* 1行 */
.slidewall__row{
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* trackを2本並べて無限ループ */
.slidewall__track{
  display: flex;
  gap: 24px;
}

/* 画像カードっぽく（枠が欲しければ） */
.slidewall__row img{
  width: clamp(260px, 30vw, 620px);
  height: clamp(170px, 20vw, 380px);
  object-fit: cover;
  display: block;
}

/* オーバーレイ */
.slidewall__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.685);
  pointer-events: none;
  z-index: 3;
}

/* 中央タイトル */
.slidewall__center{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 5;
}
.slidewall__title{
  margin: 0;
  color: #fff;
  font-size: 120px;
  letter-spacing: .08em;
  font-weight: 700;
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
  margin-top: -3rem;
}

/* ====== スライドアニメ（列ごとに方向/速度/開始位置をずらす） ====== */
@keyframes slideLeft{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(-50%,0,0); }
}
@keyframes slideRight{
  from{ transform: translate3d(-50%,0,0); }
  to  { transform: translate3d(0,0,0); }
}

/* 2トラック分を横に並べてるから -50% でちょうど1周 */
.r1{ animation: slideLeft 22s linear infinite; }
.r2{ animation: slideRight 28s linear infinite; }
.r3{ animation: slideLeft 34s linear infinite; }
.r4{ animation: slideRight 40s linear infinite; }

/* “列ごとにずらす” → 開始位置の位相差（見た目のズレ） */
.r2{ animation-delay: -7s; }
.r3{ animation-delay: -14s; }
.r4{ animation-delay: -21s; }

/* レスポンシブ */
@media (max-width: 900px){
  .slidewall{ min-height: 440px; height: 62vh; }
  .slidewall__rows{ inset: -18vh -18vw; padding: 18vh 18vw; transform: rotate(-12deg); }
  .slidewall__row img{ border-width: 14px; }
}

/* 動き苦手な人向け */
@media (prefers-reduced-motion: reduce){
  .slidewall__row{ animation: none; }
}


.slidewall__rows{
  position: absolute;

  /* ここを強めにマイナス：角が絶対見えない */
  inset: -30vh -30vw;

  /* paddingは要らん（ズレの原因になる） */
  padding: 0;

  display: grid;
  gap: 24px;

  transform: rotate(-10deg) scale(1.08);
  transform-origin: center;
}









/* About〜Brand用：黒背景パネル */
.section-bg-panel{
  position: fixed;
  left: 50%;
  top: 0;

  /* ★ ここがポイント：JSから変数で制御する */
  transform: translate(-50%, var(--ty, 100%)) scaleY(var(--sy, 1));
  transform-origin: top center;

  width: 100vw;
  height: 100vh;

  background: #1d1d1d;
  border-radius: 30px;   /* 下も角丸OK */
  z-index: -1;

  will-change: transform;
  pointer-events: none;
}
#sectionBgPanel{ transform-origin: top center; }





/* header white mode */
/* #header.is-white .nav-link{ color:#fff !important; } */
/* #header.is-white .nav-link:hover{ color:#fff !important; opacity:.7; } */

#header .logo-white{ display:none; }
#header.is-white .logo-white{ display:block; }
#header.is-white .logo-black{ display:none; }

/* #header.is-white .nav-indicator{ background:#fff !important; } */

.wh {
  color: #fff;
}


/* header white mode（上書き版） */
#header.is-white .nav-link{
  color: rgba(255,255,255,.75); /* 非アクティブ */
}

#header.is-white .nav-link:hover{
  color: rgba(255,255,255,.9);
  opacity: 1;
}

/* アクティブだけは “JSが入れるCSS変数” を使う */
#header.is-white .nav-link.is-active{
  color: var(--nav-text-active, #fff) !important;
}

/* インジケータも “JSが入れるCSS変数” を使う */
#header.is-white .nav-indicator{
  background: var(--nav-accent, #fff) !important;
}

/* 通常時も変数対応（念のため） */
#navIndicator{
  background: var(--nav-accent, #111);
}
.nav-link.is-active{
  color: var(--nav-text-active, #111);
}











/* スクロール尺：2枚なら 200vh〜240vh くらいが気持ちいい */
.scrolly-pin{
  position: relative;
  height: 220vh;
}

/* 固定ステージ */
.scrolly-sticky{
  position: sticky;
  top: 12vh;            /* ヘッダーあるなら調整 */
  height: 76vh;         /* ステージの高さ */
  overflow: hidden;
}

/* パネルは同じ場所に重ねる */
.panel{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.panel.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.scrolly-pin{
  position: relative;
  height: 220vh;
}

.scrolly-sticky{
  position: sticky;
  top: 12vh;
  min-height: 520px;      /* 図が収まる最低ライン */
  height: 80vh;           /* 76vhだと切れやすいので少し上げる */
  overflow: visible;      /* ★ここが重要：hiddenをやめる */
  position: sticky;
}

/* パネル重ね */
.panel{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
  overflow: visible;      /* ★パネル側も念のため */
}

.panel.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* SVGが謎に潰れる/消えるの予防 */
.concept-orbit,
.tri-lines{
  display: block;
  max-width: 100%;
  height: auto;
}





/* ===== Scrolly (紙芝居) ===== */
.scrolly-pin{
  position: relative;
  height: 220vh;            /* 2枚分のスクロール尺 */
}

.scrolly-sticky{
  position: sticky;
  top: 12vh;                /* 固定位置 */
  height: 80vh;             /* ステージ高さ */
  min-height: 520px;        /* 図が切れない */
  overflow: visible;
}

.scrolly-stage{
  position: relative;       /* panel absolute の基準 */
  height: 100%;
}

.panel{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease, visibility 0s linear .45s;
}

.panel.is-active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .45s ease, transform .45s ease, visibility 0s;
}

/* ===== Layout（最低限） ===== */
.concept-row{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px){
  .scrolly-pin{ height: 200vh; }
  .scrolly-sticky{ top: 10vh; height: 82vh; }
  .concept-row{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .concept-orbit-wrap{ justify-self: center; }
}

/* ===== SVGが見えない問題を完全に潰す ===== */
.concept-orbit .ring{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  opacity: .35;
}
.concept-orbit .dot{
  fill: currentColor;
  opacity: .9;
}
.tri-lines line{
  stroke: currentColor;
  stroke-width: 1.2;
  opacity: .35;
  vector-effect: non-scaling-stroke;
}

.story{
  position: relative;
  height: 420vh;

}

.story__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.story__panel{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}

.story__panel.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}




.tri {
  position: relative; /* これ必須 */
  z-index: 0;
}

/* 通常は隠す */
#what .whatdo .node{
  opacity: 0;
  transform: translate(-50%, -50%) translateY(12px) scale(.98);
  transition: opacity .6s ease, transform .6s ease;
}

/* is-animate の時だけ出す */
#what .whatdo.is-animate .node{
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
}









/* =========================
   Story Right Indicator
   ※紙芝居ロジックには触れない
========================= */

.storyIndicator{
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  color: #111;
}

.storyIndicator.is-show{
  opacity: 1;
}

.storyIndicator__items{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.storyIndicator__item{
  position: relative;
  opacity: .35;
  transition: opacity .2s ease;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.storyIndicator__item.is-active{
  opacity: 1;
}

/* 左のバー（これだけ使う） */
.storyIndicator__tick{
  position: absolute;
  left: -20px;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,.2);
  transition: background .2s ease;
}

/* アクティブのときだけ濃くする */
.storyIndicator__item.is-active .storyIndicator__tick{
  background: #000;
}


/* SPでは消す */
@media (max-width: 768px){
  .storyIndicator{
    display: none;
  }
}




/* デフォルト */
:root{
  --nav-accent: #111;
  --nav-text-active: #111;
}

/* インジケーター */
#navIndicator{
  background: var(--nav-accent);
}

/* activeリンクの色 */
.nav-link.is-active{
  color: var(--nav-text-active);
}

/* インジケータの色 */
#navIndicator {
  background: var(--nav-accent, #111);
}

/* アクティブ文字の色 */
.nav-link.is-active {
  color: var(--nav-text-active, #111);
}


#navIndicator{ background: var(--nav-accent, #111); }
.nav-link.is-active{ color: var(--nav-text-active, #111); }







.waveText{
  position: relative;
  display: inline-block;
  color: #111;
}

.waveText::after{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;

  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  background-image: linear-gradient(
    10deg,
    var(--c1, #e65252),
    var(--c2, #ecd25e),
    var(--c3, #c0dd58),
    var(--c4, #39c299),
    var(--c5, #687ec4)
  );
  background-size: 200% 100%;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='60' viewBox='0 0 160 60'%3E%3Cpath d='M0 18 C20 0 40 36 60 18 S100 36 120 18 S140 0 160 18 V60 H0 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: 260px 260px;

  /* ★ベースを“終点(下)”にする：hover外れても見た目が跳ねない */
  -webkit-mask-position: 0 120px;

  opacity: 0;
  transition: opacity .18s ease;
  will-change: opacity, -webkit-mask-position;
}

/* hover時：表示して 1回だけ 上→下 */
.top-title:hover .waveText::after{
  opacity: 1;
  animation: wavePassDown 1.1s linear 1 both; /* both = 最初も最後も保持 */
}

/* ★ここでは animation を触らない（noneにしない） */
.top-title:not(:hover) .waveText::after{
  opacity: 0;
}

@keyframes wavePassDown{
  from { -webkit-mask-position: 0 -120px; }
  to   { -webkit-mask-position: 0  120px; }
}




.top-title{
  position: relative;
}

/* 透明のホバー範囲（当たり判定） */
.top-title::before{
  content:"";
  position:absolute;
  inset:-30px;          /* ← ここで広さ調整（例：上下左右30px広げる） */
  background: transparent;
  pointer-events:auto;  /* 擬似要素も当たり判定に含める */
}

.top-title{
  display: inline-block;    /* まず “箱” を作る */
  position: relative;
  padding: 18px 28px;       /* ← ホバー範囲を広げる */
  margin: -18px -28px;      /* ← 見た目の位置は変えない */
}


/* hover でも、自動(.is-wave) でも発火 */
.top-title:hover .waveText::after,
.top-title.is-wave .waveText::after{
  opacity: 1;
  animation: wavePassDown 1.1s linear 1 both;
}















#top{
  position: relative;
  overflow: hidden;
}

/* 右余白に固定表示 */
.top-watch-bg{
  position: absolute;
  right: 70px;

  /* ↓ ここを % から固定に変える */
  top: clamp(240px, 18vh, 240px);
  transform: none;

  width: min(520px, 32vw);

  z-index: 0;
  pointer-events: none;

}

/* 画像 */
.top-watch-bg .watch-base{
  width: 100%;
  height: auto;
  display: block;
  

}

/* 針レイヤー */
.top-watch-bg .watch-hands{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* 中心（あとで微調整） */
  --cx: 50%;
  --cy: 52%;
}

.top-watch-bg .hand{
  position:absolute;
  left: var(--cx);
  top:  var(--cy);
  transform-origin: 0% 50%;
  transform: translateY(-50%) rotate(0deg);
  background:#000;
  border-radius:999px;
}

.top-watch-bg .hand.hour{ width: 18%; height: 5px; opacity:.55; }
.top-watch-bg .hand.minute{ width: 26%; height: 3px; opacity:.50; }
.top-watch-bg .hand.second{ width: 32%; height: 1.5px; opacity:.35; }

.top-watch-bg .pin{
  position:absolute;
  left: var(--cx);
  top:  var(--cy);
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 1px solid #000;
  border-radius: 50%;
  opacity:.90;
  background:#000;   /* ← 追加 */
}

/* 前面（文字を必ず上に） */
#top .top,
#top .top-slider{
  position: relative;
  z-index: 2;
}

@media (max-width: 768px){
  .top-watch-bg{ display:none; }
}




.top-watch-bg .watch-index{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: .55;
}

.top-watch-bg .watch-index span{
  position:absolute;
  left:50%;
  top:50%;

  font-size:14px;       /* サイズ調整 */
  font-weight:500;
  color:#000;


  transform:
    rotate(calc(var(--i) * 30deg))
    translateY(-180%)    /* 半径調整ここ重要 */
    rotate(calc(var(--i) * -30deg));
}


/* 針レイヤー（中心はこれを使う） */
.top-watch-bg .watch-hands{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  --cx: 50%;
  --cy: 52%;

  /* ★ローマ数字の半径（ここが肝） */
  --radius: clamp(115px, 12vw, 140px);
}

/* ローマ数字 */
.top-watch-bg .watch-index{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* 12個 */
.top-watch-bg .watch-index span{
  position:absolute;
  left: var(--cx);
  top:  var(--cy);

  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  color:#000;
  opacity:.22;  /* 背景ならこのくらいが綺麗 */

  /* ★中心基準→回転→半径分外へ→文字を正立 */
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(var(--i) * -30deg));
}



/* .top-watch-bg .hand.second{
  width: 32%;
  height: 1.5px;

  background: #e10600; 
  opacity: .7;           
} */


.top-watch-bg .watch-index{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.top-watch-bg .watch-index span{
  position:absolute;
  left: var(--cx);
  top:  var(--cy);

  width: 3px;              /* 棒の太さ */
  height: 14px;            /* 棒の長さ */
  background:#000;
  opacity:.35;

  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg))
    translateY(calc(-1 * var(--radius)));
    
}





/* 12時（--i:12）を "12" に */
.top-watch-bg .watch-index span[style*="--i:12"]{
  width:auto;
  height:auto;
  background:none;

  font-size: clamp(16px, 1.8vw, 22px);
  font-weight:600;
  color:#000;
  opacity:.65;

  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg))
    translateY(calc(-1 * var(--radius) - 4px))
    rotate(calc(var(--i) * -30deg));
    
}
/* 12の文字部分だけ縦長に */
.top-watch-bg .watch-index span[style*="--i:12"]::before{
  content:"Ⅻ";
  display:inline-block;
  transform: scaleY(1.25);
}


/* 6時（--i:6）を "6" に */
.top-watch-bg .watch-index span[style*="--i:6"]{
  width:auto;
  height:auto;
  background:none;

  font-size: clamp(16px, 1.8vw, 22px);
  font-weight:600;
  color:#000;
  opacity:.65;

  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg))
    translateY(calc(-1 * var(--radius) - 4px))
    rotate(calc(var(--i) * -30deg));
}
/* 6の文字部分だけ縦長に */
.top-watch-bg .watch-index span[style*="--i:6"]::before{
  content:"Ⅵ";
  display:inline-block;
  transform: scaleY(1.25);
}





.access{
  padding: 100px 0 200px;
}

.access__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.access__title{
  font-size: 56px;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0 0 18px;
}

.access__rule{
  height: 1px;
  background: rgba(0,0,0,.35);
  margin: 0 0 46px;
}

.access__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* MAP */
.access__mapFrame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.access__mapFrame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 右テキスト */
.access__info{
  display: grid;
  gap: 28px;
}


/* SP */
@media (max-width: 860px){
  .access__title{ font-size: 40px; }
  .access__grid{
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .access__mapFrame{
    aspect-ratio: 16 / 12;
  }
}






/* =========================
   BRAND SLIDE SECTION
========================= */
#brand{
  position: relative;
  min-height: 240vh;
  overflow: clip;

}

/* 背景レイヤー */
.brandSlide__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.brandSlide__bgTrack{
  position: absolute;
  inset: 0;
  will-change: transform;
}

.brandSlide__bgItem{
  height: 100vh;
  display: grid;
  place-items: center;
}

.brandSlide__bgItem img{
  width: min(920px, 92vw);
  border-radius: 18px;
  display: block;
  opacity: .95;
  filter: contrast(1.05) brightness(.95);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

/* 上からかける暗レイヤー */
.brandSlide__vignette{
  position: absolute;
  inset: 0;

  pointer-events: none;
}

/* Stickyテキスト */
.brandSlide__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 2;
  display: grid;
  align-items: center;
}

.brandSlide__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: center;
  color: #fff;
  will-change: transform;
}

/* テキスト装飾 */
.brandSlide__kicker{
  letter-spacing: .12em;
  opacity: .85;
  font-size: 14px;
  margin-bottom: 16px;
}

.brandSlide__title{
  font-size: clamp(44px, 8vw, 120px);
  line-height: .95;
  font-weight: 500;
  margin: 0 0 20px;
}

.brandSlide__jp{
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: .06em;
  opacity: .9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.brandSlide__desc{
  width: min(560px, 92vw);
  margin: 22px auto 28px;
  line-height: 3;
  font-size: 14px;
  color: #fff;

}

.brandSlide__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 34px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .06em;
}



.brandSlide__bgItem img{
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.274));
}






/* 背景エリア */
.brandSlide__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 3枚を縦に積む（スクロール用） */
.brandSlide__bgTrack{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

/* 1スライド＝1画面分 */
.brandSlide__bgItem{
  height: 100vh;
  display: grid;

  /* ← ここが左右配置の肝 */
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 clamp(20px, 6vw, 120px);
}

/* =========================
   ▼ 1枚目 → 左だけ表示
========================= */
.brandSlide__bgItem:nth-child(1){
  justify-items: start;
}
.brandSlide__bgItem:nth-child(1) img{
  grid-column: 1;
}

/* =========================
   ▼ 2枚目 → 右上
========================= */
.brandSlide__bgItem:nth-child(2){
  justify-items: end;
}
.brandSlide__bgItem:nth-child(2) img{
  grid-column: 2;
  transform: translateY(-20%);
}

/* =========================
   ▼ 3枚目 → 右下
========================= */
/* ▼ 3枚目 → 左下 */
.brandSlide__bgItem:nth-child(3){
  justify-items: start;
}
.brandSlide__bgItem:nth-child(3) img{
  grid-column: 1;
  transform: translateY(20%);
}

/* 画像サイズ（デカすぎ防止） */
.brandSlide__bgItem img{
  width: clamp(260px, 28vw, 520px);
  height: clamp(200px, 24vh, 360px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}









/* =========================
   OUR BUSINESS (2-col)
========================= */
.biz{
  padding: 0;
  background: #1a1c22; /* 外枠の暗色 */

}

.bk {
  background-color: #1a1c22;
  padding-bottom: 8rem;
}

.biz__wrap{
  width: min(1400px, 96vw);
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

/* 左：動画面 */
.biz__left{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  background: #111;
}

/* 動画を全面表示 */
.biz__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* 端のチラつき対策 */
}

/* 右：パネル */
.biz__right{
  background: #f3f4f6;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(0,0,0,.06);
}

/* 上部：左に見出し、右に(01) */
.biz__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(14px, 2vw, 26px);
}

.biz__kicker{
  color: #222;
  font-size: 14px;
  letter-spacing: .12em;
  opacity: .9;
}

.biz__no{
  color: #222;
  font-size: 14px;
  letter-spacing: .08em;
  opacity: .85;
}

/* 右パネルの中身 */
.biz__content{
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 10px 0;
}

.biz__title{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 500;
  color: #111;
}

.biz__lead{
  margin: 0 0 18px;
  font-size: 16px;
  letter-spacing: .06em;
  color: #111;
  opacity: .9;
}

.biz__desc{
  margin: 0 0 26px;
  width: min(520px, 90%);
  color: #333;
  opacity: .85;
  line-height: 1.9;
  font-size: 14px;
}

/* ボタン：前のトーンに合わせて黒丸 */
.biz__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 34px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  letter-spacing: .06em;
  font-size: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* レスポンシブ：縦積み */
@media (max-width: 900px){
  .biz__wrap{
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .biz__left{
    min-height: 46vh;
  }
}








/* businessは最初 “存在ごと” 潰す → 間で流れない */
#business{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  transition: max-height .7s ease, opacity .6s ease, transform .6s ease;
}

/* brandが終わったら business を開く */
#brand.is-business-show #business{
  max-height: 4000px; /* 足りなければ増やす */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 念のため：sticky中に下が透けるなら背景を付ける */
.brandSlide__sticky{
  background: transparent; /* 透けてOKならこのまま */
  /* 透けが気になるなら下をON */
  /* background: #0f1216; */
}




/* 背景レイヤーはクリック不要ならこれが安全 */
.brandSlide__bg{
  pointer-events: none;   /* 背景が前にいても操作を邪魔しない */
}

/* ★ biz を確実に前面に出す */
#business{
  position: relative;
  z-index: 5;
  background: #f3f4f6;   /* 出てるか確認しやすい色（嫌なら後で消してOK） */
  min-height: 400px;     /* 枠が出ることを確実にする */
}






/* brand + business をまとめる親 */
.brandStage{
  position: relative;
  overflow: clip;
  background:#0f1216;
}

/* 背景は最背面 */
.brandStage .brandSlide__bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

/* brand（sticky）を前面 */
#brand .brandSlide__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 2;
}

/* business を brand の後に出す（最初は存在ごと潰す） */
#business{
  position: relative;
  z-index: 3;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  transition: max-height .7s ease, opacity .6s ease, transform .6s ease;
}

.brandStage.is-business-show #business{
  max-height: 4000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}





/* セクション背景 */
#bizStack{
  background:#1a1c22;
  padding: 0;
}

/* スクロール量を作る：3枚なら 300vh（枚数×100vh） */
.bizStack__stage{
  height: 200vh;
}

/* その場で固定 */
.bizStack__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;

}

.bizStack__wrap{
  width: min(1400px, 96vw);
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: stretch;

  height: 87vh;   /* ← 追加（90〜95vhがおすすめ） */
}
/* 左 */
.bizStack__left{
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  background: #111;
  position: relative;
}

/* 右 */
.bizStack__right{
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.06);
  padding: 0; /* item側で余白 */
  position: relative;
}

/* ===== stack core ===== */
.stack{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* ここで“重なりながら”見える */
}

/* 全アイテムを重ねる */
.stack__item{
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0%, 0);
  will-change: transform;
}

/* 左の動画/画像を全面に */
.stack__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* 右パネルの中身（あなたの既存を流用） */
.bizPanel{
  padding: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-rows: auto 1fr;
}

.biz__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: clamp(14px, 2vw, 26px);
}
.biz__kicker,.biz__no{
  color:#222;
  font-size:14px;
  letter-spacing:.12em;
  opacity:.9;
}
.biz__no{ opacity:.85; letter-spacing:.08em; }

.biz__content{
  display:grid;
  align-content:center;
  justify-items:center;
  text-align:center;
  padding:10px 0;
}
.biz__title{
  margin:0 0 14px;
  font-size: 32px;
  line-height:1.05;
  font-weight:500;
  color:#111;
}
.biz__lead{
  margin:0 0 18px;
  font-size:14px;
  letter-spacing:.06em;
  color:#111;
  opacity:.9;
}
.biz__desc{
  margin:0 0 26px;
  width:min(520px, 90%);
  color:#333;
  opacity:.85;
  line-height:1.9;
  font-size:12px;
}
.biz__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 34px;
  border-radius:999px;
  background:#333;
  color:#fff;
  text-decoration:none;
  letter-spacing:.06em;
  font-size:10px;

}

/* レスポンシブ */
@media (max-width: 900px){
  .bizStack__wrap{
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .bizStack__left{ min-height: 46vh; }
}


/* ===== stack core ===== */
.stack{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 全アイテムを重ねる */
.stack__item{
  position: absolute;
  inset: 0;

  /* ★スライドさせない */
  transform: none !important;

  /* ★フェード制御 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .55s ease, visibility 0s linear .55s;
  will-change: opacity;
}

/* アクティブだけ表示 */
.stack__item.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .55s ease, visibility 0s;
}

/* 左右で stack を共通にしてるならこれもOK */
.stack__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}


/* スクロール量を作る（まずは 320vh 推奨） */
.bizStack__stage{
  height: 320vh;
}


#header.is-white .nav-link{ color:#fff !important; }

.cursor.is-white{ /* cursor白の見た目 */ }









/* ===== Footer (premium, minimal) ===== */
.siteFooter{
  background: #2e2e2e;
  color: rgba(255,255,255,.86);
  padding: 90px 0 56px; /* ← 高さをしっかり出す */
  position: relative;
  overflow: hidden;
}

/* うっすら質感（派手じゃない砂目） */
.siteFooter::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(255,255,255,.06), transparent 58%);
  pointer-events:none;
  opacity:.9;
}

.siteFooter__inner{
  position:relative;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* 上段 */
.siteFooter__top{
  display:flex;
  justify-content:space-between;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.siteFooter__brand{
  min-width: 0;
}
.siteFooter__brandEn{
  margin:0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.1;
}
.siteFooter__brandJp{
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: .14em;
  opacity: .68;
}

.siteFooter__addr{
  margin:0;
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 1.9;
  opacity: .80;
  text-align: right;
}

/* リンク */
.siteFooter__nav{
  display:flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 22px 0 0;
}

.siteFooter__link{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .10em;
  position: relative;
  padding-bottom: 4px;
  transition: opacity .15s ease, transform .15s ease;
}
.siteFooter__link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* さりげない下線 */
.siteFooter__link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background: rgba(255,255,255,.18);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .18s ease;
}
.siteFooter__link:hover::after{
  transform: scaleX(1);
}

.siteFooter__sep{
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.16);
  align-self: center;
  margin: 0 4px;
}

/* 下段 */
.siteFooter__bottom{
  padding-top: 22px;
}
.siteFooter__copy{
  margin:0;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .55;
}

/* ===== TOP FAB (avoid CONTACT overlap) =====
   CONTACTが right:32px; bottom:32px; くらい想定
   → TOPは同じ右で、"上に" ずらす
*/
.toTopFab{
  position: fixed;
  right: 32px;
  bottom: 128px;           /* ★CONTACTより上に */
  z-index: 9999;

  width: 54px;
  height: 54px;
  border-radius: 999px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 2px;

  background: rgba(18, 20, 26, .72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);

  color:#fff;
  cursor:pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.toTopFab:hover{
  background: rgba(18, 20, 26, .84);
  transform: translateY(4px);
}

.toTopFab__arrow{
  font-size: 14px;
  line-height: 1;
  opacity: .9;
}
.toTopFab__label{
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .85;
}

/* スクロールしたら出す */
.toTopFab.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* SP */
@media (max-width: 760px){
  .siteFooter{
    padding: 72px 0 48px;
  }
  .siteFooter__top{
    flex-direction: column;
    align-items: flex-start;
  }
  .siteFooter__addr{
    text-align: left;
  }

  /* スマホは右端ギリだと押しにくいので少し内側 */
  .toTopFab{
    right: 18px;
    bottom: 116px; /* CONTACTより上 */
    width: 52px;
    height: 52px;
  }

  .siteFooter__sep{ display:none; }
}




.siteFooter{
  background: #494949;
  color: rgba(255,255,255,.92);
  padding: 60px 0 60px;
}

/* 上の区切り線 */
.siteFooter__top{
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* ブランド */
.siteFooter__brandEn{
  color:#fff;
  font-weight:600;
  letter-spacing:.14em;
}

.siteFooter__brandJp{
  color:rgba(255,255,255,.75);
}

/* 住所 */
.siteFooter__addr{
  color:rgba(255,255,255,.85);
}

/* リンク */
.siteFooter__link{
  color: rgba(255,255,255,.85);
}

.siteFooter__link::after{
  background: rgba(255,255,255,.6);
}

/* コピーライト */
.siteFooter__copy{
  color: rgba(255,255,255,.65);
}






/* 住所ブロック：右寄せのままでOK */
.siteFooter__meta{
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 右揃え */
  gap: 80px;
}

/* TOPボタン（住所の上） */
.toTopMini{
  display: inline-flex;
  flex-direction: column;   /* ← 縦に（山の下にTOP） */
  align-items: center;
  gap: 6px;

  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  color: rgba(255,255,255,.88);
  opacity: .8;
  transition: opacity .2s ease, transform .2s ease;
}

.toTopMini:hover{
  opacity: 1;
  transform: translateY(-2px);
}

/* 山アイコン */
.toTopMini__icon{
  width: 26px;
  height: 26px;
  display:block;
}
.toTopMini__icon path{
  fill: none;
  stroke: rgba(255,255,255,.88);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TOP文字 */
.toTopMini__text{
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
  line-height: 1;
}

/* SP：少し小さく */
@media (max-width: 760px){
  .toTopMini__icon{ width: 22px; height: 22px; }
  .toTopMini__text{ font-size: 10px; }
}




/* ===== Recruit section ===== */
#recruit{
  position: relative;
  cursor: none; /* 通常カーソルを消す */
}

/* カスタムカーソル */
.recruit-cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .25s ease, opacity .25s ease;
  z-index: 9999;
  opacity: 0;
}

.recruit-cursor.is-active{
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Recruit中は既存カーソル(.cursor)を消す */
body.recruit-mode .cursor{
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate(-9999px, -9999px) !important;
}




.recruit-cursor{
  /* 既存のまま + これ足す */
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  gap: 10px;
  font-weight: 500;
}

/* → を足す（右側に小さく） */
.recruit-cursor::after{
  content: "↗";
  display: inline-block;
  font-size: 16px;
  opacity: 0.9;
  transform: translateY(-1px);
}

/* hover中は少しだけ “押せる” 動き */
#recruit:hover .recruit-cursor.is-active{
  transform: translate(-50%, -50%) scale(1.08);
}

#recruit .recruit{
  transition: filter .25s ease, transform .25s ease;
}

#recruit:hover .recruit{
  filter: brightness(1.08) contrast(1.05);
}

.recruit-text {
  width: 60%;
  line-height: 50px;

}













/* navと横並び */
.nav{
  margin-left: auto;
}

/* ピル本体 */
.lang-switch{
  display: inline-flex;
  align-items: center;
  margin-left: 24px;
  padding: 2px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}

.lang-btn{
  min-width: 34px;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  color: #777;
  font-weight: 500;
  transition: all .2s ease;
}

.lang-btn.is-active{
  background: #111;
  color: #fff;
}

/* hover */
.lang-btn:hover{
  color: #000;
}

/* 選択中 */
.lang-btn.is-active{
  background: #111;
  color: #fff;
}


#header.is-white .lang-switch{
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
}

#header.is-white .lang-btn{
  color: #ccc;
}

#header.is-white .lang-btn:hover{
  color: #fff;
}

#header.is-white .lang-btn.is-active{
  background: #fff;
  color: #000;
}











/* セクション全体（3スクロール分） */
.websiteLoop{
  height: 300vh;
  background:#0f1216;
  position:relative;
}

/* sticky固定 */
.websiteLoop__sticky{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  display:grid;
  place-items:center;
}

/* 背景3列 */
.loopBg{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:2vw;
  padding:3vw;
  z-index:0;
}

.loopCol{
  position:relative;
  overflow:hidden;
}

/* タイル */
.loopItem{
  position:absolute;
  width:100%;
  aspect-ratio: 4/5;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.loopItem img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* 中央カード */
.websiteLoop__card{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.websiteLoop__title{
  font-size:clamp(50px,8vw,120px);
  line-height:.95;
  margin:0 0 20px;
}

/* 追加/上書き */
.loopCol{ height:100%; }          /* 念のため列の高さを確保 */
.loopItem{
  left: 0;
  top: 0;                         /* ←これ大事 */
  background:#222;                /* 画像が無くても箱が見えるように */
}
.loopItem img{
  background:#222;
}


















.works-section{

  color:#fff;
  padding:100px 0;
}
/* 
.works-container{
  max-width:1280px;
  margin:0 auto;
  padding:0 20px;
} */

.works-grid{
  display:grid;

}

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

.works-grid--4{
  grid-template-columns:repeat(4,1fr);
}

.works-card{
  display:block;
  text-decoration:none;
  color:inherit;


  overflow:hidden;
  border:1px solid rgba(175, 175, 175, 0.596);
  transition:all .25s ease;
}

.works-card:hover{
  border-color:rgba(255,255,255,0.2);
  transform:translateY(-4px);
}

.works-media{
  aspect-ratio:16/8;
  position:relative;

  overflow:hidden;
}

.works-media img,
.works-media video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.works-meta{
  padding:16px;


}

.works-title{
  margin:0 0 6px;
  font-size:14px;
  font-weight:700;
  line-height:1.3;
    color: #fff;
}

.works-sub{
  margin:0;
  font-size:13px;
  opacity:.7;
    color: #fff;
}

/* レスポンシブ */
@media (max-width:1000px){
  .works-grid--4{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .works-grid--2,
  .works-grid--4{
    grid-template-columns:1fr;
  }
}



.website-text {
  color: #fff;

  margin-bottom: 3rem;

}



/* =========================================================
   MB (SP) PATCH SET
   - PCは触らない
   - 768px以下だけ上書き
========================================================= */
@media (max-width: 768px){

  /* -------------------------
     Container
  ------------------------- */
  .w-container{
    max-width: 100%;
    padding-inline: 16px;
  }

  /* sectionのデフォルト余白(80px)が重いのでSPだけ少し減らす */
  section{
    padding: 56px 0;
  }

  /* -------------------------
     TOP
  ------------------------- */
  .top{
    margin-top: -40px;
  }

  #top .top{
    padding-top: 0;
  }

  .top-title{
    padding: 0;
    margin: 0;
    max-width: 26rem;
  }

  .top-title h2{
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .06em;
    margin: 0 0 14px;
  }

  .top-title h1{
    font-size: 70px;
    line-height: 80px;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
  }

  /* SPでは改行を減らして崩れ防止 */
  .top-title h1 br{
    display: none;
  }


  .toptext{
    width: 100%;
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: .02em;
  }

  /* TOPの流れる画像：カード幅を固定して見やすく */
  .top-item{
    flex: 0 0 280px;
  }

  /* CONTACTが被るなら少し内側 */
  .contact-float{
    bottom: 18px;
    right: 18px;
  }

  .whatdo {
    margin-top: 10rem;
  }

  /* -------------------------
     ABOUT-STORY（紙芝居）: SPだけ中央固定を解除
     “ステージ内スクロールは嫌”の方針
  ------------------------- */

  /* ステージは中央固定じゃなく「上寄せ」 */
  #about-story .story__sticky{
    display: block !important;     /* grid中央寄せをやめる */
    height: 100svh !important;     /* iPhone対策 */
    overflow: visible !important;  /* 切れ防止 */
  }

  /* パネルも普通の流れに */
  #about-story .story__panel{
    display: block !important;
    padding: 72px 12px 120px !important; /* ヘッダー+下のUI避け */
  }

  /* story内の section のデフォルトpaddingがデカいので殺す */
  #about-story section{
    padding: 0 !important;
  }

  /* 幅を整える */
  #about-story .story__panel > section{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  /* 1枚目：縦積み */
  #about-story .concept-row{
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  /* 円：縮めて中央 */
  #about-story .concept-orbit-wrap{
    width: min(320px, 86vw) !important;
    aspect-ratio: 1 / 1;
    height: auto !important;
    margin: 0 auto !important;
  }
  #about-story .concept-orbit{
    width: 100% !important;
    height: 100% !important;
  }

  /* 2枚目：縦積み */
  #about-story .whatdo-layout{
    grid-template-columns: 1fr !important;
    padding-right: 0 !important;
    gap: 22px !important;
  }

  /* 図がデカい場合の保険 */
  #about-story .tri{
    width: min(360px, 92vw);
    margin: 0 auto;
  }

  /* はみ出し保険 */
  #about-story .concept-content,
  #about-story .whatdo-text{
    min-width: 0;
  }

  .concept-content {
    padding: 0px 16px;
  }

  /* -------------------------
     Header / Nav (SP)
     ※必要ならここから下もONにしてOK
     （今は about-story だけが目的なら消してもいい）
  ------------------------- */

  /* PC用ナビを隠す（クラスがある前提） */
  .nav--pc{ display:none; }
  .lang-switch--pc{ display:none; }

  /* ハンバーガー */
  .hamburger{
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }

  .hamburger span{
    display:block;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .hamburger.is-open span:nth-child(1){
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2){
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
  }

  /* white header時 */
  #header.is-white .hamburger{
    background: rgba(0,0,0,.22);
    border-color: rgba(255,255,255,.22);
  }
  #header.is-white .hamburger span{
    background: #fff;
  }

  /* SPメニュー */
  .spMenu{
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .spMenu.is-open{
    opacity: 1;
    pointer-events: auto;
  }

  .spMenu__backdrop{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.45);
  }

  .spMenu__panel{
    position:absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 360px);
    background: rgba(20,20,20,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255,255,255,.10);

    transform: translateX(12px);
    transition: transform .25s ease;
    padding: 18px 18px 22px;
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .spMenu.is-open .spMenu__panel{
    transform: translateX(0);
  }

  .spMenu__top{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .spMenu__lang{
    display: inline-flex;
    gap: 8px;
  }

  .spMenu__close{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
  }

  .spMenu__nav{
    padding-top: 18px;
    display: grid;
    gap: 10px;
  }
  .spMenu__link{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    letter-spacing: .06em;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
  }
  .spMenu__link:active{
    transform: translateY(1px);
  }

  /* SPメニュー内のlang-btn */
  .spMenu .lang-btn{
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.85);
  }
  .spMenu .lang-btn.is-active{
    background: #fff;
    color: #111;
    border-color: transparent;
  }
}

/* PCだけハンバーガー非表示（SPは表示） */
@media (min-width: 769px){
  .hamburger{ display:none; }
}


/* =========================
   Header Hamburger + SP Menu (FIXED)
   ※このブロックはCSSの最後に置く
========================= */

/* まず：PCはPC、SPはSP で確実に切り替える */
@media (min-width: 901px){
  .hamburger{ display:none !important; }
  .spMenu{ display:none !important; }
  .nav--pc{ display:block !important; }
  .lang-switch--pc{ display:inline-flex !important; }
}

@media (max-width: 900px){
  .nav--pc{ display:none !important; }
  .lang-switch--pc{ display:none !important; }
  .hamburger{ display:inline-flex !important; }
}

/* ハンバーガー本体 */
.hamburger{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.hamburger span{
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #111;
  transition: transform .25s ease, opacity .25s ease;
}

/* open状態（×） */
.hamburger.is-open span:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2){
  opacity: 0;
}
.hamburger.is-open span:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

/* header white mode のとき（ロゴ白の面） */
#header.is-white .hamburger{
  background: rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.22);
}
#header.is-white .hamburger span{
  background: #fff;
}

/* SPメニュー（オーバーレイ） */
.spMenu{
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.spMenu.is-open{
  opacity: 1;
  pointer-events: auto;
}

.spMenu__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

.spMenu__panel{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: rgba(20,20,20,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255,255,255,.10);

  transform: translateX(12px);
  transition: transform .25s ease;
  padding: 18px 18px 22px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.spMenu.is-open .spMenu__panel{
  transform: translateX(0);
}

/* 上段 */
.spMenu__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.spMenu__lang{
  display: inline-flex;
  gap: 8px;
}

/* 閉じるボタン */
.spMenu__close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}

/* リンク */
.spMenu__nav{
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

.spMenu__link{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.spMenu__link:active{
  transform: translateY(1px);
}

/* SPメニュー内の言語ボタン */
.spMenu .lang-btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: .06em;
  text-decoration: none;
}

.spMenu .lang-btn.is-active{
  background: #fff;
  color: #111;
  border-color: rgba(255,255,255,0);
}





/* =========================
   SP：紙芝居（#about-story）を無効化（固定表示）
   ※CSSの一番最後に置く
========================= */
@media (max-width: 768px){

  /* スクロール尺を作ってる親（420vh等）を通常に戻す */
  #about-story{
    height: auto !important;
  }

  /* sticky固定をやめる */
  #about-story .story__sticky{
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
  }

  /* パネルを重ねるのをやめる（=紙芝居停止） */
  #about-story .story__panel{
    position: static !important;
    inset: auto !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    pointer-events: auto !important;
    transition: none !important;

    /* 1枚ずつ縦に並べる余白 */
    padding: 0 !important;
    margin: 0 0 56px !important;
  }

  /* JSが is-active を付けても見た目が変わらないように潰す */
  #about-story .story__panel.is-active{
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  /* もし個別に .panel / .is-active を使ってる場合の保険 */
  #about-story .panel,
  #about-story .panel.is-active{
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: none !important;
    position: static !important;
    inset: auto !important;
    margin: 0 0 56px !important;
  }
}


@media (max-width: 768px){
  .TextTyping{
    font-size: 40px;
  }

  .recruit-text {
  width: 100%;

}

  .aboutus-cta {
    margin-top: 2rem;
    margin-bottom: 8rem;
  }

}


/* =========================
   TOP 時計 非表示（SP）
========================= */
@media (max-width:768px){

  .top-watch-bg{
    display: none !important;
  }

}



.recruitSection{
  position: relative;
  color:#fff;

  background-image: url("img/recruit.jpeg");
  background-size: cover;          /* まずこれが安定 */
  background-position: center;
  background-repeat: no-repeat;
}

/* うすいオーバーレイ（黒すぎ防止） */
.recruitSection::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);     /* 好みで .25〜.45 */
  pointer-events:none;
}

.recruitSection__inner{
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;

}

@media (max-width:768px){
  .recruitSection__inner{
    padding: 120px 16px 160px;
  }

  /* 各行 */
.company-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 0px;
  padding: 16px 0;
  border-bottom: 1px solid #cfcfcf;
}


}


/* Recruit hero：文字を白固定 */
.recruitHero{
  position: relative;
  color: #fff;
}

.recruitHero h1,
.recruitHero h2,
.recruitHero h3,
.recruitHero p,
.recruitHero a,
.recruitHero .recruit-label,
.recruitHero .recruit-title,
.recruitHero .recruit-text{
  color: #fff !important;
}

/* 画像の上に暗い幕（読みやすく） */
.recruitHero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  pointer-events:none;
}

.recruitHero > *{
  position: relative;
  z-index: 1;
}


/* タッチ端末（hover なし）だけ */
@media (hover: none) and (pointer: coarse) {
  html, body {
    cursor: none !important;
  }
}

/* スマホ・タッチ端末だけ */
@media (hover: none) and (pointer: coarse) {

  #recruitCursor{
    display: none !important;
  }

}

.recruitHero2{
  position: relative;
  color:#fff;

  margin-top: -80px;
  padding-top: 0;
}


/* ======================
   SP調整
====================== */
@media (max-width: 768px){

/* 1カラムにする */
.whatdo-layout{
  grid-template-columns: 1fr;
  gap: 40px;
  padding-right: 0;
}

/* 図を中央に */
.tri{
  width: min(320px, 90vw);
  margin: 0 auto;
}

/* 円を小さく */
.node{
  width: 90px;
  height: 90px;
}

/* ラベルも少し小さく */
.node-label{
  font-size: 10px;
  letter-spacing: .12em;
}

/* 見出し */
.whatdo-heading{
  font-size: 22px;
  line-height: 50px;
}

}


body{
  font-family: "Zen Kaku Gothic New", sans-serif;
}





/* ======================
   SP画像フェード
====================== */



@media (max-width:768px){

  /* 初期：全部隠す */
  .brandSlide__bgItem{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .01s linear, transform .01s linear; /* “出現”なのでほぼ瞬間 */
  }

  /* 親にis-showが付いたら出す */
  .brandSlide__bgTrack.is-show .brandSlide__bgItem{
    opacity: 1;
    transform: translateY(0);
  }

  /* 1枚ずつ順番に（ここが肝） */
  .brandSlide__bgTrack.is-show .brandSlide__bgItem:nth-child(1){ transition-delay: 0ms; }
  .brandSlide__bgTrack.is-show .brandSlide__bgItem:nth-child(2){ transition-delay: 250ms; }
  .brandSlide__bgTrack.is-show .brandSlide__bgItem:nth-child(3){ transition-delay: 500ms; }

}



.top-watch-bg{
  position: absolute;

  /* ここを変更 */
  right: max(16px, calc((100vw - 1200px) / 2));

}




/* =========================
  STORY（紙芝居）大画面で左に寄るのを修正
  → 中身を「確実に中央」に置く
========================= */
#about-story .story__panel{
  display: flex;               /* gridの代わりに確実な中央寄せ */
  justify-content: center;
  align-items: center;
}

/* パネル内の section を “中央寄せの箱” にする */
#about-story .story__panel > section{
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* section に w-container が付いててもズレないように中の余計な制約を無効化 */
#about-story .story__panel > section.w-container{
  max-width: none;
}

#about-story .concept-row,
#about-story .whatdo-layout { justify-content: center; }







/* 初期は必ず隠す（= バグの“チラ見え”を潰す） */
#what .whatdo {
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

/* アニメ開始 */
#what .whatdo.is-animate {
  animation: whatdoIn .6s ease-out forwards;
}

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













/* =========================================
   Contact Page
========================================= */
.contact-page {
  background: #f3f3f3;
  color: #111;
}

.contactHero {
  padding: 180px 0 80px;
}

.contactHero .top-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contactHero .top-title h1 {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contactLead {
  max-width: 760px;
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
  color: #444;
}

.contactSection {
  padding: 0 0 120px;
}

.contactRule {
  width: 100%;
  height: 1px;
  background: #111;
  opacity: 0.12;
  margin: 0 0 48px;
}

.contactWrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contactInfo h3,
.contactFormArea h3 {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

.contactInfo p {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 14px;
}

.contactForm {
  display: grid;
  gap: 28px;
}

.formRow {
  display: grid;
  gap: 10px;
}

.formRow label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.required {
  color: #e85b56;
  margin-left: 8px;
  font-size: 12px;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1.6;
  outline: none;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: #111;
}

.contactForm textarea {
  min-height: 220px;
  resize: vertical;
}

.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.privacyBox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.privacyBox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.submitBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px 28px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submitBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.noteText {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

.contactHoneypot {
  display: none !important;
}

.contactThanks {
  padding: 180px 0 120px;
}

.contactThanks__lead {
  max-width: 720px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 2;
  color: #444;
}

.contactThanks__actions {
  margin-top: 40px;
}

.contactBackBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px 28px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contactBackBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .contactHero {
    padding: 140px 0 64px;
  }

  .contactWrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contactLead,
  .contactThanks__lead {
    font-size: 15px;
  }
}

/* Contact Float 保険 */
.contact-float {
  color: #fff;
  text-decoration: none;
}

.contact-float__label {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
#contact #navIndicator {
  display:none;
}









/* =========================
   NEWS DETAIL PAGE
========================= */

.news-detail-page{
  background: #f0f0f0;
  color: #111;
}

.news-detail-wrap{
  width: min(960px, 92vw);
  margin: 0 auto;
}

.news-detail-hero{
  padding: 120px 0 40px;
}

.news-detail-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #555;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 36px;
  transition: opacity .2s ease, transform .2s ease;
}

.news-detail-back:hover{
  opacity: .7;
  transform: translateX(-2px);
}

.news-detail-meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.news-detail-date{
  font-size: 13px;
  letter-spacing: .06em;
  color: #444;
}

.news-detail-tags{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-detail-tag{
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
}

.news-detail-title{
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.3;
  font-weight: 600;
  color: #3b3b3b;
  letter-spacing: .02em;
}

.news-detail-lead{
  margin-top: 28px;
  max-width: 760px;
  font-size: 15px;
  line-height: 2.2;
  color: #555;
}

.news-detail-body{
  padding: 20px 0 120px;
}

.news-detail-main-image{
  margin: 0 0 48px;
}

.news-detail-main-image img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.news-detail-content{
  max-width: 760px;
  margin: 0 auto;
}

.news-detail-content p{
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 2.4;
  color: #3b3b3b;
  letter-spacing: .04em;
}

.news-detail-content h2{
  margin: 56px 0 18px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 600;
  color: #3b3b3b;
}

.news-detail-sub-image{
  margin: 42px 0;
}

.news-detail-sub-image img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.news-detail-footer-nav{
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(17,17,17,.12);
  display: flex;
  justify-content: center;
}

.news-detail-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  transition: opacity .2s ease, transform .2s ease;
}

.news-detail-btn:hover{
  opacity: .9;
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px){
  .news-detail-hero{
    padding: 96px 0 28px;
  }

  .news-detail-back{
    margin-bottom: 28px;
  }

  .news-detail-meta{
    gap: 14px;
    margin-bottom: 22px;
  }

  .news-detail-title{
    font-size: 30px;
    line-height: 1.45;
  }

  .news-detail-title br{
    display: none;
  }

  .news-detail-lead{
    margin-top: 20px;
    font-size: 14px;
    line-height: 2.1;
  }

  .news-detail-body{
    padding: 12px 0 88px;
  }

  .news-detail-main-image{
    margin-bottom: 32px;
  }

  .news-detail-content p{
    font-size: 14px;
    line-height: 2.2;
    margin-bottom: 22px;
  }

  .news-detail-content h2{
    margin: 42px 0 14px;
    font-size: 20px;
    line-height: 1.6;
  }

  .news-detail-sub-image{
    margin: 30px 0;
  }

  .news-detail-footer-nav{
    margin-top: 56px;
    padding-top: 24px;
  }

  .news-detail-btn{
    width: 100%;
    min-width: 0;
  }
}

