section {
	margin-bottom: 20px;
}

section h2 {
	align-content: center;
	padding: 5px 10px;
	margin: 0 auto 8px auto;
	background: #b2dbc9;
	font-size: 13px;
	font-weight: normal;
	color: #fff;
	letter-spacing: 1px;
}

section.kv {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 150px;
	padding: 0 20px;
	background-size: cover;
}
section.kv h1{
	width: 90%;
	padding: 0 0 0 7px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	font-weight: normal;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	color: #fff;
}
.kv p.addr {
	color: #fff;
	font-size: 10px;
	padding-inline-start: 7px;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

/* ---------------------------------------
施設お気に入り
--------------------------------------- */
.likeIt {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 5px;
	right: 5px;
	background: #fff;
	width: 100px;
	height: 30px;
	text-align: right;
	font-size: 10px;
	border-radius: 50px;
}
.likeIt .icon {
	font-size: 15px;
	color: #ffbb00;
}
.likeIt p {
	color: #737776;
	text-shadow: none;
	line-height: 10px;
}


section.main{
	padding: 0;
}

.floorListArea {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 0 1%;
}
.floorListArea a {
	background: #fff;
	border: 1px solid #b2dbc9;
	padding: 15px 20px;
	color: #6dc29c;
	border-radius: 5px;
}



.typeList {
	padding-left: 10px;
}
.typeName {
	font-size: 10px;
}
.typeName:before {
	content: "・";
}





/*====================================================================
PC
====================================================================*/
@media screen and (min-width: 960px) {
    section {
        margin-bottom: 100px;
    }

    section.kv {
        height: 850px;
    }

    section.main {
        position: absolute;
        width: 100%;
        top: 500px;
        max-width: 1200px;
        left: calc((100% - 1200px) / 2);
        border-radius: 10px;
        padding: 80px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .likeIt {
        bottom: 452px;
        right: 150px;
        width: 160px;
        height: 47px;
    }
    p.likeItTxt {
        font-size: 19px;
        margin: 0 0 2px 10px;
    }
    .likeIt .icon {
        font-size: 26px;
        margin: 0 0 6px 0;
    }

    section.kv h1 {
        position: absolute;
        top: 180px;
        left: 50px;
        font-size: 30px;
    }
    .kv p.addr {
        position: absolute;
        top: 233px;
        left: 50px;
        font-size: 19px;
    }

    section h2 {
        padding: 14px 23px 17px 23px;
        margin: 0 auto 32px auto;
        background: #b2dbc9;
        font-size: 30px;
        border-radius: 5px;
    }
    footer {
        position: fixed;
        bottom: 0;
    }
    .floorListArea {
        gap: 15px;
    }
    .floorListArea a {
        padding: 25px 40px;
        font-size: 27px;
    }
    .floorListArea a:hover {
        border: 2px solid #b2dbc9;
    }
    .typeName {
        font-size: 20px;
    }
    .sectionBGcover {
        position: absolute;
        background: linear-gradient(0deg, #fff, transparent);
        width: 100%;
        height: 50%;
        /* border: 1px solid red; */
        left: 0;
        top: 50%;
    }
}


