  /* 共通カラー */
  :root {
    --midori-green: #cfead6;
    --midori-green-deep: #63b967;
    --midori-orange: #f6a042;
    --text-dark: #333;
  }

  /* 全体のwrapper背景 */
  #wrapper,
  .wrapper {
    background-color: #f8fdf9;
    padding: 3rem 1rem;
  }

  /* 見出し調整 */
  .c_green {
    color: var(--midori-green-deep);
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .c_orange {
    color: var(--midori-orange);
  }

  /* リスト全体 */
  .p-problem_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  /* 各リスト */
  .p-problem_list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 500px;
  }

  /* 各項目 */
  .p-problem_item {
    background-color: #ffffff;
    border-left: 6px solid var(--midori-green-deep);
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  /* スマホ対応 */
  @media (max-width: 600px) {
    .c_green {
      font-size: 1.4rem;
    }

    .p-problem_item {
      font-size: 1rem;
    }

    .p-problem_cont {
      flex-direction: column;
      align-items: center;
    }
  }

  ＝＝＝＝＝＝＝＝

  追加

  ＝＝＝＝＝＝＝＝

＝＝＝＝＝＝＝＝＝＝＝＝追加

/* セクション全体 */
.voice_area {
  background-color: #fffaf0;
  padding: 60px 20px;
  border-top: 2px solid #dfeee0;
}

.voice_area h2 {
  font-size: 1.8rem;
  color: #00703c;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* 各ユニット */
.voice_unit {
  background: #ffffff;
  border: 1px solid #cde2d1;
  border-radius: 12px;
  margin: 0 auto 50px;
  max-width: 960px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* タイトル部分 */
.voice_unit .title {
    background-color: #00703c;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    flex-direction: column;
}

.voice_unit .title h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  flex: 1;
}

.voice_unit .title p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.voice_unit .title .user img {
  width: 70px;
  height: auto;
  border-radius: 50%;
  margin-left: auto;
}

/* 図解エリア（債務額／月額返済額） */
.image .row {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.image .col-xs-6 {
  flex: 1 1 48%;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.image p small {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
  display: block;
}

/* ボタン */
.toggle_click {
  text-align: center;
  margin-top: 20px;
}

.toggle_click .button {
  display: inline-block;
  background-color: #00703c;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.toggle_click .button:hover {
  background-color: #005f34;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .voice_unit .title {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .image .row {
    flex-direction: column;
  }

  .voice_contents .row {
    flex-direction: column;
  }

  .voice_detail {
    flex: 1 1 100%;
  }
}

  .toggle_hidden {
    display: none;
  }

  .toggle_click {
    text-align: center;
    margin-top: 30px;
  }

  .toggle_click .button {
    display: inline-block;
    background-color: #00703c;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .toggle_click .button:hover {
    background-color: #005c2e;
  }

  /* 閉じるボタン初期は非表示 */
  #hideVoices {
    display: none;
  }

  .center{
    max-width: 1200px;
    margin: 0 auto;
  }

  .concern-section {
  background-color: #f8fdf9;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c8e50;
  margin-bottom: 30px;
  line-height: 1.6;
}

.section-title .highlight {
  color: #2c8e50;
  font-weight: bold;
}

.concern-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.concern-item {
  background-color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  width: calc(50% - 16px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  position: relative;
  text-align: left;
}

.concern-item .bar {
  width: 4px;
  height: 100%;
  background-color: #28a745;
  display: inline-block;
  margin-right: 12px;
  border-radius: 2px;
}

.concern-item .em {
  color: #ff8800;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .concern-item {
    width: 100%;
  }
}

============voice


.card_unit { background:#fff; border-radius:9px; margin-bottom:20px; }
.card_unit .image { text-align:center; }
.card_unit .text { font-weight:bold; }
	@media (max-width: 575px){
		.card_unit .text { padding:15px; }
	}
	@media (min-width: 576px){
		.card_unit .text { padding:25px; }
		.card_unit .text { font-size:1.25em; }
	}

	#nayami { background:#f2fff8; }

	#about{ 
		background:#22904a;
	}
	
	#about:before { 
		content:""; 
		position:absolute; 
		top:-1px;
		left:0; 
		width:100%; 
		height:100.111%;
		background:#FFF7DB;
	}
		@media (max-width: 575px){
			#about { padding-bottom:100px; }
			#about:before { clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 100px), 50% 100%, 0 calc(100% - 100px)); }
		}
		@media (min-width: 576px){
			#about { padding-bottom:200px; }
			#about:before { clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 200px), 50% 100%, 0 calc(100% - 200px)); }
		}
	.voice_area .toggle_hidden{ display: none; }
	.voice_area .toggle_click { margin-top:40px; }
	.voice_area .toggle_click .button { background:#fff; max-width:100%; border:1px solid #22904A; border-radius:40px; font-size:1.25em; padding:20px; }
	.voice_area .toggle_click .button > span { width:100%; background:url(../image/layout/arrow1-dg.png) no-repeat right center / 15px auto; }
	.voice_area.active .toggle_click .button > span { background:url(../image/layout/arrow1-ug.png) no-repeat right center / 15px auto; }
	.voice_unit .title { position:relative; color:#fff; margin-bottom:30px; }
	.voice_unit .title .user { position:absolute; bottom:0; }
	.voice_detail { position:relative; }
	.voice_detail .detail_title { font-size:1.25em; }
	.voice_detail .user { position:absolute; left:20px; top:0; width: 22%; }
	.voice_detail .text { border:1px solid #22904A; background:#fff; padding:30px; }
		@media (max-width: 575px){
			.toggle_hidden .voice_unit { margin-top:50px; }
			.voice_unit .title { padding:15px 70px 15px 15px; }
			.voice_unit .title h3 { font-size:1.15em; }
			.voice_unit .title .user { width:61px; right:10px; }
			.voice_area .toggle_click .button { width:264px; }
			.voice_detail .detail_title { padding:20px 0 20px 120px; }
		}
		@media (min-width: 576px){
			.toggle_hidden .voice_unit { margin-top:120px; }
			.voice_unit .title { padding:20px 180px 20px 20px; }
			.voice_unit .title h3 { font-size:1.75em; }
			.voice_unit .title .user { right:20px; }
			.voice_area .toggle_click .button { width:712px; }
			.voice_detail .detail_title { padding:20px 0 20px 140px; }
		}
		@media (min-width: 576px) and (max-width: 767px){
			.voice_unit .title .user { width:100px; }
		}
		@media (max-width: 767px){
			.voice_unit .voice_detail { margin-top:30px; }
		}
		@media (min-width: 768px){
			.voice_unit .contents { padding-top:30px; }
		}
	
	.needs_contents ul { list-style: none;margin-left:0; }
	.needs_contents li { margin-bottom:20px; background:url(../image/layout/check-cg.png) no-repeat left 8px / 30px auto; padding:0 0 0 45px; }
	.needs_contents li strong { font-size:1.25em; }
		@media (max-width: 991px){
			.needs_contents { font-size:1.15em; padding-bottom:40vw; background:url(../image/top/needs_back.png) no-repeat right bottom / 70vw auto; }
		}
		@media (min-width: 992px){
			.needs_contents { font-size:1.25em; background:url(../image/top/needs_back.png) no-repeat calc(100% - 20px) center / 400px auto; padding-bottom:80px; }
		}
	
	#about h2:before { content:""; position:absolute; background:url(../image/top/about1.png) no-repeat center center / contain; z-index:2; }
		@media (max-width: 767px){
			#about h2 { padding-left:110px; text-align:left; }
			#about h2:before { width:87px; height:146px; top:-15px; left:10px; }
		}
		@media (min-width: 768px) and (max-width: 991px){
			#about h2:before { width:115px; height:255px; top:-55px; left:30px; }
		
		}
		@media (min-width: 992px){
			#about h2:before { width:153px; height:255px; top:-55px; left:70px; }
		}
	
	
	.flow_box { position:relative; margin-top:50px; }
	.flow_box .flow_title { color:#fff; font-weight:bold; text-align:center; position:absolute; top:-35px; left:0; width:100%; border-radius:40px; line-height:150%; min-height:70px; z-index:2; }
	.flow_box .flow_title .number { position:absolute; }
	.flow_box .text_wrap { background:#22904A; padding:2px; }
	.flow_box .text { background:#fff; }
		@media (max-width: 767px){
			.flow_box .flow_title { font-size:1.4em; padding:5px 0 5px 20px; }
			.flow_box .flow_title .number { left:15px; font-size:1.5em; }
			.flow_box._flow2 .flow_title { line-height:60px; }
			.flow_box .text { padding:50px 20px 40px; }
			.flow_box._flow3 .text { padding:50px 20px 20px; }
			.flow_box:not(._flow3) .text_wrap { clip-path:polygon(100% 0, 100% calc(100% - 15px), calc(50% + 15px) calc(100% - 15px), 50% 100%, calc(50% - 15px) calc(100% - 15px), 0 calc(100% - 15px), 0 0); }
			.flow_box:not(._flow3) .text { clip-path:polygon(100% 0, 100% calc(100% - 15px), calc(50% + 15px) calc(100% - 15px), 50% 100%, calc(50% - 15px) calc(100% - 15px), 0 calc(100% - 15px), 0 0); }
		}
		@media (min-width: 768px){
			.flow_box .flow_title { padding:10px 0 10px 20px; }
			.flow_box .text { padding:50px 30px 20px; min-height:155px; }
			.flow_box._flow2 .flow_title { line-height:50px; }
			.flow_box._flow1 { width:360px; }
			.flow_box._flow2 { width:360px; }
			.flow_box._flow3 { width:340px; }
			.flow_box:not(._flow3) { margin-right:10px; }
			.flow_box:not(._flow3) .flow_title { width:calc(100% - 15px); }
			.flow_box:not(._flow3) .text_wrap { clip-path:polygon(calc(100% - 15px) 0, calc(100% - 15px) calc(50% - 15px), 100% 50%, calc(100% - 15px) calc(50% + 15px), calc(100% - 15px) 100%, 0 100%, 0 0); }
			.flow_box:not(._flow3) .text { clip-path:polygon(calc(100% - 15px) 0, calc(100% - 15px) calc(50% - 15px), 100% 50%, calc(100% - 15px) calc(50% + 15px), calc(100% - 15px) 100%, 0 100%, 0 0); }
		}
		@media (min-width: 768px) and (max-width: 991px){
			.flow_box .flow_title .number { left:15px; }
		}
		@media (min-width: 992px){
			.flow_box .flow_title { font-size:1.15em; }
			.flow_box .flow_title .number { left:30px; }
		}
		@media (min-width: 992px) and (max-width:1199px){
			.flow_box .flow_title .number { left:15px; }
		}
	
	#faq { background:#F2F8F5; }
	.faq { position:relative; margin-bottom:20px; padding:26px 0 0; }
	.faq:before { content:"Question"; color:#FFEF34; border-radius:5px 5px 0 0; background:#22904A; line-height:100%; position:absolute; top:0; left:0; padding:5px; font-weight:bold; height:27px; }
	.faq .title { position:relative; border:2px solid #22904A; background:#fff; font-weight:bold; font-size:1.25em; color:#22904A; border-radius:0 5px 5px 5px; }
	.faq .title:before { content:""; position:absolute; background:url(../image/layout/plus-g.png) no-repeat center center / contain; }
	.faq[open] .title:before { background:url(../image/layout/minus-g.png) no-repeat center center / contain; }
	.faq .contents { font-size:1.15em; padding:20px 0 20px; color:#22904A; }
		@media (max-width: 575px){
			.faq .title { padding:15px 40px 15px 15px; }
			.faq .title:before { top:calc(50% - 7px); right:15px; width:15px; height:15px; }
		}
		@media (min-width: 576px){
			.faq .title { padding:15px 50px 15px 15px; }
			.faq .title:before { top:calc(50% - 10px); right:20px; width:20px; height:20px; }
		}
	
	#top_column .button._type3 { width:360px; }

    img {
        border: none;
        vertical-align: bottom;
        max-width: 100%;
        height: auto;
    }