@charset "utf-8";

/*******************************************

-------------------------------------------
見出し
********************************************/

/* 紫背景見出し
========================================== */

main .tit_purple {
	margin-top: 60px;
	text-align: center;
}
main .tit_purple em {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	font-size: 31px;
	font-weight: 500;
	color: #fff;
	background-color: #363480;
	border-radius: 50vh;
	line-height: 1.4;
	padding: 10px 30px 12px;
}
main .tit_purple em::before {
	content: "";
	display: inline-block;
	background: url("../img/common/ic_home.svg") center / cover no-repeat;
	width: 50px;
	height: 44px;
	flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
	main h1.tit_purple em {
		font-size: 34px;
		padding: 12px 35px 14px;
		min-width: 485px;
	}
	main h1.tit_purple em::before {
		width: 56px;
		height: 49px;
	}
}
@media only screen and (max-width: 767px) {
	main .tit_purple {
		margin-top: 50px;
	}
	main .tit_purple em {
		column-gap: 10px;
		font-size: 24px;
		padding: 8px 20px 10px;
	}
	main .tit_purple em::before {
		width: 34px;
		height: 30px;
	}
}

/* チョンチョン付き見出し
========================================== */

main .tit_accent {
	margin-top: 40px;
	text-align: center;
	font-size: 63px;
	line-height: 1.2;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
main .tit_accent::before,
main .tit_accent::after {
	content: "";
	flex-shrink: 0;
	display: inline-block;
	position: relative;
	top: 5px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 46px;
	height: 70px;
}
main .tit_accent::before {
	background-image: url("../img/common/img_accent_l.png");
}
main .tit_accent::after {
	background-image: url("../img/common/img_accent_r.png");
}
main .tit_accent em {
	display: inline-block;
	color: #363480;
	font-weight: 700;
	text-align: center;
}
main .tit_accent em span {
	color: #ed6c00;
	font-weight: 700;
}
body.home main .tit_accent {
	margin-top: 80px;
	font-size: 75px;
}
body.home main .tit_accent::before,
body.home main .tit_accent::after {
	width: 54px;
	height: 82px;
}
@media only screen and (max-width: 767px) {
	main .tit_accent {
		font-size: 38px!important;
		column-gap: 15px!important;
		margin-top: 40px!important;
	}
	main .tit_accent::before,
	main .tit_accent::after {
		width: 34px!important;
		height: 52px!important;
	}
}

/*******************************************

-------------------------------------------
ボタン
********************************************/

/* グレーボタン
========================================== */

.btnGray {
	display: inline-block;
	background-color: #dcdddd;
	font-size: 26px;
	font-weight: 500;
	text-align: center;
	padding: 3px 30px 5px;
	margin-top: 90px;
}
@media only screen and (max-width: 767px) {
	.btnGray {
		font-size: 18px;
		margin-top: 30px;
		padding: 10px 20px;
	}
}

