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

/*------
 Common
------*/
html{
	font-size: 62.5%;
	color: #3f3f3f;
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',YuGothic,'Yu Gothic','メイリオ', Meiryo,'Osaka',sans-serif;
}
body{
	font-size: 1.4rem;
	line-height: 1.8;
	background: url("img/bg.jpeg");
	background-repeat: repeat;
}
ul{
	list-style: none;
	padding: 0;
}
a{
	color: #3f3f3f;
	text-decoration: none;
}
p{
	text-align: center;
}
.inner{
	width: 92%;
	margin: 0 auto;
	max-width: 1000px;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
@media (max-width: 768px){
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
}

/*------
 Header
------*/
header{
	background:rgba(255,255,255,0.9);
	height: 80px;
	position: fixed;
	width: 100%;
	z-index: 10;
}
header p{
	font-size: 4rem;
	font-weight: bold;
	font-family: 'Noto Serif JP', serif;
	line-height: 4rem;
	color: #960b0b;
	margin: 15px auto;
}

/*------
 Footer
------*/
footer p{
	background: #960b0b;
	margin-bottom: 0;
	text-align: center;
	color: #fff;
}
footer a{
	color: #fff;
}

/*------
  PageTopBtn
------*/
#PageTop{
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 40px;
	right: 30px;
	background: #960b0b;
	border-radius: 50%;
	z-index: 10;
}
#PageTop:hover{
	opacity: 0.7;
	transition: 0.6s ease;
}
#PageTop  a{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
}
#PageTop a::before{
	content: '▲';
	font-size: 2rem;
	color: #fff;
	position: absolute;
	top: 10%;
	right: 42%;
}
@media (max-width: 768px){
	#PageTop{
		bottom: 20px;
		right: 15px;
	}
}

/*------
  main
------*/
/*Common*/
main{
	padding-top: 80px;
}
section{
	margin: 50px 0;
}
h2{
	font-size: 2.4rem;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	border-bottom: 2px solid #3f3f3f;
	margin: 30px 0;
	padding: 5px 0;
}

/*Main Visual*/
.mv ul{
	margin-top: 0;
}
.mv img{
	width: 100%;
	height: 35vw;
}
/*content_01*/
#content_01 h2{
	font-size: 2rem;
	color: #960b0b;
	border: none;
	margin-bottom: 0;
}

/*content_02*/
#content_02 p strong{
	font-size: 2.4rem;
	color: #960b0b;
}
.calendar_box{
	max-width: 600px;
	margin: 0 auto;
}
#calender_header {
	text-align: center;
	font-size: 24px;
	width: 100%;
	margin: 1rem 0 0;
}
#calendar {
	text-align: center;
	width: 100%;
}
table {
	border-collapse: collapse;
	width: 100%;
}
th {
	color: #000;
}
th, td {
	border: 1px solid #ddd;
	background: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
td:first-child {
	color: red;
}
td:nth-child(4) {
	color: #fff;
	background: #960b0b;
}
td:last-child {
	color: blue;
}
td.disabled {
	color: #ccc;
}
td.today {
	background-color: #B78D4A;
	color: #fff;
}
#next-prev-button {
	position: relative;
}
#next-prev-button button{
	cursor: pointer;
	background: #B78D4A;
	color: #fff;
	border: 1px solid #B78D4A;
	border-radius: 4px;
	font-size: 1rem;
	padding: 0.5rem 2rem;
	margin: 0 0 1rem;
}
#next-prev-button button:hover{
	background-color: #D4BB92;
	border-color: #D4BB92;
}
#prev {
	float: left;
}
#next {
	float: right;
}

/*content_03*/
#content_03 .goods{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#content_03 .goods div{
	width: 250px;
}
#content_03 .goods div img{
	width: 200px;
	height: 200px;
	margin: 0 auto;
}
#content_03 .goods div span{
	display: block;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #960b0b;
	width: 200px;;
	margin: 0 auto 10px;
}
#content_03 .goods div h3{
	font-size: 1.6rem;
	text-align: center;
	margin: 10px auto 0;
}
#content_03 .goods div p{
	text-align: center;
	margin-top: 0;
}