@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
:root {
--green:#1b7c52;
--green-light:#e8f7f0;
--green-mid:#d0efdf;
--green-dark:#145c3c;
--accent:#f07d2a;
--accent-dark:#c4601a;
--text:#1a1a1a;
--text-mid:#444;
--text-soft:#666;
--text-hint:#999;
--bg:#fff;
--bg-soft:#f8faf9;
--bg-warm:#fff9f5;
--border:#e4e4e0;
--radius:10px;
--radius-lg:16px
}
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px
}
a {
  text-decoration: none;
  color: inherit
}
.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100
}
.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark)
}
.nav-logo span {
  color: var(--accent)
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent-dark)
}

@media(max-width:680px) {
.nav-cta {
  display: none
}
}







/* 共通hoverアニメーション */
.hoveranime {
  text-decoration: none;
  transition: transform 0.1s ease;
  position: relative; /* :after の絶対位置指定のための基準 */
}
.hoveranime:hover {
  animation: shake 0.5s 1;
}
/* 本体の揺れアニメーション */
@keyframes shake {
  0% { transform: translateY(0); }
  25% { transform: translateY(-5px); }
  75% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}
/* 矢印のアニメーション */
@keyframes arrowMove {
  0% { transform: translateY(-50%); }
  50% { transform: translateY(-50%) translateY(5px); }
  100% { transform: translateY(-50%); }
}









.hero {
  background: linear-gradient(160deg, #eaf7f1 0%, #fffaf6 60%, #fff 100%);
  padding: 80px 20px 90px
}
.hero-inner {
  max-width: 940px;
  margin: 0 auto
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

@media(max-width:680px) {
.hero-grid {
  grid-template-columns: 1fr;
  gap: 32px
}
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--green-mid);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green)
}
.hero h1 {
  font-size: clamp(18px, 3.6vw, 30px);
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 18px;
  color: #0d2b1a
}
.hero h1 .em1 {
  font-size: clamp(36px, 3.6vw, 60px);
  font-style: normal;
  color: var(--green)
}
.hero h1 .em2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-style: normal;
  color: var(--green)
}
.hero-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 28px
}
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 17px 34px;
  border-radius: 8px;
  border-bottom: 3px solid var(--accent-dark);
  margin-bottom: 8px
}
.hero-note {
  font-size: 11px;
  color: var(--text-hint);
  margin-top: 8px
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05)
}
.pain-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.12em;
  margin-bottom: 16px
}
.pain-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start
}
.pain-x {
  width: 20px;
  height: 20px;
  background: #fee;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0392b;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
  border: 1px solid #fcc
}
.pain-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55
}
.hero-pain-mobile {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-top: 0
}

@media(max-width:680px) {
.hero-pain-mobile {
  display: block
}
.pain-card {
  display: none
}
}
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--accent);
  padding: 14px 20px;
  text-align: center;
  border-top: 2px solid var(--accent-dark)
}
.mobile-bar a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block
}

@media(max-width:680px) {
.mobile-bar {
  display: block
}
body {
  padding-bottom: 56px
}
}
section {
  padding: 72px 20px
}
.inner {
  max-width: 900px;
  margin: 0 auto
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px
}
.sec-h {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 14px;
  color: #0d2b1a
}
.sec-sub {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 680px
}
.market {
  background: var(--bg-soft)
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 36px
}
.scard {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border)
}
.scard .big {
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px
}
.scard .big span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-hint)
}
.scard p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6
}
.market-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px
}

@media(max-width:600px) {
.market-2col {
  grid-template-columns: 1fr
}
}
.mblock h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--green)
}
.mblock p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8
}
.mblock p+p {
  margin-top: 8px
}
/* 大きく表現するCTAブロック */

.market-cta {
  margin-top: 48px;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center
}
.market-cta p {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 18px
}
.market-cta p em {
  font-style: normal;
  color: #7de8b4;
  font-size: 1.1em
}
.market-cta .sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 0
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px
}
.pd {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid #e07070
}

@media(max-width:500px) {
.pd {
  grid-template-columns: 1fr
}
}
.pd-n {
  font-size: 30px;
  font-weight: 700;
  color: #c0392b;
  line-height: 1
}
.pd h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 8px
}
.pd p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8
}
.pd .note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid var(--green-mid)
}
.whatis {
  background: var(--bg-soft)
}
.wi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px
}

@media(max-width:640px) {
.wi-grid {
  grid-template-columns: 1fr
}
}
.wi-left h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px
}
.wi-left h3+p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 18px
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border)
}
.spec-table tr {
  border-bottom: 1px solid var(--border)
}
.spec-table tr:last-child {
  border-bottom: none
}
.spec-table td {
  padding: 10px 14px;
  color: var(--text-mid)
}
.spec-table td:first-child {
  color: var(--green-dark);
  font-weight: 700;
  width: 40%;
  background: var(--bg-soft)
}
.mat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 14px;
  border: 1px solid var(--border)
}
.mat-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  border: 1px solid var(--green-mid)
}
.mat-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 6px
}
.mat-card p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7
}



/* BEFORE & AFTER */

.ba-wrap {
  margin-top: 40px
}
.ba-wrap h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--green)
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

@media(max-width:560px) {
.ba-grid {
  grid-template-columns: 1fr
}
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border)
}
.ba-label {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  text-align: center
}
.ba-label.before {
  background: #f5f5f5;
  color: var(--text-soft)
}
.ba-label.after {
  background: var(--green-dark);
  color: #fff
}
.ba-img {
  background: #eee;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-hint);
  font-size: 12px;
  overflow:hidden;
}
.ba-img img {
  width: 100%;
}
.ba-img svg {
  opacity: 0.35
}
.ba-caption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-soft);
  background: #fff;
  border-top: 1px solid var(--border);
  line-height: 1.6
}
.features {
  background: #fff
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px
}
.fcard {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--border)
}
.fcard-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid var(--green-mid)
}
.fcard h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 8px
}
.fcard p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8
}
.fcard ul {
  margin-top: 12px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}
.fcard ul li {
  font-size: 12px;
  color: var(--green-dark);
  display: flex;
  gap: 6px
}
.fcard ul li::before {
  content: '✓';
  font-weight: 700;
  color: var(--green)
}
.revenue {
  background: #fff
}
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px
}

@media(max-width:620px) {
.rev-grid {
  grid-template-columns: 1fr
}
}
.rcard {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--border);
  background: var(--bg-soft)
}
.rcard.hi {
  border-color: var(--green);
  background: var(--green-light)
}
.rcard h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 4px
}
.rcard .sub {
  font-size: 12px;
  color: var(--text-hint);
  margin-bottom: 16px
}
.rrow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px
}
.rrow:last-child {
  border-bottom: none
}
.rrow .k {
  color: var(--text-soft)
}
.rrow .v {
  font-weight: 700;
  color: #0d2b1a
}
.rrow .vg {
  font-weight: 700;
  color: var(--green-dark)
}
.rtotal {
  margin-top: 12px;
  background: #0d2b1a;
  color: #fff;
  border-radius: 8px;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.rtotal .tl {
  font-size: 12px;
  color: rgba(255,255,255,0.65)
}
.rtotal .tn {
  font-size: 18px;
  font-weight: 700;
  color: #7de8b4
}
.rev-merit {
  margin-top: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border)
}
.rev-merit h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 8px
}
.rev-merit p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8
}
.target {
  background: var(--bg-soft)
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 40px
}
.tcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border)
}
.tcard .icon {
  font-size: 24px;
  margin-bottom: 14px
}
.tcard h3 {
  font-size: 13px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 8px
}
.tcard p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7
}
.tcard ul {
  margin-top: 8px;
  list-style: none;
  padding: 0
}
.tcard ul li {
  font-size: 12px;
  color: var(--text-soft);
  padding: 2px 0;
  display: flex;
  gap: 6px
}
.tcard ul li::before {
  content: '→';
  color: var(--green);
  font-weight: 700
}
.cases {
  background: #fff
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px
}
.ccase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border)
}
.ccase-head {
  background: var(--green-dark);
  padding: 18px 20px
}
.ccase-head .atag {
  font-size: 11px;
  background: rgba(255,255,255,0.15);
  color: #b2f0d4;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px
}
.ccase-head h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px
}
.ccase-head .sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5)
}
.ccase-body {
  padding: 16px 18px;
  background: #fff
}
.crow {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px
}
.crow:last-child {
  border-bottom: none
}
.crow .k {
  color: var(--text-hint)
}
.crow .v {
  font-weight: 700;
  color: #0d2b1a;
  text-align: right;
  max-width: 60%
}
.cpoint {
  margin-top: 12px;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  padding: 9px 12px;
  font-size: 12px;
  color: var(--green-dark);
  line-height: 1.6;
  border-radius: 0 6px 6px 0
}
.voice {
  background: var(--bg-soft)
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 40px
}
.vcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  position: relative
}
.vcard::before {
  content: '"';
  font-size: 44px;
  color: var(--green-mid);
  position: absolute;
  top: 4px;
  right: 14px;
  line-height: 1;
  font-family: serif
}
.vcard p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px
}
.vcard .from {
  font-size: 11px;
  color: var(--text-hint);
  border-top: 1px solid var(--border);
  padding-top: 10px
}
.vcard .from strong {
  color: var(--green-dark)
}
.flow {
  background: var(--green-dark);
  padding: 72px 20px
}
.flow .eyebrow {
  color: #7de8b4
}
.flow .sec-h {
  color: #fff
}
.flow .sec-sub {
  color: rgba(255,255,255,0.65)
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
  margin-top: 48px
}
.fstep {
  text-align: center;
  padding: 0 10px;
  position: relative
}
.fstep:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 26px;
  font-size: 18px;
  color: #7de8b4;
  font-weight: 700
}

@media(max-width:580px) {
.flow-steps {
  grid-template-columns: 1fr
}
.fstep:not(:last-child)::after {
  content: '↓';
  right: 50%;
  bottom: -14px;
  top: auto;
  transform: translateX(50%)
}
.fstep {
  padding: 0 0 34px
}
}
.ficon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px
}
.fstep h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}
.fstep p {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5
}
.faq-list {
  margin-top: 32px
}
.faq-item {
  border-bottom: 1px solid var(--border)
}
.faq-q {
  padding: 17px 0;
  font-size: 14px;
  font-weight: 700;
  color: #0d2b1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.5
}
.faq-q .arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-hint);
  transition: transform 0.2s;
  margin-top: 1px
}
.faq-item.open .faq-q .arrow {
  transform: rotate(45deg);
  background: var(--green-light);
  color: var(--green-dark);
  border-color: var(--green-mid)
}
.faq-a {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.85;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 16px
}
.faq-a strong {
  color: #0d2b1a;
  font-weight: 700
}
.cta-final {
  background: var(--bg-warm);
  padding: 80px 20px;
  text-align: center
}
.cta-final h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 14px;
  line-height: 1.45
}
.cta-final .sub {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.85
}
.cta-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04)
}
.cta-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0d2b1a;
  margin-bottom: 8px
}
.cta-box p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 22px;
  line-height: 1.75
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}
.cbtn-main {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 7px;
  border-bottom: 3px solid var(--accent-dark);
  display: inline-block
}
.cbtn-sub {
  background: #fff;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 7px;
  border: 1px solid var(--border);
  display: inline-block
}
.cta-tel {
  margin-top: 20px;
  color: var(--text-hint);
  font-size: 12px
}
.cta-tel strong {
  color: #0d2b1a;
  font-size: 15px;
  display: block;
  margin: 4px 0
}









/* faq */
.faq {
background: #fff
}
.faqItem:not(:last-child) {
  margin-bottom: 15px;
}
.faqItem {
  background: #fff;
  padding: 18px 0;
}
.faqItem_q {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #EEEEEE;
}
.faqItem_q_txt {
    font-weight: 700;
    color: #0d2b1a;
}
.faqItem_a_txt {
    font-size: 14px;
}
.faqItem_q_heading{
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #1b7c52;
  text-align:center;
  line-height: 36px;
  background: #e8f7f0;
  font-size: 16px;
  font-weight: 600;
  margin-right: 35px;
  flex-shrink: 0;
}
.faqItem_a {
  display: flex;
  align-items: center;
}
.faqItem_a_heading{
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  text-align:center;
  line-height: 36px;
  background: #1b7c52;
  font-size: 16px;
  font-weight: 600;
  margin-right: 35px;
  flex-shrink: 0;
}
/*SP*/
@media screen and (max-width:960px){
.faq {
  padding: 60px 20px ;
}
.faqItem:not(:last-child) {
  margin-bottom: 15px;
}
.faqItem {
  background: #fff;
  padding: 15px 0;
}
.faqItem_q {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #EEEEEE;
}
.faqItem_q_txt {
    font-weight: 700;
    color: #0d2b1a;
    font-size: 14px;
}
.faqItem_a_txt {
    font-size: 13px;
}
.faqItem_q_heading{
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  margin-right: 20px;
}
.faqItem_a {
  display: flex;
  align-items: center;
}
.faqItem_a_heading{
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  margin-right: 20px;
}
}







/* contact */
.contact {
  padding: 90px 0 80px;
}
.p-contact__table {
  color: #333;
  max-width: 1280px;
  margin: 0 auto;
}
.p-contact__row {
  display: flex;
  padding: 20px 30px;
  background: #f8faf9;
  align-items: flex-start;
  border-left:3px solid #1b7c52;
}
.p-contact__row:not(:last-child) {
  margin-bottom: 10px;
}
.p-contact__data input{
  width: 550px;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 15px;
  background-color: #fff !important;
  border:1px solid var(--border);
}
.p-contact__data.zipcode input{
  width: 200px;
}
.p-contact__data textarea {
  width: 550px;
  border:none;
  border-radius: 4px;
  padding: 15px;
  min-height: 200px !important; /* 優先順位を上げる */
  height: 200px; /* 初期高さを明示 */
  font-size: 15px;
  resize: vertical; /* 縦方向にのみリサイズ可能 */
  border:1px solid var(--border);
  font-weight: : normal;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}
.p-contact__label {
  margin-right: 20px;
  font-size: 15px;
  font-weight: 500;
  width: 220px;
}
.p-contact__label--required {
  font-size: 11px;
  color: #fff;
  background: #EC3437;
  padding: 4px 8px;
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
  border-radius: 2px;
}
.p-contact__label--note {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  margin-top: 5px;
}
.p-contact__privacy {
  text-align: center;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
}
.p-contact__privacyInput {
  text-align: center;
}
.p-contact__note {
  text-align: center;
  font-size: 18px;
  font-weight:normal;
  margin-top: 30px;
}
.p-contact__radio label {
  display: block;
}
.p-contact__radio label:not(:last-child) {
  margin-bottom: 10px;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit input {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: #145c3c;
  padding: 25px 90px;
  border-radius: 100px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: .3s;
}
.p-contact__submit input:hover {
  opacity: 0.7;
}
.p-contact__submit input:disabled {
  opacity: 0.5
}
.p-contact__submit input:disabled:hover {
  opacity: 0.5;
}
/* textareaのplaceholder文字色を変更 */
.wpcf7 textarea::placeholder {
  color: #999; 
  opacity: 1;
  font-size: 15px;
  font-weight: normal;
}

/* 念のためinputも一緒に変更したい場合 */
.wpcf7 input::placeholder {
  color: #999;
  opacity: 1;
  font-size: 15px;
  font-weight: normal;
}
/*SP*/
@media screen and (max-width:960px){
.contact {
  padding: 60px 20px 60px;
}
.p-contact__table {
  max-width: 1000px;
  margin: 0 auto;
}
.p-contact__row {
  display: block;
  padding: 20px 15px;
}
.p-contact__row:not(:last-child) {
  margin-bottom: 20px;
}
.p-contact__data input{
  width: 100%;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 14px;
}
.p-contact__data.zipcode input{
  width: 100%;
}
.p-contact__data textarea {
  width: 100%;
  max-width: 100%;
  border:none;
  border-radius: 4px;
  padding: 15px;
  font-size: 14px;
}
.p-contact__label {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  width: auto;
}
.p-contact__label--required {
  font-size: 13px;
  color: #fff;
  background: #EC3437;
  padding: 2px 4px;
  display: inline-block;
  margin-left: 10px;
}
.p-contact__label--note {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  margin-top: 5px;
}
.p-contact__privacy {
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
  font-weight: 700;
}
.p-contact__privacyInput {
  text-align: center;
}
.p-contact__note {
  text-align: center;
  font-size: 13px;
  font-weight:normal;
  margin-top: 30px;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit input {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 20px;
  border-radius: 100px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: .3s;
  width: 100%;
}
/* textareaのplaceholder文字色を変更 */
.wpcf7 textarea::placeholder {
  color: #999; 
  opacity: 1;
  font-size: 14px;
  font-weight: normal;
}

/* 念のためinputも一緒に変更したい場合 */
.wpcf7 input::placeholder {
  color: #999;
  opacity: 1;
  font-size: 14px;
  font-weight: normal;
}
}


.wpcf7-spinner {
  visibility: hidden;
  display: block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 20px auto;
  position: relative;
}

/* 送信完了時、メッセージ以外は非表示 ※サンクスページ遷移させない場合*/
form.wpcf7-form.sent .p-contact__table,
form.wpcf7-form.sent .p-contact__privacy,
form.wpcf7-form.sent .p-contact__privacyInput,
form.wpcf7-form.sent .p-contact__note,
form.wpcf7-form.sent .p-contact__submit {
  display: none !important;
}




/* thanks */
.thanks {
  padding: 80px 0 70px;
}
.thanks_ttl {
  font-size: 30px;
  font-weight: 700;
  color: #145c3c;
  margin-bottom: 40px;
  text-align: center;
}
.thanks_txt {
  text-align: center;
}
/*SP*/
@media screen and (max-width:960px){
.thanks {
  padding: 50px 0 30px;
}
.thanks_ttl {
  font-size: 24px;
  margin-bottom: 35px;
}
.thanks_txt {
  text-align: left;
}
}














footer {
  background:var(--green-dark);
  padding: 60px 24px;
}
.footer_img {
  max-width: 200px;
  margin:0 0 20px;
}
.footer_img img {
  width: 100%;
}
.footer_txt {
  font-size: 14px;
  color: #fff;
}
.footer_tel {
  font-size: 14px;
  color: #fff;
}
/*SP*/
@media screen and (max-width:960px){

footer {
  background:var(--green-dark);
  padding: 40px 20px;
}
.footer_img {
  max-width: 150px;
  margin:0 0 15px;
}
.footer_txt {
  font-size: 13px;
}
.footer_tel {
  font-size: 13px;
}
}










