@charset "utf-8";
/* =========================
  サブページ ステージ
========================= */
#zone_substage {
  background-image: url("/about/image/img-substage.jpg") !important;
}
/*=============================
			賃借対照表
==============================*/
/*backnumber*/
/* ulをグリッドで横並びに */
.l_pp_mokuji_grid {
  max-width: 250px;
  margin: 3em auto 0 0;
}
/* liを横幅いっぱいに */
.l_pp_mokuji_grid ul li {
  position: relative;
}
/* aをflexで文字左・アイコン右 */
.l_pp_mokuji_grid ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  position: relative;
  transition: background 0.2s;
  border-bottom: 1px dotted#A2BE7A;
}
/* hover時の背景変化 */
.l_pp_mokuji_grid ul li a:hover {}
/* アイコンを疑似要素で作る */
.l_pp_mokuji_grid ul li a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #A2BE7A;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
/* 矢印を丸の中に作る */
.l_pp_mokuji_grid ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #A2BE7A;
  border-right: 2px solid #A2BE7A;
  transform: rotate(45deg);
  position: absolute;
  right: 22px; /* 丸の中の位置調整 */
  top: 50%;
  z-index: 1;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s;
  pointer-events: none;
}
/* hoverでアイコン右にスライド＋色反転 */
.l_pp_mokuji_grid ul li a:hover::after {
  transform: translateX(4px);
  background: #A2BE7A;
  border-color: #A2BE7A;
}
.l_pp_mokuji_grid ul li a:hover::before {
  border-color: #fff;
}
/*==================

		寄附
===================*/
.l_grid_kifu {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  justify-item: center;
  background: #A2BE7A;
  justify-items: center;
  justify-content: center;
  align-content: center;
  padding: 1em 0 .4em 0;
  margin-top: 2em;
}
.l_grid_kifu .col_fixing {
  max-width: 500px;
  width: 95%;
  border: none;
  background: #fff;
  border-radius: 5px;
}
.l_grid_kifu .col_fixing .unit_table_side tr:last-child th, .l_grid_kifu .col_fixing .unit_table_side tr:last-child td {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.in_flex_wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.col_fixing_title {
  margin-bottom: 20px;
}
.in_flex {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in_flex p {
  line-height: 1.5;
  margin-bottom: 1em;
}
.in_flex .span_flex {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.in_flex .span_flex > span {
  white-space: pre;
  display: block;
}
.in_flex span span {
  color: #A2BE7A;
  font-weight: bold;
  margin-right: .4em;
}
@media (max-width: 1035px) {
  .l_grid_kifu {
    max-width: 90% !important;
    display: block;
    margin: 1em auto 0 auto;
  }
}
@media (max-width: 768px) {
  .l_grid_kifu {
    padding: 0;
    margin-top: 1em;
    width: 100%;
    background: none;
  }
  .l_grid_kifu .col_fixing {
    max-width: auto;
    padding: 0 0 1em 0;
    width: 100%;
    margin: 0 0 1em 0 !important;
    border: 2px solid #A2BE7A;
  }
  .in_flex .span_flex {
    display: block;
    margin-top: 1em;
    text-align: center;
  }
  .l_grid_kifu .col_fixing p {
    width: 90%;
    margin: 0 auto;
  }
}
/*タブ切り替え/スマホはアコーディオン*/
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
	gap:0 10px;
}
.tab-buttons input {
  display: none;
}
.tab-buttons label {
  flex: 1;
  text-align: center;
  padding: 1.3em 1em;
  background: #E8E8E8;
  cursor: pointer;
  font-weight: 600;
  border: 3px solid #C0C0C0;
  border-bottom: none;
  border-top: 10px solid #C0C0C0;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	line-height: 1.3;

}
.tab-contents {
  width: 100%;
  order: 99;
  border: 2px solid #E1E9D4;
  padding: 3em 1.5em 2em 1.5em;
	margin-top: -2px;
}
.tab-content {
  display: none;
}
/* タブ切替 */
#tab1:checked ~ .tab-contents .content1, #tab2:checked ~ .tab-contents .content2, #tab3:checked ~ .tab-contents .content3 {
  display: block;
}
/* 選択中ボタン */
#tab1:checked + label, #tab2:checked + label, #tab3:checked + label {
  background: #fff;
	  border: 3px solid #A2BE7A;
  border-bottom: none;
  border-top: 10px solid #A2BE7A;
}
@media (max-width: 768px) {
  .tab-buttons {
    display: block;
  }
  .tab-buttons label {
    display: block;
    border: none;
    border-top: none;
    background: #E8E8E8;
    padding: 1.2em;
    position: relative;
	  border-bottom: 2px solid #fff;
  }
  .tab-buttons label::after {
    content: "＋";
    position: absolute;
    right: 1em;
    font-weight: 700;
  }
  .tab-content {
    display: none;
    border: 3px solid #C1C1C1;
    border-top: none;
    padding: 1.2em;
  }
  #tab1:checked + label::after, #tab2:checked + label::after, #tab3:checked + label::after {
    content: "－";
  }
  #tab1:checked ~ .content1, #tab2:checked ~ .content2, #tab3:checked ~ .content3 {
    display: block;
  }
  /* PC用の大きい枠は消す */
  .tab-contents {
    display: none;
  }
}