@charset "UTF-8";

/*
===================================================
 家づくりの基本フォーマットのCSS
===================================================
*/
.building {
  color: #373b43;
}

.building__inner {
  width: 100%;
  margin: 0 auto;
}

.building__head {
  margin-bottom: 0px;
  text-align: center;
}

.building__head p {
	text-align: center;
  margin: 0 0 7px;
  font-family: serif;
  font-size: 1.14em;
  letter-spacing: 0.22em;
  line-height: 1;
}

.building__head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 15px;
  font-size: 2.4em;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.building__head h2 span{
	display: block;
	font-size: 0.5em;
	font-family: serif;
}
.building__head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;
  height: 2px;
  background: #30343c;
  transform: translateX(-50%);
}

.building__content {
  display: grid;
  grid-template-columns: 50% 45%;
  gap: 5%;
  align-items: start;
	margin-top: 80px;
}

.building__catch {
  margin: 14px 0 58px;
  padding-left: 10px;
  border-left: 8px solid #a9d1dc;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0em;
}

.building__text h3 {
  margin: 0 0 34px;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0em;
	font-family: serif;
}

.building__text p:not(.building__catch) {
  margin: 0;
  font-size: 1em;
  line-height: 2.15;
  letter-spacing: 0em;
}
.building__text p span:not(.building__catch) {
	display: block;
  margin: 1em 0 0;
  font-size: 0.8em;
  line-height: 1.8;
  letter-spacing: 0em;
}

.building__img {
  margin: 0;
}

.building__img img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: contain;
}

@media (max-width: 640px) {
.building__inner {
    width: 100%;
  }
.building__head {
    text-align: left;
  }
.building__head p {
    font-size: 0.84em;
    letter-spacing: 0.05em;
	 margin: 0 0 4px;
	  text-align: left;
  }
.building__head h2 {
    padding-bottom: 15px;
    font-size: 1.3em;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
.building__head h2::after {
    left: 0;
    width: 70px;
    transform: none;
  }
.building__content {
    display: block;
	margin-top: 35px;
  }
.building__catch {
    margin: 0 0 20px;
    padding-left: 10px;
  border-left: 4px solid #a9d1dc;
    font-size: 1.2em;
    line-height: 1.4;
  }
.building__text h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
  }
.building__text p:not(.building__catch) {
    font-size: 0.84em;
    line-height: 1.8;
  }
.building__img {
    width: 82%;
    margin: 20px auto 0;
  }
.building__img img {
    height: auto;
  }
}

.bg_baju{background-color: #eeeee8;}
/*
===================================================
 火災保険料のCSS
===================================================
*/
.fire-insurance {
  padding: 30px 0;
  color: #30343c;
}

.fire-insurance__inner {
  width: 100%;
  margin: 0 auto;
}

.fire-insurance__title {
  margin: 0 0 10px;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
}

.fire-insurance__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #30343c;
  border-bottom: 1px solid #30343c;
}

.fire-insurance__table th,
.fire-insurance__table td {
  height: 70px;
  padding: 15px 15px;
  border-right: 1px solid #30343c;
  border-bottom: 1px solid #30343c;
  text-align: center;
  vertical-align: middle;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  box-sizing: border-box;
}

.fire-insurance__table tr:last-child th,
.fire-insurance__table tr:last-child td {
  border-bottom: none;
}

.fire-insurance__table th {
  width: 22%;
}

.fire-insurance__table td:nth-child(2) {
  width: 34%;
}

.fire-insurance__table td:nth-child(3) {
  width: 44%;
  border-right: none;
}

.fire-insurance__table .is-blue {
  background: #a9d1dc;
  font-size: 1.3em;
  font-weight: bold;
}
@media (max-width: 640px) {
  .fire-insurance {
    padding: 42px 0;
  }

  .fire-insurance__inner {
    width: 100%;
  }

  .fire-insurance__title {
    margin-bottom: 5px;
    font-size: 1.2em;
  }

 

  .fire-insurance__table th,
  .fire-insurance__table td {
    height: 100px;
    padding: 10px 10px;
    font-size: 1em;
    line-height: 1.35;
  }

  .fire-insurance__table th {
    width: 25%;
  }

  .fire-insurance__table td:nth-child(2) {
    width: 31%;
  }

  .fire-insurance__table td:nth-child(3) {
    width: 44%;
  }

  .fire-insurance__table .is-blue {
    font-size: 1.05em;
    line-height: 1.2;
  }
}
/*
===================================================
 具体的なチェックポイントのCSS
===================================================
*/
.check-point {
  padding: 40px 0;
  color: #30343c;
}
.check-point__inner {
  width: 100%;
  margin: 0 auto;
}
.check-point__title {
  margin: 0 0 15px;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
}
.check-point__list {
  border-top: 1px solid #30343c;
  border-bottom: 1px solid #30343c;
	background-color: #ffffff;
}

.check-point__item {
  display: grid;
  grid-template-columns: 30% 70%;
  border-bottom: 1px solid #30343c;
}

.check-point__item:last-child {
  border-bottom: none;
}

.check-point__item h3,
.check-point__item p {
  margin: 0;
  box-sizing: border-box;
}

.check-point__item h3 {
  padding: 25px 28px;
  border-right: 1px solid #30343c;
  font-size: 1.14em;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.check-point__item h3 span {
  font-size:0.9em;
}

.check-point__item p {
  padding: 25px 40px;
  font-size: 1.14em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .pc-only {
    display: none;
  }

  .check-point {
    padding: 30px 0;
  }

  .check-point__inner {
    width: 100%;
  }

  .check-point__title {
    margin-bottom: 10px;
    font-size: 1.14em;
    line-height: 1.35;
  }

  .check-point__list {
    border-top-width: 1px;
    border-bottom-width: 1px;
  }

  .check-point__item {
    display: block;
    padding: 20px 20px 18px;
    border-bottom-width: 1px;
  }

  .check-point__item h3 {
    padding: 0;
    border-right: none;
    font-size: 1em;
    line-height: 1.45;
  }

  .check-point__item h3 span {
    font-size: 0.9em;
  }

  .check-point__item p {
    padding: 5px 0 0 1.8em;
    font-size: 0.84em;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }
}

/*
===================================================
 アフターサポートのCSS
===================================================
*/
.after-support {
  padding: 40px 0;
  color: #30343c;
}

.after-support__inner {
  width: 100%;
  margin: 0 auto;
}

.after-support__title {
  margin: 0 0 8px;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.after-support__lead {
  margin: 0 0 30px;
  font-size: 1.14em;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.after-support__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.after-support__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 180px;
  padding: 10px 20px;
  border: 2px solid #aaa;
  border-radius: 15px;
  box-sizing: border-box;
}

.after-support__icon img {
  display: block;
  width: 100px;
  height: auto;
}

.after-support__body h3 {
  position: relative;
  margin: 0 0 24px;
  color: #211815;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.after-support__body h3::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -12px;
  width: 140px;
  height: 5px;
  background: #a9d1dc;
}

.after-support__body p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .after-support {
    padding: 30px 0;
  }

  .after-support__inner {
    width: 100%;
  }

  .after-support__title {
    margin-bottom: 8px;
    font-size: 1.2em;
    line-height: 1.35;
  }

  .after-support__lead {
    margin-bottom: 20px;
    font-size: 0.94em;
    line-height: 1.5;
  }

  .after-support__list {
    display: block;
    padding: 0 0px;
  }

  .after-support__item {
    grid-template-columns: 85px 1fr;
    gap: 5px;
    min-height:140px;
    margin-bottom: 20px;
    padding: 15px 15px;
    border-width: 2px;
    border-radius: 10px;
  }

  .after-support__item:last-child {
    margin-bottom: 0;
  }

  .after-support__icon img {
    width: 80px;
  }

  .after-support__body h3 {
    margin-bottom: 20px;
    font-size: 1.14em;
    line-height: 1.35;
  }

  .after-support__body h3::after {
    bottom: -10px;
    width: 150px;
    height: 5px;
  }

  .after-support__body p {
    font-size: 0.84em;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

/*
===================================================
 資産価値のCSS
===================================================
*/
.value {
  padding: 40px 0;
  color: #30343c;
}
.value__inner {
  width: 100%;
  margin: 0 auto;
}
.value__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value__item {
  min-height: 320px;
  padding: 20px 20px 18px;
  border: 2px solid #aaa;
  border-radius: 15px;
  box-sizing: border-box;
  text-align: center;
	background-color: #ffffff;
}
.value__icon {
  height:120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.value__icon img {
  max-width: 150px;
  max-height: 120px;
}
.value__body h3 {
  margin: 0 0 10px;
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.value__body p {
  margin: 0;
  text-align: justify;
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .value {
    padding: 30px 0;
  }

  .value__inner {
    width: 100%;
  }

  .value__list {
    display: block;
  }

  .value__item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 5px;
    align-items: center;
    min-height: 120px;
    margin-bottom: 15px;
    padding: 15px 20px 15px 10px;
    border-width: 2px;
    border-radius: 10px;
    text-align: left;
  }

  .value__item:last-child {
    margin-bottom: 0;
  }

  .value__icon {
    height: auto;
    margin-bottom: 0;
  }

  .value__icon img {
    max-width: 85px;
    max-height: 100px;
  }

  .value__body h3 {
    margin-bottom: 8px;
    font-size: 1.14em;
    line-height: 1.35;
  }

  .value__body p {
    font-size: 0.84em;
    line-height: 1.5;
  }
}
/*
===================================================
 tb タブレット解像度
===================================================
*/
@media screen and (max-width:1000px) {

	}
/*
===================================================
 sp スマホ解像度
===================================================
*/

