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

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
	flex-direction: row-reverse;
}

/* 左テキスト */
.hero-text {
  flex: 1 1 620px;
  max-width: 620px;
	background-color: #fff;
	border-radius: 20px;
}

.hero-text .subcopy {
  font-size: 24px;
	font-weight: bold;
  margin-bottom: 0px;
	padding: 40px 20px 20px 40px;
	line-height: 1.5;
}

.hero-text h1 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.hero-text h1 span {
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

.hero-text h2 {
	font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
	padding: 0 40px 0 30px;
	border-left: solid 10px #072608;
	line-height: 1.2;
}

/* h3の確かな証拠をつかみますのドットとアンダーラインCSS */
.hero-text h3 {
  position: relative;
  display: inline-block;
  font-size: 45px;
  font-weight: bold;
  padding: 0px 40px;
}

@media (max-width: 1319px) {
	.hero-text {
	flex: 1 1 100%;
	margin: 0 auto 40px;
	}
}
@media (max-width: 768px) {
	.hero {
	padding: 0px;
	}
	.hero-text {
	margin: 0 auto 20px;
	max-width: 440px;
	}
	.hero-text h2 {
	font-size: 28px;
	}
	.hero-text h3 {
	font-size: 22px;
	}
	.hero-text .subcopy {
	font-size: 18px;
	}
}
@media (max-width: 460px) {
	.hero-text {
	margin: 0 20px 20px;
	}
}

/* 全体の蛍光マーカー風アンダーライン */
.highlighted-text span {
font-weight: bold;
  background: linear-gradient(transparent 70%, #EEFA60 70%);
  display: inline;
}

/* 「確かな証拠」の上部ドット装飾 */
.dotted-top span {
  position: relative;
  display: inline-block;
}

.dotted-top span::before {
  content: "•";               /* ドットを出す */
  position: absolute;
  top: -0.6em;                /* 文字の上に配置 */
  left: 50%;
  transform: translateX(-50%); /* 真ん中に揃える */
  font-size: 0.6em;           /* ドットの大きさ */
  color: #072608;                /* ドットの色（変更可能） */
}

/* CTAボタン */
.hero-cta {
  display: flex;
  gap: 15px;
	margin: 20px 40px 40px 40px;
}

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

.hero-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;
}

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

/* 右側 */
.hero-image {
  flex: 1 1 660px;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 800px;
	margin-left: -180px;
	margin-bottom: -140px;
	z-index: 2;
    position: relative;
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1319px) {
	.hero-image {
		flex: 1 1 100%;
	}
	.hero-image img {
	margin: 0 auto -140px;
	}
}

/* スマホ対応 */
@media (max-width: 768px) {
	.cta {
		justify-content: center;
	}
	.hero-cta {
		flex-direction: column;
	}
	.hero-image {
		flex: 1 1 100%;
	}
	.hero-image img {
		max-width: 540px;
		width: calc(100% - 20px);
		margin: 20px auto -30px;
		padding-left: 20px;
	}
}

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

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

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

/* グリッド配置 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* カード */
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .icon {
  font-size: 40px;
  color: #4caf50;
  margin: 20px auto 0;
  text-align: center;
}

.service-card .icon img {
  display: inline-block;
	height: 100px;
	width: auto;
}

.service-card h3 {
  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;
	position: relative;
}

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

.service-card:hover h3 {
	background: #072608;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .section-subtitle {
  font-size: 16px;
	text-align:left;
	}
	.service-card .icon img {
	height: 50px;
	}
	.service-card p {
  font-size: 15px;
	}
}

/* 小さいスマホ対応 */
@media (max-width: 599px) {
	.container {
	padding: 40px 5px 0;
      }
	.section-subtitle {
	margin: 0 20px 20px;
	}
  .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 5px;
	}
	.service-card {
	padding: 5px;
	}
	.service-card h3 {
	font-size: 12px;
	}
	.service-card p {
  font-size: 12px;
}
}

/*-- 6つの強みセクションのCSS --*/
.strengths {
  margin: 0 auto;
  padding: 100px 0 40px 0;
	background-color: #EAFFE5;
}

.strengths-inner {
max-width: 1300px;
	margin: 0 auto;
}

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

.strengths-header img {
  display: inline-block;
  padding-bottom: 10px;
	max-width: 400px;
	margin-top: -80px;
}

.point {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 60px 0;
  gap: 20px;
}

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

.point-text {
  flex: 1;
	padding: 0 40px 0 60px;
}

.point-text h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.point-text h3 span {
  color: #6cc16c;
  font-weight: bold;
  font-size: 16px;
}

.point-text p {
  font-size: 15px;
}

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

.point-img {
  flex: 1;
}

.point-img img {
  width: 100%;
}

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

.p1 {
	background-color: #fff;
	background-image: url("img/strengths_point_1.jpg");
	background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.p2, .p4, .p6 {
	background-color: #fff;
	background-image: url("img/strengths_point_2-4-6.jpg");
	background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}

.p3, .p5 {
	background-color: #fff;
	background-image: url("img/strengths_point_3-5.jpg");
	background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
/*-- スマホ対応 --*/
@media (max-width: 768px) {
	.p1 {
	background: #fff;	
	}
	.p2, .p4, .p6 {
	background: #fff;
	}
	.p3, .p5 {
	background: #fff;	
	}
	
	.p1 .point-img {
	background-image: url("img/strengths_point_1.jpg");
  background-size: cover;	
	padding: 40px 0 40px 20px;
	}
	.p2 .point-img {
	background-image: url("img/strengths_point_2-4-6.jpg");
  background-size: cover;
	padding: 40px 20px;
	margin-top: 0px;
	}
	.p4 .point-img, .p6 .point-img {
	background-image: url("img/strengths_point_2-4-6.jpg");
  background-size: cover;
	padding: 40px 20px 40px 0;
	}
	.p3 .point-img, .p5 .point-img {
	background-image: url("img/strengths_point_3-5.jpg");
  background-size: cover;
	padding: 40px 0 40px 20px;
	}
}

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

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

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

.cases-header p {
  font-size: 15px;
  margin-bottom: 40px;
}

.cases-header .cases-nagura img {
	position: absolute;
	top: -95%;
	right: -10px;
	z-index: 0;
	width: 300px;
}
/*-- スマホ対応 --*/
@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-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
	max-width: 1100px;
  margin: 0 auto;
}

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

.case-img {
  position: relative;
}

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

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #116611;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
}

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

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

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

.case-body p {
  font-size: 14px;
  margin-bottom: 12px;
}

.case-body ul {
  font-size: 13px;
  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;
	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;
    }

.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: url("img/blog.jpg") no-repeat center center / cover;
	color: #fff;
	text-align: center;
	padding: 80px 20px;
}

.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: 15px;
  line-height: 1.8;
  color: #ddd;
}

.blog-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.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: #71C366;
  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 {
	max-width: 800px;
  padding: 8px 0px;
  border-radius: 30px;
  font-weight: bold;
	font-size: 28px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
	background: #4caf50;
  color: #fff;
	transition: background-color 0.3s ease;
	position: relative;
	z-index: 2;
	margin: 0px auto -30px;
}

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

.checkpoint-header .checkpoint-nagura img {
    position: absolute;
    top: -10%;
    left: -1%;
    z-index: 0;
	width: 200px;
}

.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: #F8F8F8;
	position: relative;
	max-width: 1200px;
	margin: -20px auto 120px;
	padding: 60px 0;
}

.checkpoint-block.reverse {
  flex-direction: row-reverse;
}

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

.checkpoint-text h4 p {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
	line-height: 1.5;
}

.checkpoint-text p {
  font-size: 15px;
  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;
}

 .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 {
    width: 240px;
	 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-header .checkpoint-nagura img {
    top: -2%;
	left: 0;
	width: 60px;
}
	.checkpoint-text h4 p {
  font-size: 18px;
}
	.checkpoint-image {
	margin-right: 0px;
    margin-left: 20px;
	margin-bottom: -40px;
	}
	.reverse .checkpoint-image {
	margin-right: 20px;
	margin-left: 0;
	}
}

.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-badge {
  
}
.evidence-text {
  
}
.evidence-image {
  
}

.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 --*/
.trust-container {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 0;
	position: relative;
}

.trust-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
	position: relative;
}

/* 背景の透かし文字 TRUST */
.trust-container::before {
      content: "TRUST";
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      font-size: 220px;
      font-weight: bold;
	font-style: italic;
      color: #55A849;
	opacity: 0.1;
      letter-spacing: -2px;
      z-index: 0;
      white-space: nowrap;
    }

@media (max-width: 768px) {
	.trust-container::before {
		font-size: 100px;
		top: -2%;
	}
}

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

.trust-description {
  text-align: center;
  margin-bottom: 40px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trust-card img {
  width: 350px;
  height: auto;
  object-fit: cover;
}

.trust-card-content {
  padding: 20px 20px 20px 0;
  flex: 1;
}

.trust-card-content h4{
  color: #072608;
	font-weight: bold;
	font-size: 22px;
	padding: 0 0 0 20px;
}

.trust-card-title {
	width: 324px;
  font-size: 28px;
  margin-bottom: 10px;
  padding-left: 20px;
  border-radius: 0 25px 25px 0;
  display: inline-block;
  color: #fff;
	font-weight: bold;
}

.trust-card-title.green {
  background-color: #71C366; /* グリーン系 */
}

.trust-card-content p {
  padding: 0 0 0 20px;
	color: #072608;
	font-size: 15px;
}

.trust-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.trust-link:hover {
  text-decoration: underline;
}

/* スマホ・タブレット対応 */
@media (max-width: 768px) {
	.trust-container h2 {
		font-size: 20px;
	}
	.trust-container h3 {
		font-size: 20px;
		margin: 10px 10px 20px -20px;
	}
	.trust-container h4 {
		font-size: 18px;
		line-height: 1.5;
	}	
	.trust-description {
    text-align: left;
	font-size: 15px;
}
  .trust-card {
    flex-direction: column;
    align-items: center;
  }

  .trust-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }

  .trust-card-content {
    padding: 16px;
  }
	
.trust-card-content p {
    padding: 10px 20px;
  }

  .trust-card-title {
    font-size: 18px;
	width: 240px;
  }
}

/*-- 私たちの目標セクションのCSS --*/
.mission-section {
	background: url("img/mission.jpg") no-repeat center center / cover;
}

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

.mission-image {
	flex: 1 1 40%;
	position:relative;
	margin-left: -120px;
	margin-bottom: -40px;
}

.mission-image img {
	z-index: 3;
	width: 100%;
	max-width: 480px;
	margin-left: 80px;
}

.mission-text {
  flex: 1 1 60%;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 50px;
  border-radius: 12px;
}

.mission-text h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
	text-align: center;
}

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

.description {
  font-size: 15px;
  line-height: 1.8;
}

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

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

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

  .mission-text h2 {
    font-size: 20px;
	  text-align:left;
  }
	.highlight {
	font-size: 15px;
  margin: 20px 0px;
}
}

/*-- お客様の声セクションのCSS --*/

.reviews-section {
  text-align: center;
  padding: 60px 20px;
	background-color: #EAFFE5;
}

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.more-btn {
  background: #4caf50;
  color: #fff;
  text-decoration: none;
  padding: 4px 20px;
  border-radius: 30px;
  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;
  }
}

/*-- よくある相談セクションのCSS --*/
.examples-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-en {
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #072608;
}

@media (max-width: 768px) {
	.section-en {
  font-size: 32px;
}
	}

.section-ja {
  font-size: 20px;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
	.section-desc {
  font-size: 16px;
	text-align:left;
}
}

.examples-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px 20px;
}

.examples-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.examples-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
	margin-top: -40px;
}

.examples-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.examples-meta {
  font-size: 14px;
}

.examples-title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 10px -20px;
	padding-left: 16px;
  color: #072608;
	border-left: solid 4px #072608;
}

.examples-text {
  font-size: 14px;
  line-height: 1.8;
}

/*-- メディアセクションのCSS --*/
.media-section {
  background: #072608; /* 濃いグリーン */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.media-header h2 {
	color: #fff;
}

.media-header p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.media-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.media-card {
  background: #fff;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.media-content {
  padding: 20px;
}

.media-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.6;
}

.media-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
	.media-header p {
  font-size: 16px;
	text-align:left;
}
}

/*-- オフィスMapセクションのCSS --*/
.map-container {
    display: flex;
	max-width: 1200px;
	margin: 0 auto;
    }

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

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

    .map-card h3 {
    color: darkgreen; /* 緑色の見出し */
    margin: 0 0 0 -20px;
    font-size: 28px;
	padding: 0 0 0 24px;
	font-weight: bold;
    }

.green {
	position: relative;
	}
.green::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;/* 上からの位置で長さ調整 */
	transform: translateY(-50%);
	width: 4px;
	height: 28px; /* 線の長さ */
	background-color: #70C366;
}

.darkgreen {
	position: relative;
}
.darkgreen::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;/* 上からの位置で長さ調整 */
	transform: translateY(-50%);
	width: 4px;
	height: 28px; /* 線の長さ */
	background-color: #46913C;
}

.pink {
	position: relative;
}
.pink::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;/* 上からの位置で長さ調整 */
	transform: translateY(-50%);
	width: 4px;
	height: 28px; /* 線の長さ */
	background-color: #FEBACA;
}

.red {
	position: relative;
	}
.red::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;/* 上からの位置で長さ調整 */
	transform: translateY(-50%);
	width: 4px;
	height: 28px; /* 線の長さ */
	background-color: #C94B68;
	}

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

/* タブレット対応 */
@media (max-width: 1319px) {
	.map-card h3 {
    font-size: 16px;
    }
	.map-card p {
    font-size: 14px;
    }
}
/* スマホ対応 */
    @media (max-width: 768px) {
    .map-container {
    flex-direction: column;
    }
	.map-left {
	margin: 40px 0 0 0;
	height: 300px;
    }
	.map-right {
	margin: 0;
	padding: 20px;
    }
    .map-card h3 {
     font-size: 15px;
    }
	.map-card p {
    font-size: 12px;
    }
}

/*-- CTAセクションのCSS --*/
.contact-section {
  background: #5fb95f; /* 緑背景 */
  padding: 40px 20px;
}

.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: 0px;
  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.5;
}
.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-section {
	padding: 0 20px 40px 20px;
	}
	
  .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;
  }
  .cta {
    width: 100%;
  }
}


/* -----------トップページと一覧ページに表示する過去記事-------------- */
/*記事の概要*/
.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;
	}
}
