/* ==========================================================================
   Google Workspace 導入支援ページ専用スタイル（新版）
   Style_GoogleWS.css
   ========================================================================== */

/* --- リセット / 基本 --- */
html, body { overflow-x: hidden; box-sizing: border-box; }
*, *::before, *::after { box-sizing: border-box; }

#page, .site, .site-content, #content,
.content-area, .inside-article, article, .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.main-navigation.toggled,
.main-navigation.toggled .main-nav,
.main-navigation.toggled ul,
#site-navigation.toggled,
#site-navigation.toggled .main-nav,
#site-navigation.toggled ul { overflow: visible !important; }

.has-inline-mobile-toggle #site-navigation.toggled .main-nav > ul {
  max-height: none !important;
  overflow: visible !important;
}

.inside-header { padding: 20px 40px !important; }
.site-header { position: relative; z-index: 100; }

.site-content, .inside-article, article, .entry-content,
#primary, .content-area, .inside-page, .hentry,
.grid-container:not(.inside-header) {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.site-footer, footer.footer, .footer { margin-top: 0 !important; }

/* --- CSS 変数 --- */
.gws2-page {
  --navy:     #0F2350;
  --blue:     #1967D2;
  --blue-mid: #2D7DD2;
  --blue-lt:  #4285F4;
  --blue-bg:  #EAF1FB;
  --blue-bg2: #F0F6FF;
  --green:    #34A853;
  --yellow:   #FBBC04;
  --red:      #EA4335;
  --g50:      #F8F9FA;
  --g100:     #F1F3F4;
  --g200:     #E8EAED;
  --g400:     #BDC1C6;
  --g600:     #5F6368;
  --g800:     #3C4043;
  --g900:     #202124;
  --sh-sm:    0 2px 8px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:    0 4px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
  --sh-lg:    0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.07);
  --r-sm:     8px;
  --r-md:     14px;
  --r-lg:     22px;
}

/* --- ページ全体 --- */
.gws2-page {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden;
  font-family: var(--font-ja);
  color: var(--g800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- コンテナ --- */
.gws2-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.gws2-hero {
  background:
    radial-gradient(ellipse at 82% 0%, rgba(66,133,244,.20) 0%, transparent 52%),
    radial-gradient(ellipse at 8% 88%, rgba(52,168,83,.12) 0%, transparent 46%),
    linear-gradient(165deg, #0a1838 0%, #0f2350 46%, #13294f 100%);
  /* ヘッダー＋ヒーローで1画面に収める（--gws-hh はヘッダー実測値をJSで設定） */
  min-height: calc(100vh - var(--gws-hh, 84px));
  min-height: calc(100svh - var(--gws-hh, 84px));
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* コンテンツを縦中央に、カラーバーを最下部に */
.gws2-hero > .gws2-container {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* 上端のハイライト・ヘアライン（重厚さの中の繊細さ） */
.gws2-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  z-index: 3;
}

.gws2-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gws2-hero__deco::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,133,244,.18) 0%, transparent 65%);
  top: -220px;
  right: -180px;
}

.gws2-hero__deco::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,168,83,.13) 0%, transparent 65%);
  bottom: -40px;
  left: 3%;
}

.gws2-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* バッジ */
.gws2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
  padding: 9px 18px;
  margin-bottom: 28px;
}

/* バッジ左の小さなインジケータ */
.gws2-hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34A853;
  box-shadow: 0 0 0 3px rgba(52,168,83,.25);
  flex-shrink: 0;
}

.gws2-hero__badge svg { flex-shrink: 0; }

/* H1 */
.gws2-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 22px;
  letter-spacing: -.02em;
}

.gws2-hero__title em {
  font-style: normal;
  position: relative;
  color: #FFD24A;
}

.gws2-hero__title em::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #FFD24A;
  border-radius: 2px;
  opacity: .55;
}

/* リード */
.gws2-hero__lead {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(255,255,255,.74);
  margin: 0 0 36px;
}

/* CTAボタン群 */
.gws2-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ビジュアル側 */
.gws2-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* ヒーロー: ページロード時のストレートイン */
@keyframes gws2-hero-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gws2-hero-right {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.gws2-hero__badge  { animation: gws2-hero-up    0.55s cubic-bezier(.22,.68,0,1.15) 0.08s both; }
.gws2-hero__title  { animation: gws2-hero-up    0.65s cubic-bezier(.22,.68,0,1.15) 0.24s both; }
.gws2-hero__lead   { animation: gws2-hero-up    0.55s ease                         0.42s both; }
.gws2-hero__cta    { animation: gws2-hero-up    0.55s ease                         0.56s both; }
.gws2-hero__visual { animation: gws2-hero-right 0.75s cubic-bezier(.22,.68,0,1.1)  0.35s both; }

/* ==========================================================================
   ヒーロー視覚: 業務統合オービット（HUD）
   Google Workspace を中心ハブに、業務（営業・経理…）が六角形ノードとして公転。
   各ノードは順番に発光・拡大・変形して「稼働中」を表現する。
   ========================================================================== */
/* 枠は撤去し、オービットをヒーロー背景に直接浮かせる（透明な位置基準のみ） */
.gws2-orbit-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
}

/* 同心円フィールドライン */
.gws2-orbit__ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px solid rgba(140,180,255,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.gws2-orbit__ring--1 { width: 322px; height: 322px; }
.gws2-orbit__ring--2 { width: 404px; height: 404px; }

/* オービット本体 */
.gws2-orbit { position: relative; width: 412px; height: 412px; margin: 0 auto; z-index: 1; }
.gws2-orbit__rotor { position: absolute; inset: 0; animation: gws2oSpin 42s linear infinite; }

/* スポーク（中心→各業務）＋流れる光 */
.gws2-spoke { position: absolute; top: 50%; left: 50%; width: 154px; height: 2px; transform-origin: 0 50%; background: linear-gradient(90deg, rgba(140,180,255,.30), rgba(140,180,255,0)); }
.gws2-flow { position: absolute; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: #bcd6ff; box-shadow: 0 0 10px 2px rgba(140,180,255,.85); animation: gws2oFlow 2.6s linear infinite; }

/* 六角形ノード */
.gws2-sat { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.gws2-hex { position: absolute; width: 102px; height: 102px; margin: -51px; animation: gws2oRev 42s linear infinite; }
.gws2-hex__inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 6px 16px rgba(0,0,0,.42)) drop-shadow(0 0 13px rgba(120,170,255,.30)); animation: gws2oAct 8s ease-in-out infinite; }
.gws2-hex__b, .gws2-hex__f { position: absolute; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.gws2-hex__b { inset: 0; background: linear-gradient(155deg, rgba(180,210,255,.85), rgba(110,160,255,.30)); animation: gws2oMorph 8s ease-in-out infinite, gws2oBright 8s ease-in-out infinite; }
.gws2-hex__f { inset: 2px; background: rgba(14,28,62,.90); animation: gws2oMorph 8s ease-in-out infinite; }
.gws2-hex__c { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.gws2-hex__c svg { width: 26px; height: 26px; color: #9ec5ff; filter: drop-shadow(0 0 8px rgba(120,170,255,.65)); }
.gws2-hex__c span { font-size: 16px; font-weight: 600; color: #eaf1ff; }

/* 中心ハブ（Google Workspace） */
.gws2-hub { position: absolute; top: 50%; left: 50%; width: 132px; height: 132px; margin: -66px; display: flex; align-items: center; justify-content: center; }
.gws2-hub__halo { position: absolute; inset: -8px; border-radius: 50%; background: conic-gradient(#4285F4, #EA4335, #FBBC04, #34A853, #4285F4); filter: blur(10px); opacity: .78; animation: gws2oSpin 7s linear infinite; }
.gws2-hub__core { position: relative; width: 118px; height: 118px; border-radius: 50%; background: radial-gradient(circle at 50% 36%, #173a7e, #0a1a3c); border: 1px solid rgba(255,255,255,.20); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; line-height: 1.18; box-shadow: inset 0 1px 0 rgba(255,255,255,.20), 0 8px 30px rgba(0,0,0,.45); }
.gws2-hub__core b { font-size: 16px; font-weight: 700; color: #fff; }
.gws2-hub__core small { font-size: 16px; color: #bcd0f5; letter-spacing: .03em; }

/* スポーク配置・フロー位相 */
.gws2-spoke:nth-child(1) { transform: rotate(-90deg); }
.gws2-spoke:nth-child(2) { transform: rotate(-30deg); }
.gws2-spoke:nth-child(3) { transform: rotate(30deg); }
.gws2-spoke:nth-child(4) { transform: rotate(90deg); }
.gws2-spoke:nth-child(5) { transform: rotate(150deg); }
.gws2-spoke:nth-child(6) { transform: rotate(210deg); }
.gws2-spoke:nth-child(2) .gws2-flow { animation-delay: .45s; }
.gws2-spoke:nth-child(3) .gws2-flow { animation-delay: .9s; }
.gws2-spoke:nth-child(4) .gws2-flow { animation-delay: 1.3s; }
.gws2-spoke:nth-child(5) .gws2-flow { animation-delay: 1.75s; }
.gws2-spoke:nth-child(6) .gws2-flow { animation-delay: 2.2s; }

/* サテライト配置（60度ずつ）。末尾の rotate(-N) で中身を正立させ、文字が逆さまにならないようにする */
.gws2-sat:nth-child(7)  { transform: rotate(0deg)   translateY(-154px) rotate(0deg);    }
.gws2-sat:nth-child(8)  { transform: rotate(60deg)  translateY(-154px) rotate(-60deg);  }
.gws2-sat:nth-child(9)  { transform: rotate(120deg) translateY(-154px) rotate(-120deg); }
.gws2-sat:nth-child(10) { transform: rotate(180deg) translateY(-154px) rotate(-180deg); }
.gws2-sat:nth-child(11) { transform: rotate(240deg) translateY(-154px) rotate(-240deg); }
.gws2-sat:nth-child(12) { transform: rotate(300deg) translateY(-154px) rotate(-300deg); }

/* 活性化（発光・拡大・変形）の時間差 */
.gws2-sat:nth-child(7)  .gws2-hex__inner, .gws2-sat:nth-child(7)  .gws2-hex__b, .gws2-sat:nth-child(7)  .gws2-hex__f { animation-delay: 0s; }
.gws2-sat:nth-child(8)  .gws2-hex__inner, .gws2-sat:nth-child(8)  .gws2-hex__b, .gws2-sat:nth-child(8)  .gws2-hex__f { animation-delay: 1.3s; }
.gws2-sat:nth-child(9)  .gws2-hex__inner, .gws2-sat:nth-child(9)  .gws2-hex__b, .gws2-sat:nth-child(9)  .gws2-hex__f { animation-delay: 2.6s; }
.gws2-sat:nth-child(10) .gws2-hex__inner, .gws2-sat:nth-child(10) .gws2-hex__b, .gws2-sat:nth-child(10) .gws2-hex__f { animation-delay: 4s; }
.gws2-sat:nth-child(11) .gws2-hex__inner, .gws2-sat:nth-child(11) .gws2-hex__b, .gws2-sat:nth-child(11) .gws2-hex__f { animation-delay: 5.3s; }
.gws2-sat:nth-child(12) .gws2-hex__inner, .gws2-sat:nth-child(12) .gws2-hex__b, .gws2-sat:nth-child(12) .gws2-hex__f { animation-delay: 6.6s; }

@keyframes gws2oSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes gws2oRev  { from { transform: rotate(0); } to { transform: rotate(-360deg); } }
@keyframes gws2oFlow { 0% { left: 60px; opacity: 0; } 12% { opacity: 1; } 80% { opacity: 1; } 100% { left: 154px; opacity: 0; } }
@keyframes gws2oDot  { 0%, 100% { box-shadow: 0 0 0 0 rgba(52,210,122,.55); } 50% { box-shadow: 0 0 0 6px rgba(52,210,122,0); } }
@keyframes gws2oAct {
  0%, 84%, 100% { transform: scale(1);    filter: drop-shadow(0 6px 16px rgba(0,0,0,.42)) drop-shadow(0 0 13px rgba(120,170,255,.30)); }
  92%           { transform: scale(1.13); filter: drop-shadow(0 8px 18px rgba(0,0,0,.45)) drop-shadow(0 0 26px rgba(165,205,255,.92)); }
}
@keyframes gws2oMorph {
  0%, 84%, 100% { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
  92%           { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
}
@keyframes gws2oBright {
  0%, 84%, 100% { background: linear-gradient(155deg, rgba(180,210,255,.85), rgba(110,160,255,.30)); }
  92%           { background: linear-gradient(155deg, rgba(215,232,255,1), rgba(150,195,255,.78)); }
}


/* 下部カラーバー */
.gws2-hero__bar {
  width: 100%;
  height: 5px;
  display: flex;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.gws2-hero__bar span { flex: 1; }
.gws2-hero__bar span:nth-child(1) { background: #4285F4; }
.gws2-hero__bar span:nth-child(2) { background: #EA4335; }
.gws2-hero__bar span:nth-child(3) { background: #FBBC04; }
.gws2-hero__bar span:nth-child(4) { background: #34A853; }

/* ==========================================================================
   ボタン
   ========================================================================== */
.gws2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
  transition: all .2s;
}

.gws2-btn--primary {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 8px 26px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,1);
}
.gws2-btn--primary:hover {
  background: #eef3ff;
  color: var(--navy);
  box-shadow: 0 12px 34px rgba(0,0,0,.34);
  transform: translateY(-2px);
}

.gws2-btn--ghost {
  background: rgba(255,255,255,.05);
  color: #ffffff;
  border-color: rgba(255,255,255,.30);
}
.gws2-btn--ghost:hover {
  background: rgba(255,255,255,.13);
  color: #ffffff;
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}

.gws2-btn--white { background: #fff; color: var(--navy); }
.gws2-btn--white:hover {
  background: var(--blue-bg);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ==========================================================================
   セクション共通
   ========================================================================== */
.gws2-section {
  padding: 100px 0;
  background: #fff;
}

.gws2-section--gray { background: var(--g50); }
/* FAQ: 大きめドットパターンで上書き */
#faq {
  background:
    radial-gradient(circle at 2px 2px, rgba(25,103,210,.075) 2px, transparent 0) 0 0 / 44px 44px,
    #f4f7fb;
}
.gws2-section--blue { background: var(--blue-bg2); }

.gws2-section-hd { margin-bottom: 56px; }
.gws2-section-hd--center { text-align: center; }
.gws2-section-hd--center .gws2-section-lead { margin-inline: auto; }

.gws2-eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
  display: inline-block;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}
.gws2-eyebrow--lt { color: rgba(255,255,255,.6); border-left-color: rgba(255,255,255,.4); }
.gws2-section-hd--center .gws2-eyebrow { padding-left: 0; border-left: none; }

.gws2-section-hd h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 16px;
}

.gws2-section-lead {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.95;
  max-width: 620px;
  margin: 0;
}

/* ==========================================================================
   01 CHALLENGES（課題カード）
   ========================================================================== */
/* セクション基盤（フラットなライトグレー） */
.gws2-challenges-sec {
  position: relative;
  padding: 96px 0;
  /* 斜め hairline ストライプ */
  background:
    repeating-linear-gradient(
      -48deg,
      transparent 0px, transparent 22px,
      rgba(15,35,80,.032) 22px, rgba(15,35,80,.032) 23px
    ),
    #edf0f6;
}
.gws2-challenges-sec > .gws2-container { position: relative; z-index: 1; }

.gws2-challenges-sec .gws2-section-hd { margin-bottom: 26px; }
.gws2-challenges-sec .gws2-eyebrow { color: var(--blue); }
.gws2-challenges-sec h2 { color: var(--navy); }
.gws2-challenges-sec .gws2-section-lead { color: var(--g600); }

/* 技術ワードのマーキー */
.gws2-cmar {
  position: relative;
  border-top: 1px solid rgba(15,35,80,.12);
  border-bottom: 1px solid rgba(15,35,80,.12);
  overflow: hidden;
  padding: 10px 0;
  margin: 0 0 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.gws2-cmar__track { display: inline-flex; white-space: nowrap; animation: gws2cMar 24s linear infinite; }
.gws2-cmar__track b { font-size: 16px; font-weight: 600; letter-spacing: .16em; color: rgba(15,35,80,.42); padding: 0 4px; }
.gws2-cmar__track i { color: #4285F4; padding: 0 22px; font-style: normal; }

/* 連番カード（シャープ・フラット・上端アクセント） */
.gws2-challenges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gws2-challenge {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,35,80,.08);
  border-top: 3px solid #4285F4;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.gws2-challenge:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(15,35,80,.10); }
.gws2-challenge:nth-child(1) { border-top-color: #4285F4; }
.gws2-challenge:nth-child(2) { border-top-color: #34A853; }
.gws2-challenge:nth-child(3) { border-top-color: #FBBC04; }
.gws2-challenge:nth-child(4) { border-top-color: #EA4335; }

/* 番号バッジ（シャープ・ネイビー） */
.gws2-challenge__no {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 16px; font-weight: 800; letter-spacing: .12em;
  line-height: 1.3;
  color: #fff; background: var(--navy);
  padding: 4px 12px;
}

.gws2-challenge h3 {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin: 0; line-height: 1.45;
}

/* イラスト枠（AI画像差し替え予定。未設置時はプレースホルダのアイコンを表示） */
.gws2-challenge__img {
  width: 100%; height: 100px;
  display: flex; align-items: center; justify-content: center;
  margin: 2px 0;
}
.gws2-challenge__img img { max-width: 100%; max-height: 100px; object-fit: contain; }
.gws2-challenge__ph { width: 80px; height: 80px; color: rgba(15,35,80,.28); }

.gws2-challenge p {
  font-size: 16px; color: var(--g600);
  line-height: 1.85; margin: 0;
  text-align: left;
  align-self: stretch;
}

/* スクロールインの演出（JS が js-reveal を付与した時のみ。無 JS では通常表示） */
.gws2-challenges-sec.js-reveal .gws2-section-hd { opacity: 0; transform: translateY(26px); }
/* カードは小さく出てから “すわっと” 現在サイズへ拡大 */
.gws2-challenges-sec.js-reveal .gws2-challenge { opacity: 0; transform: scale(.8); }
.gws2-challenges-sec.js-reveal.is-visible .gws2-section-hd { animation: gws2cUp .6s cubic-bezier(.2,.7,.3,1) forwards; }
.gws2-challenges-sec.js-reveal.is-visible .gws2-challenge { animation: gws2cPop .5s cubic-bezier(.34,1.45,.6,1) forwards; }
.gws2-challenges-sec.js-reveal.is-visible .gws2-challenge:nth-child(1) { animation-delay: .10s; }
.gws2-challenges-sec.js-reveal.is-visible .gws2-challenge:nth-child(2) { animation-delay: .22s; }
.gws2-challenges-sec.js-reveal.is-visible .gws2-challenge:nth-child(3) { animation-delay: .34s; }
.gws2-challenges-sec.js-reveal.is-visible .gws2-challenge:nth-child(4) { animation-delay: .46s; }

@keyframes gws2cUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes gws2cPop { to { opacity: 1; transform: scale(1); } }
@keyframes gws2cMar { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .gws2-cmar__track { animation: none; }
  .gws2-challenges-sec.js-reveal .gws2-section-hd,
  .gws2-challenges-sec.js-reveal .gws2-challenge { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ==========================================================================
   02 WHY GWS（なぜ Google Workspace か）
   ========================================================================== */
.gws2-whygws-sec {
  padding: 96px 0;
  /* 白×斜めグラジェントで Challenges と Solutions の間に位置感を出す */
  background: linear-gradient(160deg, #fff 0%, #f4f8ff 55%, #fff 100%);
}

.gws2-whygws-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gws2-whygws-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #dce4f0;
  border-left: 4px solid var(--blue);
  padding: 24px 22px;
}

.gws2-whygws-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF1FA;
  color: var(--blue);
}

.gws2-whygws-ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.4;
}

.gws2-whygws-txt {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 768px) {
  .gws2-whygws-list { grid-template-columns: 1fr; }
  .gws2-whygws-sec  { padding: 56px 0; }
}

/* ==========================================================================
   03 SOLUTIONS（番号フロー）
   ========================================================================== */
.gws2-solutions-sec {
  padding: 96px 0;
  /* 方眼グリッド */
  background:
    linear-gradient(rgba(25,103,210,.055) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(90deg, rgba(25,103,210,.055) 1px, transparent 1px) 0 0 / 38px 38px,
    #f2f7fe;
}

/* プロセス・タイムライン */
.gws2-soltl {
  position: relative;
  max-width: none;
  padding-left: 66px;
}
.gws2-soltl__track {
  position: absolute; left: 23px; top: 6px; bottom: 6px; width: 2px;
  background: rgba(15,35,80,.12);
}
.gws2-soltl__fill {
  position: absolute; left: 23px; top: 6px; width: 2px; height: 0;
  background: #1967D2;
}
.gws2-solutions-sec.is-visible .gws2-soltl__fill { animation: gws2sFill 2.6s ease-out .15s forwards; }

.gws2-sol-item { position: relative; margin-bottom: 16px; }
.gws2-sol-num {
  position: absolute; left: -66px; top: 0;
  width: 48px; height: 48px;
  background: var(--navy); color: #fff;
  font-family: var(--font-en); font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.gws2-sol-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,35,80,.08);
  border-left: 3px solid #1967D2;
  padding: 22px 26px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.gws2-sol-card:hover { transform: translateX(4px); box-shadow: 0 10px 26px rgba(15,35,80,.10); }
.gws2-sol-card__no {
  position: absolute; right: 14px; top: 2px;
  font-family: var(--font-en); font-size: 56px; font-weight: 800;
  color: rgba(15,35,80,.05); line-height: 1; pointer-events: none;
}
.gws2-sol-card h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  margin: 0 0 8px; line-height: 1.4; position: relative; z-index: 1;
}
.gws2-sol-card p {
  font-size: 16px; color: var(--g600); line-height: 1.85; margin: 0; position: relative; z-index: 1;
}

/* スクロールイン（js-reveal 付与時のみ。無 JS では通常表示） */
.gws2-solutions-sec.js-reveal .gws2-section-hd { opacity: 0; transform: translateY(26px); }
.gws2-solutions-sec.js-reveal .gws2-sol-item { opacity: 0; transform: translateX(-18px); }
.gws2-solutions-sec.js-reveal.is-visible .gws2-section-hd { animation: gws2cUp .6s cubic-bezier(.2,.7,.3,1) forwards; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-sol-item { animation: gws2sRow .5s cubic-bezier(.2,.7,.3,1) forwards; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-soltl__steps .gws2-sol-item:nth-child(1) { animation-delay: .05s; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-soltl__steps .gws2-sol-item:nth-child(2) { animation-delay: .18s; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-soltl__steps .gws2-sol-item:nth-child(3) { animation-delay: .31s; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-soltl__steps .gws2-sol-item:nth-child(4) { animation-delay: .44s; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-soltl__steps .gws2-sol-item:nth-child(5) { animation-delay: .57s; }
.gws2-solutions-sec.js-reveal.is-visible .gws2-soltl__steps .gws2-sol-item:nth-child(6) { animation-delay: .70s; }

@keyframes gws2sFill { to { height: calc(100% - 12px); } }
@keyframes gws2sRow  { to { opacity: 1; transform: none; } }

/* ==========================================================================
   ISMS（セキュリティ）
   ========================================================================== */
.gws2-isms {
  background: linear-gradient(135deg, #0a1a3a 0%, #0F2350 50%, #1967D2 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.gws2-isms::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  top: -200px; right: -80px;
  pointer-events: none;
}

.gws2-isms::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(52,168,83,.06);
  bottom: -80px; left: 10%;
  pointer-events: none;
}

.gws2-isms__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gws2-isms__shield {
  width: 140px; height: 140px;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.gws2-isms__shield svg { width: 76px; height: 76px; }

.gws2-isms__right h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 10px 0 16px;
  line-height: 1.4;
}

.gws2-isms__right p {
  font-size: 1rem;
  color: rgba(255,255,255,.74);
  line-height: 2;
  margin: 0 0 28px;
  max-width: 600px;
}

.gws2-isms__points { display: flex; flex-direction: column; gap: 11px; }

.gws2-isms__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,.86);
  font-weight: 500;
}

.gws2-isms__point svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
/* FAQ セクション背景（グレー＋微細ドット） */
#faq {
  background:
    radial-gradient(circle at 1px 1px, rgba(15,35,80,.05) 1px, transparent 1.7px) 0 0 / 26px 26px,
    #F2F4F7;
}

.gws2-faq {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gws2-faq__item {
  background: #fff;
  border: 1px solid rgba(15,35,80,.08);
  border-left: 3px solid var(--blue);
  transition: border-color .2s ease, background .2s ease;
}

.gws2-faq__item[open] {
  border-left-color: var(--navy);
}

.gws2-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.gws2-faq__q::-webkit-details-marker { display: none; }

.gws2-faq__q::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.gws2-faq__q::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--g400);
  border-bottom: 2px solid var(--g400);
  transform: rotate(45deg);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.gws2-faq__item[open] .gws2-faq__q::after {
  transform: rotate(-135deg);
  border-color: var(--blue);
}

.gws2-faq__q:hover { color: var(--blue); }

.gws2-faq__a p {
  padding: 0 26px 22px calc(26px + 34px + 16px);
  font-size: 16px;
  color: var(--g600);
  line-height: 1.95;
  margin: 0;
}

/* ==========================================================================
   WHY US（選ばれる理由・比較表）
   ========================================================================== */
.gws2-whyus-sec {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.055) 1px, transparent 1.7px) 0 0 / 26px 26px,
    #0b1d3e;
}
.gws2-whyus-sec::before {
  content: 'COMPARE';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  color: rgba(255,255,255,.1);
}

.gws2-whyus-sec > .gws2-container { position: relative; z-index: 1; }
/* WHY US: 見出しを白に */
.gws2-whyus-sec .gws2-section-hd h2 { color: #fff; }
.gws2-whyus-sec .gws2-section-lead  { color: rgba(255,255,255,.72); }
.gws2-whyus-sec .gws2-eyebrow       { color: rgba(255,255,255,.55); border-left-color: rgba(255,255,255,.35); }
/* テーブルラッパーに影でテーブルを浮かせる */
.gws2-whyus-sec .gws2-cmp-wrap { box-shadow: 0 8px 40px rgba(0,0,0,.35); }
/* テクノリ列はブルーに変更（ネイビー背景と区別） */
.gws2-whyus-sec .gws2-cmp thead th.gws2-cmp__me { background: #1967D2; border-bottom-color: rgba(255,255,255,.25); }
.gws2-whyus-sec .gws2-cmp td.gws2-cmp__me        { background: #1553aa; border-bottom-color: rgba(255,255,255,.12); }
.gws2-cmp-wrap { overflow-x: auto; }
.gws2-cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 16px; }
.gws2-cmp th, .gws2-cmp td { padding: 18px 16px; text-align: center; vertical-align: middle; }

/* ヘッダー */
.gws2-cmp thead th { font-size: 16px; font-weight: 700; color: var(--g600); background: #fff; border-bottom: 2px solid #bbc3d0; line-height: 1.45; }
.gws2-cmp thead th.gws2-cmp__me { background: var(--navy); color: #fff; border-bottom: 2px solid rgba(255,255,255,.3); }
.gws2-cmp thead th.gws2-cmp__me .gws2-cmp__name { display: block; font-size: 17px; font-weight: 800; }
.gws2-cmp__pick { display: inline-block; font-size: 16px; font-weight: 800; color: var(--navy); background: #FFD24A; padding: 2px 14px; margin-bottom: 8px; }

/* セル */
.gws2-cmp tbody td { background: #fff; border-bottom: 1px solid #c8cedb; color: var(--g600); }
.gws2-cmp tbody tr:hover td:not(.gws2-cmp__me) { background: #f7f9fc; }
/* マーク別にセルを色分け（違いを一目で。勝ち列はネイビー維持） */
.gws2-cmp tbody td:not(.gws2-cmp__me):has(.gws2-mk--o) { background: #ecf8f0; }
.gws2-cmp tbody td:not(.gws2-cmp__me):has(.gws2-mk--t) { background: #fff7e6; }
.gws2-cmp tbody td:not(.gws2-cmp__me):has(.gws2-mk--x) { background: #f4f5f7; }
.gws2-cmp td.gws2-cmp__label { text-align: left; font-weight: 700; color: var(--navy); width: 26%; }
/* 勝ち列＝ネイビー帯 */
.gws2-cmp td.gws2-cmp__me { background: var(--navy); color: #fff; border-bottom: 1px solid rgba(255,255,255,.14); }
.gws2-cmp tbody tr:last-child td { border-bottom: none; }

.gws2-cmp small { display: block; font-size: 16px; font-weight: 400; color: var(--g600); margin-top: 5px; line-height: 1.5; }
.gws2-cmp td.gws2-cmp__me small { color: #cddcff; }

.gws2-mk { font-size: 24px; font-weight: 800; line-height: 1; }
.gws2-mk--o { color: #1aa653; }
.gws2-mk--t { color: #D99800; }
.gws2-mk--x { color: #c2c6cc; }
.gws2-cmp td.gws2-cmp__me .gws2-mk--o { color: #5ee79b; }

/* ==========================================================================
   MeiPeer（ご契約特典）
   ========================================================================== */
.gws2-meipeer-sec {
  padding: 96px 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(25,103,210,.06) 1px, transparent 1.7px) 0 0 / 26px 26px,
    #EAF1FA;
}
.gws2-mp { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }
.gws2-mp__l { flex: 1; min-width: 280px; }
.gws2-mp__tag { display: inline-block; background: var(--navy); color: #fff; font-size: 16px; font-weight: 700; letter-spacing: .04em; padding: 6px 14px; margin-bottom: 14px; }
.gws2-mp h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin: 0 0 8px; line-height: 1.4; }
.gws2-mp h3 b { color: var(--blue); }
.gws2-mp__sub { font-size: 16px; color: var(--g600); line-height: 1.85; margin: 0 0 16px; }
.gws2-mp__feat { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gws2-mp__feat li { font-size: 16px; color: var(--g800); line-height: 1.7; background: #fff; border: 1px solid #dbe2ec; border-left: 3px solid var(--blue); padding: 13px 16px; }
.gws2-mp__feat b { color: var(--navy); }
.gws2-mp__note { font-size: 16px; color: var(--g600); margin: 14px 0 0; line-height: 1.7; }
.gws2-mp__l .gws2-mp__btn { margin: 24px auto 0; display: flex; width: fit-content; background: #0E234E; border-color: #0E234E; color: #fff; box-shadow: none; }
.gws2-mp__l .gws2-mp__btn:hover { background: #0a1a3a; border-color: #0a1a3a; color: #fff; box-shadow: none; transform: translateY(-2px); }
.gws2-mp__card { width: 240px; flex-shrink: 0; background: #fff; border: 1px solid #dbe2ec; padding: 22px 18px; }
.gws2-mp__card-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin: 0 0 14px; }
.gws2-mp__steps { display: flex; flex-direction: column; gap: 0; }
.gws2-mp__step { display: flex; align-items: center; gap: 12px; background: #f7f9fc; border: 1px solid #dbe2ec; padding: 10px 12px; }
.gws2-mp__step-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.gws2-mp__step-icon svg { width: 18px; height: 18px; color: #fff; }
.gws2-mp__step-body { display: flex; flex-direction: column; gap: 2px; }
.gws2-mp__step-body b { font-size: 14px; color: var(--navy); }
.gws2-mp__step-body span { font-size: 12px; color: var(--g600); }
.gws2-mp__step-arrow { text-align: center; font-size: 16px; color: var(--blue); line-height: 1.4; padding: 2px 0; }

/* ==========================================================================
   料金・プラン
   ========================================================================== */
.gws2-pricing-sec {
  padding: 96px 0;
  /* 斜めグラジェント＋ドット重ね */
  background:
    radial-gradient(circle at 2px 2px, rgba(25,103,210,.09) 2px, transparent 0) 0 0 / 36px 36px,
    linear-gradient(150deg, #d8e8ff 0%, #e5effc 45%, #eef5ff 100%);
}
/* 料金の決まり方（式） */
.gws2-pcalc { display: flex; align-items: stretch; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.gws2-pcalc__item { flex: 1 1 0; min-width: 188px; background: #fff; border: 1px solid rgba(15,35,80,.08); border-top: 3px solid var(--blue); padding: 24px 22px; transition: box-shadow .25s, transform .25s; }
.gws2-pcalc__item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(15,35,80,.10); }
.gws2-pcalc__item:nth-of-type(1) { border-top-color: #4285F4; }
.gws2-pcalc__item:nth-of-type(2) { border-top-color: #34A853; }
.gws2-pcalc__item:nth-of-type(3) { border-top-color: #FBBC04; }
.gws2-pcalc__no { display: inline-block; font-family: var(--font-en); font-weight: 800; font-size: 16px; color: #fff; background: var(--navy); padding: 2px 10px; margin-bottom: 12px; }
.gws2-pcalc__ico { width: 34px; height: 34px; color: var(--navy); display: block; margin-bottom: 10px; }
.gws2-pcalc__t { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.gws2-pcalc__s { font-size: 16px; color: var(--g600); margin: 0; line-height: 1.65; }
.gws2-pcalc__op { align-self: center; font-size: 26px; font-weight: 800; color: var(--navy); opacity: .5; flex: 0 0 auto; }
.gws2-pcalc__result { flex: 1.25 1 0; min-width: 210px; background: var(--navy); color: #fff; padding: 24px 24px; display: flex; flex-direction: column; justify-content: center; }
.gws2-pcalc__rt { font-size: 16px; color: #bcd0f5; margin: 0 0 6px; }
.gws2-pcalc__rb { font-size: 26px; font-weight: 800; color: #fff; margin: 0; }
.gws2-pcalc__rs { font-size: 16px; color: #bcd0f5; margin: 8px 0 0; }

/* 安心の土台（1px gap で全方向に区切り線） */
.gws2-passure { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(15,35,80,.10); border: 1px solid rgba(15,35,80,.10); }
.gws2-passure__item { background: #fff; padding: 22px 20px; }
.gws2-passure__h { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.gws2-passure__h svg { width: 22px; height: 22px; color: #34A853; flex: 0 0 auto; }
.gws2-passure__d { font-size: 16px; color: var(--g600); margin: 0; line-height: 1.65; }


/* ==========================================================================
   導入モデルケース
   ========================================================================== */
.gws2-cases-sec {
  padding: 96px 0;
  /* ドットグリッド＋縦グラジェント */
  background:
    radial-gradient(circle at 1px 1px, rgba(15,35,80,.055) 1px, transparent 1.7px) 0 0 / 30px 30px,
    linear-gradient(180deg, #f8faff 0%, #fff 60%);
}
.gws2-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gws2-case { background: #fff; border: 1px solid rgba(15,35,80,.08); border-top: 3px solid var(--blue); padding: 26px 22px; }
.gws2-case:nth-child(1) { border-top-color: #4285F4; }
.gws2-case:nth-child(2) { border-top-color: #34A853; }
.gws2-case:nth-child(3) { border-top-color: #EA4335; }
.gws2-case__cat { display: inline-block; font-size: 16px; font-weight: 700; color: #fff; background: var(--navy); padding: 4px 12px; margin-bottom: 12px; }
.gws2-case h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 18px; line-height: 1.5; }
/* 課題 → 導入 → 効果 のミニタイムライン */
.gws2-case__flow { margin: 0; }
.gws2-case__step { position: relative; padding: 0 0 16px 22px; }
.gws2-case__step:last-child { padding-bottom: 0; }
.gws2-case__step::before { content: ''; position: absolute; left: 5px; top: 10px; bottom: -6px; width: 2px; background: rgba(15,35,80,.10); }
.gws2-case__step:last-child::before { display: none; }
.gws2-case__step::after { content: ''; position: absolute; left: 0; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid #9aa0a6; }
.gws2-case__step--d::after { border-color: #4285F4; }
.gws2-case__step--e::after { border-color: #1e8e3e; background: #34A853; }
.gws2-case__lbl { display: inline-block; font-size: 16px; font-weight: 700; margin: 0 0 4px; color: #5f6368; }
.gws2-case__step--d .gws2-case__lbl { color: #1967D2; }
.gws2-case__step--e .gws2-case__lbl { color: #1e8e3e; }
.gws2-case__txt { font-size: 16px; color: var(--g600); line-height: 1.75; margin: 0; }
.gws2-case__step--e .gws2-case__txt { color: var(--g800); }
.gws2-cases__note { font-size: 16px; color: var(--g600); margin: 16px 0 0; }

/* WHY US 以降のスクロールイン（料金の式・実績カード） */
#pricing.js-reveal .gws2-pcalc > *,
#cases.js-reveal .gws2-case { opacity: 0; }
#pricing.js-reveal .gws2-pcalc__item,
#pricing.js-reveal .gws2-pcalc__result,
#cases.js-reveal .gws2-case { transform: scale(.92); }
#pricing.js-reveal.is-visible .gws2-pcalc > *,
#cases.js-reveal.is-visible .gws2-case { animation: gws2cPop .5s cubic-bezier(.34,1.45,.6,1) forwards; }
#pricing.js-reveal.is-visible .gws2-pcalc > *:nth-child(2) { animation-delay: .10s; }
#pricing.js-reveal.is-visible .gws2-pcalc > *:nth-child(3) { animation-delay: .20s; }
#pricing.js-reveal.is-visible .gws2-pcalc > *:nth-child(4) { animation-delay: .30s; }
#pricing.js-reveal.is-visible .gws2-pcalc > *:nth-child(5) { animation-delay: .40s; }
#pricing.js-reveal.is-visible .gws2-pcalc > *:nth-child(6) { animation-delay: .50s; }
#pricing.js-reveal.is-visible .gws2-pcalc > *:nth-child(7) { animation-delay: .60s; }
#cases.js-reveal.is-visible .gws2-case:nth-child(2) { animation-delay: .12s; }
#cases.js-reveal.is-visible .gws2-case:nth-child(3) { animation-delay: .24s; }
#pricing.js-reveal .gws2-passure { opacity: 0; transform: translateY(18px); }
#pricing.js-reveal.is-visible .gws2-passure { animation: gws2cUp .6s cubic-bezier(.2,.7,.3,1) .55s forwards; }

/* ==========================================================================
   CTA
   ========================================================================== */
.gws2-cta {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.045) 1px, transparent 1.7px) 0 0 / 26px 26px,
    linear-gradient(160deg, #0a1a3a 0%, #102a5e 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.gws2-cta__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gws2-cta__text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 10px 0 16px;
  line-height: 1.35;
}

.gws2-cta__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.76);
  line-height: 1.9;
  margin: 0;
}

/* 左カラムの安心ポイント */
.gws2-cta__points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; }
.gws2-cta__point { display: flex; align-items: center; gap: 8px; font-size: 16px; color: rgba(255,255,255,.85); }
.gws2-cta__point svg { width: 18px; height: 18px; color: #46e08a; flex: 0 0 auto; }

/* 連絡チャネル（フラット・シャープ） */
.gws2-cta__panel { display: grid; gap: 14px; }
.gws2-cta__ch { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); border-top: 2px solid #34A853; padding: 22px 24px; text-align: center; }
.gws2-cta__ch--form { border-top-color: #4285F4; }
.gws2-cta__chlabel { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; color: rgba(255,255,255,.66); margin: 0 0 10px; }
.gws2-cta__chlabel svg { width: 18px; height: 18px; flex: 0 0 auto; color: #46e08a; }
.gws2-cta__ch--form .gws2-cta__chlabel svg { color: #6ba5f0; }
.gws2-cta__tel {
  display: inline-block;
  font-size: clamp(28px, 3.6vw, 34px);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: .03em;
  line-height: 1;
  font-family: var(--font-en);
  transition: color .2s;
}
.gws2-cta__tel:hover { color: #8ab4f8; }
.gws2-cta__hours { font-size: 16px; color: rgba(255,255,255,.55); margin: 8px 0 0; }
.gws2-cta__ch .gws2-btn { border-radius: 0; width: 100%; justify-content: center; margin-top: 2px; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 960px) {
  /* ヒーローは1カラム・自然な高さに（1画面固定は解除） */
  .gws2-hero { min-height: 0; padding: 28px 0 0; display: block; }
  .gws2-hero > .gws2-container { display: block; padding-top: 0; padding-bottom: 28px; }
  .gws2-hero__inner  { grid-template-columns: 1fr; gap: 36px; }
  /* テキスト・ボタンを中央揃えに */
  .gws2-hero__content { text-align: center; }
  .gws2-hero__cta     { justify-content: center; }
  /* オービットの固定幅(412px)でヒーロー本文が広がらないよう抑制 */
  .gws2-hero__visual { align-items: center; padding-bottom: 8px; min-width: 0; }
  .gws2-orbit-frame  { min-width: 0; max-width: 100%; overflow: hidden; }
  /* CTAセクション */
  .gws2-cta__inner   { grid-template-columns: 1fr; gap: 44px; }
  .gws2-cta__text    { text-align: center; }
  .gws2-cta__text p  { text-align: left; }
  .gws2-cta__text .gws2-eyebrow { padding-left: 0; border-left: none; }
  .gws2-cta__points  { justify-content: center; }
  /* 電話・フォームを横並びに、ボックス内は中央揃え */
  .gws2-cta__panel   { grid-template-columns: 1fr 1fr; max-width: 100%; margin: 0 auto; }
  .gws2-cta__ch      { text-align: center; }
  .gws2-cta__chlabel { justify-content: center; }
}

@media (max-width: 768px) {
  .inside-header { padding: 16px 20px !important; }
  .gws2-section { padding: 64px 0; }
  .gws2-cta     { padding: 64px 0; }
  /* 新セクション群も余白を縮小 */
  .gws2-challenges-sec,
  .gws2-solutions-sec,
  .gws2-whyus-sec,
  .gws2-meipeer-sec,
  .gws2-pricing-sec,
  .gws2-cases-sec { padding: 64px 0; }

  .gws2-hero__cta { flex-direction: column; }
  .gws2-btn { width: 100%; justify-content: center; }

  /* グリッドを縦積みに */
  .gws2-challenges { grid-template-columns: repeat(2, 1fr); }
  .gws2-cases      { grid-template-columns: 1fr; }

  /* 料金の式は縦並び */
  .gws2-pcalc { flex-direction: column; align-items: stretch; }
  .gws2-pcalc__item, .gws2-pcalc__result { flex: none; width: 100%; }
  .gws2-pcalc__op { align-self: center; }
  /* 縦一列時: 番号+アイコンを左列、テキストを右列に */
  .gws2-pcalc__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    row-gap: 6px;
    padding: 20px;
  }
  .gws2-pcalc__no  { grid-column: 1; grid-row: 1; margin-bottom: 0; align-self: start; }
  .gws2-pcalc__ico { grid-column: 1; grid-row: 2; width: 30px; height: 30px; margin-bottom: 0; align-self: start; }
  .gws2-pcalc__t   { grid-column: 2; grid-row: 1; margin: 0; align-self: end; }
  .gws2-pcalc__s   { grid-column: 2; grid-row: 2; margin: 0; }
  /* ＝ を縦流れに合わせて ▼ に変更 */
  .gws2-pcalc span.gws2-pcalc__op:last-of-type { font-size: 0; line-height: 0; display: flex; align-items: center; justify-content: center; height: 32px; }
  .gws2-pcalc span.gws2-pcalc__op:last-of-type::after { content: '▼'; font-size: 20px; line-height: 1; display: block; opacity: .45; color: var(--navy); }

  /* 安心の土台は2列に */
  .gws2-passure { grid-template-columns: repeat(2, 1fr); }

  .gws2-soltl   { padding-left: 54px; }
  .gws2-soltl__track, .gws2-soltl__fill { left: 18px; }
  .gws2-sol-num { left: -54px; width: 40px; height: 40px; font-size: 16px; }

  /* MeiPeer のカードは全幅 */
  .gws2-mp__card { width: 100%; }

  /* 比較表: カテゴリ見出し＋3社を縦並び（社名左・マーク右のフレックス行） */
  .gws2-cmp { min-width: 0; }
  .gws2-cmp thead { display: none; }
  .gws2-cmp tbody { display: block; }
  .gws2-cmp tbody tr { display: block; margin-bottom: 16px; border: 1px solid #dde2ef; overflow: hidden; }
  /* カテゴリ見出し: 薄グレー背景＋紺文字（テクノリの紺と区別） */
  .gws2-cmp td.gws2-cmp__label { display: block; background: #EEF1F8; color: var(--navy); text-align: left; font-size: 15px; font-weight: 800; padding: 11px 14px; border: none; width: auto; }
  /* 各社セル: [社名 左固定] + [マーク] + [説明] のフレックス1行 */
  .gws2-cmp tbody td:not(.gws2-cmp__label) { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #eef0f4; text-align: left; }
  .gws2-cmp tbody td:not(.gws2-cmp__label)::before { content: attr(data-label); flex: 0 0 130px; font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.4; }
  /* テクノリ行: 紺地＋グリーンアクセントで際立たせる */
  .gws2-cmp tbody td.gws2-cmp__me { background: var(--navy); border-bottom: none; border-top: 3px solid #34A853; }
  .gws2-cmp tbody td.gws2-cmp__me::before { color: rgba(255,255,255,.65); }
  .gws2-cmp .gws2-mk { font-size: 22px; flex-shrink: 0; }
  .gws2-cmp small { font-size: 13px; }

  .gws2-faq__a p  { padding-left: calc(26px + 34px + 16px); }
  .gws2-cta__ch  { padding: 20px 22px; }
  /* CTAパネル: 1列フルサイズに戻す */
  .gws2-cta__panel { grid-template-columns: 1fr; }
}

/* 狭い画面ではオービットを縮小して収める */
@media (max-width: 520px) {
  /* 412px の箱が枠より広いため margin:auto では中央寄せできない。
     left:50% + margin-left:-206px(=半幅) で枠中央に正確に揃える */
  .gws2-orbit { left: 50%; transform: scale(.72); margin: -58px 0 -58px -206px; }
}

@media (max-width: 480px) {
  .gws2-container   { padding: 0 20px; }
  .gws2-hero__title { font-size: 1.9rem; }
  .gws2-challenges  { grid-template-columns: 1fr; }

  .gws2-section     { padding: 52px 0; }
  .gws2-cta         { padding: 52px 0; }
  .gws2-challenges-sec,
  .gws2-solutions-sec,
  .gws2-whyus-sec,
  .gws2-meipeer-sec,
  .gws2-pricing-sec,
  .gws2-cases-sec { padding: 52px 0; }
  .gws2-section-hd  { margin-bottom: 32px; }
  .gws2-passure     { grid-template-columns: 1fr; }
  .gws2-cta__ch    { padding: 20px 18px; }
  .gws2-faq__q   { padding: 18px 18px; }
  .gws2-faq__a p { padding: 0 18px 20px calc(18px + 34px + 16px); }
}

/* ==========================================================================
   縦書き背景デコレーション文字
   ========================================================================== */
.gws2-challenges-sec,
.gws2-solutions-sec,
.gws2-pricing-sec,
.gws2-cases-sec,
.gws2-voices-sec { position: relative; overflow: hidden; }


.gws2-challenges-sec::before,
.gws2-solutions-sec::before,
.gws2-pricing-sec::before,
.gws2-cases-sec::before,
.gws2-voices-sec::before {
  position: absolute;
  top: 50%;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  color: rgba(15,35,80,.08);
}

.gws2-challenges-sec::before { content: 'CHALLENGES'; right: -8px;  transform: translateY(-50%); }
.gws2-solutions-sec::before  { content: 'SOLUTIONS';  left: -8px;   transform: translateY(-50%); writing-mode: vertical-lr; }
.gws2-pricing-sec::before    { content: 'PRICING';    left: -8px;  transform: translateY(-50%); writing-mode: vertical-lr; }
.gws2-cases-sec::before      { content: 'CASES';      right: -8px; transform: translateY(-50%); }
.gws2-voices-sec::before     { content: 'VOICE';      left: -8px;  transform: translateY(-50%); writing-mode: vertical-lr; }

/* コンテナを前面に */
.gws2-challenges-sec > .gws2-container,
.gws2-solutions-sec  > .gws2-container,
.gws2-pricing-sec    > .gws2-container,
.gws2-cases-sec      > .gws2-container,
.gws2-voices-sec     > .gws2-container { position: relative; z-index: 1; }

/* ==========================================================================
   スライダーナビ（ボタン・ドット）
   ========================================================================== */
.gws2-voices-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.gws2-voices-dots { display: flex; gap: 10px; align-items: center; }
.gws2-voices-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8cedb;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.gws2-voices-dot.is-active { background: var(--navy); transform: scale(1.4); }

/* ==========================================================================
   中間CTA
   ========================================================================== */
.gws2-mid-cta {
  background: var(--navy);
  padding: 36px 0;
}
.gws2-mid-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.gws2-mid-cta__txt {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   GWS vs M365 比較セクション
   ========================================================================== */
.gws2-vs-sec {
  padding: 80px 0;
  background: #fff;
}
.gws2-vs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}
.gws2-vs {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.gws2-vs thead th {
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  border-bottom: 2px solid #dde2ef;
  color: var(--navy);
}
.gws2-vs thead th.gws2-vs__gws {
  background: var(--navy);
  color: #fff;
}
.gws2-vs tbody tr:nth-child(even) { background: #f7f9fc; }
.gws2-vs tbody tr:nth-child(even) .gws2-vs__gws { background: #1a2e63; }
.gws2-vs td {
  padding: 14px 20px;
  border-bottom: 1px solid #eef0f4;
  text-align: center;
  vertical-align: middle;
}
.gws2-vs td.gws2-vs__label {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  width: 38%;
}
.gws2-vs td.gws2-vs__gws { background: #f0f4fc; }
.gws2-vs small { display: block; font-size: 12px; color: #666; margin-top: 2px; }
.gws2-vs td.gws2-vs__gws small { color: #445; }

.gws2-vs-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.gws2-vs-guide__block {
  padding: 24px 28px;
  border: 1px solid #dde2ef;
}
.gws2-vs-guide__block--gws { border-top: 3px solid #4285F4; }
.gws2-vs-guide__block--m365 { border-top: 3px solid #888; }
.gws2-vs-guide__block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
}
.gws2-vs-guide__block ul {
  margin: 0;
  padding: 0 0 0 1.2em;
}
.gws2-vs-guide__block li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}
.gws2-vs__note {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* ==========================================================================
   お客様の声（オートスライダー）
   ========================================================================== */
.gws2-voices-sec {
  padding: 80px 0;
  /* 斜め線＋対角グラジェント */
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px, transparent 20px,
      rgba(15,35,80,.026) 20px, rgba(15,35,80,.026) 21px
    ),
    linear-gradient(135deg, #edf2fb 0%, #f3f7ff 55%, #eaf0f8 100%);
}
.gws2-voices-slider {
  overflow: visible; /* clip は .gws2-voices-clip に移譲してドットのscaleを見せる */
}
.gws2-voices-clip {
  overflow: hidden;
}
.gws2-voices-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gws2-voice {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid #dde2ef;
  border-top: 3px solid var(--blue);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.gws2-voice__q {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #222;
  margin: 0;
  position: relative;
  padding-top: 32px;
}
.gws2-voice__q::before {
  content: '\201C';
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue);
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: Georgia, serif;
  opacity: .35;
}
.gws2-voice__by {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #eef0f4;
}

@media (max-width: 960px) {
  .gws2-mid-cta__inner { flex-direction: column; text-align: center; }
  .gws2-voice { flex: 0 0 calc((100% - 20px) / 2); }
  .gws2-vs-guide { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gws2-voice { flex: 0 0 100%; }
  .gws2-voices-sec { padding: 52px 0; }
  .gws2-mid-cta { padding: 28px 0; }
  .gws2-mid-cta__txt { font-size: 1rem; }
}

/* ==========================================================================
   スクロールエントランスアニメーション
   ========================================================================== */
.gws2-a-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,.68,0,1.15), transform .55s cubic-bezier(.22,.68,0,1.15);
}
.gws2-a-up.is-visible { opacity: 1; transform: translateY(0); }

.gws2-a-fade {
  opacity: 0;
  transition: opacity .6s ease;
}
.gws2-a-fade.is-visible { opacity: 1; }

.gws2-a-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .55s ease, transform .55s ease;
}
.gws2-a-left.is-visible { opacity: 1; transform: translateX(0); }

.gws2-a-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .55s ease, transform .55s ease;
}
.gws2-a-right.is-visible { opacity: 1; transform: translateX(0); }

.gws2-a-scale {
  opacity: 0;
  transform: scale(.93);
  transition: opacity .5s ease, transform .5s ease;
}
.gws2-a-scale.is-visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .gws2-btn, .gws2-challenge, .gws2-sol-item,
  .gws2-faq__item, .gws2-faq__q { transition: none; }
  /* エントランスアニメを即表示 */
  .gws2-a-up, .gws2-a-fade, .gws2-a-left, .gws2-a-right, .gws2-a-scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  /* ヒーロー入場アニメを即表示 */
  .gws2-hero__badge, .gws2-hero__title, .gws2-hero__lead,
  .gws2-hero__cta, .gws2-hero__visual { animation: none !important; opacity: 1 !important; transform: none !important; }
  /* オービットのアニメは全停止（静止した構図として表示） */
  .gws2-orbit__rotor, .gws2-hex, .gws2-hex__inner, .gws2-hex__b, .gws2-hex__f,
  .gws2-hub__halo, .gws2-flow, .gws2-orbit__status i { animation: none !important; }
  /* 背景デコ文字のシマーも停止 */
  .gws2-challenges-sec::before, .gws2-solutions-sec::before,
  .gws2-pricing-sec::before, .gws2-cases-sec::before,
  .gws2-voices-sec::before, .gws2-whyus-sec::before { animation: none !important; }
}
