
/* --------------------------------------------------- */
#sec01 {
	display: flex;
	justify-content: space-between;
	max-width: 1350px;
	width: 90%;
	margin: 0 auto 60px;
	gap: 40px;
	position: relative;
}
#sec01 .left {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
}
#sec01 .left .box {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
	box-shadow: 5px 5px 8px -6px rgba(0, 0, 0, 0.2);
}
#sec01 .left .box:nth-child(3n) {
	margin-right: 0;
}
#sec01 .left .box a {
	background-color: #fff;
	height: 100%;
	display: block;
	border: #fff 2px solid;
	border-radius: 4px;
	overflow: hidden;
}
#sec01 .left .box a.cat1:hover {
	border: #E6A7A6 2px solid;
}
#sec01 .left .box a.cat2:hover {
	border: #8BC6D3 2px solid;
}
#sec01 .left .box a.cat3:hover {
	border: #A9CB63 2px solid;
}
#sec01 .left .box a.cat4:hover {
	border: #DDB342 2px solid;
}
#sec01 .left .box a:hover {
}
#sec01 .left .box a .ph {
	display: block;
	position: relative;
	padding-top: 75%;
}
#sec01 .left .box a .ph img {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}
#sec01 .left .box a .sub {
	display: flex;
	justify-content: space-between;
	color: #fff;
	line-height: 1;
	padding: 8px 7px 9px;
}
#sec01 .left .box a.cat1 .sub {
	background-color: #E6A7A6;
}
#sec01 .left .box a.cat2 .sub {
	background-color: #8BC6D3;
}
#sec01 .left .box a.cat3 .sub {
	background-color: #A9CB63;
}
#sec01 .left .box a.cat4 .sub {
	background-color: #DDB342;
}
#sec01 .left .box a .category {
	font-size: 12px;
}
#sec01 .left .box a .day {
	display: inline-block;
	font-size: 9px;
	letter-spacing: 1px;
	font-weight: 500;
	padding-top: 3px;
}
#sec01 .left .box a p.txt {
	font-size: 12px;
	padding: 15px;
	margin-bottom: 15px;
}
#sec01 .right {
	width: 200px;
}
#sec01 .right ul {
}
#sec01 .right li {
	margin-bottom: 2px;
}
#sec01 .right li a {
	display: block;
	font-size: .9em;
	font-weight: 500;
	color: #fff;
	padding: 15px 15px 15px 30px;
	border-radius: 3px;
	position: relative;
	text-align: right;
}
#sec01 .right li a::after {
	content: "keyboard_arrow_left";
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    position: absolute;
	top: 50%;
    left: 5px;
	transform: translate(0%, -50%);
}
#sec01 .right li a.cat1 {
	background-color: #E6A7A6;
}
#sec01 .right li a.cat2 {
	background-color: #8BC6D3;
}
#sec01 .right li a.cat3 {
	background-color: #A9CB63;
}
#sec01 .right li a.cat4 {
	background-color: #DDB342;
}
#sec01 .article {
	flex: 1;
	background-color: #fff;
	padding: 4%;
	box-shadow: 5px 5px 8px -6px rgba(0, 0, 0, 0.2);
}
#sec01 .article p,
#sec01 .article h4 {
	margin-bottom: 30px;
}
#sec01 .article h5,
#sec01 .article h6 {
	margin-bottom: 20px;
}
#sec01 .article .sub {
	display: flex;
	justify-content: space-between;
	color: #fff;
	line-height: 1;
	padding: 8px 10px 9px;
	margin-bottom: 10px;
}
#sec01 .article .sub.cat1 {
	background-color: #E6A7A6;
}
#sec01 .article .sub.cat2 {
	background-color: #8BC6D3;
}
#sec01 .article .sub.cat3 {
	background-color: #A9CB63;
}
#sec01 .article .sub.cat4 {
	background-color: #DDB342;
}
#sec01 .article .sub .category {
}
#sec01 .article .sub .day {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 1px;
	font-weight: 500;
	padding-top: 3px;
}
#sec01 .article .ttl {
	font-size: 1.3em;
	font-weight: 500;
	margin-bottom: 40px;
}
#sec01 .article img {
	display: block;
	max-width: 700px;
	width: 90%;
	margin: 20px auto;
}
@media screen and (max-width: 910px) {
	#sec01 {
        margin: 0 auto 40px;
        gap: 20px;
    }
	#sec01 .left {
		justify-content: space-between;
    }
    #sec01 .left .box,
	#sec01 .left .box:nth-child(3n) {
        width: 49%;
		margin-right: 0;
    }
	#sec01 .right {
        width: 160px;
    }
	#sec01 .article {
        padding: 3%;
    }
	#sec01 .article .ttl {
        font-size: 1.1em;
        margin-bottom: 30px;
		line-height: 1.5;
    }
}
@media screen and (max-width: 680px) {
	#sec01 {
		width: 95%;
        flex-direction: column;
    }
    #sec01 .left,
	#sec01 .article {
		order: 2;
		width: 100%;
    }
	#sec01 .left .box,
	#sec01 .left .box:nth-child(3n) {
        width: 50%;
		margin-bottom: 0;
    }
	#sec01 .left .box a {
		padding-bottom: 15px;
		position: relative;
	}
	#sec01 .left .box a p.txt {
        padding: 10px;
		font-size: 11px;
        margin-bottom: 0px;
		line-height: 1.4;
    }
	#sec01 .left .box a {
        border: #fff 1px solid;
    }
    #sec01 .left .box a.cat1:hover {
        border: #E6A7A6 1px solid;
    }
    #sec01 .left .box a.cat2:hover {
        border: #8BC6D3 1px solid;
    }
    #sec01 .left .box a.cat3:hover {
        border: #A9CB63 1px solid;
    }
    #sec01 .left .box a.cat4:hover {
        border: #DDB342 1px solid;
    }
	#sec01 .left .box a .sub {
        display: block;
        padding: 0;
    }
    #sec01 .left .box a.cat1 .sub,
    #sec01 .left .box a.cat2 .sub,
    #sec01 .left .box a.cat3 .sub,
    #sec01 .left .box a.cat4 .sub {
        background-color: transparent;
    }
	#sec01 .left .box a .category {
        font-size: 11px;
		display: block;
		padding: 8px 7px 9px;
    }
	#sec01 .left .box a.cat1 .category {
        background-color: #E6A7A6;
    }
    #sec01 .left .box a.cat2 .category {
        background-color: #8BC6D3;
    }
    #sec01 .left .box a.cat3 .category {
        background-color: #A9CB63;
    }
    #sec01 .left .box a.cat4 .category {
        background-color: #DDB342;
    }
	#sec01 .left .box a .day {
		font-size: 7px;
		color: #999;
		position: absolute;
		right: 5px;
		bottom: 5px;
	}
    #sec01 .right {
        order: 1;
		width: 100%;
    }
	#sec01 .right li a {
		text-align: left;
		padding: 15px;
	}
	#sec01 .right li a::after {
        content: "keyboard_arrow_down";
        font-family: "Material Symbols Outlined";
        font-weight: normal;
        font-style: normal;
        font-size: 16px;
        line-height: 1;
        position: absolute;
		top: 50%;
		left: auto;
		right: 10px;
        transform: translate(0%, -50%);
    }
	#sec01 .article {
        padding: 5%;
    }
	#sec01 .article p,
    #sec01 .article h4 {
        margin-bottom: 20px;
    }
    #sec01 .article h5,
    #sec01 .article h6 {
        margin-bottom: 15px;
    }
}
/* --------------------------------------------------- */
#sec02 {
}
@media screen and (max-width: 910px) {
}
@media screen and (max-width: 680px) {
}
/* --------------------------------------------------- */

/* --------------------------------------------------- */

/* --------------------------------------------------- */


