﻿@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

	Reset Styles
	Paging（ページング）
	Widget（共通パーツ）

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* HTML5 */
article, aside, figure, figcaption, video, footer, header,
main, nav, section, summary{
	display:block;
	margin:0;
}


/* Base Styles */
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset{
	margin:0;
	padding:0;
	font-weight:normal;
}

html{
	font-size:62.5%; /* 10px */
}

body{
	font-family:"游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size:1.4rem; /* 14px */
	color:#191919;
	line-height:1.6;
	-webkit-text-size-adjust:100%;
}

select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#191919;
}

pre,code,kbd,samp{
	font-family:inherit;
}

img,
iframe{
	border:none;
	vertical-align:bottom;
}

table{
	width:100%;
	border:none;
	border-collapse:collapse;
	border-spacing:0;
	font-size:inherit;
}

label{
	cursor:pointer;
}

input,
textarea{
	padding:0;
	vertical-align:middle;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea{
	width:100%;
	height:30px;
	margin:0;
	padding:0 10px;
	border:1px solid #cdcdcd;
	border-radius:0; /* iPhone・iPad 角丸解除 */
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

textarea{
	height:auto;
	padding:10px;
}

/* Firefox・IE スピンボタン非表示 */
input[type="number"]{
	-moz-appearance:textfield;
}

/* Chrome・Safari スピンボタン非表示 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
	margin:0;
	-webkit-appearance:none;
}

input[type="radio"],
input[type="checkbox"]{
	margin:0 10px 0 0;
	vertical-align:baseline;
	cursor:pointer;
}

button,
input[type="image"],
input[type="submit"],
input[type="button"]{
	margin:0; /* iPhone・iPad用 */
	padding:0;
	cursor:pointer;
	border-radius:0; /* iPhone・iPad 角丸解除 */
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

select,
select option,
select optgroup{
	padding:0 10px;
	font-style:normal;
	cursor:pointer;
}

ol,ul{
	list-style:none;
}

h1,h2,h3,h4,h5,h6,small{
	font-size:100%;
}

address{
	font-style:normal;
} 

a,
input{
	outline:none;
}


/* Basic Text Link */
a{
	color:#191919; text-decoration:underline;
}
a:link{
	color:#191919; text-decoration:underline;
}
a:visited{
	color:#191919; text-decoration:underline;
}
a:hover{
	color:#191919; text-decoration:none;
}
a:focus{
	color:#191919; text-decoration:underline;
}
a:active{
	color:#191919; text-decoration:underline;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

ul,
ol,
.column{
	overflow:hidden;
	position:relative;
}

.mincho{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "メイリオ", Meiryo, sans-serif;
}


/* ========================================================================
	Paging（ページング）
======================================================================== */
.pagenavi{
	padding:0 0 40px 0;
	text-align:center;
}

.pagenavi span{
	display:inline-block;
	margin:0 5px 10px;
	vertical-align:bottom;
}

.pagenavi span.current{
	width:34px;
	line-height:38px;
	background:#000000;
	border:1px solid #000000;
	text-align:center;
	color:#ffffff;
}

.pagenavi a{
	display:inline-block;
	width:34px;
	line-height:38px;
	margin:0 5px 10px;
	border:1px solid #dbdbdb;
	text-align:center;
	text-decoration:none;
	transition-duration:0.2s;
}

.pagenavi a:hover{
	background:#000000;
	border-color:#000000;
	color:#ffffff;
}

.pagenavi a[rel="prev"],
.pagenavi a[rel="next"]{
	margin:0 15px 10px;
}

@media screen and (max-width:767px){
.pagenavi{
	padding:0 0 10px 0;
}

.pagenavi span.current,
.pagenavi a{
	width:30px;
	line-height:34px;
}

.pagenavi a[rel="prev"],
.pagenavi a[rel="next"]{
	margin:0 5px 10px;
}
}


/* ========================================================================
	Widget（共通パーツ）
======================================================================== */

/* ----------------------------------------
	widget_btn
---------------------------------------- */
.widget_btn{
	text-align:center;
}

.widget_btn a,
.widget_btn button{
	display:inline-block;
	width:362px;
	background:rgba(25,25,25,1);
	border:2px solid #191919;
	font-size:2.0rem;
	color:#ffffff;
	line-height:70px;
	letter-spacing:1px;
	text-decoration:none;
	transition-duration:0.2s;
}
.widget_btn a.us{ background:rgba(204,0,0,1); border-color:#cc0000; }

.widget_btn a:hover,
.widget_btn button:hover{
	background:rgba(25,25,25,0);
	color:#191919;
}
.widget_btn a.us:hover{ color:#cc0000; }

@media screen and (max-width:767px){
.widget_btn a,
.widget_btn button{
	width:100%;
	font-size:1.8rem;
	line-height:60px;
}
}


/* cart
---------------------------------------- */
.widget_btn .cart::after{
	content:"";
	display:inline-block;
	width:32px;
	height:32px;
	margin:0 0 0 4px;
	vertical-align:text-bottom;
	background:url(../../img/common/icon_cart.png) no-repeat;
	background-size:32px;
}
.widget_btn .cart:hover::after{ background-image:url(../../img/common/icon_cart_on.png); }


/* ----------------------------------------
	widget_brand
---------------------------------------- */
.widget_brand{
	margin:0 0 40px 0;
}

.widget_brand li{
	float:left;
	width:50%;
}

@media screen and (max-width:767px){
.widget_brand{
	margin-bottom:20px;
}
}


/* ----------------------------------------
	widget_list
---------------------------------------- */
.widget_list{
	margin:0 0 50px 0;
	padding:26px 50px;
	background:#f3f3f3;
}

.widget_list li{
	padding:10px;
	border-bottom:1px dotted #d1d1d1;
	font-size:1.5rem;
}
.widget_list li:last-child{ border:none; }

.widget_list li time{
	font-weight:bold;
}

.widget_list li a{
	display:block;
	text-decoration:none;
}
.widget_list li a:hover{ text-decoration:underline; }

@media screen and (max-width:767px){
.widget_list{
	margin:0 0 20px 0;
	padding:10px;
	background:#f3f3f3;
}

.widget_list li{
	font-size:1.4rem;
}
}