@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////

common

/////////////////////////////////////////////////////////////////////*/

body {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	letter-spacing: 0.05em;
	color: #262a2e;
	min-width: 1280px;
}

img {
	vertical-align: bottom;
}

.img-c {
	display: block;
	margin: 0 auto 30px auto;
}

.nmb {
	margin-bottom: 0;
}
p {
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin: 0 0 30px 0;
}

.txt-r {
	text-align: right;
}

p:last-child {
	margin: 0;
}

a {
	text-decoration: none;
	color: #262a2e;
}

a:hover {
	text-decoration: underline;
}

a:hover img {
	opacity: 0.7;
	transition: all .2s;
}

.container {
	width: 1280px;
	margin: 0 auto 60px auto;
	overflow: hidden;
}

.last {
	margin: 0 !important;
}

@media(min-width: 769px) {
	.pc-none {
		display: none;
	}
}


@media(max-width: 768px) {
	.sp-none {
		display: none;
	}

	body {
		font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
		font-size: 16px;
		letter-spacing: 0.05em;
		color: #262a2e;
		min-width: auto;
	}

	img {
		max-width: 100%;
	}

	.container {
		width: 100%;
		margin: 0 auto 30px auto;
	}
}

/*---------------------------------------------------------------------

header

---------------------------------------------------------------------*/

header {
	padding: 5px 0 20px 0;
	border-bottom: 5px solid #1766be;
	margin: 0 0 20px 0;
}

header .inner {
	overflow: hidden;
	width: 1280px;
	margin: 0 auto;
}

header .logo {
	width: 400px;
	float: left;
}

header h1 {
	font-size: 11px;
	margin: 0 0 10px 0;
}

header .link {
	float: right;
}

header .link .sub-nav {
	text-align: right;
}

header .link .sub-nav li {
	font-size: 12px;
	padding: 0 0 0 15px;
	display: inline-block;
	background: url(../images/ico_header_link.png) 0 2px no-repeat;
	margin: 0 0 0 10px;
}

header .link .sub-nav li a {
	color: #262a2e;
}

header .link .tel-nav {
	margin: 50px 0 0 0;
	text-align: right;
}

header .link .tel-nav li {
	display: inline-block;
	margin: 0 0 0 20px;
}

@media(max-width: 768px) {
	header {
		padding: 5px 0 10px 0;
		border-bottom: 2px solid #1766be;
		margin: 0 0 10px 0;
	}

	header .inner {
		overflow: hidden;
		width: 100%;
		margin: 0 auto;
	}

	header .logo {
		width: 100%;
		float: none;
		margin: 0 auto;
	}

	header .logo img {
		width: 60%;
		margin: 0 auto;
		display: block;
	}

	header h1 {
		font-size: 11px;
		margin: 0 0 10px 10px;
	}

	header .link {
		float: none;
	}

	header .link .sub-nav {
		display: none;
	}

	header .link .tel-nav {
		margin: 10px 0 0 0;
		text-align: center;
	}

	header .link .tel-nav li {
		display: inline-block;
		width: 40%;
		margin: 3%;
	}

	#nav-drawer {
		position: relative;
		float: right;
		margin: -10% 2% 0 0;
	}

	/*チェックボックス等は非表示に*/
	.nav-unshown {
		display:none;
	}

	/*アイコンのスペース*/
	#nav-open {
		display: inline-block;
		width: 30px;
		height: 22px;
		vertical-align: middle;
	}

	/*ハンバーガーアイコンをCSSだけで表現*/
	#nav-open span, #nav-open span:before, #nav-open span:after {
		position: absolute;
		height: 3px;/*線の太さ*/
		width: 25px;/*長さ*/
		border-radius: 3px;
		background: #555;
		display: block;
		content: '';
		cursor: pointer;
	}
	#nav-open span:before {
		bottom: -8px;
	}
	#nav-open span:after {
		bottom: -16px;
	}

	/*閉じる用の薄黒カバー*/
	#nav-close {
		display: none;/*はじめは隠しておく*/
		position: fixed;
		z-index: 99;
		top: 0;/*全体に広がるように*/
		left: 0;
		width: 100%;
		height: 100%;
		background: black;
		opacity: 0;
		transition: .3s ease-in-out;
	}

	/*中身*/
	#nav-content {
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;/*最前面に*/
		width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
		max-width: 330px;/*最大幅（調整してください）*/
		height: 100%;
		background: #fff;/*背景色*/
		transition: .3s ease-in-out;/*滑らかに表示*/
		-webkit-transform: translateX(-105%);
		transform: translateX(-105%);/*左に隠しておく*/
	}

	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
		display: block;/*カバーを表示*/
		opacity: .5;
	}

	#nav-input:checked ~ #nav-content {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/*中身を表示（右へスライド）*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}

	.sp-nav ul li {
		height: 60px;
		line-height: 60px;
		border-bottom: 1px dotted #ccc;
		padding: 0 0 0 10px;
	}

	.sp-nav ul li a {
		display: block;
		width: 100%;
		height: 100%;
	}

	.sp-nav h4 {
		margin: 20px 0 0 0;
	}
}

/*---------------------------------------------------------------------

main content

---------------------------------------------------------------------*/


.main-content {
	width: 1010px;
	float: right;
}

.main-content h2 {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 2px solid #262a2e;
	padding: 0 0 5px 0;
	margin: 0 0 15px 0;
}

.content-wrap {
	margin: 0 0 40px 0;
	overflow: hidden;
}

.main-content .under-main {
	margin: 0 0 40px 0;
}

.main-content .under-main h2 {
	margin: 0;
	border: none;
	padding: 0;
}

.main-content .title {
	background: url(../images/bg_h3_main_content.png) left top repeat-x;
	height: 50px;
	margin: 0 0 30px 0;
}

.main-content .title h3 {
	font-size: 17px;
	line-height: 50px;
	font-weight: bold;
	color: #1766be;
	background: url(../images/bg_h3_main_leftbar.png) left center no-repeat;
	padding: 0 0 0 20px;
	margin: 0 0 0 20px;
}

.main-content h4 {
	margin: 0 0 30px 0;
}

.main-content h4.blue {
	font-size: 24px;
	line-height: 50px;
	font-weight: bold;
	color: #1766be;
	background: url(../images/bg_h3_main_leftbar.png) left center no-repeat;
	padding: 0 0 0 20px;
	margin: 0 0 10px 0;
}

@media(max-width: 768px) {
	.main-content {
		width: 96%;
		margin: 0 auto;
		float: none;
	}

	.main-content h2 {
		font-size: 18px;
		font-weight: bold;
		border-bottom: 1px solid #262a2e;
		padding: 0 0 5px 0;
		margin: 0 0 10px 0;
	}

	.content-wrap {
		margin: 0 0 25px 0;
		overflow: hidden;
	}
}

/*---------------------------------------------------------------------

sub content

---------------------------------------------------------------------*/

.sub-content {
	width: 240px;
	float: left;
}

.sub-content .gnav {
	margin: 0 0 35px 0;
}

.sub-content .sub-bnr li {
	margin: 0 0 20px 0;
}

.sub-content h3 {
	margin: 0 0 020px 0;
}
@media(max-width: 768px) {
	.sub-content {
		width: 100%;
		float: none;
	}

	.sub-content .gnav {
		display: none;
	}

	.sub-content .sub-bnr li {
		margin: 0 0 20px 0;
	}
}

/*---------------------------------------------------------------------

footer

---------------------------------------------------------------------*/

footer {

}

footer .upper {
	background: url(../images/bg_footer_upper.png) left top repeat-x;
	height: 100px;
	margin: 0 0 30px 0;
}

footer .inner {
	width: 1280px;
	margin: 0 auto;
	overflow: hidden;
}

footer .upper p {
	font-size: 18px;
	color: #fff;
	line-height: 100px;
	float: left;
}

footer .upper ul {
	text-align: right;
	margin: 35px 0 0 0;
}

footer .upper ul li {
	display: inline-block;
	margin: 0 0 0 20px;
}

footer .lower {
	margin: 0 0 20px 0;
}

footer .lower .logo {
	width: 202px;
	float: left;
}

footer .lower .footer-nav {
	text-align: right;
	margin: 25px 0 0 0;
}

footer .lower .footer-nav li {
	font-size: 14px;
	color: #262a2e;
	display: inline-block;
}

footer .lower .footer-nav li:after {
	content: "|";
	margin: 0 10px;
}

footer .lower .footer-nav li:last-child:after {
	content: none;
}

footer .lower .footer-nav a {
	color: #262a2e;
}


footer .copyright {
	font-size: 12px;
	color: #808c98;
	text-align: center;
}

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
}

#page-top a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	line-height: 40px;
	padding: 10px;
	background: #1766be;
	color: #fff;
	text-decoration: none;
	text-align: center;
}

@media(max-width: 768px) {
	footer {

	}

	footer .inner {
		width: 100%;
	}
	footer .upper {
		display: none;
	}

	footer .lower {
		margin: 0 0 10px 0;
	}

	footer .lower .logo {
		width: 50%;
		float: none;
		margin: 0 auto 20px auto;
	}

	footer .lower .logo img {
		width: 100%;
	}

	footer .lower .footer-nav {
		display: none;
	}


	footer .copyright {
		font-size: 12px;
		color: #808c98;
		text-align: center;
	}

	#page-top {
		position: fixed;
		bottom: 20px;
		right: 20px;
		display: none;
	}


}

/*//////////////////////////////////////////////////////////////////////

top page

/////////////////////////////////////////////////////////////////////*/

.mv {
	position: relative;
}

.visual {
	position: absolute;
	z-index: 40;
}

.business-link {
	overflow: hidden;
	margin: 0 0 30px 0;
}


.business-link li {
	width: 31%;
	float: left;
	margin: 0 1%;
}

.detail-wrap {
	overflow: hidden;
}

.detail-left {
	width: 750px;
	float: left;
	margin: 0 auto;
}

.detail-right {
	width: 230px;
	float: right;
}

.news {
	overflow-y: scroll;
	height:450px;
}

.news dt {
	width: 100%;
	float: none;
	margin: 0 0 10px 0;
	clear: left;
}

.news dd {
	padding: 0 0 0 0;
	margin: 0 0 15px 0;
	padding: 0 0 15px 0;
	border-bottom: 1px dashed #262a2e;
}

.news dd:last-child {
	margin: 0;
}

@media(max-width: 768px) {
	.sp-bnr li {
		margin: 0 0 15px 0;
		text-align: center;
	}
	.detail-left {
		width: 95%;
		float: none;
		margin: 0 auto;
	}

	.detail-right {
		display: none;
	}

	.news {
		overflow-y: scroll;
		height:450px;
	}

}

/*//////////////////////////////////////////////////////////////////////

environment page

/////////////////////////////////////////////////////////////////////*/

.gray-box {
	background: #fcfbfa;
	padding: 40px;
}

.gray-box .lead {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px 0;
}

.gray-box ol {
	list-style: decimal;
	margin: 0 0 0 20px;
	line-height: 1.6;
}

.gray-box ol li {
	margin: 0 0 30px 0;
}

.gray-box ol li:last-child {
	margin: 0;
}

.license {
	overflow: hidden;
	margin: 0 0 40px 0;
}

.license .text {
	width: 600px;
	float: left;
}

.license .pic {
	width: 270px;
	float: right;
}

.license .pic img {
	width: 100%;
}

.license h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px 0;
}

@media(max-width: 768px) {
	.gray-box {
		background: #fcfbfa;
		padding: 15px;
	}

	.gray-box .lead {
		font-size: 16px;
	}

	.gray-box ol {
		list-style: decimal;
		margin: 0 0 0 20px;
		line-height: 1.6;
	}

	.gray-box ol li {
		margin: 0 0 20px 0;
	}

	.license {
		overflow: hidden;
		margin: 0 0 20px 0;
	}

	.license .text {
		width: 100%;
		float: none;
		margin: 0 0 10px 0;
	}

	.license .pic {
		width: 60%;
		margin: 0 auto;
		float: none;
	}

	.license .pic img {
		width: 100%;
	}

	.license h3 {
		font-size: 16px;
		font-weight: bold;
		margin: 0 0 10px 0;
	}
}


/*//////////////////////////////////////////////////////////////////////

contact page

/////////////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////////////

company page

/////////////////////////////////////////////////////////////////////*/

.company-tbl {
	border: 1px solid #f1f1f1;
	width: 100%;
	font-size: 16px;
	margin: 0;
}

.company-tbl th {
	background: #1766be;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-left: 1px solid #f1f1f1;
	color: #fff;
	vertical-align: middle;
	padding: 0 10px;
	text-align: left;
	line-height: 1.4;
	width: 200px;
}

.company-tbl td {
	border: 1px solid #f1f1f1;
	padding: 10px;
	line-height: 1.4;
}

.history-list dt {
	width: 200px;
	float: left;
	clear: left;
	line-height: 1.7;
}

.history-list dd {
	padding: 0 0 0 200px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: dashed 1px #ccc;
	line-height: 1.7;
}

@media(max-width: 768px) {
	.company-tbl th,.company-tbl td {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 5px;
	}

	.history-list {
		font-size: 14px;
	}
	.history-list dt {
		width: 100%;
		float: none;
	}

	.history-list dd {
		padding: 0 0 0 10px;
	}
}


/*//////////////////////////////////////////////////////////////////////

adopt page

/////////////////////////////////////////////////////////////////////*/

.adopt-list dt {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 5px 0;
	line-height: 1.5;
}

.adopt-list dd {
	margin: 0 0 25px 0;
	line-height: 1.5;
}

.adopt-list table {
	border: 1px solid #f1f1f1;
	width: 100%;
	font-size: 16px;
	margin: 0 0 20px 0;
}

.adopt-list table th {
	background: #1766be;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-left: 1px solid #f1f1f1;
	color: #fff;
	vertical-align: middle;
	padding: 0 4px;
	text-align: left;
	line-height: 1.4;
}

.adopt-list table td {
	border: 1px solid #f1f1f1;
	padding: 4px;
	line-height: 1.4;
}

@media(max-width: 768px) {
	.adopt-list table {
		box-sizing: border-box;
	}

	.adopt-list table th {
		display: block;
		width: 100%;
		padding: 10px 5px;
	}

	.adopt-list table td {
		display: block;
		width: 100%;
		padding: 10px 5px;
	}
}

/*//////////////////////////////////////////////////////////////////////

works page

/////////////////////////////////////////////////////////////////////*/

.works-nav {
	background: #f5f5f5;
	border: 1px solid #bfbfbf;
}

.works-nav li {
	height: 45px;
	line-height: 45px;
	border-bottom: 1px dotted #bfbfbf;
	font-weight: bold;
}

.works-nav li a {
	display: block;
	width: 100%;
	height 100%;
	background: url(../images/ico_subnav_arrow.png) 2% 50% no-repeat;
	padding: 0 0 0 20px;
	color: #1766be;
}

.works-list {
	overflow: hidden;
	margin: 0 0 0 -55px;
}

.works-list li {
	width: 300px;
	height: 380px;
	float: left;
	border: 1px solid #cdcdcd;
	padding: 3px;
	box-sizing: border-box;
	margin: 0 0 30px 55px;
	overflow: hidden;
	line-height: 1.4;

}

.works-list li .thumbs {
	width: 100%;
	margin: 0 0 10px 0;
}

.works-list dl {
	font-size: 14px;
	letter-spacing: 0.05em;
	margin: 0 0 0 5px;
}

.works-list dl dt {
	font-weight :bold;
	margin: 0 0 5px 0;
}

.works-list dl dd {
	margin: 0 0 10px 0;
}

.works-list a:hover {
	text-decoration: none;
	color: #999;
	transition: all .2s;
}

.video {
	position: relative;
	width: 854px;
	margin: 0 auto;
	padding-top: 56.25%;
}
.video iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

@media(max-width: 768px) {
	.works-nav {
		display: none;
	}

	.works-list {
		overflow: hidden;
		margin: 0;
	}

	.works-list li {
		width: 96%;
		height: auto;
		overflow: visible;
		float: none;
		border: 1px solid #cdcdcd;
		padding: 3px;
		box-sizing: border-box;
		margin: 0 auto 30px auto;

	}

	.works-list li .thumbs {
		width: 100%;
		margin: 0 0 15px 0;
	}

	.works-list dl {
		font-size: 14px;
		letter-spacing: 0.05em;
		margin: 0 0 0 5px;
	}

	.works-list dl dt {
		font-weight :bold;
		margin: 0 0 10px 0;
	}

	.works-list dl dd {
		margin: 0 0 15px 0;
	}

	.works-list a:hover {
		text-decoration: none;
		color: #999;
		transition: all .2s;
	}

	.video {
		width: 100%;
	}

}


/*//////////////////////////////////////////////////////////////////////

pop up

/////////////////////////////////////////////////////////////////////*/

#popup .wrap {
	width: 760px;
	margin: 0 auto;
}

#popup .logo {
	width: 40%;
	margin: 20px auto 20px auto;
}

#popup .logo img {
	width: 100%;
}
#popup .title {
	background: url(../images/bg_h3_main_content.png) left top repeat-x;
	background-size: cover;
	margin: 0 0 30px 0;
}

#popup .title h2 {
	font-size: 18px;
	line-height: 1.7;
	font-weight: bold;
	color: #1766be;
	background: url(../images/bg_h3_main_leftbar.png) left center no-repeat;
	padding: 20px 0 20px 20px;
	margin: 0 0 0 20px;
}

#popup table {
	border: 1px solid #f1f1f1;
	width: 100%;
	font-size: 14px;
	padding: 0 0 0 20px;
	margin: 0 0 20px 0;
}

#popup table th {
	background: #1766be;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-left: 1px solid #f1f1f1;
	color: #fff;
	height: 40px;
	vertical-align: middle;
	padding: 0 10px;
	text-align: left;
	line-height: 1.4;
}

#popup table td {
	border: 1px solid #f1f1f1;
	padding: 20px 10px;
	line-height: 1.4;
}

@media(max-width: 768px) {
	#popup .wrap {
		width: 100%;
		margin: 0 auto;
	}
	#popup table {
		width: 94%;
		margin: 0 auto 20px auto;
	}
	#popup .title h2 {
		font-size: 16px;
		line-height: 1.7;
		font-weight: bold;
		color: #1766be;
		background: url(../images/bg_h3_main_leftbar.png) left center no-repeat;
		padding: 10px 0 10px 15px;
		margin: 0 0 0 10px;
	}


}
