@charset "utf-8";

/* -------------------- sub_title -------------------- */
.sub_title{
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -2;
}
.sub_title::before{
	position: absolute;
	background-image: url(../img/dott.png);
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* -------------------- カテゴリリスト -------------------- */
.cate_list .cate_title a{
  position: relative;
	display: block;
	padding: 5px;
	color: #584332;
  box-sizing: border-box;
	transition: all 0.5s;
}
.cate_list .cate_title a:hover{
	color: #ffffff;
	background-color: #584332;
	border-radius: 4px;
}
.cate_list .active a{
	color: #ffffff;
	background-color: #584332;
	border-radius: 4px;
}
.cate_list .cate_title a::before,
.cate_list .cate_title a::after {
  position: absolute;
  top: 0;
  content: '';
  width: 5px;
  height: 100%;
  border-top: 1px solid #584332;
  border-bottom: 1px solid #584332;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cate_list .cate_title a::before {
  left: 0;
  border-left: 1px solid #584332;
}
.cate_list .cate_title a::after {
  right: 0;
  border-right: 1px solid #584332;
}
.cate_list .cate_title:nth-child(n + 4){
  margin-top: 10px;
}

/* -------------------- カテゴリタイトル -------------------- */
.cate .cate_title{
	position: relative;
	background: linear-gradient(180deg, #fefefe, #fffae7);
	border: 1px solid #cbcbcb;
	border-radius: 8px;
	padding: 8px 15px 8px 25px;
	box-sizing: border-box;
}
.cate .cate_title::before{
	position: absolute;
	top: .5em;
	left: .5em;
	content: '';
	width: 10px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color: #ff8f23;
	border-radius: 4px;
}

/* -------------------- page2 -------------------- */
#page2 .box_img{
	width: 46%!important;
}
#page2 .box_img figure{
	transition: all 400ms ease-in-out;
}
#page2 .box_img figure:hover{
	transform : translate(0, -5px);
}

/* -------------------- page7 -------------------- */
#page7 #form > p > span, #form dl > dt span{
	color: #E75C5C;
}
#page7 #form dl dt label{
	cursor: pointer;
}
#page7 input{
	width: calc(100% - 10px);
	height: 20px;
	border: 1px solid #cccccc;
	background-color: #fcfcfc;
}
#page7 textarea{
	width: calc(100% - 10px);
	border: 1px solid #cccccc;
	background-color: #fcfcfc;
}
#page7 input:focus, textarea:focus{
	background-color: #ffffff;
}
#page7 button{
	text-indent: 4px;
	cursor: pointer;
	transition: all 400ms ease-in-out;
}
#page7 button:hover{
	transform : translate(0, -5px);
}

/* -------------------- page8 -------------------- */
#page8 tr{
	height: 30px;
}
#page8 th, #page8 td{
	min-width: 30px;
	border-radius: 4px;
}
#page8 tr:first-child th,
#page8 tr:first-child td{
	font-size: 12px;
}
#page8 tr:not(:first-child) td{
	font-size: 14px;
}
#page8 #map {
    height: 360px;
}
/* -------------------- page10 -------------------- */
#page10 ul li a::before{
	position: absolute;
	left: 15px;
	content: '';
	width: 7px;
	height: 20px;
	background-color: #ff8f23;
	border-radius: 3px;
}

/* ---------- PC ---------- */
@media screen and (min-width:769px){
	/* -------------------- page10 -------------------- */
	#page10 ul li a:hover::before{
		background-color: #ffffff;
	}
	#page10 ul li a:hover::after{
		position: absolute;
		top: 17px;
		right: 20px;
		font-size: 20px;
		color: #ffffff;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f30b";
	}
}

/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){

}

/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
/* -------------------- カテゴリタイトル -------------------- */
	.cate_list .cate_title a{
			background: #f3f1ee;
	}
	.cate_list .active a{
		background-color: #584332;
	}
	#page2 .box_img{
		width: 90%!important;
	}
}

/* ---------- IE ---------- */
@media all and (-ms-high-contrast:none){
	#page2 ul li a{padding-bottom: 4px;padding-top: 7px;}
}