body {
    margin: 0;
    /* PC用の横幅を指定 */
    min-width: 1080px;
}
/* スマートフォンのブレイクポイント */
@media screen and (max-width: 768px){
    body {
        /* 初期化 */
        min-width: initial;
    }
}
header{
	background: #F0C090;
}
header div {
	width: 100%;
	max-width: 980px;
	padding: 10px;
	box-sizing: border-box;
	margin: 0 auto;
}
main{
	background: #f2f2e8;
}
.top {
	background-color: #FFF;
}
.top img {
	display: block;
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.top img {
		width: 100%;
	}
}
.pc{
	display: block;
}
.sp{
	display: none;
}
@media screen and (max-width: 768px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
.header{
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	margin: 50px auto 30px;
	max-width: 1080px;
	position: relative;
}
.header:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
	width: 50%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
}
@media screen and (max-width: 768px) {
	.header{
		font-size: 1.3em;
	}
	.header:after {
		width: 80%;
	}
}
#a02 .container{
	margin: 0 auto;
}
.container{
	width: 80%;
	max-width: 1080px;
	margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
    .container{
        width: 90%;
    }
}
.item{
	position: relative;
}
.item_title{
	padding: 0.4em 0.5em;
	color: #333;
	background: #f4f4f4;
	border-left: solid 5px #7db4e6;
	border-bottom: solid 3px #d7d7d7;
	margin: 0 0 10px;
	font-size: 1.5em;
}
@media screen and (max-width: 768px) {
	.item_title{
		font-size: 1.2em;
	}
}
.item_flex{
	display: flex;
}
@media screen and (max-width: 768px) {
	.item_flex{
		display: block;
	}
}
.item_image{
	height: 300px;
}
@media screen and (max-width: 768px) {
	.item_image{
		height: auto;
	}
}
.item_image img{
	height: 300px;
	width: auto;
}
@media screen and (max-width: 768px) {
	.item_image img{
		height: auto;
		width: 100%;
	}
}
.item_main{
	width: 100%;
	padding: 10px;
	margin: 0 0 0 10px;
	background: #fff;
	position: relative;
	font-size: 1em;
}
@media screen and (max-width: 768px) {
	.item_main{
		padding: 10px 10px 70px;
		box-sizing: border-box;
		margin: 0;
		font-size: 0.9em;
	}
}
.item_main p:first-of-type{
	margin: 0;
}
.item_main p:last-child{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	margin: 8px 0;
}
.con_flex{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
.con_sub{
	width: 49%;
}
@media screen and (max-width: 540px) {
	.con_sub{
		width: 90%;
	}
}
#a03 .item_image{
    height: 200px;
}
@media screen and (max-width: 768px) {
	#a03 .item_image{
		height: auto;
	}
}
#a03 .item_image img{
    width: auto;
    height: 200px;
}
@media screen and (max-width: 768px) {
	#a03 .item_image img{
		height: auto;
		width: 100%;
	}
}
#a03 .item_main{
    box-sizing: border-box;
    font-size: 0.75em;
    padding: 5px;
}
@media screen and (max-width: 768px) {
	#a03 .item_main{
		padding: 10px 10px 55px;
		margin: 0;
	}
}
#a03 .item_main p:last-child{
	text-align: center;
	bottom: 0;
	transform: translate(-50%, 0);
	margin: 8px 0;
}
.item_main .item_date{
	display: inline-block;
	border-bottom: 1px solid #666;
	width: 100%;
	font-weight: bold;
}

.comingsoon{
	background-color: #ccc;
	width: 200px;
	height: 200px;
	display: inline-block;
	position: relative;
}
.comingsoon p{
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 2em;
	font-weight: bold;
	font-family: fantasy;
}
@media screen and (max-width: 768px) {
	.comingsoon{
		width: 100%;
		height: 300px;
	}
	.comingsoon p{
	}
}


footer p {
    text-align: center;
    color: #fff;
    background-color: #d11026;
    padding: 38px 0 42px;
    margin: 0;
}
@media screen and (max-width: 768px) {
    footer p {
        font-size: 83.3%;
        padding: 12px 0 22px;
    }
}