@charset "utf-8";
/*!
 * products CSS
 * ---------------------------------------------
 * 下層ページのcss
 *
 */
@import 'slick.css';
@import 'slick-theme.css';

/*===================================
	element
=====================================*/
/*  sprite
---------------------------------*/

.addCart:before,
.zoom__icon {
	background-image: url(../images/base/sprite.png);
	background-repeat: no-repeat;
}

/*===================================
	商品一覧
=====================================*/
/*  head__brand
---------------------------------*/

.head__brand {
	margin-bottom: 30px;
	border-bottom: solid 4px #eee;
	text-align: center;
}
.head__brand h2 {
	width: 170px;
	margin: 0 auto 20px;
}
.head__brand h2 + p {
	width: 670px;
	margin: auto;
	font-size: 14px;
	text-align: center;
	line-height: 1.8;
}
.head__brand .more {
	margin-top: 15px;
	margin-bottom: 30px;
}

/*  products__list
---------------------------------*/

.products__list {
	margin: 50px -15px 30px;
}
.products__list > li {
	position: relative;
	width: 270px;
	margin: 0 15px 50px;
	padding-bottom: 1.6em;
}
.products__list > li.sale {
	margin-bottom: 70px;
}
.products__list .item {
	width: 270px;
	background: #fff;
	cursor: pointer;
}
.products__list > li:hover {
	z-index: 400;
}
.products__list .item:hover {
	position: absolute;
	width: 288px;
	margin: 0 -9px;
	padding: 9px 9px 2em;
	box-shadow: 0 0 3px 0 rgba(0,0,0,.2);
	transition: .3s;
}
.products__list .sale .item:hover {
	padding-bottom: 4em;
}
.products__list .item:hover .slider {
	margin-top: 10px;
	opacity: 1;
	transition: .3s;
}
.products__list .item:hover p {
	left: 9px;
	bottom: 9px;
}
.products__list .sale .item:hover p {
	bottom: 30px;
}
.products__list.central figure {
	width: 270px;
	height: 270px;
	z-index: 10;
}
.products__list span {
	display: block;
	margin-top: 20px;
	color: #666;
	font-size: 13px;
}
.products__list h3 {
	margin: 0.3em 0 0.8em;
	line-height: 1.4;
	word-wrap: break-word;
}
.products__list p {
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 12px;
}
.products__list p b {
	font-size: 16px;
}
.products__list p span {
	position: absolute;
	display: block;
	margin-top: 10px;
	font-size: 12px;
}
.products__list .sale p span b {
	color: #000;
	font-size: 12px;
}
.products__list .sale p b {
	color: #db0808;
}
.state {
	margin-top: 7px;
    border: none !important;
}
.state li {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px 5px 0;
    padding: 4px 7px 3px !important;
    border: solid 2px #ccc !important;
	font-size: 12px;
	text-align: center;
	/*font-weight: 600;*/
	font-weight: 500;
}
.products__detail p.price.sale b {
    color: #db0808;
}
.state .sale,.state .new {
	color: #db0808;
}
.state .soldout {
	background: #ccc;
}
.products__list li a:hover {
	opacity: .7;
}
.products__list a:hover h3,
.products__list a:hover p {
	color: #777;
}
.products__list a:hover p b {
	color: #e67676;
}
.products__list .slider {
	opacity: 0;
	position: relative;
	width: 204px;
	height: 60px;
	margin: -60px auto 0;
}
.products__list .slick-slide {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 4px;
	padding: 0;
	z-index: -1;
}
.products__list .slick-slide img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.products__list .slick-arrow {
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	width: 10px;
	height: 10px;
	border-bottom: solid 1px #000;
	border-left: solid 1px #000;
	text-align: left;
	text-indent: -9999em;
}
.products__list .slick-arrow.slick-prev{
	left: -15px;
	transform: rotate(45deg);
}
.products__list .slick-arrow.slick-next {
	right: -15px;
	transform: rotate(225deg);
}
.products__list .slick-dots {
	display: none;
}

/*-- 20170705追記 --*/
.products__list .item .mainImage {
	width: 90%;
	margin: 0 5%;
}
@media screen and (max-width: 752px) {

	/*===================================
		商品一覧
	=====================================*/
	/*  head__brand
	---------------------------------*/

	.head__brand {
		margin: 38px 0 50px;
	}
	.head__brand h2 {
		width: 220px;
	}
	.head__brand h2 + p {
		width: 590px;
		font-size: 24px;
	}
	.head__brand .more {
		margin-top: 35px;
		margin-bottom: 50px;
	}

	/*  products__list
	---------------------------------*/

	.products__list {
		margin: 60px 10px 20px;
	}
	.products__list > li {
		width: 345px;
		margin: 0 10px 50px;
	}
	.products__list > li.sale {
		margin-bottom: 100px;
	}
	.products__list .item {
		width: 345px;
	}
	.products__list .item:hover,
	.products__list .sale .item:hover {
		position: inherit;
		width: 345px;
		margin: 0;
		padding: 0 0 1.6em;
		box-shadow: none;
		transition: 0;
	}
	.products__list .slider,
	.products__list .item:hover .slider {
		display: none;
	}
	.products__list .item:hover p,
	.products__list .sale .item:hover p {
		left: 0;
		bottom: 0;
	}
	.products__list.central figure {
		width: 345px;
		height: 345px;
		margin-bottom: 20px;
	}
	.products__list span {
		font-size: 24px;
	}
	.products__list h3 {
		margin: 0.5em 0;
		font-size: 28px;
		font-weight: normal;
	}
	.products__list p {
		font-size: 18px;
	}
	.products__list p b {
		font-size: 28px;
	}
	.products__list p span {
		font-size: 18px;
	}
	.products__list .sale p span b {
		font-size: 24px;
		font-weight: normal;
	}
	.state {
		margin-top: 14px;
	}
	.state li {
		margin: 0 10px 10px 0;
		padding: 6px 6px 5px;
		font-size: 18px;
	}
}


/*===================================
	商品詳細
=====================================*/

.products__detail .content .inner {
	padding: 50px 15px;
}
.products__detail .content .inner.sec1 {
	padding-top: 0;
	letter-spacing: -.40em;
}
.productsImg,.productsCont {
	position: relative;
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
}
.productsImg {
	width: 770px;
	height: 670px;
	margin-right: 30px;
}
.productsCont {
	width: 370px;
}
section .ttl_sec {
	margin-bottom: 30px;
	font-size: 32px;
	text-align: center;
	font-weight: 600;
}

/*  productsImg
---------------------------------*/

.productsImg {
	position: relative;
}
.mainimg {
	float: right;
	position: relative;
	width: 670px;
	height: 670px;
}
.slider__thumbnail {
	float: left;
	position: relative;
	width: 70px;
	padding: 22px 0;
}
.thumbnail__wrap {
	overflow: hidden;
	width: 70px;
	height: 630px;
	cursor: pointer;
}
.thumbnail__wrap .img__wrap {
	position: relative;
	width: 70px;
	height: 70px;
}
.thumbnail__wrap .img__wrap.active {
	border: solid 3px #e0e0e0;
}
.thumbnail__wrap .img__wrap img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.slide__arrow,.zoom__icon,
.popip__close {
	position: absolute;
	text-indent: -9999em;
	cursor: pointer;
}
.zoom__icon {
	top: 16px;
	left: 14;
	width: 35px;
	height: 36px;
	background-position: -900px -100px;
}
.mainimg .slide__arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #dedede;
}
.mainimg .slide__arrow {
	top: 50%;
	margin-top: -21px;
}
.mainimg .slide__arrow.prv {
	left: 0;
}
.mainimg .slide__arrow.nxt {
	right: 0;
}
.slide__arrow:after {
	display: block;
	position: absolute;
	border-bottom: solid 2px;
	border-left: solid 2px;
}
.mainimg .slide__arrow:after {
	top: 13px;
	width: 14px;
	height: 14px;
	border-color: #fff;
}
.mainimg .slide__arrow.prv:after {
	left: 16px;
	transform: rotate(45deg);
}
.mainimg .slide__arrow.nxt:after {
	right: 16px;
	transform: rotate(225deg);
}
.slider__thumbnail .slide__arrow {
	left: 0;
	width: 70px;
	height: 22px;
}
.slider__thumbnail .slide__arrow.prv {
	top: 0;
}
.slider__thumbnail .slide__arrow.nxt {
	bottom: 8px;
}
.slider__thumbnail .slide__arrow:after {
	top: 7px;
	left: 27px;
	width: 10px;
	height: 10px;
	border-color: #a9a9a9;
}
.slider__thumbnail .slide__arrow.prv:after {

	transform: rotate(135deg);
}
.slider__thumbnail .slide__arrow.nxt:after {
	transform: rotate(-45deg);
}
.popup__block {
	position: fixed;
	overflow-y: scroll;
	top: 0;
	left: 0;
	z-index: 3000;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba(0,0,0,.7);
}
.popup__block img {
	width: 100%;
}
.popup__inner {
	position: relative;
	top: 50%;
	width: 1230px;
	height: 1144px;
	margin: -572px auto 0;
	padding: 30px;
	background: #fff;
}
.popup__title {
	margin-bottom: 35px;
	font-size: 24px;
	line-height: 1.2;
}
.popup__img {
	float: right;
	width: 1000px;
	margin-right: 70px;
}
.popup__thumbnail {
	float: left;
	width: 70px;
	height: 70px;
	border: solid 3px #e0e0e0;
}
.popip__close {
	top: 25px;
	right: 30px;
}
.popip__close:before,.popip__close:after {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 2px;
	background: #444;
}
.popip__close:before {
	transform: rotate(45deg);
}
.popip__close:after {
	transform: rotate(315deg);
}

/*  productsCont
---------------------------------*/

.brandName {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	line-height: 1.4;
}
.ttl__products {
	margin-bottom: 14px;
	font-size: 24px;
	line-height: 1.4;
}
.price {
	margin-bottom: 10px;
	font-size: 14px;
}
.price b {
	display: inline-block;
	vertical-align: middle;
	margin-top: -6px;
	font-size: 24px;
}
.pointTxt {
	display: block;
	margin-bottom: 1.5em;
	color: #666;
	font-size: 13px;
}
.serialNumber {
	display: block;
	margin-bottom: 20px;
	color: #666;
}
.productsCont > ul {
	margin-bottom: 20px;
	border-top: solid 1px #e0e0e0;
}
.productsCont > ul > li {
	padding: 20px 0;
	border-bottom: solid 1px #e0e0e0;
}
.productsCont .description {
	margin-bottom: 15px;
	color: #666;
	font-size: 13px;
}
.productsCont > ul h3 {
	margin-bottom: 18px;
}
.choiceResult {
	font-weight: normal;
}
.colorChoice figure {
	width: 74px;
	height: 74px;
	border: solid 1px #fff;
}
.colorChoice .current figure {
	border-color: #e91111;
}
.sizeChoice li {
	vertical-align: top;
	margin: 0 10px 10px 0;
}
.sizeChoice li:nth-of-type(even) {
	margin-right: 0;
}
.sizeChoice li a {
	display: block;
	width: 180px;
	padding: 7px;
	border: solid 1px #e4e4e4;
	text-align: center;
}
.sizeChoice li.current a {
	border-color: #e91111;
}
.sizeChoice p a {
	font-size: 13px;
}
.choiceCont {
	letter-spacing: -.40em;
}
.choiceCont dt,.choiceCont dd {
	letter-spacing: normal;
}
.choiceCont dd {
	margin-bottom: 12px;
	font-weight: bold;
}
.choiceCont dd.quantity,.choiceCont dd.addCart {
	margin-bottom: 0;
	font-weight: normal;
}
.quantity,.addCart {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
}
.quantity {
	margin: 20px 10px 0 0;
}
.quantity label {
	overflow: hidden;
	font-size: 13px;
}
.quantity label select {
	display: block;
	margin-top: 10px;
	width: 70px;
	height: 71px;
	border: solid 1px #ccc;
	background: #eee;
	font-size: 16px;
	text-indent: 14px;
}
@-moz-document url-prefix() {
	.quantity label select  {
		text-indent: 5px;
	}
}
.addCart:before {
	display: block;
	position: absolute;
	top: 21px;
	left: 65px;
	width: 22px;
	height: 25px;
	background-position: -1000px -100px;
}
.addCart input {
	width: 290px;
	height: 70px;
	line-height: 70px;
	padding-left: 38px;
	background: #959595;
	color: #fff;
	font-size: 18px;
	text-align: center;
	font-weight: 600;
}
.addCart input.choiced {
	background: #e90f0f;
}
.seeLaterLink {
	margin-top: 25px;
}
.seeLaterLink.ico a:before {
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 20px;
	margin: -2px 7px 0 0;
	background-position: -1200px -100px;
}
.seeLaterLink a {
	color: #e90f0f;
}
.seeLaterLink a:hover {
	text-decoration: underline;
}
.noStock {
	color: #e90f0f;
}
.productsCont .amazonpay_bnr img {
    margin-top: 10px;
    width: 100%;
    }


/*  sec2
---------------------------------*/

.sec2 > div {
	opacity: 1 !important;
	line-height: 1.6;
}
.itemDescription {
	overflow: hidden;
	margin: 0.6em 0 1.2em;
}
.itemDescription dt {
	float: left;
}
.itemDescription dd {
	clear: right;
}

.table__product {
	width: auto;
	margin: 1em 0;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	background: #fff;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
}
section > .table__product:nth-last-of-type(1) {
	margin-bottom: 0;
}
.table__product th,.table__product td {
	padding: 0.8em;
	border-top: solid 1px #ccc;
	border-right: solid 1px #ccc;
}
.table__product th {
	background: #eee;
	/*font-weight: 600;*/
	font-weight: 500;
}
.table__product tbody th {
	min-width: 6em;
	padding-left: 18px;
	text-align: left;
}
.table__product td {
	min-width: 8em
}

@media screen and (max-width: 752px) {

	/*===================================
		商品詳細
	=====================================*/

	.products__detail .content .inner {
		padding: 30px 0 60px;
	}
	.products__detail .content .inner.sec1 {
		padding-top: 30px;
	}
	.productsImg,.productsCont {
		display: block;
	}
	.productsImg {
		width: auto;
		height: auto;
		margin: 0 20px;
	}
	.productsCont {
		width: auto;
	}
	section .ttl_sec {
		margin-bottom: 40px;
		font-size: 50px;
	}

	/*  productsImg
	---------------------------------*/

	.mainimg {
		float: none;
		width: 710px;
		height: 710px;
		margin-bottom: 80px;
	}
	.slider__thumbnail {
		float: none;
		width: auto;
	}
	.mainimg .slide__arrow {
		width: 60px;
		height: 60px;
	}
	.mainimg .slide__arrow {
		margin-top: -30px;
	}
	.mainimg .slide__arrow:after {
		top: 19px;
		width: 20px;
		height: 20px;
	}
	.mainimg .slide__arrow.prv:after {
		left: 24px;
	}
	.mainimg .slide__arrow.nxt:after {
		right: 24px;
	}
	.slide__dot {
		position: absolute;
		bottom: -30px;
		width: 100%;
		text-align: center;
		letter-spacing: -.40em;
	}
	.slide__dot .dot {
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;
		width: 16px;
		height: 16px;
		margin: 0 7px;
		border-radius: 50%;
		background: #ccc;
		text-align: left;
		text-indent: -9999em;
		cursor: pointer;
	}
	.slide__dot .dot.active {
		background: #666;
	}
	.popup__block {
		background: #fff;
	}
	.popup__inner {
		top: inherit;
		width: 750px;
		height: auto;
		margin: 0;
		padding: 114px 0 0;
	}
	.popup__img {
		float: none;
		width: 100%;
		margin: 0 0 40px;
	}
	.popup__thumbnail__wrap {
		margin: 0 10px;
		letter-spacing: -.40em;
	}
	.popup__thumbnail__wrap .img__wrap {
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;
		width: 100px;
		height: 100px;
		margin: 0 10px 20px;
	}
	.popup__thumbnail__wrap .img__wrap.active {
		border: solid 3px #e0e0e0;
	}
	.popip__close {
		top: 50px;
		right: 20px;
	}
	.popip__close:before,.popip__close:after {
		width: 89px;
		height: 4px;
	}

	/*  productsCont
	---------------------------------*/

	.productsCont {
		padding: 0 20px;
	}
	.brandName {
		margin-bottom: 20px;
		font-size: 26px;
	}
	.ttl__products {
		margin-bottom: 18px;
		font-size: 36px;
	}
	.price {
		margin-bottom: 23px;
		font-size: 18px;
	}
	.price b {
		margin-top: -8px;
		font-size: 40px;
	}
	.pointTxt {
		font-size: 22px;
	}
	.serialNumber {
		margin-bottom: 50px;
	}
	.productsCont > ul {
		margin: 0 -20px;
	}
	.productsCont > ul {
		margin-bottom: 50px;
	}
	.productsCont > ul > li {
		padding: 50px 20px;
	}
	.productsCont .description {
		margin-bottom: 19px;
		font-size: 20px;
	}
	.productsCont > ul h3 {
		margin-bottom: 22px;
		font-size: 28px;
}
	.colorChoice .list {
		margin: 0 -10px -20px;
	}
	.colorChoice .list li {
		margin: 0 10px 20px;
	}
	.colorChoice figure {
		width: 100px;
		height: 100px;
		border-width: 2px;
	}
	.sizeChoice li {
		vertical-align: top;
		margin: 0 20px 28px 0;
	}
	.sizeChoice li a {
		width: 345px;
		padding: 17px;
		border-width: 2px;
	}
	.sizeChoice p a {
		font-size: 28px;
	}
	.choiceCont dt,.choiceCont dd {
		letter-spacing: normal;
	}
	.choiceCont dd {
		margin-bottom: 24px;
		font-size: 28px;
	}
	.choiceCont dd.quantity,.choiceCont dd.addCart {
		margin-bottom: 0;
	}
	.quantity,.addCart {
		position: relative;
		display: inline-block;
		vertical-align: bottom;
	}
	.quantity {
		margin: 50px 20px 0 0;
	}
	.quantity label {
		font-size: 28px;
	}
	.quantity label select {
		margin-top: 18px;
		width: 100px;
		height: 115px;
		font-size: 36px;
		text-indent: 0;
	}
	@-moz-document url-prefix() {
		.quantity label select  {
			text-indent: 10px;
		}
	}
	.addCart:before {
		top: 33px;
		left: 140px;
		width: 40px;
		height: 46px;
		background-position: -1000px -200px;
	}
	.addCart input {
		width: 588px;
		height: 115px;
		line-height: 115px;
		padding-left: 66px;
		font-size: 36px;
	}
	.seeLaterLink {
		margin-top: 50px;
	}
	.seeLaterLink.ico a:before {;
		width: 46px;
		height: 44px;
		margin: -5px 16px 0 0;
		background-position: -1200px -200px;
	}
	.seeLaterLink a {
		font-size: 32px;
	}

	/*  sec2
	---------------------------------*/

	.sec2 .opntxt2:nth-of-type(1) {
		border-top: solid 1px #e0e0e0;
	}
	.sec2 .opntxt2,
	.sec2 .backtxt2 {
		display: block;
		position: relative;
		height: 100px;
		border-bottom: solid 1px #e0e0e0;
		background: #eee;
		line-height: 100px;
		font-size: 30px;
		cursor: pointer;
	}
	.sec2 .opntxt2 {
		padding-left: 20px;
		font-weight: 600;
	}
	.sec2 .backtxt2 {
		margin: 0 -20px 45px;
		padding-left: 80px;
		padding-right: 20px;
	}
	.sec2 .arrow.self:after {
		position: absolute;
		top: 50%;
		right: 20px;
		width: 24px;
		height: 24px;
		margin-top: -12px;
	}
	.sec2 .backtxt2.arrow.self:after {
		right: inherit;
		left: 20px;
		transform: rotate(45deg);
	}
	.sec2 > div {
		position: fixed;
		overflow-y: scroll;
		z-index: 1600;
		top: 0;
		right: -750px;
		width: 750px;
		height: 100%;
		padding: 0 20px;
		background: #fff;
		font-size: 28px;
	}
	.sec2 h4 {
		margin-bottom: 1em;
		font-size: 32px;
	}
	.itemDescription {
		margin: 1em 2em;
	}

	.table__product {
		width: 100%;
		font-size: 28px;
	}
	.table__product th,.table__product td {
		padding: 0.5em;
	}
	.table__product tbody th {
		min-width: inherit;
		padding-left: 32px;
	}
	.table__product td {
		min-width: inherit;
	}
}
