@charset "utf-8";
/* CSS Document */
/* チェック　バツ */
.check-list{
	border: solid 1px #B5B5B6;
	border-radius: 20px;
	background: #FCFBEB;
	padding: 2rem;
	font-size: 1.8rem;
}
.check-list li{
	line-height: 5rem;
	list-style: none;
	position: relative;
	
}
.fa-check{
	color: #009b63;
	font-size: 2.6rem;
	margin-right: .8em;
}
.fa-times{
	color: #c0392b;
	font-size: 2.8rem;
	margin-right: .4em;
}

/* card hover 演出 */
.block-section a {
	display: block;
	height: 100%;
}

.block-section .card {
	height: 100%;
	transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.block-section a:hover .card {
	transform: scale(1.03);
	background-color: #f8f9fa; /* Bootstrap gray-100 */
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}
.card{
	color: #212529;
}
.card img{
	margin-bottom: 1rem;
}
.card-title{
	font-size: 1.8rem;
	font-weight: bold;
	padding: 1rem;
	color: #FDA007;
}
.card-text,.card-text01{
	padding: 0 1rem 1rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	
}
.card-text p:last-child {
	margin-top: auto;
	color: #0d6efd;
	text-align: right;
}
/* ５つの魅力 */
.article-title{
	font-size: 1.8rem;
	font-weight: bold;
	color: #11A61D;
	
}
/* お問合せ・エントリー */
.banner-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.btn-banner{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #FDA007;
	border: 10px double #fff;
	width: 350px;
	height: 120px;
	color: #fff;
	font-size: 2.5rem;
	text-decoration: none;
	transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-banner:hover{
  transform: scale(1.03);
  background-color: #fdb733; /* #FDA007 を少し薄く */
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.15);
}
.btn-banner i{
	font-size: 30px;
	margin-bottom: 5px;
	transition: transform 0.3s ease;
}
.btn-banner:hover i{
  transform: translateY(-3px);
}
/* ///////（タブレット）//////// */
@media (min-width: 768px) {
	
	.banner-box{
		display: flex;
		flex-direction: row;
		justify-content: space-around;
	}
	
}
