@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Poppins:wght@400;500;600;700&display=swap');
/*--------------------------------
	　共通設定
--------------------------------*/
img {
    image-rendering: -webkit-optimize-contrast;
}
@media all and (min-width: 768px) {
	.sp { display: none !important; }
}
@media all and (max-width: 767px) {
	.pc { display: none !important; }
}
/*--------------------------------
	　タイトル
--------------------------------*/
#main .section-title {
	position: relative;
	margin: 0 0 60px;
	text-align: center;
}
#main .section-title::before {
	position: absolute;
	left: 50%;
	top: -30px;
	left: 0;
	right: 0;
	content: "";
	width: 51px;
	height: 20px;
	margin: auto;
	background: url("/common/images/common/section-title.svg") no-repeat;
}
#main .section-title h2 {
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #9B2330;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
}
#main .section-title p {
	font-size: 15px;
	font-weight: 500;
	color: #9B2330;
	letter-spacing: 0.15em;
	text-indent: 0.15em;
}
#main .section-explanation {
	margin: 120px 0 70px;
}
#main .section-explanation p {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
#main .section-explanation p.message {
	padding: 30px 0 10px;
	font-size: 15px;
	font-weight: normal;
}
@media all and (max-width: 767px) {
	#main .section-title {
		margin: 0 0 40px;
	}
	#main .section-explanation {
		margin: 110px 0 50px;
	}
	#main .section-explanation p {
		font-size: 16px;
		line-height: 2.2;
	}
	#main .section-explanation p.message {
		font-size: 14px;
		letter-spacing: 0.03em;
	}
}
@media all and (max-width: 321px) {
	#main .section-explanation p.message {
		font-size: 12px;
		letter-spacing: 0em;
	}
}
/*--------------------------------
	　ボタン
--------------------------------*/
#main .btn-01,
#main .btn-02 {
	display: flex;
	justify-content: center;
}
#main .btn-01 a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 430px;
	height: 65px;
	box-sizing: border-box;
	border: 3px solid #9B2330;
	border-radius: 18px;
	background: #9B2330;
	font-size: 16px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	transition: .3s;
}
#main .btn-02 a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 430px;
	height: 65px;
	box-sizing: border-box;
	border: 3px solid #9B2330;
	border-radius: 18px;
	background: #FFF;
	font-size: 16px;
	font-weight: 700;
	color: #9B2330;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	transition: .3s;
}
#main .btn-03 a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 440px;
	height: 80px;
	box-sizing: border-box;
	border: 3px solid #9B2330;
	border-radius: 18px;
	background: #FFF;
	font-size: 16px;
	font-weight: 700;
	color: #9B2330;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	transition: .3s;
	text-align: center;
}
#main .btn-04 a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 440px;
	height: 80px;
	box-sizing: border-box;
	border: 3px solid #9B2330;
	border-radius: 18px;
	background: #9B2330;
	font-size: 16px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	transition: .3s;
	text-align: center;
}
#main .btn-01 a::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 20px;
	height: 10px;
	background: url("/common/images/common/arrow-white.svg") no-repeat;
	transition: .3s;
}
#main .btn-02 a::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 20px;
	height: 10px;
	background: url("/common/images/common/arrow-red.svg") no-repeat;
	transition: .3s;
}
#main .btn-03 a::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 13px;
	height: 13px;
	background: url("/common/images/common/arrow-download.svg") no-repeat;
	background-size: cover;
	transition: .3s;
}
#main .btn-04 a::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 13px;
	height: 13px;
	background: url("/common/images/faq/icon-download.svg") no-repeat;
	background-size: cover;
	transition: .3s;
}
#main .btn-01 a:hover {
	background: #FFF;
	color: #9B2330;
}
#main .btn-01 a:hover::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 20px;
	height: 10px;
	background: url("/common/images/common/arrow-red.svg") no-repeat;
	transition: .3s;
}
#main .btn-02 a:hover {
	background: #9B2330;
	color: #FFF;
}
#main .btn-02 a:hover::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 20px;
	height: 10px;
	background: url("/common/images/common/arrow-white.svg") no-repeat;
	transition: .3s;
}
#main .btn-03 a:hover {
	background: #9B2330;
	color: #FFF;
}
#main .btn-03 a:hover::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 13px;
	height: 13px;
	background: url("/common/images/faq/icon-download.svg") no-repeat;
	background-size: cover;
	transition: .3s;
}
#main .btn-04 a:hover {
	background: #FFF;
	color: #9B2330;
}
#main .btn-04 a:hover::after {
	position: absolute;
	content: "";
	right: 22px;
	width: 13px;
	height: 13px;
	background: url("/common/images/common/arrow-download.svg") no-repeat;
	background-size: cover;
	transition: .3s;
}
@media all and (max-width: 767px) {
	#main .btn-01 a,
	#main .btn-02 a,
	#main .btn-03 a,
	#main .btn-04 a {
		width: 100%;
	}
}
@media all and (max-width: 321px) {
	#main .btn-03 a,
	#main .btn-04 a {
		font-size: 14px;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
	}
}
/*--------------------------------
	　外観イメージ
--------------------------------*/
#main .exterior-item {}
#main .exterior-item img {
	object-fit: cover;
}
@media all and (max-width: 1365px) {
	#main .exterior-item img {
		height: 400px;
	}
}
@media all and (max-width: 767px) {
	#main .exterior-item img {
		height: 220px;
	}
}
/*--------------------------------
	ページトップ
--------------------------------*/
#pageTop {
	display: none;
	position: fixed;
 	bottom: 0px;
	left: 22px;
	z-index: 10;
}
#pageTop a {
	transition: .5s;
}
#pageTop a:hover {
	opacity: 0.8;
}
@media all and (max-width: 767px) {
	#pageTop {
		display: none;
		bottom: 0;
		left: 15px;
	}
	#pageTop img {
		width: 60px;
	}
}
/*--------------------------------
	　その他
--------------------------------*/
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
	}
}
