@charset "UTF-8";
:root{
  --sky:    #38BDF8;
  --sky-l:  #7DD3FC;
  --navy:   #0A1F3D;
  --navy-m: #122952;
  --blue:    #0070E0;
  --blue-l:  #1A8BFF;
  --white:  #FFFFFF;
  --off:    #F0F5FC;
  --text:   #0A1F3D;
  --mid:    #2A3D54;
  --fade:   #3D5270;
  --line:   #D8E6F5;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Noto Sans JP',sans-serif;color:var(--text);background:var(--white);overflow-x:hidden;min-width:320px;}

/* ===== HEADER (dx-v02と完全同一) ===== */
header{
  position:fixed;top:0;width:100%;z-index:200;
  background:#fff;
  padding:0 32px;
  border-bottom:1px solid #EEE;
  transition:box-shadow .3s, border-color .3s;
}
.h-inner{
  max-width:1352px;margin:0 auto;
  padding:0;height:76px;
  display:flex;align-items:center;justify-content:space-between;
}
.logo{text-decoration:none;display:flex;align-items:center;gap:14px;}
.logo-mark{
  width:36px;height:36px;background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-family:'DM Sans',sans-serif;font-size:17px;font-weight:800;color:#fff;
}
.logo-img{
  height:64px;width:auto;display:block;
}
.logo-texts{display:flex;flex-direction:column;gap:1px;}
.logo-name{font-family:'DM Sans',sans-serif;font-size:16px;font-weight:800;letter-spacing:.1em;color:var(--navy);}
.logo-sub{font-size:9px;color:var(--fade);letter-spacing:.1em;}
nav{display:flex;align-items:center;gap:28px;}
nav a{font-size:15px;font-weight:500;color:var(--mid);text-decoration:none;letter-spacing:.04em;transition:color .2s;white-space:nowrap;}
nav a:hover{color:var(--navy);}
.nav-cta{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--blue);color:#fff !important;
  padding:13px 24px 16px;font-size:17px !important;font-weight:700 !important;
  letter-spacing:.06em !important;text-decoration:none;
  line-height:1;vertical-align:middle;
  white-space:nowrap;
  transition:background .2s;
}
.nav-cta:hover{background:var(--blue-l) !important;}
.nav-tel{display:flex;flex-direction:column;align-items:center;gap:2px;border-left:1px solid rgba(13,34,64,.15);padding-left:20px;margin-left:4px;}
.nav-tel-num{text-decoration:none;display:block;font-family:'Bebas Neue',sans-serif;font-size:28px;letter-spacing:.08em;color:var(--navy);line-height:1;text-align:center;}
.nav-tel-sub{font-size:12px;color:var(--fade);letter-spacing:.04em;text-align:center;}

/* ===== ページ本体ラッパー (header分のpadding-top) ===== */
.page-wrap{
  padding-top:76px;
}

/* === パンくず（既存ページ準拠） === */
.breadcrumb{
  max-width:1352px;margin:0 auto;
  padding:18px 48px;
  font-family:'Noto Sans JP',sans-serif;
  font-size:12px;color:var(--mid);
}
.breadcrumb a{color:#0000EE;text-decoration:none;}
.breadcrumb a:visited{color:#551A8B;}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb .sep{margin:0 8px;color:var(--fade);}
.breadcrumb .current{color:#333;}

/* === ナビ === */
/* === PC（≥1025px）=== */
@media (min-width:1025px){
  #globalNav .nav-news-toggle{ display:none; } /* 最新情報を消す */
  #globalNav .sp-only{ display:none; }          /* すべての記事を消す */
  /* セミナー・コラムは通常表示のまま（指定不要） */
}

/* === SP（≤1024px）アコーディオン === */
/* SP：閉＝display:none（隙間ゼロ）／開＝フェード＋スライドで滑らか */
@media (max-width:1024px){
  #globalNav .nav-news-child{ display:none; padding-left:1.5em; }
  #globalNav.news-open .nav-news-child{
    display:block;
    animation: navNewsIn .3s ease both;
  }
}
@keyframes navNewsIn{
  from{ opacity:0; transform: translateY(-6px); }
  to  { opacity:1; transform: translateY(0); }
}

/* 「最新情報」の開閉アイコン */
#globalNav .nav-news-toggle::after{
  content: "\f107";                 /* fa-angle-down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;                 /* solid(fas)はこのウェイト */
  margin-left: .5em;
  display: inline-block;
  transition: transform .3s ease;
}
#globalNav.news-open .nav-news-toggle::after{
  transform: rotate(180deg);        /* 開いたら上向きに */
}

/* === ページタイトルエリア（既存ページ準拠） === */
.page-hero{
  background:#f5f5f5;
  padding:64px 0 64px;
}
.page-hero-inner{
  max-width:1352px;margin:0 auto;
  padding:0 48px;
}
.page-hero-title{
  font-family:'Noto Sans JP',sans-serif;
  position:relative;
  font-size:32px;font-weight:700;
  font-feature-settings:"palt" 1;
  text-align:center;
  letter-spacing:.04em;
  padding-bottom:22px;
  color:#333;
  line-height:1.5;
  margin:0;
}
.page-hero-title::after{
  content:'';
  position:absolute;
  left:50%;bottom:0;
  transform:translateX(-50%);
  width:40px;height:2px;
  background:#268cf2;
}
.page-hero-subtitle{
  font-family:'Noto Sans JP',sans-serif;
  font-size:16px;font-weight:500;
  color:#333;
  line-height:1.6;
  text-align:center;
  margin:8px 0 16px;
}
.page-hero-lead{
  font-family:'Noto Sans JP',sans-serif;
  font-size:15px;font-weight:400;
  color:var(--mid);line-height:1.85;
  text-align:center;
  max-width:780px;
  margin:24px auto 0;
}

/* === サービス一覧ナビ === */
.service-nav{
  max-width:1352px;margin:0 auto;
  padding:64px 48px 0;
}
.service-nav-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.service-nav-card{
  background:var(--white);
  border:2px solid var(--line);
  padding:24px 22px;
  display:flex;flex-direction:column;
  gap:8px;
  transition:all .25s;
  text-decoration:none;
}
.service-nav-card:hover{
  border-color:var(--sky);
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(56,189,248,.2);
}
.service-nav-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:32px;font-weight:400;
  color:var(--sky);
  line-height:1;letter-spacing:.04em;
}
.service-nav-name{
  font-family:'Noto Serif JP',serif;
  font-size:22px;font-weight:700;
  color:#333;
  line-height:1.5;
  margin-top:6px;
}
.service-nav-sub{
  font-family:'Noto Sans JP',sans-serif;
  font-size:13px;font-weight:400;
  color:var(--mid);line-height:1.6;
  margin-top:2px;
}

/* === サービス詳細セクション === */
.service-section{
  max-width:1352px;margin:0 auto;
  padding:96px 48px 0;
  scroll-margin-top:140px;
}
/* .service-section:last-of-type{padding-bottom:120px;} */

.svc-detail-header{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:28px;
  align-items:start;
  padding-bottom:24px;
  margin-bottom:0;
}
.svc-detail-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:120px;font-weight:400;
  color:var(--sky);
  line-height:.9;letter-spacing:.02em;
}
.svc-detail-num-label{
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:700;
  letter-spacing:.28em;color:var(--blue);
  margin-bottom:6px;
  text-transform:uppercase;
}
.svc-detail-title{
  font-family:'Noto Serif JP',serif;
  font-size:36px;font-weight:700;
  color:#333;
  line-height:1.4;letter-spacing:.04em;
  margin:0 0 15px;
}
.svc-detail-events{
  display:flex;flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding:20px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-bottom:28px;
}
.svc-detail-events-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-right:18px;
  margin-right:6px;
  border-right:1px solid var(--line);
  font-family:'Noto Sans JP',sans-serif;
  font-size:13px;font-weight:600;
  color:#333;
}
.svc-detail-events-label i{
  color:var(--blue);
  font-size:14px;
  position:relative;
  top:2px;
}
.svc-event-chip{
  display:inline-flex;align-items:center;gap:5px;
  background:var(--off);
  border:1px solid var(--line);
  padding:6px 14px;
  font-family:'Noto Sans JP',sans-serif;
  font-size:13px;font-weight:500;
  color:#333;
}
.svc-detail-lead{
  font-family:'Noto Sans JP',sans-serif;
  font-size:17px;font-weight:400;
  color:#333;line-height:1.85;
  letter-spacing:.02em;
  margin:0;
}

/* お悩み×解決のグリッド */
.svc-problem-solution{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-bottom:48px;
}
.svc-problem-box,
.svc-solution-box{
  padding:32px 30px;
}
.svc-problem-box{
  background:#FDF7F7;
  border-left:4px solid #C0463B;
}
.svc-solution-box{
  background:#F0F7FB;
  border-left:4px solid var(--blue);
}
.svc-block-title{
  font-family:'Noto Serif JP',serif;
  font-size:20px;font-weight:700;
  color:#333;
  margin:0 0 20px;
  letter-spacing:.02em;
  display:flex;align-items:center;gap:10px;
}

.svc-block-list{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:14px;
}
.svc-block-list li{
  font-family:'Noto Sans JP',sans-serif;
  font-size:15px;font-weight:500;
  color:#333;line-height:1.7;
  display:flex;align-items:flex-start;gap:10px;
  letter-spacing:.02em;
}
.svc-block-list li::before{
  content:'';
  flex-shrink:0;
}
.svc-problem-box .svc-block-list li{
  align-items:center;
  gap:8px;
}
.svc-problem-box .svc-block-list li::before{
  width:30px;height:30px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  transform:scaleX(-1);
  background-image:url("data:image/svg+xml;charset=utf-8,<svg version=%221.0%22 xmlns=%22http://www.w3.org/2000/svg%22 width=%22905.000000pt%22 height=%22951.000000pt%22 viewBox=%220 0 905.000000 951.000000%22 preserveAspectRatio=%22xMidYMid meet%22> <g transform=%22translate%280.000000,951.000000%29 scale%280.100000,-0.100000%29%22 fill=%22%23C0463B%22 stroke=%22none%22> <path d=%22M4838 8294 c-2 -1 -39 -5 -83 -9 -133 -11 -286 -32 -360 -49 -5 -1 -37 -8 -70 -15 -102 -21 -467 -134 -490 -151 -5 -4 -21 -11 -35 -15 -47 -13 -324 -152 -420 -210 -601 -361 -1063 -890 -1333 -1525 -67 -158 -166 -471 -183 -580 -2 -14 -7 -36 -10 -50 -13 -55 -14 -60 -28 -160 -6 -45 -15 -111 -23 -175 -6 -52 -6 -551 0 -595 2 -14 7 -52 11 -85 16 -128 48 -305 72 -395 2 -8 10 -40 18 -70 17 -70 96 -312 106 -325 4 -5 17 -37 30 -70 95 -244 315 -609 496 -822 47 -55 52 -66 44 -90 -23 -76 -73 -245 -89 -303 -11 -36 -33 -112 -51 -170 -17 -58 -35 -118 -40 -135 -4 -16 -24 -86 -45 -155 -21 -69 -49 -163 -62 -210 -14 -47 -31 -105 -38 -130 -57 -197 -59 -211 -31 -283 21 -56 50 -83 112 -106 80 -29 126 -21 243 44 42 23 148 79 236 125 88 45 165 86 170 90 6 4 87 47 180 95 94 48 175 91 180 95 6 4 82 44 170 90 88 45 179 93 201 107 41 23 43 23 85 7 24 -10 49 -20 54 -24 11 -8 286 -100 314 -105 10 -2 35 -8 57 -14 21 -5 53 -13 69 -17 17 -4 35 -8 40 -10 27 -6 74 -15 110 -20 22 -3 46 -7 53 -10 8 -2 37 -7 65 -10 29 -3 58 -7 65 -10 75 -24 665 -24 802 0 14 3 43 7 65 11 78 11 111 16 160 26 71 14 212 48 265 64 25 7 79 23 120 35 41 13 80 26 85 30 6 4 28 13 50 20 39 12 56 19 175 71 351 154 704 399 988 688 245 249 430 509 585 821 51 102 97 199 104 215 43 106 125 357 139 424 3 14 7 28 9 32 3 4 7 24 10 45 3 22 8 45 11 53 2 8 7 30 10 50 3 20 7 43 10 51 3 8 7 33 10 55 3 22 7 49 9 61 2 11 7 45 10 75 3 30 8 72 12 94 9 65 11 475 3 540 -5 33 -11 96 -15 140 -4 44 -8 82 -10 85 -2 3 -6 26 -9 52 -8 59 -41 215 -62 293 -8 33 -17 67 -19 75 -8 36 -77 238 -90 267 -8 17 -15 34 -15 37 0 12 -54 131 -117 256 -168 337 -358 596 -639 870 -259 252 -514 432 -829 584 -88 43 -168 82 -177 87 -10 5 -22 9 -28 9 -6 0 -29 9 -53 19 -53 24 -214 79 -287 98 -30 8 -73 19 -95 24 -44 12 -40 11 -145 33 -77 15 -102 20 -181 30 -25 4 -57 9 -70 11 -84 14 -570 30 -581 19z m452 -418 c133 -15 182 -22 305 -47 906 -183 1677 -817 2043 -1679 65 -153 147 -421 166 -541 3 -20 7 -42 10 -50 3 -8 7 -38 11 -68 3 -29 7 -56 9 -60 9 -15 21 -230 21 -376 0 -145 -10 -327 -20 -365 -2 -8 -7 -35 -10 -60 -8 -61 -42 -223 -61 -290 -8 -30 -21 -78 -29 -106 -50 -184 -207 -517 -333 -710 -215 -327 -497 -610 -826 -828 -127 -84 -336 -196 -461 -246 -44 -18 -93 -38 -110 -45 -26 -11 -88 -31 -230 -75 -34 -10 -34 -10 -200 -44 -66 -13 -149 -27 -185 -31 -36 -4 -69 -9 -73 -12 -14 -9 -427 -10 -517 -2 -138 13 -194 19 -208 24 -8 3 -37 8 -65 11 -29 4 -55 8 -60 11 -4 2 -20 6 -35 9 -124 21 -395 109 -547 179 -52 23 -111 42 -130 40 -41 -4 -93 -20 -128 -39 -70 -38 -205 -110 -332 -176 -66 -34 -138 -73 -160 -85 -22 -12 -107 -57 -190 -100 -82 -43 -160 -85 -172 -93 -27 -17 -28 -13 -7 53 8 28 17 58 19 69 4 18 24 84 72 241 14 44 26 88 28 99 4 18 23 81 72 241 14 44 26 87 28 95 2 8 12 47 22 85 11 39 19 75 18 80 -9 76 -20 97 -102 191 -216 249 -361 477 -488 762 -64 145 -146 399 -168 522 -3 14 -8 36 -11 50 -3 14 -8 36 -10 50 -2 14 -7 41 -10 60 -8 53 -17 126 -25 215 -8 92 -6 464 3 500 3 13 9 53 12 87 2 35 7 70 10 78 3 8 8 35 11 60 3 24 21 103 39 175 19 71 36 138 39 148 12 52 44 137 102 277 319 763 995 1368 1799 1609 40 12 80 24 90 26 11 2 34 8 52 14 18 5 35 10 37 10 3 0 18 2 33 5 15 3 38 7 52 10 14 2 36 7 50 10 14 3 47 8 74 11 27 3 52 8 55 9 3 2 53 7 111 11 58 3 107 9 110 12 5 6 325 -3 400 -11z%22/> <path d=%22M4387 7036 c-139 -51 -172 -253 -58 -349 37 -30 79 -44 171 -52 36 -4 103 -13 150 -22 47 -8 99 -17 115 -20 17 -2 71 -16 120 -29 50 -14 99 -27 110 -29 22 -5 94 -30 182 -63 413 -157 795 -454 998 -777 30 -48 55 -93 55 -99 0 -6 7 -24 16 -41 24 -47 54 -184 54 -252 0 -112 -57 -244 -149 -345 -48 -52 -127 -115 -135 -107 -2 2 -6 20 -9 39 -15 96 -62 231 -124 355 -147 295 -431 560 -788 735 -140 69 -351 142 -450 156 -16 3 -41 7 -55 11 -51 12 -239 11 -301 -2 -35 -8 -64 -14 -64 -13 0 5 -77 -23 -120 -45 -89 -44 -150 -92 -198 -155 -78 -104 -114 -202 -122 -332 -2 -41 14 -131 37 -199 56 -173 218 -354 448 -504 88 -57 225 -131 295 -159 22 -9 83 -36 135 -61 163 -76 251 -114 375 -162 66 -25 129 -50 140 -55 11 -5 36 -13 55 -19 19 -6 59 -18 89 -27 30 -9 85 -24 123 -33 l70 -17 -41 -51 c-43 -55 -120 -117 -220 -179 l-64 -39 -26 35 c-215 282 -552 496 -896 570 -126 27 -325 23 -408 -8 -129 -47 -219 -134 -268 -260 -33 -83 -36 -227 -7 -314 56 -169 223 -321 443 -404 80 -30 164 -53 220 -60 22 -3 54 -9 71 -14 18 -4 153 -9 300 -9 148 -1 269 -3 270 -4 7 -11 -23 -72 -52 -106 -50 -58 -109 -82 -209 -86 -96 -3 -227 15 -267 36 -10 5 -18 7 -18 5 0 -5 -16 0 -130 43 -95 36 -191 20 -248 -41 -30 -33 -60 -116 -55 -153 11 -87 43 -135 111 -169 48 -24 257 -95 302 -102 14 -2 36 -7 50 -10 14 -3 36 -9 50 -12 14 -3 93 -5 175 -6 212 0 318 31 461 136 140 104 243 312 244 495 l1 48 77 35 c255 116 477 339 563 566 30 77 35 84 68 95 58 19 189 89 254 137 205 151 342 362 392 604 14 71 17 247 5 303 -5 22 -11 56 -14 75 -22 148 -151 408 -280 565 -229 280 -500 494 -846 666 -269 134 -563 225 -880 274 -25 4 -52 9 -61 10 -71 13 -198 14 -232 1z m177 -1301 c76 -13 252 -76 356 -129 231 -115 429 -280 535 -446 43 -68 105 -191 105 -210 0 -5 4 -18 9 -28 11 -22 29 -80 35 -114 3 -21 1 -28 -11 -28 -24 0 -222 59 -272 81 -24 10 -47 19 -52 19 -5 0 -33 11 -63 25 -30 14 -57 25 -60 25 -2 0 -34 14 -69 30 -36 17 -68 30 -71 30 -3 0 -40 16 -83 37 -391 183 -461 224 -590 346 -41 39 -86 91 -100 115 -87 148 16 270 217 258 41 -3 92 -8 114 -11z m-329 -1439 c39 -9 112 -34 150 -51 17 -8 46 -20 65 -28 68 -27 270 -162 270 -180 0 -2 -62 -2 -137 0 -119 2 -179 10 -313 39 -53 11 -173 77 -215 118 -46 44 -57 79 -32 105 12 13 149 11 212 -3z%22/> </g> </svg>");
}
.svc-solution-box .svc-block-list li{
  align-items:flex-start;
  gap:10px;
  min-height:30px;
  line-height:1.9;
}
.svc-solution-box .svc-block-list li::before{
  content:'\f058';
  font-family:'Font Awesome 5 Free';
  font-weight:900;
  color:var(--blue);
  font-size:18px;
  line-height:1;
  position:relative;
  top:5px;
}

/* サービス内容 */
.svc-content-block{margin-bottom:48px;}
.svc-content-title{
  font-family:'Noto Serif JP',serif;
  font-size:22px;font-weight:700;
  color:#333;
  margin:0 0 24px;
  letter-spacing:.04em;
  padding-left:14px;
  border-left:4px solid var(--blue);
}
.svc-content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.svc-content-item{
  background:var(--white);
  border:1px solid var(--line);
  padding:22px 26px;
  display:flex;flex-direction:column;gap:6px;
}
.svc-content-item-name{
  font-family:'Noto Sans JP',sans-serif;
  font-size:19px;font-weight:700;
  color:#333;
  line-height:1.5;
}
.svc-content-item-desc{
  font-family:'Noto Sans JP',sans-serif;
  font-size:14px;font-weight:400;
  color:var(--mid);line-height:1.7;
}

/* ご利用の流れ */
.svc-flow-block{margin-bottom:48px;}
.svc-flow{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:28px;
  position:relative;
}
.svc-flow-step{
  background:var(--off);
  padding:20px 16px;
  text-align:center;
  position:relative;
  border-top:3px solid var(--blue);
}
.svc-flow-step::after{
  content:'▶';
  position:absolute;
  right:-20px;top:50%;
  transform:translateY(-50%);
  color:var(--blue);
  font-size:14px;
  line-height:1;
  z-index:2;
}
.svc-flow-step:last-child::after{display:none;}
.svc-flow-step-label{
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:700;
  color:var(--blue);
  letter-spacing:.2em;
  margin-bottom:8px;
  text-transform:uppercase;
}
.svc-flow-step-name{
  font-family:'Noto Sans JP',sans-serif;
  font-size:17px;font-weight:600;
  color:#333;
  line-height:1.5;
}

/* セクション末尾のミニCTA */
.svc-cta-mini{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  color:#fff;
  padding:28px 36px;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;
}
.svc-cta-mini-text{
  font-family:'Noto Serif JP',serif;
  font-size:20px;font-weight:600;
  color:#fff;
  line-height:1.6;
  letter-spacing:.08em;
}
.svc-cta-mini-btn{
  background:var(--blue);
  color:#fff !important;
  padding:14px 28px;
  font-family:'Noto Sans JP',sans-serif;
  font-size:14px;font-weight:600;
  letter-spacing:.08em;
  white-space:nowrap;
  text-decoration:none;
  transition:background .2s;
}
.svc-cta-mini-btn:hover{background:var(--blue-l);}

/* ===== CONTACT (dx-v02と完全同一) ===== */
.contact{background:var(--navy);padding:96px 48px;}
.contact-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:1fr 560px;gap:80px;align-items:center;
}
.contact-eyebrow{font-family:'DM Sans',sans-serif;font-size:14px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);margin-bottom:14px;display:flex;align-items:center;gap:10px;}
.contact-eyebrow::before{content:'';width:24px;height:2px;background:var(--blue);}
.contact h2{font-family:'Noto Sans JP',sans-serif;font-size:clamp(24px,3vw,40px);font-weight:700;color:#fff;margin-bottom:16px;}
.contact p{font-size:14px;color:rgba(255,255,255,.6);line-height:1.9;font-family:'Noto Sans JP',sans-serif;}
.contact-right{display:flex;flex-direction:column;gap:12px;}
.contact-tel{
  display:flex;align-items:center;gap:20px;padding:32px 40px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  text-decoration:none;transition:all .2s;
}
.contact-tel:hover{background:rgba(255,255,255,.1);}
.contact-tel-label{font-size:11px;font-weight:700;letter-spacing:.16em;color:var(--sky);margin-bottom:6px;text-transform:uppercase;font-family:'Noto Sans JP',sans-serif;}
.contact-tel-num{font-family:'DM Sans',sans-serif;font-size:36px;font-weight:700;color:#fff;letter-spacing:.04em;}
.contact-tel-sub{font-size:12px;color:rgba(255,255,255,.4);margin-top:4px;font-family:'Noto Sans JP',sans-serif;}
.contact-mail{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:24px 40px;background:var(--blue);color:#fff;
  text-decoration:none;font-size:16px;font-weight:700;letter-spacing:.06em;
  font-family:'Noto Sans JP',sans-serif;
  transition:all .2s;
}
.contact-mail:hover{background:var(--blue-l);}

/* ===== FOOTER (dx-v02と完全同一) ===== */
footer{background:#07131F;padding:64px 48px 32px;}
.footer-inner{max-width:1352px;margin:0 auto;}
.footer-top{display:grid;grid-template-columns:220px 1fr;gap:80px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.08);}
.f-logo{display:flex;align-items:center;gap:12px;text-decoration:none;margin-bottom:12px;}
.f-copy{font-size:11px;color:rgba(255,255,255,.35);line-height:1.9;letter-spacing:.04em;}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.fl-group h4{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:16px;}
.fl-group a{display:block;font-size:12px;color:rgba(255,255,255,.5);text-decoration:none;margin-bottom:10px;transition:color .2s;letter-spacing:.04em;}
.fl-group a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;}
.footer-bottom span{font-size:11px;color:rgba(255,255,255,.35);letter-spacing:.04em;}
.f-copy-text{font-size:11px;color:rgba(255,255,255,.25);letter-spacing:.06em;}

/* ===== 共通ヘルパー / 旧インラインstyleの集約 ===== */
.nav-toggle{display:none;}
.nav-overlay{display:none;}
.nav-home{display:none;}  /* PCナビでは非表示（ロゴがHOMEリンク） */
.skip-link{position:absolute;left:8px;top:-56px;z-index:400;background:var(--navy);color:#fff;padding:10px 18px;font-size:14px;font-weight:700;text-decoration:none;transition:top .2s;}
.skip-link:focus{top:0;}
.note-sm{font-size:11px;color:var(--fade);}
.f-logo-img{height:40px;width:auto;}

/* =====================================================================
   RESPONSIVE  —  TABLET (≤1024px) / SP (≤767px)
   ===================================================================== */
@media (max-width:1024px){
  /* 余白圧縮 */
  .breadcrumb,.page-hero-inner,.service-nav,.service-section,.contact{padding-left:32px;padding-right:32px;}
  header{padding:0 24px;}

  /* ヘッダー：ハンバーガーメニュー（トップページと同一） */
  .nav-toggle{display:flex;flex-direction:column;justify-content:center;gap:6px;width:46px;height:46px;padding:0;border:none;background:transparent;cursor:pointer;position:relative;z-index:3;}
  .nav-toggle span{display:block;width:26px;height:2px;margin:0 auto;background:var(--navy);border-radius:2px;transition:transform .3s ease,opacity .25s ease;}
  body.nav-open .nav-toggle span:nth-child(1){transform:translateY(8px) rotate(45deg);}
  body.nav-open .nav-toggle span:nth-child(2){opacity:0;}
  body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
  nav{position:fixed;top:0;right:0;z-index:2;height:100vh;height:100dvh;width:min(84vw,340px);background:#fff;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:0;padding:96px 28px 48px;box-shadow:none;transform:translateX(100%);transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;overflow-y:auto;overscroll-behavior:contain;}
  body.nav-open nav{transform:translateX(0);box-shadow:-14px 0 44px rgba(13,34,64,.14);}
  nav a:not(.nav-cta):not(.nav-tel-num){width:100%;font-size:16px;padding:16px 4px;border-bottom:1px solid var(--line);}
  .nav-tel{flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:4px;border-left:none;padding-left:0;margin-left:0;margin-top:24px;padding-top:20px;width:100%;}
  .nav-tel-num{font-size:32px;text-align:left;}
  .nav-tel-sub{font-size:12px;text-align:left;letter-spacing:.02em;}
  .nav-cta{margin-top:24px;width:100%;padding:16px 24px 18px;font-size:17px !important;}
  .nav-overlay{display:block;position:fixed;inset:0;z-index:1;background:rgba(13,34,64,.45);opacity:0;visibility:hidden;transition:opacity .35s ease,visibility .35s ease;}
  body.nav-open .nav-overlay{opacity:1;visibility:visible;}
  .nav-home{display:block;}  /* ドロワー内では表示 */
  body.nav-open{overflow:hidden;}

  /* フロー：5列を詰めて収める */
  .svc-flow{gap:10px;}
  .svc-flow-step{padding:16px 10px;}
  .svc-flow-step-name{font-size:14px;}
  .svc-flow-step::after{right:-13px;font-size:11px;}

  /* CONTACT / FOOTER */
  .contact-inner{grid-template-columns:1fr;gap:40px;}
  .footer-top{grid-template-columns:1fr;gap:32px;}
}

@media (max-width:767px){
  .breadcrumb,.page-hero-inner,.service-nav,.service-section,.contact{padding-left:20px;padding-right:20px;}
  header{padding:0 18px;}
  .logo-img{height:48px;}

  .breadcrumb{padding-top:14px;padding-bottom:14px;font-size:11px;}
  .page-hero{padding:48px 0;}
  .page-hero-title{font-size:24px;}
  .page-hero-lead{font-size:14px;}
  .page-hero-lead br{display:none;}

  .service-nav{padding-top:48px;}
  .service-nav-grid{grid-template-columns:1fr;gap:10px;}
  .service-nav-card{flex-direction:row;flex-wrap:wrap;align-items:center;gap:0 12px;padding:14px 16px;}
  .service-nav-num{font-size:24px;line-height:1;flex-shrink:0;}
  .service-nav-name{font-size:16px;line-height:1.4;margin-top:0;flex:1;}
  .service-nav-sub{flex-basis:100%;font-size:12px;line-height:1.5;margin-top:4px;}

  .service-section{padding-top:64px;}
/*   .service-section:last-of-type{padding-bottom:72px;} */
  .svc-detail-header{gap:14px;}
  .svc-detail-num{font-size:64px;}
  .svc-detail-title{font-size:24px;}
  .svc-detail-lead{font-size:15px;}

  .svc-problem-solution{grid-template-columns:1fr;gap:16px;margin-bottom:36px;}
  .svc-problem-box,.svc-solution-box{padding:24px 22px;}
  .svc-content-grid{grid-template-columns:1fr;}
  .svc-content-title{font-size:20px;}

  /* フロー：縦並び＋下向き矢印（矢印は上下の余白を均等に） */
  .svc-flow{grid-template-columns:1fr;gap:30px;}
  .svc-flow-step{padding:16px;}
  .svc-flow-step::after{content:'▼';right:auto;left:50%;top:auto;bottom:-21px;transform:translateX(-50%);font-size:12px;line-height:1;}
  .svc-flow-step:last-child::after{display:none;}

  /* ミニCTA */
  .svc-cta-mini{flex-direction:column;align-items:flex-start;gap:16px;padding:24px 22px;}
  .svc-cta-mini-text{font-size:18px;}
  .svc-cta-mini-btn{width:100%;text-align:center;}

  /* CONTACT */
  .contact{padding:56px 20px;}
  .contact-tel{padding:24px 22px;gap:16px;}
  .contact-tel-num{font-size:30px;}
  .contact-mail{padding:22px 24px;font-size:15px;}

  /* FOOTER */
  footer{padding:48px 20px 28px;}
  .footer-links{grid-template-columns:1fr 1fr;gap:24px;}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
}


/* ===== HERO ===== */
.hero{
  height:630px;
/*   margin-top:76px; */
  position:relative;overflow:hidden;
  background: linear-gradient(135deg,
    #07203F 0%,
    #0E2A53 28%,
    #102b54 50%,
    #0E2A53 72%,
    #07203F 100%
  );
}
/* simulated photo: dark office/courthouse atmosphere */
.hero-photo{
  position:absolute;inset:0;z-index:0;
  background-image:
    /* 左→右：タイトル背景にふんわり navy（左濃→右透明、右側を広くクリアに） */
    linear-gradient(to right,
      rgba(8,28,60,.6) 0%,
      rgba(8,28,60,.43) 14%,
      rgba(8,28,60,.24) 26%,
      rgba(8,28,60,.08) 38%,
      rgba(8,28,60,0) 50%
    ),
    /* 上→下：上は薄く、下端は idバンドへの繋ぎ（下を濃く） */
    linear-gradient(to bottom,
      rgba(13,34,64,.18) 0%,
      rgba(13,34,64,.04) 22%,
      rgba(13,34,64,0) 45%,
      rgba(13,34,64,.15) 60%,
      rgba(13,34,64,.45) 78%,
      rgba(7,32,63,.78) 92%,
      rgba(5,15,32,.95) 100%
    ),
    url('/wp/wp-content/uploads/hero.jpg');
  background-size:auto 650px;
  background-repeat:no-repeat;
  background-position:center center;
}
/* fake photo bokeh elements */
.hero-bokeh{position:absolute;inset:0;z-index:1;overflow:hidden;pointer-events:none;}

/* hero-content：左右paddingをなくし、上下２ブロック構成 */
.hero-content{
  position:absolute;inset:0;
  z-index:3;
  padding:0 32px;
  display:flex;flex-direction:column;justify-content:space-between;
}
/* 上部：タイトル（顔より上のスカイ部分） */
.hero-top{
  width:100%;
  padding-top:215px;
}
.hero-top-inner{
  max-width:1352px;margin:0 auto;
  padding:0;
}
h1.hero-title{
  font-family:'Noto Serif JP',serif;font-weight:700;
  font-size:55px;
  color:#fff;line-height:1.32;
  margin:0;letter-spacing:.04em;
  text-shadow:
    0 4px 28px rgba(10,31,61,.8),
    0 2px 8px rgba(10,31,61,.7),
    0 1px 3px rgba(10,31,61,.6),
    0 0 1px rgba(10,31,61,.5);
}
h1.hero-title em,
h1.hero-title .em{
  color:#0EA5E9;
  font-style:normal;
  font-size:57px;
  text-shadow:
    /* 4方向の白い細縁取り（少し透過させて自然に） */
    -1px 0 0 rgba(255,255,255,.65), 1px 0 0 rgba(255,255,255,.65),
    0 -1px 0 rgba(255,255,255,.65), 0 1px 0 rgba(255,255,255,.65),
    /* 白いソフトハロー（背景から浮き立たせる） */
    0 0 14px rgba(255,255,255,.45),
    0 0 6px rgba(255,255,255,.35),
    /* 控えめなnavy近接影で文字に重みを */
    0 1px 2px rgba(7,32,63,.4);
}
/* 助詞・接続詞を一段小さく：メリハリ */
h1.hero-title .p{font-size:50px;font-weight:600;letter-spacing:.04em;margin:0 .04em;}
h1.hero-title .pm{font-size:48px;font-weight:600;letter-spacing:.04em;margin:0 .04em;}

/* 下部：説明〜chips〜CTA（写真の下端、ダークバーなし） */
.hero-bottom{
  width:100%;
  padding:0 0 36px;
}
.hero-bottom-inner{
  max-width:1352px;margin:0 auto;
  padding:0;
  display:flex;flex-direction:column;gap:16px;
}
.hero-body{
  font-size:16px;color:#fff;
  line-height:1.85;margin:0;
  max-width:none;font-weight:400;
  text-shadow:0 1px 6px rgba(0,0,0,.4);
}
.hero-row{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:20px;
}
.hero-chips{display:flex;flex-wrap:wrap;gap:8px;margin:0;}
.chip{
  font-family:'DM Sans',sans-serif;font-size:13px;font-weight:400;
  color:#fff;letter-spacing:.06em;
  border:1.5px solid rgba(255,255,255,.35);padding:6px 14px;border-radius:22px;
  background:rgba(255,255,255,.08);
  transition:all .2s;   /* ← 追加 */
}
.hero-chips a:hover .chip{
  background:var(--sky);
  border-color:var(--sky);
  color:var(--navy);
  transform:translateY(-2px);
}
.hero-btns{display:flex;gap:12px;margin:0;}
.btn-red{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:var(--sky);color:var(--navy);
  padding:20px 48px;font-family:'DM Sans',sans-serif;
  font-size:16px;font-weight:700;letter-spacing:.08em;
  text-decoration:none;transition:all .2s;
  line-height:1;
}
.btn-red:hover{background:var(--blue-l);transform:translateY(-2px);}
.btn-white-ghost{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid rgba(255,255,255,.3);color:rgba(255,255,255,.7);
  padding:15px 24px;font-size:13px;letter-spacing:.06em;
  text-decoration:none;transition:all .2s;
}
.btn-white-ghost:hover{border-color:#fff;color:#fff;}

/* hero right: stat panel — 横並び3ブロック */
.hero-stats{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  gap:0;
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.05);
  align-self:flex-end;
}
.hero-stat{
  padding:24px 20px;
  border-right:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:8px;
}
.hero-stat:last-child{border-right:none;}
.hs-icon{
  font-size:20px;opacity:.7;margin-bottom:2px;
}
.hs-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:38px;color:#fff;line-height:1;
  letter-spacing:.04em;
}
.hs-num span{font-size:22px;color:var(--blue);}
.hs-lbl{font-size:10px;color:rgba(255,255,255,.4);letter-spacing:.1em;line-height:1.5;}

/* ブラウザ幅 1800px 以上で cover + 高さ700 + タイトル下げ + 下部上げ */
@media (min-width:1800px){
  .hero{
    height:700px;
  }
  .hero-photo{
    background-size:cover;
    background-position:center center;
  }
  .hero-top{
    padding-top:280px;
  }
  .hero-bottom{
    padding:0 0 50px;
  }
}

/* ===== PHOTO GRID UTILITY ===== */
/* simulated photo placeholder styles */
.photo{
  display:block;width:100%;height:100%;
  position:relative;overflow:hidden;
}
.photo::after{
  content:attr(data-label);
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:32px;
  background:inherit;
}
/* photo themes */
.ph-office{background:linear-gradient(135deg,#1A2A44 0%,#2A4A70 60%,#182038 100%);}
.ph-team{background:linear-gradient(135deg,#2A1E38 0%,#3A2A50 60%,#201828 100%);}
.ph-meeting{background:linear-gradient(135deg,#0A2030 0%,#1A3850 60%,#0E1C2C 100%);}
.ph-work{background:linear-gradient(135deg,#1A2818 0%,#2A3C24 60%,#141E12 100%);}
.ph-consult{background:linear-gradient(135deg,#2A1414 0%,#3E2020 60%,#1C0E0E 100%);}
.ph-law{background:linear-gradient(135deg,#14202A 0%,#1E3040 60%,#0E1820 100%);}
/* photo label overlay */
.photo-label{
  position:absolute;bottom:0;left:0;right:0;
  padding:14px 18px;
  background:linear-gradient(transparent,rgba(0,0,0,.55));
  font-size:11px;color:rgba(255,255,255,.7);
  font-weight:500;letter-spacing:.06em;
}
.photo-emoji{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  font-size:36px;opacity:.35;
}

/* ===== SECTION COMMONS ===== */
.sec-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:14px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--blue);margin-bottom:10px;
  display:flex;align-items:center;gap:10px;
}
.sec-eyebrow::before{content:'';width:24px;height:2px;background:var(--blue);}

/* SERVICE eyebrow */
.sec-eyebrow-service{
  display:flex;align-items:center;gap:16px;
  font-family:'DM Sans',sans-serif;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--navy);margin-bottom:6px;
}
.sec-eyebrow-service::before{display:none;}
.sec-eyebrow-service .svc-num{
  background:var(--blue);color:#fff;
  font-family:'DM Sans',sans-serif;font-size:13px;font-weight:900;
  letter-spacing:.12em;padding:0 18px;
  display:flex;align-items:center;justify-content:center;
  align-self:stretch;flex-shrink:0;
}
.sec-eyebrow-service .svc-label{
  font-size:16px;font-weight:700;color:var(--navy);
  letter-spacing:.08em;
}

/* SERVICE タイトル：縦長バッジ + サブ/メイン縦積み */
.svc-title-row{
  display:flex;align-items:stretch;gap:24px;
  margin-bottom:48px;
}
.svc-badge{
  background:var(--blue);
  color:#fff;
  padding:12px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  min-width:108px;
}
.svc-badge-tag{
  font-family:'DM Sans',sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:.26em;
  margin-bottom:4px;
}
.svc-badge-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:34px;
  letter-spacing:.04em;
  line-height:1;
}
.svc-title-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
}
.svc-sublabel{
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.16em;
  color:var(--blue);
}
.svc-mainlabel{
  font-family:'Noto Serif JP',serif;
  font-size:34px;
  font-weight:700;
  color:var(--navy);
  line-height:1.3;
}
.sec-desc{
  font-size:17px;color:var(--navy);line-height:1.9;font-weight:400;
  margin-top:14px;margin-bottom:40px;
}
.sec-desc i{display:none;}
.sec-title-en{
  font-family:'Bebas Neue',sans-serif;
  font-size:72px;
  color:var(--navy);line-height:1;
  letter-spacing:.06em;margin-bottom:6px;
}
.sec-title-jp{
  font-family:'Noto Serif JP',serif;
  font-size:38px;
  font-weight:700;color:var(--navy);
  line-height:1.4;margin-bottom:14px;
}
.sec-body{font-size:14px;color:var(--mid);line-height:1.95;max-width:620px;font-weight:300;}

/* ===== INTRO SECTION ===== */
.intro{padding:96px 48px;background:var(--off);}
.intro-inner{max-width:1352px;margin:0 auto;}
.intro-head{margin-bottom:52px;}
/* 3カードグリッド */
.prob-cards{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.prob-card{
  background:var(--white);
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
}
/* 写真エリア */
.pc-photo{
  height:220px;position:relative;overflow:hidden;flex-shrink:0;
}
.pc-photo .photo{
  width:100%;height:100%;position:absolute;inset:0;
}
/* 写真下グラデーションオーバーレイ */
.pc-photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom, transparent 30%, rgba(13,34,64,.6) 100%);
  z-index:1;
}
.pc-photo-tag{
  position:absolute;bottom:18px;left:0;right:0;
  padding:0 20px;
  z-index:2;
  display:flex;align-items:center;gap:12px;
}
.pc-photo-tag-phase{
  font-family:'Bebas Neue',sans-serif;
  font-size:13px;letter-spacing:.22em;
  color:var(--blue);line-height:1;
  flex-shrink:0;
}
.pc-photo-tag-sep{
  flex:1;height:1px;background:rgba(255,255,255,.2);
}
.pc-photo-tag-name{
  font-family:'Noto Serif JP',serif;
  font-size:16px;font-weight:700;
  color:#fff;letter-spacing:.08em;
  flex-shrink:0;
}
/* テキスト本文 */
.pc-body{
  padding:28px 32px 32px;position:relative;flex:1;
  display:flex;flex-direction:column;
}
.pc-bg-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:120px;font-weight:900;
  color:rgba(13,34,64,.04);
  position:absolute;top:-20px;right:8px;
  line-height:1;letter-spacing:-.02em;
  user-select:none;pointer-events:none;
}
.pc-title{
  font-family:'Noto Serif JP',serif;
  font-size:23px;font-weight:700;
  color:var(--navy);line-height:1.6;
  margin-bottom:28px;
}
/* 解決提示エリア */
.pc-solution{
  padding:20px 0 0;
  border-top:2px solid var(--navy);
  min-height:180px;
  box-sizing:border-box;
  flex-shrink:0;
  display:flex;align-items:stretch;gap:16px;
}
.pc-solution-bar{
  width:3px;
  background:var(--blue);
  flex-shrink:0;
  align-self:stretch;
}
.pc-solution-inner{
  display:flex;flex-direction:column;gap:6px;flex:1;
}
.pc-solution-label{
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--blue);
}
.pc-solution-text{
  font-size:16px;color:#333;
  line-height:1.75;font-weight:400;
}
.pc-team-tags{
  display:flex;flex-wrap:wrap;gap:6px;align-items:center;
  margin-top:auto;
  padding-top:12px;
}
.pc-team-tag-sep{
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:700;
  color:var(--blue);
}
.pc-team-tag{
  font-family:'Noto Sans JP',sans-serif;
  font-size:11px;font-weight:700;
  color:var(--navy);
  border:1px solid rgba(13,34,64,.25);
  padding:3px 10px;
  letter-spacing:.04em;
}

/* photo wrap utility (used in reasons, columns etc.) */
.photo-wrap{position:relative;overflow:hidden;}
.photo-wrap .photo{height:100%;transition:transform .5s;}
.photo-wrap:hover .photo{transform:scale(1.04);}

/* ===== REASONS ===== */
.reasons{background:var(--white);padding:96px 48px;position:relative;overflow:hidden;}
.reasons::after{
  content:'';position:absolute;right:-120px;bottom:-120px;
  width:480px;height:480px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,112,224,.05) 0%,transparent 65%);
}
.reasons-inner{max-width:1352px;margin:0 auto;position:relative;z-index:2;}
.reasons .sec-eyebrow{color:var(--blue);}
.reasons .sec-eyebrow::before{background:var(--blue);}
.reasons .sec-title-en{color:var(--navy);}
.reasons .sec-title-jp{color:var(--navy);}
/* reasons header row: title left + stats right */
.reasons-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:40px;margin-bottom:52px;
  padding-bottom:32px;
  border-bottom:1px solid var(--line);
}
.reasons-heading{}
/* stats */
.reasons-stats{
  display:flex;align-items:stretch;gap:0;
  flex-shrink:0;
}
.rs-stat{
  padding:0 32px;
  border-left:1px solid var(--line);
  display:flex;flex-direction:column;justify-content:center;
  gap:5px;
}
.rs-stat:first-child{border-left:none;padding-left:0;}
.rs-num{
  font-family:'DM Sans',sans-serif;
  font-size:40px;font-weight:800;
  color:var(--navy);line-height:1;
  letter-spacing:-.02em;
}
.rs-num span{
  font-size:22px;font-weight:400;
  color:var(--blue);margin-left:1px;
}
.rs-lbl{
  font-family:'DM Sans',sans-serif;
  font-size:10px;font-weight:500;
  color:var(--fade);
  letter-spacing:.14em;text-transform:uppercase;
}
/* photo + cards layout */
.reasons-layout{
  display:grid;grid-template-columns:360px 1fr;
  gap:48px;
  align-items:stretch;
}
/* photo mosaic left */
.reasons-photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:6px;
  height:100%;
}
.reasons-photos .photo-wrap:first-child{grid-column:span 2;}
.reasons-photos .photo-wrap{overflow:hidden;}
.reasons-photos .photo-wrap .photo{height:100%;}
/* reason cards right */
.reason-cards{display:flex;flex-direction:column;gap:2px;height:100%;}
.reason-card{
  background:var(--white);
  border:1px solid var(--line);
  padding:22px 28px;
  display:flex;align-items:center;gap:24px;
  transition:all .25s;cursor:pointer;
  flex:1;
}
.reason-card:hover{background:var(--navy);border-color:var(--navy);}
.reason-card:hover .rc-title{color:#fff;}
.reason-card:hover .rc-desc{color:#fff;}
.reason-card:hover .rc-num{color:rgba(0,112,224,.6);}
/* 番号 */
.rc-num{
  font-family:'Bebas Neue',sans-serif;font-size:28px;
  color:var(--blue);line-height:1;letter-spacing:.12em;
  flex-shrink:0;width:40px;opacity:.8;
  align-self:center;
  margin-top:4px;
}
/* タイトル：大きく前に出す */
.rc-title{
  font-family:'Noto Serif JP',serif;
  font-size:22px;font-weight:700;
  color:var(--navy);line-height:1.4;
  flex-shrink:0;width:220px;
  transition:color .2s;
  align-self:center;
}
/* セパレーター */
.rc-sep{
  width:1px;align-self:stretch;
  background:var(--line);
  flex-shrink:0;
  margin:0 20px;
  transition:background .2s;
}
.reason-card:hover .rc-sep{background:rgba(255,255,255,.12);}
/* 説明文：小さく引く */
.rc-desc{
  font-size:14px;color:#333;
  line-height:1.85;font-weight:400;
  transition:color .2s;
  align-self:center;
}

/* ===== SVC OVERVIEW ===== */
.svc-overview{padding:96px 48px;background:var(--off);}
.svc-overview-inner{max-width:1352px;margin:0 auto;}
.svc-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  margin-top:52px;
}
.svc-card{
  background:var(--white);
  text-decoration:none;
  display:flex;flex-direction:column;
  transition:background .25s;
  overflow:hidden;
  border:1px solid var(--line);
  margin-left:-1px;
}
.svc-card:first-child{margin-left:0;}
.svc-card:hover{background:var(--off);}
.svc-card-photo{
  height:210px;overflow:hidden;position:relative;
}
.svc-card-photo .photo{height:100%;transition:transform .55s;}
.svc-card:hover .svc-card-photo .photo{transform:scale(1.06);}
.svc-body{
  padding:24px 24px 28px;
  flex:1;display:flex;flex-direction:column;
}
.sc-num{
  font-family:'DM Sans',sans-serif;
  font-size:10px;font-weight:700;color:var(--blue);
  letter-spacing:.22em;text-transform:uppercase;
  margin-bottom:10px;
}
.sc-title{
  font-family:'Noto Serif JP',serif;
  font-size:18px;font-weight:700;
  color:var(--navy);line-height:1.55;
  margin-bottom:10px;
  transition:color .25s;
}
.svc-card:hover .sc-title{color:var(--blue);}
.sc-desc{
  font-size:14px;color:#333;
  line-height:1.85;font-weight:400;
  flex:1;
}

/* ===== PHASES ===== */
.phases{background:var(--white);padding:96px 48px;}
.phases-inner{max-width:1352px;margin:0 auto;}
.phase-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin-top:52px;}
.phase-card{
  position:relative;overflow:hidden;
  background:var(--off);transition:all .3s;
}
.phase-card:hover{transform:translateY(-4px);box-shadow:0 20px 48px rgba(13,34,64,.12);}
.phase-photo{height:200px;position:relative;overflow:hidden;}
.phase-photo .photo{height:100%;transition:transform .5s;}
.phase-card:hover .phase-photo .photo{transform:scale(1.05);}
.phase-tag{
  position:absolute;top:16px;left:0;
  background:var(--sky);color:var(--navy);
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.14em;padding:5px 16px 5px 14px;
  text-transform:uppercase;
}
.phase-body{padding:28px 28px 32px;}
.phase-sub{font-size:11px;color:var(--fade);letter-spacing:.08em;margin-bottom:6px;font-family:'DM Sans',sans-serif;font-weight:600;text-transform:uppercase;}
.phase-title{font-family:'Noto Serif JP',serif;font-size:17px;font-weight:700;color:var(--navy);line-height:1.55;margin-bottom:14px;}
.phase-team{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:14px;}
.p-badge{font-size:10px;padding:3px 10px;border:1px solid var(--line);color:var(--mid);}
.phase-list{list-style:none;font-size:12px;color:var(--mid);line-height:2.2;font-weight:300;}
.phase-list li{display:flex;gap:8px;}
.phase-list li::before{content:'—';color:var(--blue);font-size:11px;flex-shrink:0;margin-top:2px;}
.phase-more{
  display:inline-flex;align-items:center;gap:6px;
  font-family:'DM Sans',sans-serif;color:var(--navy);font-size:12px;font-weight:700;
  text-decoration:none;margin-top:18px;letter-spacing:.06em;
  border-bottom:1px solid var(--line);padding-bottom:2px;transition:all .2s;
}
.phase-more:hover{color:var(--blue);border-color:var(--blue);}

/* ===== INSPECTION ===== */
.inspect{
  position:relative;overflow:hidden;
  min-height:370px;display:flex;align-items:center;
}
.inspect-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(90deg,
      rgba(13,34,64,1)    0%,
      rgba(13,34,64,1)   35%,
      rgba(13,34,64,.85) 55%,
      rgba(13,34,64,.65) 75%,
      rgba(13,34,64,.5)  100%
    );
}
.inspect-bg::before{
  content:'';position:absolute;inset:0;z-index:-1;
  background-image:url(/wp/wp-content/uploads/inspect-bg.jpg);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:left center;
  transform:scaleX(-1);
}
.inspect-bg::after{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size:40px 40px;
}
.inspect-inner{
  max-width:1352px;margin:0 auto;width:100%;
  padding:52px 48px;position:relative;z-index:2;
  display:grid;grid-template-columns:1fr auto;gap:80px;align-items:center;
}
.inspect-eyebrow{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);margin-bottom:12px;}
.inspect h2{font-family:'Noto Serif JP',serif;font-weight:500;font-size:48px;color:#fff;line-height:1.4;margin-bottom:12px;}
.inspect h2 em{color:var(--blue);font-style:normal;}
.inspect p{font-size:14px;color:rgba(255,255,255,.75);line-height:1.9;font-weight:400;white-space:nowrap;}
.btn-red-solid{
  flex-shrink:0;display:inline-flex;align-items:center;gap:10px;
  background:var(--sky);color:var(--navy);
  padding:18px 36px;font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:700;letter-spacing:.08em;
  text-decoration:none;transition:all .2s;white-space:nowrap;
}
.btn-red-solid:hover{background:var(--blue-l);transform:translateY(-2px);}

/* ===== COLUMNS ===== */
.columns{background:var(--white);padding:96px 48px;}
.col-inner{max-width:1352px;margin:0 auto;}
.col-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:40px;}
.col-more{
  font-family:'DM Sans',sans-serif;font-size:16px;font-weight:700;
  color:var(--navy);text-decoration:none;letter-spacing:.08em;
  border-bottom:2px solid var(--navy);padding-bottom:2px;transition:all .2s;
}
.col-more:hover{color:var(--blue);border-color:var(--blue);}
.col-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.col-card{
  background:var(--white);text-decoration:none;color:inherit;
  overflow:hidden;transition:all .3s;
  display:flex;flex-direction:column;
  border:1px solid var(--line);
}
.col-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(13,34,64,.1);}
/* 写真 */
.col-photo{aspect-ratio:311/200;position:relative;overflow:hidden;}
.col-photo .photo{height:100%;transition:transform .5s;object-fit:cover;}
.col-card:hover .col-photo .photo{transform:scale(1.04);}
/* NEWバッジ */
.col-badge{
  position:absolute;top:12px;left:12px;z-index:2;
  background:var(--sky);color:var(--navy);
  font-family:'DM Sans',sans-serif;font-size:11px;font-weight:800;
  letter-spacing:.1em;padding:4px 10px;
}
/* 本文 */
.col-body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1;}
/* 日付＋カテゴリ */
.col-meta{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:12px;}
.col-date{font-family:'DM Sans',sans-serif;font-size:12px;color:var(--fade);}
.col-cat{
  font-family:'Noto Sans JP',sans-serif;font-size:12px;font-weight:700;
  color:#fff;background:var(--navy);
  padding:4px 12px;white-space:nowrap;
}
/* タイトル */
.col-title{
  font-family:'Noto Sans JP',sans-serif;font-size:16px;font-weight:500;
  line-height:1.75;color:#333;margin-bottom:10px;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
/* 一言説明 */
.col-excerpt{font-size:13px;color:#333;line-height:1.7;margin-bottom:14px;}
/* 著者 */
.col-author{
  margin-top:auto;
  display:flex;align-items:center;gap:10px;
  padding-top:14px;border-top:1px solid var(--line);
}
.col-author-avatar{
  width:36px;height:36px;border-radius:50%;
  background:var(--line);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;color:var(--fade);
  overflow: hidden;
}
.col-author-avatar > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.col-author-info{display:flex;flex-direction:column;gap:1px;}
.col-author-role{font-size:11px;color:var(--fade);}
.col-author-name{font-size:13px;font-weight:400;color:#333;}

/* ===== TEAM ===== */
.team{background:var(--off);padding:96px 48px;}
.team-inner{max-width:1352px;margin:0 auto;}
.team-layout{
  display:grid;grid-template-columns:1fr 1fr 1fr 1fr;
  gap:6px;margin-top:52px;
}
.team-card{position:relative;overflow:hidden;transition:all .3s;background:var(--white);border:1px solid var(--line);}
.team-card:hover{transform:translateY(-4px);box-shadow:0 18px 44px rgba(13,34,64,.12);}
.team-photo{aspect-ratio:724/544;position:relative;overflow:hidden;}
.team-photo .photo{height:100%;transition:transform .5s;}
.team-card:hover .team-photo .photo{transform:scale(1.04);}
.team-body{padding:24px 28px 28px;border-top:2px solid var(--navy);}
.t-role{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.14em;color:var(--blue);margin-bottom:6px;text-transform:uppercase;}
.t-name{font-family:'Noto Serif JP',serif;font-size:20px;font-weight:700;color:var(--navy);margin-bottom:12px;}
.t-desc{font-size:14px;color:#333;line-height:1.9;font-weight:400;}
/* 専門家カード：高さを揃え「詳しくはこちら」を下揃えに */
.team-card{display:flex;flex-direction:column;}
.team-card > a{display:flex;flex-direction:column;flex:1;}
.team-body{display:flex;flex-direction:column;flex:1;}
.team-body .card-more{margin-top:auto;}   /* 下に押し出す */

/* ===== OFFICE ===== */
.office{background:var(--white);padding:80px 48px;}
.office-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:1fr 480px;
  gap:80px;align-items:center;
}
.office-eyebrow{font-family:'DM Sans',sans-serif;font-size:14px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);margin-bottom:10px;display:flex;align-items:center;gap:10px;}
.office-eyebrow::before{content:'';width:24px;height:2px;background:var(--blue);}
.office-eyebrow::before{content:'';width:20px;height:2px;background:var(--blue);}
.office-title{font-family:'Noto Serif JP',serif;font-size:24px;font-weight:700;color:var(--navy);margin-bottom:28px;}
.office-list{list-style:none;border-top:2px solid var(--navy);}
.office-list li{display:flex;gap:24px;padding:14px 0;border-bottom:1px solid var(--line);font-size:14px;}
.ol-key{font-family:'DM Sans',sans-serif;font-weight:700;color:var(--navy);min-width:80px;font-size:12px;letter-spacing:.04em;padding-top:1px;}
.ol-val{color:#333;}
.office-photo{
  height:360px;overflow:hidden;position:relative;
}
.office-photo .photo{height:100%;transition:transform .6s;}
.office-photo:hover .photo{transform:scale(1.04);}

/* ===== CONTACT ===== */
/* ===== IDENTITY BAND ===== */
.id-band{background:var(--navy);border-top:2px solid var(--blue);padding:18px 48px;}
.id-band-inner{max-width:1352px;margin:0 auto;display:flex;align-items:center;gap:32px;}
.id-band-line{width:3px;height:48px;background:var(--blue);flex-shrink:0;}
.id-band-body{display:flex;align-items:center;gap:24px;flex-wrap:wrap;}
.id-band-label{font-family:'Noto Serif JP',serif;font-size:18px;font-weight:700;letter-spacing:.08em;color:#fff;white-space:nowrap;}
.id-band-text{font-size:16px;color:#fff;letter-spacing:.04em;line-height:1.7;border-left:1px solid rgba(255,255,255,.2);padding-left:24px;}
.id-band-text strong{color:#fff;font-weight:700;}

/* ===== DX FEATURE ===== */
.dx-feature{background:var(--white);padding:64px 48px 96px;position:relative;overflow:hidden;}
.dx-feature::before{
  content:'';position:absolute;right:-120px;top:-120px;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,40,42,.04) 0%,transparent 65%);
}
.dx-feature-inner{position:relative;z-index:2;}
.dx-feature-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:2fr 3fr;gap:80px;align-items:start;
}
.dx-left{}
.dx-left .sec-title-jp{margin-bottom:16px;}
.dx-left .sec-desc{margin-bottom:32px;color:#333;font-size:16px;line-height:1.9;}
.dx-tools-label{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--blue);margin-bottom:10px;
}
.dx-tools{display:flex;flex-wrap:wrap;gap:8px;}
.dx-tool{
  font-size:12px;font-weight:500;color:var(--navy);
  background:var(--off);border:1px solid var(--line);
  padding:5px 12px;letter-spacing:.02em;
}
.dx-features{display:flex;flex-direction:column;gap:3px;}
.dx-feat{
  display:flex;align-items:flex-start;gap:20px;
  padding:24px 28px;background:var(--off);border:1px solid var(--line);
  transition:all .25s;
}
.dx-feat:hover{border-color:var(--blue);box-shadow:0 4px 20px rgba(200,40,42,.08);}
.df-icon{
  width:40px;height:40px;flex-shrink:0;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:16px;
}
.df-title{font-family:'Noto Serif JP',serif;font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px;}
.df-desc{font-size:13px;color:#333;line-height:1.8;}

/* ===== DX COMPACT (COVERAGE内) ===== */
.dx-compact{
  margin-top:48px;background:var(--navy);padding:40px 48px;
}
.dx-compact-head{display:grid;grid-template-columns:1fr auto;grid-template-rows:auto auto;gap:0 32px;align-items:center;margin-bottom:0;}
.dx-compact-intro{
  font-family:'Noto Serif JP',serif;font-size:18px;font-weight:700;
  color:#fff;line-height:1.6;margin-bottom:20px;white-space:nowrap;
}
.dx-compact-tools{
  display:flex;flex-wrap:wrap;gap:6px;margin-bottom:3px;align-items:center;
  background:var(--navy);padding:0 16px 20px 5px;
}
.dx-compact-tools-label{font-size:11px;font-weight:700;color:#fff;letter-spacing:.06em;margin-right:4px;}
.dx-compact-tool{
  font-size:11px;color:#fff;background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3);padding:3px 10px;
}
.dx-compact-body{
  display:grid;grid-template-columns:repeat(4,1fr);gap:3px;
}
.dx-compact-item{
  padding:24px 24px 28px;background:#fff;border-top:2px solid var(--blue);
}
.dx-compact-head-cta{grid-column:2;grid-row:1/3;display:flex;align-items:center;justify-content:flex-end;}
.dx-compact-head-cta a{display:inline-flex;align-items:center;background:var(--sky);color:var(--navy);padding:14px 28px;font-size:16px;font-weight:700;letter-spacing:.06em;text-decoration:none;white-space:nowrap;transition:background .2s;}
.dx-compact-head-cta a:hover{background:var(--blue-l);}
.dx-compact-item-header{display:flex;align-items:baseline;gap:10px;margin-bottom:8px;}
.dx-compact-item-num{font-family:'Bebas Neue',sans-serif;font-size:13px;letter-spacing:.14em;color:var(--blue);flex-shrink:0;}
.dx-compact-item-title{font-size:17px;font-weight:700;color:var(--navy);line-height:1.4;white-space:nowrap;}
.dx-compact-item-desc{font-size:14px;color:var(--mid);line-height:1.75;}

/* ===== PRICING ===== */
.pricing{background:var(--white);padding:96px 0;position:relative;overflow:hidden;width:100%;}
.pricing-grid{display:grid;grid-template-columns:2fr 3fr;min-height:600px;max-width:1352px;margin:0 auto;}
.pricing-photo{position:relative;overflow:hidden;}
.pricing-photo .photo{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transition:transform .6s;
}
.pricing-photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to right, rgba(13,34,64,.7) 0%, rgba(13,34,64,0) 60%);
}
.pricing-photo-badge{
  position:absolute;bottom:40px;left:40px;z-index:2;
  background:var(--blue);padding:16px 24px;
}
.pricing-photo-badge-num{
  font-family:'Bebas Neue',sans-serif;font-size:42px;color:#fff;
  letter-spacing:.04em;line-height:1;
}
.pricing-photo-badge-sub{font-size:11px;color:rgba(255,255,255,.8);letter-spacing:.08em;margin-top:4px;}
.pricing-content{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
  position:relative;background:var(--white);
}
.pricing-content::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:1px;
  background:linear-gradient(to bottom, transparent, rgba(13,34,64,.12), transparent);
}
.pricing-eyebrow{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;color:var(--blue);text-transform:uppercase;margin-bottom:10px;}
.pricing-title{font-family:'Noto Serif JP',serif;font-size:28px;font-weight:700;color:var(--navy);line-height:1.45;margin-bottom:36px;}
.pricing-plans{display:flex;flex-direction:column;gap:0;margin-bottom:36px;}
.pricing-plan{padding:20px 0;border-bottom:1px solid rgba(13,34,64,.1);}
.pricing-plan:first-child{border-top:1px solid rgba(13,34,64,.1);}
.pricing-plan-header{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.pricing-plan-tag{
  font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;
  text-transform:none;padding:4px 12px;
}
.pricing-plan-tag-base{background:rgba(13,34,64,.08);color:#333;}
.pricing-plan-tag-opt{background:rgba(var(--red-rgb,200,40,42),.15);color:#333;}
.pricing-plan-name{font-family:'Noto Serif JP',serif;font-size:18px;font-weight:700;color:#333;}
.pricing-plan-items{display:flex;flex-wrap:wrap;gap:4px 0;align-items:center;}
.pricing-plan-item{font-size:14px;color:#333;padding:0;position:relative;}
.pricing-plan-item::before{content:' ／ ';color:var(--fade);font-size:13px;} .pricing-plan-item:first-child::before{content:'';}
.pricing-note-bar{
  background:#fff;border-left:2px solid var(--blue);
  padding:16px 20px;margin-bottom:32px;
}
.pricing-note-bar p{font-size:16px;color:#333;line-height:1.75;margin:0;}
.pricing-note-bar strong{color:#333;font-weight:700;}
.pricing-cta-row{display:flex;align-items:center;justify-content:space-between;gap:24px;}
.pricing-from{display:flex;align-items:baseline;gap:4px;}
.pricing-from-num{font-family:'Bebas Neue',sans-serif;font-size:38px;color:var(--navy);letter-spacing:.04em;line-height:1;}
.pricing-from-unit{font-size:13px;color:#333;}
.pricing-from-note{font-size:11px;color:#555;margin-top:4px;letter-spacing:.02em;}

.contact{background:var(--navy);padding:96px 48px;position:relative;overflow:hidden;}
.contact::before{
  content:'';position:absolute;right:-80px;top:-80px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,40,42,.08) 0%,transparent 65%);
}
.contact-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center;
  position:relative;z-index:2;
}
.contact-eyebrow{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);margin-bottom:14px;display:flex;align-items:center;gap:10px;}
.contact-eyebrow::before{content:'';width:20px;height:2px;background:var(--blue);}
.contact h2{font-family:'Noto Serif JP',serif;font-weight:500;font-size:44px;color:#fff;line-height:1.4;margin-bottom:12px;}
.contact p{font-size:16px;color:rgba(255,255,255,.75);line-height:2;font-weight:400;}
.contact-right{display:flex;flex-direction:column;gap:12px;}
.contact-tel{
  display:flex;align-items:center;gap:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  border-top:3px solid #fff;
  padding:28px 32px;text-decoration:none;color:inherit;
  transition:background .2s;
}
.contact-tel:hover{background:rgba(255,255,255,.1);}
.contact-tel-num{font-family:'Bebas Neue',sans-serif;font-size:44px;color:#fff;line-height:1;letter-spacing:.06em;margin-bottom:8px;}
.contact-tel-sub{font-size:13px;color:rgba(255,255,255,.7);letter-spacing:.06em;font-weight:400;}
.contact-mail{
  display:flex;align-items:center;justify-content:center;gap:14px;
  background:var(--blue);
  border:1px solid transparent;
  padding:28px 32px;
  text-decoration:none;color:#fff;font-family:'Noto Sans JP',sans-serif;
  font-size:16px;font-weight:700;letter-spacing:.06em;transition:background .2s;
}
.contact-mail:hover{background:var(--blue-l);}

/* ===== FOOTER ===== */
footer{background:#07131F;padding:60px 48px 36px;}
.footer-inner{max-width:1352px;margin:0 auto;}
.footer-top{
  display:grid;grid-template-columns:220px 1fr;gap:80px;
  padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,.07);
/*   margin-bottom:28px; */
}
.f-logo{display:flex;align-items:center;gap:12px;text-decoration:none;margin-bottom:12px;}
.f-logo-mark{width:32px;height:32px;background:var(--blue);display:flex;align-items:center;justify-content:center;font-family:'DM Sans',sans-serif;font-size:16px;font-weight:800;color:#fff;}
.f-logo-name{font-family:'DM Sans',sans-serif;font-size:16px;font-weight:800;letter-spacing:.14em;color:#fff;text-transform:uppercase;}
.f-copy{font-size:11px;color:rgba(255,255,255,.7);line-height:1.9;}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.fl-group h4{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;color:rgba(255,255,255,.6);letter-spacing:.18em;text-transform:uppercase;margin-bottom:14px;padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.15);}
.fl-group a{display:block;font-size:12px;color:#fff;text-decoration:none;margin-bottom:10px;font-weight:300;transition:color .2s;}
.fl-group a:hover{color:rgba(255,255,255,.7);}
.footer-bottom{display:flex;justify-content:space-between;font-size:11px;color:rgba(255,255,255,.5);font-family:'DM Sans',sans-serif;}

/* ===== FLOAT CTA ===== */
.float{position:fixed;bottom:28px;right:28px;z-index:150;}
.float a{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--sky);color:var(--navy);
  padding:16px 40px 19px;font-family:'DM Sans',sans-serif;
  font-size:16px;font-weight:700;letter-spacing:.06em;
  line-height:1;text-decoration:none;
  box-shadow:0 4px 16px rgba(0,0,0,.25);transition:all .2s;
}
.float a:hover{background:var(--blue-l);transform:translateY(-2px);}

/* ===== RESPONSIVE DISABLED ===== */
/* コンテナは max-width:1352px 固定、左右 padding で吸収 */




/* ===== APPEAL CTA BANNERS ===== */
.appeal-banner{
  margin-top:52px;
  background:var(--navy);
  padding:40px 52px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
}
/* テキスト列がコンテナ幅まで縮めるように */
.appeal-banner > div{min-width:0;}
.appeal-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:#0070E0;margin-bottom:8px;
  display:flex;align-items:center;gap:8px;
}
.appeal-eyebrow::before{content:'';width:20px;height:2px;background:#0070E0;}
.appeal-heading{
  font-family:'Noto Serif JP',serif;font-weight:700;
  font-size:26px;color:#fff;
  line-height:1.4;letter-spacing:-.01em;white-space:normal;
}
.appeal-sub{
  font-size:13px;color:rgba(255,255,255,.75);
  line-height:1.85;margin-top:10px;white-space:normal;
}
.appeal-cta-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--blue);color:#fff;
  padding:16px 40px;font-size:18px;font-weight:700;
  letter-spacing:.08em;text-decoration:none;
  white-space:nowrap;transition:all .2s;
}
.appeal-cta-btn:hover{background:var(--blue-l);transform:translateY(-2px);}

.svc-section{padding:96px 48px;}
.svc-section-inner{max-width:1352px;margin:0 auto;}
.svc-section-inner--alt{background:var(--off);padding:64px;border-radius:4px;}
.svc-section .sec-title-jp{margin-bottom:40px;}
.outsourcing-section .sec-title-en,
.svc-section .sec-title-en{margin-bottom:20px;}
.svc-section .sec-desc{margin-bottom:48px;}

/* アウトソーシング：reasonsと同じ左右レイアウト */
.outsourcing-section{background:var(--off);padding:96px 48px;}
.outsourcing-inner{max-width:1352px;margin:0 auto;}
.outsourcing-layout{display:grid;grid-template-columns:2fr 3fr;gap:3px;align-items:stretch;}
.outsourcing-left{display:flex;flex-direction:column;padding:0 48px 0 0;}
.outsourcing-left .sec-eyebrow{margin-bottom:8px;}
.outsourcing-main-title{
  line-height:1.35 !important;
  margin-bottom:auto;
  padding-bottom:28px;
}
.outsourcing-photos{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;gap:6px;flex:1;height:100%;
}
.outsourcing-photo-wrap{position:relative;overflow:hidden;}
.outsourcing-photo-wrap .photo{height:100%;background-size:cover;background-position:center;transition:transform .5s;}
.outsourcing-photo-wrap:hover .photo{transform:scale(1.04);}
.outsourcing-photo-label{display:none;}
.outsourcing-cards{display:flex;flex-direction:column;gap:3px;align-self:stretch;}
.outsourcing-card{
  display:flex;align-items:flex-start;gap:16px;
  padding:28px 32px 20px 32px;flex:none;
  background:var(--white);border:1px solid var(--line);
  transition:all .25s;
}
.outsourcing-card:hover{border-color:var(--blue);box-shadow:0 4px 20px rgba(0,102,204,.08);}
.outsourcing-card-num{font-family:'DM Sans',sans-serif;font-size:24px;font-weight:700;color:var(--blue);letter-spacing:.08em;flex-shrink:0;padding-top:3px;min-width:32px;}
.outsourcing-card-title{font-family:'Noto Serif JP',serif;font-size:24px;font-weight:700;color:var(--navy);margin-bottom:16px;line-height:1.45;}
.outsourcing-card-desc{font-size:16px;color:#333;line-height:1.8;margin-bottom:12px;}
.outsourcing-card-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px;margin-top:14px;}
.outsourcing-card-list li{font-size:13px;color:var(--navy);font-weight:400;background:rgba(0,102,204,.07);border:1px solid rgba(0,102,204,.2);padding:5px 14px;border-radius:20px;letter-spacing:.04em;}
.outsourcing-card-list li::before{display:none;}

/* 料金表 */
.svc-pricing{background:var(--white);border:1px solid var(--line);padding:48px;margin-top:32px;}
.svc-pricing-inner-layout{display:block;}
.svc-pricing-left{margin-bottom:24px;display:flex;align-items:center;gap:20px;}
.svc-pricing-label{font-family:'Noto Sans JP',sans-serif;font-size:20px;font-weight:700;color:var(--navy);white-space:nowrap;display:flex;align-items:center;gap:10px;flex-shrink:0;}
.svc-pricing-label::before{content:'';width:3px;height:22px;background:var(--blue);}
.svc-pricing-note{font-size:16px;color:#333;line-height:1.8;margin:0;}
.svc-pricing-right{display:flex;flex-direction:column;gap:0;}
.svc-pricing-grid3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:0;}
.svc-pricing-grid3 .svc-pricing-card:not(:first-child){border-left:none;}
.svc-pricing-card{background:#fff;border:1px solid var(--line);}
.svc-soudan-inner{padding:20px;}
.svc-soudan-price{font-family:'DM Sans',sans-serif;font-size:22px;font-weight:900;color:var(--navy);margin-bottom:8px;}
.svc-soudan-price span{font-size:13px;color:#333;font-weight:400;margin-left:4px;}
.svc-soudan-note{font-size:13px;color:#333;line-height:1.6;}
.svc-pricing-head{
  padding:14px 20px;
  border-bottom:1px solid var(--line);
  font-weight:700;font-size:16px;color:var(--navy);
  display:flex;align-items:center;gap:10px;
  background:rgba(0,102,204,.04);
}
.svc-pricing-head i{color:var(--blue);font-size:16px;}
.svc-pricing-table{width:100%;border-collapse:collapse;font-size:16px;}
.svc-pricing-table th{
  padding:8px 20px;text-align:left;
  color:#333;font-weight:600;font-size:12px;
  letter-spacing:.04em;text-transform:uppercase;
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.02);
}
.svc-pricing-table td{padding:11px 20px;border-bottom:1px solid rgba(0,0,0,.05);color:#333;}
.svc-pricing-table tr:last-child td{border-bottom:none;}
.svc-pricing-table td.price{font-weight:700;color:#333;}
.svc-pricing-table td.consult{font-weight:700;color:var(--blue);}
.svc-soudan-card{
  background:rgba(0,102,204,.04);
  border:1px solid rgba(0,102,204,.15);
  border-top:none;
  padding:12px 20px;
  display:flex;flex-wrap:wrap;align-items:center;gap:12px;justify-content:space-between;
}
.svc-soudan-label{font-weight:700;font-size:13px;color:var(--navy);display:flex;align-items:center;gap:10px;}
.svc-soudan-label i{color:var(--blue);font-size:14px;}
.svc-soudan-price{font-family:'DM Sans',sans-serif;font-size:24px;font-weight:900;color:var(--navy);}
.svc-soudan-price span{font-size:13px;color:#333;font-weight:400;margin-left:4px;}
.svc-soudan-note{font-size:11px;color:#333;flex-basis:100%;line-height:1.6;}
.svc-pricing-disclaimer{font-size:11.5px;color:#333;line-height:1.7;margin-top:16px;padding-top:16px;border-top:1px solid var(--line);}

/* アウトソーシングCTAバナー */
.outsourcing-cta-banner{
  margin-top:48px;
  background:var(--navy);
  padding:36px 48px;
  display:flex;align-items:center;justify-content:space-between;gap:40px;
}
.outsourcing-cta-title{
  font-family:'Noto Serif JP',serif;font-size:22px;font-weight:700;
  color:#fff;margin-bottom:8px;
}
.outsourcing-cta-sub{font-size:14px;color:rgba(255,255,255,.7);line-height:1.7;}


.consulting-cards{display:flex;flex-direction:column;gap:3px;}
.consulting-card{
  display:grid;grid-template-columns:380px 1fr;
  background:var(--white);border:1px solid var(--line);
  overflow:hidden;transition:box-shadow .3s,transform .3s;
}
.consulting-card:hover{box-shadow:0 16px 48px rgba(0,60,140,.1);transform:translateY(-2px);}
.consulting-photo{position:relative;overflow:hidden;}
.consulting-photo .photo{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .6s;}
.consulting-card:hover .consulting-photo .photo{transform:scale(1.04);}
.consulting-photo-num{display:none;}
.consulting-body{padding:28px 36px 20px 28px;display:flex;flex-direction:column;gap:12px;justify-content:center;}
.consulting-title{font-family:'Noto Serif JP',serif;font-size:24px;font-weight:700;color:var(--navy);line-height:1.4;}
.consulting-desc{font-size:16px;color:#333;line-height:1.85;}
.consulting-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px;margin-top:14px;}
.consulting-list li{font-size:13px;color:var(--navy);font-weight:400;background:rgba(0,102,204,.07);border:1px solid rgba(0,102,204,.2);padding:5px 14px;border-radius:20px;letter-spacing:.04em;}

/* グループ連携 */
.group-layout{display:grid;grid-template-columns:500px 1fr;gap:24px;margin-bottom:24px;align-items:stretch;}
.group-photo{position:relative;overflow:hidden;min-height:480px;}
.group-photo .photo{position:absolute;inset:0;background-size:cover;background-position:center;}
.group-photo-badge{
  position:absolute;bottom:24px;left:24px;
  background:rgba(13,34,64,.85);backdrop-filter:blur(8px);
  padding:10px 20px;border-left:3px solid var(--sky);
}
.group-photo-badge-text{font-size:14px;font-weight:700;color:#fff;letter-spacing:.04em;}
.group-right{display:flex;flex-direction:column;gap:0;}
.group-expert-card{padding:36px 40px;background:#fff;border:1px solid var(--line);}
.group-expert-card.sr{border-bottom:none;}
.group-expert-card.law{border-top:none;}
.group-expert-header{display:flex;align-items:center;gap:12px;margin-bottom:12px;}
.group-expert-kicker{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;color:#333;}
.group-expert-badge{font-size:12px;font-weight:700;padding:4px 12px;border-radius:2px;}
.group-expert-badge.sr{background:rgba(0,102,204,.08);color:var(--blue);border:1px solid rgba(0,102,204,.2);}
.group-expert-badge.law{background:rgba(124,92,255,.08);color:#6b3fc4;border:1px solid rgba(124,92,255,.2);}
.group-expert-title{font-family:'Noto Serif JP',serif;font-size:24px;font-weight:700;color:var(--navy);margin-bottom:12px;}
.group-expert-body{font-size:16px;color:#333;line-height:1.85;margin-bottom:16px;}
.group-expert-tags{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px;}
.group-expert-tags li{font-size:13px;color:var(--navy);font-weight:400;background:var(--off);border:1px solid var(--line);padding:5px 14px;border-radius:20px;transition:all .2s;}
.group-expert-note{margin-top:6px;font-size:12px;color:#555;line-height:1.75;padding-top:6px;}
.group-expert-tags a:hover li{
  border-color:var(--blue);
  transform:translateY(-2px);
}
.group-connector{
  display:flex;align-items:center;gap:16px;
  padding:18px 28px;
  background:rgba(255,210,120,.20);
  margin:0;
}
.group-connector-line{display:none;}
.group-connector-label{
  font-size:16px;color:#C77F1A;font-weight:700;
  letter-spacing:.02em;
  display:flex;align-items:center;gap:10px;
  padding-left:15px;
}
.group-connector-label::before{
  content:'\f063';font-family:'Font Awesome 5 Free';font-weight:900;
  font-size:24px;flex-shrink:0;
  line-height:1;
  display:inline-flex;align-items:center;
}
.group-merit{display:flex;align-items:center;gap:24px;background:var(--navy);padding:36px 48px;margin-top:24px;}
.group-merit-icon{color:var(--sky);font-size:28px;flex-shrink:0;}
.group-merit-text{font-size:19px;color:#fff;line-height:1.85;font-weight:500;flex:1;}
.group-merit-title{font-family:'Noto Serif JP',serif;font-size:22px;font-weight:700;color:#fff;margin-bottom:10px;line-height:1.4;letter-spacing:-.01em;}
.group-merit-desc{font-size:13px;color:#fff;font-weight:400;line-height:1.9;font-family:'Noto Sans JP',sans-serif;}
.group-merit-btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--blue);color:#fff;
  font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:700;
  padding:14px 28px;white-space:nowrap;
  text-decoration:none;transition:opacity .2s;flex-shrink:0;
}
.group-merit-btn:hover{opacity:.9;}

/* 社労士カード：カード全体をリンク化 */
a.group-expert-card{
  display:block;
  text-decoration:none;color:inherit;
  outline:2px solid transparent;outline-offset:-2px;
  transition:outline-color .2s;
  padding-bottom:23px;
}
a.group-expert-card:hover{outline-color:var(--blue);}
a.group-expert-card:hover .card-more i{transform:translateX(4px);}

/* グループカード内の「詳しくはこちら」は左寄せ（カード共通の右寄せを上書き） */
.group-expert-card .card-more{justify-content:flex-start;margin-top:14px;}

/* 弁護士カード：外部テキストリンク */
.group-expert-link{
  margin-top:14px;
  font-size:14px;color:#333;line-height:1.7;
}
.group-expert-link a{
  color:var(--blue);font-weight:700;text-decoration:none;
  display:inline-flex;align-items:center;gap:6px;white-space:nowrap;
}
.group-expert-link a i{font-size:12px;transition:transform .2s;}
.group-expert-link a:hover{text-decoration:none;text-underline-offset:3px;}
.group-expert-link a:hover i{transform:translateX(3px);}

/* GROUP CTA バナー */
.group-cta-banner{background:var(--navy);padding:40px 48px;}
.group-cta-inner{max-width:1352px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center;}
.group-cta-eyebrow{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--sky);margin-bottom:8px;display:flex;align-items:center;gap:8px;}
.group-cta-eyebrow::before{content:'';width:20px;height:2px;background:var(--sky);}
.group-cta-heading{font-family:'Noto Sans JP',sans-serif;font-size:22px;font-weight:700;color:#fff;margin-bottom:6px;}
.group-cta-sub{font-size:14px;color:rgba(255,255,255,.65);line-height:1.7;}
.group-cta-btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--blue);color:#fff;
  font-family:'Noto Sans JP',sans-serif;font-size:16px;font-weight:700;
  padding:18px 40px;white-space:nowrap;
  text-decoration:none;transition:opacity .2s;flex-shrink:0;
}
.group-cta-btn:hover{opacity:.9;}

/* PLAN 写真帯 */
.plan-photo-band{position:relative;height:280px;overflow:hidden;}
.plan-photo-band .photo{position:absolute;inset:0;background-size:cover;background-position:center;}

/* サービスの組み立て＋導入の流れ */
.plan-heading{
  font-family:'Noto Sans JP',sans-serif;font-size:20px;font-weight:700;
  color:var(--navy);
  display:flex;align-items:center;gap:16px;margin-bottom:28px;
}
.plan-heading::before{content:'';width:4px;height:24px;background:var(--blue);flex-shrink:0;}
.plan-cards{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:stretch;gap:0;}
.plan-card{background:var(--navy);border:1px solid var(--navy);padding:28px 36px;display:flex;flex-direction:column;gap:12px;}
.plan-card-arrow{display:flex;align-items:center;justify-content:center;padding:0 20px;background:var(--off);color:var(--blue);font-size:18px;}
.plan-card-num{font-family:'DM Sans',sans-serif;font-size:48px;font-weight:900;color:rgba(255,255,255,.1);line-height:1;margin-bottom:-8px;}
.plan-card-label{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.18em;color:var(--sky);}
.plan-card-title{font-family:'Noto Sans JP',sans-serif;font-size:18px;font-weight:700;color:#fff;line-height:1.4;padding-bottom:12px;border-bottom:2px solid var(--sky);margin-bottom:4px;}
.plan-card-desc{font-size:14px;color:#fff;line-height:1.85;flex:1;}

/* タイムライン */
.process-timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:0;background:var(--white);border:1px solid var(--line);}
.pt-item{display:flex;flex-direction:column;padding:36px 28px;border-right:1px solid var(--line);position:relative;}
.pt-item.last{border-right:none;}
.pt-num{
  font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;
  letter-spacing:.12em;color:var(--blue);
  margin-bottom:20px;
  display:flex;flex-direction:column;align-items:flex-start;gap:6px;
}
.pt-num::before{
  content:attr(data-step);
  font-size:36px;font-weight:900;letter-spacing:-.02em;
  color:var(--navy);line-height:1;
  display:block;
}
.pt-num::after{
  content:'';width:24px;height:2px;background:var(--blue);display:block;
}
.pt-line{display:none;}
.pt-title{font-family:'Noto Sans JP',sans-serif;font-size:18px;font-weight:700;color:var(--navy);margin-bottom:12px;line-height:1.4;}
.pt-desc{font-size:14px;color:#333;line-height:1.85;}
.pt-item::before{
  content:attr(data-num);
  position:absolute;top:24px;right:20px;
  font-family:'DM Sans',sans-serif;font-size:64px;font-weight:900;
  color:rgba(0,60,140,.04);line-height:1;
  pointer-events:none;
}

/* 無料相談 */
.free-consult{background:var(--navy);}
.free-consult .sec-eyebrow{color:var(--sky) !important;}
.free-consult .sec-eyebrow::before{background:var(--sky) !important;}
.consult-layout{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.consult-left{}
.consult-main-title{
  font-family:'Noto Sans JP',sans-serif;font-size:42px;font-weight:700;
  color:#fff;line-height:1.2;margin:12px 0 24px;
}
.consult-main-title span{
  font-size:24px;color:var(--sky);font-weight:600;
  display:block;margin-top:4px;
}
.consult-lead{font-size:14px;color:rgba(255,255,255,.7);line-height:1.9;margin:0 0 36px;}
.consult-btns{display:flex;flex-direction:column;gap:10px;}
.consult-btn-primary{
  display:flex;align-items:center;gap:16px;
  background:var(--sky);color:var(--navy);
  padding:18px 24px;text-decoration:none;
  transition:opacity .2s;
}
.consult-btn-primary:hover{opacity:.9;}
.consult-btn-primary i{font-size:20px;flex-shrink:0;}
.consult-btn-primary span{font-size:16px;font-weight:700;flex:1;}
.consult-btn-primary small{font-size:11px;font-weight:600;opacity:.7;white-space:nowrap;}
.consult-btn-tel,.consult-btn-mail{
  display:flex;align-items:center;gap:16px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.15);
  color:#fff;padding:16px 24px;text-decoration:none;
  transition:background .2s;
}
.consult-btn-tel:hover,.consult-btn-mail:hover{background:rgba(255,255,255,.1);}
.consult-btn-tel i,.consult-btn-mail i{font-size:16px;color:var(--sky);flex-shrink:0;}
.consult-btn-tel span,.consult-btn-mail span{font-size:16px;font-weight:700;flex:1;font-family:'DM Sans',sans-serif;letter-spacing:.04em;}
.consult-btn-tel small,.consult-btn-mail small{font-size:11px;color:rgba(255,255,255,.5);white-space:nowrap;}
.consult-right{}
.consult-items-label{
  font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:700;
  letter-spacing:.08em;
  color:var(--sky);margin-bottom:20px;
  display:flex;align-items:center;gap:10px;
}
.consult-items-label::before{content:'';width:20px;height:2px;background:var(--sky);}
.consult-items{display:flex;flex-direction:column;gap:0;}
.consult-item{
  display:flex;align-items:flex-start;gap:20px;
  padding:24px 0;border-bottom:1px solid rgba(255,255,255,.1);
}
.consult-item:first-child{padding-top:0;}
.consult-item:last-child{border-bottom:none;padding-bottom:0;}
.consult-item-num{
  font-family:'DM Sans',sans-serif;font-size:28px;font-weight:900;
  letter-spacing:.04em;color:var(--sky);flex-shrink:0;padding-top:0;min-width:48px;line-height:1.4;
}
.consult-item-title{font-size:18px;font-weight:700;color:#fff;margin-bottom:8px;line-height:1.4;}
.consult-item-desc{font-size:14px;color:rgba(255,255,255,.65);line-height:1.75;}

/* ===== ID BAND ===== */
.id-band{
  background:linear-gradient(90deg, rgba(14,30,60,.98) 0%, rgba(10,22,48,.98) 100%);
  border-top:1px solid rgba(56,189,248,.25);
  border-bottom:1px solid rgba(56,189,248,.10);
  padding:20px 48px;
  position:relative;
  overflow:hidden;
}
.id-band::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:radial-gradient(ellipse 600px 80px at 30% 50%, rgba(56,189,248,.07), transparent 70%);
  pointer-events:none;
}
.id-band-inner{max-width:1352px;margin:0 auto;padding:0 48px;display:flex;align-items:center;gap:0;position:relative;}
.id-band-top{display:flex;align-items:center;gap:0;}
.id-band-line{display:none;}
.id-band-body{display:contents;}
.id-band-label{
  font-family:'Noto Serif JP',serif;font-size:18px;font-weight:700;
  letter-spacing:.06em;
  color:#fff;white-space:nowrap;
  padding-right:24px;
  border-right:1px solid rgba(56,189,248,.25);
  flex-shrink:0;
}
.id-band-text{
  font-size:16px;color:#fff;
  letter-spacing:.02em;line-height:1.6;
  padding-left:24px;
}
.id-band-text strong{color:rgba(255,255,255,.95);font-weight:700;}
.id-band-note-bar{
  background:rgba(255,255,255,.92);
  border-top:1px solid rgba(255,255,255,.15);
  padding:8px 48px;
}
.id-band-note-bar-inner{
  max-width:1352px;margin:0 auto;
  font-size:11px;color:rgba(13,34,64,.65);
  line-height:1.75;
}
.id-band-note-bar-inner strong{color:rgba(13,34,64,.9);font-weight:700;}

/* ===== PILLARS ===== */
.pillars{background:var(--white);padding:80px 48px 0;}
.pillars-inner{max-width:1352px;margin:0 auto;}
.pillars-inner .sec-title-jp{margin-bottom:48px;}
.pillars-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.pillar-card{
  background:var(--white);
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  border:1px solid var(--line);
  transition:box-shadow .3s,transform .3s;
}
.pillar-card:hover{
  box-shadow:0 16px 48px rgba(0,60,140,.1);
  transform:translateY(-4px);
}
.pillar-en-label{
  display:none;
}

.pillar-card .pc-body{display:flex;flex-direction:column;}
.pillar-card .pc-solution{margin-top:16px;}


/* Section header: matches hero eyebrow style */
.sec-header{display:block;}

/* SERVICE eyebrow */
.sec-eyebrow-service{
  display:flex;align-items:center;gap:16px;
  font-family:'DM Sans',sans-serif;font-size:18px;font-weight:900;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--navy);margin-bottom:12px;
}
.sec-eyebrow-service::before{
  content:'';flex:none;width:48px;height:3px;background:var(--blue);
}
.sec-desc{
  font-size:17px;color:var(--navy);line-height:1.9;font-weight:400;
  margin-top:14px;
}


/* ===== INTRO / PROBLEMS ===== */
.intro{padding:96px 48px 48px;background:var(--white);}
.intro-inner{max-width:1352px;margin:0 auto;}
.intro-head{margin-bottom:52px;}
/* 3カードグリッド（上:小見出し → 中:写真 → 下:悩みリスト） */
.prob-cards{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;
  border:2px solid var(--line);
}
.prob-card{
  background:var(--white);
  display:flex;flex-direction:column;
  padding:0;
  position:relative;
  transition:none;
  overflow:hidden;
}
.prob-card:not(:last-child){
  border-right:2px solid var(--line);
}

/* ① 写真左下に雑誌風タイポラベル（大型化版） */
.pc-heading{
  position:absolute;
  left:28px;bottom:26px;right:28px;
  z-index:2;
  display:flex;flex-direction:column;
  text-align:left;
  margin-bottom:0;
  text-shadow:0 2px 16px rgba(0,0,0,.45);
}
.pc-heading-num{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:700;
  letter-spacing:.18em;color:#F5A623;
  margin-bottom:14px;
  text-transform:uppercase;
}
.pc-heading-num::after{
  content:'';
  flex:1;
  height:1px;
  background:rgba(245,166,35,.5);
  max-width:50px;
}
.pc-heading-name{
  display:block;
  font-family:'Noto Serif JP',serif;
  font-size:24px;font-weight:700;
  color:#fff;
  letter-spacing:.02em;
  line-height:1.45;
  opacity:1;
}

/* ② 中央：写真 */
.pc-photo{
  position:relative;
  height:310px;
  overflow:hidden;
  margin-bottom:0;
}
.pc-photo .photo{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(.8);
}
.pc-photo::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,
    rgba(13,34,64,.72) 0%,
    rgba(13,34,64,.42) 30%,
    rgba(13,34,64,.15) 65%,
    rgba(13,34,64,.02) 90%,
    rgba(13,34,64,0) 100%
  );
  pointer-events:none;
  z-index:1;
  display:block;
}
.pc-cat-label{display:none;}

/* ③ 下部：悩みリスト */
.pc-body{
  padding:30px 18px;
  flex:1;
  display:flex;flex-direction:column;
  position:relative;
}
.pc-bg-num{display:none;}
.pc-title{display:none;}
.pc-voice-hook{
  flex:1;
  display:flex;flex-direction:column;
}
.pc-voice-hook ul{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:11px;
}
.pc-voice-hook li{
  font-family:'Noto Sans JP',sans-serif;
  font-size:17px;font-weight:500;
  color:#222;
  line-height:1.55;letter-spacing:.02em;
  position:relative;
  display:flex;align-items:flex-start;gap:3px;
  padding-left:0;
}
.pc-voice-hook li::before{
  content:'';
  flex-shrink:0;
  width:30px;height:30px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  position:relative;top:-2px;
  transform:scaleX(-1);
  background-image:url("data:image/svg+xml;charset=utf-8,<svg version=%221.0%22 xmlns=%22http://www.w3.org/2000/svg%22 width=%22905.000000pt%22 height=%22951.000000pt%22 viewBox=%220 0 905.000000 951.000000%22 preserveAspectRatio=%22xMidYMid meet%22> <g transform=%22translate%280.000000,951.000000%29 scale%280.100000,-0.100000%29%22 fill=%22%23F5A623%22 stroke=%22none%22> <path d=%22M4838 8294 c-2 -1 -39 -5 -83 -9 -133 -11 -286 -32 -360 -49 -5 -1 -37 -8 -70 -15 -102 -21 -467 -134 -490 -151 -5 -4 -21 -11 -35 -15 -47 -13 -324 -152 -420 -210 -601 -361 -1063 -890 -1333 -1525 -67 -158 -166 -471 -183 -580 -2 -14 -7 -36 -10 -50 -13 -55 -14 -60 -28 -160 -6 -45 -15 -111 -23 -175 -6 -52 -6 -551 0 -595 2 -14 7 -52 11 -85 16 -128 48 -305 72 -395 2 -8 10 -40 18 -70 17 -70 96 -312 106 -325 4 -5 17 -37 30 -70 95 -244 315 -609 496 -822 47 -55 52 -66 44 -90 -23 -76 -73 -245 -89 -303 -11 -36 -33 -112 -51 -170 -17 -58 -35 -118 -40 -135 -4 -16 -24 -86 -45 -155 -21 -69 -49 -163 -62 -210 -14 -47 -31 -105 -38 -130 -57 -197 -59 -211 -31 -283 21 -56 50 -83 112 -106 80 -29 126 -21 243 44 42 23 148 79 236 125 88 45 165 86 170 90 6 4 87 47 180 95 94 48 175 91 180 95 6 4 82 44 170 90 88 45 179 93 201 107 41 23 43 23 85 7 24 -10 49 -20 54 -24 11 -8 286 -100 314 -105 10 -2 35 -8 57 -14 21 -5 53 -13 69 -17 17 -4 35 -8 40 -10 27 -6 74 -15 110 -20 22 -3 46 -7 53 -10 8 -2 37 -7 65 -10 29 -3 58 -7 65 -10 75 -24 665 -24 802 0 14 3 43 7 65 11 78 11 111 16 160 26 71 14 212 48 265 64 25 7 79 23 120 35 41 13 80 26 85 30 6 4 28 13 50 20 39 12 56 19 175 71 351 154 704 399 988 688 245 249 430 509 585 821 51 102 97 199 104 215 43 106 125 357 139 424 3 14 7 28 9 32 3 4 7 24 10 45 3 22 8 45 11 53 2 8 7 30 10 50 3 20 7 43 10 51 3 8 7 33 10 55 3 22 7 49 9 61 2 11 7 45 10 75 3 30 8 72 12 94 9 65 11 475 3 540 -5 33 -11 96 -15 140 -4 44 -8 82 -10 85 -2 3 -6 26 -9 52 -8 59 -41 215 -62 293 -8 33 -17 67 -19 75 -8 36 -77 238 -90 267 -8 17 -15 34 -15 37 0 12 -54 131 -117 256 -168 337 -358 596 -639 870 -259 252 -514 432 -829 584 -88 43 -168 82 -177 87 -10 5 -22 9 -28 9 -6 0 -29 9 -53 19 -53 24 -214 79 -287 98 -30 8 -73 19 -95 24 -44 12 -40 11 -145 33 -77 15 -102 20 -181 30 -25 4 -57 9 -70 11 -84 14 -570 30 -581 19z m452 -418 c133 -15 182 -22 305 -47 906 -183 1677 -817 2043 -1679 65 -153 147 -421 166 -541 3 -20 7 -42 10 -50 3 -8 7 -38 11 -68 3 -29 7 -56 9 -60 9 -15 21 -230 21 -376 0 -145 -10 -327 -20 -365 -2 -8 -7 -35 -10 -60 -8 -61 -42 -223 -61 -290 -8 -30 -21 -78 -29 -106 -50 -184 -207 -517 -333 -710 -215 -327 -497 -610 -826 -828 -127 -84 -336 -196 -461 -246 -44 -18 -93 -38 -110 -45 -26 -11 -88 -31 -230 -75 -34 -10 -34 -10 -200 -44 -66 -13 -149 -27 -185 -31 -36 -4 -69 -9 -73 -12 -14 -9 -427 -10 -517 -2 -138 13 -194 19 -208 24 -8 3 -37 8 -65 11 -29 4 -55 8 -60 11 -4 2 -20 6 -35 9 -124 21 -395 109 -547 179 -52 23 -111 42 -130 40 -41 -4 -93 -20 -128 -39 -70 -38 -205 -110 -332 -176 -66 -34 -138 -73 -160 -85 -22 -12 -107 -57 -190 -100 -82 -43 -160 -85 -172 -93 -27 -17 -28 -13 -7 53 8 28 17 58 19 69 4 18 24 84 72 241 14 44 26 88 28 99 4 18 23 81 72 241 14 44 26 87 28 95 2 8 12 47 22 85 11 39 19 75 18 80 -9 76 -20 97 -102 191 -216 249 -361 477 -488 762 -64 145 -146 399 -168 522 -3 14 -8 36 -11 50 -3 14 -8 36 -10 50 -2 14 -7 41 -10 60 -8 53 -17 126 -25 215 -8 92 -6 464 3 500 3 13 9 53 12 87 2 35 7 70 10 78 3 8 8 35 11 60 3 24 21 103 39 175 19 71 36 138 39 148 12 52 44 137 102 277 319 763 995 1368 1799 1609 40 12 80 24 90 26 11 2 34 8 52 14 18 5 35 10 37 10 3 0 18 2 33 5 15 3 38 7 52 10 14 2 36 7 50 10 14 3 47 8 74 11 27 3 52 8 55 9 3 2 53 7 111 11 58 3 107 9 110 12 5 6 325 -3 400 -11z%22/> <path d=%22M4387 7036 c-139 -51 -172 -253 -58 -349 37 -30 79 -44 171 -52 36 -4 103 -13 150 -22 47 -8 99 -17 115 -20 17 -2 71 -16 120 -29 50 -14 99 -27 110 -29 22 -5 94 -30 182 -63 413 -157 795 -454 998 -777 30 -48 55 -93 55 -99 0 -6 7 -24 16 -41 24 -47 54 -184 54 -252 0 -112 -57 -244 -149 -345 -48 -52 -127 -115 -135 -107 -2 2 -6 20 -9 39 -15 96 -62 231 -124 355 -147 295 -431 560 -788 735 -140 69 -351 142 -450 156 -16 3 -41 7 -55 11 -51 12 -239 11 -301 -2 -35 -8 -64 -14 -64 -13 0 5 -77 -23 -120 -45 -89 -44 -150 -92 -198 -155 -78 -104 -114 -202 -122 -332 -2 -41 14 -131 37 -199 56 -173 218 -354 448 -504 88 -57 225 -131 295 -159 22 -9 83 -36 135 -61 163 -76 251 -114 375 -162 66 -25 129 -50 140 -55 11 -5 36 -13 55 -19 19 -6 59 -18 89 -27 30 -9 85 -24 123 -33 l70 -17 -41 -51 c-43 -55 -120 -117 -220 -179 l-64 -39 -26 35 c-215 282 -552 496 -896 570 -126 27 -325 23 -408 -8 -129 -47 -219 -134 -268 -260 -33 -83 -36 -227 -7 -314 56 -169 223 -321 443 -404 80 -30 164 -53 220 -60 22 -3 54 -9 71 -14 18 -4 153 -9 300 -9 148 -1 269 -3 270 -4 7 -11 -23 -72 -52 -106 -50 -58 -109 -82 -209 -86 -96 -3 -227 15 -267 36 -10 5 -18 7 -18 5 0 -5 -16 0 -130 43 -95 36 -191 20 -248 -41 -30 -33 -60 -116 -55 -153 11 -87 43 -135 111 -169 48 -24 257 -95 302 -102 14 -2 36 -7 50 -10 14 -3 36 -9 50 -12 14 -3 93 -5 175 -6 212 0 318 31 461 136 140 104 243 312 244 495 l1 48 77 35 c255 116 477 339 563 566 30 77 35 84 68 95 58 19 189 89 254 137 205 151 342 362 392 604 14 71 17 247 5 303 -5 22 -11 56 -14 75 -22 148 -151 408 -280 565 -229 280 -500 494 -846 666 -269 134 -563 225 -880 274 -25 4 -52 9 -61 10 -71 13 -198 14 -232 1z m177 -1301 c76 -13 252 -76 356 -129 231 -115 429 -280 535 -446 43 -68 105 -191 105 -210 0 -5 4 -18 9 -28 11 -22 29 -80 35 -114 3 -21 1 -28 -11 -28 -24 0 -222 59 -272 81 -24 10 -47 19 -52 19 -5 0 -33 11 -63 25 -30 14 -57 25 -60 25 -2 0 -34 14 -69 30 -36 17 -68 30 -71 30 -3 0 -40 16 -83 37 -391 183 -461 224 -590 346 -41 39 -86 91 -100 115 -87 148 16 270 217 258 41 -3 92 -8 114 -11z m-329 -1439 c39 -9 112 -34 150 -51 17 -8 46 -20 65 -28 68 -27 270 -162 270 -180 0 -2 -62 -2 -137 0 -119 2 -179 10 -313 39 -53 11 -173 77 -215 118 -46 44 -57 79 -32 105 12 13 149 11 212 -3z%22/> </g> </svg>");
}
/* ===== DX FEATURE ===== */
.dx-feature{background:var(--white);padding:96px 48px;position:relative;overflow:hidden;}
.dx-feature::before{
  content:'';position:absolute;
  bottom:0;left:0;
  width:100%;height:100%;
  background-image:
    linear-gradient(to top right, rgba(240,246,252,0.4) 0%, rgba(240,246,252,1) 65%),
    url(/wp/wp-content/uploads/dx-bg.png);
  background-size:cover;background-position:center center;
  opacity:.45;
  pointer-events:none;
}
.dx-feature-inner{position:relative;z-index:2;}
.dx-feature-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:2fr 3fr;gap:80px;align-items:start;
}
.dx-left{}
.dx-left .sec-title-jp{margin-bottom:16px;white-space:nowrap;}
.dx-left .sec-desc{margin-bottom:32px;color:#333;}
.dx-features .df-desc{font-size:14px;color:#333;line-height:1.8;}
.dx-tools-label{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:var(--fade);
  margin-bottom:12px;
}
.dx-tools{display:flex;flex-wrap:wrap;gap:8px;}
.dx-tool{
  font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;
  color:var(--navy);letter-spacing:.04em;
  background:var(--white);border:1.5px solid var(--line);
  padding:5px 12px;border-radius:4px;
}
.dx-features{display:flex;flex-direction:column;gap:3px;}
.dx-feat{
  background:var(--white);border:1px solid var(--line);
  padding:24px 28px;display:flex;gap:20px;align-items:flex-start;
  transition:all .25s;
}
.dx-feat:hover{border-color:var(--blue);box-shadow:0 4px 20px rgba(0,102,204,.08);}
.df-icon{
  width:64px;height:64px;flex-shrink:0;
  background:var(--off);border:1.5px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;color:var(--sky);
}
.df-icon img{width:100%;height:100%;object-fit:contain;}
.df-title{font-family:'Noto Sans JP',sans-serif;font-size:17px;font-weight:700;color:var(--navy);margin-bottom:8px;}
.df-desc{font-size:14px;color:#333;line-height:1.8;}

/* ===== REASONS / STRENGTHS ===== */
.reasons{background:var(--off);padding:96px 48px;}
.reasons-inner{max-width:1352px;margin:0 auto;}
.reasons-layout{
  display:grid;grid-template-columns:2fr 3fr;gap:3px;align-items:stretch;
}
.reasons-left{
  display:flex;flex-direction:column;
  padding:0 48px 0 0;
}
.reasons-left .sec-eyebrow{margin-bottom:8px;}
.reasons-main-title{
  font-size:clamp(22px,2.6vw,36px) !important;
  line-height:1.35 !important;
  margin-bottom:auto;
  padding-bottom:28px;
  white-space:nowrap;
}
.reasons-photo-main{
  position:relative;overflow:hidden;flex:0 0 425px;
  border-radius:12px;
}
.reasons-photo-main .photo{
  position:absolute;inset:0;height:100%;
  background-size:cover;background-position:center center;
  transition:transform .6s;
}
.reasons-photo-main:hover .photo{transform:scale(1.03);}
.reasons-photo-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(13,34,64,.8) 0%, rgba(13,34,64,.2) 45%, transparent 70%);
  padding:32px;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.reasons-eyebrow-inv{color:rgba(255,255,255,.7) !important;}
.reasons-eyebrow-inv::before{background:rgba(255,255,255,.7) !important;}
.reasons-photo-title{
  font-family:'Noto Sans JP',sans-serif;font-weight:700;
  font-size:clamp(28px,3vw,42px);color:#fff;
  line-height:1.3;letter-spacing:-.01em;white-space:nowrap;
}
.reasons-stats{
  display:flex;gap:32px;
}
.rs-stat{display:flex;flex-direction:column;gap:4px;}
.rs-num{
  font-family:'DM Sans',sans-serif;font-size:40px;font-weight:700;
  color:#fff;line-height:1;letter-spacing:-.02em;
}
.rs-num span{font-size:22px;color:var(--sky-l);font-weight:700;}
.rs-lbl{font-size:11px;color:rgba(255,255,255,.6);letter-spacing:.04em;white-space:nowrap;}
.reason-cards{
  display:flex;flex-direction:column;gap:3px;align-self:stretch;
}
.reason-card{
  display:flex;align-items:flex-start;gap:20px;
  padding:28px 32px;flex:1;
  background:var(--white);border:1px solid var(--line);
  transition:all .25s;
}
.reason-card:hover{
  border-color:var(--blue);
  background:var(--white);
  box-shadow:0 4px 20px rgba(0,102,204,.08);
}
.rc-num{
  font-family:'DM Sans',sans-serif;font-size:13px;font-weight:700;
  color:var(--blue);letter-spacing:.08em;flex-shrink:0;
  padding-top:3px;min-width:28px;
}
.rc-title{
  font-family:'Noto Sans JP',sans-serif;font-size:17px;font-weight:700;
  color:var(--navy);margin-bottom:8px;line-height:1.45;
}
.rc-desc{
  font-size:14px;color:#333;line-height:1.8;
}

/* strengths appeal banner */
.strengths-appeal{
  margin-top:52px;
  margin-bottom:0;
  background:var(--navy);
  padding:40px 52px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
}
.strengths-appeal-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--sky);margin-bottom:8px;
  display:flex;align-items:center;gap:8px;
}
.strengths-appeal-eyebrow::before{content:'';width:20px;height:2px;background:var(--sky);}
.strengths-appeal-heading{
  font-family:'Noto Serif JP',serif;font-weight:700;
  font-size:clamp(18px,2vw,26px);color:#fff;
  line-height:1.4;letter-spacing:-.01em;white-space:nowrap;
}
.strengths-appeal-sub{
  font-size:13px;color:rgba(255,255,255,.75);
  line-height:1.85;margin-top:10px;white-space:nowrap;
}
.strengths-appeal-cta{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--blue);color:#fff;
  padding:16px 32px;font-size:18px;font-weight:700;
  letter-spacing:.08em;text-decoration:none;
  white-space:nowrap;border-radius:4px;transition:all .2s;
}
.strengths-appeal-cta:hover{background:var(--blue-l);transform:translateY(-2px);}

/* ===== COVERAGE / SVC-OVERVIEW ===== */
.svc-overview{background:var(--off);padding:96px 48px;}
.svc-overview-inner{max-width:1352px;margin:0 auto;}
.svc-overview .sec-title-jp{margin-bottom:48px;}
.svc-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:3px;
  margin-top:48px;
}
.svc-card{
  display:flex;flex-direction:column;
  text-decoration:none;
  background:var(--white);border:1px solid var(--line);
  overflow:hidden;transition:all .3s;
}
.svc-card:hover{
  border-color:var(--blue);
  box-shadow:0 8px 32px rgba(0,102,204,.1);
  transform:translateY(-3px);
}
.svc-card-photo{overflow:hidden;flex-shrink:0;}
.svc-card-photo .photo{transition:transform .5s;}
.svc-card:hover .svc-card-photo .photo{transform:scale(1.06);}
.svc-body{padding:20px 20px 24px;flex:1;display:flex;flex-direction:column;}
.sc-num{
  font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--blue);margin-bottom:10px;
}
.sc-title{
  font-family:'Noto Sans JP',sans-serif;font-size:17px;font-weight:700;
  color:var(--navy);line-height:1.45;margin-bottom:12px;
}
.sc-desc{
  font-size:14px;color:#333;line-height:1.8;flex:1;
}

/* phases appeal banner */
.phases-appeal{
  margin-top:24px;
  background:var(--navy);
  padding:40px 52px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
}
.phases-appeal-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--sky);margin-bottom:8px;
  display:flex;align-items:center;gap:8px;
}
.phases-appeal-eyebrow::before{content:'';width:20px;height:2px;background:var(--sky);}
.phases-appeal-heading{
  font-family:'Noto Sans JP',sans-serif;font-weight:700;
  font-size:clamp(18px,2vw,26px);color:#fff;
  line-height:1.4;letter-spacing:-.01em;white-space:nowrap;
}
.phases-appeal-heading em{color:var(--sky);font-style:normal;}
.phases-appeal-sub{
  font-size:13px;color:rgba(255,255,255,.75);
  line-height:1.85;white-space:nowrap;margin-top:10px;
}
.phases-appeal-cta{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--blue);color:#fff;
  padding:16px 32px;font-size:18px;font-weight:700;
  letter-spacing:.08em;text-decoration:none;
  white-space:nowrap;border-radius:4px;transition:all .2s;
}
.phases-appeal-cta:hover{background:var(--blue-l);transform:translateY(-2px);}

/* ===== PHASES ===== */
.phases{background:var(--white);padding:0 48px 96px;}
.phases-inner{max-width:1352px;margin:0 auto;}
/* phase problem cards */
.phase-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;margin-top:52px;}
.phase-card{
  background:var(--white);border:1px solid var(--line);
  overflow:hidden;transition:all .3s;
}
.phase-card:hover{border-color:var(--blue);box-shadow:0 8px 32px rgba(0,102,204,.1);}
.pc-photo{overflow:hidden;}
.pc-photo .photo{transition:transform .5s;}
.phase-card:hover .pc-photo .photo{transform:scale(1.04);}
.pc-phase{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.2em;color:var(--blue);margin-bottom:8px;text-transform:uppercase;
}
.pc-title{font-family:'Noto Serif JP',serif;font-size:23px;font-weight:700;color:var(--navy);margin-bottom:28px;line-height:1.6;}
.pc-problems{list-style:none;margin-bottom:20px;}
.pc-problems li{
  font-size:13px;color:#333;padding:8px 0;
  border-bottom:1px solid var(--line);display:flex;align-items:center;gap:10px;line-height:1.6;
}
.pc-problems li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--blue);flex-shrink:0;opacity:.6;}
.pc-tag{
  font-size:10px;font-weight:700;letter-spacing:.06em;padding:4px 10px;
  border:1px solid var(--line);color:#333;border-radius:20px;
}
.phase-more{
  display:block;text-align:center;padding:16px;
  font-size:12px;font-weight:700;letter-spacing:.08em;
  color:var(--blue);border-top:1px solid var(--line);text-decoration:none;
  transition:all .2s;
}
.phase-more:hover{background:var(--off);}

/* ===== INSPECT ===== */
.inspect{
  position:relative;overflow:hidden;
  min-height:220px;display:flex;align-items:center;
  background:transparent;
}
.inspect-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(90deg,
      rgba(10,79,160,1)    0%,
      rgba(10,79,160,1)   35%,
      rgba(10,79,160,.9) 55%,
      rgba(10,79,160,.8) 75%,
      rgba(10,79,160,.65)  100%
    );
}
.inspect-bg::before{
  content:'';position:absolute;inset:0;z-index:-1;
  background-image:url(/wp/wp-content/uploads/inspect-bg.jpg);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:left center;
  transform:scaleX(-1);
}
.inspect-bg::after{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size:40px 40px;
}
.inspect-inner{
  max-width:1352px;margin:0 auto;width:100%;
  padding:40px 48px;position:relative;z-index:2;
  display:grid;grid-template-columns:1fr auto;gap:80px;align-items:center;
}
.inspect-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--sky);margin-bottom:12px;
}
.inspect h2{
  font-family:'Noto Serif JP',serif;font-weight:700;
  font-size:clamp(26px,3.2vw,42px);color:#fff;
  line-height:1.35;letter-spacing:-.01em;margin-bottom:16px;
}
.inspect h2 em{color:var(--sky);font-style:normal;}
.inspect p{font-size:14px;color:rgba(255,255,255,.75);line-height:1.9;font-family:'Noto Sans JP',sans-serif;white-space:nowrap;}
.btn-sky{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--sky);color:var(--navy);
  padding:16px 40px;font-family:'Noto Sans JP',sans-serif;
  font-size:14px;font-weight:700;letter-spacing:.06em;
  text-decoration:none;transition:all .2s;white-space:nowrap;
}
.btn-sky:hover{background:var(--sky-l);transform:translateY(-2px);}

.inspect-inner{
  max-width:1352px;margin:0 auto;width:100%;
  padding:40px 48px;position:relative;z-index:2;
  display:grid;grid-template-columns:1fr auto;gap:80px;align-items:center;
}
.inspect-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--sky);margin-bottom:12px;
}
.inspect h2{
  font-family:'Noto Serif JP',serif;font-weight:700;
  font-size:clamp(26px,3.2vw,42px);color:#fff;
  line-height:1.35;letter-spacing:-.01em;margin-bottom:16px;
}
.inspect h2 em{color:var(--sky);font-style:normal;}
.inspect p{font-size:14px;color:rgba(255,255,255,.75);line-height:1.9;font-family:'Noto Sans JP',sans-serif;white-space:nowrap;}
.btn-sky{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--sky);color:var(--navy);
  padding:16px 40px;font-family:'Noto Sans JP',sans-serif;
  font-size:14px;font-weight:700;letter-spacing:.06em;
  text-decoration:none;transition:all .2s;white-space:nowrap;
}
.btn-sky:hover{background:var(--sky-l);transform:translateY(-2px);}

.outsourcing-card>a{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

/* ===== COLUMN ===== */
.columns{background:var(--white);padding:96px 48px;}
.col-inner{max-width:1352px;margin:0 auto;}
.col-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:48px;}
.col-btn-row{display:flex;gap:28px;align-items:flex-end;}
.col-btn-outline{font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:500;color:var(--navy);text-decoration:none;letter-spacing:.06em;padding-bottom:4px;border-bottom:1px solid var(--navy);opacity:.7;transition:opacity .2s;white-space:nowrap;}
.col-btn-outline:hover{opacity:1;}
.col-more{font-size:13px;font-weight:600;color:var(--blue);text-decoration:none;letter-spacing:.04em;}
.col-more:hover{text-decoration:underline;}
.col-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;}
.col-card{display:flex;flex-direction:column;text-decoration:none;background:var(--white);border:1px solid var(--line);overflow:hidden;transition:all .3s;}
.col-card:hover{border-color:var(--blue);box-shadow:0 8px 32px rgba(0,102,204,.1);}
.col-photo{aspect-ratio:311/200;min-height:180px;position:relative;overflow:hidden;background-color: var(--off);}
.col-photo .photo{height:100%;transition:transform .5s;}
.col-card:hover .col-photo .photo{transform:scale(1.04);}
.col-badge{
  position:absolute;top:12px;left:12px;
  background:var(--blue);color:#fff;
  font-size:10px;font-weight:700;letter-spacing:.1em;padding:4px 10px;
}
.col-badge-new{
  position:absolute;top:12px;left:12px;
  background:var(--sky);color:var(--navy);
  font-size:10px;font-weight:700;letter-spacing:.1em;padding:4px 10px;
}
.col-body{padding:20px 22px 24px;flex:1;display:flex;flex-direction:column;}
.col-meta{display:flex;align-items:center;gap:12px;margin-bottom:12px;}
.col-date{font-size:11px;color:var(--fade);font-family:'DM Sans',sans-serif;}
.col-cat{
  font-family:'Noto Sans JP',sans-serif;font-size:11px;font-weight:700;
  color:var(--blue);background:rgba(0,102,204,.08);padding:3px 10px;border-radius:20px;
}
.col-title{font-family:'Noto Sans JP',sans-serif;font-size:16px;font-weight:700;color:var(--navy);line-height:1.65;flex:1;margin-bottom:16px;}
.col-excerpt{font-size:14px;color:#333;margin-bottom:16px;line-height:1.8;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:flex;flex-wrap:nowrap;list-style:none;}
.col-excerpt>li{display:inline-block;}
.col-excerpt>li:after{display:inline-block;content:"／";padding:0 3px;}
.col-excerpt>li:last-child:after{display:none;}
.col-author{display:flex;align-items:center;gap:10px;padding-top:14px;border-top:1px solid var(--line);}
.col-author-avatar{width:28px;height:28px;border-radius:50%;background:var(--off2);display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0;}
.col-author-info{display:flex;flex-direction:column;gap:1px;}
.col-author-role{font-size:10px;color:var(--fade);letter-spacing:.04em;}
.col-author-name{font-size:12px;font-weight:700;color:var(--text);}

/* ===== TEAM ===== */
.team{background:var(--off);padding:96px 48px 96px;}
.team-inner{max-width:1352px;margin:0 auto;}
.team-layout{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:3px;margin-top:52px;}
.team-card{background:var(--white);border:1px solid var(--line);overflow:hidden;transition:all .3s;}
.team-card:hover{border-color:var(--blue);box-shadow:0 8px 32px rgba(0,102,204,.1);}
.team-photo{aspect-ratio:724/544;position:relative;overflow:hidden;}
.team-photo .photo{height:100%;transition:transform .5s;}
.team-card:hover .team-photo .photo{transform:scale(1.04);}
.team-body{padding:24px;}
.t-role{font-family:'DM Sans',sans-serif;font-size:12px;font-weight:700;letter-spacing:.1em;color:var(--blue);margin-bottom:6px;text-transform:uppercase;}
.t-name{font-family:'Noto Serif JP',serif;font-size:22px;font-weight:700;color:var(--navy);margin-bottom:10px;}
.t-desc{font-size:14px;color:#333;line-height:1.85;}

/* ===== TEAM APPEAL ===== */
.team-appeal{
  margin-top:52px;
  background:var(--navy);
  padding:40px 52px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
}
.team-appeal-eyebrow{
  font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--sky);margin-bottom:8px;
  display:flex;align-items:center;gap:8px;
}
.team-appeal-eyebrow::before{content:'';width:20px;height:2px;background:var(--sky);}
.team-appeal-heading{
  font-family:'Noto Sans JP',sans-serif;font-weight:700;
  font-size:clamp(18px,2vw,26px);color:#fff;
  line-height:1.4;letter-spacing:-.01em;white-space:nowrap;
}
.team-appeal-sub{
  font-size:13px;color:rgba(255,255,255,.75);
  line-height:1.85;margin-top:10px;white-space:nowrap;
}
.team-appeal-cta{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--blue);color:#fff;
  padding:16px 32px;font-size:18px;font-weight:700;
  letter-spacing:.08em;text-decoration:none;
  white-space:nowrap;border-radius:4px;transition:all .2s;
}
.team-appeal-cta:hover{background:var(--blue-l);transform:translateY(-2px);}

/* ===== OFFICE ===== */
.office{background:var(--white);padding:80px 48px;}
.office-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:1fr 480px;gap:80px;align-items:start;
}
.office-eyebrow{font-family:'DM Sans',sans-serif;font-size:14px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);margin-bottom:10px;display:flex;align-items:center;gap:10px;}
.office-eyebrow::before{content:'';width:24px;height:2px;background:var(--blue);}
.office-eyebrow::before{content:'';width:24px;height:2px;background:var(--blue);}
.office-title{font-family:'Noto Serif JP',serif;font-size:24px;font-weight:700;color:var(--navy);margin-bottom:28px;}
.office-list{list-style:none;border-top:2px solid var(--navy);}
.office-list li{display:flex;gap:24px;padding:14px 0;border-bottom:1px solid var(--line);font-size:14px;font-family:'Noto Sans JP',sans-serif;}
.ol-key{color:var(--fade);font-weight:400;flex-shrink:0;width:80px;}
.ol-val{color:#333;}
.office-right{display:flex;flex-direction:column;gap:20px;}
.office-desc{font-family:'Noto Sans JP',sans-serif;font-size:14px;line-height:2;color:#333;margin-bottom:28px;}
.office-photo{border-radius:8px;overflow:hidden;box-shadow:0 12px 48px rgba(0,50,100,.1);height:220px;}
.office-photo .photo{height:100%;transition:transform .6s;}
.office-photo:hover .photo{transform:scale(1.04);}
.office-map{border-radius:8px;overflow:hidden;box-shadow:0 12px 48px rgba(0,50,100,.1);height:260px;}
.office-map iframe{width:100%;height:100%;border:0;display:block;}

/* ===== CONTACT ===== */


/* ===== PRICING ===== */
.pricing{background:var(--white);padding:96px 0;position:relative;overflow:hidden;width:100%;}
.pricing-grid{display:grid;grid-template-columns:2fr 3fr;min-height:600px;max-width:1352px;margin:0 auto;}
.pricing-photo{position:relative;overflow:hidden;}
.pricing-photo .photo{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transition:transform .6s;
}
.pricing-photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to right, rgba(13,34,64,.7) 0%, rgba(13,34,64,0) 60%);
}
.pricing-photo-badge{
  position:absolute;bottom:40px;left:40px;z-index:2;
  background:var(--blue);padding:16px 24px;
}
.pricing-photo-badge-num{
  font-family:'Bebas Neue',sans-serif;font-size:42px;color:#fff;
  letter-spacing:.04em;line-height:1;
}
.pricing-photo-badge-sub{font-size:11px;color:rgba(255,255,255,.8);letter-spacing:.08em;margin-top:4px;}
.pricing-content{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
  position:relative;background:var(--white);
}
.pricing-content::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:1px;
  background:linear-gradient(to bottom, transparent, rgba(13,34,64,.12), transparent);
}
.pricing-eyebrow{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;color:var(--blue);text-transform:uppercase;margin-bottom:10px;}
.pricing-title{font-family:'Noto Serif JP',serif;font-size:28px;font-weight:700;color:var(--navy);line-height:1.45;margin-bottom:36px;}
.pricing-plans{display:flex;flex-direction:column;gap:0;margin-bottom:36px;}
.pricing-plan{padding:20px 0;border-bottom:1px solid rgba(13,34,64,.1);}
.pricing-plan:first-child{border-top:1px solid rgba(13,34,64,.1);}
.pricing-plan-header{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.pricing-plan-tag{
  font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:700;letter-spacing:.04em;
  text-transform:none;padding:4px 12px;
}
.pricing-plan-tag-base{background:rgba(13,34,64,.08);color:#333;}
.pricing-plan-tag-opt{background:rgba(0,102,204,.12);color:#333;}
.pricing-plan-name{font-family:'Noto Sans JP',sans-serif;font-size:18px;font-weight:700;color:#333;}
.pricing-plan-items{display:flex;flex-wrap:wrap;gap:4px 0;align-items:center;}
.pricing-plan-item{font-size:14px;color:#333;padding:0;position:relative;}
.pricing-plan-item::before{content:' ／ ';color:var(--fade);font-size:13px;} .pricing-plan-item:first-child::before{content:'';}
.pricing-note-bar{
  background:#fff;border-left:2px solid var(--blue);
  padding:16px 20px;margin-bottom:32px;
}
.pricing-note-bar p{font-size:16px;color:#333;line-height:1.75;margin:0;}
.pricing-note-bar strong{color:#333;font-weight:700;}
.pricing-cta-row{display:flex;align-items:center;justify-content:space-between;gap:24px;}
.pricing-from{display:flex;align-items:baseline;gap:4px;}
.pricing-from-num{font-family:'Bebas Neue',sans-serif;font-size:38px;color:var(--navy);letter-spacing:.04em;line-height:1;}
.pricing-from-unit{font-size:13px;color:#333;}
.pricing-from-note{font-size:11px;color:var(--fade);margin-top:4px;letter-spacing:.02em;}

.contact{background:var(--navy);padding:96px 48px;}
.contact-inner{
  max-width:1352px;margin:0 auto;
  display:grid;grid-template-columns:1fr 560px;gap:80px;align-items:center;
}
.contact-eyebrow{font-family:'DM Sans',sans-serif;font-size:14px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);margin-bottom:14px;display:flex;align-items:center;gap:10px;}
.contact-eyebrow::before{content:'';width:24px;height:2px;background:var(--blue);}
.contact h2{font-family:'Noto Sans JP',sans-serif;font-size:clamp(24px,3vw,40px);font-weight:700;color:#fff;margin-bottom:16px;}
.contact p{font-size:14px;color:rgba(255,255,255,.6);line-height:1.9;font-family:'Noto Sans JP',sans-serif;}
.contact-right{display:flex;flex-direction:column;gap:12px;}
.contact-tel{
  display:flex;align-items:center;gap:20px;padding:32px 40px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  text-decoration:none;transition:all .2s;
}
.contact-tel:hover{background:rgba(255,255,255,.1);}
.contact-tel-label{font-size:11px;font-weight:700;letter-spacing:.16em;color:var(--sky);margin-bottom:6px;text-transform:uppercase;font-family:'Noto Sans JP',sans-serif;}
.contact-tel-num{font-family:'DM Sans',sans-serif;font-size:36px;font-weight:700;color:#fff;letter-spacing:.04em;}
.contact-tel-sub{font-size:12px;color:rgba(255,255,255,.4);margin-top:4px;font-family:'Noto Sans JP',sans-serif;}
.contact-mail{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:24px 40px;background:var(--blue);color:#fff;
  text-decoration:none;font-size:16px;font-weight:700;letter-spacing:.06em;
  font-family:'Noto Sans JP',sans-serif;
  transition:all .2s;
}
.contact-mail:hover{background:var(--blue-l);}

/* ===== FOOTER ===== */
footer{background:#07131F;padding:64px 48px 32px;}
.footer-inner{max-width:1352px;margin:0 auto;}
.footer-top{display:grid;grid-template-columns:220px 1fr;gap:80px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.08);}
.f-logo{display:flex;align-items:center;gap:12px;text-decoration:none;margin-bottom:12px;}
.f-copy{font-size:11px;color:rgba(255,255,255,.35);line-height:1.9;letter-spacing:.04em;}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.fl-group h4{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:16px;}
.fl-group a{display:block;font-size:12px;color:rgba(255,255,255,.5);text-decoration:none;margin-bottom:10px;transition:color .2s;letter-spacing:.04em;}
.fl-group a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;}
.footer-bottom span{font-size:11px;color:rgba(255,255,255,.35);letter-spacing:.04em;}
.f-copy-text{font-size:11px;color:rgba(255,255,255,.25);letter-spacing:.06em;}

/* =====================================================================
   CONSOLIDATED — 旧インラインstyleをCSSへ集約
   ===================================================================== */
/* HERO タイトル微調整 */
h1.hero-title .ht-no{margin:0 .04em 0 .1em;}
h1.hero-title .ht-flat{letter-spacing:0;margin:0;}
h1.hero-title .ht-ga{margin:0 .1em 0 .18em;}
h1.hero-title .ht-mamoru{font-size:60px;}
h1.hero-title .ht-ru{font-size:52px;}
h1.hero-title .ht-shimasu{font-size:50px;}
.note-home{font-size:12px;opacity:.75;}

/* 画像（背景）：要素ごとの画像指定 */
.ph-prob1{background-image:url(/wp/wp-content/uploads/problems01.jpg);background-position:center center;}
.ph-prob2{background-image:url(/wp/wp-content/uploads/problems02.jpg);background-position:center center;}
.ph-prob3{background-image:url(/wp/wp-content/uploads/problems03.jpg);background-position:center center;}
.ph-reasons1{background-image:url(/wp/wp-content/uploads/reasons01.jpg);background-size:cover;background-position:center top;}
.ph-reasons2{background-image:url(/wp/wp-content/uploads/reasons02.jpg);background-size:cover;background-position:center center;}
.ph-reasons3{background-image:url(/wp/wp-content/uploads/reasons03.jpg);background-size:cover;background-position:center center;}
.ph-consult1{background-image:url(/wp/wp-content/uploads/consulting01.jpg);background-size:cover;background-position:center center;}
.ph-consult2{background-image:url(/wp/wp-content/uploads/consulting02.jpg);background-size:cover;background-position:center center;}
.ph-group{background-image:url(/wp/wp-content/uploads/group-sharoushi.jpg);background-size:cover;background-position:center center;border:1px solid #EEE;}
.ph-col1{background-image:url(/wp/wp-content/uploads/column01.jpg);background-size:cover;background-position:center center;}
.ph-col2{background-image:url(/wp/wp-content/uploads/column02.png);background-size:cover;background-position:center center;}
.ph-col3{background-image:url(/wp/wp-content/uploads/column03.png);background-size:cover;background-position:center center;}
.ph-team-abe{background-image:url(/wp/wp-content/uploads/team-abe.png);background-size:cover;background-position:center top;}
.ph-team-tsuchiya{background-image:url(/wp/wp-content/uploads/team-tsuchiya.png);background-size:cover;background-position:center top;}
.ph-team-isoda{background-image:url(/wp/wp-content/uploads/team-isoda.png);background-size:cover;background-position:center top;}
.ph-team-ueda{background-image:url(/wp/wp-content/uploads/team-ueda.png);background-size:cover;background-position:center top;}
.ph-office{background-image:url(/wp/wp-content/uploads/office-photo.png);background-size:cover;background-position:center center;}

/* INTRO ブリッジ＋解決力カード */
.intro-bridge{padding-top:52px;margin-bottom:44px;text-align:center;}
.intro-bridge-title{font-family:'Noto Serif JP',serif;font-size:32px;font-weight:700;color:var(--navy);line-height:1.7;letter-spacing:.06em;}
.intro-bridge-em{color:var(--blue);font-size:42px;}
.solve-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.solve-card{background:var(--white);border:2px solid var(--line);border-top:5px solid var(--blue);display:flex;flex-direction:column;}
.solve-card-inner{padding:28px 32px 32px;flex:1;display:flex;flex-direction:column;}
.solve-label{font-family:'DM Sans',sans-serif;font-size:14px;font-weight:700;letter-spacing:.18em;color:var(--blue);margin-bottom:14px;display:flex;align-items:center;gap:8px;}
.solve-title{font-family:'Noto Serif JP',serif;font-size:24px;font-weight:700;color:var(--navy);line-height:1.55;letter-spacing:.02em;margin-bottom:18px;}
.solve-list{list-style:none;margin:0;padding:0;flex:1;display:flex;flex-direction:column;gap:10px;}
.solve-list li{display:flex;align-items:flex-start;gap:12px;font-size:17px;font-weight:500;color:#222;line-height:1.55;}
.solve-check{color:#F5A623;font-size:18px;flex-shrink:0;position:relative;top:4px;}
.solve-tags{margin-top:22px;display:flex;gap:6px;flex-wrap:wrap;align-items:center;}
.solve-note{margin-top:8px;font-size:12px;color:#555;}

/* SERVICE カード共通タグライン */
.oc-tagline{font-style:normal;font-weight:400;font-size:14px;position:relative;top:-2px;}
.oc-tagline-check{color:var(--sky);margin-right:4px;}

/* SERVICE セクション背景バリエーション */
.svc-section--off{background:var(--off);}
.svc-section.svc-section--off-flush{background:var(--off);padding-top:0;}
.svc-section--white{background:var(--white);}

/* WHY ASCOPE カード */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-bottom:48px;}
.why-card{background:var(--white);border:2px solid var(--line);border-top:5px solid var(--blue);padding:36px 32px;display:flex;flex-direction:column;}
.why-card-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;}
.why-num{font-family:'Bebas Neue',sans-serif;font-size:48px;font-weight:400;color:var(--sky);line-height:1;letter-spacing:.04em;}
.why-icon{font-size:32px;color:var(--blue);opacity:.85;}
.why-title{font-family:'Noto Serif JP',serif;font-size:22px;font-weight:700;color:#333;line-height:1.55;letter-spacing:.02em;margin:0 0 18px;}
.why-desc{font-family:'Noto Sans JP',sans-serif;font-size:15px;font-weight:400;color:#333;line-height:1.85;letter-spacing:.02em;margin:0;flex:1;}
.why-note{margin-top:14px;font-size:12px;color:#555;}

/* PRICING / PLAN */
.plan-block{margin-top:32px;}
.plan-intro{font-family:'Noto Sans JP',sans-serif;font-size:15px;font-weight:400;color:#333;line-height:1.75;margin:0 0 24px;}
.plan-table-wrap{background:var(--white);border:1px solid var(--line);overflow:hidden;}
.plan-table{width:100%;border-collapse:collapse;font-family:'Noto Sans JP',sans-serif;}
.plan-table thead tr{background:var(--navy);color:#fff;}
.plan-table th{padding:18px 24px;font-size:15px;font-weight:600;letter-spacing:.04em;}
.plan-table th:first-child{text-align:left;width:34%;}
.plan-table th:not(:first-child){text-align:right;width:33%;}
.plan-table tbody tr{border-top:1px solid var(--line);}
.plan-table tbody tr:nth-child(even){background:#fafbfc;}
.plan-table td{padding:22px 24px;font-weight:600;}
.plan-table td:first-child{font-size:17px;color:#333;}
.plan-table td:not(:first-child){font-size:18px;color:#222;text-align:right;}
.plan-notes{list-style:none;margin:18px 0 0;padding:0;font-family:'Noto Sans JP',sans-serif;font-size:13px;color:#666;line-height:1.8;}
.pricing-unit{font-size:16px;font-weight:500;color:#666;margin-left:12px;letter-spacing:.02em;}
.plan-scroll-hint{display:none;}

/* OUTSOURCING 写真：先頭を横2マス分に */
.outsourcing-photos .outsourcing-photo-wrap:first-child{grid-column:span 2;}

/* TEAM 注記 */
.team-note{font-size:12px;color:#888;font-family:'Noto Sans JP',sans-serif;margin-top:8px;}

/* FOOTER ロゴ画像 */
.f-logo-img{height:40px;width:auto;}

/* ユーティリティ（余白・サイズの個別調整） */
.u-mt48{margin-top:48px;}
.u-mb64{margin-bottom:64px !important;}
.u-fs32{font-size:32px;}

.ascp-sv__lab_top {
margin-top:30px;	
}
/* =====================================================================
   RESPONSIVE  —  TABLET (≤1024px) / SP (≤767px)
   PCデザインを基準に、タブレット・スマートフォンでの表示を最適化
   ===================================================================== */

/* ハンバーガーメニュー（PCでは非表示） */
.nav-toggle{display:none;}
.nav-overlay{display:none;}
.nav-home{display:none;}  /* PCナビでは非表示（ロゴがHOMEリンク） */
/* SP専用改行（PC・タブレットでは無効） */
.sp-br{display:none;}
/* スキップリンク（アクセシビリティ） */
.skip-link{position:absolute;left:8px;top:-56px;z-index:400;background:var(--navy);color:#fff;padding:10px 18px;font-size:14px;font-weight:700;text-decoration:none;transition:top .2s;}
.skip-link:focus{top:0;}

/* ===================== TABLET (≤1024px) ===================== */
@media (max-width:1024px){

  /* --- 共通：左右paddingを圧縮 --- */
  .intro,.outsourcing-section,.svc-section,.columns,.team,.office,.contact,
  .reasons,.phases,.svc-overview,.dx-feature{padding-left:32px;padding-right:32px;}
  header{padding:0 24px;}
  .id-band{padding:18px 32px;}

  /* --- ヘッダー：ハンバーガーメニューに切替 --- */
  .nav-toggle{
    display:flex;flex-direction:column;justify-content:center;gap:6px;
    width:46px;height:46px;padding:0;border:none;background:transparent;
    cursor:pointer;position:relative;z-index:3;
  }
  .nav-toggle span{
    display:block;width:26px;height:2px;margin:0 auto;
    background:var(--navy);border-radius:2px;
    transition:transform .3s ease,opacity .25s ease;
  }
  body.nav-open .nav-toggle span:nth-child(1){transform:translateY(8px) rotate(45deg);}
  body.nav-open .nav-toggle span:nth-child(2){opacity:0;}
  body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

  nav{
    position:fixed;top:0;right:0;z-index:2;
    height:100vh;height:100dvh;
    width:min(84vw,340px);
    background:#fff;
    flex-direction:column;align-items:stretch;justify-content:flex-start;
    gap:0;padding:96px 28px 48px;
    box-shadow:none;
    transform:translateX(100%);
    transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
    overflow-y:auto;overscroll-behavior:contain;
  }
  body.nav-open nav{transform:translateX(0);box-shadow:-14px 0 44px rgba(13,34,64,.14);}
  nav a:not(.nav-cta):not(.nav-tel-num){
    width:100%;font-size:16px;padding:16px 4px;
    border-bottom:1px solid var(--line);
  }
  .nav-tel{
    flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:4px;
    border-left:none;padding-left:0;margin-left:0;
    margin-top:24px;padding-top:20px;width:100%;
  }
  .nav-tel-num{font-size:32px;text-align:left;}
  .nav-tel-sub{font-size:12px;text-align:left;letter-spacing:.02em;}
  .nav-cta{margin-top:24px;width:100%;padding:16px 24px 18px;font-size:17px !important;}

  .nav-overlay{
    display:block;position:fixed;inset:0;z-index:1;
    background:rgba(13,34,64,.45);
    opacity:0;visibility:hidden;
    transition:opacity .35s ease,visibility .35s ease;
  }
  body.nav-open .nav-overlay{opacity:1;visibility:visible;}
  .nav-home{display:block;}  /* ドロワー内では表示 */
  body.nav-open{overflow:hidden;}

  /* --- HERO：絶対配置から通常フローへ --- */
  .hero{height:auto;min-height:540px;}
  .hero-photo{background-size:cover;}
  .hero-content{position:relative;padding:0 32px;}
  .hero-top{padding-top:128px;}
  .hero-bottom{padding:28px 0 44px;}
  h1.hero-title{font-size:40px;line-height:1.4;}
  h1.hero-title em,h1.hero-title .em{font-size:1.05em;}
  h1.hero-title span[style*="font-size"],
  h1.hero-title .ht-mamoru,h1.hero-title .ht-ru,h1.hero-title .ht-shimasu{font-size:1em !important;}
  h1.hero-title .p,h1.hero-title .pm{font-size:.82em !important;}

  /* --- セクション見出し --- */
  .sec-title-en{font-size:60px;}

  /* --- INTRO 解決力カード --- */
  .why-grid{gap:20px !important;}

  /* --- アピールバナー：折返し許可 --- */
  .appeal-banner{gap:28px;padding:32px 36px;}
  .appeal-heading{white-space:normal;font-size:23px;}
  .appeal-sub{white-space:normal;}

  /* --- SERVICE 01：アウトソーシング --- */
  .outsourcing-layout{grid-template-columns:1fr;gap:24px;}
  .outsourcing-left{padding:0;}
  .outsourcing-photos{height:auto;grid-template-rows:220px 220px;}

  /* --- SERVICE 02：コンサルティング --- */
  .consulting-card{grid-template-columns:1fr;}
  .consulting-photo{min-height:240px;}

  /* --- SERVICE 03：グループ連携 --- */
  .group-layout{grid-template-columns:1fr;}
  .group-photo{min-height:320px;}

  /* --- 臨検対応バナー --- */
  .inspect-inner{grid-template-columns:1fr;gap:28px;padding:48px 32px;}
  .inspect p{white-space:normal;}
  .inspect-bg::before{background-size:cover;opacity:.55;}

  /* --- COLUMN / TEAM --- */
  .col-grid{grid-template-columns:1fr 1fr;}
  .team-layout{grid-template-columns:1fr 1fr;gap:16px;}

  /* --- OFFICE / CONTACT --- */
  .office-inner{grid-template-columns:1fr;gap:48px;}
  .contact-inner{grid-template-columns:1fr;gap:40px;}

  /* --- FOOTER --- */
  .footer-top{grid-template-columns:1fr;gap:32px;}
}

/* ===================== SP (≤767px) ===================== */
@media (max-width:767px){

  /* --- 共通：余白をさらに圧縮 --- */
  .intro,.outsourcing-section,.svc-section,.columns,.team,.office,.contact,
  .reasons,.phases,.svc-overview,.dx-feature{padding-left:20px;padding-right:20px;}
  .intro,.columns,.team,.svc-section,.outsourcing-section{padding-top:56px;padding-bottom:56px;}
  header{padding:0 18px;}

  /* --- ヘッダー：ロゴ縮小 --- */
  .logo-img{height:48px;}

  /* --- HERO（SP専用画像。写真を上部に全体表示し、下部グラデの暗部にテキストを配置） --- */
  .hero{height:auto;min-height:0;background:#07203F;}
  .hero-photo{
    background-image:
      linear-gradient(to bottom,
        rgba(7,32,63,0) 0,
        rgba(7,32,63,0) 280px,
        rgba(7,32,63,.3) 312px,
        rgba(7,32,63,.88) 340px,
        #07203F 364px),
		url('/wp/wp-content/uploads/hero-sp-blue.jpg');
    background-size:auto, 100% auto;
    background-position:top, top center;
    background-repeat:no-repeat, no-repeat;
    background-color:#07203F;
  }
  .hero-content{position:relative;padding:0 20px;}
  .hero-top{padding-top:230px;}
  .hero-bottom{padding:18px 0 40px;}
  h1.hero-title{font-size:26px;line-height:1.55;letter-spacing:.02em;}
  h1.hero-title .ht-mamoru,h1.hero-title .ht-ru,h1.hero-title .ht-shimasu{font-size:1em !important;}
  h1.hero-title .p,h1.hero-title .pm{font-size:.84em !important;}
  .hero-body{font-size:14px;line-height:1.8;}
  .hero-body br{display:none;}
  .hero-row{flex-direction:column;align-items:flex-start;gap:18px;}
  .hero-chips{gap:6px;}
  .chip{font-size:11px;padding:5px 11px;}
  .hero-btns{width:100%;}
  .btn-red{width:100%;justify-content:center;padding:16px 24px;font-size:15px;}
	@media (max-width:360px){
	h1.hero-title{font-size:23px;}
	}

  /* --- IDバンド --- */
  .id-band{padding:20px;}
  .id-band-inner{flex-direction:column;align-items:flex-start;gap:14px;padding:0;}
  .id-band-line{width:40px;height:3px;}
  .id-band-body{flex-direction:column;align-items:flex-start;gap:12px;}
  .id-band-label{font-size:16px;white-space:normal;}
  .id-band-text{border-left:none;padding-left:0;font-size:14px;}

  /* --- セクション見出し --- */
  .sec-title-en{font-size:40px;}
  .sec-title-jp{font-size:24px !important;line-height:1.5;margin-bottom:25px;}
  .sec-desc{font-size:15px;}
  .svc-title-row{gap:14px;margin-bottom:32px;}
  .svc-badge{min-width:80px;padding:10px 14px;}
  .svc-badge-num{font-size:28px;}
  .svc-sublabel{font-size:12px;}
  .svc-mainlabel{font-size:23px;line-height:1.35;}
  .intro-head {margin-bottom: 32px;}
  .u-mb64 {margin-bottom: 25px !important;}
  .solve-title {font-size:26px;}

  /* --- INTRO お悩み・解決力カード --- */
  .sp-br{display:inline;}
  .prob-cards{grid-template-columns:1fr;gap:20px;border:none;}
  .prob-card{border:2px solid var(--line);}
  .pc-photo{height:240px;}
  .intro-bridge-title{font-size:21px !important;line-height:1.6 !important;}
  .intro-bridge-title span{font-size:27px !important;}
  .solve-cards{grid-template-columns:1fr !important;gap:16px !important;}
  .why-grid{grid-template-columns:1fr !important;gap:16px !important;}
  .pc-body{padding:20px 10px;}
  .solve-card-inner{padding:22px 20px 24px;}
  .pc-heading{left:18px;right:18px;bottom:20px;}
  .pc-voice-hook li {font-size:16px;}

  /* --- アピールバナー：縦積み＋ボタン全幅 --- */
  .appeal-banner{grid-template-columns:1fr;gap:22px;padding:28px 22px;}
  .appeal-heading{font-size:19px;}
  .appeal-sub{font-size:13px;}
  .appeal-cta-btn{width:100%;justify-content:center;padding:16px 24px;font-size:16px;}

  /* --- SERVICE 01：アウトソーシング（1枚目=1行目を1.5倍に） --- */
  .outsourcing-photos{grid-template-rows:240px 160px;gap:4px;}
  .outsourcing-card{padding:22px 22px 28px;gap:12px;}
  .outsourcing-card-num{font-size:20px;min-width:26px;}
  .outsourcing-card-title{font-size:19px;line-height:1.5;}
  .outsourcing-card-title em{display:block;margin-top:4px;top:0 !important;text-indent:-0.5em;}
  .outsourcing-card-desc{font-size:15px;}
  .outsourcing-card-desc br{display:none;}

  /* --- SERVICE 02：コンサルティング --- */
  .consulting-photo{min-height:200px;}
  .consulting-body{padding:24px 24px;}
  .consulting-title{font-size:20px;}
  .consulting-desc{font-size:15px;}
  .consulting-desc br{display:none;}

  /* --- SERVICE 03：グループ連携（画像を1.5倍に） --- */
  .group-photo{min-height:330px;}
  .group-expert-card{padding:26px 22px;}
  .group-expert-title{font-size:20px;}
  .group-expert-body{font-size:15px;}
  .group-connector{padding:16px 18px;gap:12px;}
  .group-connector-label{font-size:14px;padding-left:6px;}
  .group-connector-label::before{font-size:20px;}

  /* --- 臨検対応バナー --- */
  .inspect{min-height:auto;}
  .inspect-inner{padding:48px 20px;gap:24px;}
  .inspect h2{font-size:24px;}
  .inspect p br{display:none;}
  .btn-sky{width:100%;}
  /* 写真（::before）をSP用に調整 */
  .inspect-bg::before{
    background-size:auto 120%;
    background-position:center left -220px;
    transform:none;       /* 反転を解除し、右寄せと整合 */
    opacity:1;            /* ::before側では薄めず、グラデで薄める */
  }
  /* グラデーションの右端を透過させて写真を覗かせる */

  /* --- WHY ASCOPE カード（番号＋アイコン行）--- */
  .why-grid > div{padding:28px 24px !important;}

  /* --- PRICING：料金表は横スクロール --- */
  /*.plan-table-wrap{overflow:auto !important;-webkit-overflow-scrolling:touch;}
  .plan-table-wrap table{min-width:520px;}*/
  .plan-scroll-hint{
    display:flex;align-items:center;gap:6px;
    font-size:12px;color:var(--blue);font-weight:500;
    margin:0 0 8px;
  }
  .plan-scroll-hint i{font-size:13px;}
  /* --- PRICING：横スクロールをやめて画面内に収める --- */
  .plan-table{table-layout:fixed;}
  .plan-table th{
    padding:12px 6px;
    font-size:11px;
    letter-spacing:0;
    line-height:1.45;   /* ヘッダーは折り返し前提 */
  }
  .plan-table th:first-child{width:30%;text-align:center;}      /* left → center */
  .plan-table th:not(:first-child){width:35%;text-align:center;} /* right → center */
  .plan-table td{padding:14px 6px;white-space:nowrap;}  /* 金額を改行させない */
  .plan-table td:first-child{font-size:13px;white-space:normal;text-align:center;}
  .plan-table td:not(:first-child){font-size:13px;}

  /* --- COLUMN --- */
  .col-header{flex-direction:column;align-items:flex-start;gap:18px;margin-bottom:20px;}
  .col-grid{grid-template-columns:1fr;}
  .col-btn-row{align-items:flex-start;gap:20px;flex-wrap: wrap;line-height: 100%;}

  /* --- TEAM --- */
  .team-layout{grid-template-columns:1fr;}
	.team-card .card-more{margin-top:10px;}

  /* --- OFFICE --- */
  .office{padding:56px 20px;}
  .office-photo{height:200px;}
  .office-list li{flex-direction:column;gap:4px;padding:12px 0;}
  .ol-key{width:auto;}
  .office-map{height:220px;}

  /* --- CONTACT --- */
  .contact{padding:56px 20px;}
  .contact-tel{padding:24px 22px;gap:16px;}
  .contact-tel-num{font-size:30px;}
  .contact-mail{padding:22px 24px;font-size:15px;}

  /* --- FOOTER --- */
  footer{padding:48px 20px 28px;}
  .footer-links{grid-template-columns:1fr 1fr;gap:24px;}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
	
  .svc-detail-events-label{
    width:100%;
    padding-right:0;
    margin-right:0;
    border-right:none;
  }
}

.scroll-hidden {
  opacity: 1 !important;
  transform: none !important;
}

/* カード内「詳しくはこちら」リンク表記（共通） */
.card-more{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:5px;margin-left:7px;
  font-size:12px;font-weight:700;color:var(--blue);
  letter-spacing:.04em;
}
.outsourcing-card .card-more{margin-top:20px;}
.card-more i{font-size:11px;transition:transform .2s;}
.team-card .card-more{display:flex;justify-content:flex-end;align-items:center;gap:6px;}
/* カードにホバーで矢印が少し進む（任意の演出） */
.outsourcing-card:hover .card-more i,
.consulting-card:hover .card-more i,
.team-card:hover .card-more i{transform:translateX(4px);}

/* リンクありのチップにだけ矢印 */
.hero-chips a .chip::after{
  content:'→';
  margin-left:6px;
  font-size:.9em;
  transition:transform .2s;
}
.hero-chips a:hover .chip::after{transform:translateX(2px);}  /* ホバーで少し進む（任意） */

/* リンクありのタグにだけ矢印 */
.group-expert-tags a li::after{
  content:'→';
  margin-left:6px;
  font-size:.9em;
  transition:transform .2s;
}
.group-expert-tags a:hover li::after{transform:translateX(2px);}

/* ===== FOOTER 可読性＆リンク識別性の改善 ===== */
/* 非リンク（住所・コピーライト・見出しラベル）：やや明るく */
.f-copy{color:rgba(255,255,255,.5);}
.footer-bottom span{color:rgba(255,255,255,.5);}
.fl-group h4{color:rgba(255,255,255,.45);}

/* リンク：はっきり明るく＋ホバーで下線（押せる感） */
.fl-group a{color:rgba(255,255,255,.82);}
.fl-group a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px;}


/* SP版だけ改行を消す（PC・タブレットでは改行する） */
@media (max-width:767px){
  .pc-br{display:none;}
}
/* 360px以下でだけ改行する */
.xs-br{display:none;}
@media (max-width:360px){
  .xs-br{display:inline;}
}

/*セミナー・コラムSP*/
@media screen and (max-width: 640px) {
  .ascp-sv__cmn_article-list-photo {
    height: 40.25vw;
  }
}

/* ===== バナー全体をクリック可能に（浮き上がり効果は維持） ===== */

/* CTAバナー */
.appeal-banner{text-decoration:none;color:inherit;cursor:pointer;}
.appeal-banner:hover .appeal-cta-btn{
  background:var(--blue-l);
  transform:translateY(-2px);   /* ← ふわっと浮く効果を維持 */
}

/* 臨検対応バナー */
.inspect-inner{text-decoration:none;color:inherit;}
.inspect{cursor:pointer;}
.inspect:hover .btn-sky{
  background:var(--sky-l);
  transform:translateY(-2px);
}

/* ===== ページトップへ戻る（PC・SP共通） ===== */
.page-top{
  position:fixed;right:24px;bottom:28px;z-index:160;
  width:56px;height:56px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;
  background:var(--sky);          /* navy → sky */
  color:var(--navy);              /* #fff → navy（スカイ地でも読める） */
  border:none;border-radius:50%;cursor:pointer;
  box-shadow:0 4px 16px rgba(13,34,64,.3);
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .3s,visibility .3s,transform .3s,background .2s;
}
.page-top.is-visible{opacity:1;visibility:visible;transform:translateY(0);}
.page-top:hover{background:var(--sky-l);}   /* blue → sky-l（スカイ系で統一） */
.page-top i{font-size:16px;line-height:1;}
.page-top span{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.1em;}

/* ===== SP固定フッター（SPのみ） ===== */
.sp-fixed-footer{display:none;}

@media (max-width:767px){
  .sp-fixed-footer{
    display:grid;grid-template-columns:1fr 1fr;
    position:fixed;left:0;right:0;bottom:0;z-index:150;
    background:#fff;box-shadow:0 -4px 20px rgba(13,34,64,.12);
  }
  .sff-btn{
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    padding:9px 8px;text-decoration:none;text-align:center;line-height:1.1;
  }
  .sff-btn i{font-size:15px;margin-bottom:2px;}
  .sff-main{font-family:'DM Sans',sans-serif;font-size:17px;font-weight:700;}
  .sff-sub{font-size:10px;margin-top:1px;}
  .sff-tel{color:var(--navy);}
  .sff-tel i{color:var(--blue);}
  .sff-tel .sff-sub{color:var(--fade);}
  .sff-mail{background:var(--blue);color:#fff;}
  .sff-mail .sff-sub{color:rgba(255,255,255,.85);}

  /* 固定フッター分の余白（実フッターが隠れないように） */
  body{padding-bottom:60px;}
  /* TOPボタンは固定フッターの上に逃がす */
  .page-top{right:16px;bottom:72px;width:48px;height:48px;}
}