@charset "utf-8";

/**
 *
 *  Elements CSS [パーツ共通]
 *
 */

@import url("vehicle.css");
@import url("archive.css");
@import url("single.css");
@import url("parts.css");

/* Counter
------------------------------------------------------------*/
.kiricnt {
	background: #4F83C3;
	}
	.kiricnt .inner {
		display: table;
		width: 100%;
		background: rgba(0,0,0,0.10);
		text-align: center;
		line-height: 1.5;
		padding: 10px 0;
	}
	.kiricnt p {
		font-family: "Noto Sans Japanese","ＭＳ Ｐゴシック",sans-serif;
		font-size: 13px;
		font-size: 1.3rem;
		line-height: 22px;
		color: #FFF;
		display: table-cell;
		vertical-align: middle;
	}
	.kiricnt p img {
		vertical-align: middle;
		margin: 0 4px;
	}

/* Buttons
------------------------------------------------------------*/
.more {
	display: inline-block;
	font-size: 13px;
	font-size: 1.3rem;
	text-align: center;
	color: #FFF;
	background: #666;
	height: 30px;
	line-height: 30px;
	border-radius: 4px;
	padding: 0 5px;
	position: absolute;
	}
	.more:before {
		display: inline-block;
		content: "";
		width: 12px;
		height: 12px;
		background: url(../img/more_before.png);
		background-size: 12px 12px;
		margin-right: .3em;
		position: relative;
		top: 2px;
	}
	.more:hover {
		opacity: .8;
	}

/* Page Anchor */
#page-top {
	position: fixed;
	font-family: "Oswald",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	text-align: center;
	border-radius: 3px;
	display: table;
	z-index: 100;
	}
	#page-top a {
		text-decoration: none;
		color: #FFF;
		display: table-cell;
		vertical-align: middle;
		line-height: 1.2;
	}
	#page-top a:before {
		content: "";
		display: block;
	}
	#page-top:hover {
		text-decoration: none;
		opacity: .9;
	}

/* Slider MainVisual
------------------------------------------------------------*/
#wide {
	position: relative;
}
.sp-mask {
	background: #000;
}
.mv_logo {
	position: absolute;
	top: 174px;
	left: 90px;
	z-index: 10;
}
.sp-image-container {
	position: relative;
}
/* .sp-image-container:after { /* 前の画像/次の画像を表示の際のマスク処理
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/mainvisual/mv_outside_mask.png);
	background-repeat: repeat;
	position: absolute;
	top: 0;
	left: 0;
} */
.sp-selected .sp-image-container:after {
	display: none;
}

/* 矢印アイコンの設定 */
.sp-arrow {
	width: 22px;
	height: 22px;
}
#wide .sp-previous-arrow {
	left: 0;
}
#wide .sp-next-arrow {
	right: 0;
}
.sp-previous-arrow:before,
.sp-next-arrow:before {
  content: "" !important;
  display: block;
  background-image: url(../img/mainvisual/next.gif);
	background-size: 22px 22px;
  text-indent: -9999px;
  width: 22px;
  height: 22px;
	-webkit-transform: none;
	-ms-transform: none;
	transform:  none;
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.65);
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.65);
	box-shadow: 0 2px 4px rgba(0,0,0,0.65);
	position: static;
}
.sp-next-arrow:before {
  background-image: url(../img/mainvisual/next.gif);
}
.sp-previous-arrow:before {
  background-image: url(../img/mainvisual/prev.gif);
}
.sp-previous-arrow:after,
.sp-next-arrow:after {
	display: none;
}
.sp-buttons {
	position: absolute;
	bottom: 0;
}

/* ボタンの設定 */
.sp-button {
	border: none;
	background: #FFF;
}
.sp-selected-button {
	background-color: #66CCEE;
}

/* Entry
------------------------------------------------------------*/
.post-container {
	overflow: hidden;
	padding: 10px;
	margin-bottom: 1px;
	background: #FFF;
	}
	.post-container a {
		color: #444;
	}
.post-container a.more2 {
	color: #4F83C3;
}
.post-eyecatchi {
	float: left;
	width: 106px;
	height: 106px;
	position: relative;
	margin: 0 10px 0 0;
}
.post-eyecatchi img {
	width: 106px;
	height: auto;
	border-radius: 4px;
}
.post-eyecatchi .caption, .thumbnail .caption {
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	height: 100%;
	color: #FFF;
	background: rgba(0,0,0,0.65) url(../img/caption_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 160px 72px;
	text-indent: -9999px;
	opacity: 0;
	-webkit-transition: all 300ms ease-in-out;
  	transition: all 300ms ease-in-out;
	border-radius: 4px;
	}
	#index .post-eyecatchi .caption, #index .thumbnail .caption {
		background-size: 80px 36px;
	}
.post-eyecatchi:hover .caption, .thumbnail:hover .caption {
	opacity: 1;
}
.post-head {
	font-size: 10px;
	font-size: 1rem;
	position: relative;
}
.post-body h4 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	border-bottom: 1px dotted #DDDDDD;
	padding-bottom: 5px;
	margin-bottom: 5px;
	position: relative;
	padding-left: 10px;
	}
	.post-body h4:before {
		content: url(../img/post_h4_before.gif);
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: -13px;
	}
.p-container {
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.5;
}

/* 文字省略 複数行対応 [1] */
.ellipsis {
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.5;
	height: 34px;
	white-space: nowrap;
	overflow: hidden;
}
.ellipsis.multiline {
	white-space: normal;
}

/* Owl-Carousel
------------------------------------------------------------*/
.owl-theme .owl-controls .owl-page span {
	background: #4F83C3;
}
ul.owl-carousel {
	padding: 0 1px;
}

/* BxSlider
------------------------------------------------------------*/
.bx-wrapper .bx-loading {}

.bx-wrapper {
	margin-bottom: 0;
}
.bx-wrapper .bx-viewport {
	background: none;
	border: none;
	box-shadow: none;
	left: 0;
	transform: translateZ(0px);
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
	left: -36px;
	background: url(../img/slide-controls.png) no-repeat 0 -24px;
}
.bx-wrapper .bx-next {
	right: -36px;
	background: url(../img/slide-controls.png) no-repeat -16px -24px;
}
.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}
.bx-wrapper .bx-next:hover {
	background-position: -16px 0;
}
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -12px;
	outline: 0;
	width: 16px;
	height: 24px;
	text-indent: -9999px;
	z-index: 1;
}
.bx-wrapper .bx-pager {
	width: 60px;
	height: 30px;
	line-height: 30px;
	color: #FFF;
	background: #666;
	padding: 0;
	position: absolute;
	top: -34px;
	left: 0;
}

/* Waypoints
------------------------------------------------------------*/
.wp1, .wp2, .wp3, .wp4, .wp5, .wp6 {
	/* visibility: hidden; */
}
.bounceInLeft, .bounceInRight, .fadeInUp, .fadeInUpDelay, .fadeInDown, .fadeInUpD, .fadeInLeft, .fadeInRight, .bounceInDown {
	visibility: visible;
}
.delay-05s {
	-webkit-animation-delay: 0.5s;
		animation-delay: 0.5s;
}
.delay-1s {
	-webkit-animation-delay: 1s;
		animation-delay: 1s;
}
.delay-1-025s {
	-webkit-animation-delay: 1.25s;
		animation-delay: 1.25s;
}
.delay-1-05s {
	-webkit-animation-delay: 1.5s;
		animation-delay: 1.5s;
}
.delay-1-075s {
	-webkit-animation-delay: 1.75s;
		animation-delay: 1.75s;
}
.delay-2s {
	-webkit-animation-delay: 2s;
		animation-delay: 2s;
}

/* 画像ブランクの処理 */
.noimage {
	background-color: #CCC;
	background-image: url(../img/blank.png);
	background-position: center center;
	background-size: 40% auto;
	background-repeat: no-repeat;
	}
	.post-eyecatchi .noimage,
	.list .noimage,
	.search-list .noimage {
		width: 100%;
		height: 100%;
	}

/* トップページ新着記事一覧のカテゴリ出力 */
.post-eyecatchi .cat-name {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #FFF;
	background-color: rgba(140,130,100,0.80);
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2;
	padding: 2px 10px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	width: 100%;
	}
	.post-eyecatchi .cat-name a {
		color: #FFF;
	}

@media (min-width: 768px) { /* PC/タブレット */

/* トップページ新着記事一覧のカテゴリ出力 */
.post-eyecatchi .cat-name {
	font-size: 12px;
	font-size: 1.2rem;
	padding: 2px 10px;
	border-top-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 0;
	width: auto;
}

/* Counter */
.kiricnt .inner {
	width: 1200px;
}
.kiricnt p br {
	display: none;
}

/* Slider-pro */
#intro .sp-arrows {
	margin-top: -22px;
	}
	.sp-arrow {
		width: 44px;
		height: 44px;
	}
.sp-next-arrow:before,
.sp-previous-arrow:before {
	width: 44px;
	height: 44px;
	background-size: 44px 44px;
}
.sp-next-arrow:before {
	right: auto;
}
.sp-previous-arrow:before {
	left: auto;
}

/* Entry */
.post-list li {
	height: 311px;
	background: #FFF;
	border: 1px solid #EEE;
	border-bottom: 4px solid #DDD;
	border-radius: 4px;
}
.post-container {
	padding: 5px;
	overflow: hidden;
	position: relative;
	margin-bottom: 0;
	background: none;
}
.post-head {
	background: rgba(0,0,0,0.65);
	color: #FFF;
	position: absolute;
	top: 5px;
	left: 5px;
	width: calc(100% - 10px);
	height: 30px;
	line-height: 30px;
	z-index: 10;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.post-share {
	display: none;
	float: right;
	width: 30px;
	height: 30px;
	background: rgba(79,131,195,0.65);
}
.post-date {
	font-size: 11px;
	font-size: 1.1rem;
	padding-left: 10px;
}
.post-share:hover {
	opacity: .65;
}
.post-eyecatchi {
	float: none;
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin-bottom: 0;
	}
	/* トップページのケーアイNEWS表示 */
	#info .post-list li {
		height: auto;
	}
	#info .post-container {
		padding: 15px;
	}
	#info .post-eyecatchi {
		float: left;
		width: auto;
		height: auto;
		margin-right: 15px;
	}
	#info .post-eyecatchi img {
		width: 100px;
		height: auto;
	}
	#info .post-head {
		position: static;
		color: #444;
		background: none;
		height: 20px;
		line-height: 20px;
	}
	#info .post-date {
		padding-left: 0;
	}
	#info .post-body {
		padding: 0;
	}

.post-eyecatchi img {
	vertical-align: bottom;
	-webkit-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
}
.post-eyecatchi .caption, .thumbnail .caption,
#index .post-eyecatchi .caption, #index .thumbnail .caption {
	background-size: 160px 72px;
}
.post-body {
	padding: 10px;
}

/* 画像ブランクの処理 */
.noimage {
	background-color: #CCC;
}

}
