/* ================================
   RESET / ROOT
================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --main-color:#970013;
  --main-dark:#69000d;
  --main-soft:#c40f27;
  --text-color:#111;
  --sub-text:#555;
  --bg-base:#f6f6f6;
  --bg-light:#f5f5f5;
  --white:#fff;
  --black:#1f1f1f;
  --header-height:72px;
  --shadow:0 10px 24px rgba(0,0,0,0.08);
  --radius:16px;
}

/* ================================
   BASE
================================ */
html{
  scroll-behavior:smooth;
}

body{
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:var(--bg-base);
  color:var(--text-color);
  line-height:1.75;
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
  background:none;
  border:none;
  cursor:pointer;
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* ================================
   COMMON SECTION
================================ */
.section{
  position:relative;
  padding:110px 0;
  overflow:hidden;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
}

.mini-title{
  font-size:12px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--main-color);
  margin-bottom:12px;
}

.section-title{
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.25;
  font-weight:900;
  margin-bottom:16px;
}

.section-lead{
  font-size:16px;
  color:var(--sub-text);
  max-width:720px;
  line-height:1.9;
}

.section-number{
  position:absolute;
  top:30px;
  right:40px;
  font-size:120px;
  line-height:1;
  font-weight:900;
  color:rgba(0,0,0,0.05);
  letter-spacing:-0.04em;
  pointer-events:none;
  user-select:none;
  z-index:1;
}

/* ================================
   HEADER / NAV
================================ */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:var(--header-height);
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  z-index:1000;
}

.header-inner{
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.logo img{
  height:150px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:22px;
  font-size:14px;
  margin-left:auto;
}

.nav a{
  position:relative;
  transition:.3s;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--main-color);
  transition:.3s;
}

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

.nav a:hover::after{
  width:100%;
}

.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:var(--main-color);
  color:var(--white);
  font-size:14px;
  font-weight:700;
  transition:.3s;
}

.header-cta:hover{
  opacity:.88;
  transform:translateY(-1px);
}

/* ================================
   MOBILE MENU
================================ */
.hamburger{
  display:none;
  width:44px;
  height:44px;
  position:relative;
  z-index:1100;
}

.hamburger span{
  position:absolute;
  left:10px;
  width:24px;
  height:2px;
  background:var(--black);
  transition:.3s ease;
}

.hamburger span:nth-child(1){ top:14px; }
.hamburger span:nth-child(2){ top:21px; }
.hamburger span:nth-child(3){ top:28px; }

.hamburger.active span:nth-child(1){
  top:21px;
  transform:rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  top:21px;
  transform:rotate(-45deg);
}

.mobile-menu{
  position:fixed;
  top:var(--header-height);
  left:0;
  width:100%;
  height:calc(100vh - var(--header-height));
  background:rgba(17,17,17,0.96);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:.3s ease;
  z-index:999;
}

.mobile-menu.active{
  opacity:1;
  pointer-events:auto;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

.mobile-nav a{
  color:var(--white);
  font-size:22px;
  font-weight:700;
}

.mobile-nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:var(--main-color);
  color:var(--white);
  margin-top:10px;
  font-size:16px;
}

/* ================================
   BUTTON
================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  transition:.3s;
  font-weight:700;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--main-color);
  color:var(--white);
}

.btn-primary:hover{
  opacity:.88;
}

.btn-outline-dark{
  border:1px solid #111;
  color:#111;
  background:transparent;
}

.btn-outline-dark:hover{
  background:#111;
  color:#fff;
}

.btn-small{
  min-height:42px;
  padding:0 18px;
  font-size:14px;
}

/* ================================
   HERO（修正版）
================================ */
.hero.hero-split{
  margin-top:var(--header-height);
  min-height:calc(100vh - var(--header-height));
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;

  /* 画像を全体に */
  background:
    url("images/hero.jpeg") center/cover no-repeat;
}

.hero.hero-split::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255,255,255,0.95) 25%,
    rgba(255,255,255,0.7) 40%,
    rgba(255,255,255,0.4) 55%,
    rgba(255,255,255,0.15) 70%,
    rgba(255,255,255,0) 85%
  );

  z-index:1;
}

/* テキスト前に出す */
.hero-split-inner{
  position:relative;
  z-index:2;
}

/* 右の画像消す */
.hero-visual{
  display:none;
}

/* ================================
   SCROLL ICON 完全版
================================ */

/* 全体位置 */
.hero-scroll{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:5;
}

/* テキスト */
.hero-scroll a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:#000;
}

/* SCROLL文字 */
.hero-scroll-text{
  font-size:11px;
  font-weight:700;
  letter-spacing:.25em;
}

/* 縦線 */
.hero-scroll-line{
  position:relative;
  width:1px;
  height:56px;
  background:rgba(0,0,0,0.3);
  overflow:hidden;
}

/* 動くバー */
.hero-scroll-line::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:1px;
  height:20px;
  background:#000;
  animation:scrollLineMove 1.8s ease-in-out infinite;
}

/* ▼矢印（これが今回の本命） */
.hero-scroll-line::before{
  content:"";
  position:absolute;
  bottom:-6px;
  left:50%;
  width:8px;
  height:8px;
  border-right:2px solid #000;
  border-bottom:2px solid #000;
  transform:translateX(-50%) rotate(45deg);
}

/* アニメーション */
@keyframes scrollLineMove{
  0%{
    transform:translateY(-20px);
    opacity:0;
  }
  20%{
    opacity:1;
  }
  100%{
    transform:translateY(56px);
    opacity:0;
  }
}



/* ================================
   TOP PAGE - STRENGTH
================================ */
.strength{
  position:relative;
  background:var(--white);
  overflow:hidden;
}

.strength::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  transform:translateY(-50%);
  width:min(420px, 38vw);
  height:min(620px, 80%);
  background:url("images/character-watermark.png") left center / contain no-repeat;
  opacity:0.08;
  pointer-events:none;
  z-index:1;
}

.strength .container{
  position:relative;
  z-index:2;
}

.strength .section-head{
  margin-bottom:36px;
}

.strength-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.strength-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,250,0.96));
  padding:28px;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.04);
  transition:transform .3s ease, box-shadow .3s ease;
}

.strength-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(0,0,0,0.12);
}

.strength-card h3{
  font-size:22px;
  margin-bottom:10px;
  font-weight:800;
}

.strength-card p{
  font-size:15px;
  color:var(--sub-text);
  line-height:1.9;
}

/* ================================
   TOP PAGE - SERVICE GEO
================================ */
.service-geo{
  position:relative;
  background:linear-gradient(to bottom, #ffffff 0%, #fffcfc 48%, #ffffff 100%);
  overflow:hidden;
}

.service-geo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 12%, rgba(151,0,19,0.04), transparent 25%),
    radial-gradient(circle at 85% 36%, rgba(151,0,19,0.035), transparent 24%),
    radial-gradient(circle at 24% 80%, rgba(151,0,19,0.03), transparent 22%);
  pointer-events:none;
}

.service-head{
  padding:100px 0 48px;
  position:relative;
  z-index:3;
}

.service-main-lead{
  max-width:720px;
}

.service-geo-bg{
  position:absolute;
  inset:190px 0 -700px;
  pointer-events:none;
  z-index:1;
}

.geo-flow{
  position:absolute;
  left:50%;
  width:min(1300px, 92vw);
  height:520px;
  transform:translateX(-50%);
}

.geo-flow-1{ top:0; }
.geo-flow-2{ top:520px; }
.geo-flow-3{ top:1040px; }

.geo-shape{
  --progress:0;
  position:absolute;
  left:50%;
  top:50%;
  transform-origin:center;
  will-change:transform, opacity, clip-path, filter;
  filter:blur(calc((1 - var(--progress)) * 16px));
}

.geo-shape-main{
  width:900px;
  height:180px;
  border-radius:40px;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,219,223,0.15) 8%,
    rgba(201,33,56,0.55) 30%,
    rgba(151,0,19,0.95) 50%,
    rgba(201,33,56,0.55) 70%,
    rgba(255,219,223,0.15) 92%,
    rgba(255,255,255,0) 100%
  );
  box-shadow:
    0 0 60px rgba(151,0,19,0.18),
    0 0 120px rgba(151,0,19,0.08);
}

.geo-shape-sub{
  width:500px;
  height:110px;
  border-radius:28px;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,205,210,0.12) 12%,
    rgba(151,0,19,0.45) 50%,
    rgba(255,205,210,0.12) 88%,
    rgba(255,255,255,0) 100%
  );
}

.geo-flow-1 .geo-shape-main{
  opacity:calc(0.1 + var(--progress) * 0.9);
  clip-path:polygon(
    0 50%,
    calc(var(--progress) * 10%) 0,
    calc(var(--progress) * 100%) 0,
    calc(var(--progress) * 90%) 100%,
    0 100%
  );
  transform:translate(-50%, -50%) rotate(28deg) scale(calc(0.7 + var(--progress) * 0.3));
}

.geo-flow-1 .geo-shape-sub{
  opacity:calc(0.05 + var(--progress) * 0.6);
  clip-path:polygon(
    0 50%,
    calc(var(--progress) * 12%) 0,
    calc(var(--progress) * 100%) 0,
    calc(var(--progress) * 88%) 100%,
    0 100%
  );
  transform:translate(-50%, -50%) rotate(28deg) scale(calc(0.7 + var(--progress) * 0.3));
}

.geo-flow-2 .geo-shape-main{
  opacity:calc(0.1 + var(--progress) * 0.9);
  clip-path:polygon(
    calc((1 - var(--progress)) * 100%) 0,
    100% 0,
    calc(100% - (var(--progress) * 8%)) 50%,
    100% 100%,
    calc((1 - var(--progress)) * 100%) 100%,
    calc((1 - var(--progress)) * 92%) 50%
  );
  transform:translate(-50%, -50%) rotate(-28deg) scale(calc(0.7 + var(--progress) * 0.3));
}

.geo-flow-2 .geo-shape-sub{
  opacity:calc(0.05 + var(--progress) * 0.6);
  clip-path:polygon(
    calc((1 - var(--progress)) * 100%) 0,
    100% 0,
    calc(100% - (var(--progress) * 10%)) 50%,
    100% 100%,
    calc((1 - var(--progress)) * 100%) 100%,
    calc((1 - var(--progress)) * 90%) 50%
  );
  transform:translate(-50%, -50%) rotate(-28deg) scale(calc(0.7 + var(--progress) * 0.3));
}

.geo-flow-3 .geo-shape-main{
  opacity:calc(0.1 + var(--progress) * 0.9);
  clip-path:polygon(
    0 0,
    calc(var(--progress) * 92%) 0,
    calc(var(--progress) * 100%) 50%,
    calc(var(--progress) * 92%) 100%,
    0 100%,
    calc(var(--progress) * 8%) 50%
  );
  transform:translate(-50%, -50%) rotate(34deg) scale(calc(0.7 + var(--progress) * 0.3));
}

.geo-flow-3 .geo-shape-sub{
  opacity:calc(0.05 + var(--progress) * 0.6);
  clip-path:polygon(
    0 0,
    calc(var(--progress) * 88%) 0,
    calc(var(--progress) * 100%) 50%,
    calc(var(--progress) * 88%) 100%,
    0 100%,
    calc(var(--progress) * 12%) 50%
  );
  transform:translate(-50%, -50%) rotate(34deg) scale(calc(0.7 + var(--progress) * 0.3));
}
.geo-flow-4{ 
  top:1560px; 
}

.geo-flow-4 .geo-shape-main{
  opacity:calc(0.1 + var(--progress) * 0.9);
  clip-path:polygon(
    calc((1 - var(--progress)) * 100%) 0,
    100% 0,
    calc(100% - (var(--progress) * 8%)) 50%,
    100% 100%,
    calc((1 - var(--progress)) * 100%) 100%,
    calc((1 - var(--progress)) * 92%) 50%
  );
  transform:translate(-50%, -50%) rotate(-30deg) scale(calc(0.7 + var(--progress) * 0.3));
}

.geo-flow-4 .geo-shape-sub{
  opacity:calc(0.05 + var(--progress) * 0.6);
  clip-path:polygon(
    calc((1 - var(--progress)) * 100%) 0,
    100% 0,
    calc(100% - (var(--progress) * 10%)) 50%,
    100% 100%,
    calc((1 - var(--progress)) * 100%) 100%,
    calc((1 - var(--progress)) * 90%) 50%
  );
  transform:translate(-50%, -50%) rotate(-30deg) scale(calc(0.7 + var(--progress) * 0.3));
}


.service-block{
  position:relative;
  padding:110px 0;
  overflow:hidden;
  z-index:2;
}

.service-block::before{
  content:"";
  position:absolute;
  inset:16% 5%;
  border-radius:40px;
  background:linear-gradient(
    135deg,
    rgba(151,0,19,0.04),
    rgba(255,255,255,0.00) 30%,
    rgba(151,0,19,0.02) 72%,
    rgba(255,255,255,0.00)
  );
  pointer-events:none;
}

.service-block .container{
  position:relative;
  z-index:3;
}

.service-inner{
  display:flex;
  align-items:center;
  gap:54px;
}

.service-inner.reverse{
  flex-direction:row-reverse;
}

.service-text,
.service-img{
  flex:1;
  min-width:0;
}

.service-title-group{
  margin-bottom:22px;
}

.service-index{
  display:block;
  font-size:14px;
  font-weight:800;
  letter-spacing:.24em;
  color:rgba(151,0,19,0.78);
  margin-bottom:10px;
}

.service-title{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:16px 24px;
  font-weight:800;
  font-size:clamp(28px, 3vw, 46px);
  line-height:1.3;
  box-shadow:0 16px 28px rgba(0,0,0,0.12);
  border-left:5px solid var(--main-color);
  transform:translateX(-40px);
  opacity:0;
  transition:.6s ease;
  overflow:hidden;
}

.service-title.is-show{
  transform:translateX(0);
  opacity:1;
}

.service-description{
  font-size:17px;
  line-height:2;
  max-width:560px;
  color:#444;
}

.service-img{
  position:relative;
}

.service-img img{
  width:100%;
  height:400px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 24px 44px rgba(0,0,0,0.14);
  border:1px solid rgba(0,0,0,0.06);
  transition:transform .45s ease, box-shadow .45s ease;
}

.service-img:hover img{
  transform:scale(1.03) translateY(-4px);
  box-shadow:0 30px 54px rgba(0,0,0,0.18);
}

.service-img::before{
  content:"";
  position:absolute;
  width:88%;
  height:88%;
  right:-14px;
  bottom:-14px;
  border:1px solid rgba(151,0,19,0.16);
  border-radius:20px;
  z-index:-1;
  opacity:.9;
}

/* ================================
   TOP PAGE - WORKS
================================ */
.works{
  background:var(--bg-light);
}

.works-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:32px;
}

.works-slider-wrap{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
}

.works-slider{
  overflow:hidden;
  width:100%;
}

.works-track{
  display:flex;
  gap:20px;
  transition:transform .45s ease;
  will-change:transform;
  align-items:flex-start;
}

.work-slide{
  flex:0 0 calc((100% - 40px) / 3);
  min-width:0;
}

.work-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;
  flex-direction:column;
}

.work-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(0,0,0,0.12);
}

.work-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .45s ease;
}

.work-card:hover img{
  transform:scale(1.05);
}

.work-body{
  padding:18px;
  display:flex;
  flex-direction:column;
}

.work-category{
  font-size:13px;
  color:var(--main-color);
  font-weight:800;
  margin-bottom:8px;
}

.work-body h3{
  font-size:20px;
  margin-bottom:10px;
  font-weight:800;
  line-height:1.45;
}

.work-text{
  font-size:14px;
  color:var(--sub-text);
  margin-bottom:12px;
  line-height:1.8;
}

.work-btn{
  align-self:flex-start;
}

.works-arrow{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  font-size:28px;
  line-height:1;
  color:#111;
  transition:.3s;
}

.works-arrow:hover{
  background:var(--main-color);
  color:#fff;
}

.works-arrow:disabled{
  opacity:.35;
  cursor:default;
  pointer-events:none;
}

/* ================================
   TOP PAGE - FLOW
================================ */
.flow{
  position:relative;
  background:#fff;
  overflow:hidden;
}

.flow::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:700px;
  height:700px;
  background:url("images/logo-bg.png") center/contain no-repeat;
  opacity:0.06;
  pointer-events:none;
  z-index:0;
}

.flow .container{
  position:relative;
  z-index:1;
}

.flow-list{
  width:100%;
  max-width:760px;
  margin:38px auto 0;
}

.flow-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:24px 26px;
  background:rgba(255,255,255,0.9);
  border-radius:20px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 12px 32px rgba(0,0,0,0.045);
  transition:.35s ease;
}

.flow-item:hover{
  transform:translateY(-4px);
}

.flow-num{
  flex-shrink:0;
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(145deg, #7a0010 0%, #970013 55%, #b98964 100%);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
}

.flow-item h3{
  font-size:19px;
  margin-bottom:7px;
  font-weight:800;
}

.flow-item p{
  font-size:14px;
  color:#5f5a55;
  line-height:1.95;
}

.flow-arrow{
  display:flex;
  justify-content:center;
  align-items:center;
  height:50px;
}

.flow-arrow span{
  display:block;
  width:1px;
  height:30px;
  background:rgba(151,0,19,0.45);
  position:relative;
}

.flow-arrow span::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-5px;
  width:8px;
  height:8px;
  border-right:1.5px solid rgba(151,0,19,0.88);
  border-bottom:1.5px solid rgba(151,0,19,0.88);
  transform:translateX(-50%) rotate(45deg);
}

/* ================================
   TOP PAGE - CONTACT
================================ */
.contact{
  background:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  margin-top:28px;
}

.contact-card,
.contact-info{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.05);
  padding:28px;
}

.contact-form{
  display:grid;
  gap:14px;
}

.contact-form label{
  font-size:14px;
  font-weight:700;
  display:grid;
  gap:8px;
  color:#222;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,0.1);
  border-radius:12px;
  padding:14px 16px;
  font:inherit;
  background:#fff;
}

.contact-form textarea{
  min-height:160px;
  resize:vertical;
}

.contact-note{
  font-size:13px;
  color:#666;
  margin-top:10px;
}

.contact-info-list{
  display:grid;
  gap:18px;
  margin-top:18px;
}

.contact-info-item h3{
  font-size:16px;
  margin-bottom:6px;
}

.contact-info-item p,
.contact-info-item a{
  font-size:14px;
  color:#555;
}

/* ================================
   CTA / FOOTER
================================ */
.cta{
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.6)),
    url("images/cta.jpg") center/cover no-repeat;
  color:var(--white);
  text-align:center;
  padding:96px 0;
  position:relative;
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(151,0,19,0.16), transparent 40%);
  pointer-events:none;
}

.cta-inner{
  max-width:700px;
  position:relative;
  z-index:2;
}

.cta-mini{
  color:#fff;
  opacity:.95;
}

.cta h2{
  font-size:34px;
  margin-bottom:16px;
  font-weight:800;
}

.cta p{
  margin-bottom:24px;
  color:rgba(255,255,255,0.9);
}

.footer{
  background:#111;
  color:var(--white);
  padding:42px 0 22px;
}

/* ================================
   INSTAGRAM UI
================================ */

.mobile-instagram,
.footer-instagram-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.04);
  margin-top:20px;
}

/* 左側 */
.insta-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.insta-left img{
  width:44px;
  height:44px;
  border-radius:50%;
}

.insta-name{
  font-size:13px;
  font-weight:700;
  color:#fff;
}

.insta-id{
  font-size:12px;
  color:#aaa;
}

/* ボタン */
.insta-btn{
  font-size:13px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #fff;
  color:#fff;
  transition:.3s;
  white-space:nowrap;
}

.insta-btn:hover{
  background:#fff;
  color:#111;
}

/* フッター用だけ少し強調 */
.footer-instagram-box{
  border-color:rgba(255,255,255,0.3);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-block{
  min-width:200px;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

.footer-logo img{
  width:auto;
  height:150px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.footer-info p{
  font-size:14px;
  line-height:1.9;
  color:#d1d5db;
}

.footer-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-nav a{
  font-size:14px;
  color:#e5e7eb;
  transition:.3s;
}

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

.footer-copy{
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.12);
  text-align:center;
  font-size:13px;
  color:#d1d5db;
}

.sp-fixed-cta{
  display:none;
}

/* ================================
   ANIMATION
================================ */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .8s ease, transform .8s ease;
}

.fade-up.is-show{
  opacity:1;
  transform:translateY(0);
}

.delay-1{
  transition-delay:.12s;
}

.char{
  display:inline-block;
  opacity:0;
  transform:translateY(18px);
  filter:blur(4px);
  transition:opacity .5s ease, transform .5s ease, filter .5s ease;
}

.service-title.is-show .char{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

.char.space{
  width:.35em;
}

/* ================================
   COMPANY PAGE
================================ */
.company-page-body{
  background:#f5f5f5;
}

.company-page-main{
  display:block;
}

.company-page-hero{
  margin-top:var(--header-height);
  padding:88px 0 64px;
  background:
    linear-gradient(135deg, rgba(151,0,19,0.08), rgba(255,255,255,0) 48%),
    #fff;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.company-page-mini{
  margin:0 0 12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--main-color);
}

.company-page-title{
  margin:0 0 18px;
  font-size:clamp(36px, 5vw, 60px);
  line-height:1.2;
  font-weight:900;
}

.company-page-lead{
  margin:0;
  font-size:16px;
  line-height:2;
  color:#555;
  max-width:720px;
}

.company-page-hero-visual{
  position:relative;
  margin-top:36px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.16);
}

.company-page-hero-visual img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.company-page-hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:28px 32px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.16) 35%,
    rgba(0,0,0,0) 70%
  );
}

.company-page-hero-overlay span{
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.company-page-anchor{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.company-page-anchor-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:16px 0;
}

.company-page-anchor-list a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:#f3f3f3;
  color:#111;
  font-size:14px;
  font-weight:700;
  transition:.3s;
}

.company-page-anchor-list a:hover{
  background:var(--main-color);
  color:#fff;
}

.company-page-section{
  padding:28px 0 0;
}

.company-page-section-last{
  padding-bottom:96px;
}

.company-page-card{
  background:#fff;
  border-radius:20px;
  padding:32px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.05);
}

.company-page-section-title{
  margin:0 0 24px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.3;
  font-weight:900;
}

.company-page-box-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.company-page-box{
  background:#fafafa;
  border:1px solid rgba(0,0,0,0.06);
  border-left:4px solid var(--main-color);
  border-radius:16px;
  padding:28px;
}

.company-page-box h3{
  margin:0 0 12px;
  font-size:20px;
  font-weight:800;
}

.company-page-box p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#555;
}

.company-page-access-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.company-page-access-box{
  background:#fafafa;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  padding:20px;
}

.company-page-access-box h3{
  margin:0 0 10px;
  font-size:22px;
  font-weight:800;
}

.company-page-access-box p{
  margin:0 0 14px;
  font-size:15px;
  color:#555;
  line-height:1.9;
}

.company-page-access-box iframe{
  display:block;
  width:100%;
  height:320px;
  border:0;
  border-radius:12px;
}

/* ================================
   SERVICE LIST PAGE
================================ */
.service-list-page-body{
  background:#efefef;
}

.service-list-hero{
  background:
    linear-gradient(135deg, rgba(151,0,19,0.10), rgba(255,255,255,0) 46%),
    linear-gradient(180deg, #ffffff 0%, #faf7f7 100%);
}

.service-list-hero-visual img{
  height:460px;
}

.service-intro-card{
  background:
    linear-gradient(135deg, rgba(151,0,19,0.03), rgba(255,255,255,1) 42%),
    #fff;
}

.service-intro-text{
  margin:0;
  font-size:16px;
  line-height:2;
  color:#444;
}

.service-list-grid{
  display:grid;
  gap:24px;
}

.service-list-card{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;
  padding:24px;
  border-radius:20px;
  background:#fafafa;
  border:1px solid rgba(0,0,0,0.06);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-list-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(0,0,0,0.08);
  border-color:rgba(151,0,19,0.16);
}

.service-list-image{
  overflow:hidden;
  border-radius:16px;
  background:#ddd;
}

.service-list-image img{
  width:100%;
  height:100%;
  min-height:240px;
  object-fit:cover;
}

.service-list-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.service-list-title{
  display:inline-flex;
  align-items:center;
  gap:16px;
  background:#111;
  color:#fff;
  padding:14px 22px;
  font-size:clamp(24px, 3vw, 36px);
  font-weight:900;
  line-height:1.4;
  border-left:5px solid var(--main-color);
  margin:0 0 18px;
  width:fit-content;
  max-width:100%;
  flex-wrap:wrap;
  box-shadow:0 16px 28px rgba(0,0,0,0.12);
}

.service-list-title span{
  font-size:12px;
  font-weight:800;
  letter-spacing:.2em;
  color:rgba(255,255,255,0.85);
}

.service-list-catch{
  margin:0 0 14px;
  font-size:16px;
  font-weight:700;
  line-height:1.9;
  color:var(--main-color);
}

.service-list-content p{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.95;
  color:#444;
}

.service-list-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px 16px;
  margin:0 0 20px;
  padding:0;
  list-style:none;
}

.service-list-points li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  color:#333;
}

.service-list-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--main-color);
  transform:translateY(-50%);
}

.service-list-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  background:var(--main-color);
  color:#fff;
  font-size:14px;
  font-weight:700;
  width:max-content;
  transition:.3s;
  box-shadow:0 10px 20px rgba(151,0,19,0.16);
}

.service-list-link:hover{
  background:var(--main-dark);
  transform:translateY(-2px);
}

.service-reason-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.service-flow-list{
  display:grid;
  gap:16px;
}

.service-flow-item{
  display:flex;
  gap:18px;
  padding:22px 24px;
  border-radius:18px;
  background:#fafafa;
  border:1px solid rgba(0,0,0,0.06);
}

.service-flow-num{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--main-color), var(--main-dark));
  color:#fff;
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(151,0,19,0.18);
}

.service-flow-item h3{
  margin:0 0 6px;
  font-size:20px;
  font-weight:800;
}

.service-flow-item p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#555;
}

.service-area-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.service-area-box{
  background:linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border:1px solid rgba(0,0,0,0.06);
  border-left:4px solid var(--main-color);
  border-radius:16px;
  padding:28px;
}

.service-area-box h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
  line-height:1.5;
}

.service-area-box p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#555;
}

/* ================================
   MODERN SERVICE SECTION
================================ */
.service-modern-section{
  padding:36px 0 0;
}

.service-modern-lead{
  margin:0 0 42px;
  font-size:15px;
  line-height:1.9;
  color:#666;
}

.service-modern-list{
  display:flex;
  flex-direction:column;
  gap:64px;
}

.service-modern-item{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  align-items:center;
  gap:48px;
}

.service-modern-item.reverse{
  position:relative;
  z-index:1;
  grid-template-columns:0.95fr 1.05fr;
  padding:56px 0;
}

.service-modern-item.reverse::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  background:linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  z-index:-1;
}

.service-modern-item.reverse .service-modern-image{
  order:2;
}

.service-modern-item.reverse .service-modern-content{
  order:1;
}

.service-modern-image{
  position:relative;
  overflow:hidden;
  padding:20px;
}

.service-modern-image img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.service-modern-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px 10px;
}

.service-modern-item.reverse .service-modern-content{
  background:linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  padding:40px;
  min-height:460px;
  border-radius:22px;
}

.service-modern-number{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
  font-size:14px;
  color:#222;
  letter-spacing:.04em;
}

.service-modern-number span{
  display:block;
  width:42px;
  height:1px;
  background:#222;
}

.service-modern-number em{
  font-style:normal;
  font-size:22px;
  font-weight:800;
  color:var(--main-color);
}

.service-modern-title{
  margin:0 0 22px;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1.25;
  font-weight:900;
  color:#111;
  letter-spacing:.02em;
}

.service-modern-text{
  margin:0 0 26px;
  max-width:520px;
  font-size:15px;
  line-height:2;
  color:#4b4b4b;
}

.service-modern-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
}

.service-modern-tags li{
  padding:12px 16px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  color:#333;
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.service-list-bottom-cta{
  padding:72px 0 0;
}

.service-list-bottom-cta-inner{
  background:linear-gradient(135deg, rgba(151,0,19,0.06), rgba(255,255,255,1) 42%);
  border:1px solid rgba(151,0,19,0.10);
  border-radius:24px;
  padding:44px 32px;
  text-align:center;
  box-shadow:0 18px 38px rgba(0,0,0,0.08);
}

.service-list-bottom-label{
  margin:0 0 10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--main-color);
}

.service-list-bottom-cta-inner h3{
  margin:0 0 14px;
  font-size:clamp(26px, 4vw, 38px);
  line-height:1.35;
  font-weight:900;
  color:#111;
}

.service-list-bottom-cta-inner p{
  margin:0 auto 24px;
  max-width:720px;
  font-size:15px;
  line-height:1.95;
  color:#555;
}

.service-list-bottom-btn{
  min-width:220px;
  box-shadow:0 12px 24px rgba(151,0,19,0.18);
}

/* ================================
   BEFORE / AFTER / EXTRA
================================ */
.ba-wrapper{
  display:flex;
  flex-direction:column;
  gap:60px;
}

.ba-set-title{
  font-size:20px;
  font-weight:800;
  margin-bottom:16px;
  text-align:center;
}

.service-bottom-cta{
  position: relative;
  z-index: 3;
  padding: 20px 0 110px;
}

.service-more-btn-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-more-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 60px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
}

.works{
  background: var(--bg-light);
  padding-top: 110px;
  margin-top: 0;
}

/* ================================
   EXTRA OVERRIDE
================================ */
.service-list-bottom-btn{
  min-width:220px;
  box-shadow:0 16px 30px rgba(151,0,19,0.25);
  transform:translateY(0);
  transition:.3s;
}

.service-list-bottom-btn:hover{
  transform:translateY(-3px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px){
  .service-modern-item,
  .service-modern-item.reverse{
    grid-template-columns:1fr;
    gap:28px;
  }

  .service-modern-item.reverse{
    padding:40px 0;
  }

  .service-modern-item.reverse .service-modern-image,
  .service-modern-item.reverse .service-modern-content{
    order:initial;
  }

  .service-modern-image img{
    height:380px;
  }

  .service-modern-item.reverse .service-modern-content{
    min-height:auto;
    padding:28px;
  }
}

@media (max-width: 768px){
  .service-modern-section{
    padding:20px 0 0;
  }

  .service-modern-list{
    gap:48px;
  }

  .service-modern-image{
    padding:0;
  }

  .service-modern-image img{
    height:260px;
    border-radius:18px;
  }

  .service-modern-title{
    font-size:clamp(26px, 8vw, 38px);
    margin-bottom:16px;
  }

  .service-modern-text{
    font-size:14px;
    line-height:1.9;
  }

  .service-modern-tags li{
    font-size:13px;
    padding:10px 12px;
  }

  .service-modern-item.reverse .service-modern-content{
    padding:24px;
    border-radius:18px;
    box-shadow:0 14px 28px rgba(0,0,0,0.08);
  }

  .service-list-bottom-cta{
    padding-top:56px;
  }

  .service-list-bottom-cta-inner{
    padding:32px 20px;
    border-radius:20px;
  }

  .service-list-bottom-btn{
    width:100%;
    max-width:320px;
  }
}

/* ================================
   LOADING SCREEN
================================ */
.loading-screen{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;

  opacity:1;
  visibility:visible;

  transition:opacity .8s ease, transform .8s ease;
}

/* 消える演出 */
.loading-screen.is-hidden{
  opacity:0;
  transform:scale(1.08);
  visibility:hidden;
  pointer-events:none;
}

/* 中身 */
.loading-inner{
  width:min(42vw, 260px);
  max-width:260px;
  min-width:120px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ロゴ */
.loading-logo{
  width: 500px;
  max-width: 70vw;
  height: auto;
  object-fit: contain;

  animation: loadingLogoFloat 1.6s ease-in-out infinite;

  transform: scale(1);
  transition: transform .6s ease, opacity .6s ease;
}

/* 消えるときロゴ */
.loading-screen.is-hidden .loading-logo{
  transform: scale(0.85);
  opacity: 0;
}

/* アニメ */
@keyframes loadingLogoFloat{
  0%{
    opacity:0.6;
    transform:translateY(0);
  }
  50%{
    opacity:1;
    transform:translateY(-6px);
  }
  100%{
    opacity:0.6;
    transform:translateY(0);
  }
}

/* SP */
@media (max-width: 768px){
  .loading-inner{
    width:min(56vw, 200px);
    min-width:100px;
  }
}

.loading-screen{
  transition:opacity 1s ease, transform 1s ease;
}

/* ================================
   HEADER SP FIX
================================ */
@media (max-width: 768px){
  .header{
    height:72px;
  }

  .header-inner{
    gap:12px;
  }

  .logo img{
    height:56px;
    width:auto;
  }

  .nav,
  .header-cta{
    display:none;
  }

  .hamburger{
    display:block;
    margin-left:auto;
    flex-shrink:0;
  }

  .mobile-menu{
    top:72px;
    height:calc(100vh - 72px);
  }

  .mobile-nav a{
    font-size:20px;
  }
}

/* ================================
   WORKS FIX
================================ */
.works-slider-wrap{
  gap:12px;
}

.work-slide{
  flex:0 0 calc((100% - 40px) / 3);
  min-width:0;
}

.work-card{
  height:100%;
}

.work-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  height:100%;
}

.work-category{
  font-size:12px;
  line-height:1.6;
  min-height:38px;
}

.work-body h3{
  font-size:18px;
  line-height:1.6;
  margin-bottom:10px;
  min-height:58px;
}

.work-text{
  font-size:14px;
  line-height:1.8;
  min-height:52px;
}

.work-btn{
  margin-top:auto;
}

@media (max-width: 1024px){
  .work-slide{
    flex:0 0 calc((100% - 20px) / 2);
  }

  .work-body h3{
    min-height:auto;
  }

  .work-text{
    min-height:auto;
  }
}

@media (max-width: 768px){
  .works-slider-wrap{
    gap:8px;
  }

  .works-arrow{
    width:40px;
    height:40px;
    font-size:22px;
  }

  .work-slide{
    flex:0 0 100%;
  }

  .work-card img{
    height:200px;
  }

  .work-body{
    padding:16px;
  }

  .work-category{
    min-height:auto;
  }

  .work-body h3{
    font-size:17px;
    min-height:auto;
  }

  .work-text{
    min-height:auto;
  }
}

/* ================================
   CONTACT FIX
================================ */
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap:32px;
  margin-top:32px;
  align-items:start;
}

.contact-card,
.contact-info{
  background:#fff;
  border-radius:24px;
  box-shadow:0 14px 34px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.05);
  padding:32px;
}

.contact-card{
  position:relative;
}

.contact-card::before,
.contact-info::before{
  content:"";
  display:block;
  width:56px;
  height:4px;
  border-radius:999px;
  background:var(--main-color);
  margin-bottom:20px;
}

.contact-form{
  display:grid;
  gap:18px;
}

.contact-form label{
  display:grid;
  gap:8px;
  font-size:14px;
  font-weight:700;
  color:#222;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  background:#fff;
  transition:border-color .3s ease, box-shadow .3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--main-color);
  box-shadow:0 0 0 4px rgba(151,0,19,0.08);
}

.contact-form textarea{
  min-height:180px;
  resize:vertical;
}

.contact-note{
  margin-top:14px;
  font-size:13px;
  color:#666;
  line-height:1.8;
}

.contact-info > h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:18px;
  line-height:1.4;
}

.contact-info-list{
  display:grid;
  gap:16px;
  margin-top:0;
}

.contact-info-item{
  padding:18px 20px;
  background:#fafafa;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
}

.contact-info-item h3{
  font-size:14px;
  font-weight:800;
  color:var(--main-color);
  margin-bottom:6px;
  letter-spacing:.08em;
}

.contact-info-item p,
.contact-info-item a{
  font-size:16px;
  color:#222;
  line-height:1.8;
  font-weight:600;
}

.contact-info-image{
  overflow:hidden;
  border-radius:18px;
  margin-top:4px;
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.contact-info-image img{
  width:100%;
  height:auto;
  display:block;
}

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .contact-card,
  .contact-info{
    padding:24px 20px;
    border-radius:20px;
  }

  .contact-info > h3{
    font-size:22px;
  }

  .contact-info-item{
    padding:16px;
  }

  .contact-info-item p,
  .contact-info-item a{
    font-size:15px;
  }

  .contact-form textarea{
    min-height:150px;
  }
}

/* ================================
   STRENGTH / REASON FIX
================================ */
.service-reason-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
  margin-top:8px;
}

.service-reason-grid .company-page-box{
  background:linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border:1px solid rgba(0,0,0,0.06);
  border-left:4px solid var(--main-color);
  border-radius:20px;
  padding:30px 28px;
  box-shadow:0 10px 24px rgba(0,0,0,0.05);
}

.service-reason-grid .company-page-box h3{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.5;
  font-weight:800;
  letter-spacing:.01em;
}

.service-reason-grid .company-page-box p{
  margin:0;
  font-size:15px;
  line-height:2;
  color:#555;
}

.service-reason-grid .company-page-box br{
  display:none;
}

@media (max-width: 1024px){
  .service-reason-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width: 768px){
  .service-reason-grid .company-page-box{
    padding:24px 20px;
    border-radius:16px;
  }

  .service-reason-grid .company-page-box h3{
    font-size:19px;
    margin-bottom:10px;
  }

  .service-reason-grid .company-page-box p{
    font-size:14px;
    line-height:1.9;
  }
}

/* ================================
   WORKS AREA FIX
================================ */
.service-area-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
  margin-top:10px;
}

.service-area-box{
  background:linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:22px;
  padding:30px 28px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  transition:.3s ease;
}

.service-area-box:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,0.10);
}

.service-area-box h3{
  margin:0 0 12px;
  font-size:22px;
  font-weight:800;
  line-height:1.5;
  letter-spacing:.02em;
  color:var(--main-color);
}

.service-area-box p{
  margin:0;
  font-size:15px;
  line-height:1.95;
  color:#555;
}

/* タブレット以下 */
@media (max-width: 1024px){
  .service-area-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

/* スマホ */
@media (max-width: 768px){
  .service-area-box{
    padding:22px 18px;
    border-radius:18px;
  }

  .service-area-box h3{
    font-size:19px;
  }

  .service-area-box p{
    font-size:14px;
  }
}

.mobile-menu{
  padding:24px 20px;
  overflow-y:auto;
}

.mobile-menu-inner{
  width:100%;
  max-width:420px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin:0 auto;
}

.mobile-nav{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

.mobile-nav a{
  width:100%;
  text-align:center;
}

.mobile-nav-cta{
  width:100%;
  max-width:320px;
}

.mobile-instagram{
  width:100%;
  max-width:420px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.05);
}

.mobile-instagram .insta-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.mobile-instagram .insta-left img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}

.mobile-instagram .insta-name,
.mobile-instagram .insta-id{
  margin:0;
}

.mobile-instagram .insta-name{
  font-size:13px;
  font-weight:700;
  color:#fff;
  line-height:1.2;
}

.mobile-instagram .insta-id{
  font-size:12px;
  color:#aaa;
  line-height:1.2;
}

.mobile-instagram .insta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #fff;
  color:#fff;
  font-size:12px;
  white-space:nowrap;
  flex-shrink:0;
}

@media (max-width: 480px){
  .mobile-instagram{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
  }

  .mobile-instagram .insta-left{
    justify-content:center;
  }

  .mobile-instagram .insta-btn{
    width:100%;
  }
}

.footer-instagram-box{
  margin:30px 0 10px;
}

.form-message{
  margin-top:14px;
  padding:14px 16px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  display:none;
}

.form-message.is-success{
  display:block;
  background:#f0fff4;
  color:#16703a;
}

.form-message.is-error{
  display:block;
  background:#fff5f5;
  color:#b00020;
}