@charset "utf-8";
/* CSS Document */

/* ===================================================================
 HEADER
=================================================================== */

/* ---------------------------------------------
 ナビ
--------------------------------------------- */
#header_navi {
	width: 100%;
	padding-bottom: 5px;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}
.h_inner {
	max-width: 1000px;
	height: 90px;
	margin: 15px auto 0;
}
/*----- 左側 -----*/
.h_navi_left {
	float: left;
	width: 63%;
}
.h_navi_left > div {
	display: inline-block;
	vertical-align: top;
}
/* 看板 */
.h_navi_left .logo:first-child {
	margin-right: 16px;
}
.h_navi_left .logo:nth-child(2) {
	margin-top: 15px;
}
/* HRCロゴ */
.h_navi_left .hrc {
	text-align: center;
}
.h_navi_left .hrc img {
	margin: 10px 0 7px;
}
.h_navi_left .hrc span {
	display: block;
	line-height: 1em;
	font-size: 11px;
}
/*----- 右側 -----*/
.h_navi_right {
	float: right;
	width: 35%;
	padding-top: 10px;
}
/* ナビ */
.h_navi_right ul {
	display: flex;
	margin-bottom: 10px;
}
.h_navi_right ul li {
	width: calc(100%/4);
	margin-right: 10px;
	padding: 3px 0;
	border: 1px solid #333;
	border-radius: 15px;
	text-align: center;
	font-size: 11px;
}
.h_navi_right ul li:last-child {
	margin-right: 0;
}
/* 検索 */
.h_navi_search > form {
	position: relative;
}
.h_navi_search > form > .keywords {
	width: 83%;
    height: 16px;
	padding: 6px 8px;
    border: 3px solid #039;
	border-radius: 5px;
	outline: 0;
}
.h_navi_search > form > .btn {
	position: absolute;
    top: 0;
    _top: 1px;
    left: 83%;
	height: 34px;
	padding: 0px 10px;
	background: #039;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #fff;
}
#header_search input[type="submit"] { /* iOS対処 */
	-webkit-appearance: none;
}

/* ===================================================================
 SLIDER
=================================================================== */
#slider {
	width: 100%;
	height: 430px;
	margin: auto;
}


/* ===================================================================
 FOOTER
=================================================================== */
.f_inner {
	max-width: 1000px;
	padding: 30px 0;
	margin: auto;
	color: #fff;
}


/* ---------------------------------------------
 カテゴリ
--------------------------------------------- */
#footer_search {
	width: 100%;
	background-color: #222;
}
/*----- 見出し -----*/
#footer_search .title {
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 18px;
}
#footer_search .title > span {
	margin-left: 15px;
	color: #9fc1ff;
	font-size: 13px;
}
/*----- 共通 -----*/
#footer_search .ctg {
	display: flex;
}
/*----- メーカー -----*/
#footer_search .brand {
	display: flex;
	justify-content: space-between;
	border-radius: 3px;
}
#footer_search .brand li {
	position: relative;
	width: calc(100%/4.2);
	margin-bottom: 20px;
	padding: 15px;
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 3px;
	text-align: center;
}
#footer_search .brand a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
#footer_search .brand img {
	max-width: 100%;
	margin: 0 auto 5px;
	text-align: center;
}
#footer_search .brand span {
	display: block;
	width: 90%;
	margin: 0 auto 3px;
	padding: 5px 0;
	background-color: #222;
	border-radius: 3px;
	color: #fff;
	letter-spacing: .1em;
	font-size: 11px;
	transition: .3s;
}
#footer_search .brand li:hover span {
	background-color: #666;
	transition: .3s;
}
/*----- パーツ -----*/
#footer_search .parts {
	display: flex;
	/*justify-content: space-between;*/
}
#footer_search .parts:last-child li {
	margin-bottom: 0;
}
#footer_search .parts li {
	width: calc(100%/10);
	height: 80px;
	margin: 0 5px;
	overflow: hidden;
	margin-bottom: 16px;
	background-color: #fff;
	border-radius: 3px;
}
#footer_search .parts li:last-child {
	margin-right: 0;
}
#footer_search .parts li.none {
	height: 0;
}
#footer_search .parts .name {
	display: block;
	padding: 3px 5px;
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 11px;
}
#footer_search .parts li:hover .name {
	background-color: #333;
	transition: 0.3s;
}
#footer_search .parts li img {
	width: 100%;
}

/* ---------------------------------------------
 コンテンツ
--------------------------------------------- */
#footer_contents {
	width: 100%;
	padding-top: 20px;
	background-color: #111;
	border-bottom: 10px solid #002157;
}
#footer_contents a {
	color: #fff;
}
#footer_contents a:hover {
	text-decoration: underline;
}

/*----- コンテンツ全体 -----*/
.f_cnt_wrap {
	display: flex;
	margin-bottom: 50px;
}
.f_cnt_wrap > div {
	width: calc(100%/3);
	margin-right: 50px;
}
.f_cnt_wrap > div:last-child {
	margin-right: 0;
}
/* 見出し */
.f_cnt_title {
	margin-bottom: 20px;
	font-size: 14px;
}

/*----- お買い物ガイド -----*/
.f_cnt_wrap .guide ul {
	margin-bottom: 20px;
}
.f_cnt_wrap .guide li {
	line-height: 2.5rem;
	font-size: 12px;
}
.f_cnt_wrap .guide li a::before {
	content: "-";
	margin-right: 10px;
}
/* SNS */
.f_cnt_wrap .guide .sns div {
	display: inline-block;
	position: relative;
	margin-right: 8px;
	font-size: 42px;
}
.f_cnt_wrap .guide .sns span {
	display: none;
	position: absolute;
	top: 45px;
	left: 0;
	font-size: 12px;
}
.f_cnt_wrap .guide .sns a:hover + span {
	display: block;
}
/* SNS:hover */
.f_cnt_wrap .guide .sns a i {
	transition: .3s;
}
.f_cnt_wrap .guide .sns a:hover i {
	transition: .3s;
}
.f_cnt_wrap .guide .sns div:nth-child(1n) a:hover i { /*Facebook*/
	color: #3B5998;
}
.f_cnt_wrap .guide .sns div:nth-child(2n) a:hover i { /*Twitter*/
	color: #55ACEE;
}
.f_cnt_wrap .guide .sns div:nth-child(3n) a:hover i { /*YouTube*/
	color: #FF0000;
}

/*----- お買い物する際のご注意 -----*/
.f_cnt_wrap .caution > .box {
	display: block;
	margin-bottom: 30px;
}
.f_cnt_wrap .caution > .box > .title {
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
	font-weight: bold;
	font-size: 12px;
}
.f_cnt_wrap .caution > .box > .text {
	line-height: 1.8em;
	font-size: 12px;
}

/*----- ナビ -----*/
#footer_contents .navi {
	margin-bottom: 20px;
	text-align: center;
}
#footer_contents .navi li {
	display: inline-block;
	padding: 0 10px;
	border-right: 1px solid #fff;
	font-size: 12px;
}
#footer_contents .navi li:last-child {
	border-right: none;
}
/*----- Copyright -----*/
#footer_contents .copyright {
	text-align: center;
	letter-spacing: .1rem;
	font-size: 11px;
}


/* ===================================================================
 LEFT NAVI
=================================================================== */
#leftNavi {
	width: 200px;
}
#leftNavi > div {
	margin-bottom: 20px;
}

/*----- バナーエリア -----*/
#leftNavi > .banner {
	margin-bottom: 20px;
}
#leftNavi > .banner > li {
	margin-bottom: 15px;
}

/*----- カテゴリ -----*/
#leftNavi > .category {
	padding: 3px;
	border: 2px solid #cecece;
	border-radius: 5px;
}
/* 見出し */
#leftNavi > .category .ttl {
	position: relative;
	height: 46px;
	background: url(https://www.rakuten.ne.jp/gold/endurance/site/img/leftnavi/ttl-bg.jpg) no-repeat;
	border-bottom: 0;
}
#leftNavi > .category .ttl {
	padding: 10px 0 0 24px;
	color: #fff;
	line-height: 1.2em;
	font-weight: normal;
	font-size: 13px;
}
#leftNavi > .category .ttl span {
	display: block;
	margin: 0;
	color: #666;
	letter-spacing: .1em;
	font-size: 10px;
}
/* 共通 */
#leftNavi > .category ul li {
	position: relative;
	border-bottom: 1px dotted #cecece;
	text-indent: .5em;
	font-weight: bold;
	font-size: 12px;
}
#leftNavi > .category ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 9px 5px 8px;
}
/* アイコン */
#leftNavi > .category ul li i.fas {
	position: absolute;
	top: 40%;
	right: 5px;
	color: #cecece;
}
#leftNavi > .category ul li:hover i.fas {
	color: #039;
}
/* 商品を探す */
#leftNavi > .search ul li:last-child {
	border-bottom: 0;
}
#leftNavi > .search ul li span {
	margin-left: 10px;
	color: #039;
	font-size: 10px;
}
/* 会社情報 */
#leftNavi > .shop {
	padding: 3px;
	font-weight: normal;
}
#leftNavi > .shop > .inner {
	padding: 5px;
	background: url(../img/bg_dot.png);
}
#leftNavi > .shop > .inner > ul {
	background-color: #fff;
}

/*----- SNS -----*/
#leftNavi > [class^="sns-"] {
	width: 100%;
	border-radius: 5px;
}
#leftNavi > [class^="sns-"] p {
	margin: 5px 0;
	letter-spacing: .1em;
	color: #fff;
}
#leftNavi > [class^="sns-"] p > i {
	margin: 0 10px;
}
#leftNavi > .sns-twitter {
	background-color: #55ACEE;
	border: 5px solid #55ACEE;
}
#leftNavi > .sns-facebook {
	background-color: #3B5998;
	border: 5px solid #3B5998;
}




/*======================================================================
　メディアクエリ
========================================================================  */

@media screen and (max-width:1280px) { 
/*　画面サイズが1280pxまで(大型PC以外)はここを読み込む　*/


}

@media screen and (max-width:480px) { 
/*　画面サイズが480pxまで(SP縦)はここを読み込む　*/

.f_inner {
	padding: 30px 16px;
}
/* ---------------------------------------------
 カテゴリ
--------------------------------------------- */
/*----- 共通 -----*/
#footer_search .ctg {
	flex-wrap: wrap;
}
#footer_search .ctg .name {
	font-size: 10px;
}
/*----- メーカー -----*/
#footer_search .brand li {
	position: relative;
	width: calc(100%/2.1);
	margin-bottom: 16px;
	padding: 15px;
	background-color: #fff;
	border-radius: 3px;
	text-align: center;
}
#footer_search .brand li:nth-child(odd) {
	margin-right: 8px;
}
/*----- パーツ -----*/
#footer_search .parts li {
	margin-bottom: 8px;
}
#footer_search .parts:last-child li {
	margin-bottom: 8px;
}
#footer_search .parts li {
	width: calc(100%/4.6);
	height: 80px;
}
#footer_search .parts li img {
	margin-top: 6px;
}

/* ---------------------------------------------
 コンテンツ
--------------------------------------------- */
/*----- コンテンツ全体 -----*/
.f_cnt_wrap {
	flex-wrap: wrap;
}
.f_cnt_wrap > div {
	width: calc(100%/2);
	margin-right: 0;
}
.f_cnt_wrap > div:last-child {
	width: 100%;
}
/*----- お買い物ガイド -----*/
.f_cnt_wrap .guide li {
	line-height: 3.5rem;
	font-size: 11px;
}
/*----- お買い物する際のご注意 -----*/
.f_cnt_wrap .caution > .box > .title {
	font-size: 11px;
}
/*----- ナビ -----*/
#footer_contents .navi li {
	margin-bottom: 10px;
}

}

@media screen and (min-width:480px) and ( max-width:600px) { 
/*　画面サイズが480pxから(SP横)はここを読み込む　*/

}

@media screen and (min-width:600px) and ( max-width:960px) {
/*　画面サイズが600pxから960pxまで(タブレット)はここを読み込む　*/

/* ===================================================================
 HEADER
=================================================================== */
.h_inner {
	height: 80px;
	padding: 0 16px;
}
.h_navi_left > div {
	vertical-align: middle;
}
/*----- 看板 -----*/
.h_navi_left .logo:nth-of-type(1) {
	width: 50%;
	margin-right: 10px;
}
.h_navi_left .logo:nth-of-type(2) {
	width: 15%;
}
.h_navi_left > div img {
	width: 100%;
}
.h_navi_left .hrc img {
	margin: 5px 0;
}
/*----- ナビ -----*/
.h_navi_right ul li {
	margin-right: 2px;
	border-radius: 15px;
	font-size: 10px;
}


/* ===================================================================
 FOOTER
=================================================================== */

.f_inner {
	padding: 30px 24px;
}

}

@media screen and (min-width:960px) and ( max-width:1280px) {
/*　画面サイズが960pxから1280pxまで(小型PC)はここを読み込む　*/

.f_inner {
	padding: 30px 32px;
}

}




