#main {
	max-width: 1300px;
	width: 90%;
	margin: 150px auto 0;
}
@media screen and (max-width: 910px) {
}
@media screen and (max-width: 680px) {
	#main {
		margin: 100px auto 0;
	}
}
/* --------------------------------------------------- */
#sec01 {
}
#sec01 p {
	text-align: center;
	margin-bottom: 50px;
}
#sec01 .box {
	max-width: 450px;
	width: 100%;
	margin: 0 auto 80px;
}
#sec01 .box a {
	display: block;
	text-align: center;
	border: #A12327 2px solid;
	padding: 30px 0;
	border-radius: 6px;
}
#sec01 .box a img {
	display: inline-block;
	width: 30px;
	margin-right: 10px;
	filter: grayscale(0%);
	transition: filter 0.3s ease;
}
#sec01 .box a:hover {
	border: #aaa 2px solid;
	color: #aaa;
}
#sec01 .box a:hover img {
	filter: grayscale(100%);
	opacity: .4;
}
#sec01 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sec01 li {
	margin-bottom: 2%;
}
#sec01 li:nth-child(1) {
	width: 100%;
}
#sec01 li:nth-child(2),
#sec01 li:nth-child(3),
#sec01 li:nth-child(4),
#sec01 li:nth-child(5) {
	width: 23.5%;
}

#sec01 li:nth-child(6),
#sec01 li:nth-child(7){
    width: 49%;
}
#sec01 li:nth-child(8),
#sec01 li:nth-child(9),
#sec01 li:nth-child(10),
#sec01 li:nth-child(11) {
	width: 23.5%;
}
@media screen and (max-width: 910px) {
}
@media screen and (max-width: 680px) {
	#sec01 p {
        text-align: left;
        margin-bottom: 30px;
    }
    #sec01 .box {
        margin: 0 auto 50px;
    }
	#sec01 .box a {
        padding: 20px 0;
    }
	#sec01 .box a img {
        width: 23px;
    }
}
/* --------------------------------------------------- */
.lightbox {
	display: none;
}
@media screen and (max-width: 680px) {
    .lightbox {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }
    .lightbox.show {
        opacity: 1;
        pointer-events: auto;
    }
    .lightbox img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 6px;
    }
    .lightbox .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
    }
    .lightbox-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
}
/* --------------------------------------------------- */

/* --------------------------------------------------- */


