@charset "shift_jis";

/*==============================================
 reset
============================================= */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: '';
	content: none;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
img {
	line-height: 0;
}
h1,h2,h3,h4,h5,p {
	word-break: break-all;
}

/* form */

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
	vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* form placeholder */

::-webkit-input-placeholder {/* Webkit */
	color: #bebebe;
	opacity: 1;
}
:-moz-placeholder {/* Firefox ~18 */
	color: #bebebe;
}
::-moz-placeholder {/* Firefox 19~ */
	color: #bebebe;
	opacity: 1;
}
:-ms-input-placeholder {/* IE 10~ */
	color: #bebebe;
}
.placeholder {/* IE ~9 */
	color: #bebebe;
}
:placeholder-shown {
	color: #bebebe;
}
:focus::-webkit-input-placeholder {/* Webkit */
	color: transparent;
}
:focus:-moz-placeholder {/* Firefox ~18 */
	color: transparent;
}
:focus::-moz-placeholder {/* Firefox 19~ */
	color: transparent;
}


/*==============================================
 common
============================================= */

html {
	font-size: 62.5%;
}
body {
	background-color: #ececec;
	font-family: Helvetica, Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "sans-serif";
	font-size: 12px;
	font-size: 1.2rem;
	color: #333;
}

/* anchor */

a,
a:hover,
a:focus {
	outline: none;
	text-decoration: none;
	color: #333;
	transition: opacity .1s, background-color .1s;
}

/* strong */

strong {
	font-weight: bold;
}

/* clearfix */

.cf::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.cf {
	min-height: 1px;
}

/*==============================================
 header
============================================= */

header {
	padding: 20px 0;
	border-bottom: 1px solid #ececec;
	background-color: #fff;
}
header .container {
	position: relative;
	width: 1035px;
	margin: 0 auto;
}

/* clearfix */

header .container::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
header .container {
	min-height: 1px;
}

/* .logo
--------------------------------------------- */

header .logo h1 {
	display: inline;
}
header .logo a:first-child {
	margin-right: 15px;
}
header .logo a img {
	vertical-align: middle;
}

/* .pr-statusbar
--------------------------------------------- */

header .pr-statusbar {
	position: absolute;
	top: 0;
	right: 0;
}
header .prText {
	min-height: 17px;
}
header .statusbar {
	margin-top: 5px;
}

/*==============================================
 #gnav
============================================= */

#gnav {
	height: 50px;
	background-color: #fff;
}
#gnav nav {
	z-index: 10;
	background-color: #fff;
}
#gnav .container {
	width: 1035px;
	margin: 0 auto;
}
#gnav ul {
    display: flex;
	float: left;
    width: 700px;
}
#gnav ul li {
}
#gnav ul li a {
	display: block;
	line-height: 50px;
    padding: 0 15px;
	font-size: 15px;
	font-size: 1.5rem;
}

/* gnav hover animation */

#gnav ul li a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
#gnav ul li a:hover {
	color: #999;
	-webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
#gnav ul li.now a:hover {
	color: #333;
}
#gnav ul li a::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  background: #006cc7;
	width: auto;
  height: 3px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#gnav ul li a:hover::before,
#gnav ul li a:focus::before,
#gnav ul li a:active::before,
#gnav ul li.now a::before {
	z-index: 3;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* clearfix */

#gnav .container::after,
#gnav ul::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#gnav .container,
#gnav ul {
	min-height: 1px;
}

/* .search-box
--------------------------------------------- */

.search-box {
	float: right;
	font-size: 0;
	margin-top: 12px;
}
input.search-text {
	width: 270px;
	height: 26px;
	line-height: 1;
	margin-top: 0px;
	padding-left: 10px;
	box-sizing: border-box;
	border: 1px solid #d8d8d8;
	border-right: none;
	border-radius: 3px 0px 0px 3px;
	font-family: Helvetica, Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "sans-serif";
}
input.search-text:focus {
	border-color: #72acdc;
}
@media screen and (-webkit-min-device-pixel-ratio:0){/* Chrome */
	input.search-text {
		margin-top: -1px;
	}
}
input.search-submit {
	display: inline-block;
	width: 30px;
	height: 26px;
	background-color: #006cc7;
	border-radius: 0px 3px 3px 0px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-size: 1.2rem;
	transition: background-color .1s;
}
input.search-submit:hover {
	background-color: #008aff;
}

/*==============================================
 #gnav .fixed
============================================= */

#gnav nav.fixed {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.05);
	        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.05);
}

/*==============================================
 #breadcrumb
============================================= */

#breadcrumb {
	width: 1035px;
	height: 1em;
	margin: 0 auto;
    padding: 15px 0;
}
#breadcrumb li {
	float: left;
	padding-right: 7px;
	color: #9b9b9b;
	font-size: 11px;
	font-size: 1.1rem;
}
#breadcrumb li::before {
	content: ">";
	margin-right: 7px;
}
#breadcrumb li:first-of-type::before {
	display: none;
}
#breadcrumb li:last-of-type {
	display: none;
	padding-right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#breadcrumb li a {
	color: #006cc7;
}
#breadcrumb li a:hover {
	text-decoration: underline;
}

/* clearfix */

#breadcrumb::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#breadcrumb {
	min-height: 1px;
}

/*==============================================
 #content
============================================= */

#content {
	width: 1035px;
	margin: 0 auto;
}

/* clearfix */

#content::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#content {
	min-height: 1px;
}

/*==============================================
 #main
============================================= */

#main {
	float: left;
	width: 700px;
}

/* h1 */

#main > h1 {
	line-height: 1.2;
	margin-bottom: 20px;



	font-size: 22px;
	font-size: 2.2rem;
	font-weight: bold;
}
#main > h1 a.i-rss {
	display: block;
	float: right;
	position: relative;
	width: 22px;
	height: 22px;
	margin-top: 0;
	background-color: #ee9310;
	overflow: hidden;
  text-indent: 100%;
	border-radius: 3px;
	font-size: 0;
}
#main > h1 a.i-rss::before {
	position: absolute;
	top: 5px;
	left: 3px;
	text-indent: 0;
	color: #fff;
	font-size: 17px;
	font-size: 1.7rem;
}
#main > h1 a.i-rss:hover {
	border: none;
	background-color: #ffa92d;
}

/* section */

#main section {
	background-color: #fff;
}
#main section + section {
	margin-top: 20px;
}
#main section h2 {
	padding: 20px 20px 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-size: 16px\9;/* IE -9 */
	font-weight: bold;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {/* IE 11-10 */
  #main section h2:not(:target) {
    font-size: 16px;
  }
}

/* .more */

#main .more {
	margin-top: 20px;
	margin-right: 20px;
	text-align: right;
	font-size: 15px;
	font-size: 1.5rem;
}

/* .more-btn */

#main .more-btn {
	margin-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 13px;
	font-size: 1.3rem;
}
#main .more-btn a {
	position: relative;
	display: block;
	width: 150px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
	border-radius: 3px;
	background-color: #006cc7;
	color: #fff;
}
#main .more-btn a:hover {
	border: none;
	background-color: #008aff;
}
#main .more-btn a::after {
	position: absolute;
	top: 3px;
	right: 5px;
}

/* .pr-bnr */

#main .pr-bnr {
	margin-top: 50px;
	text-align: center;
	font-size: 0;
}
#main .pr-bnr .sqL,
#main .pr-bnr .sqR {
	display: inline-block;
}
#main .pr-bnr .sqL {
	margin-right: 20px;
}

/* clearfix */

#sub .pictures ul::after,
#main .link-list ul::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#sub .pictures ul,
#main .link-list ul {
	min-height: 1px;
}


/*==============================================
 #sub
============================================= */

#sub {
	float: right;
	width: 300px;
}
#sub section {
	margin-top: 20px;
}

/* h2 */

#sub h2 {
	padding-bottom: 15px;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}
#sub h2 a.i-rss {
	display: block;
	float: right;
	position: relative;
	width: 20px;
	height: 20px;
	margin-top: -4px;
	background-color: #ee9310;
	overflow: hidden;
  text-indent: 100%;
	border-radius: 3px;
	font-size: 0;
}
#sub h2 a.i-rss::before {
	position: absolute;
	top: 5px;
	left: 3px;
	text-indent: 0;
	color: #fff;
	font-size: 15px;
	font-size: 1.5rem;
}
#sub h2 a.i-rss:hover {
	border: none;
	background-color: #ffa92d;
}

/* .pr-bnr */

#sub .pr-bnr {
	min-height: 250px;
	font-size: 0;
}

/* .more */

#sub .more {
	margin-top: 10px;
	text-align: right;
	font-size: 13px;
	font-size: 1.3rem;
}
#sub .more a {
	color: #006cc7;
}
#sub .more a:hover {
	border-bottom: 1px solid #006cc7;
}

/* .pictures */

.pictures ul {
}
.pictures ul li {
	float: left;
	width: 100px;
	height: 100px;
}
.pictures ul li img {
	width: 100%;
	height: 100%;
}
.pictures ul li a:hover {
	opacity: 0.7;
}

/* .facebook */

#sub .facebook {
	margin-top: 20px;
}

/* .link-list */

#sub .link-list {
	margin-top: 20px;
}
#sub .link-list ul {
	padding-top: 5px;
	border-top: 1px solid #d8d8d8;
}
#sub .link-list ul li {
	margin-top: 15px;
}
#sub .link-list ul li a {
	color: #006cc7;
}
#sub .link-list ul li a:hover {
	text-decoration: underline;
}

/* clearfix */

#sub .pictures ul::after,
#main .link-list ul::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#sub .pictures ul,
#main .link-list ul {
	min-height: 1px;
}

/*==============================================
 .news-
============================================= */

.article {
	padding: 0;
}
.article li {
	font-size: 0;
}
.article li a {
	display: inline-block;
	width: 660px;
	margin: 0 10px;
	padding: 10px;
}
.article li a:hover {
	background-color: rgba(0,0,0,0.05);
}

/* .sec-thumb */

.sec-thumb {
	float: left;
	box-sizing: border-box;
}
.sec-thumb img {
	width: 100%;
	height: 100%;
}

/* .sec-content */

.sec-content {
	float: right;
}
.sec-content h3 {
	line-height: 1.6;
	color: #006cc7;
	font-size: 16px;
	font-size: 1.6rem;
}
.article li a:hover h3 {
	text-decoration: underline;
}
.sec-content .summary {
	line-height: 1.6;
	font-size: 12px;
	font-size: 1.2rem;
}

/* .data */

.sec-content .data {
	margin-top: 10px;
}
.sec-content .data .tag {
	display: inline-block;
	float: left;
	padding: 5px 10px 3px;
	border: 1px solid rgba(0,0,0,0.06);
	background-color: rgba(0,0,0,0.03);
	font-size: 11px;
	font-size: 1.1rem;
}
.sec-content .data .time {
	float: right;
	margin-top: 3px;
	color: #9b9b9b;
	font-size: 12px;
	font-size: 1.2rem;
}

/* clearfix */

.article::after,
.article li::after,
.sec-content .data::after{
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.article,
.article li,
.sec-content .data {
	min-height: 1px;
}

/* .article-middle
--------------------------------------------- */

/* .sec-thumb */

.article-middle .sec-thumb {
	width: 120px;
	height: 120px;
}

/* .sec-content */

.article-middle .sec-content {
	width: 520px;
}
.article-middle .sec-content .summary {
	margin-top: 5px;
}

/* .data */

.article-middle .sec-content .data {
	margin-top: 10px;
}

/* .article-small
--------------------------------------------- */

/* .sec-thumb */

.article-small .sec-thumb {
	width: 80px;
	height: 80px;
}

/* .sec-content */

.article-small .sec-content {
	width: 560px;
}
.article-small .sec-content .summary {
	margin-top: 5px;
}

/* .data */

.article-small .sec-content .data {
	margin-top: 5px;
}
.article-small .sec-content .data .time {
	float: left;
}
.article-small .sec-content .data .tag + .time {
	float: right;
}

/* .news-matome
--------------------------------------------- */

.news-matome {
	padding: 10px 0;
	font-size: 0;
}
.news-matome ul {
	overflow: hidden;
}
.news-matome li:not(:last-of-type) {
	margin-bottom: 10px;
}
.news-matome li a {
	display: block;
	overflow: hidden;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
}
.news-matome li a:hover {
	background-color: #f4f4f4;
	text-decoration: underline;
}
.news-matome li .thumb {
	float: left;
	max-width: 80px;
	max-height: 80px;
	margin: 0 auto;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #f1f1f1;
}
.news-matome li a:hover .thumb {
	border-right: 1px solid #ddd;
}
.news-matome li .thumb img {
	width: 100%;
	height: 100%;
}
.news-matome li p {
	display: table-cell;
	line-height: 1.6;
	width: 179px;
	height: 80px;
	font-size: 13px;
	font-weight: bold;
	vertical-align: middle;
}

/*==============================================
 .news-focus
============================================= */

#main .news-focus {
	background: none;
}
.news-focus .article {
	display: flex;
	flex-wrap: wrap;
}
.news-focus .article li {
	display: flex;
	float: left;
	width: 226px;
	margin-top: 11px;
	margin-right: 11px;
	background-color: #fff;
}
.news-focus .article li:nth-of-type(-n + 3) {
	margin-top: 0;
}
.news-focus .article li:nth-of-type(3n) {
	margin-right: 0;
}
.news-focus .article li a {
	width: 226px;
	margin: 0;
	padding: 0;
	background-color: #fff;
}
.news-focus .article h3 {
	line-height: 1.6;
	width: 226px;
	min-height: 93px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 13px;
	font-weight: bold;
}
.news-focus .sec-thumb {
	float: none;
  position: relative;
  width: 100%;/*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
  padding-top: 65%;/*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
  overflow: hidden;/*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
  margin: 0 auto;
}
.news-focus .sec-thumb img {
/* 画像を上下左右に中央配置する（絶対指定） */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* 画像の最大サイズは枠の1.5倍まで */
	width: auto;
	height: auto;
  width: 100%;
	transition: width .2s;
}
.news-focus a:hover .sec-thumb img {
  width: 110%;
}

/*==============================================
 .category-select
============================================= */

.category-select {
    display: flex;
    justify-content: space-between;
}
.category-select label {
    position: relative;
}
.category-select label::before,
.category-select label::after {
    position: absolute;
    content: '';
    pointer-events: none;
}
.category-select label::before {
    right: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 0 3px 3px 0;
    background-color: #006cc7;
    content: '';
}
.category-select label::after {
    position: absolute;
    top: 18px;
    right: 20px;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}
.category-select label select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 340px;
	height: 40px;
    padding-left: 10px;
    border: 1px solid #d8d8d8;
    background-color: #fff;
    border-radius: 3px;
    color: #333;
    font-size: 13px;
	font-size: 1.3rem;
    box-sizing: border-box;
    cursor: pointer;
}
.category-select label select:focus {
    border: 1px solid #006cc7;
}

/*==============================================
 .news-sale
============================================= */

#main .news-sale {
    margin-top: 30px;
	background: none;
}
.news-sale .article {
	display: flex;
	flex-wrap: wrap;
}
.news-sale .article::after {
    display: none;
}
.news-sale .article li {
	display: flex;
	float: left;
	width: 226px;
    margin-right: 11px;
	background-color: #fff;
    box-sizing: border-box;
}
.news-sale .article li:nth-of-type(3n) {
    margin-right: 0 !important;
}
.news-sale .article li:nth-of-type(n+4) {
    margin-top: 10px;
}
.news-sale .article li a {
    position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}
.news-sale .article .category {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 8px 10px;
    background-color: #ee9310;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}
.news-sale .sec-thumb {
	float: none;
    position: relative;
    width: 100%;/*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
    padding-top: 65%;/*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
    overflow: hidden;/*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
    margin: 0 auto;
}
.news-sale .sec-thumb img {
    /* 画像を上下左右に中央配置する（絶対指定） */
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* 画像の最大サイズは枠の1.5倍まで */
    width: auto;
    height: auto;
    width: 100%;
    transition: width .2s;
}
.news-sale a:hover .sec-thumb img {
  width: 110%;
}
.news-sale .sec-txt {
    width: 100%;
    min-height: 93px;
    padding: 20px;
    box-sizing: border-box;
}
.news-sale .sec-txt h3 {
    min-height: calc( 1.6em * 3 );
	line-height: 1.6;
	font-size: 13px;
	font-weight: bold;
}
.news-sale .sec-txt h4,
.news-sale .sec-txt p {
    line-height: 1.6;
    color: #888;
}
.news-sale .sec-txt h4 {
    position: relative;
    margin-top: 10px;
    padding: 12px 0 0 18px;
    border-top: 1px solid #d8d8d8;
	font-size: 11px;
	font-weight: bold;
}
.news-sale .sec-txt h4::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 12px;
    height: 12px;
    background: url(https://img1.kakaku.k-img.com/images/news/icon_date.svg) no-repeat 0 0;
}
.news-sale .sec-txt p {
    margin-top: 2px;
	font-size: 11px;
}
#main .more-btn.sale {
    margin-top: 40px;
}
#main .more-btn.sale a {
	width: 360px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #006cc7;
    background: none;
    color: #006cc7;
    font-weight: bold;
    box-sizing: border-box;
}
#main .more-btn.sale a:hover {
    background-color: #dce5ed;
}
.news-sale .cp-none {
    padding: 100px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
}

/* .top
--------------------------------------------- */

#main .news-sale.top {
    padding-top: 20px;
    padding-bottom: 30px;
	background: #fff;
}
#main .news-sale.top h2 {
    padding-top: 0;
}
.news-sale.top .article {
    margin: 20px;
}
.news-sale.top .article li {
	width: 213px;
    margin-right: 10px;
    border: 1px solid #d8d8d8;
}
.news-sale.top .sec-txt {
    padding: 15px;
}
#main .news-sale.top .more-btn {
    margin-top: 0;
    padding-bottom: 0;
}
#main .news-sale.top .more-btn a {
	width: 400px;
}

/*==============================================
 .news-new
============================================= */

.news-new {
	padding-bottom: 10px;
}

/* .date
--------------------------------------------- */

.news-new .date {
	display: block;
	position: relative;
	margin: 20px 20px 15px;
	padding: 6px 10px;
	background-color: #e6e6e6;
	color: #565656;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	box-sizing: border-box;
}
/*.news-new .date::before {
	display: block;
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 90px;
	height: 1px;
	background-color: #006cc7;
}*/
.news-new .article + .date {
	margin-top: 15px;
}

/*==============================================
 .keyword
============================================= */

.search-keyword {
	margin: 30px 0;
}
.search-keyword h3 {
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
}
.search-keyword h3::before {
	margin-top: 0;
	margin-right: 0.5em;
	font-size: 17px;
}
.keyword {
	overflow: hidden;
	margin-top: 10px;
}
.keyword li {
	float: left;
	margin-top: 5px;
	margin-right: 5px;
}
.keyword li a {
	display: inline-block;
	padding: 8px 20px;
	background-color: #a7baca;
	border-radius: 20px;
	color: #fff;
	font-size: 11px;
	font-size: 1.1rem;
}
.keyword li a:hover {
	background-color: #8aa9c3;
}

/* clearfix */

.keyword ul::after{
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.keyword ul {
	min-height: 1px;
}

/*==============================================
 .genre
============================================= */

.genre {
    margin-top: 30px !important;
}
.genre ul {
    padding: 15px;
    background-color: #fff;
}
.genre ul li + li {
    margin-top: 10px;
}
.genre ul li a {
    display: block;
    line-height: 1.6;
    color: #006cc7;
    font-size: 14px;
    font-size: 1.4rem;
}
.genre ul li a:hover {
	text-decoration: underline;
}

/*==============================================
 .ranking-
============================================= */

[class^="ranking-"] .article,
[class*=" ranking-"] .article {
	padding-top: 10px;
	border-top: 1px solid #d8d8d8;
}

/* .ranking-access
--------------------------------------------- */

.ranking-access {
}

/* .article-access
--------------------------------------------- */

li.article-access a {
	position: relative;
	width: 300px;
	margin: 0 -10px;
	padding: 10px;
}
li.article-access a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 10px;
    width: 26px;
	height: 30px;
    background: url(https://img1.kakaku.k-img.com/images/news/ribbon_blue.svg) no-repeat center top;
}
li.article-access:nth-of-type(-n+3) a::before {
    background: url(https://img1.kakaku.k-img.com/images/news/ribbon_orange.svg) no-repeat center top;
}
/*
li.article-access a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 10px;
	height: 25px;
	width: 0px;
	border-left: 13px solid #006CC7;
	border-right: 13px solid #006CC7;
	border-bottom: 5px solid transparent;
}
li.article-access:nth-of-type(-n+3) a::before {
	border-left-color: #ee9310;
	border-right-color: #ee9310;
}
*/
li.article-access a::after {
	content: "1";
	position: absolute;
	top: 6px;
	left: 19px;
	color: #fff;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}
li.article-access:nth-of-type(2) a::after {
	content: "2";
}
li.article-access:nth-of-type(3) a::after {
	content: "3";
}
li.article-access:nth-of-type(4) a::after {
	content: "4";
}
li.article-access:nth-of-type(5) a::after {
	content: "5";
}
li.article-access:nth-of-type(6) a::after {
	content: "6";
}
li.article-access:nth-of-type(7) a::after {
	content: "7";
}
li.article-access:nth-of-type(8) a::after {
	content: "8";
}
li.article-access:nth-of-type(9) a::after {
	content: "9";
}
li.article-access:nth-of-type(10) a::after {
	content: "10";
	left: 15px;
}

/* .sec-thumb */

.article-access .sec-thumb {
	width: 80px;
	height: 80px;
	border: none;
}

/* .sec-content */

.article-access .sec-content {
	width: 205px;
}
.article-access .sec-content h3 {
	font-size: 12px;
	font-size: 1.2rem;
}

/* .data */

.article-access .sec-content .data {
	margin-top: 5px;
}
.article-access .sec-content .data .tag {
	float: none;
	padding: 4px 5px 2px;
	font-size: 10px;
	font-size: 1.0rem;
}
_::-webkit-full-page-media, _:future, :root .article-access .sec-content .data .tag {/* safari */
     padding: 3px 5px;
}
.article-access .sec-content .data .time {
	float: none;
	margin-top: 8px;
	font-size: 10px;
	font-size: 1.0rem;
}

/* .article-category
--------------------------------------------- */

li.article-category a {
	position: relative;
	width: 300px;
	margin: 0 -10px;
	padding: 10px;
}

/* .sec-thumb */

.article-category .sec-thumb {
	width: 60px;
	height: 60px;
	border: none;
}

/* .sec-content */

.article-category .sec-content h3 {
	font-size: 12px;
	font-size: 1.2rem;
}
.article-category .sec-content {
	width: 225px;
}

/* .data */

.article-category .sec-content .data {
	margin-top: 5px;
}
.article-category .sec-content .data .time {
	float: none;
	font-size: 10px;
	font-size: 1.0rem;
}

/* .article-prdnews
--------------------------------------------- */

li.article-prdnews a {
	position: relative;
	width: 300px;
	margin: 0 -10px;
	padding: 10px;
}

/* .sec-thumb */

.article-prdnews .sec-thumb {
	width: 60px;
	height: 60px;
	border: none;
}

/* .sec-content */

.article-prdnews .sec-content h3 {
	font-size: 12px;
	font-size: 1.2rem;
}
.article-prdnews .sec-content {
	width: 225px;
}

/* .data */

.article-prdnews .sec-content .data {
	margin-top: 5px;
}
.article-prdnews .sec-content .data .tag {
	float: none;
	padding: 4px 5px 2px;
	font-size: 10px;
	font-size: 1.0rem;
}
_::-webkit-full-page-media, _:future, :root .article-prdnews .sec-content .data .tag {/* safari */
     padding: 3px 5px;
}
.article-prdnews .sec-content .data .time {
	float: none;
	font-size: 10px;
	font-size: 1.0rem;
}
.article-prdnews .sec-content .data .tag + .time {
	margin-top: 8px;
}

/* small-category
--------------------------------------------- */

.small-category {
	border-top: 1px solid #d8d8d8;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
}
#sub .small-category h2 {
	line-height: 40px;
	padding: 0 0 0 20px;
	border-bottom: 1px solid #d8d8d8;
	background-color: #f6f6f6;
	font-size: 12px;
	font-size: 1.2rem;
}
#sub .small-category ul {
	padding: 15px 0;
	border-bottom: 1px solid #d8d8d8;
}
#sub .small-category a {
	display: inline-block;
	line-height: 30px;
	padding-left: 20px;
	padding-right: 15px;
	color: #006cc7;
}
#sub .small-category a:hover {
	text-decoration: underline;
}

/* magazine & akiba
--------------------------------------------- */

li.article-exception a {
	position: relative;
	width: 300px;
	margin: 0 -10px;
	padding: 7px 10px;
}

/* .sec-thumb */

.article-exception .sec-thumb {
	width: 60px;
	height: 60px;
	border: none;
	text-align: center;
}
.article-exception .sec-thumb img {
	position: relative;
  top: 50%;
	width: auto;
	height: auto;
	max-width: 60px;
	max-height: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* .sec-content */

.article-exception .sec-content h3 {
	font-size: 12px;
	font-size: 1.2rem;
}
.article-exception .sec-content {
	width: 225px;
}

/* .season-anime */

.season-anime {
	margin-top: 10px;
	border: 1px solid #d8d8d8;
}
.season-anime dt {
	line-height: 40px;
	padding-left: 15px;
	background-color: #f6f6f6;
	border-bottom: 1px solid #d8d8d8;
	box-sizing: border-box;
}
.season-anime dd {
	float: left;
	width: 25%;
	border-right: 1px solid #d8d8d8;
	box-sizing: border-box;
}
.season-anime dd:last-of-type {
	border: none;
}
.season-anime dd a {
	display: block;
	line-height: 50px;
	text-align: center;
	color: #006cc7;
}
.season-anime dd a:hover {
	text-decoration: underline;
	background-color: rgba(0,0,0,0.04);
}

/* clearfix */

.season-anime::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.season-anime {
	min-height: 1px;
}

/*==============================================
 .news
============================================= */

.news {
    position: relative;
	padding: 20px 0;
}
.news > .time {
    position: absolute;
    top: 27px;
    right: 20px;
	color: #9b9b9b;
}
.news > .maker {
    position: absolute;
    top: 27px;
    left: 20px;
    color: #9b9b9b;
    font-size: 1.2rem;
}
.news > .maker a {
    color: #333;
    font-weight: bold;
}
/*.news > .maker::before {
	content: "メーカー：";
}*/
.news > .maker-btn {
    top: 20px; 
}
.news > .maker-btn::before {
	content: "";
}
.news > .maker-btn a {
    display: block;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #a7baca;
    color: #fff;
}
.news > .maker-btn a:hover {
    background-color: #8aa9c3;
    text-decoration: none;
}
#main .news h1 {
	line-height: 1.5;
	padding: 40px 20px 0;
	font-size: 32px;
	font-size: 3.2rem;
	font-weight: normal;
}
#main .news h2 {
	margin: 20px 20px 10px;
	padding: 10px 0 10px 15px;
	/*border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;*/
	border-left: 2px solid #006cc7;
	font-size: 13px;
	font-size: 1.3rem;
}
#main .news h2.kakaku,
#main .news h2.related {
	padding: 0;
	border-left: none;
	font-size: 16px;
	font-size: 1.6rem;
}
#main .item-view + h2,
#main .item-view-standard + h2,
#main .item-view-kuruma + h2 {
	margin-top: 60px;
}
#main .article-related + h2 {
    margin-top: 40px;
}
#main .multiple-items + h2 {
	margin-top: 60px;
}
#main .link-list-news + h2 {
	margin-top: 30px;
}
.news > p:not([class]) {
	line-height: 2;
	margin: 40px 20px 0;
	font-size: 16px;
	font-size: 1.6rem;
}
.news > p.alignR.mTop15 {
	line-height: 2;
	margin: 15px 20px 0;
	font-size: 16px;
	font-size: 1.6rem;
}
.news p a {
	color: #006cc7;
}
.news p a:hover {
	text-decoration: underline;
}

/* .image-cover */

.news .image-cover {
	display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
	width: 400px;
	height: 400px;
	margin: 60px auto 0;
	border: 1px solid #d8d8d8;
	box-sizing: border-box;
}
.news .image-cover:hover {
	opacity: 0.7;
}
.news .image-cover img {
	max-width: 400px;
	max-height: 400px;
	vertical-align: middle;
}

/* .provide */

.provide {
	margin-top: 40px;
	margin-right: 20px;
	text-align: right;
}
.provide figcaption {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}
.provide.response figcaption {
	margin-top: 0;
	font-size: 12px;
	font-size: 1.2rem;
}
.provide p {
	line-height: 1.6;
	margin-top: 5px;
	font-size: 11px;
	font-size: 1.1rem;
}
.provide p + p {
	margin-top: 10px;
}

/*==============================================

 .item-view
============================================= */

.item-view {
	margin: 60px 20px 0;
}
h2 + .item-view,
.item-view + .item-view {
	margin-top: 20px;
}
.item-view a {
	display: block;
	position: relative;
	padding: 15px 40px 15px 15px;
	border: 1px solid #d8d8d8;
	box-sizing: border-box;
}
.item-view a::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	height: 24px;
	margin: auto 0 !important;
	color: #006cc7;
	font-size: 26px !important;
	content: "\e002";
}
.item-view a:hover {
	border: 1px solid #006cc7;
	background-color: rgba(0,108,199,0.04);
}
.item-view .sec-thumb {
	overflow: hidden;
	display: table-cell;
	float: left;
	position: relative;
	width: 100px;
	height: 100px;
	font-size: 0;
}
.item-view .sec-thumb img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	margin: auto;
}
.item-view .sec-content {
	float: right;
	width: 485px;
}
.item-view .sec-content .maker {
	font-size: 11px;
	font-size: 1.1rem;
}
.item-view .sec-content h3 {
	margin-top: 5px;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}
.item-view a:hover .sec-content h3 {
	text-decoration: underline;
}
.item-view .sec-content .price {
	margin-top: 5px;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
}
.item-view .sec-content .price span {
	margin-left: 0.5em;
	margin-right: 1em;
	color: #ca0101;
	font-size: 20px;
	font-size: 2.0rem;
}
.item-view .sec-content .txt {
	line-height: 1.6;
	margin-top: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}

/* clearfix */

.item-view a::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.item-view a {
	min-height: 1px;
}

/*==============================================
 .item-view-standard
============================================= */

.item-view-standard {
    position: relative;
	margin: 20px 20px 0;
	padding: 20px 20px;
    border: 1px solid #bccedc;
    background-color: #f5f9fd;
    border-radius: 3px;
    box-sizing: border-box;
    transition: all .1s;
}
.item-view-standard:hover {
    border: 1px solid #006cc7;
    background-color: #f5f9fd;
}
.item-view-standard + .item-view-standard {
    margin-top: 20px;
}
.slick-slider + .item-view-standard {
    margin-top: 60px;
}
.item-view-standard > a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.item-view-standard .sec-product {
    display: flex;
    justify-content: space-between;
}
.item-view-standard .sec-product .thumb {
	overflow: hidden;
	position: relative;
	width: 100px;
	height: 100px;
    background-color: #fff;
	font-size: 0;
}
.item-view-standard .sec-product .thumb img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	margin: auto;
}
.item-view-standard .sec-product .name {
	width: calc(100% - 120px);
}
.item-view-standard .sec-product .name .maker {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}
#main .item-view-standard .sec-product .name h2 {
    line-height: 1.3;
    margin: 5px 0 0;
    padding: 0;
    border: none;
    color: #006cc7;
    font-size: 24px;
    font-size: 2.4rem;
}
#main .item-view-standard:hover .sec-product .name h2 {
    text-decoration: underline;
}
.item-view-standard .sec-product .name .price {
	margin-top: 7px;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}
.item-view-standard .sec-product .name .price span {
	margin-left: 0.5em;
	margin-right: 1em;
	color: #ca0101;
	font-size: 20px;
	font-size: 2.0rem;
}
.item-view-standard .sec-product .name .txt {
	line-height: 1.5;
	margin-top: 7px;
	font-size: 15px;
	font-size: 1.5rem;
}

/* btn */

.item-view-standard .box {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.item-view-standard .kakaku-btn,

.item-view-standard .spec-btn,
.item-view-standard .void {
    width: 300px;
}
.item-view-standard .full {
    width: 100%;
}
.item-view-standard .kakaku-btn,
.item-view-standard .spec-btn,
.item-view-standard .void {
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}
.item-view-standard .kakaku-btn a,
.item-view-standard .spec-btn a,
.item-view-standard .void {
    display: block;
    position: relative;
    width: 100%;
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
}
.item-view-standard .kakaku-btn::before {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition: all 0.1s;
    background:linear-gradient(#0081ed,#0067be);
}
.item-view-standard .kakaku-btn::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background:linear-gradient(#008aff,#008aff);
}
.item-view-standard .kakaku-btn:hover::before{
    opacity:0;
}
.item-view-standard .kakaku-btn a::before,
.item-view-standard .spec-btn a::before {
    position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
    line-height: 1em;
    height: 1em;
	margin: auto 0;
	color: #fff;
    font-weight: normal;
	font-size: 18px;
    font-size: 1.8rem;
	content: "\e002";

}

.item-view-standard .spec-btn::before {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition: all 0.1s;
    background:linear-gradient(#ffa31d,#eb8b00);
}
.item-view-standard .spec-btn::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background:linear-gradient(#ffaa30,#ffaa30);
}
.item-view-standard .spec-btn:hover::before{
    opacity:0;
}
.item-view-standard .void {
    width: 300px;
    background-color: #cccccc;
}
.item-view-standard .void::before,
.item-view-standard .void::after {
    display: none;
}

/*==============================================
 .item-view-kuruma
============================================= */

.item-view-kuruma {
    position: relative;
	margin: 20px 20px 0;
	padding: 20px 20px;
    border: 1px solid #bccedc;
    background-color: #f5f9fd;
    border-radius: 3px;
    box-sizing: border-box;
    transition: all .1s;
}
.item-view-kuruma:hover {
    border: 1px solid #006cc7;
    background-color: #f5f9fd;
}
.item-view-kuruma + .item-view-kuruma {
    margin-top: 20px;
}
.slick-slider + .item-view-kuruma {
    margin-top: 60px;
}
.item-view-kuruma > a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.item-view-kuruma .sec-product {
    display: flex;
    justify-content: space-between;
}
.item-view-kuruma .sec-product .thumb {
	overflow: hidden;
	position: relative;
	width: 100px;
	height: 100px;
    background-color: #fff;
	font-size: 0;
}
.item-view-kuruma .sec-product .thumb img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	margin: auto;
}
.item-view-kuruma .sec-product .name {
	width: calc(100% - 120px);
}
.item-view-kuruma .sec-product .name .maker {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}
#main .item-view-kuruma .sec-product .name h2 {
    line-height: 1.3;
    margin: 5px 0 0;
    padding: 0;
    border: none;
    color: #006cc7;
    font-size: 24px;
    font-size: 2.4rem;
}
#main .item-view-kuruma:hover .sec-product .name h2 {
    text-decoration: underline;
}
.item-view-kuruma .data {
    line-height: 1.5;
    margin-top: 5px;
    padding: 0;
    border: none;
    font-size: 15px;
    font-size: 1.5rem;
}
.item-view-kuruma .data span {
    color: #ca0101;
}
.item-view-kuruma .data span.bold {
    font-weight: bold;
}

/* btn */

.item-view-kuruma .box {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.item-view-kuruma .kakaku-btn,
.item-view-kuruma .maker-btn,
.item-view-kuruma .used-btn,
.item-view-kuruma .void {
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}
.item-view-kuruma .kakaku-btn a,
.item-view-kuruma .maker-btn a,
.item-view-kuruma .used-btn a,
.item-view-kuruma .void {
    display: block;
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
}
.item-view-kuruma .kakaku-btn {
    width: 290px;
}
.item-view-kuruma .kakaku-btn::before {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition: all 0.1s;
    background:linear-gradient(#0081ed,#0067be);
}
.item-view-kuruma .kakaku-btn::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background:linear-gradient(#008aff,#008aff);
}
.item-view-kuruma .kakaku-btn:hover::before{
  opacity:0;
}

.item-view-kuruma .kakaku-btn a {
    position: relative;
    line-height: 45px;
}
.item-view-kuruma .kakaku-btn a::before,
.item-view-kuruma .maker-btn a::before,
.item-view-kuruma .used-btn a::before {
    position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
    line-height: 1em;
    height: 1em;
	margin: auto 0 !important;
	color: #fff;
    font-weight: normal;
	font-size: 18px !important;
    font-size: 1.8rem !important;
	content: "\e002";
}
.item-view-kuruma .maker-btn,
.item-view-kuruma .used-btn {
    width: 150px;
    margin-left: 15px;
}
.item-view-kuruma .maker-btn::before {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition: all 0.1s;
    background:linear-gradient(#40cc64,#36a954);
}
.item-view-kuruma .maker-btn::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background:linear-gradient(#44d86a,#44d86a);
}
.item-view-kuruma .maker-btn:hover::before{
    opacity:0;
}
.item-view-kuruma .maker-btn a,
.item-view-kuruma .maker-btn.void {
    padding-top: 8px;
}
.item-view-kuruma .used-btn a,
.item-view-kuruma .used-btn.void {
    line-height: 45px;
}
.item-view-kuruma .maker-btn a {
    position: relative;
}
.item-view-kuruma .used-btn::before {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition: all 0.1s;
    background:linear-gradient(#ffa31d,#eb8b00);
}
.item-view-kuruma .used-btn::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background:linear-gradient(#ffaa30,#ffaa30);
}
.item-view-kuruma .used-btn:hover::before{
  opacity:0;
}
.item-view-kuruma .used-btn a {
    position: relative;
}
.item-view-kuruma .maker-btn span,
.item-view-kuruma .used-btn span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: normal;
}
.item-view-kuruma .void {
    background-color: #cccccc;
}
.item-view-kuruma .void::before,
.item-view-kuruma .void::after {
    display: none;
}

/*==============================================
 .article-related
============================================= */
#main h2.related {
    margin-top: 40px;
}
#main .maker + h2.related {
    margin-top: 20px;
}
.article-related li {
    margin: 20px 20px 0;
}
.article-related li h3 {
    line-height: 1.6;
    padding: 15px 20px;
    background-color: #ee9310;
    border-radius: 3px 3px 0 0;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}
.article-related li a .content-box {

    display: flex;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-top: none;
    border-radius: 0 0 3px 3px;
    transition: .2s;
}
.article-related li a:hover .content-box {
    border-color: #ee9310;
    background-color: #fffaf2;
}
.article-related li .content-box .thumb {
    overflow: hidden;
	position: relative;
	width: 80px;
	height: 80px;
    background-color: #fff;
	font-size: 0;
}
.article-related li .content-box .thumb img {
    position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	margin: auto;
}
.article-related li .content-box .content {
    width: calc(100% - 100px);
}
.article-related li .content-box .content h4 {
    line-height: 1.6;
    color: #006cc7;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}
.article-related li a:hover .content-box .content h4 {
    text-decoration: underline;
}
.article-related li .content-box .content .summary {
    margin-top: 5px;
    line-height: 1.6;
    font-size: 12px;
    font-size: 1.2rem;
}

/*==============================================
 .sns
============================================= */

.sns {
	display: flex;
    height: 40px;
	margin: 30px 20px 0;
	overflow: hidden;
}
.sns li {
    width: 134px;
	margin-right: 8px;
}
.sns li a {
    display: block;
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 3px;
}
.sns li.twitter a {
    background-color: #1da1f2;
}
.sns li.line a {
    background-color: #2cbf13;
}
.sns li.hatena a {
    background-color: #00a4de;
}
.sns li.facebook a {
    background-color: #3b5999;
}
.sns li.facebook-like {
    width: 92px;
    margin-right: 0;
}

/*==============================================
 .link-list
============================================= */

#main .link-list ul {
	padding: 20px 20px 0;
}
#main .link-list ul + ul {
	padding-top: 10px;
}
#main .link-list ul:last-of-type {
	padding-bottom: 20px;
}
#main .link-list ul li {
	float: left;
	font-size: 13px;
	font-size: 1.3rem;
}
#main .link-list ul li::after {
	content: '|';
	margin: 0 1em;
	color: #d8d8d8;
}
#main .link-list ul li:last-of-type::after {
	content: '';
}
#main .link-list ul li a {
	line-height: 1.8;
	color: #006cc7;
}
#main .link-list ul li a:hover {
	text-decoration: underline;
}

/* clearfix */

#main .link-list ul::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#main .link-list ul {
	min-height: 1px;
}

/*==============================================
 .link-list-news
============================================= */

#main .link-list-news {
    margin: 20px 20px 0;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    /*background-color: rgba(0,0,0,0.05);*/
}
#main .link-list-news h2 {
    margin: 0;
    padding: 0;
    border-left: none;
}
#main .item-view-standard + .link-list-news {
    margin-top: 20px;
}
.link-list-news ul {
    margin-top: 10px;
}
.link-list-news ul li {
	float: left;
	font-size: 13px;
	font-size: 1.3rem;
}
.link-list-news ul li::after {
	content: '|';
	margin: 0 1em;
	color: #d8d8d8;
}
.link-list-news ul li:last-of-type::after {
	content: '';
}
.link-list-news ul li a {
	line-height: 1.8;
	color: #006cc7;
}
.link-list-news ul li a:hover {
	text-decoration: underline;
}

/* clearfix */

.link-list-news::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.link-list-news {
	min-height: 1px;
}

/*==============================================
 .adsense
============================================= */

.adsense .container {
	padding: 20px;
}

/*==============================================
 .search-results
============================================= */

.search-results {
	padding-bottom: 10px;
}
.search-results h1 {
	padding: 20px 20px 0;
	font-size: 16px;
	font-size: 1.6rem;
	font-size: 16px\9;/* IE -9 */
	font-weight: bold;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {/* IE 11-10 */
  .search-results h1:not(:target) {
    font-size: 16px;
  }
}
.search-results form {
	margin: 20px;
	padding: 50px 0;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
	font-size: 0;
}
.search-results form input.search-text {
	width: 560px;
	height: 40px;
}
@media screen and (-webkit-min-device-pixel-ratio:0){/* Chrome */
	.search-results form input.search-text {
		margin-top: -1px;
	}
}
.search-results form input.search-submit {
	width: 100px;
	height: 40px;
	font-size: 16px;
	font-size: 1.6rem
}

/* .category-box */

.category-box {
	margin-top: 30px;
}
.category-box label {
	display: inline-block;
	margin-left: 15px;
	font-size: 14px;
	font-size: 1.4rem;
}
.category-box label:first-of-type {
	margin-left: 0;
}
.category-box label:hover {
	cursor: pointer;
}
.category-box label .radio {
  display: none;
}
.category-box label .radio + .radio-icon {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	margin: 0 6px -3px 0;
	border-radius: 50%;
	border: 1px solid #d0d0d0;
	box-sizing: border-box;
}
.category-box label:hover .radio:not(:checked) + .radio-icon {
	border-color: #72acdc;
}
.category-box label .radio:checked + .radio-icon:before {
  display: block;
  content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #006cc7;
}

/* .hit */


.hit {
	margin: 20px 20px 30px;
}
.hit span {
	font-weight: bold;
}

/* .hit-zero */

.hit-zero {
	margin: 80px 20px 40px;
}
.hit-zero p {
	text-align: center;
}
.hit-zero p span {
	font-weight: bold;
}
.hit-zero p.not {
	font-size: 22px;
	font-size: 2.2rem;
}
.hit-zero p.cat {
	margin-top: 30px;
	font-size: 18px;
	font-size: 1.8rem;
}
.hit-zero ul {
	margin-top: 80px;
}
.hit-zero li {
	margin-top: 10px;
	font-size: 14px;
	font-size: 1.4rem;
}
.hit-zero li:before {
	content: "・";
}

/*==============================================
 .pager
============================================= */

.pager {
	margin-top: 40px;
	text-align: center;
	font-size: 0;
}
.pager li {
	display: inline-block;
	line-height: 50px;
	width: 50px;
	height: 50px;
	border: 1px solid #d8d8d8;
	border-right: none;
	color: #9b9b9b;
	font-size: 14px;
	font-size: 1.4rem;
	vertical-align: top;
}
.pager li a {
	display: block;
	background-color: #fff;
	box-sizing: border-box;
}
.pager li a:hover {
	background-color: #f5f5f5;
}
.pager li:first-of-type,
.pager li:first-of-type a {
	width: 119px;
}
.pager li:last-of-type,
.pager li:last-of-type a {
	width: 119px;
}
.pager li:first-of-type {
	text-align: left;
}
.pager li:last-of-type {
	text-align: right;
	border-right: 1px solid #d8d8d8;
}
.pager li.now a {
	background-color: #333;
	color: #fff;
}
.pager li span {
	font-size: 0.9em;
}
.pager li:first-of-type span {
	margin-left: 10px;
}
.pager li:last-of-type span {
	margin-right: 10px;
}

/*==============================================
 SLICK
============================================= */

.multiple-items {
	display: none;
	width: 660px;
	margin: 60px auto 30px;
}

.slick-list {
	padding: 0 50px !important;
}
.slick-list::before,
.slick-list::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	width: 60px;
	height: 120px;
	background: rgba(255,255,255,0.50);
	z-index: 1;
}
.slick-list::before {
	left: 0;
}
.slick-list::after {
	right: 0;
}

/* .slick-slide */

.slick-slide {
	outline: none;
}
.slick-slide:hover {
	opacity: 0.7;
}
.slick-slide img {
	max-width: 120px;
	max-height: 120px;
	margin: 0 auto;
	border: 2px solid #fff;
	box-sizing: border-box;
}
.slick-prev,
.slick-next {
	width: 30px !important;
	height: 30px !important;
	background-color: #006cc7 !important;
	border-radius: 3px;
	z-index: 2;
	font-size: 14px !important;
}
.slick-prev:hover,
.slick-next:hover {
	background-color: #008aff !important;
}
.slick-prev::before,
.slick-next::before {
	line-height: 1;
	margin-top: -0.1em !important;
	margin-right: 0 !important;
	color: #fff;
}
.slick-prev::before {
	content: '\e001' !important;
}
.slick-next::before {
	content: '\e002' !important;
}
.slick-prev {
    left: 20px !important;
}
.slick-next {
    right: 20px !important;
}

/* .slick-dots */

.slick-dots {
	position: absolute;
	bottom: -35px;
	width: 100%;
	text-align: center;
}
.slick-dots li {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.slick-dots li button {
	position: relative;
	width: 24px;
	height: 24px;
	text-indent: -999rem;
	font-size: 0;
	cursor: pointer;
}
.slick-dots li button::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 8px;
	height: 8px;
	margin: auto;
	background-color: #d8d8d8;
	border-radius: 50%;
}
.slick-dots li button:hover::before {
	background-color: #c6c6c6;
}
.slick-dots li.slick-active button::before,
.slick-dots li.slick-active button:hover::before {
	background-color: #006cc7;
}

/*==============================================
 SLIMBOX
============================================= */

.swiper-container {
    width: 100%;
    height: 100%;
    margin-top: 60px !important;
    padding-bottom: 25px !important;
    opacity: 0;
    transition-delay: .2s;
}
.swiper-container.swiper-container-horizontal {
    opacity: 1;
}
.swiper-container + p {
    margin-top: 40px !important;
}
.swiper-wrapper {
    height: 450px;
}
.swiper-slide {
    width: 450px!important;
    margin: 0 25px;
    transition: opacity .2s;
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img {
    width: 100%;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.3;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0 !important;
    width: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next,
.swiper-container-focus .swiper-button-prev,
.swiper-container-focus .swiper-button-next {
	width: 40px !important;
	height: 70px !important;
}
.swiper-container .swiper-button-prev,
.swiper-container-focus .swiper-button-prev {
    top: 45% !important;
	left: 0 !important;
	background: rgba(0,108,199,0.90) url('https://img1.kakaku.k-img.com/images/news/swiper_button_prev.png') no-repeat 0 0;
	background-size: 40px 70px !important;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    transition: background-color .1s;
}
.swiper-container .swiper-button-next,
.swiper-container-focus .swiper-button-next {
    top: 45% !important;
	right: 0 !important;
	background: rgba(0,108,199,0.90) url('https://img1.kakaku.k-img.com/images/news/swiper_button_next.png') no-repeat 0 0;
	background-size: 40px 70px !important;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    transition: background-color .1s;
}
.swiper-container .swiper-button-prev:hover,
.swiper-container-focus .swiper-button-prev:hover,
.swiper-container .swiper-button-next:hover,
.swiper-container-focus .swiper-button-next:hover {
    background-color: rgba(0,138,255,0.90);
}

/* check */

.swiper-container.check .swiper-button-prev,
.swiper-container.check .swiper-button-next {
    display: none;
}

/*==============================================
 SLIMBOX
============================================= */

#lbOverlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	cursor: pointer;
}
#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	/*overflow: hidden;*/
	background-color: #fff;
}
.lbLoading {
	background: #fff url(https://img1.kakaku.k-img.com/images/news/loader.gif) no-repeat center;
}
#lbImage {
	position: absolute;
	left: 0;
	top: 0;
	border: 10px solid #fff;
	background-repeat: no-repeat;
	background-position: center center;
}
#lbPrevLink,
#lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	height: 60px !important;
	margin: auto;
	background-color: #006cc7;
	border-radius: 3px;
}
#lbPrevLink:hover,
#lbNextLink:hover {
	background-color: #008aff;
}
#lbPrevLink::before,
#lbNextLink::before {
	display: block;
	width: 60px;
	height: 60px;
	color: #fff;
	line-height: 60px;
	text-align: center;
	font-size: 13px;
	font-size: 1.3rem;
}
#lbPrevLink::after,
#lbNextLink::after {
	position: absolute;
	top: 38%;
	color: #fff;
	font-size: 16px !important;
	margin: 0 !important;
}
#lbPrevLink {
	left: -90px;
}
#lbPrevLink::before {
	content: '前へ';
	text-indent: 10px;
}
#lbPrevLink::after {
	content: "\e001";
	left: 5px;
}
#lbNextLink {
	right: -90px;
}
#lbNextLink::before {
	content: '次へ';
	text-indent: -10px;
}
#lbNextLink::after {
	content: "\e002";
	right: 5px;
}
#lbBottom {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 11px;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	border: 10px solid #fff;
	border-top-style: none;
}
#lbCloseLink {
	display: block;
	float: right;
	width: 26px;
	height: 26px;
	background: transparent url(https://img1.kakaku.k-img.com/images/news/closelabel.png) no-repeat center;
	outline: none;
}
#lbCloseLink:hover {
	opacity: 0.7;
}
#lbCaption,
#lbNumber {
	margin-right: 71px;
	font-family: Helvetica, Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "sans-serif";
}
#lbCaption {
	font-size: 11px;
	font-size: 1.1rem;
	color: #333;
	word-break: break-all;
}
#lbNumber {
	display: none;
}
/*==============================================
 footer
============================================= */

p.footer-disclaimer {
	line-height: 1.5;
	width: 1035px;
	margin: 20px auto 0;
  color: #7e7e7e;
	font-size: 10px;
}
footer {
    padding: 4px 0;
	background-color: #001789;
	text-align: center;
	color: #fff;
}
.footer-main {
    margin-top: 50px;
    padding: 20px 0;
    /*border-top: 1px solid #d8d8d8;*/
    background-color: #fff;
}

/* .subLink */

.subLink {
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
}
.subLink li {
    display: inline-block;
}

.subLink li:after {
    content: '\0020\007C\0020';
    color: #d8d8d8;
}

.subLink li:last-child:after {
    content: none;
}
.subLink li a {
    padding: 0 6px;
    line-height: 1.6;
    color: #002c6e;
}
.subLink li a:hover {
    text-decoration: underline;
}

/*==============================================
 #fixed-top
============================================= */

#fixed-top {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 20px;
	width: 1035px;
	margin: auto;
	pointer-events: none;
}
#fixed-top a {
	display: block;
	position: relative;
	right: -100px;
	float: right;
	width: 60px;
	height: 60px;
	border-radius: 3px;
	background-color: rgba(0,0,0,0.15);
	text-indent: -999rem;
	pointer-events: auto; 
}
#fixed-top a::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 26px;
	left: 0;
	right: 0;
	width: 12px;
	height: 12px;
	margin: 0 auto;
	-webkit-transform: rotate(45deg);
					transform: rotate(45deg);
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;

}
#fixed-top a:hover {
	background-color: rgba(0,0,0,0.20);
}

@media (max-width: 1275px) {
	#fixed-top {
		left: auto;
		width: auto;
	}
	#fixed-top a {
		right: 20px;
	}
}

/*==============================================
 icon
============================================= */

@font-face {
  font-family: 'icon';
  src:  url('https://img1.kakaku.k-img.com/images/fonts/prdnews/icon.eot?matvxc');
  src:  url('https://img1.kakaku.k-img.com/images/fonts/prdnews/icon.eot?matvxc#iefix') format('embedded-opentype'),
    url('https://img1.kakaku.k-img.com/images/fonts/prdnews/icon.ttf?matvxc') format('truetype'),
    url('https://img1.kakaku.k-img.com/images/fonts/prdnews/icon.woff?matvxc') format('woff'),
    url('https://img1.kakaku.k-img.com/images/fonts/prdnews/icon.svg?matvxc#icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="i-"],
[class*=" i-"],
.slick-prev,
.slick-next,
#lbPrevLink,
#lbNextLink,
.item-view a,
.kakaku-btn,
.maker-btn,
.used-btn,
.spec-btn {
  font-family: 'icon', Helvetica, Arial, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "sans-serif" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	word-break: normal;
}
[class^="i-"]::before,
[class*=" i-"]::before,
.slick-prev::before,
.slick-next::before,
.item-view a::before,
.kakaku-btn a::before,
.maker-btn a::before,
.used-btn a::before,
.spec-btn a::before {
	display: inline-block;
	margin-top: -0.2em;
	margin-right: 0.2em;
	font-size: 1.3em;
	vertical-align: middle;
}
[class^="i-"]::after,
[class*=" i-"]::after,
#lbPrevLink::after,
#lbNextLink::after {
	display: inline-block;
	margin-top: -0.2em;
	margin-left: 0.2em;
	font-size: 1.3em;
	vertical-align: middle;
}
a[class^="i-"]:hover,
a[class^=" i-"]:hover {
	text-decoration: none;
	border-bottom: 1px solid #006cc7;
}

/* i- */

.i-arrow_l::before {
  content: "\e001";
}
.i-arrow_r::after {
  content: "\e002";
}
.i-time::before {
	font-size: 1.2rem;
  content: "\e003";
}
.i-tag::before {
  content: "\e004";
}
.i-rss::before {
	content: "\e005";
}
.i-search::before {
	content: "\e006";
}
.i-open::after {
	content: "\e007";
}

/*==============================================
 .pickupPr 本体管理の広告パーツ
============================================= */

/* パソコン */

.pickupPr {
	margin-top: 20px;
	border: 1px solid #d8d8d8;
}
.pickupPrTtl {
	display: table;
	width: 100%;
	box-sizing: border-box;
	padding: 13px 13px 10px 20px;
	border-bottom: 1px solid #d8d8d8;
	background-color: #e9f3fe;
}
.pickupPrTtlTxt {
	display: table-cell;
	vertical-align: top;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.3
}
.pickupPrLabel {
	display: table-cell;
	vertical-align: top;
	width: 26px;
	padding: 0 0 0 4px;
}
.pickupPrCnts {
	display: table;
	width: 100%;
	box-sizing: border-box;
	padding-top: 10px;
	background-color: #fff;
}
.pickupPrImg {
	display: table-cell;
	width: 90px;
	vertical-align: middle;
	padding: 0 0 20px 20px;
}
.pickupPrLink {
	display: block;
}
.pickupPrPrdImg {
	width: auto;
	height: auto;
	max-width: 90px;
	max-height: 90px;
}
.pickupPrTxt {
	display: table-cell;
	vertical-align: middle;
	padding: 0 20px 20px 15px;
}
.pickupPrMaker {
	font-size: 1.1rem;
	line-height: 1;
}
.pickupPrLink2 {
	margin: 3px 0 0 0;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #006cc7;
	display: block;
}
.pickupPrLink2:hover {
	color: #006cc7;
	text-decoration: underline;
}
.pickupPrInfo {
	margin-top: 5px;
}
.pickupPrPriceTag {
	font-size: 1.1rem;
}
.pickupPrPrice {
	color: #db3e26 !important;
	font-family: Verdana;
	font-weight: bold;
	font-size: 14px;
	padding: 0 0 0 10px;
}

/* カメラ */

.mTop10 {
	margin-top: 20px;
}

/*==============================================
 .ジャック広告パーツ
============================================= */

.jackAdWrapper {
    position: relative;
    width: 1035px;
    margin: 0 auto;
}
.jackAdInner {
    position: absolute;
    top: 0;
    width: 1035px;
    height: 830px;
    pointer-events: none;
}
.jackAdSideBnr {
    
}
.jackAdSideBnrCell {
    position: absolute;
    width: 140px;
    height: 830px;
    display: block;
}
.jackAdSideBnrCell-left {
    top: 0;
    left: -170px;
    pointer-events: auto;
    
}
.jackAdSideBnrCell-right {
    top: 0;
    right: -170px;
    pointer-events: auto;
}

/*==============================================
 .まとめ記事
============================================= */

.day-box {
    margin-top: 60px;
}
.day-box .date {
    margin: 0 20px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}
#main .day-box h2.title {
    line-height: 1.6;
    margin: 0 20px 0;
    padding: 0;
    border-left: none;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: normal;
}
#main .day-box h2.title a {
    color: #006cc7;
}
#main .day-box h2.title a:hover {
    text-decoration: underline;
}
.day-box .img {
    width: 300px;
    margin: 30px auto 0;
}
.day-box .img img {
    width: 100%;
}
.day-box > p {
    line-height: 2;
    margin: 40px 20px 0;
    font-size: 16px;
    font-size: 1.6rem;
}
#main .day-box h2.kakaku {
    margin-top: 40px;
}

















