
/*============================================
基本CSS
===========================================*/
body {
	background: #F0F0E1;
}

.flex_box {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.10rem;
	margin-right: -0.10rem;
}

@media screen and (max-width: 600px) {
	.flex_box {
		margin-left: 0;
		margin-right: 0;
	}
}

/*============================================
ヘッダー
===========================================*/
header {
	background-color: #FFF;
	position: relative;
}

header .in {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.30rem 0.40rem;
}

@media screen and (max-width: 600px) {
	header .in {
		padding: 0.20rem;
	}
}

header .logo {
	width: 3.50rem;
}

@media screen and (max-width: 600px) {
	header .logo {
		width: 2.00rem;
	}
}

header .glo_navi .list {
	display: flex;
	align-items: center;
	padding-right: 1.40rem;
}

@media screen and (max-width: 600px) {
	header .glo_navi .list {
		display: block;
		padding-right: 0;
		position: absolute;
		top: 0.65rem;
		left: 0;
		width: 100%;
		z-index: 10;
		padding: 0.15rem 0 0.20rem;
		display: none;
		background-color: rgba(204, 232, 232, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

header .glo_navi .list .link,
header .glo_navi .list .sns {
	padding-left: 0.30rem;
}

@media screen and (max-width: 600px) {
	header .glo_navi .list .link,
	header .glo_navi .list .sns {
		padding: 0.15rem 0.20rem;
	}
}

header .glo_navi .list .link a {
	color: #111;
	text-decoration: none;
	font-size: 0.16rem;
	font-weight: 500;
}

@media screen and (max-width: 600px) {
	header .glo_navi .list .link a {
		font-size: 0.18rem;
	}
}

header .glo_navi .list .sns a {
	display: block;
	width: 0.30rem;
	height: 0.30rem;
	background-image: url(../common/img/icon_fb_black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* お問い合わせ */
header .glo_navi .contact {
	height: 100%;
	width: 1.40rem;
	position: absolute;
	right: 0;
	top: 0;
}

@media screen and (max-width: 600px) {
	header .glo_navi .contact {
		width: 0.65rem;
		right: 0.65rem;
	}
}

header .glo_navi .contact a {
	background-color: #008C69;
	display: block;
	height: 100%;
	position: relative;
	text-align: center;
	text-decoration: none;
	font-size: 0.16rem;
	font-weight: 700;
	color: #FFF;
	box-sizing: border-box;
	padding-top: 0.70rem;
}

@media screen and (max-width: 600px) {
	header .glo_navi .contact a {
		font-size: 0;
		padding-top: 0.40rem;
	}
	header .glo_navi .contact a span {
		display: none;
	}
}

header .glo_navi .contact a::before {
	content: "";
	width: 0.40rem;
	height: 0.80rem;
	background-image: url(../common/img/icon_mail01_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 600px) {
	header .glo_navi .contact a::before {
		width: 0.30rem;
		height: 0.60rem;
	}
}

header .glo_navi a:hover {
	opacity: 0.7;
}


/*============================================
ナビゲーションボタン
===========================================*/
/* 開閉ボタン */
#SPnaviBtn {
	top: 0;
	right: 0;
	width: 0.65rem;
	height: 0.65rem;
	position: absolute;
	text-align: center;
	display: none;
}

@media screen and (max-width: 600px) {
	#SPnaviBtn {
		display: block;
	}
}


.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

/* #SPmenuBars {
	position: absolute;
	left: 50%;
	width: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
} */

.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #333;
}

.menu-trigger span:nth-of-type(1) {
	top: 33%;
}

.menu-trigger span:nth-of-type(2) {
	top: 50%;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 33%;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	top: 50%;
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
	bottom: 50%;
}

@media screen and (max-width: 640px) {
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
		bottom: 47%;
	}
}


/*============================================
メインコンテンツ
===========================================*/
#MainContWrapper {
	clear: both;
	margin: auto;
}

@media screen and (max-width: 600px) {
	#MainContWrapper {
		padding: 0;
	}
}



#ContBoxWrapper {
	clear: both;
	position: relative;
	padding-top: 0.40rem;
}

@media screen and (max-width: 600px) {
	#ContBoxWrapper {
		margin-left: 0;
		padding-top: 0;
	}
}

.ContBoxItem {
	width: 33.3%;
	box-sizing: border-box;
	padding: 10px;
	padding-bottom: 0;
}

@media screen and (max-width: 600px) {
	.ContBoxItem {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
		padding-bottom: 15px;
	}
}

.ContBox {
	background: #FFF;
	margin-bottom: 15px;
	position: relative;
	box-sizing: border-box;
	border: 1px solid #CCC;
}

@media screen and (max-width: 600px) {
	.ContBox {
		width: 100%;
		float: none;
		margin-right: 0;
	}

	.ContBox:last-child {
		margin-bottom: 0;
	}
}

.ContBox a {
	text-decoration: none;
}

.ContBox.CatNone {
	background: 0;
	border: 0;
}

.ContBox .NewIcon {
	background: url(../img/new_icon.png) no-repeat;
	width: 70px;
	height: 70px;
	z-index: 100;
	position: absolute;
	top: -1px;
	left: -1px;
}

.CatName {
	position: absolute;
	padding: 4px;
	padding-left: 7px;
	padding-right: 7px;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	top: 190px;
	left: 13px;
	z-index: 10;
	line-height: 1.2;
}

@media screen and (max-width: 600px) {
	.CatName {
		top: 54vw;
	}
}

.Cat01 .CatName {
	background: #0087B4;
}

.Cat02 .CatName {
	background: #85B200;
}

.Cat03 .CatName {
	background: #FF8000;
}

.Cat04 .CatName {
	background: #8C6900;
}

.Cat05 .CatName {
	background: #09C;
}

.ContBox a .ContIndexPhoto img {
	width: 100%;
	min-height: 178px;
	transition: all 0.2s ease;
}

#ContBoxWrapper .ContBox a .ContIndexPhoto {
	height: 178px;
	overflow: hidden;
	border-bottom: 3px solid #DDD;
	transition: all 0.2s ease;
	z-index: 1;
}

@media screen and (max-width: 600px) {
	#ContBoxWrapper .ContBox a .ContIndexPhoto {
		height: 50vw;
		overflow: hidden;
		border-bottom: 3px solid #DDD;
		transition: all 0.2s ease;
		z-index: 1;
	}
}

#ContBoxWrapper .ContBox a .EventEnd {
	position: absolute;
	z-index: 100;
	font-size: 12px;
	text-align: center;
	top: 150px;
	left: 0;
	background: url(../img/black_bg.png);
	width: 100%;
	line-height: 30px;
	color: #FFF;
	font-weight: bold;
}

/*
#ContBoxWrapper .Cat01 a:hover .ContIndexPhoto {border-bottom:5px solid #0087B4;}
#ContBoxWrapper .Cat02 a:hover .ContIndexPhoto {border-bottom:5px solid #85B200;}
#ContBoxWrapper .Cat03 a:hover .ContIndexPhoto {border-bottom:5px solid #FF8000;}
#ContBoxWrapper .Cat04 a:hover .ContIndexPhoto {border-bottom:5px solid #8C6900;}
*/

.ContBox a:hover .ContIndexPhoto img {
	opacity: 0.8;
}

.ContBox a .ContIndexText {
	padding: 20px;
	padding-top: 45px;
	padding-bottom: 60px;
	background: #FFF;
}

.ContBox a .ContIndexText span {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	display: block;
	padding-bottom: 3px;
	color: #666;
	transition: all 0.2s ease;
	position: absolute;
	right: 10px;
	top: 195px;
}

@media screen and (max-width: 600px) {
	.ContBox a .ContIndexText span {
		top: 55vw;
	}
}

.ContBox a .ContIndexText h2 {
	font-size: 16px;
	line-height: 1.3;
	padding-bottom: 5px;
	color: #666;
	transition: all 0.2s ease;
}

.ContBox a .ContIndexText p {
	font-size: 13px;
	line-height: 1.4;
	color: #666;
	transition: all 0.2s ease;
	text-align: justify;
	text-justify: inter-ideograph;
}

.ContBox a .MoreBtn {
	height: 26px;
	background: url(../img/more_btn.png) right 0;
	line-height: 26px;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	color: #FFF;
	position: absolute;
	bottom: 20px;
	width: 88%;
}

@media screen and (max-width: 600px) {
	.ContBox a .MoreBtn {
		height: auto;
		line-height: 1.8;
		font-size: 0.9em;
		width: 90%;
	}
}

.ContBox a:hover .ContIndexText span,
.ContBox a:hover .ContIndexText h2,
.ContBox a:hover .ContIndexText p {
	color: #222;
}

.ContBox a:hover .MoreBtn {
	background: url(../img/more_btn.png) right -26px;
}

/*============================
共通フッター
============================*/
#ContFooter {
	clear: both;
	padding: 0.20rem;
	background: #FFF;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 0.06rem;
	box-shadow: 0 2px 0.08rem rgba(0,0,0,0.06);
	max-width: 12.00rem;
	box-sizing: border-box;
	margin: 0 auto 0.35rem;
}

@media screen and (max-width: 600px) {
	#ContFooter {
		margin: 0 0.20rem 0.20rem;
		padding: 0;
	}
}

#ContFooter a {
	text-decoration: none;
}

#ContFooter a:hover h3 {
	color: #008C8C;
}

#ContFooter a:hover p {
	color: #222;
}

.ContFooterBox .title {
	font-size: 0.20rem;
	font-weight: 700;
	text-align: center;
	color: #333;
	line-height: 1.6;
}

@media screen and (max-width: 600px) {
	.ContFooterBox .title {
		font-size: 3.6vw;
	}
}

.ContFooterBox img {
	display: block;
	margin: auto;
	padding: 0.10rem;
}

.ContFooterBox .text {
	font-size: 0.15rem;
	color: #333;
	line-height: 1.875;
	text-align: justify;
	text-justify: inter-ideograph;
}

@media screen and (max-width: 600px) {
	.ContFooterBox .text {
		font-size: 0.12rem;
		line-height: 1.75;
		letter-spacing: 0;
	}
}

.ContFooterBox {
	width: 25%;
	padding: 0.20rem;
	box-sizing: border-box;
}

@media screen and (max-width: 600px) {
	.ContFooterBox {
		width: 50%;
		padding: 15px;
		box-sizing: border-box;
	}
}

#ContFooterBox01,
#ContFooterBox02,
#ContFooterBox03 {
	border-right: 1px solid #CCC;
}

@media screen and (max-width: 600px) {
	#ContFooterBox01,
	#ContFooterBox02 {
		border-bottom: 1px solid #CCC;
	}

	#ContFooterBox02 {
		border-right: 0;
	}
}

#FooterWrapper {
	background: #008C8C;
}

#Footer {
	max-width: 12.80rem;
	padding: 0 0.40rem;
	margin: auto;
	overflow: hidden;
	position: relative;
	height: 0.70rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (max-width: 600px) {
	#Footer {
		height: auto;
		padding: 0.20rem;
		display: block;
		text-align: center;
	}
}

#Footer .left_box {
	width: 50%;
	display: flex;
	align-items: baseline;
	color: #FFF;
}

@media screen and (max-width: 600px) {
	#Footer .left_box {
		width: 100%;
		display: block;
		text-align: center;
	}
}

#Footer .logo {
	font-size: 0.20rem;
	font-weight: 700;
	color: #FFF;
}

@media screen and (max-width: 600px) {
	#Footer h2 {
		position: relative;
		top: inherit;
		left: inherit;
		margin: auto;
		margin-bottom: 0.15rem;
	}
}

#Footer .text {
	font-size: 0.11rem;
	color: #FFF;
	padding-left: 0.10rem;
}

@media screen and (max-width: 600px) {
	#Footer .text {
		font-size: 0.10rem;
		padding-left: 0;
		letter-spacing: 0;
	}
}

#Footer .link_list {
	display: flex;
}

@media screen and (max-width: 600px) {
	#Footer .link_list {
		justify-content: center;
		padding-top: 0.20rem;
	}
}

#Footer li {
	padding: 0 0.10rem;
	line-height: 1.1;
}

#Footer li a {
	color: #FFF;
	text-decoration: none;
	font-size: 0.12rem;
	line-height: 1.1;
}

#Footer li.vBorder {
	border-left: 1px solid #76C5C7;
}

#Footer li a:hover {
	text-decoration: underline;
}

/* ページャー */
#PagesItemWrapper {
	position: relative;
	padding-bottom: 25px;
	clear: both;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.PagesItem {
	clear: both;
	overflow: hidden;
	text-align: center;
}

.PagesItem span.current_page,
.PagesItem a {
	display: inline-block;
	padding: 7px;
	font-size: 14px;
	padding-left: 11px;
	padding-right: 11px;
	color: #FFF;
	font-weight: bold;
	border-radius: 15px;
	margin-right: 12px;
	line-height: 1.2;
	text-decoration: none;
}

@media screen and (max-width: 600px) {
	.PagesItem span.current_page,
	.PagesItem a {
		margin-right: 8px;
	}
}

.PagesItem span.current_page {
	background: #099;
}

.PagesItem a {
	background: #999;
}

.PagesItem a:hover {
	background: #666;
}

#pMargin {
	position: absolute;
	left: 0;
}

/* ページの先頭に戻る */
#BackToTop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10000;
	cursor: pointer;
}

@media screen and (max-width: 600px) {
	#BackToTop {
		bottom: 20px;
		right: 20px;
	}
}

#BackToTop a {
	display: block;
	width: 80px;
	height: 80px;
	background: url(../img/backtotop_icon.png) no-repeat;
	background-size: cover;
	text-indent: -9999px;
	opacity: 0.7;
	transition: all 0.3s ease;
}

@media screen and (max-width: 600px) {
	#BackToTop a {
		width: 60px;
		height: 60px;
	}
}

#BackToTop a:hover {
	opacity: 1;
}
