@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.green {
	color: #266942;
}
.area {
	padding: 100px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
.en {
	color: #266942;
	font-size: 120%;
	font-weight: bold;
	letter-spacing: 0.1em;
	position: relative;
	padding: 0 0 20px;
	margin: 0 0 20px;
}
.en::after {
	position: absolute;
	display: block;
	content: "";
	background: #266942;
	width: 220px;
	height: 1px;
	left: 0;
	bottom: 0;
}
.ttl01 {
	color: #266942;
	font-size: 220%;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin: 0 0 30px;
}
.ttl02 {
	color: #266942;
	font-size: 180%;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin: 0 0 40px;
	border-left: 4px solid #266942;
	padding: 5px 0 5px 30px;
}
.ttl03 {
	color: #266942;
	text-align: center;
	font-size: 180%;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 0 0 20px;
	margin: 0 auto 30px;
	border-bottom: 1px solid #aaaaaa;
	max-width: 600px;
}
.btn_green {
	max-width: 340px;
	display: block;
	margin: 0 auto;
	color: #266942;
	font-size: 120%;
	font-weight: bold;
	background: #fff;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 50px;
	position: relative;
	border: 1px solid #266942;
}
.btn_green:hover {
	color: #fff;
	opacity: 1;
}
.btn_green span {
	position: relative;
	z-index: 5;
}
.btn_green::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/btn_arrow_on.png")no-repeat center/8px 17px;
	width: 8px;
	height: 17px;
	right: 30px;
	top: 50%;
	transform: translate(0,-50%);
}
.btn_green:hover::after {
	background: url("../img/common/btn_arrow.png")no-repeat center/8px 17px;
}
.btn_green::before{
	position: absolute;
	display: block;
	content: "";
	background: #266942;
	width: 0;
	height: 100%;
	left: 0;
	bottom: 0;
	transition: all .5s;
	opacity: 0;
	border-radius: 50px;
}
.btn_green:hover::before {
	width: 100%;
	opacity: 1;
}
.tel {
	position: relative;
	display: block;
	font-size: 160%;
	font-weight: bold;
	padding: 0 0 0 40px;
}
.tel::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_tel.png")no-repeat center/25px 25px;
	width: 25px;
	height: 25px;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}
.contact {
	position: relative;
	display: block;
	font-size: 120%;
	font-weight: bold;
	padding: 0 0 0 40px;
}
.contact::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_mail.png")no-repeat center/25px 20px;
	width: 25px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.en {
		font-size: 110%;
	}
	.en::after {
		width: 180px;
	}
	.ttl01 {
		font-size: 145%;
		margin: 0 0 30px;
	}
	.ttl02 {
		font-size: 140%;
		margin: 0 0 30px;
		border-left: 3px solid #266942;
		padding: 5px 0 5px 20px;
	}
	.ttl03 {
		font-size: 130%;
		line-height: 1.4;
	}
	.btn_green {
		max-width: 230px;
		font-size: 100%;
		padding: 15px;
	}
	.btn_green::before{
		display: none;
	}
	.btn_green::after {
		right: 20px;
	}
	.btn_green:hover {
		color: #266942;
	}
	.btn_green:hover::after {
		background: url("../img/common/btn_arrow_on.png")no-repeat center/8px 17px;
	}
	.tel {
		font-size: 140%;
	}
	.contact {
		font-size: 100%;
	}
}


/* header
-------------------------------------------------------*/
#header {
	padding: 20px 0 20px 20px;
	background: #fff;
	box-sizing: border-box;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
}
#header .logo img {
	max-width: 157px;
}
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@media screen and (max-width:1020px) {
	#header .logo img {
		max-width: 150px;
	}
}
@media screen and (max-width:768px) {
	#header {
		padding: 15px;
		height: 56px;
		box-sizing: border-box;
	}
	#header .inner {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: space-between;
		max-width: 100%;
	}
	#header .logo img {
		max-width: 105px;
	}
	.fixed {
		position: inherit;
	}
}


/* nav
-------------------------------------------------------*/
#nav_pc ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
#nav_pc ul li {
	margin: 0 0 0 50px;
}
#nav_pc ul li a {
	position: relative;
	display: inline-block;
	letter-spacing: 0.1em;
}
#nav_pc ul li a:hover {
	opacity: 1;
}
#nav_pc ul li a::after {
	position: absolute;
	display: block;
	content: "";
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#nav_pc ul li a:hover::after {
	transform: scale(1, 1);
}
#nav_pc ul li.web a {
	background: #fff;
	color: #266942;
	padding: 20px 50px;
	display: block;
	border: 1px solid #266942;
	box-sizing: border-box;
	border-right: none;
}
#nav_pc ul li.web a span {
	position: relative;
	z-index: 5;
}
#nav_pc ul li.web a::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #266942;
	transition: all .5s;
	opacity: 0;
	transform: inherit;
}
#nav_pc ul li.web a:hover {
	color: #fff;
}
#nav_pc ul li.web a:hover::after {
	width: 100%;
	opacity: 1;
}
#nav_pc ul li.on a::after {
	transform: scale(1, 1);
}
#nav_pc ul li.web.on a {
	color: #fff;
}
#nav_pc ul li.web.on a::after {
	width: 100%;
	opacity: 1;
}
@media screen and (max-width:1020px) {
	#nav_pc ul {
	  font-size: 85%;
	}
	#nav_pc ul li {
	  margin: 0 0 0 30px;
	}
	#nav_pc ul li.web a {
		padding: 20px 30px;
	}
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 20px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 15px;
	}
	#btn_nav span {
		display: inline-block;
		background: #266942;
		width: 25px;
		height: 1px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(7px) rotate(225deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-7px) rotate(-225deg);
	}
	#nav_sp .logo {
		padding: 15px;
		background: #fff;
	}
	#nav_sp .logo img {
		max-width: 105px;
	}
	#nav_sp nav {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: auto;
		right: -100%;
		z-index: 998;
		transition: .5s;
		background: rgba(0,0,0,0.4);
	}
	#nav_sp nav.active {
		right: 0;
	}
	#nav_sp ul {
		background: #fff;
		padding: 10px 30px 30px;
		letter-spacing: 0.1em;
	}
	#nav_sp ul li:not(:last-child) {
		border-bottom: 1px solid rgba(103,120,110,0.1);
	}
	#nav_sp ul li a {
		padding: 20px 20px 20px 15px;
		display: block;
	}
	#nav_sp ul li.web  {
		background: #266942;
		margin: 20px 0 0;
		border-radius: 5px;
	}
	#nav_sp ul li.web a {
		color: #fff;
		text-align: center;
		font-weight: 500;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	text-align: center;
	border-top: 1px solid #266942;
}
#footer.area {
	padding: 50px 20px;
}
#footer .logo {
    margin: 0 0 40px;
}
#footer .logo img {
    max-width: 157px;
}
#footer .privacy {
    font-size: 80%;
    margin: 0 0 50px;
	display: block;
	letter-spacing: 0.1em;
}
#footer .copy {
	font-size: 75%;
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 40px 20px;
	}
	#footer .logo {
		margin: 0 0 30px;
	}
	#footer .logo img {
		max-width: 120px;
	}
	#footer .privacy {
		margin: 0 0 40px;
	}
}



/* index
-------------------------------------------------------*/
#index .visual_slider li:first-child {
	background: url("../img/index/visual_bg01.png")no-repeat center/cover;
}
#index .visual_slider li:nth-child(2) {
	background: url("../img/index/visual_bg02.png")no-repeat center/cover;
}
#index .visual_slider li:last-child {
	background: url("../img/index/visual_bg03.png")no-repeat center/cover;
}
#index .visual_slider li .inner {
	max-width: 1400px;
}
#index .visual_slider li .sp {
	display: none;
}
@media screen and (max-width:768px) {
	#index .visual_slider li .sp {
		display: block;
	}
	#index .visual_slider li .pc {
		display: none;
	}
}

#index_concept .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#index_concept .img_box {
	width: 37%;
	margin: 0 30px 0 0;
}
#index_concept .img_box .img01 {
	width: 80%;
}
#index_concept .img_box .img01 img {
	max-width: 300px;
}
#index_concept .img_box .img02 {
	text-align: right;
	width: 50%;
	display: block;
	margin: 10px 0 0 auto;
}
#index_concept .img_box .img02 img {
	max-width: 190px;
}
#index_concept .txt_box {
	width: 60%;
}
#index_concept .txt_box .txt {
	line-height: 2;
	text-align: justify;
}
@media screen and (max-width:768px) {
	#index_concept .inner {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#index_concept .img_box {
		width: 70%;
		margin: 0 0 20px;
	}
	#index_concept .txt_box {
		width: 100%;
	}
	#index_concept .txt_box .txt {
		font-size: 90%;
	}

}

#index_service {
	background: rgba(103,120,110,0.1);
}
#index_service .inner {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
}
#index_service ul {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto 60px;
}
#index_service ul li {
	width: 23.5%;
}
#index_service ul li:not(:nth-child(4n)) {
	margin-right: 2%;
}
#index_service ul li:nth-child(-n+4) {
	margin-bottom: 50px;
}
#index_service ul li .icon {
	text-align: center;
	margin: 0 0 30px;
}
#index_service ul li .icon img {
	max-width: 160px;
}
#index_service ul li .ttl {
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	line-height: 1.2;
}
@media screen and (max-width:768px) {
	#index_service .inner {
		padding: 30px;
	}
	#index_service ul {
		margin: 0 auto 60px;
	}
	#index_service ul li .ttl {
		font-size: 110%;
	}

}
@media screen and (max-width:480px) {
	#index_service .inner {
		padding: 30px 20px;
	}
	#index_service ul {
		margin: 0 auto 0;
	}
	#index_service ul li {
		width: 47%;
		margin: 0 0 40px;
	}
	#index_service ul li:nth-child(-n+3) {
		margin: 0 0 40px;
	}
	#index_service ul li .icon {
		margin: 0 0 20px;
	}
	#index_service ul li .icon img {
		max-width: 100px;
	}
	#index_service ul li .ttl {
		font-size: 95%;
	}
}

#index_company {
	background: url("../img/index/company_bg.png")no-repeat center/cover;
}
#index_company .box {
	width: 55%;
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	margin: 0 0 0 auto;
	box-sizing: border-box;
}
#index_company .ttl {
	font-size: 140%;
	font-weight: bold;
	margin: 0 0 20px;
}
#index_company .add {
	line-height: 1.6;
	margin: 0 0 30px;
}
#index_company .tel {
	margin: 0 0 20px;
	display: block;
}
#index_company .contact {
	margin: 0 0 50px;
}
@media screen and (max-width:768px) {
	#index_company {
		background: url("../img/index/company_bg.png")no-repeat left center/cover;
	}

	#index_company .box {
		width: 60%;
	}
}
@media screen and (max-width:480px) {
	#index_company .box {
		width: 100%;
		padding: 30px;
		margin: 0;
		background: rgba(255,255,255,0.8);
	}
	#index_company .ttl {
		font-size: 120%;
	}
	#index_company .add {
		margin: 0 0 20px;
	}
	#index_company .tel {
		margin: 0 0 20px;
	}
	#index_company .contact {
		margin: 0 0 40px;
	}

}

#index #map iframe {
	vertical-align: bottom;
}
@media screen and (max-width:480px) {
	#index #map iframe {
		height: 300px;
	}
}

/* lower
-------------------------------------------------------*/
.breadcrumb {
	padding: 0 20px;
}
.breadcrumb ul {
	max-width: 1000px;
	margin: 30px auto 0;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
}
.breadcrumb ul li {
	font-size: 90%;
	position: relative;
	margin: 0 50px 0 0;
	white-space: nowrap;
}
.breadcrumb ul li:not(:last-child)::after {
	position: absolute;
	display: block;
	content: ">";
	right: -30px;
	top: 0;
}
@media screen and (max-width:768px) {
	.breadcrumb ul {
		margin: 20px auto 0;
	}
	.breadcrumb ul li {
		font-size: 80%;
		margin: 0 30px 0 0;
	}
	.breadcrumb ul li:not(:last-child)::after {
		right: -20px;
	}
}

.lower #visual.area {
	padding: 80px 20px 150px;
}
.lower #visual .en {
	color: #fff;
}
.lower #visual .en::after {
	background: #fff;
}
.lower #visual .ttl01 {
	color: #fff;
}
@media screen and (max-width:768px) {
	.lower #visual.area {
		padding: 40px 20px 70px;
	}
}

/* service
-------------------------------------------------------*/
#service #visual {
	background: url("../img/service/visual.png")no-repeat center/cover;
}
@media screen and (max-width:768px) {
	#service #visual {
		background: url("../img/service/visual.png")no-repeat left center/cover;
	}
}

#service #area01 .top_txt {
	line-height: 1.6;
	margin: 0 0 40px;
	text-align: center;
	font-size: 150%;
	letter-spacing: 0.1em;
}
#service #area01 ul li {
	border: 1px solid #aaaaaa;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#service #area01 ul li:not(:last-child) {
	margin: 0 0 30px;
}
#service #area01 ul li .icon {
	width: 20%;
	margin: 0 30px 0 0;
}
#service #area01 ul li .txt_box {
	width: 80%;
	display: flex;
	flex-flow: column;
	align-items: flex-end;
}
#service #area01 ul li .txt_box .ttl {
	font-size: 120%;
	font-weight: bold;
	border-bottom: 1px solid #aaaaaa;
	padding: 0 0 20px;
	margin: 0 0 20px;
	width: 100%;
}
#service #area01 ul li .txt_box .txt {
	line-height: 1.6;
	margin: 0 0 10px;
	width: 100%;
}
#service #area01 ul li .txt_box a {
	color: #fff;
	background: #266942;
	border-radius: 3px;
	padding: 10px 15px;
	display: inline-block;
	font-size: 85%;
	letter-spacing: 0.1em;
	font-weight: bold;
	text-align: center;
}
@media screen and (max-width:480px) {
	#service #area01 .top_txt {
		margin: 0 0 30px;
		font-size: 110%;
	}
	#service #area01 ul li {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service #area01 ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#service #area01 ul li .icon {
		width: 60%;
		margin: 0 0 30px;
	}
	#service #area01 ul li .txt_box {
		width: 100%;
	}
	#service #area01 ul li .txt_box .ttl {
		font-size: 110%;
	}
	#service #area01 ul li .txt_box .txt {
		font-size: 90%;
		margin: 0 0 20px;
	}
	#service #area01 ul li .txt_box a {
		width: 110px;
		box-sizing: border-box;
		text-align: center;
		margin: 0 auto;
	}
}

#service #area02.area {
	padding: 0 20px 100px;
}
#service #area02 .box {
	display: flex;
	align-items: center;
	justify-content: center;
}
#service #area02 ul {
	position: relative;
}
#service #area02 ul::before {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	background: #266942;
	left: 81px;
	z-index: -1;
}
#service #area02 ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
#service #area02 ul li .img {
	margin: 0 30px 0 0;
}
#service #area02 ul li .img img {
	max-width: 163px;
	min-width: 163px;
}
#service #area02 ul li:not(:last-child) {
	margin: 0 0 40px;
}
#service #area02 ul .txt_box .ttl {
	font-size: 120%;
	font-weight: bold;
	margin: 0 0 10px;
}
#service #area02 ul .txt_box .sub_ttl {
	font-weight: bold;
	font-size: 110%;
	margin: 0 0 20px;
}
#service #area02 ul .txt_box .txt {
	line-height: 1.6;
}
@media screen and (max-width:768px) {
	#service #area02.area {
		padding: 0 20px 50px;
	}
}
@media screen and (max-width:480px) {
	#service #area02 ul::before {
		left: 50px;
		height: 90%;
	}
	#service #area02 ul li {
		align-items: flex-start;
		justify-content: flex-start;
	}
	#service #area02 ul li .img {
		margin: 0 20px 0 0;
	}
	#service #area02 ul li .img img {
		max-width: 100px;
		min-width: 100px;
	}
	#service #area02 ul li:not(:last-child) {
		margin: 0 0 50px;
	}
	#service #area02 ul .txt_box .ttl {
		font-size: 110%;
	}
	#service #area02 ul .txt_box .sub_ttl {
		font-size: 95%;
		line-height: 1.6;
		margin: 0 0 10px;
	}
	#service #area02 ul .txt_box .txt {
		font-size: 90%;
	}
}

/* company
-------------------------------------------------------*/
#company #visual {
	background: url("../img/company/visual.png")no-repeat center/cover;
}
@media screen and (max-width:768px) {
}

#company #area01 .inner {
	max-width: 800px;
}
#company #area01 dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	border-bottom: 1px solid #aaaaaa;
	position: relative;
	padding: 0 0 30px;
	margin: 0 0 30px;
}
#company #area01 dl::after {
	position: absolute;
	display: block;
	content: "";
	background: #266942;
	width: 200px;
	height: 1px;
	bottom: -1px;
}
#company #area01 dl dt {
	width: 200px;
	padding: 5px 0 0 20px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 110%;
}
#company #area01 dl dd {
	padding: 0 0 0 20px;
	line-height: 1.6;
}
#company #area01 dl span {
	font-weight: 700;
	margin: 20px 0 10px;
	display: block;
}
#company #area01 iframe {
	margin: 20px 0 0;
}
#company .img {
	margin: 50px 0 0;
}
@media screen and (max-width:480px) {
	#company #area01 dl {
		padding: 0 0 20px;
		margin: 0 0 20px;
	}
	#company #area01 dl::after {
		width: 100px;
	}
	#company #area01 dl dt {
		width: 100px;
		min-width: 100px;
		padding: 0 0 0 10px;
		box-sizing: border-box;
		font-weight: bold;
		font-size: 90%;
		line-height: 1.6;
	}
	#company #area01 dl dd {
		padding: 0 0 0 10px;
		font-size: 90%;
	}
	#company #area01 iframe {
		height: 200px;
	}
	#company .img {
		margin: 40px 0 0;
	}
}


/* web_exhibition
-------------------------------------------------------*/
.zen {
	font-family: 'Zen Maru Gothic', sans-serif;
}
#web_exhibition #visual.area {
	padding: 0 20px;
}
@media screen and (max-width:768px) {

}

#web_exhibition #web_nav.area {
	padding: 50px 20px;
}
#web_exhibition #web_nav ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#web_exhibition #web_nav ul li {
	width: 15%;
	text-align: center;
	font-size: 120%;
	font-weight: 500;
	border-radius: 5px;
	letter-spacing: 0.1em;
}
#web_exhibition #web_nav ul li:hover {
	transition: 0.3s;
}
#web_exhibition #web_nav ul li.on {
	position: relative;
}
#web_exhibition #web_nav ul li.on::after {
	position: absolute;
	display: block;
	content: "";
	bottom: -14px;
	right: 50%;
	transform: translate(50%,0);
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
}
#web_exhibition #web_nav ul li a {
	padding: 15px 10px;
	display: block;
}
#web_exhibition #web_nav ul li a:hover {
	opacity: 1;
}
#web_exhibition #web_nav ul li.cat_all {
	border: 1px solid #266942;
}
#web_exhibition #web_nav ul li.cat_all:hover {
	background: #266942;
}
#web_exhibition #web_nav ul li.cat_all.on::after {
	border-top: 15px solid #266942;
}
#web_exhibition #web_nav ul li.cat_all a {
	color: #266942;
}
#web_exhibition #web_nav ul li.cat_all.on {
	background: #266942;
}
#web_exhibition #web_nav ul li.cat01 {
	border: 1px solid #335c67;
}
#web_exhibition #web_nav ul li.cat01:hover {
	background: #335c67;
}
#web_exhibition #web_nav ul li.cat01.on::after {
	border-top: 15px solid #335c67;
}
#web_exhibition #web_nav ul li.cat01 a {
	color: #335c67;
}
#web_exhibition #web_nav ul li.cat01.on {
	background: #335c67;
}
#web_exhibition #web_nav ul li.cat02{
	border: 1px solid #9e2a2b;
}
#web_exhibition #web_nav ul li.cat02:hover {
	background: #9e2a2b;
}
#web_exhibition #web_nav ul li.cat02.on::after {
	border-top: 15px solid #9e2a2b;
}
#web_exhibition #web_nav ul li.cat02 a {
	color: #9e2a2b;
}
#web_exhibition #web_nav ul li.cat02.on {
	background: #9e2a2b;
}
#web_exhibition #web_nav ul li.cat03 {
	border: 1px solid #e09f3e;
}
#web_exhibition #web_nav ul li.cat03:hover {
	background: #e09f3e;
}
#web_exhibition #web_nav ul li.cat03.on::after {
	border-top: 15px solid #e09f3e;
}
#web_exhibition #web_nav ul li.cat03 a {
	color: #e09f3e;
}
#web_exhibition #web_nav ul li.cat03.on {
	background: #e09f3e;
}
#web_exhibition #web_nav ul li.cat04 {
	border: 1px solid #797630;
}
#web_exhibition #web_nav ul li.cat04:hover {
	background: #797630;
}
#web_exhibition #web_nav ul li.cat04.on::after {
	border-top: 15px solid #797630;
}
#web_exhibition #web_nav ul li.cat04 a {
	color: #797630;
}
#web_exhibition #web_nav ul li.cat04.on {
	background: #797630;
}
#web_exhibition #web_nav ul li.cat05 {
	border: 1px solid #933090;
}
#web_exhibition #web_nav ul li.cat05:hover {
	background: #933090;
}
#web_exhibition #web_nav ul li.cat05.on::after {
	border-top: 15px solid #933090;
}
#web_exhibition #web_nav ul li.cat05 a {
	color: #933090;
}
#web_exhibition #web_nav ul li.cat05.on {
	background: #933090;
}
#web_exhibition #web_nav ul li.on a {
	color: #fff;
}
#web_exhibition #web_nav ul li:hover a {
	color: #fff;
}
@media screen and (max-width:1035px) {
	#web_exhibition #web_nav ul li {
		font-size: 100%;
	}
}
@media screen and (max-width:890px) {
	#web_exhibition #web_nav ul li {
		font-size: 90%;
		width: 16%;
	}
}
@media screen and (max-width:710px) {
	#web_exhibition #web_nav ul li {
		font-size: 80%;
	}
}
@media screen and (max-width:660px) {
	#web_exhibition #web_nav ul {
		flex-flow: row wrap;
	}
	#web_exhibition #web_nav ul li {
		width: 32%;
		font-size: 100%;
	}
	#web_exhibition #web_nav ul li:nth-child(-n+3) {
		margin: 0 0 20px;
	}
}
@media screen and (max-width:480px) {
	#web_exhibition #web_nav.area {
		padding: 30px 20px;
	}
	#web_exhibition #web_nav ul li {
		font-size: 90%;
	}
	#web_exhibition #web_nav ul li a {
		padding: 10px 7px;
	}
}

#web_exhibition .web_list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#web_exhibition .web_list li {
	width: 31%;
}
#web_exhibition .web_list li:not(:nth-child(3n)) {
	margin: 0 3.5% 70px 0;
}
#web_exhibition .web_list li .img {
	margin: 0 0 20px;
}
#web_exhibition .web_list li .ttl {
	font-size: 110%;
	font-weight: bold;
	margin: 0 0 10px;
	line-height: 1.4;
}
#web_exhibition .web_list li .txt {
	line-height: 1.6;
	font-size: 90%;
	margin: 0 0 20px;
	display: none;/* test */
}
@media screen and (max-width:768px) {
	#web_exhibition .web_list li {
		width: 48%;
	}
	#web_exhibition .web_list li:not(:nth-child(3n)) {
		margin: 0 0 50px;
	}
	#web_exhibition .web_list li:nth-child(odd) {
		margin: 0 4% 50px 0;
	}
	#web_exhibition .web_list li .img {
		margin: 0 0 20px;
	}
	#web_exhibition .web_list li .ttl {
		font-size: 100%;
	}
	#web_exhibition .web_list li .txt {
		font-size: 90%;
	}
}

#web_exhibition .tag {
	font-size: 90%;
	color: #fff;
	display: inline-block;
	padding: 5px 10px;
	border-radius: 3px;
	letter-spacing: 0.1em;
}
#web_exhibition .tag.tag01 {
	background: #335c67;
}
#web_exhibition .tag.tag02 {
	background: #9e2a2b;
}
#web_exhibition .tag.tag03 {
	background: #e09f3e;
}
#web_exhibition .tag.tag04 {
	background: #797630;
}
#web_exhibition .tag.tag05 {
	background: #933090;
}
@media screen and (max-width:768px) {
	#web_exhibition .tag {
		font-size: 80%;
	}
}

#web_exhibition .btn_green {
	max-width: 190px;
	margin: 30px auto 0;
	font-size: 100%;
	letter-spacing: 0.1em;
	padding: 13px;
}
#web_exhibition .btn_green:hover {
	color: #fff;
}
#web_exhibition .btn_green::after {
	right: 20px;
}
@media screen and (max-width:768px) {
	#web_exhibition .btn_green {
		margin: 20px auto 0;
		font-size: 80%;
		padding: 10px;
		max-width: 90%;
	}
	#web_exhibition .btn_green::after {
	  background: url("../img/common/btn_arrow_on.png")no-repeat center/7px 13px;
	  width: 7px;
	  height: 13px;
	  right: 20px;
	}
}

#web_exhibition .pager {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin: 30px 0 0;
}
#web_exhibition .pager li {
	margin: 0 5px;
}
#web_exhibition .pager li:first-child,#web_exhibition .pager li:last-child {
	margin: 0 30px;
}
#web_exhibition .pager li a {
	width: 40px;
	height: 40px;
	border: 1px solid #898989;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #898989;
	font-weight: bold;
}
#web_exhibition .pager li.on a {
	background: #898989;
	color: #fff;
}
#web_exhibition .pager li:hover a {
	background: #898989;
	color: #fff;
}
#web_exhibition .pager .off {
	pointer-events: none;
}
@media screen and (max-width:768px) {
	#web_exhibition .pager {
		margin: 20px 0 0;
	}
	#web_exhibition .pager li {
		margin: 0 2px;
	}
	#web_exhibition .pager li:first-child,#web_exhibition .pager li:last-child {
		margin: 0 10px;
	}
	#web_exhibition .pager li a {
		width: 30px;
		height: 30px;
	}
}

#web_exhibition .ex_ttl01 {
	color: #266942;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
	font-size: 140%;
	border-bottom: 1px solid #266942;
	margin: 0 0 30px;
	padding: 0 0 20px 50px;
	position: relative;
}
#web_exhibition.cat01 .ex_ttl01 {
	color: #335c67;
	border-bottom: 1px solid #335c67;
}
#web_exhibition.cat02 .ex_ttl01 {
	color: #9e2a2b;
	border-bottom: 1px solid #9e2a2b;
}
#web_exhibition.cat03 .ex_ttl01 {
	color: #e09f3e;
	border-bottom: 1px solid #e09f3e;
}
#web_exhibition.cat04 .ex_ttl01 {
	color: #797630;
	border-bottom: 1px solid #797630;
}
#web_exhibition.cat05 .ex_ttl01 {
	color: #933090;
	border-bottom: 1px solid #933090;
}
@media screen and (max-width:768px) {
	#web_exhibition .ex_ttl01 {
		margin: 0 0 20px;
		padding: 0 0 20px 35px;
	}
}

#web_exhibition #ranking {
	background: #e8ecea;
}
#web_exhibition.cat01 #ranking {
	background: #ebf0f1;
}
#web_exhibition.cat02 #ranking {
	background: #ebe6e6;
}
#web_exhibition.cat03 #ranking {
	background: #e8e3dc;
}
#web_exhibition.cat04 #ranking {
	background: #e8e8e3;
}
#web_exhibition #ranking.area {
	padding: 50px 20px;
}
#web_exhibition #ranking .inner {
	background: #fff;
	border-radius: 10px;
	padding: 30px;
}
#web_exhibition #ranking .ex_ttl01::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/web_exhibition/icon01.png")no-repeat center/33px 32px;
	width: 33px;
	height: 32px;
	left: 0;
	top: -5px;
}
#web_exhibition #ranking .web_list li:not(:nth-child(3n)) {
	margin: 0 3.5% 0 0;
}
#web_exhibition #ranking .web_list li .img {
	position: relative;
}
#web_exhibition #ranking .web_list li .img::before {
	position: absolute;
	display: block;
	content: "";
	width: 31px;
	height: 43px;
	left: 15px;
	top: 0;
}
#web_exhibition #ranking .web_list li.rank01 .img::before {
	background: url("../img/web_exhibition/rank01.png")no-repeat center/31px 43px;
}
#web_exhibition #ranking .web_list li.rank02 .img::before {
	background: url("../img/web_exhibition/rank02.png")no-repeat center/31px 43px;
}
#web_exhibition #ranking .web_list li.rank03 .img::before {
	background: url("../img/web_exhibition/rank03.png")no-repeat center/31px 43px;
}
@media screen and (max-width:768px) {
	#web_exhibition #ranking.area {
		padding: 30px 20px;
	}
	#web_exhibition #ranking .inner {
		padding: 20px;
	}
	#web_exhibition #ranking .ex_ttl01::after {
		background: url("../img/web_exhibition/icon01.png")no-repeat center/27px 23px;
		width: 27px;
		height: 23px;
		top: -2px;
	}
	#web_exhibition #ranking .web_list li:not(:nth-child(3n)) {
		margin: 0 0 50px;
	}
	#web_exhibition #ranking .web_list li {
		width: 100%;
		margin: 0 0 50px;
	}
	#web_exhibition #ranking .web_list li:last-child {
		margin: 0;
	}
}

#web_exhibition #all .ex_ttl01::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/web_exhibition/icon02.png")no-repeat center/35px 35px;
	width: 35px;
	height: 35px;
	left: 0;
	top: -5px;
}
@media screen and (max-width:768px) {
	#web_exhibition #all .ex_ttl01::after {
		background: url("../img/web_exhibition/icon02.png")no-repeat center/24px 24px;
		width: 24px;
		height: 24px;
		top: 0;
	}
}


/* web_exhibition
-------------------------------------------------------*/
#web_exhibition.detail .breadcrumb {
	background: #e8ecea;
	padding: 20px 20px 10px 20px;
}
#web_exhibition.detail .breadcrumb ul {
	margin: 0 auto;
}
#web_exhibition.detail .breadcrumb ul li {
	margin: 0 50px 10px 0;
}
@media screen and (max-width:768px) {
	#web_exhibition.detail .breadcrumb {
		padding: 15px 20px 5px 20px;
	}
	#web_exhibition.detail .breadcrumb ul li {
		margin: 0 30px 10px 0;
	}
}

#web_exhibition #detail_top.area {
	padding: 50px 20px 0;
}
#web_exhibition #detail_top .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#web_exhibition #detail_top .detail_slider {
	width: 48%;
}
#web_exhibition #detail_top .txt_box {
	width: 50%;
}
#web_exhibition #detail_top .txt_box .ttl {
	font-size: 140%;
	font-weight: 700;
	border-bottom: 1px solid #898989;
	padding: 0 0 20px;
	margin: 0 0 20px;
}
#web_exhibition #detail_top .tag {
	margin: 0 0 20px;
}
#web_exhibition #detail_top .txt {
	line-height: 1.6;
	margin: 0 0 40px;
}
#web_exhibition #detail_top .price {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: flex-end;
	margin: 0 0 30px;
}
#web_exhibition #detail_top .price dt {
	margin: 0 20px 0 0;
	border-top: 1px solid #898989;
	border-bottom: 1px solid #898989;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #898989;
	font-size: 90%;
	letter-spacing: 0.1em;
}
#web_exhibition #detail_top .price dd {
	line-height: 1.4;
}
#web_exhibition #detail_top .price .num {
	font-size: 170%;
	font-weight: normal;
}
#web_exhibition #detail_top .price .tax {
	font-size: 80%;
}
#web_exhibition #detail_top .price .stone {
	font-size: 85%;
	display: block;
	margin: 5px 0 0;
}
#web_exhibition #detail_top .btn_green {
	max-width: 200px;
	margin: 0 0 0 auto;
}
#web_exhibition .btn_green.back {
	margin: 50px auto 0;
	border: 1px solid #999;
	color: #999;
}
#web_exhibition .btn_green.back::before {
	background: #999;
}
#web_exhibition .btn_green.back::after {
	background: url("../img/common/btn_arrow_gray.png")no-repeat center/8px 17px;
	right: inherit;
	left: 20px;
}
#web_exhibition .btn_green.back:hover::after {
	background: url("../img/common/btn_arrow_flip.png")no-repeat center/8px 17px;
	right: inherit;
	left: 20px;
}
#web_exhibition .btn_green.back:hover  {
	color: #fff;
}
#web_exhibition.detail .caution {
	font-size: 85%;
	line-height: 1.6;
	border: 1px solid #999;
	border-radius: 5px;
	padding: 20px;
}
#web_exhibition.detail .caution li {
	padding-left: 1em;
	text-indent: -1em;
}
#web_exhibition.detail .caution li:not(:last-child) {
	margin: 0 0 5px;
}
#web_exhibition.detail .caution li.red {
	color: red;
}
#web_exhibition #detail_case.area {
	padding: 50px 20px 100px;
}
#web_exhibition #detail_case ul.case_list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 50px;
}
#web_exhibition #detail_case ul.case_list li {
	width: 23%;
}
#web_exhibition #detail_case ul.case_list li:not(:nth-child(4n)) {
	margin: 0 2% 0 0;
}
#web_exhibition .case_list_box {
	display: none;
}
.case_common {
	max-width: 500px;
	min-width: 500px;
	width: 100%;
}
.case_common .img {
	margin: 0 0 15px;
	text-align: center;
}
.case_common .img.tate img {
	max-width: 300px;
}
.case_common .txt_box {
	line-height: 1.4;
}
.case_common .info {
	margin: 20px 0 0;
}
.case_common .info dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.case_common .info dl:not(:last-child) {
	margin: 0 0 10px;
}
.case_common .info dl dt {
	background: #999;
	padding: 5px 10px;
	color: #fff;
	margin: 0 10px 0 0;
	border-radius: 5px;
	font-size: 90%;
}
@media screen and (max-width:768px) {
	#web_exhibition #detail_top.area {
		padding: 30px 20px 0;
	}
	#web_exhibition #detail_top .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#web_exhibition #detail_top .detail_slider {
		width: 100%;
		margin: 0 0 40px;
	}
	#web_exhibition #detail_top .txt_box {
		width: 100%;
	}
	#web_exhibition #detail_top .tag {
		margin: 0 0 20px;
	}
	#web_exhibition #detail_top .btn_green {
		max-width: 250px;
		margin: 0 auto;
	}
	#web_exhibition #detail_top .btn_green:hover {
		color: #266942;
	}
	#web_exhibition .btn_green.back {
		margin: 50px auto 0;
		max-width: 250px;
	}
	#web_exhibition .btn_green.back:hover {
		color: #999;
	}
	#web_exhibition .btn_green.back:hover::after {
		background: url("../img/common/btn_arrow_gray.png")no-repeat center/8px 17px;
	}
	#web_exhibition #detail_top .price {
		margin: 0 0 50px;
	}
	#web_exhibition #detail_top .price dt {
		margin: 0 10px 0 0;
		padding: 10px 5px;
		min-width: 68px;
		box-sizing: border-box;
	}
	#web_exhibition #detail_case ul.case_list li {
		width: 48%;
	}
	#web_exhibition #detail_case ul.case_list li:not(:nth-child(4n)) {
		margin: 0;
	}
	#web_exhibition #detail_case ul.case_list li:not(:nth-child(2n)) {
		margin: 0 4% 4% 0;
	}
	#web_exhibition.detail .caution {
		margin: 40px 0 0;
	}
	#web_exhibition.detail .caution li:not(:last-child) {
		margin: 0 0 10px;
	}

}
@media screen and (max-width:720px) {
	.case_common {
		max-width: 300px;
		min-width: 300px;
	}
}
@media screen and (max-width:450px) {
	.case_common {
		max-width: 250px;
		min-width: 250px;
	}
}

/* cat05 */
#web_exhibition.cat05 #all.area {
	padding: 0 20px 100px;
}
#web_exhibition #all.area.page_after {
	padding: 0 20px 100px;
}

/* contact
-------------------------------------------------------*/
#contact #visual {
	background: url("../img/contact/visual.png")no-repeat center/cover;
}
@media screen and (max-width:768px) {

}

#contact .inner {
	max-width: 700px;
}
#contact #area01 .box:not(:last-child) {
	margin: 0 0 100px;
}
#contact #area01 .tel {
	font-size: 330%;
	padding: 0;
	text-align: center;
}
#contact #area01 .tel::before {
	display: none;
}
#contact #area01 .tel span {
	position: relative;
	padding: 0 0 0 70px;
}
#contact #area01 .tel span::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/common/icon_tel.png")no-repeat center/53px 53px;
	width: 53px;
	height: 53px;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}
#contact .table_temp {
	width: 100%;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 220px;
	text-align: left;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact tr.hissu th b::after,
#contact tr.nini th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 3px;
}
#contact tr.hissu th b::after {
	content: "必須";
	background: #ac6969;
}
#contact tr.nini th b::after {
	content: "任意";
	background: #a0a0a0;
}
#contact.contact_after tr {
	border-bottom: 1px solid #aaa;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #aaa;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	border-radius: 5px;
}
#contact input[type="text"],
#contact select {
	height: 40px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
#contact .txt_form {
	text-align: center;
	line-height: 1.6;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .btn_green {
	width: 100%;
	box-sizing: border-box;
	line-height: 1;
	margin: 40px 0 0;
}
#contact .btn_green:hover {
	background: #266942;
	opacity: 1;
}
#contact .btn_green.back {
	border: 1px solid #999;
	color: #999;
}
#contact .btn_green.back:hover {
	background: #999;
	color: #fff;
}
@media screen and (max-width:768px) {
	#contact #area01 .box:not(:last-child) {
		margin: 0 0 70px;
	}
	#contact #area01 .tel {
		font-size: 200%;
	}
	#contact #area01 .tel::before {
		display: none;
	}
	#contact #area01 .tel span {
		padding: 0 0 0 50px;
	}
	#contact #area01 .tel span::before {
		background: url("../img/common/icon_tel.png")no-repeat center/30px 30px;
		width: 30px;
		height: 30px;
	}
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
	}
	#contact tr td {
		padding-top: 0;
	}
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .btn_green {
		margin: 30px 0 0;
	}
}

.prepare {
	text-align: center;
	font-size: 120%;
	margin: 50px 0;
	
}


/* privacy
-------------------------------------------------------*/
#privacy #area01 {
	line-height: 1.6;
}
#privacy #area01 .top_txt {
	margin: 0 0 50px;
}
#privacy #area01 ul li:not(:last-child) {
	margin: 0 0 50px;
}
#privacy #area01 ul li .ttl {
	font-weight: 700;
	font-size: 110%;
	margin: 0 0 10px;
}
#privacy #area01 ul li .txt {
	font-size: 90%;
}
@media screen and (max-width:768px) {
	
}