@charset "utf-8";

/*==============================
 Body
==============================*/
body {
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #00529F;
	text-decoration: none;
	/*opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;*/
}
.sp, .nobr {
	display: none;
}

/*==============================
 Header
==============================*/
header {
	position: fixed;
	width: 100%;
	height: 100px;
	display: block;
	z-index: 10000;
	background-color: rgba(255,255,255,1) !important;
	transition: all .5s;
}
header.bgColor {
	background-color: rgba(255,255,255,0.95) !important;
}
header .inner {
	position: relative;
	width: 100%;
	height: 100px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	z-index: 10000;
	box-sizing: border-box;
}
header img.logo {
	position: absolute;
	height: 70px;
	top: calc(50% - 40px);
	left: 1%;
	display: block;
	transition: all 200ms;
}
header ul.sns {
	position: absolute;
	top: 20px;
	right: 0;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
}
header ul.sns li {
	width: 20px;
	height: 20px;
	display: block;
	margin: 0 10px;
}
header h1 {
	position: absolute;
	width: auto;
	top: 25px;
	right: 100px;
	display: block;
	padding-left: 30px;
	font-size: 1.1em;
	line-height: 1.2em;
}

/*==============================
 グローバルナビ（ヘッダー）
==============================*/
header ul.pcNav {
	position: absolute;
	top: 60px;
	right: 0;
	width: 70%;
	height: 80px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	align-self: flex-end;
	background: #00529f;
	box-sizing: border-box;
}
header ul.pcNav li {
	width: auto;
	height: 80px;
	display: block;
	overflow: hidden;
	margin: 0;
	transition: all 200ms;
}
header ul.pcNav li.w1 {width: 13%;}
header ul.pcNav li.w2 {width: 14%;}
header ul.pcNav li.w3 {width: 16.5%;}
header ul.pcNav li.w4 {width: 15.5%;}
header ul.pcNav li.w5 {width: 13%;}
header ul.pcNav li.w6 {width: 13%;}
header ul.pcNav li.w7 {width: 15%;}
header ul.pcNav li a {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	letter-spacing: 0.1em;
	text-align: center;
	color: #FFF;
	transition: all 200ms;
}
header ul.pcNav li a:hover {
	transition: opacity 0.5s;
	background: #01467f;
}
header ul.pcNav > li:hover #productMenu,
header ul.pcNav > li:hover #guideMenu,
header ul.pcNav > li:hover #reportMenu {
	opacity: 1;
	transform: translate(0, 0);
}
header ul.pcNav > li:hover #productMenu,
header ul.pcNav > li:hover #reportMenu{
	height: 350px;
	transition: all 300ms;
}
header ul.pcNav > li:hover #guideMenu {
	height: 100px;
	transition: all 270ms;
}
header ul.pcNav li ul#productMenu,
header ul.pcNav li ul#guideMenu,
header ul.pcNav li ul#reportMenu {
	position: absolute;
	height: 0;
	top: 80px;
	display: block;
	overflow: hidden;
	z-index: 1000;
	background: #01467f;
	box-sizing: border-box;
	opacity: 0;
    transform: translate(0, -20px);
    transition: all 300ms;
}
header ul.pcNav li ul#productMenu {
	width: 280px;
	eft: 13%;
}
header ul.pcNav li ul#guideMenu {
	width: 320px;
	left: 43.5%;
}
header ul.pcNav li ul#reportMenu {
	width: 280px;
	left: 59%;
}
header ul.pcNav li ul#productMenu li,
header ul.pcNav li ul#guideMenu li,
header ul.pcNav li ul#reportMenu li {
	width: 100%;
	height: 50px;
	display: block;
}
header ul.pcNav li ul#productMenu li a,
header ul.pcNav li ul#guideMenu li a,
header ul.pcNav li ul#reportMenu li a {
	width: 100%;
	height: 50px;
	display: block;
	padding: 0 5%;
	font-size: 1.2em;
	font-weight: normal;
	line-height: 50px;
	text-align: left;
	background: url("../images/arrow_right_w.svg") no-repeat right 5% center;
	background-size: 8px 8px;
	box-sizing: border-box;
}
header ul.pcNav li ul#productMenu li a:hover,
header ul.pcNav li ul#guideMenu li a:hover,
header ul.pcNav li ul#reportMenu li a:hover {
	background: url("../images/arrow_right_w.svg") no-repeat right 5% center rgba(255,255,255,0.2);
	background-size: 8px 8px;
}

/*==============================
 Common
==============================*/
main {
	width: 100%;
	clear: both;
	display: block;
	padding-top: 100px;
}
.reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.bananaBg {background-color: #e2c413;}
.sugarBg {background-color: #ff6600;}
.shrimpBg {background-color: #3366ff;}
.coffeeBg {background-color: #663300;}
.oliveBg {background-color: #669900;}
.cacaoBg {background-color: #ff3300;}
.saltBg {background-color: #6ecccc;}

a.btnReport,
a.btnGallery {
	opacity: 1;
	transition: opacity 0.5s;
}
a.btnReport:hover,
a.btnGallery:hover {
	opacity: 0.5;
	transition: opacity 0.5s;
}

/*----- Title ------*/
.pageTitle {
	width: 100%;
	clear: both;
}
.pageTitle section {
	position: relative;
	width: 100%;
	max-width: 1600px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	box-sizing: border-box;
}
.pageTitle section {
	height: 400px;
}
.pageTitle section h2 {
	position: absolute;
	width: 45%;
	bottom: 55%;
	left: 2%;
	font-size: 1.6em;
	line-height: 1.2em;
	color: #FFF;
	box-sizing: border-box;
}

/*-- Topicpath --*/
ul.topicpath {
	position: absolute;
	width: 48%;
	bottom: 0;
	left: 2%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-align-content: flex-start;
		align-content: flex-start;
	z-index: 2000;
	margin: 0 auto;
}
ul.topicpath li {
	display: inline-block;
	margin-right: 10px;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.4em;
	color: rgba(255,255,255,0.5);
}
ul.topicpath li a {
	color: #FFF;
}
ul.topicpath li a:hover {
	text-decoration: underline;
}

/*==============================
 Topページ
==============================*/
/*-- メインビジュアル --*/
#home .mainVisual {
	position: relative;
	width: 100%;
	max-height: 500px;
	display: block;
}
#home .mainVisual ul.bxslider {
	position: relative;
	width: 100%;
	max-height: 500px;
	display: block;
}
#home .mainVisual ul.bxslider li {
	position: relative;
	max-height: 500px;
	display: block;
}
#home .mainVisual ul.bxslider li img.sp {
	display: none;
}
#home .mainVisual ul.bxslider li dl.proInfo {
	position: absolute;
	width: 40%;
	bottom: 5%;
	left: calc(50% - 20%);
	display: block;
}
#home .mainVisual ul.bxslider li dl.proInfo dt {
	width: 50%;
	display: block;
	padding: 15px;
	font-size: 1.8em;
	line-height: 1.2em;
	color: #FFF;
	box-sizing: border-box;
}
#home .mainVisual ul.bxslider li dl.proInfo dt .en {
	width: 100%;
	display: block;
	margin-top: 5px;
	font: 200 0.7em/1em 'Times New Roman', Times, serif;
}
#home .mainVisual ul.bxslider li dl.proInfo dd {
	width: 100%;
	display: block;
	padding: 10px 15px 30px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
	background: rgba(255,255,255,0.9);
	box-sizing: border-box;
}
#home .mainVisual ul.bxslider li dl.proInfo a.btnArrow {
	position: absolute;
	width: 30px;
	height: 30px;
	bottom: 0;
	right: 0;
	display: block;
	background: url("../images/arrow_right_w.svg") no-repeat center center #333;
	background-size: 12px 12px;
	box-sizing: border-box;
}

/* PAGER */
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.bx-wrapper .bx-pager {
	padding: 5px 20px;
	text-align: left;
	box-sizing: border-box;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	background: #FFF;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: #FFF;
	opacity: 0.5;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #FFF;
	opacity: 0.5;
}

/*-- 【Home】お知らせ --*/
#homeNews {
	position: relative;
	width: 90%;
	max-width: 1200px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 0;
	box-sizing: border-box;
}
#homeNews .homeNews_innerL {
	width: 20%;
	text-align: center;
}
#homeNews .homeNews_title {
	clear: both;
	display: block;
	margin: 0 auto 20px;
	font: 400 4.8em/1em 'Times New Roman', Times, serif;
}
#homeNews a.homeNews_btn {
	display: inline-block;
	padding-right: 20px;
	font-size: 1em;
	line-height: 1em;
	background: url("../images/arrow_right.svg") no-repeat right center;
	background-size: 8px 16px;
	box-sizing: border-box;
}
#homeNews .homeNews_innerR {
	width: 78%;
	height: 160px;
	overflow-y: auto;
	white-space: nowrap;
}
#homeNews .homeNews_innerR::-webkit-scrollbar {
	width: 5px;
	height: 160px;
}
#homeNews .homeNews_innerR::-webkit-scrollbar-track {
	background: #EEE;
}
#homeNews .homeNews_innerR::-webkit-scrollbar-thumb {
	background: #00529f;
}
#homeNews dl.homeNews_list,
#news dl.list {
	width: 100%;
	float: left;
	clear: both;
	padding: 15px 0;
}
#homeNews dl.homeNews_list dt,
#news dl.list dt {
	position: relative;
	width: 16%;
	float: left;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
#homeNews dl.homeNews_list dt span,
#news dl.list dt span {
	width: 40%;
	float: right;
	display: inline-block;
	font-size: 0.8em;
	line-height: 20px;
	text-align: center;
	color: #FFF;
	background: #e80000;
	box-sizing: border-box;
}
#homeNews dl.homeNews_list dd,
#news dl.list dd {
	width: 80%;
	float: right;
	font-size: 1.2em;
	line-height: 1.6em;
}

/*-- 【Home】レポート一覧 --*/
#homeReport {
	position: relative;
	width: 90%;
	max-width: 1200px;
	display: block;
	margin: 0 auto;
	padding: 40px 0 60px;
	border-top: solid 5px #EEE;
	box-sizing: border-box;
}
#homeReport .homeReport_title {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto 20px;
	font-size: 3em;
	line-height: 1.2em;
	text-align: center;
}
#homeReport .homeReport_read {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto 10px;
	font-size: 1.6em;
	line-height: 1.6em;
	text-align: center;
}
#homeReport .inner {
	width: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding-bottom: 40px;
}
#homeReport dl.reportList {
	position: relative;
	width: 30%;
	max-width: 360px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	align-self: stretch;
	margin: 20px 0;
	padding-bottom: 50px;
	box-sizing: border-box;
}
#homeReport dl.reportList .catg {
	width: 100%;
	display: block;
	margin: 10px 0;
	font-size: 1em;
	line-height: 1em;
}
#homeReport dl.reportList .catg span {
	width: 80px;
	display: inline-block;
	margin-right: 2%;
	padding: 5px 0;
	font-size: 1em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #FFF;
}
#homeReport dl.reportList dt {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.5em;
	line-height: 1.4em;
	text-align: justify;
}
#homeReport dl.reportList dd {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.4em;
	text-align: justify;
}
#homeReport dl.reportList .date {
	width: 100%;
	display: block;
	font-size: 1em;
	line-height: 1em;
	color: #CCC;
}
#homeReport dl.reportList a.btnDetail {
	position: absolute;
	width: 40%;
	bottom: 0;
	left: calc(50% - 20%);
	display: block;
	padding: 10px 3% 10px 0;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	border: solid 1px #CCC;
	background: url("../images/arrow_right.svg") no-repeat right 5% center;
	background-size: 8px 8px;
	box-sizing: border-box;
}
#homeReport a.btnReport {
	width: 40%;
	max-width: 400px;
	height: 70px;
	display: block;
	margin: 0 auto;
	font-size: 1.8em;
	line-height: 70px;
	text-align: center;
	color: #FFF;
	border: solid 1px #CCC;
	background: url("../images/arrow_right_w.svg") no-repeat right 5% center #00529f;
	background-size: 12px 12px;
	box-sizing: border-box;
}
#homeReport a.btnArchive {
	position: absolute;
	width: 20%;
	max-width: 240px;
	height: 50px;
	bottom: 50px;
	right: 0;
	display: block;
	font-size: 1.2em;
	line-height: 50px;
	text-align: center;
	border: solid 1px #CCC;
	background: url("../images/arrow_right.svg") no-repeat right 5% center;
	background-size: 8px 8px;
	box-sizing: border-box;
}

/*-- 【Home】メニュー --*/
#proMenu {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 50px 0 30px;
	background: #01467f;
}
#proMenu .proMenu_title {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 3em;
	line-height: 1.2em;
	text-align: center;
	color: #FFF;
}
#proMenu ul.menuList {
	width: 100%;
	max-width: 1280px;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 30px auto;
}
#proMenu ul.menuList li {
	display: block;
	overflow: hidden;
	border: solid 5px #01467f;
	background: #000;
	box-sizing: border-box;
}
#proMenu ul.menuList li.topLine {
	width: 33.333%;
}
#proMenu ul.menuList li.bottomLine {
	width: 25%;
}
#proMenu ul.menuList li a {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}
#proMenu ul.menuList li a img {
	width: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
	opacity: 0.7;
	-webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
	transition: opacity 0.75s, transform 0.75s;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#proMenu ul.menuList li a:hover img {
	opacity: 1;
	-webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
	transition: opacity 0.75s, transform 0.75s;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
#proMenu ul.menuList li div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	z-index: 1000;
	color: #FFF;
}
#proMenu ul.menuList li div .name {
	width: 90%;
	height: 2.4em;
	display: block;
	margin: 0 auto;
	font-size: 2.4em;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
}
#proMenu ul.menuList li div .btn {
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	background-image: url("../images/arrow_right_w.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;
	box-sizing: border-box;
}

/*-- 【Home】食のギャラリー --*/
#homeGallery {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 50px 0;
}
#homeGallery .homeGallery_title {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto 20px;
	font-size: 3em;
	line-height: 1.2em;
	text-align: center;
}
#homeGallery .homeGallery_read {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto 30px;
	font-size: 1.6em;
	line-height: 1.6em;
	text-align: center;
}
#homeGallery ul.homeGallery_list {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
}
#homeGallery ul.homeGallery_list li {
	display: block;
	margin: 0 20px;
	box-sizing: border-box;
}
#homeGallery ul.homeGallery_list li a {
	position: relative;
	width: 240px;
	display: block;
	overflow: hidden;
	border-radius: 120px;
}
#homeGallery ul.homeGallery_list li a div {
	width: 240px;
	height: 240px;
	display: block;
	overflow: hidden;
	border-radius: 120px;
}
#homeGallery ul.homeGallery_list li a div img {
	width: 240px;
	height: 240px;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
	opacity: 1;
	-webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
	transition: opacity 0.75s, transform 0.75s;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#homeGallery ul.homeGallery_list li a:hover div img {
	opacity: 0.75;
	-webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
	transition: opacity 0.75s, transform 0.75s;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
#homeGallery ul.homeGallery_list li a .name {
	width: 100%;
	display: block;
	margin: 10px auto;
	font-size: 1.4em;
	line-height: 1.2em;
	text-align: center;
}
#homeGallery ul.homeGallery_list li a .name img {
	width: 12px;
	display: block;
	margin: 10px auto;
}
#homeGallery a.btnGallery {
	width: 40%;
	max-width: 400px;
	height: 70px;
	display: block;
	margin: 20px auto;
	font-size: 1.8em;
	line-height: 70px;
	text-align: center;
	color: #FFF;
	border: solid 1px #CCC;
	background: url("../images/arrow_right_w.svg") no-repeat right 5% center #bfae73;
	background-size: 12px 12px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.5s;
}
#homeGallery a.btnGallery:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	transition: opacity 0.5s;
}










/*-- 【Home】ATJとは --*/
#homeAbout {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
}
#homeAbout img {
	width: 20%;
	display: block;
}
#homeAbout section {
	position: relative;
	width: 60%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	align-self: stretch;
	box-sizing: border-box;
}
#homeAbout section div.logo {
	width: 33.333%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
}
#homeAbout section div.logo img {
	width: 50%;
	display: block;
	margin-bottom: 20px;
}
#homeAbout section dl {
	width: 66.666%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding-right: 7%;
	box-sizing: border-box;
}
#homeAbout section dl dt {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font: normal 2.4em/1.2em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#homeAbout section dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
#homeAbout section a.linkAbout {
	position: absolute;
	height: 40px;
	bottom: 0;
	right: 0;
	display: block;
	font-size: 1.3em;
	line-height: 1em;
	vertical-align: middle;
}
#homeAbout section a.linkAbout span {
	width: 40px;
	height: 40px;
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
	background: url("../images/arrow_right_w.svg") no-repeat center center #00529F;
	background-size: 20px 20px;
}
















































/*==============================
 ニュース
==============================*/
#news .inner {
	position: relative;
	width: 80%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 40px auto 0;
	box-sizing: border-box;
}
#news dl.newsList {
	width: 100%;
	clear: both;
	padding: 20px 0;
	border-bottom: solid 1px #CCC;
}
#news dl.newsList dt {
	position: relative;
	width: 25%;
	float: left;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	color: #999;
	box-sizing: border-box;
}
#news dl.newsList dt span,
#news .date span {
	width: 100px;
	height: 2em;
	display: inline-block;
	margin-right: 20px;
	font-size: 0.9em;
	line-height: 2em;
	text-align: center;
	color: #FFF;
	background: #f23e47;
}
#news dl.newsList dt span.news,
#news .date span.news {
	background: #005096;
}
#news dl.newsList dt span.event,
#news .date span.event {
	background: #f5a469;
}
#news dl.newsList dd {
	width: 75%;
	float: right;
	font-size: 1.3em;
	line-height: 1.6em;
}
.wp-pagenavi {
	width: 100%;
	clear: both;
	display: block;
	margin: 40px auto;
	text-align: center;
	font-size: 1.2em;
	line-height: 1em;
}
.wp-pagenavi a,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	margin: 0 3px;
	padding: 5px 8px;
	text-decoration: none;
	border: 1px solid #005096;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	border: none;
}
.wp-pagenavi a:hover {
	border-color: #005096;
}
.wp-pagenavi a,
.wp-pagenavi span {
	box-sizing: border-box;;
}
.wp-pagenavi span.pages {
	padding: 5px 10px;
}
.wp-pagenavi span.current {
	margin: 0 3px;
	padding: 6px 10px;
	font-weight: bold;
	color: #FFF;
	border: none;
	background: #005096;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: 100%;
	clear: both;
	margin: 30px auto;
	font-size: 1.2em;
	line-height: 2em;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	float: both;
	margin: 0 auto;
	padding-bottom: 30px;
	font-size: 1.8em;
	line-height: 1.4em;
	border-bottom: solid 1px #CCC;
}
#news .content {
	width: 100%;
	clear: both;
	display: block;
	padding: 20px 0;
}
#news .content p {
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1.6em;
}
#news .content p a {
	text-decoration: underline;
	color: #06C;
}
#news .page_navi {
	position: relative;
	width: 100%;
	max-width: 1080px;
	clear: both;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	border-top: solid 1px #CCC;
}
#news .page_navi .prev,
#news .page_navi .next {
	width: 45%;
	display: block;
	align-items: center;
	font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
#news .page_navi .next {
	text-align: right;
}
#news .page_navi .prev a {
	display: block;
	padding-left: 20px;
	text-decoration: none;
	background: url(../images/arrow_left.svg) no-repeat left center;
	background-size: 10px 10px;
}
#news .page_navi .next a {
	display: block;
	padding-right: 20px;
	text-decoration: none;
	background: url("../images/arrow_right.svg") no-repeat right center;
	background-size: 10px 10px;
}
#news .page_navi a.btnList {
	width: 10%;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
	align-items: center;
	text-align: center;
}
#news .page_navi a.btnList span {
	width: 90%;
	max-width: 30px;
	height: 1px;
	clear: both;
	display: block;
	margin: 7px auto;
	background: #005096;
}

/*==============================
 工事設備・技術ニュース
==============================*/
#tech_news ul.list {
	position: relative;
	width: 80%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 0 20px;
	box-sizing: border-box;
}
#tech_news ul.list p {
	width: 100%;
	margin-bottom: 20px;
	font-size: 1.8em;
	line-height: 1.2em;
	text-align: center;
}
#tech_news ul.list li {
	width: 32%;
	height: 60px;
	margin: 10px 0.666%;
}
#tech_news ul.list li a {
	width: 100%;
	height: 60px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	padding-left: 10%;
	font-size: 1.4em;
	line-height: 60px;
	text-align: center;
	color: #395387;
	border: solid 1px #395387;
	background: url("../images/icon_pdf.svg") no-repeat left 5% center;
	background-size: 30px 30px;
	box-sizing: border-box;
}
#tech_news ul.list li a b {
	display: inline-block;
	margin-right: 5px;
	font-size: 1.1em;
}

/*==============================
お問い合わせ
==============================*/
#form .formBlock {
	position: relative;
	width: 90%;
	max-width: 1200px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding-bottom: 40px;
	background: #FFF;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
	box-sizing: border-box;
}
#form .inner {
	position: relative;
	width: 90%;
	max-width: 1080px;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 0;
}
#form .text {
	width: 100%;
	clear: both;
	padding: 40px 0;
	font-size: 1.2em;
	line-height: 1.6em;
}
#form .blockForm a.linkPDF {
	position: absolute;
	top: 40px;
	right: 0;
	display: block;
	padding-right: 30px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-decoration: underline;
	color: #06C;
	background: url("../images/contact/icon_excel.png") no-repeat right center;
	background-size: 20px 20px;
}
#form .thanks {
	width: 100%;
	clear: both;
	padding: 60px 0 20px;
	font-size: 1.4em;
	line-height: 1.8em;
	text-align: center;
}
#form .thanksCopy {
	width: 100%;
	clear: both;
	padding: 40px 0 20px;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.6em;
	text-align: center;
}
#form dl {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	padding: 20px 0;
	border-top: solid 1px #CCC;
}
#form dl a {
	text-decoration: underline;
}
#form dl dt {
	position: relative;
	width: 28%;
	float: left;
	padding: 0 40px 0 1%;
	font-size: 1.2em;
	line-height: 40px;
	box-sizing: border-box;
}
#form dl dt .must {
	position: absolute;
	width: 36px;
	height: 24px;
	top: 8px;
	right: 0px;
	font-size: 0.8em;
	line-height: 24px;
	text-align: center;
	color: red;
	border: solid 1px red;
}
#form dl dt .note,
#form dl dd .note {
	margin-top: 5px;
	font-size: 0.8em;
	line-height: 1.4em;
	color: #666;
}
#form dl dd {
	width: 70%;
	float: right;
	font-size: 1.2em;
	line-height: 40px;
	align-self: center;
	vertical-align: middle;
}
#form dl dd+dd {
	padding-top: 15px;
}
#form dl dd .error {
	margin-left: 5px;
	font-size: 1em;
	line-height: 1.2em;
	color: red;
}
#form dl dd .monoSpace {
	width: 15%;
	display: inline-block;
}
#form dl dd img {
	width: 20%;
}
#form dl dd input.ip01,
#form dl dd input.ip02,
#form dl dd input.ip03,
#form dl dd input.ip04,
#form dl dd input.ip05 {
	height: 40px;
	padding: 5px;
	box-sizing: border-box;
}
#form dl dd input.ip01 {
	width: 30%;
}
#form dl dd input.ip02 {
	width: 60%;
}
#form dl dd input.ip03 {
	width: 10%;
}
#form dl dd input.ip04 {
	width: 15%;
}
#form dl dd input.ip05 {
	width: 7%;
}
#form dl dd textarea {
	width: 100%;
	margin: 5px 0 -5px;
	padding: 5px;
	box-sizing: border-box;
}
#form dl dd select {
	margin: 5px 0;
}
#form dl dd label input[type=radio],
#form dl dd label input[type=checkbox] {
    display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: baseline;
}
#form .privacy {
	width: 100%;
	float: left;
	clear: both;
	font-size: 1em;
	line-height: 1.6em;
}
#form .btnBlock {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
#form .btnSend,
#form .submitback,
#form .btnSend2,
#form .submitback2 {
	display: inline-block;
	margin: 0 10px;
}
#form .btnSend input[type=submit],
#form .submitback input,
#form .btnSend2 input[type=submit],
#form .submitback2 input {
	display: block;
	padding: 20px 40px;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	background: #395387;
}
#form .btnSend2 input[type=submit],
#form .submitback2 input,
#form a.btnHome2 {
	background: #00aca8;
}
#form a.btnHome,
#form a.btnHome2 {
	width: 90%;
	max-width: 200px;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	background: #395387;
}

/*プライバシーポリシー*/
#form .privacyArea {
	width: 90%;
	max-width: 960px;
	clear: both;
	overflow: auto;
	margin: 0 auto;
	padding: 40px 4% 20px;
	border: solid 5px #EEE;
	box-sizing: border-box;
}
#form .privacyArea .title {
	width: 100%;
	clear: both;
	margin: 0 auto;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
}
#form .privacyArea .text {
	width: 100%;
	clear: both;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 1.6em;
}
#form .privacyArea hr {
	width: 100%;
	height: 1px;
	margin-bottom: 20px;
	border: none;
	background: #CCC;
}
#form .privacyArea ol {
	width: 90%;
	clear: both;
	margin: 0 auto 20px;
}
#form .privacyArea ol li {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	list-style: decimal outside;
}

/*==============================
サイトポリシー／個人情報保護方針
==============================*/
#policy .inner {
	width: 80%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 0 0;
}
#policy hr {
	width: 100%;
	height: 1px;
	border: none;
	background: #CCC;
}
#policy .poliBox,
#policy .privBox {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
}
#policy .date {
	width: 100%;
	float: right;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
	margin-bottom: 40px;
	text-align: right;
}
#policy .text {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
	border: none;
}
#policy h3.subject {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
}
#policy .text a {
	color: #06C;
	text-decoration: underline;
}
#policy dl {
	width: 100%;
	float: left;
	clear: both;
	margin: 10px 0;
}
#policy dl dt {
	width: 2%;
	float: left;
	padding: 0;
	font-size: 1.1em;
	line-height: 1.6em;
	text-align: right;
}
#policy dl dd {
	width: 97%;
	float: right;
	padding: 0;
	font-size: 1.1em;
	line-height: 1.6em;
}
#policy dl ul {
	width: 95%;
	float: right;
	clear: both;
	margin-top: 10px;
}
#policy dl ul li {
	width: 100%;
	float: left;
	clear: both;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.4em;
	list-style-position: outside;
	list-style-type: disc;
}
#policy ol {
	width: 75%;
	display: block;
	margin: 0 auto;
}
#policy ol li {
	width: 100%;
	clear: both;
	margin: 20px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	list-style: decimal outside;
}
#policy .contact {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	font-size: 1.6em;
	line-height: 1em;
	text-align: center;
}
#policy .tel {
	width: 100%;
	clear: both;
	padding-top: 20px;
	font-size: 1.6em;
	line-height: 1.4em;
	text-align: center;
}
#policy .tel span {
	font-size: 1.6em;
}
#policy .tel span.small {
	font-size: 0.6em;
}

/*==============================
サイトマップ
==============================*/
#sitemap .inner {
	width: 80%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 0 0;
}
#sitemap ul.list {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
}
#sitemap ul.list li {
	width: 100%;
	display: block;
}
#sitemap ul.list li+li {
	border-top: solid 1px #DDD;
}
#sitemap ul.list li a {
	width: 100%;
	display: block;
	padding: 30px 0 30px 15px;
	font-size: 1.3em;
	line-height: 1.2em;
	background: url(../images/arrow_right.svg) no-repeat left center;
	background-size: 10px 10px;
	box-sizing: border-box;
}
#sitemap ul.list li.menuS {
	width: 33%;
	display: block;
	margin-bottom: 30px;
	padding-left: 5%;
	border: none;
	box-sizing: border-box;
}
#sitemap ul.list li.menuS a {
	width: 100%;
	display: block;
	padding: 5px 0 5px 15px;
	font-size: 1.2em;
	line-height: 1.2em;
	background: url("../images/arrow_right.svg") no-repeat left center;
	background-size: 8px 8px;
	box-sizing: border-box;
}
#sitemap ul.list li.menuS span.menuSS a {
	width: 100%;
	display: block;
	margin: 15px 0 0 20px;
	padding: 5px 0 5px 15px;
	font-size: 1.1em;
	line-height: 1.2em;
	background: url("../images/arrow_right.svg") no-repeat left center;
	background-size: 8px 8px;
	box-sizing: border-box;
}

/*==============================
Footer
==============================*/

/*-- 【共通】バナー --*/
#commonBanner {
	width: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 40px 0;
	background: #F5F5F5;
	box-sizing: border-box;
}
#commonBanner ul {
	width: 90%;
	max-width: 1080px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	box-sizing: border-box;
}
#commonBanner ul li {
	width: 48%;
	max-width: 480px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
	box-sizing: border-box;
}

footer {
	width: 100%;
	clear: both;
	background: #00529f;
}
footer #page-top{
	position: fixed;
	width: 80px;
	height: 80px;
	right: 10px;
	bottom: 70px;
	z-index: 10000;
	border-radius: 40px;
	background: rgba(0,82,159,0.5);
}
footer .inner {
	width: 90%;
	max-width: 1200px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 0 60px;
	color: #FFF;
}
footer a.footerLogo {
	width: 30%;
	max-width: 300px;
	display: block;
	margin: 0 auto 30px;
}
footer address {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.3em;
	line-height: 1.6em;
	text-align: center;
}
footer ul.footerSNS {
	width: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	padding: 10px 0;
}
footer ul.footerSNS li {
	width: 25%;
	display: block;
	margin: 0 1%;
	border: solid 1px #FFF;
	background: url("../images/icon_facebook.svg") no-repeat left center;
	background-size: 20px 20px;
}
footer ul.footerSNS li a {
	width: 100%;
	height: 50px;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
	font-size: 1.6em;
	line-height: 1em;
	color: #FFF;
	background-repeat: no-repeat;
	background-position: left 5% center;
	background-size: 20px 20px;
	box-sizing: border-box;
}
footer ul.footerSNS li a.facebook {
	background-image: url("../images/icon_facebook_w.svg");
}
footer ul.footerSNS li a.twitter {
	background-image: url("../images/icon_twitter_w.svg");
}
footer ul.bottomMenu {
	width: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-align-items: center;
		align-items: center;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	padding: 30px 0;
}
footer ul.bottomMenu li {
	display: block;
	padding-right: 40px;
	font-size: 1.2em;
	line-height: 1em;
}
footer ul.bottomMenu li+li {
	padding-left: 40px;
	border-left: solid 1px rgba(255,255,255,0.5)
}
footer ul.bottomMenu li a {
	color: #FFF;
}
footer .copyright {
	width: 100%;
	display: block;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
}