@charset "UTF-8";
/* CSS Document */
#lp {
	margin-top: 9rem;
}

nav.lpNav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin: 4.5rem auto 6rem;
  padding: 0;
}

nav.lpNav div {
  width: 100%;/* 幅はGrid側で制御するため100%に */
  max-width: 100%;
  height: auto;
}

nav.lpNav div a {
  display: block;
  width: 100%;
}

nav.lpNav div img {
  width: 100%;
  height: auto;
  display: block;
}

.merit-section {
  margin-bottom: 8rem;
}

h2 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

h2 .num-icon {
  width: 98px;
  height: auto;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

h2 .num-icon img {
  width: 100%;
  height: auto;
}

h2 .ttl-text {
  font-size: 30px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid #9c8354;
  width: 100%;
}

h2 .ttl-text::after {
  content: "";
  position: absolute;
  left: -90px;           /* アイコンの幅(90px) 分 */
  bottom: -1px;           /* テキストの下線とぴったり高さを合わせる */
  height: 1px;            /* 線の太さ */
  background-color: #9c8354; /* 線の色 */
}

.readText {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 3rem;
}

.readText .highlight {
  background: linear-gradient(transparent 40%, #ffff00 40%);
  font-weight: bold;
}

.compact-model {
  display: flex;
  border: solid 2px #9c8354;
  box-sizing: border-box;
  margin-bottom: 4rem;
  background-color: #fff;
}

.compact-model .model-text {
  width: 40%;
  background-color: #9c8354;
  color: #fff;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.compact-model .model-text .label {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 21px 0;
  margin-bottom: 25px; 
  letter-spacing: 0.05em;
}

.compact-model .model-text p {
  font-size: 1.5rem;
  line-height: 1.7;
}

/* 右側：図解画像エリア */
.compact-model .model-figure {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.compact-model .model-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3カラム固定 */
  gap: 30px 30px; /* 縦・横の余白 */
  margin: 6rem auto 4.5rem;
  list-style: none;
  padding: 0;
}

.spot-grid li .img-box {
  width: 100%;
  margin-bottom: 12px;
}

.spot-grid li .img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.spot-grid li .txt-box {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.spot-grid li .txt-box .num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: #004471;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: bold;
	margin-right: 12px;
	flex-shrink: 0;
}

.spot-grid li .txt-box .name {
	flex-grow: 1;
	text-align: right;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	font-weight: bold;
	margin: 0; 
}

.spot-grid li .txt-box .name .access {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: normal;
  margin-top: 2px;
  text-align: right;
}

.env-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3カラム */
  gap: 10px 20px;
  margin-bottom: 8rem;
}

.env-block h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.env-block h3::before {
  content: "●";
  color: #004673;
  margin-right: 8px;
  font-size: 12px;
}

.env-list {
  list-style: none;
  padding: 0;
}

.env-list li {
  display: flex;
  align-items: baseline; /* 文字の基準線を揃える */
  margin-bottom: 10px;
  font-size: 12px;
}

.env-list .name {
  color: #333;
  flex-shrink: 0; /* 文字が潰れないように保護 */
}

/* ★ドット線の自動伸縮 */
.env-list .dots {
  flex-grow: 1;
  border-bottom: 1px dotted #9c8354;
  margin: 0 8px;
  position: relative;
  top: -4px;
}

.env-list .info {
  color: #333;
  flex-shrink: 0;
  white-space: nowrap;
}

.stability-figure {
	margin-bottom: 4.5rem;
}

figcaption {
	font-size: 12px;
	line-height: 1.5;
	margin-top: 12px;
	text-align: right;
}

.stability-map {
}

.stability-map img {
	width: 100%;
	max-width: 864px;
	height: auto;
	margin: 0 auto 4.5rem;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.stability-sec {
margin-bottom: 3rem;
}

.merit-section-caution {
	display: block;
	font-size: 12px;
	line-height: 1.8;
}

.view-map-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  gap: 40px;
}

.view-map-block .map-info {
  width: 49%;
}

.view-map-block .info-text-box {
  border-top: 1px solid #9c8354;
  border-bottom: 1px solid #9c8354;
  padding: 30px 0;
  margin-bottom: 25px;
}

.view-map-block .info-text-box p {
  font-size: 24px;
  line-height: 1.7;
  margin: 0;
}

.view-map-block .map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 15px;
  list-style: none;
  padding: 0 0 30px 0;
  margin: 0;
  border-bottom: 1px solid #9c8354;
}

.view-map-block .map-legend li {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
}

.view-map-block .map-legend .color-box {
  width: 24px;
  height: 14px;
  margin-right: 6px;
  display: inline-block;
}

.view-map-block .map-legend .color-box.resident-1 { background-color: #a9cda8; } /* みどり */
.view-map-block .map-legend .color-box.commercial { background-color: #edd4d1; } /* ピンク */
.view-map-block .map-legend .color-box.resident-2 { background-color: #f2cf97; } /* オレンジ */
.view-map-block .map-legend .color-box.high-rise  { background-color: #f9f1c0; } /* きいろ */

/* 右側：マップ画像 */
.view-map-block .map-figure {
	width: 49%;
}

.view-map-block .map-figure img {
	width: 100%;
	height: auto;
	display: block;
}

.merit-btn {
	margin: 6rem auto;
}

.merit-btn img {
	max-width: 500px;
	height: auto;
	margin: 0 auto;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 24px;
  margin: 5rem auto 8rem;
  padding: 0;
  list-style: none;
}

.case-grid li {
  display: flex;
  flex-direction: column;
}

.case-grid li .img-box {
  width: 100%;
  margin-bottom: 20px;
}

.case-grid li .img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.case-grid li .txt-box h3 {
  font-size: 22px;
  color: #9c8354;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 15px 0;
  padding: 0 12px 12px;
  border-bottom: 1px solid #9c8354;
  box-sizing: border-box;
}

.case-grid li .txt-box p {
  font-size: 14px;
  line-height: 1.7;
  padding: 0 12px;
  box-sizing: border-box;
  margin: 0;
  text-align: justify;
}

/*////　富士山　////*/
.fuji {
	color: #201513;
	margin: 9rem auto;
}

.fuji p {
	font-size: 3rem;
	line-height: 1.6;
	text-align: center;
}

.fuji p.caution {
	font-size: 10px;
	line-height: 1.5;
}

.fuji figure {
	margin: 3rem auto 4.5rem;
}

.fuji figure figcaption {
	font-size: 2.1rem;
	line-height: 1.6;
	text-align: center;
	margin-top: 1.2rem;
}

.fuji .text-Link {
	display: inline-block;
	border-bottom: solid 1px #201513;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.fuji .text-Link a {
	color: #201513;
}

.fuji .text-Blue {
	color: #0066cc;
	font-weight: bold;
}

/*////　夕景　////*/
.evening {
	margin: 8rem auto 4.5rem;
}

.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ipad */
@media all and (max-width: 768px) {
nav.lpNav {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 3rem auto 4.5rem;
    padding: 0 10px;
}

h2 {
	padding-bottom: 1rem;
	margin-bottom: 3rem;
}

h2 .num-icon {
	width: 60px;
	margin-right: 15px;
}

h2 .ttl-text {
	font-size: 20px;
}

.spot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    margin-bottom: 5rem;
  }
  
.env-container {
	grid-template-columns: 1fr;
	gap: 35px 0;
	margin-bottom: 5rem;
}

.view-map-block {
	flex-direction: column;
	margin-top: 4rem;
	gap: 30px;
}

.view-map-block .map-info {
	width: 100%;
	padding: 0 10px;
}

.view-map-block .info-text-box {
	padding: 20px 0;
	margin-bottom: 20px;
}

.view-map-block .info-text-box p {
	font-size: 18px;
	line-height: 1.6;
}

.view-map-block .map-legend {
	gap: 10px 12px;
	padding-bottom: 20px;
}

.view-map-block .map-legend li {
	font-size: 13px;
}

.view-map-block .map-figure {
	width: 100%;
	text-align: center;
}

.view-map-block .map-figure img {
	max-width: 100%;
	margin: 0 auto;
}

.case-grid {
	grid-template-columns: repeat(2, 1fr); /* タブレット時は2カラムにして見やすさを維持 */
	gap: 40px 20px;
	margin: 4rem auto 6rem;
}

.case-grid li .txt-box h3 {
	font-size: 18px;
}

}


/* sp */
@media all and (max-width: 430px) {
.pc_tab {
	display: none;
}

.sp_only {
	display: block;
}

nav.lpNav {
    gap: 10px;
    margin: 2rem auto 3rem;
}

nav.lpNav {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin: 2rem auto 3rem;
    padding: 0 5px;
	box-sizing: border-box;
}

h2 {
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-bottom: 1.5rem;
	margin-bottom: 2.5rem;
}

h2 .num-icon {
	width: 80px;
	margin-right: 0;
	margin-bottom: 15px;
}

h2 .ttl-text {
	font-size: 22px;
	line-height: 1.5;
	padding: 0 10px;
	display: block;
}

.compact-model {
	flex-direction: column;
	border-width: 2px;
	margin-bottom: 3rem;
}

.compact-model .model-text {
	width: 100%;
	padding: 3rem;
	text-align: left;
}

.compact-model .model-text .label {
	font-size: 20px;
	border-top: none;
	padding: 0 0 15px 0;
	margin-bottom: 20px;
}

.compact-model .model-text p {
	font-size: 15px;
	line-height: 1.6;
	font-weight: normal;
}

.compact-model .model-figure {
	width: 100%;
	background-color: #fff;
}

.compact-model .model-figure img {
	width: 100%;
	height: auto;
}

.spot-grid {
    grid-template-columns: 1fr;
}

.env-container {
	gap: 10px 0;
}

.view-map-block {
	flex-direction: column;
	margin-top: 4rem;
	gap: 30px;
}

.view-map-block .map-info {
	width: 100%;
	padding: 0 10px;
}

.view-map-block .info-text-box {
	padding: 20px 0;
	margin-bottom: 20px;
}

.view-map-block .info-text-box p {
	font-size: 16px;
	line-height: 1.6;
}

.view-map-block .map-legend {
	gap: 10px 12px;
}

.view-map-block .map-figure {
	width: 100%;
}

.merit-btn {
	margin: 3rem auto;
}

.case-grid {
	grid-template-columns: 1fr;
	gap: 45px 0;
	margin: 3rem auto 5rem;
	padding: 0 10px;
}

.case-grid li .img-box {
	margin-bottom: 15px;
}

.case-grid li .txt-box h3 {
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 12px;
	text-align: center;
}

.case-grid li .txt-box p {
	font-size: 13.5px;
	line-height: 1.6;
}

/*////　富士山　////*/
.fuji {
	margin: 4.5rem auto;
	text-align: left;
}

.fuji p {
	font-size: 2.1rem;
	text-align: left;
}

.fuji figure {
	margin: 1.5rem auto 3rem;
}

.fuji figure figcaption {
	font-size: 1.4rem;
	text-align: left;
}

/*////　夕景　////*/
.evening {
	margin: 4.5rem auto 3rem;
}
  
}
