@charset "UTF-8";

/*==================================================================
	1. Style setting
===================================================================*/
#contents {
	border:none;
	border-radius:4px 4px 0 0;
	box-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.25);
}
.section .routeList li span:after {
	background-color:#47AE86;
}
.section .routeList li a:hover span:after {
	background-color:#48C192;
}
.section .routeList li a.active:hover span:after, .section .routeList li a.active span:after {
	border-top-color:#47AE86;
}
#contents #main {
	box-shadow:none;
}
.boxItem {
	margin-bottom:35px;
}
.lastBox + .boxItem {
	margin-top:35px;
}
.boxItem .textItem {
	font-size:15px;
	line-height:20px;
}
.boxItem .textItem p + p {
	margin-top:1em;
}
.otherPhoto .itemInner {
	float:left;
	width:23.77%;
	margin-right:1.6%;
}
.otherPhoto .itemInner:last-child {
	margin-right:0;
}
.otherPhoto .image,
.otherMedia .image {
	margin-bottom:5px;
}
.otherPhoto .image .object-fit-img,
.otherMedia .image .object-fit-img {
	width:100%;
	height:150px;
}
.otherPhoto .text,
.otherMedia .text {
	margin-bottom:5px;
}
.otherMedia {
	position:relative;
	padding-bottom:38px;
}
.otherMedia > ul {
	overflow:hidden;
}
.otherMedia .slick-next,
.otherMedia .slick-prev {
	/*display:none !important;*/
	top:52px;
	bottom:auto;
}
.otherMedia .slick-next {
	right:-20px;
}
.otherMedia .slick-prev {
	left:-20px;
	right:auto;
}
.otherMedia .slick-dots {
	position:absolute;
	bottom:4px;
	left:0;
	width:100%;
	text-align:center;
}
.otherMedia .slick-dots li {
	display:inline-block;
	width:8px;
	margin:0 5px;
	height:8px;
}
.otherMedia .slick-dots li button {
	font-size:0;
	line-height:0;
	display:inline-block;
	margin:0;
	padding:0;
	width:8px;
	height:8px;
	background:#d5d5d5;
	border-radius:50px;
	border:none;
	cursor:pointer;
	outline:none;
}
.otherMedia .slick-dots li.slick-active button {
	background:#47ae86;
}
.hiddenDot .slick-dots {
	display:none!important;
}
.otherMedia .itemInner {
	width:100%;
	max-width:213px;
	margin-right:10px;
	float:left;
	outline:none;
}
.otherMedia .itemInner:last-child {
	margin-right:0;
}
.otherMedia .text a {
	color:#4D4D4D;
	text-decoration:none;
	-webkit-transition:all .2s ease-out;
	-moz-transition:all .2s ease-out;
	-o-transition:all .2s ease-out;
	transition:all .2s ease-out;
	display:block;
	display:-webkit-box;
	width:100%;
	height:2.5em;
	line-height:1.3;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.otherMedia .text:hover,
.otherMedia .text a:hover {
	color:#47AE86 !important;
}
.otherMedia .notes span {
	display:inline-block;
	min-width: 70px;
	margin-right:5px;
	padding: 3px 10px;
	border-radius:5px;
	border: 1px solid #CCC;
	background-color: #fff;
	color: #333;
	font-size:11px;
	font-weight:bold;
	text-align: center;
	vertical-align:middle;
	-webkit-transition:all .2s ease-out;
	-moz-transition:all .2s ease-out;
	-o-transition:all .2s ease-out;
	transition:all .2s ease-out;
}
.otherMedia .notes a {
	color:#FFF;
	background:#F0F0F0;
	margin: 0 5px 5px 0;
	padding:4px 9px;
	font-size:11px;
	display:inline-block;
	border-radius:3px;
	text-decoration:none;
	-webkit-transition:all .2s ease-out;
	-moz-transition:all .2s ease-out;
	-o-transition:all .2s ease-out;
	transition:all .2s ease-out;
}
.otherMedia .notes a:hover {
	background:#E0AE02 !important;
	color:#FFF;
}
.buttonStyle01 {
	/*background:#F0F0F0;*/
	max-width: inherit;
	margin: 0 auto;
	height: auto !important;
	padding:20px 0;
}
.tableStyle {
	width:100%;
}
.tableStyle th {
	color:#47AE86;
	font-weight:bold;
	min-width:300px;
	width:34%;
}
.tableStyle th p {
	display:inline-block;
	width:180px;
	font-weight:bold;
	vertical-align:middle;
	padding-right:5%;
}
.tableStyle th,
.tableStyle td {
	padding:18px 5px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
}
.tableStyle td {
	padding-left:20px;
	line-height:22px;
}
.tableStyle .cateTitle a {
	display:inline-block;
	color:#47AE86;
	text-decoration:none;
	position:relative;
}
.tableStyle .cateTitle a::before {
	position:absolute;
	bottom:-2px;
	left:0;
	content:'';
	width:100%;
	height:2px;
	background-color:#47AE86;
	-webkit-transform:scale(0, 1);
	transform:scale(0, 1);
	transform-origin:right top;
	-webkit-transition:transform .3s;
	transition:transform .3s;
}
.tableStyle .cateTitle a:hover::before {
	transform-origin:left top;
	-webkit-transform:scale(1, 1);
	transform:scale(1, 1);
}
.tableStyle th .required {
	padding:3px 9px;
	background:#F0F0F0;
	border-radius:3px;
	color:#fff;
	font-size:11px;
	font-weight:bold;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
	-webkit-transition:all .2s ease-out;
	-moz-transition:all .2s ease-out;
	-o-transition:all .2s ease-out;
	transition:all .2s ease-out;
}
.tableStyle th .required:hover {
	background:#E0AE02!important;
	color:#FFF;
}
.tableStyle td a {
	color:#4D4D4D;
	text-decoration:none;
	-webkit-transition:all .2s ease-out;
	-moz-transition:all .2s ease-out;
	-o-transition:all .2s ease-out;
	transition:all .2s ease-out;
}
.tableStyle td a:hover {
	color:#47AE86;
}
.photoFix {
	margin:0 -1px 0 0;
}
.picLarge {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:100;
}
.picLarge .large {
	position:relative;
	width:100%;
	height:100%;
}
.picLarge .large img {
	max-width:inherit;
}
@media screen and (max-width:900px) {
	.lastBox:after {
		width:25px;
		height: 26px;
		background-size: 25px 26px;
		top:15%;
	}
}
@media screen and (max-width:736px) {
	.picLarge {
		display:none;
	}
	.buttonStyle01 {
		padding:10px 0
	}
	.tableStyle th {
		min-width:inherit;
	}
	.headline2.pt20 {
		margin-top:10px;
	}
	.boxItem .textItem {
		font-size:12px;
	}
	.section .routeList {
		margin:0;
	}
	.boxItem {
		margin-bottom: 20px;
	}
	.lastBox + .boxItem {
		margin-top:20px;
	}
	#contents {
		border:none;
		border-radius:0;
	}
	#main {
		float:none;
		width:auto;
		padding:0 10px;
	}
	.otherPhoto .itemInner {
		width:49%;
	}
	.otherPhoto .itemInner:nth-child(2n) {
		margin-right:0;
	}
	.otherPhoto .itemInner img {
		width:100%;
	}
	.mediaSection .headline2 {
		padding-right:0;
	}
	.otherMedia {
		padding-bottom:0;
	}
	.otherMedia ul {
		width:max-content;
		width:-webkit-max-content;
		width:-moz-max-content;
		min-width:100%;
	}
	.otherMedia .itemInner {
		max-width:130px;
	}
	.otherPhoto .image .object-fit-img,
	.otherMedia .image .object-fit-img {
		width:100%;
		height:100px;
	}
	.tableDetail th,
	.tableDetail td,
	.tableStyle th,
	.tableStyle td {
		display:block;
		width:100%;
	}
	.tableStyle {
		border-top:1px solid #DDD;
	}
	.tableStyle th,
	.tableStyle td {
		padding:14px 5px;
		border-top:none;
	}
	.tableStyle th p {
		width:55%;
		padding-right:0;
	}
/*
	.tableStyle th .required {
		float:right;
		margin-top: -3px;
	}
*/
	.picLarge .large img {
		width:100%;
	}
	.drift-open img {
		max-width:inherit; 
	}
}
