﻿@charset "utf-8";

@media screen and (max-width:767px){

/*		Contents
---------------------------------------------------------------------------

	Common（共通部分）

	HOME									[ / ]
	固定ページ								[ /page/ ]
	投稿ページ								[ /post/ ]
	オンラインショップ / 商品一覧			[ /shop/products/list ]
	オンラインショップ / 商品詳細			[ /shop/products/detail ]
	お問い合わせ							[ /contact/ ]

------------------------------------------------------------------------ */


/* ========================================================================
	Common（共通部分）
======================================================================== */
body{
	min-width:320px;
}

.pc{
	display:none;
}

iframe{
	width:100%;
	height:200px;
}


/* ----------------------------------------
	header
---------------------------------------- */
header{
	position:fixed;
	top:0;
	width:100%;
	background:#000000;
	z-index:13;
}

header h1,
header .logo{
	padding:15px 10px;
}

header h1 img,
header .logo img{
	width:auto;
	height:30px;
}


/* ledlenser
---------------------------------------- */
header .ledlenser{
	padding:9px 10px;
	background:#edf4f5;
	text-align:right;
	line-height:1;
}


/* ----------------------------------------
	menu
---------------------------------------- */
#menu .switch{
	position:absolute;
	/*top:70px;
	top:50px;*/
	top:10px;
	right:10px;
	width:40px;
	height:40px;
	background:url(../../img/common/btn_menu.png) no-repeat center;
	background-size:100%;
}

#menu .menu{
	display:none;
	position:absolute;
	top:60px;
	/*top:100px;*/
	left:0;
	width:100%;
	padding:0 10px 30px;
	background:#000000;
	text-align:center;
	z-index:10;
}


/* gnavi
---------------------------------------- */
#menu .gnavi > li{
	position:relative;
}

#menu .gnavi a,
#menu .gnavi span{
	display:block;
	font-weight:bold;
	color:#ffffff;
	line-height:40px;
	text-decoration:none;
	cursor:pointer;
}

#menu .gnavi .child,
#menu .gnavi .child .close{
	display:none;
}

#menu .gnavi .child a{
	color:#aaaaaa;
}


/* shop
---------------------------------------- */
#menu .shop{
	padding:20px 0 0 0;
	font-size:0;
}

#menu .shop li{
	display:inline-block;
	padding:5px 10px;
	vertical-align:top;
	font-size:1.4rem;
}

#menu .shop li img{
	vertical-align:middle;
}


/* ---------- search ---------- */
#menu .shop .search{
	width:150px;
	margin:0 10px;
	padding:0 0 0 8px;
	border:1px solid #ffcf07;
	border-radius:3px;
}

#menu .shop .search button,
#menu .shop .search input{
	float:left;
	width:16px;
	height:38px;
	background:none;
	border:none;
	font-weight:bold;
	color:#ffffff;
}

#menu .shop .search input{
	width:122px;
	height:38px;
	margin:0 0 0 2px;
	padding:0 8px;
}


/* ---------- cart ---------- */
#menu .shop .cart{
    visibility:visible;
	position:static;
	width:auto;
	height:auto;
    opacity:1;
}

#menu .shop .cart a{
	display:block;
	width:32px;
	height:30px;
	padding:0 0 0 5px;
	background:url(../../img/common/icon_cart.png) no-repeat center;
	background-size:100%;
	text-align:center;
	font-size:1.6rem;
	font-weight:bold;
	color:#ffffff;
	line-height:1;
	text-decoration:none;
}


/* ----------------------------------------
	notice
---------------------------------------- */
#notice{
	padding:100px 0 0 0;
	padding:61px 0 0 0;
}

#notice p{
	padding:10px;
	background:#ffffff;
	border-bottom:1px solid #000000;
}

#notice p a{
	display:block;
}


/* ----------------------------------------
	title
---------------------------------------- */
#title{
	position:relative;
	height:180px;
	margin:60px 0 0 0;
	/*margin:100px 0 0 0;*/
	}
#notice + #title{ margin-top:0; }

#title h1{
	position:absolute;
	top:50%;
	left:0;
	-webkit-transform:translateY(-50%); /* Android */
	transform:translateY(-50%);
	padding:0 10px;
	font-size:2.0rem;
	font-weight:bold;
	color:#ffffff;
	line-height:1.5;
	text-shadow:0 0 10px #000000;
}


/* ----------------------------------------
	wrap
---------------------------------------- */
#wrap{
	/*padding:100px 10px 0;*/
	padding:60px 10px 0;
}
#title + #wrap, #notice + #wrap{ padding-top:0; }


/* ----------------------------------------
	main
---------------------------------------- */
main{
	padding:0 0 20px 0;
}

main h1,
main h2{
	margin:0 0 20px 0;
	padding:5px 10px;
	background:#ffd700;
	border-left:10px solid #000000;
	font-size:2.0rem;
	font-weight:bold;
	line-height:1.5;
}


/* ----------------------------------------
	entry
---------------------------------------- */
.entry iframe{
	margin:0 0 30px 0;
}

.entry h3{
	margin:0 0 20px 0;
	padding:0 0 0 10px;
	border-left:5px solid #000000;
	font-size:1.8rem;
	font-weight:bold;
	line-height:1.5;
}

.entry h4{
	padding:0 0 20px 0;
	text-align:center;
	font-size:1.8rem;
	font-weight:bold;
	line-height:1.5;
}

.entry p,
.entry ul,
.entry ol{
	overflow:hidden;
	padding:0 0 30px 0;
	line-height:24px;
	counter-reset:number;
}

.entry ul li{
	padding:0 0 0 20px;
	text-indent:-20px;
}

.entry ul li::before{
	content:"";
	display:inline-block;
	width:10px;
	height:10px;
	margin:0 10px 0 0;
	background:#000000;
	border-radius:50%;
}

.entry ol li{
	padding:0 0 0 26px;
	text-indent:-26px;
}

.entry ol li:before{
	counter-increment:number;
	content:counter(number)" ）";
	font-weight:bold;
}

.entry table{
	margin:0 0 30px 0;
	border-top:1px solid #000000;
	line-height:24px;
}

.entry table tr{
	border-bottom:1px solid #000000;
}

.entry table th{
	display:block;
	width:auto !important;
	height:auto !important;
	padding:10px;
	background:#ffd204;
	border:none;
	text-align:left !important;
	font-weight:bold;
	white-space:nowrap;
}

.entry table td{
	display:block;
	width:auto !important;
	height:auto !important;
	padding:10px;
	border:none;
}

.entry_block_pv{
	position: relative;
    padding:10px;
}
.entry_block_pv .icon {
    position: absolute;
    left: 40%;
    top: 40%;
}

/* catchcopy
---------------------------------------- */
.entry .catchcopy p{
	text-align:center;
	font-size:1.8rem;
	font-weight:bold;
	color:#9dc4cb;
	line-height:1;
}


/* lead
---------------------------------------- */
.entry .lead p{
	text-align:center;
	font-size:1.6rem;
	font-weight:bold;
	line-height:28px;
}


/* ----------------------------------------
	aside
---------------------------------------- */
aside .cat > li > span,
aside .cat ul ul{
	display:none;
}

aside .cat ul ul li{
	padding:0 0 0 1.0em;
}

aside .cat > li{
	margin:0 0 30px 0;
	border-bottom:1px solid #b2b2b2;
}
aside .cat > li.bnr{
	float:left;
	width:50%;
	padding:0 5px;
	border:none;
	text-align:center;
}

aside .cat ul li{
	border-top:1px solid #b2b2b2;
}
aside .cat ul > li{ position:relative; }

aside .cat > li > a{
	display:block;
	padding:0 0 10px 0;
	font-size:2.0rem;
	font-weight:bold;
	line-height:1.5;
	text-decoration:none;
}
aside .cat > li.bnr > a{ padding:0; }

aside .cat ul li a{
	display:block;
	padding:10px 0;
	font-weight:bold;
	line-height:24px;
	text-decoration:none;
}

/* ---------- btn ---------- */
aside .cat span,
aside .cat span::before{
	position:absolute;
	top:15px;
	right:10px;
	width:14px;
	background:#1e1e1e;
	text-align:center;
	font-size:1.2rem;
	color:#ffffff;
	line-height:14px;
	cursor:pointer;
}
aside .cat span::before{ content:"＋"; top:0; left:0; }
aside .cat span.close::before{ content:"－"; }


/* ----------------------------------------
	footer
---------------------------------------- */
footer{
	padding:0 0 60px 0;
	background:#edf4f6;
}
#onlineshop footer{ padding-bottom:20px; }

footer p.ban{
	padding:20px 10px;
	text-align:center;
	font-size:1.2rem;
}

footer p.copyright small{
	display:block;
	padding:0 35px;
	text-align:center;
	font-size:1.2rem;
	font-weight:bold;
}


/* bnr
---------------------------------------- */
footer .bnr{
	position:fixed;
	bottom:0;
	width:100%;
	padding:0 40px 0 0;
	z-index:10;
}
#onlineshop footer .bnr{ display:none; }

footer .bnr a{
	display:block;
	background:#ffd204;
	text-align:center;
	font-weight:bold;
	line-height:40px;
	text-decoration:none;
}


/* pagetop
---------------------------------------- */
footer .pagetop{
	position:fixed;
	bottom:0;
	right:0;
	cursor:pointer;
	z-index:10;
}

footer .pagetop img{
	width:40px;
}


/* logo
---------------------------------------- */
footer .logo{
	padding:0 0 20px 0;
	text-align:center;
}

footer .logo h2{
	padding:30px 0 20px 0;
}

footer .logo .sns li{
	display:inline-block;
	padding:0 10px;
}


/* menu
---------------------------------------- */
footer .menu{
	border-top:1px solid #d7d8da;
	font-size:1.2rem;
	line-height:30px;
}

footer .menu a,
footer .menu span{
	display:block;
	padding:0 10px;
	border-bottom:1px solid #d7d8da;
	font-weight:bold;
	text-decoration:none;
	cursor:pointer;
}
footer .menu ul ul a{ text-indent:1.0em; }

footer .menu p,
footer .menu ul ul{
	display:none;
}


/* navi
---------------------------------------- */
footer .navi li{
	font-size:1.2rem;
	line-height:30px;
}

footer .navi li a{
	display:block;
	padding:0 10px;
	border-bottom:1px solid #d7d8da;
	font-weight:bold;
	text-decoration:none;
}


/* ========================================================================
	HOME									[ / ]
======================================================================== */
#home{
	margin:0 -10px;
	padding:0 0 50px 0;
}

#home h2{
	margin:0;
	padding:0 10px 20px;
	background:none;
	border:none;
	text-align:center;
}

#home .more{
	text-align:center;
}

#home .more a{
	display:inline-block;
	width:280px;
	border:3px solid #ffcf07;
	font-size:1.6rem;
	font-weight:bold;
	color:#ffffff;
	line-height:39px;
	text-decoration:none;
}


/* ----------------------------------------
	slider
---------------------------------------- */
#slider dl{
	position:relative;
	padding:20px 10px 30px 10px;
	color:#ffffff;
}

#slider dl.logo::before{
	content:"";
	position:absolute;
	top:20px;
	right:10px;
	width:49px;
	height:47px;
	/*background:url(../../img/home/logo.png) no-repeat center;*/
	background-size:100%;
}

#slider dl dt{
	padding:0 50px 20px 0;
	font-size:2.0rem;
	font-weight:bold;
	line-height:1;
}

#slider dl dd p{
	padding:0 0 20px 0;
	font-weight:bold;
	line-height:20px;
}

#slider dl dd p.lead{
	padding:0 50px 10px 0;
	font-size:1.8rem;
	line-height:1;
}

#slider dl dd p br{
	display:none;
}

#slider .more.free a{
	border-color:#a2d0cd;
}


/* ----------------------------------------
	whats_new
---------------------------------------- */
#home .whats_new{
	padding:30px 10px 10px;
}


/* ----------------------------------------
	charm
---------------------------------------- */
#home .charm{
	padding:30px 0;
	background:#9dc4cb;
	text-align:center;
	color:#ffffff;
}

#home .charm ul{
	padding:0 10px;
}

#home .charm ul li{
	position:relative;
	width:100%;
	height:200px;
	text-shadow:0 0 10px #000000;
}

#home .charm ul li .block{
	position:absolute;
	top:50%;
	left:0;
	-webkit-transform:translateY(-50%); /* Android */
	transform:translateY(-50%);
	width:100%;
	padding:0 10px;
}

#home .charm ul li h3{
	padding:0 0 20px 0;
	font-size:1.8rem;
	font-weight:bold;
}


/* ----------------------------------------
	about
---------------------------------------- */
#home .about > div{
	padding:30px 10px;
	background:url(../../img/home/bg_warranty.png) no-repeat center;
	background-size:cover;
	text-align:center;
	color:#ffffff;
	text-shadow:0 0 10px #000000, 0 0 20px #000000, 0 0 30px #000000;
}
#home .about .notice{ background-image:url(../../img/home/bg_notice.png); }

#home .about h2{
	padding:71px 0 20px 0;
	background:url(../../img/home/about_warranty.png) no-repeat center top;
	background-size:auto 51px;
}
#home .about .notice h2{ background-image:url(../../img/home/about_notice.png); }

#home .about p{
	padding:0 0 20px 0;
	font-weight:bold;
}


/* ----------------------------------------
	navi
---------------------------------------- */
#home .navi{
	padding:30px 10px 10px;
}

#home .navi li{
	padding:0 0 20px 0;
}

#home .navi li a{
	display:block;
	text-decoration:none;
}

#home .navi li img{
	display:block;
	margin:0 auto 10px;
}

#home .navi h2{
	padding:0 0 10px 0;
}


/* ----------------------------------------
	widget_theater
---------------------------------------- */
#home .widget_theater{
	padding:0 10px 10px;
}


/* ----------------------------------------
	instagram
---------------------------------------- */
#home .instagram{
	padding:30px 0 40px 0;
	background:#383b43;
}

#home .instagram h2{
	color:#ffffff;
}


/* ========================================================================
	固定ページ								[ /page/ ]
======================================================================== */
#page .navi,
#page .navi li{
	padding:0 0 20px 0;
	text-align:center;
}

#page .navi li a{
	display:block;
	color:#ffffff;
	text-decoration:none;
}

#page .navi li span{
	display:block;
	background:#383b43;
	padding:5px 10px;
}


/* ========================================================================
	投稿ページ								[ /post/ ]
======================================================================== */
#post > p{
	padding:0 0 20px 0;
	line-height:24px;
}


/* ========================================================================
	オンラインショップ / 商品一覧			[ /shop/products/list ]
======================================================================== */
#page_product_list h2{
	margin:0 0 20px 0;
	padding:0 0 0 10px;
	background:none;
	border-left-width:5px;
	font-size:1.8rem;
}

#page_product_list section > ul{
	padding:0 0 10px 0;
}

#page_product_list section > ul > li{
	position:relative;
	margin:0 0 20px 0;
	padding:0 0 20px 0;
	background:#fafafa;
	font-size:1.2rem;
}

#page_product_list section > ul > li::before,
#page_product_list section > ul > li::after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	border-style:solid;
	border-width:50px 50px 0 0;
	border-color:#ffd104 transparent transparent transparent;
	z-index:1;
}
#page_product_list section > ul > li::after{
	top:5px;
	left:5px;
	width:18px;
	height:18px;
	background:url(../../img/shop/icon_star.png) no-repeat center;
	border:none;
}
#page_product_list .new > li::before{  border-top-color:#aaddec; }
#page_product_list .limited > li::before{  border-top-color:#ff9494; }
#page_product_list .all > li::before, #page_product_list .all > li::after{ display:none; }

#page_product_list section > ul > li > a > *:not(img){
	padding:0 20px
}

#page_product_list ul a{
	display:block;
	text-decoration:none;
}

#page_product_list ul li img{
	display:block;
	margin:0 auto;
}

#page_product_list ul h3{
	padding:0 0 5px 0;
	font-size:1.6rem;
	font-weight:bold;
}

#page_product_list ul p{
	font-weight:bold;
}

#page_product_list ul ul li{
	float:left;
	margin:0 5px 5px 0;
	padding:0 12px;
	background:#ffd204;
	font-weight:bold;
	line-height:24px;
}
#page_product_list ul ul li.sale{ background:#cc0000; color:#ffffff; }
#page_product_list ul ul li.use{ background:#333333; color:#ffffff; }


/* ----------------------------------------
	more
---------------------------------------- */
#page_product_list .more span{
	display:block;
	margin:10px 0 0 0;
	border:1px solid #333333;
	text-align:center;
	font-weight:bold;
	line-height:28px;
}


/* ========================================================================
	オンラインショップ / 商品詳細			[ /shop/products/detail ]
======================================================================== */
#page_product_detail .fix{
	display:none;
}


/* ----------------------------------------
	gallery
---------------------------------------- */
#page_product_detail .gallery{
	padding:0 0 20px 0;
	text-align:center;
	font-size:0;
}

#page_product_detail .gallery p{
	padding:0 0 10px 0;
}

#page_product_detail .gallery p img{
	max-width:300px;
	max-height:300px;
	width:auto;
	height:auto;
}

#page_product_detail .gallery ul{
	margin:0 -5px;
}

#page_product_detail .gallery ul li{
	float:left;
	width:25%;
	padding:0 5px 10px;
	cursor:pointer;
}

#page_product_detail .gallery ul li span{
	display:block;
	height:72px;
	border:1px solid #000000;
}

#page_product_detail .gallery ul li img{
	max-height:70px;
	width:auto;
	height:auto;
}


/* ----------------------------------------
	block
---------------------------------------- */
#page_product_detail .block{
	padding:0 0 30px 0;
}

#page_product_detail .block h1{
	margin:0;
	padding:0 0 10px 0;
	background:none;
	border:none;
}

#page_product_detail .block h1 span{
	display:block;
	font-size:1.4rem;
}

#page_product_detail .block table{
	border-top:1px solid #b2b2b2;
}

#page_product_detail .block table tr:first-child th,
#page_product_detail .block table tr:first-child td{ padding-top:15px; }
#page_product_detail .block table tr:last-child th,
#page_product_detail .block table tr:last-child td{ padding-bottom:15px; }

#page_product_detail .block table th{
	width:100px;
	padding:0 0 10px 0;
	text-align:left;
	font-weight:bold;
}

#page_product_detail .block table td{
	padding:0 0 10px 0;
}

#page_product_detail .block table td span.yen{
	font-weight:bold;
}

#page_product_detail .block table td input{
	width:100px;
}

#page_product_detail .block ul{
	margin:0 0 -5px 0;
}

#page_product_detail .block ul li{
	float:left;
	margin:0 5px 5px 0;
	padding:0 12px;
	background:#ffd204;
	font-size:1.2rem;
	font-weight:bold;
	line-height:24px;
}
#page_product_detail .block ul.use li{ background:#333333; color:#ffffff; }


/* btn_cart
---------------------------------------- */
#page_product_detail .block .btn_cart{
	margin:0 0 20px 0;
	padding:0 0 20px 0;
	text-align:center;
}

#page_product_detail .block .btn_cart2{
	margin:0 0 20px 0;
	padding:0 0 20px 0;
	border-bottom:1px solid #b2b2b2;
	text-align:center;
}


#page_product_detail .block .btn_cart button{
	display:inline-block;
	position:relative;
	width:100%;
	height:40px;
	background:none;
	border:3px solid #ffcf07;
	font-weight:bold;
}

#page_product_detail .block .btn_cart button::after{
	content:"";
	position:absolute;
	top:0;
	right:25px;
	width:12px;
	height:100%;
	background:url(../../img/common/arrow.png) no-repeat center;
}


/* spec
---------------------------------------- */
#page_product_detail .spec{
	padding:10px 10px 20px;
	background:#edf4f6;
	line-height:24px;
}

#page_product_detail .spec p{
	padding:10px 0 0 0;
}

#page_product_detail .spec dl dt{
	padding:10px 0;
}

#page_product_detail .spec dl dt span{
	border-bottom:1px solid #333333;
	cursor:pointer;
}

#page_product_detail .spec dl dd{
	display:none;
}


/* ----------------------------------------
	product
---------------------------------------- */
#page_product_detail .product{
	padding:0 0 10px 0;
	text-align:center;
}

#page_product_detail .product h2{
	margin:0 0 20px 0;
	padding:0 0 5px 0;
	background:none;
	border:none;
	border-bottom:1px solid #b2b2b2;
}

#page_product_detail .product ul{
	margin:0 -5px;
}

#page_product_detail .product ul li{
	float:left;
	width:50%;
	padding:0 5px 20px;
	font-weight:bold;
}

#page_product_detail .product ul li a{
	display:block;
	text-decoration:none;
}

#page_product_detail .product ul li img{
	margin:0 0 10px 0;
}


/* ----------------------------------------
	image
---------------------------------------- */
#page_product_detail .image{
	padding:0 0 10px 0;
}

#page_product_detail .image h2{
	margin:0;
	padding:0 0 10px 0;
	background:none;
	border:none;
}

#page_product_detail .image p{
	padding:0 0 20px 0;
}

#page_product_detail .image table{
	margin:0 0 20px 0;
}

#page_product_detail .image table th,
#page_product_detail .image table td{
	padding:10px;
	border:1px solid #000000;
}


/* ----------------------------------------
	guide
---------------------------------------- */
#page_product_detail .guide{
	margin:0 0 30px 0;
	padding:0 10px 10px;
	border:5px solid #e6e6e6;
}

#page_product_detail .guide h2{
	margin:0;
	padding:20px 0 0 0;
	background:none;
	border:none;
	line-height:0;
}

#page_product_detail .guide h2 img{
	margin:0 10px 10px 0;
}

#page_product_detail .guide table th{
	display:block;
	padding:10px;
	background:#ffcf07;
	font-weight:bold;
}

#page_product_detail .guide table td{
	display:block;
	padding:10px;
	background:#f0f0f0;
	border-bottom:10px solid #ffffff;
}


/* ========================================================================
	お問い合わせ							[ /contact/ ]
======================================================================== */

/* ----------------------------------------
	form
---------------------------------------- */
.entry table th span{
	padding:0 0 0 1.0em;
	font-size:1.2rem;
	color:#cc0000;
}

.entry table input.size_S{
	width:30%;
}

.entry table label{
	margin:0 40px 0 0;
}


/* ----------------------------------------
	privacy
---------------------------------------- */
.entry .privacy{
	overflow-y:scroll;
	height:200px;
	margin:0 0 30px 0;
	padding:20px 10px 0;
	border:1px solid #000000;
}

/* ---------- scrollbar ---------- */
.entry .privacy::-webkit-scrollbar{width:10px;}
.entry .privacy::-webkit-scrollbar-track{background:#eeeeee;}
.entry .privacy::-webkit-scrollbar-thumb{background:#000000;}
/* ------------------------------ */

.entry .privacy h5{
	padding:0 0 10px 0;
	font-size:1.6rem;
	font-weight:bold;
}

.entry .privacy dl dt{
	padding:0 0 10px 0;
	font-weight:bold;
}

.entry .privacy p,
.entry .privacy ul,
.entry .privacy dl dd{
	padding-bottom:20px;
}
.entry .privacy dl dd > *{ padding:0; }

.entry .privacy p span{
	font-weight:bold;
	color:#cc0000;
}

.entry .privacy ul li{
	padding:0;
	text-indent:0;
}

.entry .privacy ul li::before{
	display:none;
}


/* ----------------------------------------
	agree
---------------------------------------- */
.entry .agree{
	padding:0 0 30px 0;
	text-align:center;
}

.entry .agree p{
	padding-bottom:10px;
}

.entry .agree label{
	margin:0 20px;
}


/* ----------------------------------------
	btn
---------------------------------------- */
.entry .btn{
	padding:0 0 30px 0;
	text-align:center;
}

.entry .btn button{
	display:inline-block;
	position:relative;
	width:100%;
	background:none;
	border:3px solid #ffcf07;
	text-align:center;
	font-size:1.6rem;
	font-weight:bold;
	line-height:39px;
	letter-spacing:1px;
}

.entry .btn button::after{
	content:"";
	position:absolute;
	top:0;
	right:25px;
	width:12px;
	height:100%;
	background:url(../../img/common/arrow.png) no-repeat center;
}


}