@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------
#link（お役立ちリンク集）
--------------------------------------------*/
.linklist {
    display: flex;
    flex-wrap: wrap;
}

.linklist li {
	box-shadow:  0 0 10px rgba(145,145,145,0.85);
	width: calc((100% - 5%) / 2);
	margin-right: 5%;
	background: #FFF;
	border-radius: 15px;
	margin-bottom: 4%;
    position: relative;
    padding-bottom: 40px;
    box-sizing: border-box;
}
.linklist li:nth-of-type(2n) {
	margin-right: 0;
}

.linklist li p {
	padding: 1.5em;
	text-align: left;
}
.linklist li a {
	background: #ffb132;
	display: block;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	padding: 10px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #FFF;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
}
.linklist li a:after {
    content: "";
    background: url("../img/icon1.svg") no-repeat center;
    background-size: contain;
    width: 1.3em;
    height: 1.3em;
    display: inline-block;
    vertical-align: -3px;
    margin-left: 5px;
}

.linklist li a:hover {
	background: #ff8700;
}

h3 {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 600;
    font-size: 165%;
    padding: 0.5em;
    margin: 3em 0 1em;
    text-align: center;
    color: #ff7800;
    border-bottom: 2px solid #ff7800;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
	.linklist {
		padding: 1em
	}
	.linklist li {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 1.5em;
        border-radius: 10px;
	}
    
    .linklist li a {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    h3 {
        margin-bottom: 0.5em;
    }
}