@charset "UTF-8";
/*
===================================================
 導入のCSS
===================================================
*/
.flow-intro {
  min-height: 760px;
  padding: 95px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/flow_01_bg_01_pc.webp") center / cover no-repeat;
  box-sizing: border-box;
  color: #30343c;
  margin-top: 4em;
}

.flow-intro__box {
  width: 80%;
	margin: 0 auto;
  padding: 70px 90px 72px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 15px;
  box-sizing: border-box;
  text-align: center;
}

.flow-intro__box h2 {
  margin: 0 0 32px;
  font-size: 2.4em;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.06em;
	font-family:serif;
}

.flow-intro__box h3 {
  margin: 0 0 36px;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.flow-intro__box p {
  margin: 0 auto 22px;
  max-width: 760px;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.flow-intro__box p:last-child {
  margin-bottom: 0;
}

.sp-only {
  display: none;
}

@media (max-width: 640px) {
  .flow-intro {
    min-height: 760px;
    padding: 86px 0;
    background-position: center;
  }

  .flow-intro__box {
    width: calc(100% - 68px);
    padding: 54px 42px 56px;
    border-radius: 18px;
  }

  .flow-intro__box h2 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.55;
  }

  .flow-intro__box h3 {
    margin-bottom: 28px;
    font-size: 22px;
    line-height: 1.6;
  }

  .flow-intro__box p {
    max-width: none;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 2.05;
  }

  .sp-only {
    display: inline;
  }
}
/*
===================================================
 家づくりの流れのCSS
===================================================
*/
.flow-list {
  color: #30343c;
}

.flow-list__inner {
  width: 96%;
  margin: 0 auto 5em;
}
.flow-list__innerlast-child {
  margin: 0 auto 0em;
}
.flow-list__title {
  position: relative;
  margin: 0 0 58px;
  padding: 0 0 0px 30px;
  border-bottom: 1px solid #a9d1dc;
  font-family: serif;
  font-size: 2.2em;
  font-weight: normal;
  line-height: 70px;
  letter-spacing: 0.08em;
}

.flow-list__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 70px;
  background: #a9d1dc;
}

.flow-list__item {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 20px;
  align-items: start;
  margin-bottom: 64px;
}

.flow-list__item:last-child {
  margin-bottom: 0;
}

.flow-list__step {
  position: relative;
  display: inline-block;
  min-width: 206px;
  margin: 0 0 24px;
  padding: 0px 20px 0px 60px;
  background: #a9d1dc;
  color: #fff;
  font-size: 1.6em;
  font-weight: normal;
  line-height: 50px;
  box-sizing: border-box;
}

.flow-list__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 50px;
  clip-path: polygon(0 0, 100% 0, 45% 100%, 0 100%);
  background-color: #58b5c6;
}

.flow-list__body h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #a9d1dc;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.flow-list__body p:not(.flow-list__step) {
  margin: 0;
  font-size: 1em;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.flow-list__img {
  margin: 0;
}

.flow-list__img img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

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


  .flow-list__inner {
    width: 100%;
  }

  .flow-list__title {
    margin-bottom: 38px;
    padding: 0 0 0px 26px;
    font-size: 1.6em;
	  line-height: 62px;
  }

  .flow-list__title::before {
    width:7px;
    height: 62px;
  }

  .flow-list__item {
    display: grid;
    grid-template-columns: 1fr 42%;
    gap: 0 16px;
    margin-bottom: 54px;
  }

  .flow-list__body {
    display: contents;
  }

  .flow-list__step {
    grid-column: 1 / -1;
    min-width: 120px;
    width: fit-content;
    margin: 0 0 5px;
    padding: 0px 18px 0px 25px;
    font-size: 1.3em;
	  line-height: 35px;
  }

  .flow-list__step::before {
 width: 20px;
	  height: 35px;
  }

  .flow-list__body h3 {
    grid-column: 1 / -1;
    margin: 0 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #a9d1dc;
    font-size: 1.3em;
    line-height: 1.45;
  }

  .flow-list__body p:not(.flow-list__step) {
    grid-column: 1 / 2;
    margin: 0;
    font-size: 0.84em;
    line-height: 2;
  }

  .flow-list__img {
    grid-column: 2 / 3;
    margin: 0;
  }

  .flow-list__img img {
    width: 100%;
    height: auto;
    aspect-ratio: 360 / 250;
    object-fit: cover;
  }
}
/*
===================================================
 大切にしていることのCSS
===================================================
*/
.important {
  padding-bottom: 80px;
  color: #30343c;
}

.important__visual img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.important__inner {
  width: 100%;
  margin: -200px auto 0;
  position: relative;
  z-index: 2;
}

.important__box {
  padding: 68px 50px 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  text-align: center;
  box-sizing: border-box;
}

.important__head {
  margin-bottom: 40px;
}

.important__head > p:first-child {
  margin: 0 0 18px;
  font-family: serif;
  font-size: 1.4em;
  line-height: 1;
  letter-spacing: 0.24em;
	text-align: center;
}

.important__head h2 {
  margin: 0 0 28px;
  font-size: 2.4em;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
	font-family: serif;
}

.important__head > p:last-child {
  margin: 0;
  font-size: 1.14em;
  line-height: 2;
  letter-spacing: 0.04em;
	text-align: center;
}

.important__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.important__card {
  min-height: 260px;
  padding: 35px 28px 25px;
  border: 2px solid #aaa;
  border-radius: 15px;
  box-sizing: border-box;
}

.important__card h3 {
  margin: 0 0 10px;
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.35;
	height: 100px;
  letter-spacing: 0.04em;
	align-content: center
}

.important__card p {
  margin: 0;
  text-align: justify;
  font-size: 1em;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .important {
    padding-bottom: 20px;
  }

  .important__visual img {
    height: 200px;
  }

  .important__inner {
    width: 100%;
    margin-top: -80px;
  }

  .important__box {
    padding: 30px 5px 34px;
    border-radius: 10px;
  }

  .important__head {
    margin-bottom: 20px;
  }

  .important__head > p:first-child {
    margin-bottom: 8px;
    font-size: 1em;
    letter-spacing: 0.22em;
  }

  .important__head h2 {
    margin-bottom: 15px;
    font-size: 1.4em;
    line-height: 1.3;
  }

  .important__head > p:last-child {
    font-size: 0.84em;
    line-height: 1.7;
  }

  .important__cards {
    display: block;
  }

  .important__card {
    min-height: auto;
    margin-bottom: 15px;
    padding: 15px 15px 15px;
    border-width: 2px;
    border-radius: 10px;
    text-align: left;
  }

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

  .important__card h3 {
    margin-bottom: 4px;
    font-size: 1.2em;
    line-height: 1.3;
	  height: auto;
  }

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

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

