@charset "utf-8";
/* =============================================================
   CLOUD HOMe トップページ本文専用スタイル
   ※ base.css と共に「トップページのみ」で読み込むこと。
   　 ヘッダー / フッター / ページトップは css/common_ch.css を参照。
   ============================================================= */

/* common
-------------------------------------------------------*/
:root {
	--navy: #253846;
	--blue: #7ab9da;
	--gray-bg: #f8f8f8;
	--line: #e2e2e2;
	--txt: #333;
}
#wrapper {
	overflow: hidden;
	color: #253846;
}
.sp {
	display: none;
}
.inner {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}
img {
	max-width: 100%;
}

/* section title
-------------------------------------------------------*/
.ttl01 {
	text-align: center;
	margin-bottom: 40px;
}
.ttl01 .en {
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 4.2rem;
	line-height: 1.2;
	color: var(--navy);
	letter-spacing: .04em;
}
.ttl01 .ja {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: .1em;
	margin-top: 14px;
	position: relative;
	padding-bottom: 24px;
}
.ttl01 .ja::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: var(--blue);
}
.ttl01--left {
	text-align: left;
}
.ttl01--left .ja::after {
	left: 0;
	transform: none;
}

/* visual
-------------------------------------------------------*/
#visual {
	/* 縦長画像(1920x1080)を横幅基準でスケール。高さは固定なので、
	   ウィンドウ幅を縮めると上下の見切れが少しずつ現れ、一定幅で縮小が止まり左右がトリミングされる */
	background: url(../img/visual_bg02.png) no-repeat center center;
	background-size: cover;
}
#visual .inner {
	max-width: 1760px;
	display: flex;
	align-items: center;
	min-height: 700px;
}
.visual_ttl {
	font-size: 6.0rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--navy);
	letter-spacing: .04em;
	font-family: "Noto Serif", serif;
}
.visual_lead {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
	color: var(--navy);
	margin-top: 30px;
}

/* area common
-------------------------------------------------------*/
.area {
	padding: 100px 0;
}

/* business (area01)
-------------------------------------------------------*/
#area01 {
	padding-bottom: 110px;
}
.business_list {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.business_item {
	flex: 1;
	border: 1px solid var(--line);
	text-align: center;
	display: flex;
	flex-direction: column;
}
.business_logo {
	display: flex;
	align-items: center;
	justify-content: center;
}
.business_logo img {
	width: auto;
}

.business_txt_box {
	padding: 30px;
	padding-top: 0;
	
}
.business_txt {
	text-align: left;
	line-height: 1.9;
	margin-bottom: 28px;
	text-align: center;
	font-size: 1.7rem;
}
.business_more {
	margin-top: auto;
}
.business_more a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--navy);
}
.business_more a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--navy);
	border-right: 2px solid var(--navy);
	transform: rotate(45deg);
}

/* message (area02)
-------------------------------------------------------*/
#area02 {
	padding: 0;
}
#area02 .inner {
	max-width: none;
	width: 100%;
	display: flex;
	align-items: stretch;
	position: relative;
}
.message_txt {
	width: 45%;
	background: var(--gray-bg);
	padding: 40px 0 40px calc((100% - 1400px) / 2 + 0px);
	box-sizing: border-box;
}
.message_txt > * {
	max-width: 600px;
	padding-left: 5%;
}
.message_body {
	line-height: 2.1;
	margin-top: 10px;
	font-size: 1.8rem;
}
.message_img {
	width: 55%;
	line-height: 0;
}
.message_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* company
-------------------------------------------------------*/
.company_box {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	align-items: flex-start;
}
.company_img {
	width: 43%;
	line-height: 0;
}
.company_data {
	flex: 1;
}
.company_table {
	width: 100%;
}
.company_table th,
.company_table td {
	text-align: left;
	vertical-align: middle;
	padding: 22px 10px;
	border-bottom: 1px solid var(--line);
	line-height: 1.7;
}
.company_table tr:first-child th,
.company_table tr:first-child td {
	border-top: 1px solid var(--line);
}
.company_table th {
	width: 150px;
	font-weight: 500;
	color: var(--navy);
	background: #f8f8f7;
}
.company_btn {
	margin-top: 40px;
	text-align: right;
}
.company_btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 300px;
	padding: 20px 40px;
	background: var(--navy);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	border-radius: 40px;
}
.company_btn a:hover {
	opacity: .8;
}
.company_btn .arrow {
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

/* news
-------------------------------------------------------*/
.news_list {
	display: flex;
	gap: 30px;
}
.news_item {
	flex: 1;
	box-shadow: 0 3px 16px rgba(0, 0, 0, .08);
	background: #fff;
	border-radius: 10px;
}
.news_item a {
	display: block;
	height: 100%;
}
.news_item a:hover {
	opacity: 1;
}
.news_img {
	line-height: 0;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}
.news_img img {
	transition: transform .4s;
}
.news_item a:hover .news_img img {
	transform: scale(1.05);
}
.news_body {
	padding: 22px 22px 40px;
	position: relative;
}
.news_date {
	font-size: 1.4rem;
	color: #888;
	margin-bottom: 10px;
}
.news_ttl {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--txt);
	position: relative;
}
.news_ttl::after {
	content: "";
	position: absolute;
	right: 22px;
	bottom: 7px;
	width: 7px;
	height: 7px;
	border-top: 2px solid #999;
	border-right: 2px solid #999;
	transform: rotate(45deg);
}

/* ================= responsive ================= */
@media screen and (max-width: 1000px) {
	.ttl01 .en {
		font-size: 3.6rem;
	}
	.visual_ttl {
		font-size: 4.4rem;
	}

}

/* visual：900px以下は背景の縮小を止めてSP仕様に。
   高さを高めに固定し、背景は下寄せ（右のマンションは切れてOK） */
@media screen and (max-width: 900px) {
	#visual {
		background-position: center bottom;
		background-size: cover;
	}
	#visual .inner {
		min-height: 640px;
		padding: 60px 0;
		align-items: center;
	}
}

@media screen and (max-width: 768px) {
	.area {
		padding: 60px 0;
	}
	.ttl01 {
		margin-bottom: 40px;
	}
	.ttl01 .en {
		font-size: 3.0rem;
	}
	.ttl01 .ja {
		font-size: 1.3rem;
		padding-bottom: 18px;
	}

	.visual_ttl {
		font-size: 2.8rem;
		line-height: 1.4;
	}
	.visual_lead {
		font-size: 1.5rem;
		margin-top: 20px;
		line-height: 1.9;
	}

	/* business */
	#area01 {
		padding-bottom: 60px;
	}
	.business_list {
		flex-direction: column;
		gap: 24px;
	}

	.business_txt {
		font-size: 1.4rem;
	}
	


	/* message */
	#area02 .inner {
		flex-direction: column;
	}
	.message_txt {
		width: 100%;
		padding: 50px 0;
		order: 2;
	}
	.message_txt > * {
		max-width: none;
		width: 92%;
		margin: 0 auto;
		padding-left: 0;
	}

	.message_txt .ttl01 {
		margin-bottom: 20px;
	}

	.message_img {
		width: 100%;
		order: 1;
	}

	.message_body {
		font-size: 1.4rem;
	}

	/* company */
	.company_box {
		flex-direction: column;
		gap: 36px;
	}
	.company_img {
		width: 100%;
	}
	.company_table th,
	.company_table td {
		padding: 16px 6px;
		font-size: 1.4rem;
	}
	.company_table th {
		width: 110px;
	}
	.company_btn {
		text-align: center;
		margin-top: 30px;
	}
	.company_btn a {
		width: 100%;
		min-width: 0;
	}

	/* news */
	.news_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	.news_item {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media screen and (max-width: 480px) {
	.news_item {
		flex: 0 0 100%;
	}
}
