@charset "UTF-8";


/*================================================
 *  CSSリセット
 ================================================*/

html,body{margin:0;padding:0;}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	background-color: #fdfff3;
	background-image: url("../img/bg.jpg");
	background-repeat: repeat;
	background-size: auto 30%;
	font-family: 'Noto Sans JP',sans-serif;
	font-size: 1.2em;
	line-height: 1.2;
	font-weight: 500;
}

html {
	-moz-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	height: 100%;
}

a {
	text-decoration: none;
}

/*================================================
 *  ヘッダー
 ================================================*/
.contain {
	text-align: center;
	margin: 0 auto;
}

#header {
	width : 100%;
	max-width: 900px;
	margin: 0 auto;
}

.header_img {
	width: 100%;
	vertical-align: bottom;
}

/*================================================
 *  日程
 ================================================*/
.date {
	width: 100%;
	background-color: #32376c;
	text-align: center;
	margin: 0 auto;
	padding: 2.5em 0;
}

.date_img {
	width: 80%;
	max-width: 700px;
}
    
/*================================================
 *  メイン
 ================================================*/
#main {
	width: 100%;
	background-color: #000;
	background-image: url("../img/bg2.png");
	background-repeat: repeat;
	background-size: 50px auto;
	text-align: center;
	margin: 0 auto;
}

.title img {
	width: 20%;
	max-width: 180px;
	padding: 3em 0;
}

dl {
	width: 95%;
	max-width: 950px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
        border: 2px solid #000;
}

dd p {
	font-weight: 700;
	font-size: 1.5em;
	color: #000;
	margin: 5px;
}

dt {
        background-color: #32376c;
	color: #fff;
	font-weight: 700;
	flex-basis: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8em;
        margin: 0;
        padding: 20px;
	box-sizing: border-box;
        border: 1.5px solid #000;
}

dd {
        background-color: #fff;
	text-align: left;
	flex-basis: 75%;
	font-size: 0.8em;
        margin: 0;
        padding: 20px;
	box-sizing: border-box;
        border: 1.5px solid #000;
}


/*================================================
 *  応募フォームリンクボタン
 ================================================*/
.btn {
	display: block;
	border: 4px solid #888;
	color: #fff;
	background: #888;
	width: 95%;
	max-width: 950px;
	padding: 0.5em 0;
	border-radius: 100vh;
	text-align: center;
	vertical-align: middle;
	font-weight: 700;
	font-size: 2em;
	margin: 1.5em auto;
	transition: .2s;
	text-decoration: none;
	position: relative;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	width: 100%;
	color: #fff;
	font-size: 0.8em;
	text-align: center;
	padding: 1em 0;	
}
/*================================================
 *  レスポンシブ対応
 ================================================*/
 /*　画面サイズ700pxまで適用　*/

@media screen and (max-width: 700px) {

body {
	background-size: 50%;
}

#header {
	width: 100%;
}

#main {
	background-size:30px auto;
}

.date {
	padding: 1.5em 0;
}

.title img {
	padding: 1.5em 0;
}

   
dl {
	width: 95%;
	flex-flow: column;
        border: 0px solid #ff5f6a;
}

dt, dd {
        border: 0px solid #fffeb1;
	font-size: 0.7em;
        padding: 1em;
}

.btn {
	width: 94%;
	font-size: 1.2em;
	margin: 1em auto;
}

footer {
	font-size: 0.6em;
}
}