/* ===== Base ===== */

body {
  margin: 0;
  font-family:
    "Zen Maru Gothic",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  color: #666;
}

p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 h3 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}

img {
  width: 100%;
  display: block;
}

section {
  padding: 50px;
}

/* ===== Title ===== */
.section-title {
  text-align: center;
  font-size: 38px;
  letter-spacing: 0.05em;
	margin-bottom: 20px;
	margin-top: 0px;
}

.section-title span {
  color: #1aa85b;
}

.section-title small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 1px;
  font-weight: normal;
}

/* ===== Button ===== */

.btn {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background: #1aa85b;
  color: #fff;
  padding: 12px 38px;
  border-radius: 30px;
  text-decoration: none;
}

/* ===== FV ===== */
.fv img {
  object-fit: cover;
}

/* ===== About ===== */
.about-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 6%;
  align-items: center;
  justify-content: space-between;
}

.about-img img {
  border-radius: 30px;
  max-width: 800px; /* 固定したい幅 */
  height: 300px; /* 固定したい高さ */
  object-fit: cover; /* 比率を保ち、枠に合わせて中央をカット */
}

.about-text {
  max-width: 55%;
}

.desc {
  line-height: 1.8;
}

/* ===== Cards ===== */
.cards {
  background: url("http://niwauma.boyfriend.jp/niwauma.com/wp-content/themes/cocoon-master/images/bg_cards.jpg") center/cover no-repeat;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  width: 300px;
  text-align: center;
}

.card li {
	border-bottom: 2px solid #1aa85b;
	padding: 6px 0;
	border-left: solid 8px #1aa85b;
}

.card ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.note {
  font-size: 14px;
}

.area-title {
	margin: 0 0 5px 0;
	font-size: 20px;
	font-weight: bold;
	background: #eef6f0;
	border-radius: 12px;
	padding: 10px 0;
}

.area {
	margin: 0 0 10px 0; 
}

.price {
	font-size: 36px;
	font-weight: bold;
	margin: 6px 0;
}

.price span {
  font-size: 14px;
}

.green {
  color: #1aa85b;
  margin-top: 10px;
}

/* ===== Works ===== */
.works-list {
  display: flex;
  gap: 20px;
}

.works-list img {
  border-radius: 10px;
  width: calc((100% - 40px) / 3); /* 3枚＋gap20px×2 */
  height: auto;
}

/* ===== News ===== */
.news {
	display: none;
  background: #e9f2ea;
}

.news-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.news-title {
  min-width: 240px;
}

.news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  display: flex;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid #cfdcd3;
  font-size: 15px;
}

.news-list .date {
  min-width: 110px;
  color: #666;
}

.news-list .text {
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-box {
  text-align: center;
}

.contact-box a {
  text-decoration: none;
}

.free {
	background: #fff59d;
	border-radius: 12px;
	display: inline-block;
	padding: 10px 30px;
	font-weight: bold;
	margin: auto;
	font-size: 26px;
}

.tel {
  font-size: 34px;
  color: #1aa85b;
	font-weight: bold;
	margin: 20px 0;
}

.contact-box .note {
	margin: auto;
}

/* ===== SP ===== */
@media screen and (max-width: 768px) {

  .section-title {
    font-size: 32px;
    margin-top: 0;
  }

  section {
    padding: 7%;
  }

  .about-inner {
    flex-direction: column;
  }

  .about-img {
    display: none;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    max-width: 100%;
  }

  .card {
    width: 80%;
  }

  .card ul {
    grid-template-columns: auto;
  }

  .news-inner {
    flex-direction: column;
    align-items: center;
  }

  .news-title {
    min-width: auto;
  }

  .news-list li {
    flex-direction: column;
    gap: 6px;
  }

  .news-list .date {
    min-width: auto;
  }

  /* 🔽 ここに入れる！ */
  .works-list {
    flex-direction: column;
    align-items: center;
  }

  .works-list img {
    width: 100%;
    max-width: 500px;
  }
}