@charset "UTF-8";

html{
	width:100%;
}
body{
	*font-size:small;
	*font:x-small;
	font-size:13px;
	background-color: #000;
	color:#333333;
	line-height:1.2;
  font-family:"Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align:left;
	width:100%;
	margin:0px;
	padding:0px;
	-webkit-text-size-adjust:100%;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:100;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:200;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:300;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:400;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Bold");
  font-weight:bold;
}
#wrap{
	text-align:left;
	overflow:hidden;
	background-color: #fff;
}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd{
	margin:0px;
	padding:0px;
	font-size:14px;
}
li{
	list-style-type:none;
}
table{
	border-collapse:collapse;
}
a{
	cursor:pointer;
	color:#333;
	text-decoration:none;
}
a:hover{
	text-decoration:none;
}
a{
	-webkit-tap-highlight-color:transparent;
}
img{
	vertical-align:top;
	max-width:100%;
	height:auto;
	-webkit-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	backface-visibility:hidden;
}
a img{
	vertical-align:bottom;
	-webkit-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	backface-visibility:hidden;
}
input,
textarea,
select,
button,
label{
  outline:none;
	-webkit-tap-highlight-color:transparent;
}
:focus {
	outline: 0;
  border-color: orange;
}


/* header
-----------------------------------------------*/
header{
	position: fixed !important;
}

/*main*/
#main{
	padding: 0 90px 16px;
	position: relative;
}
#mainSlider{
	position: static;
	z-index: 1;
	height: 100%;
	max-width: 1276px;
	margin: 0 auto;
	opacity: 0;
	transition: opacity .5s cubic-bezier(.210, .60, .350, 1);
}
#mainSlider.slick-initialized{
	opacity: 1;
}
#mainSlider li{
	padding: 0 2px;
}
#mainSlider .spOnly{
	display: none;
}
#mainSlider .slick-next,
#mainSlider .slick-prev{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 80px;
	height: 24px;
	font-size: 0;
	z-index: 1;
	background: rgba(0,26,44,0.5);
	padding: 0;
	border: none;
	cursor: pointer;
	transition: background .3s cubic-bezier(.210, .60, .350, 1), opacity .8s cubic-bezier(.210, .60, .350, 1);
}
#mainSlider .slick-next:hover,
#mainSlider .slick-prev:hover{
	background: #00afdd;
}
#mainSlider .slick-next{
	right: 0;
}
#mainSlider .slick-prev{
	left: 0;
}
#mainSlider .slick-arrow::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}
#mainSlider .slick-next::before{
	right: 12px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#mainSlider .slick-prev::before{
	left: 12px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mainThumb{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 0 40px;
	text-align: center;
	z-index: 1;
	opacity: 0;
	transition: opacity .5s cubic-bezier(.210, .60, .350, 1);
}
#mainSlider.slick-initialized + #mainThumb{
	opacity: 1;
}
#mainThumb > div{
	display: inline-block;
	max-width: 240px;
	width:100%;
	margin: 0 auto;
	font-size: 0;
	margin-right: -4px;
}
#mainThumb li{
	position: relative !important;
	display: inline-block;
	margin: 0 4px;
	height: 4px;
	width: 56px;
	cursor: pointer;
}
#mainThumb li::before,
#mainThumb li::after{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}
#mainThumb li::after{
	z-index: 1;
	width:100%;
	background-color: #001a2c;
}
#mainThumb li::before{
	z-index: 2;
	width: 0;
	background-color: #00afdd;
}
@keyframes thumb-item-nav {
  0% { width: 0; }
  100% { width: 100%; }
}
@keyframes thumb-item-nav2 {
  0% { width: 0; }
  100% { width: 100%; }
}
#mainThumb li.slick-current::before{
  -webkit-animation: 7.6s linear;
  -ms-animation: 7.6s linear;
  animation: 7.6s linear;
  animation-name: thumb-item-nav;
}
#mainThumb li.slick-current.firstThumb::before{
  -webkit-animation: 7.0s linear;
  -ms-animation: 7.0s linear;
  animation: 7.0s linear;
  animation-name: thumb-item-nav2;
}
@media screen and (max-width: 750px) {
	#main{
		padding: 0 14px 18px;
		position: relative;
	}
	#mainSlider .spOnly{
		display: block;
		width: 100%;
		height: auto;
	}
	#mainSlider .pcOnly{
		display: none;
	}
	#mainSlider .slick-next,
	#mainSlider .slick-prev{
		width: 44px;
		height: 48px;
	}
	#mainSlider .slick-arrow::before{
		width: 6px;
		height: 6px;
	}
	#mainSlider .slick-prev::before{
		left: 20px;
	}
	#mainSlider .slick-next::before{
		right: 19px;
	}
	#mainThumb{
		padding: 0 16px;
	}
}

/* slick */
.slick-slider{
	position:relative;
	display:block;
	box-sizing:border-box;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-touch-callout:none;
	-khtml-user-select:none;
	-ms-touch-action:pan-y;
	touch-action:pan-y;
	-webkit-tap-highlight-color:transparent;
}
.slick-list{
	position:relative;
	display:block;
	margin:0;
	height: 100%;
}
.slick-list.dragging{
	cursor:pointer;
	cursor:hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
	-webkit-transform:translate3d(0, 0, 0);
	-ms-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
}
.slick-track{
	position:relative;
	top:0;
	left:0;
	display:block;
	margin-left:auto;
	margin-right:auto;
	height: 100%;
}
.slick-track:before,
.slick-track:after{
	display:table;
	content:'';
}
.slick-track:after{
	clear:both;
}
.slick-loading .slick-track{
  visibility:hidden;
}
.slick-slide{
	float:left;
	height:100%;
	min-height:1px;
}
.slick-slide:focus{
	outline:none;
}
[dir='rtl'] .slick-slide{
	float:right;
}
.slick-initialized .slick-slide{
	display:block;
}
.slick-loading .slick-slide{
	visibility:hidden;
}
.slick-vertical .slick-slide{
	display: block;
	height: auto;
}


/* importantNews
-----------------------------------------------*/
#importantNews{
	padding: 36px 40px 20px;
}
.importantBox{
	background: #f0f0f0;
	max-width: 1200px;
	box-sizing: border-box;
	padding: 20px 20px 24px;
	text-align: center;
	margin: 8px auto 0;
}
.importantBox:first-child{
	margin-top: 0;
}
.importantBox h2{
	font-size: 16px;
	line-height: 1.62;
	letter-spacing: 0.01em;
}
.importantBox p{
	font-size: 14px;
	line-height: 1.71;
	letter-spacing: 0.01em;
	margin-top: 10px;
}
.importantBox p span {
  display: block;
  font-weight: bold;
}
.importantBox .btn{
	width: 180px;
	margin: 10px auto 0;
}
.importantBox .btn a{
	display: block;
	position: relative;
	background: #00afdd;
	border-radius: 4px;
}
.importantBox .btn a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	opacity: 0;
	background: #333;
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
.importantBox .btn a:hover::after{
	opacity: 0.2;
}
.importantBox .btn a span{
	font-size: 13px;
	line-height: 36px;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
.importantBox .btn a span::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	box-sizing: border-box;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	margin-left: 6px;
	transform: rotate(45deg);
}
/* .importantBox.caution {
	text-align: left;
}
.importantBox.caution h2 {
	text-align: center;
}
.importantBox.caution p,
.importantBox.caution ul {
	max-width: 710px;
	padding: 0 20px;
	margin: 10px auto 0;
}
.importantBox.caution p.bold {
	font-weight: bold;
}
.importantBox.caution ul {
	margin: 8px auto 0;
	line-height: 1.7;
} */
@media screen and (max-width: 750px) {
	#importantNews{
		padding: 20px 0 9px;
	}
	.importantBox{
		padding: 20px 16px;
	}
	.importantBox h2{
		font-size: 15px;
		line-height: 1.73;
	}
	.importantBox p{
		font-size: 13px;
		line-height: 1.84;
		margin-top: 0;
	}
	.importantBox .btn a{
		border-radius: 2px;
	}
	.importantBox .btn a::after{
		border-radius: 2px;
	}
}


/* section
-----------------------------------------------*/
section .ttlArea{
	position: relative;
}
section .ttlArea h2{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #003459;
}
section .ttlArea h2 span{
	font-family: 'Oswald', sans-serif;
	font-style: italic;
	font-size: 36px;
	line-height: 0.9;
	font-weight: 300;
	letter-spacing: 0.1em;
	margin-right: 20px;
	display: inline-block;
	vertical-align: middle;
}
section .ttlArea h2 strong{
	display: inline-block;
	vertical-align: middle;
	margin-bottom: -3px;
	font-size: 16px;
}
section .more{
	width: 99px;
	height: 36px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 13px;
	line-height: 36px;
	font-weight: bold;
	text-align: center;
}
section .more a{
	display: block;
	height: 100%;
	background: #e3e9f1;
	border-radius: 4px;
	color: #003459;
	transition: background .2s cubic-bezier(.210, .60, .350, 1);
}
section .more a:hover{
	background: #c0c5cb;
}
section .more a::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	box-sizing: border-box;
	border-top: solid 2px #003459;
	border-right: solid 2px #003459;
	margin-left: 6px;
	margin-bottom: 3px;
	transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
	section .ttlArea h2{
		font-size: 13px;
	}
	section .ttlArea h2 span{
		font-size: 32px;
		margin-right: 12px;
	}
	section .more{
		position: relative;
		margin: 28px 0 0 auto;
	}
	section .more a{
		border-radius: 2px;
	}
}


/* topics
-----------------------------------------------*/
#topics{
	padding: 36px 40px 80px;
}
#topics .inner{
	max-width: 1480px;
	margin: 0 auto;
}
#topics .ttlArea h2{
	text-align: center;
}
#topics .ttlArea h2 span{
	display: block;
	margin-right: 0;
}
#topics .ttlArea h2 strong{
	display: block;
	margin: 5px 0 0 0;
}
#topics ul{
	font-size: 0;
}
#topics ul li{
	display: inline-block;
	vertical-align: top;
	width: 23.176%;
	margin: 3% 2.432% 0 0;
}
#topics ul li:nth-child(4n){
	margin-right: 0;
}
#topics ul li a{
	display: block;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.01em;
}
#topics ul li a .thumb{
	margin-bottom: 10px;
	overflow: hidden;
}
#topics ul li a .thumb img{
	transition: transform 0.2s ease-out;
}
#topics ul li a:hover .thumb img{
	transform: scale(1.04);
}
#topics ul li a span.red {
	color: rgb(208, 1, 1);
}
@media screen and (max-width: 750px) {
	#topics{
		padding: 20px 16px 16px;
	}
	#topics ul::after{
		content: "";
		display: block;
		clear: both;
	}
	#topics ul li{
		display: block;
		float: left;
		width: 48%;
		margin: 15px 4% 0 0;
		font-size: 13px;
	}
	#topics ul li:nth-child(2n){
		margin-right: 0;
	}
	#topics ul li a{
		font-size: 13px;
		line-height: 1.8;
	}
	#topics ul li a .thumb{
		margin-bottom: 8px;
	}
}


/* showcase
-----------------------------------------------*/
#showcase{
	border-top: solid 1px #e3e9f1;
	padding: 80px 40px;
}
#showcase .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#showcase .ttlArea {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
#showcase .ttlArea #count {
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	#showcase .ttlArea #count {
		font-size: 14px;
	}
}
#showcaseSlideBox{
	margin-top: 36px;
}
#showcaseSlider{
	margin: 0 -18px;
	opacity: 0;
	transition: opacity .5s cubic-bezier(.210, .60, .350, 1);
}
#showcaseSlider.slick-initialized{
	opacity: 1;
}
#showcaseSlider .slick-list{
	overflow: hidden;
}
#showcaseSlider .slick-list::before,
#showcaseSlider .slick-list::after{
	content: "";
	display: block;
	width: 18px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	z-index: 1;
}
#showcaseSlider .slick-list::before{
	left: 0;
}
#showcaseSlider .slick-list::after{
	right: 0;
}
#showcaseSlider li{
	margin: 0 18px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: bold;
	letter-spacing: 0.01em;
}
#showcaseSlider li a{
	display: block;
	color: #333;
}
#showcaseSlider li a .thumb{
	overflow: hidden;
	margin-bottom: 8px;
}
#showcaseSlider li a .thumb img{
	transition: transform 0.2s ease-out;
}
#showcaseSlider li a:hover .thumb img{
	transform: scale(1.04);
}
#showcaseSlider .slick-next,
#showcaseSlider .slick-prev{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: -15px;
	width: 80px;
	height: 24px;
	font-size: 0;
	z-index: 1;
	background: rgba(0,26,44,0.5);
	padding: 0;
	border: none;
	cursor: pointer;
	transition: background .3s cubic-bezier(.210, .60, .350, 1), opacity .8s cubic-bezier(.210, .60, .350, 1);
}
#showcaseSlider .slick-next:hover,
#showcaseSlider .slick-prev:hover{
	background: #00afdd;
}
#showcaseSlider .slick-next{
	right: -86px;
}
#showcaseSlider .slick-prev{
	left: -86px;
}
#showcaseSlider .slick-arrow::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}
#showcaseSlider .slick-next::before{
	right: 12px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#showcaseSlider .slick-prev::before{
	left: 12px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#showcase .useList{
	position: relative;
	margin-top: 22px;
	border-top: solid 1px #e3e9f1;
	padding-top: 16px;
	text-align: center;
}
#showcase .listInner{
	display: inline-block;
	margin: 0 -4px;
	text-align: left;
}
#showcase .listInner h3{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	width: 6.1em;
	margin: 4px 0 4px 4px;
}
#showcase .listInner a{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	padding: 3px 10px;
	color: #003459;
	background: #e3e9f1;
	border-radius: 4px;
	position: relative;
	margin: 4px;
}
#showcase .listInner a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #333;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}
#showcase .listInner a:hover::after{
	opacity: 0.2;
}
@media screen and (max-width: 1464px) {
	#showcaseSlider .slick-prev{
		left: 0;
	}
	#showcaseSlider .slick-next{
		right: 0;
	}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 750px) {
	#showcase{
		padding: 40px 16px;
	}
	#showcaseSlideBox{
		margin: 18px -16px 0;
		position: relative;
	}
	#showcaseSlider{
		width: 73.73%;
		margin: 0 auto;
		position: static;
	}
	#showcaseSlider .slick-list{
		overflow: inherit;
	}
	#showcaseSlider .slick-list::before,
	#showcaseSlider .slick-list::after{
		display: none;
	}
	#showcaseSlider li{
		margin: 0;
		padding: 0 0.93vw;
	}
	#showcaseSlider .slick-next,
	#showcaseSlider .slick-prev{
		width: 44px;
		height: 48px;
		margin-top: -12.5px;
	}
	#showcaseSlider .slick-arrow::before{
		width: 6px;
		height: 6px;
	}
	#showcaseSlider .slick-prev::before{
		left: 20px;
	}
	#showcaseSlider .slick-next::before{
		right: 19px;
	}
	#showcase .useList{
		margin-top: 20px;
		padding-top: 3px;
	}
	#showcase .listInner{
		display: block;
	}
	#showcase .listInner h3{
		font-size: 13px;
		margin: 9px 0 9px 4px;
	}
	#showcase .listInner a{
		font-size: 13px;
		padding: 4px 8px;
		border-radius: 2px;
	}
}


/* product
-----------------------------------------------*/
#product{
	background: #e3e9f1;
	padding: 80px 40px;
}
#product .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#product .productBox{
	position: relative;
}
#product #sell{
	margin-top: 36px;
}
#product #rental{
	margin-top: 56px;
}
#product #resell{
	margin-top: 56px;
	background: #fff;
	display: table;
	box-shadow: 0 24px 12px rgba(0,26,44,0.1), 0 0 12px rgba(0,26,44,0.05);
}
#product .subTtlArea{
	position: relative;
	padding: 30px 62px 24px 0;
	color: #fff;
	margin-right: 62px;
}
#product #sell .subTtlArea{
	background: #003459;
}
#product #rental .subTtlArea{
	background: #0365ab;
}
#product #resell .subTtlArea{
	display: table-cell;
	vertical-align: middle;
	padding: 56px;
	border-right: solid 1px #e3e9f1;
	color: #333;
}
#product .subTtlArea::before{
	content: "";
	display: block;
	width: 62px;
	height: calc(100% + 272px);
	position: absolute;
	top: 0;
	left: 1px;
	transform: translate(-100%,0%);
}
#product #sell .subTtlArea::before{
	background: #003459;
}
#product #rental .subTtlArea::before{
	background: #0365ab;
}
#product #resell .subTtlArea::before{
	display: none;
}
#product .subTtlArea h3{
	font-size: 24px;
	line-height: 1.2;
	font-weight: normal;
	margin-bottom: 10px;
	letter-spacing: 0.01em;
	position: relative;
}
#product #resell .subTtlArea h3{
	font-weight: normal;
}
#product .subTtlArea .txtArea{
	display: table;
	position: relative;
}
#product #resell .subTtlArea .txtArea{
	display: block;
}
#product .subTtlArea .txtArea p{
	display: table-cell;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.71;
}
#product #resell .subTtlArea .txtArea p{
	display: block;
}
#product .subTtlArea .txtArea .btn{
	display: table-cell;
	vertical-align: middle;
	font-size: 13px;
	line-height: 1.2;
	font-weight: bold;
	padding-left: 16px;
}
#product #resell .subTtlArea .txtArea .btn{
	display: block;
	padding: 0;
	margin-top: 22px;
}
#product .subTtlArea .txtArea .btn a{
	display: block;
	width: 175px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	position: relative;
	background: #e3e9f1;
	color: #003459;
	border-radius: 4px;
}
#product #resell .subTtlArea .txtArea .btn a{
	margin: 0 auto;
}
#product .subTtlArea .txtArea .btn a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #333;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}
#product .subTtlArea .txtArea .btn a:hover::after{
	opacity: 0.2;
}
#product .subTtlArea .txtArea .btn a span::after{
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	box-sizing: border-box;
	border-top: solid 2px #003459;
	border-right: solid 2px #003459;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-bottom: 1px;
}
#product #resell .img{
	display: table-cell;
	vertical-align: middle;
	padding: 0 30px;
}
#product .sliderBox{
	position: relative;
	margin-right: -3px;
	background: #fff;
	box-shadow: 0 24px 12px rgba(0,26,44,0.1), 0 0 12px rgba(0,26,44,0.05);
}
#product .sliderBox > ul{
	width: 100%;
	opacity: 0;
	transition: opacity .5s cubic-bezier(.210, .60, .350, 1);
}
#product .sliderBox > ul.slick-initialized{
	opacity: 1;
}
#product .sliderBox > ul::after{
	content: "";
	display: block;
	clear: both;
}
#product .sliderBox > ul .slick-slide{
	float: left;
	width: 33.33%;
	border-right: solid 1px #e3e9f1;
	box-sizing: border-box;
}
#product .sliderBox > ul .slick-slide a{
	display: block;
	background: #fff;
	padding: 36px 36px 56px;
}
#product .sliderBox > ul .slick-slide a h4{
	display: table;
	position: relative;
	z-index: 1;
}
#product .sliderBox > ul .slick-slide a h4 strong{
	display: table-cell;
	vertical-align: middle;
}
#product .sliderBox > ul .slick-slide a h4 strong img{
	height: 32px;
}
#product .sliderBox > ul .slick-slide a h4 span{
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	font-size: 16px;
	line-height: 1.2;
	color: #003459;
}
#product .sliderBox > ul .slick-slide a .thumb img{
	transition: transform 0.2s ease-out;
}
#product .sliderBox > ul .slick-slide a:hover .thumb img{
	transform: scale(1.04);
}
#product .sliderBox > ul .slick-slide a p{
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
	margin-top: 36px;
}
#product #sell  .sliderBox > ul .slick-slide a p{
	color: #003459;
}
#product #rental  .sliderBox > ul .slick-slide a p{
	color: #0365ab;
}
#product .sliderBox > ul .slick-slide a .recommended{
	margin-top: 36px;
}
#product .sliderBox > ul .slick-slide a .recommended h5{
	font-size: 12px;
	line-height: 1.2;
	font-weight: normal;
	margin-bottom: 12px;
	color: #003459;
}
#product .sliderBox > ul .slick-slide a ul{
	width: 100%;
}
#product .sliderBox > ul .slick-slide a ul::after{
	content: "";
	display: block;
	clear: both;
}
#product .sliderBox > ul .slick-slide a ul li{
	float: left;
	width: 25%;
	box-sizing: border-box;
	border-right: solid 1px #e3e9f1;
	text-align: center;
	font-size: 10px;
	line-height: 1.2;
	font-weight: bold;
	padding: 0 2px;
}
#product .sliderBox > ul .slick-slide a ul li br{
	display: none;
}
#product .sliderBox > ul .slick-slide a ul li:last-child{
	border-right: none;
}
#product #sell  .sliderBox > ul .slick-slide a ul li{
	color: #003459;
}
#product #rental  .sliderBox > ul .slick-slide a ul li{
	color: #0365ab;
}
#product .sliderBox > ul .slick-slide a ul li span{
	display: block;
	max-width: 33px;
	margin: 0 auto 12px;
}
#product .sliderBox .moreBtn{
	width: 112px;
	height: 96px;
	font-size: 13px;
	line-height: 1.2;
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: -147px;
	transform: translate(0%,-50%);
	text-align: center;
}
#product .sliderBox .moreBtn a{
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding-top: 26px;
	border-radius: 4px;
	color: #fff;
	transition: background 0.2s ease-out;
}
#product #sell .sliderBox .moreBtn a{
	background: #003459;
}
#product #rental .sliderBox .moreBtn a{
	background: #0365ab;
}
#product #sell .sliderBox .moreBtn a:hover,
#product #rental .sliderBox .moreBtn a:hover{
	background: #00afdd;
}
#product .sliderBox .moreBtn a::before{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	border-top: solid 5px #fff;
	border-right: solid 5px #fff;
	transform: translate(-5px,0px) rotate(45deg);
	margin: 0 auto 15px;
}
#product .bnrArea{
  display: flex;
  margin-top: 55px;
}
#product .bnrArea .bnr a{
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
#product .bnrArea .bnr a:hover{
	opacity: .8;
}
#product .bnrArea .bnr:nth-child(n+2){
  margin-left: 20px;
}
#product .btnArea{
	font-size: 0;
	text-align: center;
	margin-top: 55px;
}
#product .btnArea .btn{
	display: inline-block;
	vertical-align: middle;
	width: 360px;
}
#product .btnArea .btn a{
	display: block;
	font-size: 16px;
	line-height: 72px;
	font-weight: bold;
	background: #00afdd;
	color: #fff;
	position: relative;
	border-radius: 4px;
}
#product .btnArea .btn a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #333;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}
#product .btnArea .btn a:hover::after{
	opacity: 0.2;
}
#product .btnArea .btn a span::after{
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	box-sizing: border-box;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-bottom: 1px;
}

/*.newproduct{
	float: left;
	width: 50%;
}*/
#product .newproduct a{
	display: block;
	color:#333;
	font-size: 14px;
	font-weight: bold;
	line-height: 2.0;
	letter-spacing: 0.01em;
	text-align: center
}
@media screen and (max-width: 1580px) {
	#product .inner{
		padding-right: 146px;
	}
}
@media screen and (max-width: 1120px) {
	#product .sliderBox > ul .slick-slide a ul li br{
		display: block;
	}
}
@media screen and (max-width: 1000px) {
	#product .btnArea .btn{
		width: 240px;
	}
}
@media screen and (max-width: 980px) {
	#product .inner{
		padding-right: 120px;
	}
	#product .sliderBox > ul .slick-slide a{
		padding: 24px 20px 40px;
	}
	#product .sliderBox > ul .slick-slide a h4 strong img{
		height: 28px;
	}
	#product .sliderBox > ul .slick-slide a h4 span{
		padding-left: 16px;
		font-size: 14px;
	}
	#product .sliderBox .moreBtn{
		transform: translate(0%,-50%) scale(0.8);
		transform-origin: left;
	}
}
@media screen and (max-width: 750px) {
	#product{
		padding: 40px 16px;
	}
	#product .inner{
		padding-right: 0;
	}
	#product #sell{
		margin-top: 18px;
	}
	#product #rental{
		margin-top: 28px;
	}
	#product #resell{
		margin-top: 28px;
		display: block;
		box-shadow: 0 12px 6px rgba(0,26,44,0.1), 0 0 6px rgba(0,26,44,0.05);
	}
	#product .subTtlArea{
		padding: 36px 16px 74px 0;
		margin-right: -16px;
	}
	#product .subTtlArea::before{
		width: calc(100% + 36px);
		height: calc(100% + 235px);
		transform: translate(-16px,0px);
	}
	#product .subTtlArea h3{
		margin-bottom: 20px;
	}
	#product .subTtlArea .txtArea{
		display: block;
	}
	#product .subTtlArea .txtArea p{
		display: block;
		font-size: 13px;
		line-height: 1.84;
		margin-bottom: 10px;
	}
	#product .subTtlArea .txtArea .btn{
		display: block;
		padding-left: 0;
	}
	#product .subTtlArea .txtArea .btn a{
		margin: 0 auto;
		border-radius: 2px;
	}
	#product .sliderBox{
		margin-right: -16px;
		box-shadow: none;
		background: none;
	}
	#product .sliderBox > ul{
		width: auto;
		margin-right: 16px;
	}
	#product .sliderBox > ul .slick-slide a{
		padding: 30px;
	}
	#product .sliderBox > ul .slick-slide a h4 strong img{
		height: 27px;
	}
	#product .sliderBox > ul .slick-slide a h4 span{
		font-size: 13px;
		padding-left: 10px;
	}
	#product #rental .sliderBox > ul .slick-slide a p{
		font-size: 13px;
		margin-top: 26px;
	}
	#product .sliderBox > ul .slick-slide a .recommended{
		margin-top: 28px;
	}
	#product #rental .sliderBox > ul .slick-slide a .recommended h5{
		font-size: 11px;
	}
	#product .sliderBox > ul .slick-slide a ul li span{
		max-width: 28px;
	}
	#product .sliderBox > ul .slick-slide a ul li br{
		display: none;
	}
	#product .sliderBox > ul .slick-track{
		box-shadow: 0 12px 6px rgba(0,26,44,0.1), 0 0 6px rgba(0,26,44,0.05);
	}
	#product .sliderBox > ul .slick-arrow{
		position: absolute;
		top: -55px;
		left: 50%;
		width: 84px;
		height: 36px;
		background: #001a2c;
		border-radius: 2px;
		border: none;
		margin: 0;
		padding: 0;
		font-size: 0;
		cursor: pointer;
		transition: background .2s cubic-bezier(.210, .60, .350, 1);
	}
	#product .sliderBox > ul .slick-arrow:hover{
		background: #00afdd;
	}
	#product .sliderBox > ul .slick-prev{
		margin-left: -87px;
	}
	#product .sliderBox > ul .slick-next{
		margin-left: 3px;
	}
	#product .sliderBox > ul .slick-arrow::before{
		content: "";
		width: 6px;
		height: 6px;
		box-sizing: border-box;
		border-bottom: solid 2px #fff;
		border-left: solid 2px #fff;
		position: absolute;
		top: 50%;
		left: 50%;
	}
	#product .sliderBox > ul .slick-prev::before{
		transform: translate(-50%,-50%) rotate(45deg);
	}
	#product .sliderBox > ul .slick-next::before{
		transform: translate(-50%,-50%) rotate(-135deg);
	}
	#product .sliderBox .moreBtn{
		display: none;
	}
	#product #resell .subTtlArea{
		display: block;
		padding: 28px 28px 0;
		margin-bottom: 70px;
		margin-right: 0;
	}
	#product #resell .subTtlArea h3{
		font-size: 18px;
		margin-bottom: 12px;
	}
	#product #resell .subTtlArea .txtArea .btn{
		margin-top: 28px;
		text-align: center;
	}
	#product #resell .subTtlArea .txtArea .btn a{
		display: inline-block;
		width: auto;
		height: auto;
		line-height: 1.2;
		background: none;
		color: #00afdd;
	}
	#product #resell .subTtlArea .txtArea .btn a::after{
		display: none;
	}
	#product .subTtlArea .txtArea .btn a span::after{
		width: 6px;
		height: 6px;
	}
	#product #resell .subTtlArea .txtArea .btn a span::after{
		border-color: #00afdd;
	}
	#product #resell .img{
		display: block;
		padding: 0 11px 42px;
	}
  #product .bnrArea{
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
  }
  #product .bnrArea .bnr{
    margin-bottom: 20px;
  }
  #product .bnrArea .bnr:last-child{
    margin-bottom: 0;
  }
  #product .bnrArea .bnr:nth-child(even){
    margin-left: 0;
  }
	#product .btnArea{
		margin: 30px auto 0;
		max-width: 310px;
	}
	#product .btnArea .btn{
		width: 100%;
	}
	#product .btnArea .btn a{
		font-size: 13px;
		line-height: 48px;
		border-radius: 2px;
	}
	#product .btnArea .btn a::after{
		border-radius: 2px;
	}
	#product .btnArea .btn a span::after{
		width: 6px;
		height: 6px;
	}
	.newproduct{
	float: left;
	width: 100%;
}
}


/* case
-----------------------------------------------*/
#case{
	padding: 80px 40px;
}
#case .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#caseSlideBox{
	margin-top: 36px;
}
#caseSlider{
	margin: 0 -18px;
	opacity: 0;
	transition: opacity .5s cubic-bezier(.210, .60, .350, 1);
}
#caseSlider.slick-initialized{
	opacity: 1;
}
#caseSlider .slick-list{
	overflow: hidden;
}
#caseSlider .slick-list::before,
#caseSlider .slick-list::after{
	content: "";
	display: block;
	width: 18px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	z-index: 1;
}
#caseSlider .slick-list::before{
	left: 0;
}
#caseSlider .slick-list::after{
	right: 0;
}
#caseSlider li{
	margin: 0 18px;
}
#caseSlider li a{
	display: block;
	color: #333;
}
#caseSlider li a .thumb{
	overflow: hidden;
}
#caseSlider li a .thumb img{
	transition: transform 0.2s ease-out;
}
#caseSlider li a:hover .thumb img{
	transform: scale(1.04);
}
#caseSlider .slick-next,
#caseSlider .slick-prev{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 80px;
	height: 24px;
	font-size: 0;
	z-index: 1;
	background: rgba(0,26,44,0.5);
	padding: 0;
	border: none;
	cursor: pointer;
	transition: background .3s cubic-bezier(.210, .60, .350, 1), opacity .8s cubic-bezier(.210, .60, .350, 1);
}
#caseSlider .slick-next:hover,
#caseSlider .slick-prev:hover{
	background: #00afdd;
}
#caseSlider .slick-next{
	right: -86px;
}
#caseSlider .slick-prev{
	left: -86px;
}
#caseSlider .slick-arrow::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}
#caseSlider .slick-next::before{
	right: 12px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#caseSlider .slick-prev::before{
	left: 12px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#case ul li a{
	color: #fff;
}
#case ul li a .thumb{
	overflow: hidden;
}
#case ul li a .thumb img{
	transition: transform 0.2s ease-out;
}
#case ul li a:hover .thumb img{
	transform: scale(1.04);
}
@media screen and (max-width: 1464px) {
	#caseSlider .slick-prev{
		left: 0;
	}
	#caseSlider .slick-next{
		right: 0;
	}
}
@media screen and (max-width: 750px) {
	#case{
		padding: 60px 16px 40px;
	}
	#caseSlideBox{
		margin: 18px -16px 0;
		position: relative;
	}
	#caseSlider{
		width: 73.73%;
		margin: 0 auto;
		position: static;
	}
	#caseSlider .slick-list{
		overflow: inherit;
	}
	#caseSlider .slick-list::before,
	#caseSlider .slick-list::after{
		display: none;
	}
	#caseSlider li{
		margin: 0;
		padding: 0 0.93vw;
	}
	#caseSlider .slick-next,
	#caseSlider .slick-prev{
		width: 44px;
		height: 48px;
	}
	#caseSlider .slick-arrow::before{
		width: 6px;
		height: 6px;
	}
	#caseSlider .slick-prev::before{
		left: 20px;
	}
	#caseSlider .slick-next::before{
		right: 19px;
	}
}


/* product
-----------------------------------------------*/
#feature{
	background: #090305;
}
#feature .inner{
	position: relative;
	display: table;
	width: 100%;
	height: 460px;
}
#feature .inner .movie{
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
	position: relative;
}
#feature .inner .movieCover{
  position: absolute;
  padding-top: 56.25%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
#feature .inner .movie iframe{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#feature .inner .txt{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 600px;
	padding: 56px 80px;
	box-sizing: border-box;
	background: #090305;
	color: #fff;
	position: relative;
}
#feature .inner .txt::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}
#feature .inner .txt:hover::after{
	opacity: 0.2;
}
#feature .inner .txt p{
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 24px;
	letter-spacing: 0.01em;
}
#feature .inner .txt p.link{
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0;
	margin-bottom: 0;
	color: #00afdd;
}
#feature .inner .txt p.link::after{
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	box-sizing: border-box;
	border-top: solid 2px #00afdd;
	border-right: solid 2px #00afdd;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-bottom: 1px;
}
#feature .inner .txt h2{
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 16px;
}
#feature .inner .txt h2 img{
	display: block;
	margin-bottom: 16px;
}
@media screen and (max-width: 1500px) {
#feature .inner .movieCover{
  position: absolute;
  padding-top: 0;
  height: 460px;
  top: 0;
  transform: translateY(0);
}
#feature .inner .movieCover iframe{
  top: 50%;
  left: 50%;
  height: 460px;
  width: 818px;
  transform: translate(-50%, -50%);
}
}
@media screen and (max-width: 980px) {
	#feature .inner .txt{
		width: 60%;
		padding: 56px 8%;
	}
}
@media screen and (max-width: 750px) {
	#feature .inner{
		display: block;
		height: auto;
	}
	#feature .inner .movie{
		display: block;
	}
	#feature .inner .movie::before{
		content: "";
		display: block;
		width: 100%;
		height: 0;
		padding-top: 46%;
	}
  #feature .inner .movieCover{
    padding-top: 56.25%;
    height: 0;
    top: 0;
    transform: translateY(0);
  }
  #feature .inner .movieCover iframe{
    height: 100%;
    width: 100%;
  }
	#feature .inner .txt{
		display: block;
		width: 100%;
		padding: 35px 16px;
	}
	#feature .inner .txt p{
		font-size: 10px;
		margin-bottom: 13px;
	}
	#feature .inner .txt p.link::after{
		width: 6px;
		height: 6px;
	}
	#feature .inner .txt h2{
		font-size: 28px;
		margin-bottom: 6px;
	}
	#feature .inner .txt h2 img{
		max-width: 308px;
		margin: 0 auto 8px;
	}
}


/* voice
-----------------------------------------------*/
#voice{
	padding: 120px 40px 0;
}
#voice .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#voice ul{
	font-size: 0;
	max-width: 1200px;
	margin: 36px auto 0;
	text-align: center;
}
#voice ul li{
	display: inline-block;
	vertical-align: top;
	width: 22.75%;
	margin-left: 3%;
	margin-bottom: 3%;
	font-size: 14px;
	line-height: 1.71;
	text-align: left;
}
#voice ul li:first-child{
	margin-left: 0;
}
#voice ul li a{
	font-size: 14px;
	color: #333;
}
#voice ul li a strong{
	display: block;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 8px;
}
#voice ul li a strong span{
	font-size: 24px;
	color: #003459;
	margin-right: 10px;
}
#voice ul li a .thumb{
	overflow: hidden;
	margin-bottom: 14px;
}
#voice ul li a .thumb img{
	transition: transform 0.2s ease-out;
}
#voice ul li a:hover .thumb img{
	transform: scale(1.04);
}
@media screen and (max-width: 750px) {
	#voice{
		padding: 60px 16px 0;
	}
	#voice ul{
		text-align: left;
		margin-top: 18px;
		margin-right: -20px;
	}
	#voice ul::after{
		content: "";
		display: block;
		clear: both;
	}
	#voice ul li{
		display: block;
		float: left;
		width: 50%;
		margin-left: 0;
		margin-top: 16px;
		font-size: 13px;
		line-height: 1.84;
	}
	#voice ul li:nth-child(-n+2){
		margin-top: 0;
	}
	#voice ul li:nth-child(2n+1){
		clear: left;
	}
	#voice ul li a{
		display: block;
		margin-right: 20px;
		font-size: 13px;
	}
	#voice ul li a strong{
		font-size: 13px;
		margin-bottom: 2px;
	}
	#voice ul li a strong span{
		font-size: 18px;
		margin-right: 10px;
	}
	#voice ul li a .thumb{
		margin-bottom: 8px;
	}
}


/* shop
-----------------------------------------------*/
#shop{
	padding: 60px 40px 0;
}
#shop .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#shop .box{
	position: relative;
	padding-left: 31.33%;
}
#shop .search{
	position: absolute;
	left: 0;
	top: 0;
	margin-left: 0;
	width: 31.33%;
	height: 100%;
}
#shop .search a{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	background: #00afdd;
	text-align: center;
	border-radius: 4px;
}
#shop .search a .txt{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
#shop .search a .txt img{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
#shop .search a .txt strong{
	display: inline-block;
	vertical-align: middle;
	font-size: 22px;
	font-weight: normal;
}
#shop ul{
	font-size: 0;
	max-width: 1200px;
	margin: 36px auto 0;
}
#shop ul li{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 45.623%;
	margin: 4.377% 0 0 4.377%;
	font-size: 14px;
	line-height: 1.71;
	text-align: left;
}
#shop ul li:nth-child(1),
#shop ul li:nth-child(2){
	margin-top: 0;
}
#shop ul li.wide{
	width: calc(100% - 4.377%);
}
#shop ul li a{
	display: block;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
#shop ul li a::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
	opacity: 0;
	transition: opacity 0.2s ease-out;
}
#shop ul li a:hover::after{
	opacity: 1;
}
#shop .sp{
	display: none;
}
@media screen and (max-width: 750px) {
	#shop{
		padding: 60px 16px 0;
	}
	#shop .box{
		overflow: hidden;
		padding-left: 0;
	}
	#shop .search{
		position: relative;
		float: left;
		width: calc(50% - 9px);
		margin-top: 18px;
	}
	#shop .search a{
		position: relative;
	}
	#shop .search a .txt img{
		display: block;
		margin: 0 auto;
	}
	#shop .search a .txt strong{
		display: block;
		margin-top: 15px;
	}
	#shop ul{
		overflow: visible;
		margin-top: 0;
	}
	#shop ul li{
		display: block;
		float: left;
		width: calc(50% - 9px);
		margin-left: 18px;
		margin-top: 18px !important;
		font-size: 13px;
		line-height: 1.84;
	}
	#shop ul li:nth-child(2n){
		margin-left: 0;
	}
  #shop ul li.wide{
		width: calc(50% - 9px);
  }
	#shop ul li a{
		border-radius: 2px;
	}
	#shop .pc{
		display: none;
	}
	#shop .sp{
		display: block;
	}
}


/* news
-----------------------------------------------*/
#news{
	padding: 120px 40px;
}
#news .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#news .topContentsCampaign{
	margin-top: 38px;
	background: #e3e9f1;
	padding: 8px 36px 11px;
}
.newsTable{
	width: 100%;
}
.newsTable th,
.newsTable td{
	vertical-align: top;
	padding: 25px 18px;
	border-bottom: 1px solid #fff;
	line-height: 1.5;
	font-weight: normal;
}
.newsTable th{
	padding-left: 0;
}
.newsTable th,
.newsTable td:nth-child(1){
	padding-left: 0;
	white-space: nowrap;
}
.newsTable td:nth-child(2){
	width: 100%;
}
.newsTable tr:last-child th,
.newsTable tr:last-child td{
	border-bottom: none;
}
.newsTable td a{
	color: #333;
	transition: color .2s cubic-bezier(.210, .60, .350, 1);
}
.newsTable td a:hover{
	color: #00afdd;
}
.newsTable .newsNone th{
	border: none;
	padding: 0;
}
#news .bnrLink{
	margin-top: 36px;
}
#news .bnrLink::after{
	content: "";
	display: block;
	clear: both;
}
#news .bnrLink li{
	float: left;
	width: 31.33%;
	margin-left: 3%;
}
#news .bnrLink li:first-child{
	margin-left: 0;
}
#news .bnrLink li a{
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
#news .bnrLink li a:hover{
	opacity: .8;
}
@media screen and (max-width: 750px) {
	#news{
		padding: 60px 16px;
	}
	#news .topContentsCampaign{
		margin-top: 18px;
		padding: 0;
	}
	.newsTable tr{
		display: block;
		width: 100%;
		border-top: solid 2px #fff;
		padding: 18px;
		box-sizing: border-box;
	}
	.newsTable tr:first-child{
		border-top: none;
	}
	.newsTable th{
		display: inline-block;
		width: 6em;
		font-size: 12px;
		padding: 0;
		border: none;
	}
	.newsTable td:nth-child(2){
		display: inline-block;
		width: auto;
		padding: 0;
		border: none;
	}
	.newsTable td:nth-child(2){
		display: block;
		width: 100%;
		font-size: 13px;
		line-height: 1.84;
		padding: 0;
		border: none;
		margin-top: 0.5em;
	}
	#news .bnrLink{
		margin: 18px auto 0;
	}
	#news .bnrLink li{
		float: none;
		width: 100%;
		margin: 12px 0 0;
	}
}

.keywordWrap {
  margin: 20px 0;
}
.keyword-list {
  max-height: 2em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.keyword-list.expanded {
  max-height: none;
}
.keyword-toggle {
 	position: absolute;
	bottom: -24px;
	right: 0;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: #333;
	font-size: 14px;
}
.keyword-toggle.active {
	bottom: 8px;
}
.keyword-toggle span {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 4px;
}
.keyword-toggle span::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 6px;
	height: 6px;
	border-right: solid 1px #333;
	border-bottom: solid 1px #333;
	rotate: 45deg;
}
.keyword-toggle.active span::before {
  top: 5px;
	transform: rotate(-180deg);
}

@media screen and (max-width: 767.9px) {
	.keyword-toggle {
		color: #333;
		font-size: 12px;
	}
	.keyword-toggle {
		bottom: -18px;
	}
	.keyword-toggle.active {
		bottom: -22px;
	}
}