/*
Theme Name: Kenkaku Commercial Fixed
Version: 4.0
Description: Commercial LP Framework Rebuild
*/

/* ========================================
Base
======================================== */

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:sans-serif;
  background:#f5f5f5;
  color:#111;
  line-height:1.7;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.lp-inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;
}

.kenkaku-section{
  padding:100px 0;
  position:relative;
}

@media(max-width:768px){

  .kenkaku-section{
    padding:70px 0;
  }

}

/* ========================================
Section Heading
======================================== */

.section-heading{
  margin-bottom:50px;
}

.section-heading h2{
  font-size:42px;
  line-height:1.3;
  margin:0 0 16px;
  font-weight:700;
}

.section-heading p{
  font-size:17px;
  line-height:1.9;
  color:#666;
  margin:0;
  max-width:700px;
}

@media(max-width:768px){

  .section-heading{
    margin-bottom:35px;
  }

  .section-heading h2{
    font-size:32px;
  }

  .section-heading p{
    font-size:15px;
  }

}

/* ========================================
Button
======================================== */

.kenkaku-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 40px;
  border-radius:999px;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  transition:.3s;
}

.kenkaku-btn:hover{
  transform:translateY(-3px);
  opacity:.9;
}

.kenkaku-btn.line{
  background:#06C755;
}

/* ========================================
Header
======================================== */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.site-header-inner{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.site-logo a{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.logo-mark{
  width:52px;
  height:52px;
  border-radius:14px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:700;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-text strong{
  font-size:20px;
  color:#111;
}

.logo-text small{
  font-size:11px;
  color:#777;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.site-nav a{
  color:#111;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
}

@media(max-width:768px){

  .site-header-inner{
    height:70px;
  }

  .site-nav{
    display:none;
  }

}

/* ========================================
Hero
======================================== */

.kenkaku-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  padding:80px 0 0;
}

.kenkaku-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.kenkaku-hero-inner{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:700px;
}

.kenkaku-hero h1{
  font-size:64px;
  line-height:1.15;
  margin-bottom:24px;
}

.kenkaku-hero p{
  font-size:20px;
  line-height:1.9;
  margin-bottom:36px;
  max-width:520px;
}

.kenkaku-hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

@media(max-width:768px){

  .kenkaku-hero{
    min-height:70vh;
  }

  .kenkaku-hero h1{
    font-size:42px;
  }

  .kenkaku-hero p{
    font-size:16px;
  }

}

/* ========================================
Grid
======================================== */

.kenkaku-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

@media(max-width:768px){

  .kenkaku-grid{
    grid-template-columns:1fr;
  }

}

/* ========================================
Features
======================================== */

.features-section{
  background:#fff;
}

.features-section .kenkaku-card{
  background:#fff;
  border-radius:24px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.3s;
}

.features-section .kenkaku-card:hover{
  transform:translateY(-5px);
}

.features-section .feature-image{
  margin-bottom:24px;
}

.features-section .feature-image img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin:0 auto;
}

.features-section .kenkaku-card h3{
  font-size:24px;
  margin:0 0 16px;
}

.features-section .kenkaku-card p{
  margin:0;
  line-height:1.9;
  color:#666;
}

/* ========================================
Problem
======================================== */

.problem-section{
  background:#f7f7f7;
}

.problem-section .kenkaku-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.problem-section .problem-image img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.problem-section .kenkaku-card h3{
  font-size:24px;
  padding:25px 25px 10px;
  margin:0;
}

.problem-section .kenkaku-card p{
  padding:0 25px 30px;
  margin:0;
  line-height:1.8;
  color:#666;
}

/* ========================================
Benefit
======================================== */

.benefit-section{
  background:#fff;
}

.benefit-section .kenkaku-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.3s;
}

.benefit-section .kenkaku-card:hover{
  transform:translateY(-5px);
}

.benefit-section .benefit-image img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.benefit-section .kenkaku-card h3{
  font-size:24px;
  padding:25px 25px 10px;
  margin:0;
}

.benefit-section .kenkaku-card p{
  padding:0 25px 30px;
  margin:0;
  line-height:1.8;
  color:#666;
}

/* ========================================
Voice
======================================== */

.voice-section{
  background:#fff;
}

.voice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.voice-card{
  background:#f8f8f8;
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.voice-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:20px;
}

.voice-image{
  width:80px;
  height:80px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
}

.voice-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.voice-meta h3{
  margin:0 0 6px;
  font-size:20px;
}

.voice-meta span{
  display:block;
  font-size:14px;
  color:#777;
}

.voice-text p{
  margin:0;
  line-height:1.9;
  color:#555;
}

@media(max-width:768px){

  .voice-grid{
    grid-template-columns:1fr;
  }

}

/* ========================================
LP Works
======================================== */

.lp-works-section{
  background:#f7f7f7;
}

.lp-works-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:40px;
}

.lp-works-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.lp-works-image img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.lp-works-content{
  padding:25px;
}

.lp-works-content h3{
  font-size:22px;
  margin-bottom:10px;
}

.lp-works-content span{
  display:block;
  font-size:14px;
  color:#777;
  margin-bottom:15px;
}

.lp-works-content p{
  line-height:1.8;
  color:#555;
}

@media(max-width:768px){

  .lp-works-grid{
    grid-template-columns:1fr;
  }

}

/* ========================================
Company
======================================== */

.company-section{
  background:#fff;
}

.company-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.company-image img{
  width:100%;
  border-radius:24px;
}

.company-content{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.company-desc,
.company-message,
.company-info{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  line-height:1.9;
}

@media(max-width:768px){

  .company-layout{
    grid-template-columns:1fr;
  }

}

/* ========================================
FAQ
======================================== */

.faq-section{
  background:#f7f7f7;
}

.faq-list{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:25px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  text-align:left;
}

.faq-question span:first-child{
  flex:1;
  font-size:22px;
  font-weight:700;
  line-height:1.5;
}

.faq-icon{
  font-size:30px;
  transition:.3s;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-answer p{
  padding:0 30px 30px;
  margin:0;
  line-height:1.9;
  color:#666;
}

@media(max-width:768px){

  .faq-question{
    padding:22px 20px;
  }

  .faq-question span:first-child{
    font-size:18px;
  }

  .faq-answer p{
    padding:0 20px 25px;
  }

}

/* ========================================
CTA
======================================== */

.cta-section{
  background:#111;
  color:#fff;
  text-align:center;
}

.cta-box{
  max-width:800px;
  margin:0 auto;
}

.cta-title{
  font-size:52px;
  line-height:1.3;
  margin-bottom:24px;
}

.cta-desc{
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,.8);
  margin-bottom:40px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-btn,
.cta-line-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:260px;
  height:64px;
  border-radius:999px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.cta-btn{
  background:#fff;
  color:#111;
}

.cta-line-btn{
  background:#06C755;
  color:#fff;
}

.cta-btn:hover,
.cta-line-btn:hover{
  transform:translateY(-3px);
  opacity:.9;
}

@media(max-width:768px){

  .cta-title{
    font-size:36px;
  }

  .cta-desc{
    font-size:16px;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .cta-btn,
  .cta-line-btn{
    width:100%;
    min-width:auto;
  }

}
/* ========================================
微調整パッチ
======================================== */

/* Hover統一 */

.problem-section .kenkaku-card,
.benefit-section .kenkaku-card,
.voice-card,
.lp-works-card,
.company-desc,
.company-message,
.company-info,
.faq-item{
  transition:.3s;
}

.problem-section .kenkaku-card:hover,
.benefit-section .kenkaku-card:hover,
.voice-card:hover,
.lp-works-card:hover,
.company-desc:hover,
.company-message:hover,
.company-info:hover,
.faq-item:hover{
  transform:translateY(-5px);
}

/* セクションタイトル左余白 */

.section-heading{
  padding-left:10px;
}

/* Hero文字左余白 */

.kenkaku-hero-inner{
  padding-left:10px;
}

/* Heroボタン余白 */

.kenkaku-hero-buttons{
  margin-top:30px;
}

/* Problem画像サイズ調整 */

.problem-section .problem-image img{
  height:260px;
}

/* Benefit画像サイズ調整 */

.benefit-section .benefit-image img{
  height:260px;
}

/* Voiceカード高さ統一 */

.voice-card{
  height:100%;
}

/* LP Works hover */

.lp-works-card{
  overflow:hidden;
}

/* FAQ余白調整 */

.faq-section{
  padding:70px 0;
}

/* FAQボタン調整 */

.faq-question{
  min-height:88px;
}

/* CTA余白 */

.cta-section{
  margin-top:0;
}

/* News空なら非表示 */

.news-section:empty{
  display:none;
}

/* SP微調整 */

@media(max-width:768px){

  .section-heading{
    padding-left:0;
  }

  .kenkaku-hero-inner{
    padding-left:0;
  }

  .kenkaku-hero{
    min-height:75vh;
  }

  .kenkaku-hero h1{
    font-size:42px;
    line-height:1.25;
  }

  .kenkaku-hero p{
    font-size:16px;
  }

  .kenkaku-btn,
  .cta-btn,
  .cta-line-btn{
    width:100%;
  }

  .problem-section .problem-image img,
  .benefit-section .benefit-image img{
    height:220px;
  }

  .faq-question{
    min-height:auto;
  }

}

/* ========================================
SP 高級感 微調整
======================================== */

/* Hero SP調整 */

@media(max-width:768px){

  .kenkaku-hero h1{
    font-size:48px;
    line-height:1.35;
    max-width:320px;
  }

  .kenkaku-section{
    padding:55px 0;
  }

  .features-section .kenkaku-card{
    padding:35px 24px;
  }

  .faq-list{
    max-width:100%;
  }

}

/* Problemカード高さ統一 */

.problem-section .kenkaku-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

/* Voice文字調整 */

.voice-text p{
  font-size:15px;
  line-height:1.8;
}

/* CTA余白修正 */

.cta-section{
  margin-top:-1px;
}

/* ========================================
LP 仕上げ微調整
======================================== */

/* Header黒線削除 */

.site-header{
  border-bottom:none;
}

/* Hero文字位置 */

.kenkaku-hero-inner{
  padding-left:15px;
}

/* Features余白 */

.features-section .kenkaku-card{
  padding:40px 30px;
}

/* CTAボタン間隔 */

.cta-buttons{
  gap:20px;
}

/* FAQ右余白 */

.faq-question{
  padding-right:60px;
}

/* Hero文字強化 */

.kenkaku-hero h1{
  font-weight:800;
  letter-spacing:.02em;
  line-height:1.25;
}

/* section余白微調整 */

.kenkaku-section{
  padding:70px 0;
}

@media(max-width:768px){

  .kenkaku-section{
    padding:65px 0;
  }

}

/* FAQアイコン */

.faq-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
}


/* Features中央寄せ */

.features-section .kenkaku-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
/* Problemカード高さ統一 */ .problem-section .kenkaku-card{ min-height:340px; }
/* sectionタイトル */ .section-heading h2, .kenkaku-section h2{ font-weight:800; letter-spacing:.02em; }
/* Hero明るさ調整 */ .kenkaku-hero::before{ background:rgba(0,0,0,.35); }
/* Feature画像 */ .features-section .feature-image img{ width:90px; height:90px; }
.features-section .kenkaku-card{min-height:260px;}
/* Feature画像サイズ */

.features-section .feature-image img{
  width:110px;
  height:110px;
}

/* Voice */ .voice-section .kenkaku-card p{ font-size:14px; line-height:1.8; }

