@charset "utf-8";

/* ------------------------------------------
	- COMMON SETTING
	- MAIN
		-- SLIDER
		-- EVENT
		-- DESCRIPTION
		-- LATEST WORKS
		-- NEWS
------------------------------------------ */


/* ==============================================================
	INDEX
============================================================== */
.listArea{
	width:1020px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
@media screen and (max-width:750px){
	.listArea{
		width:90%;
	}
}
.listArea .list_item{
	width:45%;
	margin: 0 0 50px;
   justify-content: space-between;
	display: block;
	position: relative;
}
@media screen and (max-width:750px){
	.listArea .list_item{
		width:45%;
		margin: 0 2.5% 70px;
	}
	.listArea .list_item img{
		max-width: 100%;
		max-height: 40vw;
	}
}
@media screen and (min-width:750px){
	.listArea .list_item img{
		max-width: 300px;
		max-height: 200px;
	}
}
.listArea .list_item h2{
	font-size: 18px;
	margin-top: 20px;
}
@media screen and (max-width:750px){
	.listArea .list_item h2{
		font-size: 16px;
	}
}
.listArea .list_item p{
	font-size: 14px;
	text-align: left;
}
.listArea .list_item p.date{
	width:150px;
	padding: 3px 10px;
	background: #000;
	color: #fff;
	border-radius: 20px;
	text-align: center;
	position: absolute;
	top:-15px;
	left:0;
	right:0;
	margin: auto;
	font-size: 12px;
	font-weight: 600;
}
@media screen and (max-width:750px){
	.listArea .list_item p.date{
		width:100px;
		font-size: 10px;
	}
}
.listArea .list_item p.categoryArea{
	text-align: center;
	margin: 20px auto;
	font-size: 11px;
	letter-spacing: 0.1em;
	width:100px;
	padding: 3px 10px;
	border: 1px solid #000;
	border-radius: 3px;
	display: inline-block;
}
@media screen and (max-width:750px){
	.listArea .list_item p.categoryArea{
		width:auto;
		font-size: 10px;
		padding: 3px 2%;
	}
}



/* ==============================================================
	DETAIL
============================================================== */

/*　ANNOUNCEMENT
------------------------------------------------ */

.detail .announcement{
	width:820px;
	margin: 0 auto;
}
@media screen and (max-width:750px){
	.detail .contentsArea{
		width:90%;
		margin: 0 auto;
	}
	.detail .announcement{
		width:100%;
	}
}
.detail .announcement h2{
	font-size: 30px;
	line-height: 1.6;
}
@media screen and (max-width:750px){
	.detail .announcement h2{
		font-size: 24px;
	}
}
.detail .announcement p.date{
	font-size: 16px;
	width:150px;
	padding: 5px 10px;
	background: #000;
	color: #fff;
	border-radius: 20px;
	margin: 25px auto;
	font-weight: 600;
}
@media screen and (max-width:750px){
	.detail .announcement p.date{
		font-size: 12px;
	}
}
.detail .announcement p.category{
	font-size:14px;
	line-height: 2;
	padding: 3px 30px;
	border: 1px solid #000;
	border-radius: 5px;
	display: inline-block;
}
@media screen and (max-width:750px){
	.detail .announcement p.category{
		font-size:12px;
	}
}
.detail .announcement .contents{
	margin: 25px auto;
}
.detail .announcement .contents p,
.detail .announcement .contents img{
	margin-bottom: 25px;
}
.detail .announcement .contents p.highlight{
	font-size: 18px;
	font-weight: 600;
}
@media screen and (max-width:750px){
	.detail .announcement .contents p.highlight{
		font-size: 15px;
	}
}
@media screen and (min-width:750px){
	.detail .announcement .contents img{
		max-width: 800px;
	}
}
@media screen and (max-width:750px){
	.detail .announcement .contents img{
		max-width: 100%;
	}
}


/*　APPLICATION FORM
------------------------------------------------ */

.detail .application_form{
	width:1200px;
	margin: 60px auto 0;
}
.detail .application_form h2{
	font-size: 24px;
	line-height: 1.9;
	margin-bottom: 10px;
}

@media screen and (max-width:750px){
	.detail .application_form{
		width:100%;
		margin: 40px auto 0;
	}
}

/*　ENTRY FORM
------------------------------------------------ */
.form_entry{
	background: #f6f6f6;
	margin: 50px auto 0;
	padding: 50px 0;
}
@media screen and (max-width:750px){
	.form_entry{
		padding: 50px 2%;
	}
}
.form_entry p.caution{
	text-align: right;
}
.form_entry form{
	width:630px;
	margin: 0 auto;
}
@media screen and (max-width:750px){
	.form_entry form{
		width:95%;
	}
}
.form_entry table{
	width:100%;
	border-collapse: collapse;
	border-bottom: solid 1px #dcdcdc;
	margin-bottom: 50px;
}
.form_entry table tr{
	border-top: solid 1px #dcdcdc;
}
.form_entry table th{
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	text-align: left;
	width:120px;
	padding:40px 0 40px 30px;
	vertical-align: top;
}
.form_entry table td{
	text-align: left;
	padding: 40px 30px;
}
@media screen and (max-width:750px){
	.form_entry table th,
	.form_entry table td{
		display: block;
		width:90%;
	}
	.form_entry table th{
		padding: 25px 5% 0 5%;
	}
	.form_entry table td{
		padding: 25px 5%;
	}
}
.form_entry table td .flexbox{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
@media screen and (max-width:750px){
	.form_entry table td .flexbox:not(.short){
		display: block;
	}
}
.form_entry table td .flexbox p{
	font-size: 12px;
	line-height: 2;
	font-weight: 600;
	width:60px;
}
.form_entry table td .flexbox p.note{
	font-weight: 300;
	width:auto;
	margin-left:5px;
}
.form_entry table td .flexbox p.note_big{
	font-size: 16px;
	margin-left: 10px;
}
.form_entry .check p{
	margin-bottom: 25px;
	letter-spacing: 0.1em;
}
@media screen and (max-width:750px){

}

/* CONFIRM */
.confirm .contentArea{
	width:820px;
	margin: 0 auto;
}
@media screen and (max-width:750px){
	.confirm .contentArea{
		width:90%;
		margin: 0 auto;
	}
}
.confirm .contentArea h2{
	font-size: 18px;
	margin-bottom: 30px;
}
@media screen and (max-width:750px){
	.confirm .contentArea h2{
		font-size: 16px;
		margin-bottom: 30px;
	}
}
.confirm .form_entry p.outputArea{
	width:100%;
	font-weight: 600;
}
@media screen and (max-width:750px){
	.confirm .form_entry p.outputArea{
		width:100%;
		font-weight: 600;
	}
}


/* THANKS */
.thanks .contentArea h2{
	font-size: 18px;
	margin-bottom: 30px;
}
@media screen and (max-width:750px){
	.thanks .contentArea h2{
		font-size: 16px;
		margin-bottom: 30px;
	}
}
