
:root{
  --bp:1000px;
  --tr:180ms cubic-bezier(.2,.7,.2,1);
}
a{
  text-decoration: none !important;
}

/* Reset */
*{box-sizing:border-box;}
body{
  width: 100%;
  overflow-x: hidden;
  margin:0;
  font-family:"Hiragino Sans","Noto Sans JP",sans-serif;
}

/* Header */
.header{
  position:sticky;top:0;
  z-index:100;
  display:block;
  text-align: center;
  padding:0;
  background: #fff;
}

.logo{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 10px 20px;
}

.logo__main {
  display: block;
}

.logo__tel {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 20px;
  border-left: 1px solid #ddd;
}

.u-color-white{
  color: #ffffff;
}
.u-color-lightGreen{
  color: #279E4E !important;
}

/* PCナビ */
.gnav{
  display:none;
}

.gnav ul {
  display:flex;
  margin:0;
  padding:0;
  list-style:none;
  justify-content: center;
  position: relative;
}

.gnav ul::before{
  height: 4px;
  width: 100%;
  position: absolute;
  content:"";
  display: block; 
  top:0;
  background-image: linear-gradient(90deg, rgba(21, 48, 33, 1), rgba(37, 82, 42, 1));
}

.gnav ul li {
  margin: 0;
}

.gnav ul li a {
  display: block;
  position: relative;
  padding: 28px 30px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #0A4036;
  transition: 0.3s;
}

.gnav ul li a::before{
  content:"";
  position: absolute;
  top:40%;
  left:0;
  height: 20px;
  width: 1px;
  border-left: 1px solid #ddd;
}

.gnav ul li:hover > a {
  background: #185B2E;
  color: #fff;
}

.gnav ul li:hover > a::before {
  border-left: none;
}

.gnav ul li:hover + li > a::before {
  border-left: none;
}

.gnav ul li:first-child a:before {
    border-left: none; 
    padding-left: 0;
}



/* ハンバーガー（2本線） */
.nav-toggle{
  width:28px;height:22px;
  display:flex;align-items:center;justify-content:center;
  padding:6px;border:0;background:transparent;cursor:pointer;
}
.nav-toggle span{
  position:absolute;
  width:28px;height:3px;
  background:#222222;
  transition:var(--tr);
}
.nav-toggle .line1{transform:translateY(-6px);}
.nav-toggle .line2{transform:translateY(6px);}

/* モバイルメニュー */
.mobile-panel{
  position:fixed;inset:0;
  background:#f5f5f5;
  translate:0 -100%;
  transition:translate var(--tr);
  padding-top:80px;
}

.mobile-panel ul{
  list-style:none;
  padding:10px 20px;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.mobile-panel a{
  display:block;
  font-size:17px;
  padding:10px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color:#333;
  text-decoration:none;
  border-bottom:1px solid #185B2E;
}

/* ★ 開いた時の状態（htmlにis-openが付く） */
html.is-open .mobile-panel{
  translate:0 0;
  z-index: 6;
}

/* ×マークに変形 */
html.is-open .line1{
  transform:rotate(45deg);
}
html.is-open .line2{
  transform:rotate(-45deg);
}

/* PCレイアウト */
@media (min-width: 1001px){
  .nav-toggle{display:none;}
  .gnav{display:block;}
  .mobile-panel{display:none;}
  .u-pcNone{
    display: none;
  }
}




/* ===== Responsive ===== */
@media (max-width: 1000px){
  body{
    width: 100%;
    overflow-x: hidden;
  }
  .header{
    display: flex;
    align-items:center;
    justify-content:space-between;
    height: 74px;
    padding-right: 20px;
    z-index: 10;
  }
  .header::before {
    height: 4px;
    width: 100%;
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(21, 48, 33, 1), rgba(37, 82, 42, 1));
  }
  .logo img{
    width: 200px;
    height: auto;
    padding: 20px 10px 20px;
  }
  .logo__tel{
    display:none;
  }
  .u-spNone{
    display: none;
  }
}



/* ====== BLOCK: mv ====== */
  .mv {
    position: relative;
    min-height: min(72vh, 820px);
    display: grid;
    place-items: stretch;
    overflow: clip;
    isolation: isolate;
    z-index: 5;
  }

  /* 背景スライドの土台 */
  .mv__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* 各スライド（背景画像） */
  .mv__slide {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 900ms ease;
    will-change: opacity;
  }
  .mv__slide--active { opacity: 1; }


  /* コンテンツ（文字） */
  .mv__content {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: clamp(12px, 1.6vw, 20px);
    padding: clamp(20px, 5vw, 64px);
    min-height: inherit;
  }

    .mv__heading {
    margin: 0;
    line-height: 1.3;
    text-spacing-trim: all;
    }

    /* 文字の背景だけを白くする */
    .mv__heading__text {
    display: inline;
    color: #185B2E;
    background: rgba(255, 255, 255, 0.75);
    padding: 0.2em 10px 0.2em 24px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-size: clamp(28px, 4.4vw, 54px);
    letter-spacing: .08em; 
    font-feature-settings: "halt" 1;
    font-weight: 900;
    }

    .mv__lead {
      margin: 0px 0;
      line-height: 2;
      color: #f4fbf6; 
      font-size:35px
    }

.mv__lead__text {
  display: inline;      
  padding: 0.25em 10px 0.25em 24px;
  font-size: clamp(14px, 2.2vw, 24px);
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-top: 0.15em solid transparent;
  border-bottom: 0.15em solid transparent;
  line-height: 1.55;
  letter-spacing: .08em;
  background: rgba(24, 91, 46, 0.75);
}


.mv__container {
    width: min(1200px, 100%);
    margin-inline: auto;
  }


  @media (max-width: 1000px) {
    .mv {
      min-height: 60vh;
    }
    .mv__heading {
      max-width: 100%;
      padding-top: 40%;;
    }
  }

  @media (min-width: 1024px) {
    .mv__content {
      padding-block: 84px;
      padding-inline: 64px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mv__slide { transition: none; }
  }


.badge{
  background: #111;
  position: relative;
  overflow: hidden;  
  height: 340px;
}

.badge:before {
    height: 6px;
    width: 100%;
    position: absolute;
    content: "";
    display: block;
    top: 0px;
    background-image: linear-gradient(90deg, rgba(21, 48, 33, 1), rgba(37, 82, 42, 1));
}

.badge__list{
  list-style: none;
  text-align: center;
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  gap: 20px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto; 
  padding: 40px 0px;
}

@media (max-width: 1000px){
  .badge{
    height: auto;
    padding: 0 10px 130px;
  }
  .badge__list{
    gap: 6px;
    padding: 30px 0px 20px;
  }
  .badge__list img{
    width: 100%;
    height: auto;
  }
  .mv__lead{
    line-height: 1.2;
  }
  .mv__heading__text {
    display: inline;
    background: rgba(255, 255, 255, 0.75);
    padding: 0.2em 6px 0.2em 8px;
    font-size: clamp(27px, 4.4vw, 52px);
    letter-spacing: .05em;
    font-feature-settings: "halt" 1;
  }
  .mv__lead__text {
    display: inline;
    padding: 0.25em 8px;
    font-size: clamp(18px, 2.2vw, 24px);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    border-top: 0.15em solid transparent;
    border-bottom: 0.15em solid transparent;
    line-height: 1.55;
    position: relative;
  }
  .mv__lead__text{
    background: rgba(24, 91, 46, 0.75) !important;
    margin-bottom: 10px;
  }
  .mv__lead .line {
    display: block;
    height: 20px;
  }
}

@media (max-width: 768px){
  font-size: 7.4vw;
}


.badge__catch{
  text-align: center;
  color: #f5f5f5;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: 1.6em;
  letter-spacing: 0.08em;
}

:root{
  --news-accent: #c9ad63;
  --news-bg: #111;
  --news-fg-sub: #cfcfcf;
}

.news,
.news_single{
  margin-inline: auto;
  padding-block: clamp(24px, 3vw, 40px);
  position: relative; z-index:0;
}

.news_single{
  padding:0 0 60px;
}

.news__btn{
  text-align: center;
  margin: 0 auto;
  z-index: 14;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  top: -120px;
}

.news::before,
.news::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 140px;
  width: 100%;
  background: #111;
  pointer-events: none;
  z-index: 0;
}
.news::before{
  clip-path: polygon(0 0, 50% 0, 0 100%);
}
.news::after{
  clip-path: polygon(50% 0, 100% 0, 100% 100%);
}

.news__inner,
.news_single__inner{
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 100px 0 30px;
}

.news_single__inner{
  padding-top: 0;
}

.news__inner::after{
  content:"";
  display: block;
  background: url(../img/bg_logo_new.png) no-repeat top right;
  width: 500px;
  position: absolute;
  height: 500px;
  right: -160px;
  top: 0px;
  z-index: -10;
}

.en{
  font-family: "hypatia-sans-pro", sans-serif !important;
}

/* --- 見出し --- */
.section__head,
.news__head{ 
  text-align:center; 
  margin-bottom: 60px; 
  padding-top: 60px;
}

.section-head__en,
.section-head__ja {
  display:block;
  line-height:1;
  margin: 0 auto;
  text-align: center;
}

.section-head__en{
  font-size: clamp(42px, 4.5vw, 56px);
  color:#1e5b36;
  font-weight:700;
  line-height: 1;
  margin-bottom: 6px;
  font-family: "hypatia-sans-pro", sans-serif;
  font-style: italic;
  letter-spacing: 0.2em;
}

.section-head__en::after{
  content:"";
  display:block;
  width: 28px;
  height: 3px;
  background: var(--news-accent);
  margin: 20px auto 20px;
}
.section-head__ja{
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: bold;
  letter-spacing: 0.05em;
}


/* --- 横長バー --- */
.news__banner{
  background: var(--news-bg);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: clamp(14px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  gap: 20px;
  margin: 60px 0 0;
}

/* 左側の本文リンク */
.news__item{
  display:flex;
  align-items:center;
  gap: clamp(12px, 1.8vw, 20px);
  text-decoration: none;
  color: inherit;
  flex:1;
  padding-left: 100px;
  justify-content: center;
}
.news__item:hover{ opacity:0.85; }

.news__date{
  white-space: nowrap;
  font-size: clamp(14px, 2vw, 16px);
  color:#ffffff;
}

.news__text{
  margin:0;
  font-size: clamp(16px, 2.2vw, 16px);
}

/* 仕切り線 */
.news__divider{
  width: 1px;
  height: 1.6em;
  background:#ffffff33;
}

/* 一覧リンク */
.news__more{
  display:flex;
  align-items:center;
  gap:.5em;
  white-space: nowrap;
  color:#ffffff;
}

.news__more-icon{
  width: .55em;
  height: .55em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  translate:0 1px;
  transition: translate .25s ease;
}

.news__more:hover .news__more-icon{
  translate: 2px 1px;
}

.entry--single,
.entry-list{
  margin: 60px 0 60px;
  color: #333;
  padding: 0 20px;
}


.entry__title,
.entry-list__title{
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 600;
  color: #1e5b36;
  padding: 0px 0 20px;
  border-bottom: 2px solid #f5f5f5;
  margin-bottom: 30px;
}
.entry--single p{
  margin-bottom: 20px;
}

.news__btn02 a{
    display: block;
    margin: 60px auto;
    text-align: center;
    padding: 20px 24px;
    max-width: 420px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #1e5b36;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}
.entry-list__item{
  border: none;
  margin-bottom: 30px;
}

.archive-head__title{
  display: none;
}

@media (max-width: 1000px){
  .news__inner{
    width: 100%;
  }
  .news::before,
  .news::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    background: #111;
    pointer-events: none;
    z-index: 0;
  }
  .news::before{
    clip-path: polygon(0 0, 50% 0, 0 100%);
  }
  .news::after{
    clip-path: polygon(50% 0, 100% 0, 100% 100%);
  }
  .news__inner::after{
    content:"";
    display: block;
    background: url(../img/bg_logo_new.png) no-repeat top right;
    background-size: 50% auto;
    width: 100%;
    position: absolute;
    height: 500px;
    right:0px;
    top: -20px;
    z-index: -10;
  }
  .news__item {
      padding-left:0px;
      display: block;
  }
  .news__btn02 a{
    margin: 40px 20px;
    font-size: 16px;
  }
  .news__btn{
    top: -100px;
  }
  .section-head__en{
    letter-spacing: 0.15em;
  }
}


/* --- SP レイアウト --- */
@media (max-width: 520px){
  .news__banner{
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 20px;
    border-radius:4px;
  }
  .news__item{ width:100%; }
  .news__divider{
    height: 1px;
    width: 100%;
    display: block;
    background: #ffffff33;
  }
  .news__more{ align-self:flex-end; }
}

/* ===== Block: about ===== */
.about{ 
  max-width: 1100px;
  margin: 60px auto 60px;
}
.about__inner{ 
  margin-inline:auto;
}

/* Row */
.about__row{
  position:relative;
  gap:40px;
  align-items:start;
  margin-bottom:96px;
}

/* 明示的に順序を定義（PC） */
.about__media{ order:1; }
.about__body{ order:2; }

/* 反転（PC） */
.about__row--reverse .about__media{ order:2; }
.about__row--reverse .about__body{ order:1; }

/* Media（重ね表現あり） */
.about__media{
  position:absolute;
  margin-top:-50px;              /* 縦に少し浮かせる */
  z-index:2;                  
  aspect-ratio:16/11;
  box-shadow:0 10px 24px rgba(0,0,0,.06);;
}

.about__row--reverse .about__media{
  margin-right:0;
  right:0px;
}

.about__img{ 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  display:block;
}


.about__ribbon{
  position:absolute;
  left:200px;
  bottom:-60px;
  text-shadow:0 2px 6px rgba(0,0,0,.06);
  user-select:none; 
  pointer-events:none;
}

/* Text box */
.about__body{
  position:relative; z-index:1;
  background:#fff; 
  border-top:6px solid #e7dfbe;
  padding:40px 80px 40px 80px;
  background:#F7F7F7;
}

.about__body.txt01{
  margin-left: 40%;
}
.about__body.txt02{
  margin-right: 40%;
}

.about__title{ 
  margin:0 0 10px;
  font-size:34px;
  font-weight:800;
  color:#1e5b36;
}

.about__title .en{
  font-size: 130%;
  padding: 0 6px 0 0;

}

.about__lead{ 
  margin:0 0 20px;
  font-weight:700;
  color:#1e5b36;
  font-size: clamp(22px, 1.5vw, 24px);
}

.about__copy{
  margin:0 0 12px;
  line-height: 1.8;
}


.about__section-title{
  margin:0 0 20px; 
  font-size:28px;
  font-weight:800;
  color:#1e5b36;
  line-height:1.5;
}

/* --- SP レイアウト --- */
@media (max-width: 1000px){
  .about {
      max-width: 1100px;
      margin: 20px auto 40px;
  }
  .about__media{
    position:relative;
    margin-top:-50px;
    z-index:2;                  
    aspect-ratio:16/11;
    box-shadow:0 10px 24px rgba(0,0,0,.06);;
    margin-right:0px;
  }
  .about__body.txt01{
    margin-left: 0%;
  }
  .about__body.txt02{
    margin-right: 0%;
  }
  .about__body {
    padding: 30px 20px 40px 30px;
  }
  .about__ribbon{
    left:auto;
    right: 20px;
    bottom:-20px;
  }
}



/* ========== Our Strength ========== */
#strength{
scroll-margin-top: 142px;
}
@media (max-width: 1000px){
  #strength{
  scroll-margin-top: 68px;
  }
}

.strength{
  background: #0f0f0f;
  color: #fff;
  position: relative;
}

.strength::before{
  height: 6px;
    width: 100%;
    position: absolute;
    content: "";
    display: block;
    top: 0px;
    background-image: linear-gradient(90deg, rgba(21, 48, 33, 1), rgba(37, 82, 42, 1));
}

.strength__container{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 100px 0 120px;
}

.strength__container::after{
  content:"";
  display: block;
  background: url(../img/bg_logo_new02.png) no-repeat top right;
  width: 500px;
  position: absolute;
  height: 500px;
  right: -160px;
  top: -100px;
}


.strength__title{
  text-align: center;
  margin: 0 0 18px;
}
.strength__title-en{
  display: block;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 48px);
  letter-spacing: .04em;
  color: #1f7a3b; /* アクセントグリーン */
  position: relative;
}
.strength__title-en::after{
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 10px auto 8px;
  background: #1f7a3b;
  opacity: .8;
}
.strength__title-ja{
  display: block;
  font-size: clamp(13px, 1.5vw, 16px);
  color: #cfcfcf;
}

.strength__intro{
  text-align: center;
  margin: 40px auto 40px;
  max-width: 60ch;
  line-height: 1.9;
  color: #e9e9e9;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.strength-list{
  display: grid;
  gap: clamp(18px, 2.6vw, 28px);
  grid-template-columns: 1fr;
}
@media (min-width: 960px){
  .strength-list{
    grid-template-columns: repeat(3, 1fr);
  }
}

.strength-card{
  background: #ffffff;
  color: #222;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 2px;
}

.strength-card__media img{
  display: block;
  width: 100%;
  height: auto;
}

.strength-card__body{
  padding: clamp(18px, 2.2vw, 36px);
  display: flex;
  flex-direction: column;
}

.strength-card__eyebrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  color: #b79b47; /* 金色ニュアンス */
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0px 0 0px;
  font-size: clamp(16px, 1.3vw, 24px);
}
.strength-card__dash{
  opacity: .6;
}

.strength-card__title-wrapper{
  display: flex;
  align-items: center;     
  justify-content: center; 
  min-height: 3.6em;  
  text-align: center;
  color: #185B2E;
  font-weight: 800;
   margin-bottom: 10px;
}
.strength-card__title{
  margin: 0; 
  line-height: 1.5;
  font-size: clamp(20px, 1.3vw, 24px);
}
/* Text */
.strength-card__text{
  color: #666;
  line-height: 1.9;
  font-size: clamp(14px, 1.6vw, 15px);
}

@media (max-width: 1000px){
  .strength{
    overflow: hidden;
  }
  .strength__container {
      padding: 60px 20px 80px;
  }
  .strength__container::after {
      content: "";
      display: block;
      background: url(../img/bg_logo_new02.png) no-repeat top right;
      background-size: 50% auto;
      width: 100%;
      position: absolute;
      height: 500px;
      right: 0px;
      top: -50px;
  }
  .strength-card__body {
    padding-bottom: 30px;
  }

}


/* ========== construction ========== */

#construction{
  scroll-margin-top: 100px;
}

.construction{
  background: #fff;
  padding: 100px 0 120px;
}
.construction__inner{
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* 見出し */
.construction-head{
  text-align: center;
  margin-bottom: 36px;
}
.construction-head__label{
  display: inline-block;
  font-weight: 700;
  letter-spacing: .12em;
  color: #BC9A3C;
  font-size: 20px;
  position: relative;      /* ←必須！ */
  padding: 0 60px;         /* ←左右スペース（ライン分） */
}

/* 疑似要素の共通設定 */
.construction-head__label::before,
.construction-head__label::after {
  content: "";
  position: absolute;       /* ←必須！ */
  top: 50%;                 /* 縦位置の中心に揃える */
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .9;
}

/* 左のライン */
.construction-head__label::before {
  left: 0;
  transform: translateY(-50%) rotate(60deg);
}

/* 右のライン */
.construction-head__label::after {
  right: 0;
  transform: translateY(-50%) rotate(-60deg);
}

.construction-head__title{
  margin: 10px 0 80px;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 800;
  letter-spacing: .02em;
  color: #185B2E;
}

.construction-list{
  display: grid;
  gap: 36px 20px;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 1024px){
  .construction-list{ 
    grid-template-columns: repeat(3, 1fr); 
    gap: 36px 40px;
  }
}
/* カード */
.construction-card{
  display: flex;
  flex-direction: column;
}
.construction-card__media{
  margin: 0 0 14px;
  position: relative;
}

.construction-card__media:before{
  content:"";
  display: block;
  position: absolute;
  margin: -5px 0 0 -5px;
  width: 30px;
  height: 30px;
  background: url(../img/icon_tangle.png) no-repeat;
}


.construction-card__media img{
  display: block;
  width: 100%;
  height: auto;
}
.construction-card__title{
  margin: 6px 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  justify-content:center;
  color: #AE8E35;
}
.construction-card__text{
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

@media (min-width: 1024px){
  .construction-card__title{
    min-height: 3.0em;
    display: flex;
    align-items: center; 
  }
}

@media (max-width: 1000px){
  .construction {
      padding: 60px 0 80px;
  }
  .construction-head__title {
      margin: 10px 0 40px;
  }
  .construction-card__media:before{
    margin: -5px 0 0 -5px;
    width: 20px;
    height: 20px;
    background: url(../img/icon_tangle.png) no-repeat;
    background-size: 100% 100%;
  }
  .construction-card__title{
    margin: 6px 0 10px;
    font-size: 18px;
  }
  .construction-card__text{
    font-size: 14px;
  }
}


/* ========== Works ========== */


#works{
  scroll-margin-top: 100px;
}

@media (max-width: 1000px){
  #works{
  scroll-margin-top: 68px;
  }
}

.works{
  background: #f4f5f3;
  position: relative;
  z-index: 1; 
  overflow: hidden;
  position: relative;
}

.works::before{
  height: 6px;
    width: 100%;
    position: absolute;
    content: "";
    display: block;
    top: 0px;
    background-image: linear-gradient(90deg, rgba(21, 48, 33, 1), rgba(37, 82, 42, 1));
}

.works__container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 0 120px;
  position: relative;

}
.works__container::after {
    content: "";
    display: block;
    background:url(../img/bg_logo_works.png) no-repeat top right;
    width: 500px;
    position: absolute;
    height: 500px;
    right: -160px;
    top: -100px;
    z-index: -2;
    opacity: 0.8;
}




.works__intro{
  text-align: center;
  margin: 40px auto 40px;
  line-height: 1.9;
  color: #333;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.works__intro span{
color:#185B2E
}

/* List wrapper (各行の上ボーダー) */
.works-list{
  display:grid;
  gap:28px;
  padding:20px 40px;
  margin:24px 0 0;
  list-style:none;
}
.works-item{
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  overflow:hidden;
}
.works-item__row{
  padding:40px clamp(16px,2.4vw,40px) 40px;
  border-top:4px solid #2f7a3b;     /* 画像のグリーン線 */
}

/* Case head */
.works-item__head{
  position:relative;
  margin-bottom:30px;
}
.works-item__title{
  margin:0;
  display: block;
  font-size:22px;
  text-align: center;
  font-weight:700;
  color:#2f5f3a;
  align-items: center;
  text-align: center;
}
.works-item__case{
  margin:0;
  font-weight:600;
  font-size:60px;                    /* 大きく薄く */
  letter-spacing:.02em;
  color:#dfe7de;
  position: absolute;
  right: -20px;
  top:-30px;
  opacity: 0.8;
}

/* Grid: before | arrow | after */
.works-item__grid{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:18px;
}
@media (max-width: 720px){
  .works-item__grid{
    grid-template-columns:1fr;
    gap:12px;
  }
}

/* Pane */
.works-item__pane{
  background:#e0e0e0;                /* 画像がない時の仮色 */
  overflow:hidden;
  position:relative;
  min-height:160px;
}
.works-item__image{
  display:block;
  width:100%;
  height:auto;
}
.works-item__badge{
  position:absolute;
  top:0px;
  left:0px;
  font-size:16px;
  font-weight:700;
  color:#fff;
  background:#b9912a; 
  padding:10px 16px;
  letter-spacing: 0.05em;
}
.works-item__badge--after{ background:#1f7a3b; }  /* AFTER 緑 */

/* arrow */
.works-item__arrow{
  font-size:22px;
  color:#1f7a3b;
  line-height:1;
  text-align:center;
}


@media (min-width: 961px){
  .works-item__pane{
    min-height:200px;
  }
  .works__title-en{
    font-size:44px;
  }
}


@media (max-width: 1000px){
  .works__container {
    padding: 60px 20px 80px;
  }
  .works-item__arrow{
    text-align:center; transform:rotate(90deg);
  }

  .works__container::after{
      content: "";
      display: block;
      background:url(../img/bg_logo_works.png) no-repeat top right;
      background-size: 50% auto;
      width: 100%;
      position: absolute;
      height: 500px;
      right: 0px;
      top: -50px;
      z-index: -2;
      opacity: 0.8;
  }
  .works-list {
      padding: 20px 0px;
  }
  .works-item__case {
    margin: 0 auto;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: .02em;
    color: #dfe7de;
    position: absolute;
    right: unset;
    top: -30px;
    opacity: 0.8;
  }
  .works-item__badge{
    font-size:13px;
    padding:8px 16px;
  }
}


/* ===== CTA Block ===== */
.cta{
  color: #fff;
  padding: clamp(60px,6vw,100px) 16px 120px;
  text-align: center;
  background: url(../img/bg_cta.png) no-repeat top center;
  background-size: cover;
}

.cta__title{
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 .4em;
  font-size: clamp(18px, 2.4vw, 32px);
  display: inline-flex; /* ← inline-flex が最も安定 */
  align-items: flex-end; /* ← 下端完全揃え */
}

.cta__title span{
  font-size: 2em;
  line-height: 0.78;       /* ← 下揃えするために必須 */
  padding: 0 4px 0 10px;
  display: inline-flex; /* これも inline-flex にすると最も安定 */
  align-items: flex-end;
}

.cta__price{
  display: inline-flex;
  align-items: baseline;
  gap: .2em;
}

.cta__lead{
  margin: 10px 0 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: clamp(16px, 2.4vw, 20px);
}

.cta__inner{
  max-width: 1000px;
  margin-inline: auto;
}


/* ===== 白背景の大枠（←今回重要） ===== */
.cta__list{
  background: #fff;
  border-radius: 6px;
  padding: 16px 0 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items:flex-start;
  gap: 0; 
}


/* ===== 各Item（背景は白から削除） ===== */
.cta__item{
  border-radius: 0; 
  padding: 10px 24px;
}

.cta__head,
.cta__body{
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}


/* ===== 区切り線（中央の縦線） ===== */
.cta__item{
  position: relative;
  display: block;
}

.cta__item:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ddd;
}


/* ===== ラベル（TEL / LINE / MAIL） ===== */
.cta__label{
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .14em;
  color: #0c573d;
  font-style: italic;
  display: block;
  width: 100%;
  text-align: left;
}


/* ===== 見た目合わせ（TELの大きな数字） ===== */
.cta__tel{
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #0c573d;
  padding: 0px 0 10px;
  border-bottom:1px solid #f5f5f5 ;
  display: block;
}

/* TEL下の時間 */
.cta__badge{
  background: #D2D2D2;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 2px;
}
.cta__time{
  font-size: 14px;
  color: #333;
  padding: 0 6px;
  font-weight: bold;
}
.cta__meta{
  display: block;
  margin: 10px 0 0;
}


/* ===== LINEボタン ===== */
.cta__btn--line{
background: #00b900;
    color: #fff;
    border-radius: 10px;
    height: 80px;
    margin-top: 16px;
    font-weight: bold;
    width: 100%;
    /* ← ここから追加/修正 */
    display: flex;
    align-items: center;     /* 縦方向中心 */
    justify-content: center; /* 横方向中心 */
    gap: 8px;
    transition-duration: 0.5s;
}

.cta__chip{
  position: absolute;
  right:0;
  top:-5px;
  z-index: 10;
}


.cta__sub{
  text-align: center;
  position: absolute;
  top:4px;
  font-weight: 800;
  color: #aaa;
  left: 50%;
  margin-left:-18%;
}


/* ===== メールボタン ===== */
.cta__btn--mail{
  background: #ff9f2e;
  display: block;
  color: #fff;
  border-radius: 10px;
  height: 80px;
  margin-top: 16px;
  font-weight: bold;
  width: 100%;
  display: flex;
  align-items: center; 
  justify-content: center; 
  gap:8px;
  transition-duration: 0.5s;
}

.cta__btn--line:hover,
.cta__btn--mail:hover{
  opacity: 0.7;
}


@media (max-width: 1000px){
  .cta{
    color: #fff;
    padding: clamp(60px,6vw,100px) 20px 80px;
    text-align: center;
    background: url(../img/bg_cta_sp.png) no-repeat top center;
    background-size: 100% 100%;
  }
  .cta__list{
    grid-template-columns: 1fr;
    padding: 0px 20px 0px;
  }
  .cta__item{
    padding: 10px 10px;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .cta__item:last-child{
    border-bottom: none;
  }
  .cta__item:not(:last-child)::after{
    display: none;
  }
  .cta__head{
    margin-bottom: 4px;
  }
  .cta__btn--line,
  .cta__btn--mail{
    margin-top: 6px;
  }
  .cta__tel img{
    margin: 0 auto;
  }
}






/* ===== Block ===== */

#flow{
  scroll-margin-top: 130px;
}
@media (max-width: 1000px){
  #flow{
  scroll-margin-top: 68px;
  }
}

.flow{
  background: #111; /* 薄いグリーン */
  padding: clamp(60px, 6vw, 80px) 16px 120px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.flow::before {
    height: 6px;
    width: 100%;
    position: absolute;
    content: "";
    display: block;
    top: 0px;
    background-image: linear-gradient(90deg, rgba(21, 48, 33, 1), rgba(37, 82, 42, 1));
    left: 0;
}

.flow__inner{
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}


.flow__inner::before {
    content: "";
    display: block;
    background: url(../img/bg_logo_new02.png) no-repeat top right;
    width: 500px;
    position: absolute;
    height: 500px;
    left: -360px;
    top: -100px;
}


.flow__title{
  margin: 4px 0 18px;
  line-height: 1.1;
}
.flow__title-en{
  display: block;
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800;
  color: #2f7a54;
  letter-spacing: .08em;
}
.flow__title-ja{
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #2f7a54;
}
.flow__intro{
    text-align: center;
    margin: 40px auto 40px;
    max-width: 60ch;
    line-height: 1.9;
    color: #e9e9e9;
    font-size: clamp(16px, 1.5vw, 20px);
    letter-spacing: 0.05em;
    font-weight: 700;
}


/* ===== List（4列→2列→1列） ===== */
.flow__list{
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 26px;
  position: relative;
}

.flow__list::before{
  content:"";
  height: 20px;
  display: block;
  top:158px;
  z-index: 1;
  right: -160px;
  width: 100%;
  position: absolute;
  background: url(../img/flow_line_01.png) no-repeat top center;
}
.flow__list::after{
  content:"";
  height: 20px;
  display: block;
  top:514px;
  z-index: 1;
  right: 40px;
  width: 100%;
  position: absolute;
  background: url(../img/flow_line_02.png) no-repeat top center;
}


.flow__list li{
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px){
  .flow__list{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .flow__list{ grid-template-columns: 1fr; }
}

/* --- 上段の点線＆矢印（PCのみ見せる） --- */
@media (min-width: 1025px){
 
}

.flow-card{
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  padding: 0px 0px 0px;
  text-align: left;
  display: grid;
  grid-template-rows: 160px auto;
  min-height: 280px;
  border-top: 5px solid #2B8147;
}

.flow-card__media{
  border-bottom: 1px solid #e7efe8;
  text-align: center;
  padding: 20px 20px 30px;
  margin: 0 auto;
}
.flow-card__body{
  margin-top: 12px;
  position: relative;
  padding: 20px 30px 30px;
}
.flow-card__step{
  display: inline-block;
  background: #2f7a54;
  color: #fff;
  position: absolute;
  font-weight: 700;
  font-size: 20px;
  top:-30px;
  padding: 6px 20px;
  border-radius: 1px;
  margin-bottom: 8px;
  margin-left: -30px;
}
.flow-card__title{
  margin: 4px 0 8px;
  font-size: clamp(16px, 2.4vw, 19px);
  color: #2f7a54;
  line-height: 2em;
  font-weight: 700;
  font-weight: bold;
  text-align: center;
}
.flow-card__text{
  margin: 10px auto 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/* 2行レイアウト時の高さ揃え */
@media (min-width: 601px){
  .flow-card{ min-height: 260px; }
}

@media (max-width: 1000px){
  .flow{
    overflow: hidden;
    padding-bottom: 60px;
  }
  .flow__inner{
    padding: 0 20px;
  }
  .flow__inner::before {
      content: "";
      display: block;
      background: url(../img/bg_logo_new02.png) no-repeat top right;
      background-size: 50% auto;
      width: 100%;
      position: absolute;
      height: 500px;
      left: 0px;
      top: -50px;
    }

  .flow__list::before{
    content:"";
    height: auto;
    display: block;
    bottom:158px;
    z-index: 1;
    right:0% !important;
    width: 100%;
    position: absolute;
    background: url(../img/flow_line_sp.png) no-repeat top center;
  }
  .flow__list::after{
    display: none;
  }
  .flow-card__media{
    padding: 20px 20px 0px;
    width: 100%;
  }
  .flow-card__media img{
    margin: 0 auto;
  }
  .flow-card{
    grid-template-rows: 140px auto;
  }

}



/* ========== Voice block (BEM) ========== */


#voice{
  scroll-margin-top: 130px;
  overflow: hidden;
}

@media (max-width: 1000px){
  #voice{
  scroll-margin-top: 68px;
  }
}

.voice{ 
  position:relative;
  overflow-y: hidden;

}
.voice__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0 20px;
  position: relative;
}

.voice__inner::before {
    content: "";
    display: block;
    background: url(../img/bg_logo_new.png) no-repeat top right;
    width: 500px;
    position: absolute;
    height: 500px;
    right: -160px;
    top: -100px;
}


.voice__head{
  text-align:center;
  margin-inline:auto;
  max-width: 1160px;
  padding: 0 20px 28px;
  position: relative;
}
.voice__intro{
  display:block;
  font-weight:700;
  margin: 40px auto 40px;
  text-align: center;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.voice__intro span{
  color:#2b6e3c;
}
.voice__title{
  font-size: clamp(28px, 4vw, 44px);
  font-weight:800;
  color:#2b6e3c;
  margin:0 0 .2em;
  letter-spacing:.02em;
}
.voice__lead{
  margin:0;
  color:#6a7a6f;
  font-size: clamp(14px, 1.6vw, 16px);
}

.voice__list{
  max-width: 1100px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}
.voice__list li{
  position: absolute;
}

.voice__list li:nth-child(1){
  top:0px;
  left: -100px;
}
.voice__list li:nth-child(2){
  top:-140px;
  left: 200px;
}
.voice__list li:nth-child(3){
  top:-120px;
  right: -200px;
}
.voice__list li:nth-child(4){

  top:-60px;
  right:100px;
}



/* ========== Splide container ========== */
.voice__slider.splide{
  position:relative;
  width:100%;
  margin-bottom: 160px;
}

.btn_area{
  position: absolute;
  left: 50%;
  top: 64%; 
  transform: translate(-50%, -50%);
  width: 54%; 
  height: 100px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none; 
}

.btn_area .my-arrow{
  pointer-events: auto;
  position: static; 
  width: 80px; height: 80px;
  display: grid; 
  place-items: center;
  border: 0; 
  border-radius: 999px;
}

.voice__slider .my-arrow--prev{
  position:absolute; left: -15%; top:50%;
  transform: translate(-50%, -50%);
}
.voice__slider .my-arrow--next{
  position:absolute; right:-15%; top:50%;
  transform: translate(50%, -50%);
}

.splide__arrow svg{ display: none; }

.splide__arrow svg {
  display: none;
}

.splide__list{
  align-items:stretch;
}
.splide__slide{ 
  display:grid; 
  place-items:stretch;
}

/* ========== Voice card ========== */
.voice-card{
  max-width: 1000px;
  background:#e9f3e6;
}
.voice-card__media{ 
  position:relative;
  height: 300px;
  background:#ddd;
}
.voice-card__media img{
  position:absolute; 
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.voice-card__body{
  gap: 16px;
  background:#e9f3e6;
  padding: 30px 40px 22px;
}
.voice-wrap{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 30px 0 60px;
}

.voice-card__meta{
  align-self:start;
}
.voice-card__city{
  font-weight:700;
  color:#2b6e3c;
  margin:0 0 .25em;
  font-size:20px;
}
.voice-card__badge{
  display:inline-block;
  font-size:14px; 
  letter-spacing:.06em;
  padding:6px 20px;
  color:#fff; 
  background:#1f5e32;
  font-weight: bold;
}
.voice-card__text{ margin:0; color:#222; line-height:1.8; font-size:14px; }

/* ========== arrows ←→ を左右のpadding領域に配置 ========== */

.splide__arrow{
  pointer-events:auto;
  width:50px; height:100px;
  display:grid; place-items:center;
  transition:.25s ease;
}
/* ↓ これを足すと “重なり” は解決 */
.splide__arrow svg{ display:none; }

.splide__arrow:hover{ 
  background: rgba(0,0,0,.8);
}


.splide__arrow--prev {
  background: url('img/arrow-prev.svg') no-repeat center/contain;
  width: 150px;
  height: 150px;
}

.splide__arrow--next {
  background: url('img/arrow-next.svg') no-repeat center/contain;
    width: 150px;
  height: 150px;
}


/* ========== pagination dots ========== */
.splide__pagination{ 
  bottom: -60px !important;
  gap: 30px;
}
.splide__pagination__page{
  background:#3a3f4b;
  opacity:1;
}
.splide__pagination__page.is-active{
  background:#2b6e3c !important;
}

.splide__pagination__page {
  height: 12px !important;
  width: 12px !important;
}
.splide__pagination__page.is-active{
      transform: scale(1) !important;
}

/* ========== Responsive tweaks ========== */
@media (max-width: 960px){
  .voice-card__body{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px){
  .splide__arrow{ width:44px; height:44px; }
  .splide__arrow--prev{ margin-left: 1vw; }
  .splide__arrow--next{ margin-right: 1vw; }
  .voice__inner::before {
    content: "";
    display: block;
    background: url(../img/bg_logo_new.png) no-repeat top right;
    width: 500px;
    position: absolute;
    height: 500px;
    right: -160px;
    top: -100px;
    display: none;
  }
  .voice__inner {
      padding: 80px 0 20px;
      position: relative;
  }
  .voice__list li:nth-child(1){
    top:0px;
    left:100px;
    display: none;
  }
    .voice__list li:nth-child(2) {
        top: -120px;
        left: 10px;
        width: 80px;
    }
  .voice__list li:nth-child(3){
    top:-120px;
    right: -200px;
    display: none
  }
  .voice__list li:nth-child(4){
    top:-80px;
    right:0px;
    width: 120px;
    
  }
  .voice-wrap{
    display: block;
  }
  .btn_area {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }
    .btn_area .my-arrow{
    pointer-events: auto;
    position: static; 
    width: 36px; height: 36px;
    display: grid; 
    place-items: center;
    border: 0; 
    border-radius: 999px;
  }

  .voice__slider .my-arrow--prev{
    position:absolute; left: -5%; top:40%;
    transform: translate(-50%, -50%);
  }
  .voice__slider .my-arrow--next{
    position:absolute; right:-5%; top:40%;
    transform: translate(50%, -50%);
  }

  .voice-card__meta{
    margin-bottom: 10px;
  }
  .voice-wrap {
    padding: 20px 0 40px;
  }
  .voice-card__media {
    height: 200px;
  }
  .voice__slider.splide {
    margin-bottom: 120px;
  }

}



/* ===== Block: qa ===== */


#qa{
  scroll-margin-top: 130px;
}

@media (max-width: 1000px){
  #qa{
  scroll-margin-top: 68px;
  }
}

.qa {
  padding: 80px 0 120px;
  text-align: center;
  background: #f5f5f5;
}

.qa__title {
  font-size: 36px;
  color: #204c2c;
  margin-bottom: 8px;
}

.qa__subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.qa__list {
  text-align: left;
  max-width: 1000px;
  margin: 60px auto 20px;
}

.qa-item {
  background: #fff;
  margin-bottom: 20px;
}

.qa-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 24px 32px 24px 100px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(16px, 1.5vw, 20px);
  color: #204c2c;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
  letter-spacing: 0.05em;
  position: relative;
}

.qa-item__question:hover {
  background-color: #f2f2f0;
}

.qa-item__qmark {
  font-size: 50px;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  color: #9fb39f;
  margin-right: 30px;
  opacity: 0.8;
  left: 25px;
  top:-4px;
  position: absolute;
}

.qa-item__amark {
  display: block;
  position: absolute;
  font-size: 50px;
  font-weight: bold;
  font-style: italic;
  color: #c9a968;
  float: left;
  line-height: 2;
  margin: -40px 30px 0 0px;
  opacity: 0.8;
  left: 27px;
  top:26%;
}

.qa-item__icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid #5b8d6b;
  border-bottom: 2px solid #5b8d6b;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.qa-item.is-open .qa-item__icon {
  transform: rotate(-135deg);
}

.qa-item__answer {
  display: none;
  padding: 24px 48px 50px 100px;
  background: #fff;
}

.qa-item__answer-inner {
  font-size: 15px;
  color: #333;
}

.qa-item__atext strong {
  display: block;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 6px;
  color: #706443;
  letter-spacing: 0.05em;
  margin:20px auto 20px;
}

.qa-item.is-open .qa-item__answer {
  display: block;
  position: relative;
}
.qa-item__atext p{
  padding-left: 60px;
}


@media (max-width: 1000px){
  .qa {
      padding: 60px 0 80px;
  }
  .qa__list {
    padding: 0 20px;
    margin: 40px auto 20px;
  }
  .qa-item__question {
    padding: 20px 26px;
    position: relative;
  }

  .qa-item__question > span.txt{
    padding-left: 26px;
    padding-right: 10px;
  }
  .qa-item__qmark {
    font-size: 30px;
    position: absolute;
    left: 12px;
    top:8px;
  }
  .qa-item__amark {
    font-size: 30px;
    position: absolute;
    left: 14px;
    top:18%;
    margin-left: 0;
  }
  .qa-item__answer {
    padding: 10px 20px 30px 50px;
  }
  .qa-item__atext strong {
    margin: 10px auto 10px;
  }


}




/* ===== Block: contact-form ===== */

#contact{
  scroll-margin-top: 130px;
}

@media (max-width: 1000px){
  #contact{
  scroll-margin-top: 68px;
  }
}

.contact{
  padding: 60px 0 100px;
}

.contact-form{
  max-width:1000px;
  margin:0 auto;
}


.contact__intro {
    display: block;
    font-weight: 600;
    margin: 40px auto 80px;
    text-align: center;
    font-size: clamp(16px, 1.5vw, 20px);
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1.9;
}

.contact__intro span{
    color: #2b6e3c;
}


/* header */
.contact-form__head{
  text-align:center;
  margin-bottom:40px;
}
.contact-form__title{
  font-size:38px;
  font-weight:700;
  color:#1f4b2c;
  margin:0 0 6px;
}
.contact-form__subtitle{
  font-size:15px;
  font-weight:600;
  color:#1f4b2c;
  margin:0 0 14px;
}
.contact-form__lead{
  font-size:14px;
  color:#333;
}
.contact-form__lead strong{color:#0f773d;}

/* 各項目ブロック */
.contact-form__item{
  background:#F3F3F3;
  border-radius:4px;
  padding:30px 30px;
  margin-bottom:20px;
}


.contact-form__item{
  display: grid;
  grid-template-columns: 260px 1fr;
}

.contact-form__item div{
  display: grid;
  grid-template-columns: 300px 1fr;
    align-items: flex-start;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    padding-top: 10px;
}
.contact-form__item div i{
  font-weight: 700;
  color: #333;
  font-size: 15px;
  display: flex;
  align-self:flex-start;
  padding-top: 10px;
  font-style: normal;
}


/* ラベル・必須 */
.contact-form__label{
  font-size:15px;
  font-weight:700;
  color:#222;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}
.contact-form__badge{
  display:inline-block;
  font-size:11px;
  line-height:1;
  padding:4px 6px;
  border-radius:3px;
  background:#ea5145;
  color:#fff;
}

/* 入力要素 */
.contact-form__input,
.contact-form__textarea{
  width:100%;
  border:1px solid #ddd;
  padding:10px 12px;
  border-radius:3px;
  font-size:14px;
  background:#fefefe;
  outline:none;
  margin-bottom: 10px;
}
.contact-form__input:focus,
.contact-form__textarea:focus{
  border-color:#0f773d;
  box-shadow:0 0 0 2px rgba(15,119,61,.1);
}
.contact-form__textarea{
  height:120px;
  resize:vertical;
}

/* 補足 */
.contact-form__note{
  font-size:12px;
  color:#777;
}

/* チェック・同意 */
.contact-form__policy{
  background:#fff;
  border:1px solid #e3e3e0;
  border-radius:8px;
  padding:16px 20px;
  margin:30px 0 26px;
  box-shadow:0 4px 10px rgba(0,0,0,.04);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.contact-form__policy .contact-form__badge{margin-left:8px;}

/* 免責文 */
.contact-form__disclaimer{
  font-size:12px;
  color:#555;
  line-height:1.9;
  margin:28px 0 14px;
}

/* 送信 */
.contact-form__actions{text-align:center;}
.contact-form__submit{
  display:block;
  margin: 60px auto;
  text-align: center;
  padding:20px 24px;
  min-width:220px;
  font-size:18px;
  font-weight:700;
  color:#fff;
  background:#f39c12;
  border:none;
  border-radius:6px;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
  transition:background .2s ease, transform .05s ease;
}
.contact-form__submit:hover{background:#e18f0f;}
.contact-form__submit:active{transform:translateY(1px);}

.form__attention{
  border: 1px solid #333;
  padding: 20px 30px;
  height: 100px;
  overflow-y: scroll;
}
.form__attention p{
  margin-bottom: 20px;
}

.c-form__check {
  font-size: 14px;
  line-height: 1.6;
}

.c-form__check a {
  text-decoration: underline;
}

.c-form__check input[type="checkbox"] {
  position: static;
  opacity: 1;
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-appearance: checkbox;
  appearance: auto;
  margin-right: 10px;
}

.contact-form__privacy{
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin: 40px auto 40px;
}

.contact-form__privacy .contact-form__badge{
  margin-left: 10px;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: 600;
    display: block;
}


div.wpcf7-response-output[aria-hidden="true"] {
  display: none !important;
}

.cf7-error-area {
  display: none; /* 初期状態では表示しない */
  color: #dc3232;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  border: 2px solid #dc3232;
  padding: 12px 16px;
  border-radius: 2px;
}

.privacy_txt{
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 6px;
}

@media (max-width:1000px){
  .contact {
    padding: 40px 0 0px;
}
  .contact-form__item{
    padding:14px 16px;
  }

.form__attention{
  border: 1px solid #333;
  padding: 20px 30px;
  overflow-y: scroll;
  min-height: 80px;
}

.form__attention{
  padding: 20px 30px;
  overflow-y: scroll;
  height: 40px;
}
.contact-form{
  padding: 0 20px;
}
.contact-form__item div,
.contact-form__item{
  display: block;
}
.contact-form__item div i{
  margin-bottom: 10px;
}
input[name="your-zip"] {
  width: 50%;
}
.privacy_txt{
  font-size: 14px;
}

.form__attention {
  font-size: 14px;
  padding: 10px 16px 20px;
}

}

.page-id-15 h1,
.page-id-3 h1{
  display: none !important;
}

/* ===== Block: footer ===== */


.footer {
  background: linear-gradient(135deg, #0c2d1f, #153d2a);
  color: #fff;
  padding: 60px 20px;
  font-size: 14px;
}

.footer__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo img {
  width: 220px;
  height: auto;
}

.footer__info {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer__list {
  margin: 0;
}

.footer__item {
  margin-bottom: 20px;
  letter-spacing: 0.07em;
}

.footer__term {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer__desc {
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.footer__copy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-weight: bold;
  opacity: 0.8;
  letter-spacing: 0.07em;
}

.foot__txt{
  text-align: center;
  font-size: clamp(13px, 1.5vw, 15px);
  margin-top: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #f7f6ce;
}


@media (max-width:1000px){

  .footer__inner {
    display: block;
  }
  .footer__logo{
    margin-bottom: 30px;
  }
  .footer__info{
    gap: 0;
  }

}


/* スマホ固定バナー（SPのみ） */
.sp-footer-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none; 
  background: #fff;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sp-footer-banner::before {
  height: 4px;
  width: 100%;
  position: absolute;
  content: "";
  display: block;
  top: -4px;
  background:#327132;
}


.sp-footer-banner.is-visible {
  display: flex;
}

.sp-footer-banner__item {
  flex: 1;
}

.sp-footer-banner__item img {
  display: block;
  width: 100%;
  height: auto;
}

body.has-sp-footer-banner {
  padding-bottom: 70px;
}

@media (min-width: 1001px) {
  .sp-footer-banner {
    display: none !important;
  }

  body.has-sp-footer-banner {
    padding-bottom: 0;
  }
}


.wpcf7-form-control.wpcf7-previous{
  display: none;
}


/*====================================================================================================
管理ボタン
====================================================================================================*/

.wpEditBtn {
    z-index: 9999;
    position: fixed;
    bottom: 150px;
    right: -1px;
    display: grid;
    place-items: center;
    background-color: #333;
    border: 1px solid #333;
    text-align: center;
    color: #fff;
    border-radius: 10px 0 0 10px;
    line-height: 1.4;
    font-size: 14px;
    width: 80px;
    height: 80px;
    transition: all .3s;
}

.wpEditBtn:hover {
    background-color: #fff;
    color: #333;
    opacity: 1;
}


