@charset "UTF-8";

/*---import CSS-----------------------------------*/
@import "common_setting.css";
@import "base_layout.css";
/*---import CSS-----------------------------------*/

/*
======== table of content. ===============

summary : 「ホーム」設定

- content
  - section lead
  - section news
  - scroll pane

==========================================
*/

/*----------------------------------------
content
------------------------------------------*/

/*--- section lead -----------------------------------*/

#sec_lead_wrapper {
	width: 100%;
	padding: 50px 0px;
	border-top: 1px solid #dce1d2;
	border-bottom: 1px solid #dce1d2;
	display: block;
	overflow: hidden;
}

#sec_lead h2 {
	margin-bottom: 40px;
}

#sec_lead p {
	margin: 0px auto;
	font-size: 16px;
	display: block;
	overflow: hidden;
	text-align: center;
}

p#btn_more {
	width: 180px;
	height: 40px;
	margin: 30px auto 0px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #ff6e00;
	display: block;
	background: #ffffff;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

p#btn_more a {
	width: 180px;
	height: 40px;
	color: #ff6e00;
	text-decoration: none;
	display: block;
}

p#btn_more,
p#btn_more::before,
p#btn_more::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .6s;
	transition: all .6s;
}

p#btn_more:hover {
	background: url(../../img/common/screen.png) repeat center;
	background-color: #ffffff;
}

/*--- section news -----------------------------------*/

#newsBox {
	margin: 0px;
	padding: 0px;
	display: block;
	overflow: hidden;
}

#newsBox tbody {
	overflow: hidden;
	display: block;
	width: 100%;
	padding-right: 20px;
}

#newsBox tr {
	display: flex;
	padding: 20px;
	border-top: 1px solid #c1c1c1;
}

#newsBox tr:last-child {
	border-bottom: 1px solid #c1c1c1;
}

#newsBox tr th {
	margin: 0px;
	padding-right: 20px;
	color: #ff6e00;
	font-weight: bold;
	text-align: left;
}

#newsBox tr td {
	margin: 0px;
	padding-left: 20px;
	text-align: left;
	border-left: 1px dashed #a8a8a8;
	display: block;
	overflow: hidden;
}

#newsBox tr td span {
	margin: -3px 5px 0px 0px;
	padding: 3px 7px;
	font-size: 13px;
	color: #ffffff;
	display: inline-block;
	background: #dc0000;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}


/*---scroll pane-----------------------------------*/

.scroll-pane {
	width: 100% !important;
	height: 420px;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	outline: none;
	overflow: auto;
}

.scroll-pane .jspVerticalBar {
	width: 5px;
}

.scroll-pane .jspTrack {
	background: #ebf0e6;
}

.scroll-pane .jspDrag {
	background: #789178;
}

/* =========== レスポンシブ =========== */

/*----------------------------------------
768px以下
------------------------------------------*/
@media screen and (max-width: 768px) {
	#sec_lead p:not(#btn_more) {
		text-align: left;
	}
}

/*----------------------------------------
520px以下
------------------------------------------*/
@media screen and (max-width: 520px) {
	/* BODY --------------------------- */
	/*TOP - お知らせ*/
	#newsBox tr {
		display: block;
		padding: 0;
	}
	#newsBox tr th {
		padding: 15px;
	}
	#newsBox tr td {
		padding: 15px;
		border-top: 1px dashed #ccc;
		border-left: initial;
	}
}