/* -------要素の外側は余白なし------- */
/* -------改行の高さ------- */
/* -------文字色は濃いグレー------- */
/* -------要素の枠線は幅を増やしても内側に------- */
/* -------改行の文字の折り返し------- */
body {
	margin: 0;
	font-family: sans-serif, "Noto Serif JP", serif;
	line-height: 1.8;
	color: var(--color-gray-900);
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* --スマホでのみ表示-- */
.sp {
	display: block;
}
@media (min-width: 769px) {
	.sp {
		display: none;
	}
}
/* --PCでのみ表示-- */
.pc {
	display: block;
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
}

/* --画像はブロック要素で１つの段落-- */
img {
	display: block;
}

/* --firefoxの画像クリックしたときの枠線を消す、リンクの下線を表示しない-- */
a {
	outline: none;
	text-decoration: none;
	color: #444;
}
a:focus {
	outline: none;
}

/* --文章のSPAN内は余白調整できるようにインラインブロック要素-- */
span {
	display: inline-block;
}

/* --太文字-- */
b, strong {
	font-weight: bold;
}

/* -------インナーの左右の余白------- */
.inner {
	margin: 0 auto;
	padding-right: 10px;
	padding-left: 10px;
}

/* -------フロートの解除------- */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* -------メインコンテンツのブロックの上下間隔------- */
#content {
	padding-bottom: 20px;
	width: 100%;
}

/* -------サイドバーのブロックの上下間隔------- */
#sub {
	padding-bottom: 20px;
	width: 100%;
}

/*--コンテンツとサイドバーを横に並べる設定--*/
#container {
	display: flex;
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 10px;
}

/*--スマホの時はコンテンツとサイドバーを縦並びにする設定--*/
@media (max-width: 960px) {
	#container {
		flex-direction: column;
	}
}

/*--パソコンの時はコンテンツとサイドバーを7対3で横に並べる設定--*/
@media (min-width: 961px) {
	#content {
		width: 70%;
		float: left;
	}

	#sub {
		width: 30%;
		float: left;
	}

	/* --コンテンツの右側に余白を設けてサイドバーとの間に隙間を空ける-- */
	#content {
		padding-right: 30px;
	}
}

/*--コンテンツとサイドバーを横に並べる設定--*/
@media (min-width: 1200px) {
	.inner {
		width: 1200px;
		margin: 0 auto;
	}
}


/* -----------トップページ-------------- */
/*-- ヒーローセクションのCSS --*/
.hero {
	background-image: url("../img/pest_lp_bg.jpg");
	background-size: cover;
	background-position: center;
	padding: 0px 20px;
}

.hero-inner {
  display: flex;
  max-width: 1280px;
  justify-content: center; /* ← これを追加 */
  margin: 0 auto;
  flex-wrap: wrap;
	flex-direction: row-reverse;
}

/* hero画像 */
.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
	z-index: 2;
  position: relative;
  margin: 0 auto;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.hero {
	background-image: none;
  padding: 0px;
	}
}

/*-- ご挨拶セクションのCSS --*/
.greeting-section {
	margin: 60px 0;
}
.greeting-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex: 1;
	justify-content: center;
}
.greeting-image {
	max-width: 300px;
	padding: 0 20px;
}
.greeting-image img {
	border-radius: 50%;
}
.greeting-text {
	padding: 0 20px;
}
/* スマホ対応 */
@media (max-width: 768px) {
  .greeting-container {
	flex-direction: column;
	}
	.greeting-image {
	align-self: center;
	max-width: 240px;
}
}

/*-- サービス選択セクションのCSS --*/
.select-section {
	margin: 60px 0;
}
.select-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex: 1;
	justify-content: center;
}
.select-image {
	padding: 10px;
}
.select-image img {
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}
.select-image img:hover {
	transform: translateY(-5px);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .select-container {
	flex-direction: column;
	}
	.select-image {
	align-self: center;
	padding: 10px 20px;
}
}

/*-- ネズミ駆除の対応エリアCSS --*/
.area-section {
	background-color: var(--color-primary);
	padding: 40px 0;
	text-align: center;
}
.area-inner {
	color: #fff;
	font-size: 2em;
	font-weight: bold;
}
@media (max-width: 768px) {
  .area-section {
	padding: 20px 0;
	}
	.area-inner {
	font-size: 1.2em;
}
}

/*-- サービスセクションのCSS --*/
.services {
  /*background: url("../img/services.jpg") no-repeat center center / cover;*/
	background-color: var(--color-bg);
  padding: 0 0 80px 0;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
}

.services-cta {
  max-width: 800px;
  margin: 20px auto;
	background-color: var(--color-primary);
	border-radius: 16px;
	transition: transform 0.3s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.services-cta:hover {
  transform: translateY(-5px);
}
.services-cta p {
	color: white;
	font-size: var(--font-xl);
	font-weight: bold;
	text-align: center;
	padding-top: 20px;
} 
.services-cta img {
	width: 100%;
	height: auto;
	border-radius: 0 0 26px 26px;
	padding: 20px 10px 10px 10px;
}
@media (max-width: 768px) {
	.services-cta {
	 margin: 20px 10px;
}
	.services-cta p {
	font-size: var(--font-lg);
} 
}
/* ネズミLP用お問い合わせバナーのCSS */
.services-cta-rat {
  max-width: 800px;
  margin: 0 auto;
	transition: transform 0.3s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.services-cta-rat:hover {
  transform: translateY(-5px);
}

.services-cta-rat img {
	width: 100%;
	height: auto;
}
@media (max-width: 768px) {
	.services-cta-rat {
	 margin: 0 10px;
}
}

.container {
    flex-direction: column;
	padding: 40px 20px;
      }

/* スマホ対応 */
@media (max-width: 768px) {
  .section-subtitle {
  font-size: 16px;
	  text-align: left;
	}
}

/* 小さいスマホ対応 */
@media (max-width: 599px) {
	.container {
	padding: 40px 5px 0;
      }
	.section-subtitle {
	margin: 0 20px 20px;
	}
}

/* ================================================
   troubleセクション
   ================================================ */
.section-trouble {
  /*background-color: var(--color-primary);*/
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/trap_1.jpg") center/cover no-repeat;
}

@media (max-width: 768px) {
  .section-trouble {
    padding: 40px 20px;
  }
}

.section-trouble .trouble-inner {
  max-width: 800px;
  margin: 0 auto 60px;
  background-color: #fff;
  background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 16px;
  padding: 40px 60px;
}

@media (max-width: 768px) {
  .section-trouble .trouble-inner {
    padding: 30px 24px;
  }
}

/* リード文 */
.section-trouble .trouble-lead {
  font-size: var(--font-xxl);
  font-weight: bold;
  margin-bottom: var(--space-4);
  width: fit-content; /* テキスト幅に縮める */
  margin-left: auto;  /* 中央寄せ */
  margin-right: auto; /* 中央寄せ */
}

@media (max-width: 768px) {
  .section-trouble .trouble-lead {
    font-size: var(--font-xl);
	  text-align: center;
  }
}

/* リスト */
.section-trouble .trouble-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
}

.section-trouble .trouble-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.6;
}

/* ✅アイコン */
.section-trouble .trouble-list li::before {
  content: "✅";
  flex-shrink: 0;
}

/* 点の下線 */
.section-trouble .trouble-list li span {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  color: var(--color-gray-900);
}

/*-- 6つの強みセクションのCSS --*/
.strengths {
  margin: 0 auto;
  background-color: var(--color-bg);
}

.strengths-inner {
max-width: 1200px;
	margin: 0 auto;
  padding-bottom: 60px;
}

.strengths-header {
  text-align: center;
	position: relative;
}

.point {
  display: flex;
  justify-content: space-between;
  padding: 0;
  gap: 20px;
  margin-bottom: 60px;
  border: solid 1px var(--color-primary);
  border-radius: 16px;
  background-color: var(--color-white);
}

.point.reverse {
  flex-direction: row-reverse;
}

.point-text {
  flex: 1.5;
	padding: 0 20px;
}

.point-text h3 {
	color: var(--color-primary);
  font-size: var(--font-xxl);
  font-weight: bold;
  margin: var(--space-md) 0;
}

.point-text p {
  font-size: var(--font-md);
}

.point-text img {
  margin-left: -20px;
}

.point-img {
  flex: 1;
}

.point-img img {
  width: 100%;
  border-radius: 36px;
  padding: 20px;
}

/*-- スマホ対応 --*/
@media (max-width: 768px) {
	.strengths-header h2 {
	font-size: var(--font-xxl);
}
  .point {
  flex-direction: column;
	  padding: 0;
    margin: 0 10px 20px;
	}
	.point-text h3 {
  font-size: var(--font-xl);
	}
  .point-text p {
  font-size: var(--font-md);
}
	.point-text img {
  width: 50%;
}
	.point.reverse {
  flex-direction: column;
}
	.strengths-header img {
	max-width: 300px;
}
}

/*-- 調査事例のセクション --*/
.cases {
  padding: 60px 20px;
  text-align: center;
	/*background: url("../img/rat_lp_bg.jpg") no-repeat center center / cover;*/
}

.cases p {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cases-header {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.cases-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cases-header p {
  font-size: var(--font-md);
  margin-bottom: 40px;
}

.cases-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
	max-width: 1280px;
  margin: 0 auto;
}

.case-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 240px;
  display: flex;
  flex-direction: column;
	transition: transform 0.3s ease;
}

/*-- スマホ対応 --*/
@media (max-width: 768px) {
	.cases-header {
	max-width: 420px
}
  .cases-header .cases-nagura img {
	  top: -50%;
	width: 100px;
	}
	.cases-header h2 {
  font-size: 24px;
	}
  .cases p {
  font-size: 16px;
}
}

.case-img {
  position: relative;
}

.case-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-sm);
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 40px;
}

.badge.pet {
  background: #0c884b;
}

.case-body {
  padding: 15px;
  text-align: left;
}

.case-body h3 {
  margin: 0 0 10px;
}

.case-body p {
  font-size: var(--font-md);
  margin-bottom: 12px;
}

.case-body ul {
  font-size: var(--font-md);
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.case-body ul li {
  margin-bottom: 5px;
}

.arrow-link {
	text-align:right;
}

.arrow-link .alignright {
	margin-top: 0;
	margin-bottom: 0;
}

.arrow-link img {
  display: inline-flex;
  align-items: center;
	justify-content: flex-end;
	transition: transform 0.3s ease;
}

.case-card:hover .arrow-link img {
  transform: translatex(5px);
}

.cases-footer {
  margin-top: 40px;
}

.case-btn {
  display: inline-block;
	width: 200px;
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
	background: #4caf50;
  color: #fff;
	transition: background-color 0.3s ease;
	position:relative;
}

.case-btn::before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url("../img/arrow_white.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}	

.case-btn:hover {
	background: #072608;
}

/*-- 調査料金表のCSS --*/
section.pricing {
      background-color: #103d18;
      color: #fff;
      text-align: center;
      padding: 80px 20px 100px;
      position: relative;
      overflow: hidden;
    }

    /* 背景の透かし文字 TRUST */
    section.pricing::before {
      content: "TRUST";
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      font-size: 220px;
      font-weight: bold;
	font-style: italic;
      color: rgba(255, 255, 255, 0.08); /* 薄い透かし */
      letter-spacing: -2px;
      z-index: 0;
      white-space: nowrap;
    }

    section.pricing h2,
    section.pricing p {
      position: relative;
      z-index: 1;
    }

    section.pricing .section-title-wrapper h2 {
		color: #fff;
    }

    section.pricing p {
      font-size: 15px;
      margin-bottom: 40px;
    }

    .cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: -80px;
      position: relative;
      z-index: 1;
	padding: 0 20px; 
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      flex: 1;
      max-width: 300px;
      padding: 30px 20px;
      text-align: center;
    }

    .card h3 {
      font-size: 32px;
		padding-bottom: 10px;
      margin: 10px 20px;
		border-bottom: solid 2px #71C366;
		color: #072608;
		font-weight: bold;
    }

    .card .card-price {
      font-size: 28px;
      font-weight: bold;
      color: #0a4d1a;
    }

    .card .card-price span {
      font-size: 14px;
    }

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1319px) {
	.card h3 {
    font-size: 24px;
	margin: 10px 0;
    }
}
/* スマホ対応 */
@media (max-width: 768px) {
	section.pricing::before {
      top: 2%;
      font-size: 100px;
    }
  .cards {
	flex-direction: column;
}
	.card {
	margin: 0 auto;
}
	.card h3 {
	font-size: 24px;	
	}
	.card .card-price {
      font-size: 20px;
    }
}

    .price-badge {
      display: inline-block;
    width: calc(100% - 40px);
    padding: 4px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    background: #4caf50;
    color: #fff;
	margin: 10px auto;
    }

    .card p {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
		text-align:left;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 40px auto;
      max-width: 1060px;
      padding: 0 20px;
    }

    .feature {
		color: #fff;
      background: #072608;
      padding: 12px 15px 12px 50px;
      font-size: 14px;
		font-weight: bold;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
		position: relative;
    }

    .feature::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url("../img/check_white.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}	

@media (max-width: 768px) {
	.features {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      padding: 0 20px;
    }
}

    .more-btn {
      display: inline-block;
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
	background: #4caf50;
  color: #fff;
	transition: background-color 0.3s ease;
	position:relative;
    }

.more-btn::before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url("../img/arrow_white.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

    .more-btn:hover {
      background: #43a047;
    }

/*-- ブログセクションのCSS --*/
.blog-section {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/trace_1.jpg") center/cover no-repeat;
	/*background: url("../img/clinic_img_1.webp") no-repeat center center / cover;*/
	color: #fff;
	text-align: center;
	padding-bottom: 60px;
}

.blog-header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

section.blog-section .blog-header .section-title-wrapper h2 {
  color:#fff;
}

section.blog-section .blog-header .section-title-wrapper h2 .search-icon {
	position: relative;
	padding-left: 70px;
}

section.blog-section .blog-header .section-title-wrapper h2 .search-icon::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-image: url("../img/search_icon.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

.blog-header p {
  font-size: var(--font-lg);
  line-height: 1.8;
  color: #fff;
	padding: 0 10px;
}

.blog-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
	margin-bottom: 40px;
	padding: 0 10px;
}

.blog-card {
  background: #fff;
  color: #333;
  overflow: hidden;
  width: 585px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
}

.blog-thumb img {
  width: 230px;
  height: 230px;
  display: block;
	object-fit: cover;
}

.blog-content {
  padding: 15px;
  text-align: left;
	width: 355px;
	flex: 1;
}

.blog-category {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.blog-date {
  display: inline-block;
  font-size: 12px;
  color: #777;
  margin-left: 10px;
}

.blog-content h3 {
  font-size: 16px;
  margin: 8px 0;
}

.blog-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.blog-header p {
  text-align: left;
}
  .blog-thumb img {
  width: 100px;
  height: 100px;
	}
	.blog-content {
  padding: 5px;
	width: 355px;
	flex: 1;
	}
	.blog-category {
  padding: 0 8px;
	}
	.blog-content h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 0 4px;
	}
}

.blog-more {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.blog-more a {
   display: inline-block;
	width: 240px;
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
	background: #4caf50;
  color: #fff;
	transition: background-color 0.3s ease;
	position:relative;
}

.blog-more a::before {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url("../img/arrow_white.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

.blog-more a:hover {
  background: #072608;
}

/*-- CheckpointセクションのCSS --*/
.checkpoint-section {
  background: url("../img/check_point.jpg") no-repeat center center / cover;
  padding: 60px 20px;
}

.checkpoint-section h3 {
  padding: 10px 20px;
  font-weight: bold;
	font-size: 28px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
	background: var(--color-primary);
  color: #fff;
	transition: background-color 0.3s ease;
	position: relative;
	z-index: 2;
	margin: 0px auto;
	display: inline-block;
  border-radius: 16px;
}

.checkpoint-header {
  text-align: center;
  margin: 0 auto 50px;
	position: relative;
	max-width: 1200px;
}

.checkpoint-header .en {
  font-size: 60px;
  font-weight: bold;
}

.checkpoint-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

.checkpoint-header p {
  font-size: 18px;
  margin-bottom: 10px;
}

.checkpoint-header .lead {
  font-size: 16px;
  line-height: 1.8;
}

.checkpoint-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
	background-color: var(--color-bg-sub);
	position: relative;
	max-width: 1200px;
	margin: -20px auto 120px;
	padding: 60px 0;
}

.checkpoint-block.reverse {
  flex-direction: row-reverse;
  margin-bottom: -60px;
}

.checkpoint-text {
  max-width: 640px;
	padding: 0 40px;
}

.checkpoint-text h4{
  font-size: 28px;
  font-weight: bold;
	line-height: 1.5;
  color: var(--color-primary)
}

.checkpoint-text p {
  line-height: 1.8;
}

.checkpoint-text .check-badge {
  text-align: right;
}

.checkpoint-text .check-badge img {
	width: 200px;
	display: inline-block;
	padding: 10px 20px;
}

.checkpoint-image {
   max-width: 500px;
	margin-bottom: -80px;
	margin-right: -50px;
}

.checkpoint-image img {
  margin-bottom: -40px;
  border-radius: 16px;
}

 .reverse .checkpoint-image {
	margin-left: -50px;
}
 .reverse .checkpoint-image img {
  margin-bottom: -40px;
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1319px) {
	.checkpoint-header .checkpoint-nagura img {
	width: 100px;
}
	.checkpoint-block {
	gap: 0;
	}
	.checkpoint-text {
 	 width: 50%;
	}
	.checkpoint-image {
	margin-right: 0;
	}
	.reverse .checkpoint-image {
	margin-left: 0;
	}
}

/* スマホ対応 */
@media (max-width: 768px) {
  .checkpoint-section h3 {
	 font-size: 20px;
	padding: 10px 20px;
	  line-height: 1.5;
  }
	.checkpoint-header .en {
  font-size: 32px;
}
	.checkpoint-header h2 {
  font-size: 24px;
	line-height: 1.5;
}

	.checkpoint-text h4 {
  font-size: 20px;
}
.checkpoint-text {
	padding: 0 20px;
}
	.checkpoint-image {
	margin-right: 20px;
  margin-left: 20px;
	margin-bottom: -40px;
	}
	.reverse .checkpoint-image {
	margin-right: 20px;
	margin-left: 20px;
	}
}

.industry-diagram {
  padding: 40px 0px;
	max-width: 1100px;
	margin: 0 auto;
}

.industry-diagram h3 {
  background-color: #072608;
	color: #fff;
	margin: 0 auto -25px;
	border-radius: 10px;
	position: relative;
	padding: 10px 10px 10px 50px;
	width: 660px;
	font-size: 26px;
	line-height: 1.5;
}

.industry-diagram h3::before {
	content: "";
	position: absolute;
	left: 50px;
	top: 15px;
	line-height: 1.5;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	background-image: url("../img/diagram_check.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

.industry-diagram h3 span {
  font-size: 16px;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.industry-diagram {
  padding: 0px;
}
  .industry-diagram h3 {
    width: calc(100% - 20px);
	  padding: 10px 0;
  }
	.industry-diagram h3::before {
	left: 30px;
	top: 15px;
	}
	.industry-diagram h3 span {
  font-size: 15px;
}
}

.industry-diagram-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
	background-color: #fff;
	padding: 60px 20px;
}

.diagram-left img {
  height: auto;
}

.diagram-right {
  flex: 1;
}

.diagram-right h2 {
  color: #072608;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.6;
	font-weight: bold;
	text-align: left;
}

.diagram-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diagram-right ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.5;
	text-align: left;
	font-size: 15px;
}

.diagram-right ul li::before {
	content: "";
	position: absolute;
	padding-top: 2px;
	left: 0;
	top: 2px;
	line-height: 1.5;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background-image: url("../img/circle_arrow_green.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

.diagram-arrow {
	margin-top: -30px;
}

/* 下部帯 */
.bottom-banner {
  margin-top: 40px;
  padding: 16px 20px 16px 60px;
  background: #fff;
  display: flex;
  align-items: center;
  font-size: 26px;
	line-height: 1.5;
  font-weight: bold;
	color: #072608;
	position:relative;
}

.bottom-banner ::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 20px;
	line-height: 1.5;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	background-image: url("../img/diagram_icon.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .industry-diagram-container {
    flex-direction: column;   /* 縦並び */
    align-items: center;
  }

  .diagram-left img {
    max-width: 100%;         /* 画面幅にフィット */
    margin-bottom: 20px;
  }

  .diagram-right {
    width: 100%;
  }

  .bottom-banner {
    flex-direction: column;
    text-align: left;
	  font-size: 16px;
  }

  .bottom-banner .icon {
    margin-bottom: 8px;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .checkpoint-block {
    flex-direction: column;
  }
  .checkpoint-block.reverse {
    flex-direction: column;
  }
}

/*-- エビデンスセクションのCSS --*/
.evidence-section {
  background: #EAFFE5;
  padding: 0 0 60px 0;
}
.evidence-inner {
  padding: 0px 20px;
}
.evidence-container {
  margin: 0px auto;
	padding: 0px 40px 40px 40px;
	max-width: 1200px;
	text-align: center;
}
.evidence-header-wrapper {
	background-color: #fff;
	padding-top: 60px;
}
.evidence-header {
	max-width: 1200px;
	margin: 0 auto;
  text-align: center;
	display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
	justify-items: center;
}

}

.evidence-header h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: bold;
}

.evidence-header p {
  font-size: 16px;
  line-height: 1.8;
}

/* Green Highlight Strip */
.evidence-highlight {
  background: #072608;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin: -40px 0 40px 0;
  border-radius: 8px;
	z-index: 3;
}

.evidence-highlight p {
  font-size: 44px;
  font-weight: bold;
}

.evidence-highlight .small {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.evidence-top {
	font-size: 40px;
}

/* Strength Icons */
.evidence-strengths {
  display: flex;
  justify-content: space-around;
  margin: 50px 0;
  text-align: center;
	gap: 20px;
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1319px) {
	.evidence-header-wrapper {
	padding-bottom: 30px;
	}
	.evidence-header {
	grid-template-columns: 1fr minmax(470, 3fr) 1fr;
    grid-template-rows: auto;
	gap: 0;
	}
	.evidence-header h2 {
	font-size: 22px;
	}
	.evidence-header p {
	font-size: 14px;
	}
}

/* スマホ対応 */
@media (max-width: 768px) {
	.evidence-container {
	padding: 0;
	}
	.evidence-header {
	grid-template-columns: 1fr;
    grid-template-rows: auto;
	}
	.evidence-header h2 {
	font-size: 20px;
	}
	.evidence-header p {
	font-size: 15px;
	}
	.evidence-badge {
 	width: 100px;
	}
	.evidence-text {
	font-size: 15px;
	}
	.evidence-image {
	margin-top: 0px;
	margin-bottom: 20px;
	width: 200px;
	}
	.evidence-highlight {
	padding: 30px 20px 20px;
  margin: -40px 5px 40px 5px;
	}
	.evidence-highlight p {
	font-size: 20px;
	line-height: 1.5;
	}
	.evidence-highlight .small {
	font-size: 14px;
	}
	.evidence-top h3 {
	font-size: 20px;
	}
	.evidence-strengths {
	flex-direction: column;
	padding: 0 40px;
	margin: 20px 0;
	}
}

.strength-item {
  flex: 1;
}

.strength-item img {
  display: inline-block;
}

.strength-item .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.strength-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #006400;
}

/* Checklist */
.checklist {
  text-align: center;
  margin-bottom: 50px;
}

.checklist-top {
    font-size: 40px;
}

.checklist h3 p {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.checklist ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  padding: 20px 40px 0;
  margin: 0 auto;
  max-width: 1300px;
}

.checklist ul li {
	text-align: left;
	font-size: 20px;
	position: relative;
	padding-left: 30px;
}

.checklist ul li::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url("../img/circle_check_darkgreen.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

.checklist p {
  font-size: 14px;
  margin: 20px 20px 20px 0;
	text-align: left;
}

.left20 {
	margin-left: 20%;
	color: #072608;
}

/* After Evidence */
.after-evidence {
  text-align: center;
  margin-bottom: 50px;
	position: relative;
	color: #072608;
}

.after-evidence h3 span {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.after-evidence h4 {
	font-size: 32px;
	font-weight: bold;
}

.after-evidence p {
	font-size: 20px;
}

.after-evidence-nagura img {
  position: absolute;
	left: 0;
	bottom: 0;
	max-width: 200px;
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1080px) {
	.after-evidence-nagura img {
	display: none;
}
	.left20{
	margin: 0;
}
}

/* スマホ対応 */
@media (max-width: 768px) {
	.checklist ul li {
	font-size: 16px;
	}
	.after-evidence h3 span {
  font-size: 18px;
	}
	.checklist h3 p {
	font-size: 18px;
	}
    .checklist-top h3 {
    font-size: 20px;
	margin: 20px auto;
    }
	.after-evidence {
  margin-bottom: 0px;
}
	.after-evidence h4 {
	font-size: 18px;
	margin-bottom: 20px;
	}
	.after-evidence p {
	font-size: 15px;
	}
	.after-evidence-nagura img {
  position: static;
	margin: 20px auto 0;
	}
		.left20{
	margin: 0;
}
}

/* Report Samples */
.report-samples {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.sample {
  /* background: #fff; */
  border: 2px solid #ddd;
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  position: relative;
  overflow: hidden;
}

/* 疑似要素で背景を設定 → テキストに影響させない */
.sample::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.5);      /* 背景だけ明度を50%アップ */
  z-index: -1;                  /* テキストの背面に配置 */
}

/* 各要素ごとに別々の背景画像を指定 */
.sample1::before {
  background-image: url("../img/sample_bg_1.jpg");
}
.sample2::before {
  background-image: url("../img/sample_bg_2.jpg");
}
.sample3::before {
  background-image: url("../img/sample_bg_3.jpg");
}
.sample4::before {
  background-image: url("../img/sample_bg_4.jpg");
}

/* CTA Buttons */
.cta-buttons {
  text-align: center;
}

.cta-btn {
  display: block;
  padding: 4px 20px;
  margin: 20px auto;
  border-radius: 30px;
  font-weight: bold;
	font-size:22px;
  text-decoration: none;
	background-color: #71C366;
	color: #fff;
	max-width: 480px;
	transition: 0.3s;
	position: relative;
}

.cta-btn::before {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url("../img/arrow_white.png"); /* ← ここに画像のパスを指定 */
	background-size: contain;
	background-repeat: no-repeat;
}

.cta-btn:hover {
	background-color: #072608;
	color: #fff;
}
/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1319px) {
	.checklist ul {
    grid-template-columns: 1fr 1fr;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .strengths {
    flex-direction: column;
    gap: 20px;
  }
  .checklist ul {
    grid-template-columns: 1fr;
  }
  .report-samples {
    grid-template-columns: 1fr 1fr;
  }
	.cta-btn {
	font-size:16px;
	}
}

/*-- 私たちの目標セクションのCSS --*/
.mission-section {
	background: url("../img/clinic_img_2.webp") no-repeat center center / cover;
  padding: 60px 0;
  background-color: white;
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
	padding: 40px 0;
  gap: 40px;
	flex-direction: row-reverse;
}

.mission-image {
	flex: 1 1 40%;
}

.mission-image img {
	z-index: 3;
	width: 100%;
	max-width: 480px;
	border-radius: 50%;
}

.mission-text {
  flex: 1 1 100%;
}

.mission-image h2 {
  color: var(--color-primary);
  font-size: var(--font-xxl);
  font-weight: bold;
  line-height: 1.5;
}

.highlight {
  background: var(--color-secondary);
  color: #fff;
  font-weight: bold;
	font-size: 20px;
  padding: 8px 12px;
  margin: 20px;
}

.description {
  font-size: var(--font-md);
  line-height: 1.8;
	margin: 10px;
}

/* タブレット対応 */
@media (max-width: 1319px) {
	 .mission-container {
    flex-direction: column;
	padding: 40px 20px;
	}
}

/* スマホ対応 */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
	padding: 0px 20px;
  }
  .mission-image img {
    width: 200px;
	margin: 0 auto;
  }

  .mission-text {
    padding: 0 20px;
  }

  .mission-image h2 {
    font-size: var(--font-xl);
	  text-align: center;
	  padding: 10px;
  }
	.highlight {
	font-size: 15px;
  margin: 20px 0px;
}
}

/*-- お客様の声セクションのCSS --*/
.reviews-section {
  text-align: center;
  padding: 0 20px 60px 20px;
	background-color:var(--color-bg-sub);
}

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0px auto 40px;
	max-width: 1000px;
}

.button-wrapper {
  margin-top: 20px;
	text-align: center;
}

.more-btn {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 16px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.more-btn:hover {
  background: #072608;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 100%;
    max-width: 320px;
  }
}

/* ================================================
   faqセクション
   ================================================ */
.section-faq {
  /*background-color: var(--color-primary);*/
  /* 背景色を白に設定 */
  background-color: #ffffff;
  
  /* 縦線と横線をグラデーションで作成 */
  background-image: 
    linear-gradient(to right, #e0f0ff 1px, transparent 1px),
    linear-gradient(to bottom, #e0f0ff 1px, transparent 1px);
  
  /* 方眼のサイズを指定（20px間隔） */
  background-size: 20px 20px;
  padding: 0 20px 60px 20px;
}

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

.section-haq .faq-inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 60px;
}

@media (max-width: 768px) {
  .section-faq .faq-inner {
    padding: 30px 24px;
  }
}

/* よくある質問 */
.section-faq h2 {
  font-size: var(--font-xxl);
  font-weight: bold;
  color: var(--color-white);
  width: fit-content; /* テキスト幅に縮める */
  margin-left: auto;  /* 中央寄せ */
  margin-right: auto; /* 中央寄せ */
}

@media (max-width: 768px) {
  .section-faq h2 {
    font-size: var(--font-xl);
  }
}

/*-- オフィスMapセクションのCSS --*/
.map-section {
	background-color: var(--color-bg);
}

.map-container {
    display: flex;
	max-width: 1200px;
	margin: 0 auto;
  padding-bottom: 60px;
    }

/* 左半分を背景画像で固定 */
.map-left {
	flex: 1;
    background: url("/img/map_img.png") no-repeat center center;
    background-size: cover;
	margin: 0px 40px;
    }

/* 右半分の住所カード */
    .map-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    box-sizing: border-box;
	margin: 40px;
    }

    .map-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	background-color: #fff;
    }

    .map-card h3 {
    color: var(--color-primary);
    font-size: var(--font-xl);
	font-weight: bold;
    }

    .map-card p {
    margin: 4px 0;
    line-height: 1.6;
    }
    .map-card a {
    color: #2c8b42;
    text-decoration: none;
    }
    .map-card a:hover {
    text-decoration: underline;
    }

/* スマホ対応 */
    @media (max-width: 768px) {
    .map-container {
    flex-direction: column;
    }
	.map-left {
	height: auto;
    }
	.map-right {
	margin: 0;
	padding: 20px;
    }
}

/*-- CTAセクションのCSS --*/
.contact-section {
  background: var(--color-primary);
  padding: 60px 20px;
}

.contact-section .contact-inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px 60px;
}

@media (max-width: 768px) {
  .contact-section .contact-inner {
    padding: 30px 24px;
  }
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: -140px auto;
}

.contact-image img {
  max-width: 500px;
}

.contact-content {
  flex: 1;
  text-align: center;
}

.contact-content h2 {
  background: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 38px;
  font-weight: bold;
}

.contact-content p {
  margin: 15px 0;
  font-size: 20px;
  line-height: 1.5;
}

.contact-content img {
  margin: 0 auto;
}

/* アイコン部分 */
.contact-icons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.icon-item {
  background: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.icon-item span {
  font-size: 20px;
  margin-bottom: 5px;
}

/* CTAボックス */
.cta-boxes {
  display: flex;
  gap: 20px;
  margin: 0 auto;
	max-width:1200px;
}
.cta {
  background: #fff;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cta:hover {
  transform: translateY(-5px);
}

.phone {
  flex: 1;
}
.mail {
  flex: 1;
}
.line {
  flex: 1;
}

/* タブレット対応 */
@media (max-width: 1319px) {
	.contact-container {
    flex-direction: column;
    text-align: center;
	margin: -80px auto 0;
  }
	.contact-image img {
    max-width: 200px;
}
	.contact-content h2 {
    font-size: 28px;
    }
}

/* ==========================
   スマホ対応
   ========================== */
@media (max-width: 768px) {	
  .contact-container {
    flex-direction: column;
    text-align: center;
	margin: 40px auto 0;
  }
  .contact-image img {
    max-width: 200px;
	  margin-top: -60px;
  }
	.contact-content h2 {
  font-size: 18px;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
}
  .contact-content {
    padding-left: 0;
  }	
	.contact-content p {
	font-size: 15px;
	}
  .contact-icons {
    justify-content: center;
  }
  .cta-boxes {
    flex-direction: column;
	  gap: 10px;
  }
}


/* -----------トップページと一覧ページに表示する過去記事-------------- */
/*記事の概要*/
.gaiyou a {
	display: block;
	padding: 20px 0;
	border-bottom: dotted 2px #ddd;
	color: #222;
	text-decoration: none;
}

.gaiyou a:hover {
	background-color: #ddd;
}

.gaiyou a img {
	transition: opacity 0.5s ease-out;
}

.gaiyou a:hover img {
	opacity: 0.5;
}

.gaiyou h2 {
	font-size: 1.2em;
	margin-top: 0;
	margin-bottom: 10px;
	color: #222;
}

.gaiyou p {
	font-size: 1em;
	margin: 0;
}

.gaiyou img {
	float: left;
	width: 200px;
}

.gaiyou .text {
	float: none;
	width: auto;
	margin-left: 230px;
}

@media (max-width: 599px) {
	.gaiyou img {
		width: 100px;
	}

	.gaiyou .text {
		margin-left: 110px;
	}

	.gaiyou h2 {
		font-size: 1em;
	}

	.gaiyou p {
		visibility: hidden;
		height: 0;
	}
}

.legal-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1em;
}
.img-circle {
    border-radius: 50%;
}

h2.attention{
	margin-top: 0px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    background-color: #4caf50;
    padding: 20px;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.2;
}

h3.attention {
    color: #24449e;
	font-size:24px;
    font-weight: 600;
	line-height:1.2em;
	border-left:none;
	border-bottom:1px solid #ccc;
	padding:0 0 10px;	
	margin: 20px auto;
}

h4.attention {
	color:#d73349;
	margin:10px 0;    
}