html{
  scroll-behavior:smooth;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
  font-family:"Hiragino Sans","Yu Gothic",sans-serif;
  background:#f5f8f5;
  color:#333333;
  line-height:1.9;
}

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

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

/* ========================================
   共通見出し
======================================== */

h1{
  max-width:1200px;
  margin:40px auto 10px;
  padding:0 20px;
  font-size:30px;
  line-height:1.5;
  color:#2f6f4f;
  font-weight:800;
}

.lead{
  max-width:1200px;
  margin:0 auto 30px;
  padding:0 20px;
  font-size:15px;
  line-height:1.9;
  color:#555555;
}

/* ========================================
   section
======================================== */

section{
  max-width:1200px;
  margin:20px auto 40px;
  padding:34px 30px;
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 6px 24px rgba(0,0,0,0.06);
}

.section-title{
  position:relative;
  margin-bottom:22px;
  padding-left:16px;
  font-size:24px;
  font-weight:800;
  color:#2f6f4f;
}

.section-title::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  width:8px;
  height:24px;
  border-radius:4px;
  background:linear-gradient(180deg,#8ed1a5,#6bbf8a);
}

/* ========================================
   ボタン
======================================== */

.btn{
  display:inline-block;
  margin:6px;
  padding:14px 30px;
  background:linear-gradient(135deg,#4fa86e,#2f8d57);
  color:#ffffff;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  box-shadow:0 4px 12px rgba(50,120,80,0.35);
  transition:0.25s;
}

.btn:hover{
  opacity:0.92;
  transform:translateY(-1px);
}

.btn-sub{
  background:#e0f0e5;
  color:#356b49;
  box-shadow:none;
}

/* ========================================
   CTA
======================================== */

.cta-box{
  max-width:1200px;
  margin:20px auto 40px;
  padding:34px 30px;
  text-align:center;
  background:linear-gradient(180deg,#f9fdf9 0%,#eef7f1 100%);
  border:1px solid #d8ebde;
  border-radius:18px;
  box-shadow:0 6px 25px rgba(0,0,0,0.06);
}

.cta-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.cta-btn{
  display:inline-block;
  margin-top:24px;
  padding:16px 30px;
  background:#ff7a00;
  color:#ffffff;
  border-radius:10px;
  font-size:18px;
  font-weight:700;
  transition:0.25s;
}

.cta-btn:hover{
  opacity:0.9;
}

/* ========================================
   タグ
======================================== */

.tag{
  display:inline-block;
  margin-right:6px;
  margin-bottom:4px;
  padding:2px 8px;
  background:#e0f0e5;
  border-radius:20px;
  font-size:11px;
  color:#356b49;
}

/* ========================================
   ブログカード
======================================== */

.blog-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.blog-card{
  display:block;
  height:100%;
  overflow:hidden;
  background:#ffffff;
  border:1px solid #dbe9df;
  border-radius:22px;
  box-shadow:0 4px 18px rgba(0,0,0,0.04);
  transition:0.25s;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 26px rgba(0,0,0,0.08);
}

.blog-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.blog-card-body{
  padding:22px 20px 24px;
}

.blog-card-meta{
  margin-bottom:12px;
  font-size:13px;
  font-weight:700;
  color:#2f6f4f;
}

.blog-card h3{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.65;
  color:#24563c;
  font-weight:800;
}

.blog-card p{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.9;
  color:#444444;
}

.blog-more{
  font-size:15px;
  font-weight:700;
  color:#2f6f4f;
}

.blog-bottom-link{
  margin-top:28px;
  text-align:center;
}

/* ========================================
   ヒーロー
======================================== */

.hero{
  position:relative;
  overflow:hidden;
  color:#ffffff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.48);
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
}

.hero h1,
.hero-title{
  color:#ffffff;
  text-shadow:0 3px 14px rgba(0,0,0,0.6);
}

.hero p,
.hero-sub,
.hero-free,
.hero-text,
.hero-area{
  color:rgba(255,255,255,0.96);
  text-shadow:0 2px 10px rgba(0,0,0,0.55);
}

.hero-sub{
  margin-top:20px;
  font-size:24px;
  font-weight:700;
}

.hero-free{
  margin-top:10px;
  font-size:18px;
}

.hero-text{
  margin-top:24px;
  line-height:1.9;
}

.hero-area{
  margin-top:20px;
  line-height:1.8;
}

.hero-buttons{
  position:relative;
  z-index:2;
  margin-top:30px;
}

/* ========================================
   共通ヘッダー
======================================== */

.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:#ffffff;
  border-bottom:1px solid #e5ece7;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.header-inner{
  max-width:1400px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.site-logo-area{
  flex-shrink:0;
}

.logo a{
  font-size:24px;
  font-weight:800;
  color:#2f6f4f;
}

.site-tagline{
  margin-top:4px;
  font-size:12px;
  color:#666666;
}

.site-nav{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.site-nav a{
  padding:9px 11px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.site-nav a:hover{
  background:#eef7f1;
  color:#2f6f4f;
}

.nav-contact{
  display:inline-block;
  background:#2f8d57;
  color:#ffffff !important;
  border-radius:10px;
}

/* ========================================
   共通フッター
======================================== */

.site-footer{
  width:100%;
  margin-top:80px;
  padding:60px 20px 42px;
  background:#20352a;
  color:#ffffff;
  text-align:center !important;
  box-sizing:border-box;
  clear:both;
}

.site-footer-inner{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0;
  text-align:center !important;
  box-sizing:border-box;
}

.site-footer p,
.site-footer div,
.site-footer nav{
  text-align:center !important;
  box-sizing:border-box;
}

.site-footer p{
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
}

.site-footer a{
  color:#ffffff;
}

.footer-company{
  margin:0 0 18px 0;
  font-size:15px;
  font-weight:700;
  line-height:1.8;
}

.footer-info{
  margin:0 auto 26px;
}

.footer-info p{
  margin:4px 0;
  font-size:14px;
  line-height:1.8;
}

.footer-info a{
  font-weight:700;
  text-decoration:underline;
}

.footer-description{
  max-width:900px;
  margin:22px auto 0;
  line-height:1.9;
  color:rgba(255,255,255,0.85);
}

.footer-description p{
  margin:0 0 10px 0;
  font-size:13px;
  line-height:1.9;
}

.footer-copy{
  margin:24px auto 12px;
  font-size:13px;
  line-height:1.8;
}

.footer-links{
  width:100%;
  max-width:900px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px 14px;
  margin:22px auto 0;
  padding:0;
  text-align:center !important;
}

.footer-links a{
  display:inline-block;
  font-size:13px;
  line-height:1.6;
  text-decoration:underline;
  white-space:nowrap;
}

.footer-links a:hover{
  text-decoration:none;
}

/* ========================================
   レスポンシブ：タブレット
======================================== */

@media (max-width:1024px){

  .blog-card-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media (max-width:900px){

  .header-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .site-logo-area{
    width:100%;
    text-align:center;
  }

  .site-nav{
    width:100%;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
  }

  .site-nav a{
    width:auto;
    font-size:13px;
    padding:8px 10px;
    background:#f6faf7;
  }

}

@media (max-width:768px){

  h1{
    margin:28px auto 10px;
    font-size:24px;
  }

  .lead{
    font-size:14px;
  }

  section,
  .cta-box{
    margin:20px 14px 30px;
    padding:26px 20px;
  }

  .section-title{
    font-size:22px;
  }

  .blog-card-grid{
    grid-template-columns:1fr;
  }

  .blog-card img{
    height:220px;
  }

  .blog-card-body{
    padding:20px 18px 22px;
  }

  .blog-card h3{
    font-size:17px;
  }

  .blog-card p{
    font-size:14px;
  }

  .footer-links{
    flex-direction:column;
    gap:10px;
  }

}

/* ========================================
   レスポンシブ：スマホ
======================================== */

@media (max-width:600px){

  .site-header{
    position:relative;
    top:auto;
  }

  .header-inner{
    padding:12px 14px;
  }

  .logo a{
    font-size:22px;
  }

  .site-tagline{
    font-size:11px;
    line-height:1.6;
  }

  .site-nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    gap:8px;
  }

  .site-nav a{
    display:block;
    width:100%;
    padding:9px 6px;
    font-size:12px;
    line-height:1.4;
    text-align:center;
    background:#f6faf7;
  }

  .nav-contact{
    grid-column:1 / 3;
  }

  .btn{
    display:block;
    width:100%;
    margin:10px auto;
    text-align:center;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .cta-btn{
    width:100%;
    text-align:center;
  }

}

/* ========================================
   TOP 空き店舗LP導線
======================================== */

.top-owner-lp{
  max-width:1200px;
  margin:40px auto;
  padding:40px 30px;
  background:linear-gradient(135deg,#f3faf5,#edf7f0);
  border-left:6px solid #2f8d57;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.top-owner-lp-inner{
  text-align:center;
}

.top-owner-lp-label{
  display:inline-block;
  margin-bottom:16px;
  padding:7px 16px;
  background:linear-gradient(135deg,#35a86b,#2f8d57);
  color:#ffffff;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.top-owner-lp h2{
  margin:0 0 20px;
  font-size:30px;
  line-height:1.5;
  color:#2d2118;
}

.top-owner-lp p{
  margin:0 0 24px;
  font-size:16px;
  line-height:2;
  color:#4d4036;
}

.top-owner-lp-btn{
  display:inline-block;
  padding:16px 32px;
  background:linear-gradient(135deg,#35a86b,#2f8d57);
  color:#ffffff;
  border-radius:999px;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
}

.top-owner-lp-btn:hover{
  opacity:0.88;
}

@media (max-width:768px){

  .top-owner-lp{
    margin:30px 14px;
    padding:30px 20px;
  }

  .top-owner-lp h2{
    font-size:24px;
  }

}

/* ========================================
   TOPページ見やすさ調整
======================================== */

.hero{
  position:relative;
}

.hero::before{
  background:rgba(0,0,0,0.12) !important;
}

.hero h1{
  color:#ffffff !important;
  font-size:40px !important;
  font-weight:900 !important;
  line-height:1.5 !important;
  text-shadow:0 3px 14px rgba(0,0,0,0.45) !important;
}

.hero p,
.hero-sub,
.hero-free,
.hero-text{
  color:#ffffff !important;
  font-weight:700 !important;
  text-shadow:0 2px 10px rgba(0,0,0,0.45) !important;
}

section p,
.blog-card p{
  font-size:16px;
  line-height:2;
}

.trouble-card p{
  color:#555555 !important;
  text-shadow:none !important;
  font-weight:500;
}

/* ========================================
   トップページ：対応エリアリンク
======================================== */

.area-link-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.area-link-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:88px;
  padding:10px 18px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #d9c4ad;
  color:#3b2b1f !important;
  font-weight:700;
  text-decoration:none !important;
  line-height:1.4;
  box-shadow:0 4px 12px rgba(52,35,18,0.06);
  transition:background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.area-link-tag:hover{
  background:#fff4e8;
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(52,35,18,0.10);
}

@media screen and (max-width:600px){
  .area-link-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .area-link-tag{
    width:100%;
    min-width:0;
    padding:10px 12px;
  }
}

/* ========================================
   トップページ：対応エリアリンク文字中央寄せ
======================================== */

.area-link-list .area-link-tag{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  line-height:1.4 !important;
  padding:10px 18px !important;
  min-height:36px !important;
}