/* CSS Document */
.bc_gr {
  background-color: #EFEFEF;
}
.s_border {
  border-bottom: 1px dotted #333;
}
.checkbox03 {
  margin-top: 50px;
}
.serch_p p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  padding: 0 8px;
}
.toigogyo p {
  margin: 32px 0 0 118px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.kensaku_st {
  margin: 10px auto 30px;
  background-color: #e68414;
  border-radius: 15px;
  padding: 8px 0;
  width: 80%;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  font-size: 18px;
}
input.submit_button::after {
  content: ""; /* 疑似要素を表示するために必須 */
  display: inline-block; /* 横並び用 */
  width: 24px; /* 画像の幅 */
  height: 24px; /* 画像の高さ */
  margin-left: 8px; /* テキストとの間隔 */
  background-image: url("../imges/ico_allow.png");
  background-size: contain; /* 画像全体を収める */
  background-repeat: no-repeat;
  background-position: center;
}
.submit_button {
  position: relative; /* 擬似要素の基準にする */
  padding-right: 32px; /* 右に余白をつくる（アイコン分） */
}
button.submit_button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px; /* ボタンの右端から8px */
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../imges/ico_allow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pd_l40 {
  padding-left: 40px !important;
}
@media (min-width: 767px) {
  .section_inner {
    max-width: 980px !important;
  }
  .kensaku_st {
    margin: 10px 0 30px 0;
    padding: 8px 0 8px 40px;
    font-weight: bold;
    color: #FFF;
    text-align: left;
    font-size: 18px;
  }
  input.submit_button, button.submit_button {
    width: 250px;
    font-size: 20px;
    margin: 20px auto 50px;
    letter-spacing: 0.1em;
    border-radius: 25px;
    border: 3px solid #FFF;
    color: #FFF;
    padding: 10px 0;
    display: block;
    transition: all 0.5s;
  }
}
/* =========================
   全体レイアウト
========================= */
.areaListWrap {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px;
  grid-template-columns: 1fr 1fr;
  border: 1px dotted #9a9a9a;
  border-radius: 8px;
}
/* 各列 */
.areaCol {
  display: flex;
  flex-direction: column;
  margin: 0 5px;
}
/* =========================
   行デザイン
========================= */
.areaRow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  border-top: 1px dotted #9a9a9a;
  background: #fff;
}
/* 列ごとの最初の行は二重線回避 */
.areaCol .areaRow:first-child {
  border-top: none;
}
/* 矢印 */
.areaRow .arrow {
  font-size: 18px;
  line-height: 1;
  color: #333;
}
/* 名前 */
.areaRow .name {
  flex: 1;
  letter-spacing: .5px;
}
/* 件数 */
.areaRow .count {
  white-space: nowrap;
  color: #111;
}
/* =========================
   PC：段違い（千鳥）背景
========================= */
/* PC hover */
@media (hover:hover) and (pointer:fine) {
  .areaRow:hover {
    background: #fff7d6 !important;
  }
  .areaRow:hover .name {
    color: #e68414;
  }
}
/* =========================
   スマホ：1列＋通し交互
========================= */
@media (max-width:768px) {
  .areaListWrap {
    grid-template-columns: 1fr;
  }
  /* 列ごとの背景をリセット */
  
  .areaRow {
    font-size: 18px;
    padding: 16px 14px;
  }
  .areaRow .arrow {
    font-size: 18px;
  }
  /* 右列が下に来る区切り線 */
  .areaCol + .areaCol {
    border-top: 1px dotted #9a9a9a;
  }
  .areaCol + .areaCol .areaRow:first-child {
    border-top: none;
  }
}
/* =========================
   全体レイアウト
========================= */
.areaListWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px dotted #9a9a9a;
  border-bottom: 1px dotted #9a9a9a;
}
/* 各列 */
.areaCol {
  display: flex;
  flex-direction: column;
}
/* =========================
   行デザイン
========================= */
.areaRow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  border-top: 1px dotted #9a9a9a;
  background: #fff;
}
/* 列ごとの最初の行は二重線回避 */
.areaCol .areaRow:first-child {
  border-top: none;
}
/* 矢印 */
.areaRow .arrow {
  font-size: 20px;
  line-height: 1;
  color: #333;
}
/* 名前 */
.areaRow .name {
  flex: 1;
  letter-spacing: .5px;
}
/* 件数 */
.areaRow .count {
  white-space: nowrap;
  color: #111;
}
.b_brey {
  background: #f3f3f3;
}

.b_all {
  background: #ebf6f8;
}
/* =========================
   PC：段違い（千鳥）背景
========================= */
/* PC hover */
@media (hover:hover) and (pointer:fine) {
  .areaRow:hover {
    background: #fff7d6 !important;
  }
  .areaRow:hover .name {
    color: #e68414;
  }
}
@media (max-width:768px) {
  .areaListWrap {
    grid-template-columns: 1fr;
  }
  .areaRow {
    font-size: 18px;
    padding: 16px 14px;
  }
  .areaRow .arrow {
    font-size: 18px;
  }
  /* 右列が下に来る区切り */
  .areaCol + .areaCol {
    border-top: 1px dotted #9a9a9a;
  }
  .areaCol + .areaCol .areaRow:first-child {
    border-top: none;
  }
}
.card_wrap {
  max-width: 960px;
  margin: 0 auto;
}
.typeCard {
  display: flex;
  margin-top: 20px;
  max-width: 400px;
  height: 70px;
  align-items: center;
  padding: 18px 22px 16px;
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
  color: #111;
  text-decoration: none;
}
.typeCard img {
  width: 70px;
  height: auto;
}
.typeText {
  text-indent: 1em;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}
@media (max-width: 640px) {
  .card_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .typeCard {
    width: 70%;
    margin: 30px auto 0;
  }
}

.shubetsu_back{clear:both;width:100%;padding:60px 0 30px;text-align: center; display:block;}
.shubetsu_back img{width:84%;max-width:580px;height:auto;margin:0 auto;}


.banner {
  position: relative;
  display: flex;
	margin:20px 10px 10px;
  align-items: left;
  justify-content: center; /* 文字を中央に */
	padding:50px 40px 40px;
	width:94%;
  max-width:550px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* 共通アイコン */
.banner-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;   /* サイズ調整 */
  height: auto;
}

.banner-icon.left {
  left: 30px;
}
.banner-icon.left img, .banner-icon.right img {
  width:80px;height:auto;padding-top:5px;
}
.banner-icon.right {
  right: 50px;
}

.banner-text {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 766px) {	
.banner {margin:30px auto 0;padding:25px 0 25px;}
.banner-icon.left { left: 20px;}
.banner-icon.left img, .banner-icon.right img { width:60px;}
.banner-icon.right {right: 20px;}
.banner-text {font-size: 22px;line-height:1.5;}
.lb_title h3{font-size:19px;}
}