.image-row{
  display:flex;
  gap:20px;
  margin-top: 35px;
}

.image-row div{
  flex:1;
}

.image-row img{
  width:100%;
  height:auto;
  display:block;
}
.txt_area_l {
	font-size: 1rem;
	line-height: 3;
	letter-spacing: 0.04em;
	font-weight: 400
}
#img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#img-overlay.active {
  display: flex;
}

#img-overlay .overlay-inner {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

#img-overlay img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

#img-overlay .overlay-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
/* 画像＋テキスト全体 */
.zoom-wrap {
  text-align: center;
}

/* テキスト */
.zoom-note {
  font-size: 12px; /* ← 小さめ固定で確実 */
  color: #777;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.txt_indent_l{
		font-size: 1rem;
	line-height: 1.7;
	letter-spacing: 0.04em;
	font-weight: 400;
	padding-left: 2em;
	padding-bottom:20px;
}

/* 虫眼鏡アイコン */
.zoom-note::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("../images/common/icon_zoom.svg") no-repeat center;
  background-size: contain;
}

.container {
  width: 100%;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
}

/* 地図 */
.map-area {
  text-align: center;
  margin-bottom: 20px;
}

.map-area img {
  width: 100%;
  height: auto;
  display: block;
}

/* 出典 */
.caption {
  font-size: 14px;
  margin-top: 8px;
  text-align: right;
}

/* 背景 */
.info-area {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 18px;
}

/* 見出し（上に1つ） */
.heading-main {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* 横並び（★修正反映済み） */
.content-row { display: flex; align-items: flex-start; justify-content: center; gap: 40px; }

/* 左右 */
.left,
.right {
  width: 220px;
}

/* ブロック */
.block {
  min-height: 70px;
}

/* ラベル */
.label,
.title {
  margin-bottom: 5px;
}

/* 矢印（PC） */
.arrow {
  width: 80px;
  height: 40px;
  flex-shrink: 0;

  align-self: center; /* ←追加 */

  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'>\
<polygon points='0,18 55,18 55,5 100,25 55,45 55,32 0,32' fill='%23009966'/>\
</svg>") no-repeat center / contain;
}

/* 数値 */
.result {
  font-size: 26px;
  font-weight: bold;
  color: #009966;
}

/* 注釈 */
.note {
  font-size: 12px;
  color: #666;
}

/* テキスト */
.txt_l {
  margin-top: 10px;
}
.time-indent {
  padding-left: 5.2em;
}

/* 行間 */
.left p,
.right p {
  line-height: 1.6;
}

/* 経過措置 */
.period-area img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto; 
}

.contact-box {
  background: #eaf7f3; /* 背景色 */
  border: 3px solid #009966; /* 枠線 */
  padding: 20px;
  border-radius: 0px;
  margin: 20px 0;
}

.contact-title {
  display: flex;
  align-items: center;
  gap: 10px;

  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 1.75rem;
  font-weight: bold;
  color: #009966;
  margin: 10px 0;
}

/* SVGアイコン */
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("../images/common/icon-phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.contact_txt_l {
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: 0.04em;
	font-weight: 400
}

.faq {
  margin: 0 auto;
  padding: 0 15px; /* スマホ余白 */
}

/* 外の枠線 */
.faq details {
  border-bottom: 1px solid #ddd;
}

/* 質問 */
.faq summary {
  display: flex;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #006644;
  padding-right: 35px;
}

/* ←これがオレンジ枠の原因対策 */
.faq summary:focus {
  outline: none;
}

.faq summary:focus-visible {
  outline: none;
}

/* デフォルト三角消す */
.faq summary::-webkit-details-marker {
  display: none;
}

/* Q */
.faq .q {
  font-size: 26px;
  color: #009966;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ＋ / − */
.faq summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  font-size: 18px;
  color: #009966;
}

.faq details[open] summary::after {
  content: "−";
}

/* 回答 */
.faq .answer {
  background: #f6fbf4;
  border-left: 4px solid #99CC66;
  padding: 18px;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

/* 開いたとき強調 */
.faq details[open] summary {
  color: #009966;
}

.sup-mark {
  font-size: 0.9em;
}


/* ===== レスポンシブ ===== */
/* タブレット */
@media (max-width: 900px){
  .image-row{
    flex-wrap: wrap;
  }

  .image-row div{
    flex: 0 0 48%;
  }
}

@media (max-width: 768px) {

  .content-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .left,
  .right {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* 矢印（下向き） */
  .arrow {
    width: 40px;
    height: 60px;
    margin: 10px 0;

    background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 100'>\
<polygon points='18,0 32,0 32,55 45,55 25,100 5,55 18,55' fill='%23009966'/>\
</svg>") no-repeat center / contain;
  }
  
  /* 経過措置 */
  .period-area img {
    width: 100%;
    height: auto;
  }
  
  .faq summary {
    padding: 14px 0;
    font-size: 14px;
    padding-right: 25px;
  }

  .faq .q {
    font-size: 20px;
  }

  .faq summary::after {
    font-size: 15px;
  }

  .faq .answer {
    padding: 14px;
    font-size: 14px;
  }
}

/* スマホ */
@media (max-width: 600px){
  .image-row{
    flex-direction: column;
  }
  #img-overlay .overlay-close {
  top: 10px;
  right: 10px;
}
  .time-indent {
    padding-left: 0;
  }
  #img-overlay .overlay-close {
    top: 10px;
    right: 10px;
    font-size: 28px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


@media screen and (max-width: 480px) {
  .contact-title {
    font-size: 1.25rem;
  }
}


