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


/*************************************************************************************************************************
* デフォルト：640px以下用の記述
*************************************************************************************************************************/
body{
	font-family: "Kozuka Gothic Pro","Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 16px;
	color: #000;
}
#content .wrap{
	max-width: 980px;
	padding: 40px 0;
}
@media print, screen and (min-width:641px) {
	body{
		font-size: 18px;
	}
	#content .wrap{
		padding: 70px 0;
	}
}

#content .btn{
	display: block;
	background-image: -moz-linear-gradient( 90deg, rgb(153,0,0) 0%, rgb(231,5,21) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(153,0,0) 0%, rgb(231,5,21) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(153,0,0) 0%, rgb(231,5,21) 100%);
	max-width: 600px;
	height: 60px;
	padding: 0 10px;
	margin: 0 auto;
	position: relative;
	font-size: 16px;
	font-weight: bold;
	color: white;
	line-height: 60px;
	border-radius: 8px;
	transition: background 0.3s ease-in-out 0s;
}
#content .btn::before{
	content: "";
	display: none;
	background: url("img/btn_arrow.svg")no-repeat center /contain;
	width: 10px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translate(0, -50%);
}
@media print, screen and (min-width:641px) {
	#content .btn{
		height: 75px;
		font-size: 23px;
		line-height: 75px;
	}
	#content .btn::before{
		display: block;
	}
}
@media print, screen and (min-width:980px){
	#content .btn:hover {
		background-image: -moz-linear-gradient( 90deg, rgb(183,0,0) 0%, rgb(231,5,21) 100%);
		background-image: -webkit-linear-gradient( 90deg, rgb(183,0,0) 0%, rgb(231,5,21) 100%);
		background-image: -ms-linear-gradient( 90deg, rgb(183,0,0) 0%, rgb(231,5,21) 100%);
	}
}


/* main
**********************************************************************/
main{
	display: block;
	padding: 0;
}
main .top{
	background: url("img/main_bg.jpg")no-repeat center /cover;
	max-width: none;
	padding: 24px 20px 34px;
}
main .top .wrap{
	max-width: 876px;
	margin: 0 auto;
	padding: 0;
}
main .top .tit{
	max-width: 770px;
	width: 100%;
}
main .top .tit .sp{
	display: block;
}
main .top .tit .pc{
	display: none;
}
main .top .tit span{
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	line-height: 0;
}
main .top .txt{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
main .top ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 300px;
	margin: 20px auto 0;
}
main .top li{
	width: 100%;
}
main .top li:first-child{
	margin-bottom: 14px;
}
main .day{
	background: #333;
	max-width: none;
	padding: 16px 20px;
	font-size: 16px;
	font-weight: 500;
	color: white;
	text-align: center;
}
main .day span{
	display: table;
	margin: 0 auto;
}
@media print, screen and (min-width:641px) {
	main .top .tit{
		margin: 0 auto;
	}
	main .top .tit .sp{
		display: none;
	}
	main .top .tit .pc{
		display: block;
	}
	main .top .txt{
		display: table;
		margin: 0 auto;
		padding: 0 26px;
		font-size: 25px;
		position: relative;
	}
	main .top ul{
		max-width: none;
		margin-top: 10px;
	}
	main .top li{
		width: 48%;
	}
	main .top li:first-child{
		margin-bottom: 0;
	}
	main .day{
		font-size: 20px;
	}
	main .day span{
		display: inline-block;
	}
	@media print, screen and (min-width:800px){
		main .top .txt br{ display: none;}
		main .top .txt::before,
		main .top .txt::after{
			content: "";
			display: block;
			background: url("img/main_txt.svg")no-repeat center /contain;
			width: 20px;
			height: 24px;
			position: absolute;
			top: 12px;
		}
		main .top .txt::before{
			left: 0;
		}
		main .top .txt::after{
			right: 0;
			transform: scaleX(-1);
		}
	}
}


#entryarea,
#tokuten,
#overview{
	padding: 0 20px;
}

/* entryarea
**********************************************************************/
#entryarea{
	background: #fff7e7;
}
#entryarea .wrap{
	padding: 30px 0;
}
#entryarea p{
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}
.entry_top p{
	margin-top: 20px;
}
.entry_btm p{
	margin-bottom: 16px
}
.entry_btm .wrap{
	position: relative;
}
.entry_btm .wrap::before,
.entry_btm .wrap::after{
	content: "";
	display: none;
	position: absolute;
}
.entry_btm .wrap::before{
	background: url("img/entry_icon01.png")repeat center /contain;
	width: 104px;
	height: 104px;
	left: 0;
	bottom: 46px;
}
.entry_btm .wrap::after{
	background: url("img/entry_icon02.svg")repeat center /contain;
	width: 82px;
	height: 77px;
	right: 34px;
	bottom: 70px;
}
@media print, screen and (min-width:641px) {
	#entryarea .wrap{
		padding: 60px 0;
	}
	#entryarea p{
		font-size: 20px;
	}
	.entry_top p{
		margin-top: 40px;
	}
	.entry_btm p{
		margin-bottom: 36px;
	}
}
@media print, screen and (min-width:980px){
	.entry_btm .wrap::before,
	.entry_btm .wrap::after{
		display: block;
	}
}


/* tokuten
**********************************************************************/
#tokuten{
	background: url("img/tokuten_bg.jpg")repeat left top /36px;
}
#tokuten .detail > li{
	background: white;
	padding: 0 20px 20px;
  border-radius: 10px;
	box-shadow: 0px 3px 8px 0px rgba(51, 51, 51, 0.5);
}
#tokuten .detail > li:first-child{
	padding-bottom: 26px;
	margin-bottom: 40px;
}
#tokuten .detail .tit{
	background: #de1a28;
	padding: 14px 10px;
	margin: 0 -20px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	border-radius: 10px 10px 0 0;
	text-align: center;
}
#tokuten .detail .tit span{
	display: inline-block;
	padding-top: 30px;
	position: relative;
}
#tokuten .detail .tit img{
	width: 100px;
	position: absolute;
	top: -40px;
	left: 50%;
	margin-left: -50px;
}
#tokuten .detail .txt{
	margin-top: 20px;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
}
#tokuten .detail li:first-child .txt{
	max-width: 680px;
	text-align: left;
}
#tokuten .detail li:first-child .txt img{
	display: none;
	width: 120px;
	position: absolute;
	top: -6px;
	right: 0;
}
#tokuten .present{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 880px;
	margin: 10px auto 0;
}
#tokuten .present li{
	flex: 0 1 49%;
	margin-top: 10px;
}
#tokuten .present li:first-child{
	flex: 0 1 100%;
	margin-top: 0;
}
#tokuten .detail .img{
	display: block;
	max-width: 720px;
	margin: 20px auto;
}
#tokuten .detail .attention{
	display: table;
	margin: 0 auto;
	font-size: 13px;
}
@media print, screen and (min-width:641px) {
	#tokuten .detail > li{
		padding: 0 20px 30px;
	}
	#tokuten .detail > li:first-child{
		padding-bottom: 36px;
		margin-bottom: 56px;
	}
	#tokuten .detail .tit{
		font-size: 23px;
	}
	#tokuten .detail .tit span{
		padding-left: 120px;
		padding-top: 0;
	}
	#tokuten .detail .tit img{
		top: -20px;
		left: 0;
		margin-left: 0;
	}
	#tokuten .detail .txt{
		margin-top: 30px;
		font-size: 19px;
	}
	#tokuten .detail li:first-child .txt{
		margin: 30px auto 0;
		position: relative;
	}
	#tokuten .present{
		margin: 30px auto 0;
	}
	#tokuten .present li{
		flex: 0 1 24%;
		margin-top: 0;
	}
	#tokuten .present li:first-child{
		flex: 0 1 46%;
	}
	#tokuten .detail .img{
		margin: 20px auto 30px;
	}
	@media print, screen and (min-width:980px) {
		#tokuten .detail li:first-child .txt{
			padding-right: 110px;
		}
		#tokuten .detail li:first-child .txt img{
			display: block;
		}
	}
}


/* overview
**********************************************************************/
#overview{
	color: #714A00;
	font-family:"Hiragino Sans", sans-serif;
}
#overview a{
	color: #714A00
}
#overview .wrap{
	max-width: 1220px;
	padding-bottom: 60px;
}
#overview .tit{
	background: url("img/overview_tit.png")no-repeat center bottom /100px auto;
	padding-bottom: 22px;
	font-size: 23px;
	font-weight: 600;
	text-align: center;
}
#overview table{
	max-width: 850px;
	margin: 20px auto 0;
	font-size: 15px;
}
#overview table th,
#overview table td{
	padding: 16px 0;
}
#overview table th{
	width: 32%;
	padding-right: 10px;
	font-weight: 600;
	border-bottom: #D91C24 3px solid;
}
#overview table td{
	width: 68%;
	border-bottom: #714A00 1px solid;
}
#overview table .numberList .red{
	display: inline;
	position: static;
}
#overview table li:not(:first-child){
	margin-top: 10px;
}
@media print, screen and (min-width:641px) {
	#overview .wrap{
		background: url("img/overview_icon02.svg")no-repeat right bottom -24px /125px auto;
		padding-bottom: 110px;
	}
	#overview .tit{
		background: url("img/overview_tit.png")no-repeat center bottom /130px auto;
		font-size: 34px;
	}
	#overview table{
		margin: 40px auto 0;
		font-size: 18px;
	}
	#overview table th,
	#overview table td{
		padding: 22px 0;
	}
	#overview table th{
		width: 26%;
	}
	#overview table td{
		width: 74%;
	}
}
@media print, screen and (min-width:980px){
	#overview{
		background: url("img/overview_icon01.png")no-repeat left top /190px auto;
	}
}


