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

/************************************
GUIDELINES
************************************/
@media screen and (min-width: 1024px){
	br.pc{
		display: block!important;
	}
	.tab{
		display: none!important;
	}
	.sp{
		display: none!important;
	}
}

@media screen and (max-width: 1023px) and (min-width: 768px){
	.pc{
		display: none!important;
	}
	br.tab{
		display: block!important;
	}
	.sp{
		display: none!important;
	}
}

@media screen and (max-width: 767px){
	.pc{
		display: none!important;
	}
	.tab{
		display: none!important;
	}
	br.sp{
		display: block!important;
	}
}

hr{
	clear: both;
	height: 1px;
	background: #c8c8c8;
	border: none;
	margin-bottom: 30px;
}

@media screen and (max-width: 1023px) and (min-width: 768px){
	#guidelines{
		display: block;
	}
}

@media screen and (max-width: 767px){
	hr{
		width: 90%;
		margin: 0 auto 5vh;
	}

	#guidelines .caption{
		font-size: 6vw;
		margin-bottom: 4vh;
	}
}

/************************************
introduction
************************************/
#introduction{
	margin-bottom: 60px;
}

#introduction h2{
	color: #333333;
	font-size: 22px;
}

#introduction p{
	width: 100%;
	font-weight: normal;
}

#introduction p span{
	font-weight: bold;
}

@media screen and (max-width: 1023px) and (min-width: 768px){
	#introduction{
		width: 700px;
	}
}

@media screen and (max-width: 767px){
	#introduction{
		width: 90%;
		margin: 0 auto 5vh;
	}
	
	#introduction h2{
		font-size: 5.33vw;
	}
	
	#introduction p:last-child{
		margin-bottom: 4em;
	}
}

/************************************
point
************************************/
#point{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 660px;
	margin: 0 auto 42px;
}

#point .wrapper{
	position: relative;
	box-sizing: border-box;
	background: #fcc800;
	border-radius: 20px;
	width: 315px;
	padding: 20px;
}

#point h3{
	position: absolute;
	top: -46px;
	left: 0;
	width: 108px;
}

#point ul{
	background: #ffffff;
	box-sizing: border-box;
	border-radius: 15px;
	padding: 13px 26px;
}

#point ul li{
	width: 100%;
	font-size: 15.5px;
	border-bottom: 0.5px solid #d8d8d8;
	padding: 13px 0;
}

#point ul li:last-child{
	border-bottom: none;
}

#point ul li:before{
    content: "●";
    color: #fcc800;
	margin-right: 0.3em;
}

@media screen and (max-width: 767px){
	#point{
		display: block;
		width: 84vw;
		margin: 0 auto 0;
	}

	#point .wrapper{
		border-radius: 5.33vw;
		width: 100%;
		padding: 5.33vw;
		margin-bottom: 16.4vw
	}

	#point h3{
		position: absolute;
		top: -12.26vw;
		left: 0;
		width: 28.93vw;
	}
	
	#point ul{
		border-radius: 4vw;
		padding: 4.26vw;
	}

	#point ul li{
		width: 100%;
		font-size: 4.26vw;
		border-bottom: 0.13vw solid #d8d8d8;
		padding: 2.13vw 0;
	}
}

/************************************
guidelines
************************************/
#guidelines{
	background: #fffbed;
	padding-top: 45px;
}

#guidelines .caption{
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	width: 860px;
	margin: 0 auto 20px;
}

#guidelines .caption:before{
    content: "■";
    color: #fcc800;
	margin-right: 0.3em;
}

#guidelines dl{
    overflow: hidden;
	display: flex;
	flex-wrap: wrap;
    font-size: 16px;
	line-height: 1.5;
	width: 860px;
	margin: 0 auto 40px;
}

#guidelines .entry{
	position: relative;
	background: #fcc800;
	padding: 68px 0 33px;
}

#guidelines .entry .illust{
	position: absolute;
	width: 220px;
	top: -37px;
	left: 50%;
	transform: translateX(-50%);
}

#guidelines .entry a{
	display: block;
	background: #ffffff;
	color: #000000;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 70px;
	width: 300px;
	height: 70px;
	margin: 0 auto;
	box-shadow: 0 7px 5px rgba(0, 0, 0, 0.07);
}

@media screen and (min-width: 768px){
	#guidelines dl dt{
		font-weight: bold;
		border-bottom: 1px solid #c8c8c8;
		width: 23%;
		padding-top: 16px;
	}
	
	#guidelines dl dt:last-of-type{
		border-bottom: none;
	}
	
	#guidelines dl dd{
		border-bottom: 1px solid #c8c8c8;
		width: 77%;
		padding: 16px 0;
	}
	
	#guidelines dl dd:last-child{
		border-bottom: none;
	}
}

@media screen and (max-width: 1023px) and (min-width: 768px){
	#guidelines .caption{
		width: 90%;
	}
	
	#guidelines dl{
		width: 90%;
	}
}

@media screen and (max-width: 767px){
	#guidelines .caption{
		width: 90%;
	}
	
	#guidelines dl{
		display: block;
		overflow: hidden;
		width: 90%;
		font-size: 4.5vw;
	}
	
	#guidelines dl dt{
		width: 100%;
		font-weight: bold;
		padding-top: 3vh;
	}
	
	#guidelines dl dd{
		width: 100%;
		border-bottom: 1px solid #c8c8c8;
		padding: 0 0;
		padding-bottom: 3vh;
	}
	
	#guidelines dl dd:last-child{
		border-bottom: none;
	}
}