@charset "utf-8";
/*
pages.css
*/

div.ph_item,
div.detail_item{
	position: relative;
	width:49.5%;
	display: inline-block;
	vertical-align: top;
	}

	.photos {
		position: relative;
		width: calc( 100% - 40px);
		height: calc( 100% - 40px);
		overflow: hidden;
	}
	.photos .item {
		display: block;
		width: 42vw;
		height: 42vw;
	}

	div.ph_item .wrap_ph {
		position:relative;
		/* margin-top: -41.67vw; */
		width: 100%;
		height: auto;
	}

	@media screen and (max-width: 768px ) {
		div.ph_item { padding-top: 4vw;}
		.photos {
			width: 92vw;
			height: 92vw;
		}
		.photos .item {
			width: 92vw;
			height: 92vw;
		}
		div.ph_item .wrap_ph {
			margin-bottom: 5vw;
			/* margin-top: -92vw; */
			width: 92vw;
			height: auto;
		}
	}

#btn-prev,#btn-next {
	position: absolute;
	top: 20vw;
	width: 2vw;
	height: 2vw;
	z-index: 8;
	background-color:rgba(255,255,255,0.4);
	border-radius: 50%;
}

#btn-prev img,#btn-next img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -0.5vw;
	height: 1.2vw;
}
#btn-prev { left: 10px; }
#btn-next { right: 50px; transform:rotate(180deg); }
#btn-prev img { margin-top: -0.7vw;}
#btn-next img { margin-top: -0.55vw;}

@media screen and (max-width: 768px ) {
	#btn-prev,#btn-next {
		top: 39vw;
		width: 6vw;
		height: 6vw;
		z-index: 17;
	}
	#btn-next { right: 10px; }
	#btn-prev img,#btn-next img {
		margin-left: -1.5vw;
		height: 3.6vw;
	}
	#btn-prev img { margin-top: -1.7vw;}
#btn-next img { margin-top: -1.6vw;}

}

div.ph_item .tex1{
	letter-spacing: normal;
	text-align: left;
	margin-top:70px;
	font-size: 10px;
	}


	.wrap_ph .favorite {
		display: block;
		position: absolute;
		top: 5px;
		right: 50px;
		width: 25px;
		height: 25px;
		text-align: center;
		border-radius: 10px;
		cursor: pointer;
		transition: background-color 800ms ease;
		z-index: 10;
	}
	.wrap_ph .favorite:hover {
		background-color: rgba(255,255,255,1);
	}

	.wrap_ph .favorite img {
		display: block;
		margin: auto;
		padding-top: 5px;
		width: 18px;
	}
	.wrap_ph .baloon-favorite {
		position: absolute;
		display: block;
		top: -27px;
		right: -3px;
		width: 150px;
		z-index: 10;
		background:#fff;
		color: #000;
		font-size: 12px;
		font-weight: bold;
		letter-spacing: normal;
		box-shadow: #999 1px 2px 10px;
		display:none;
	}
	.wrap_ph .baloon-favorite::before {
		content: '';
		position: absolute;
		bottom: -7px;
		right: 60px;
		width: 10px;
		height: 10px;
		background-color: #bbb;
		transform: rotate(45deg);
	}
	.wrap_ph .baloon-favorite::after {
		content: '';
		position: absolute;
		bottom: -5px;
		right: 60px;
		width: 10px;
		height: 10px;
		background-color: #fff;
		transform: rotate(45deg);
	}
	@media screen and (max-width: 768px) {
		.wrap_ph .favorite {
			top: 15px;
			right: 10px;
		}

		.wrap_ph .baloon-favorite {
			top: -13px;
			right: 0;
			z-index: 100;
		}
		.wrap_ph .baloon-favorite::before {
			right: 12px;
		}
		.wrap_ph .baloon-favorite::after {
			right: 12px;
		}
	}
	.wrap_ph .loupe {
		position: absolute;
		display: block;
		right: 50px;
		bottom: 50px;
		width: 35px;
		cursor: pointer;
	}
	.wrap_ph .loupe img {
		width: 100%;
	}
	.wrap_ph .status {
		position: absolute;
		display: inline-block;
		left: 0;
		bottom: 50px;
		padding-left: 10px;
		width: 200px;
		text-align: left;
		font-size: 14px;
		color: rgba(0,0,0,0.5);
		z-index: 9;
		letter-spacing: 0;
	}
	.wrap_ph .information{
		position:absolute;
		z-index: 9;
		top: 10px;
		left: 10px;
		font-size: 10px;
		line-height: 1.0;
		letter-spacing: normal;
		color: #fff;
		font-weight: bold;
		text-align: center;
	}
	.wrap_ph .information span {
		display: inline-block;
		width: auto;
		height: 16px;
		vertical-align: middle;
		padding: 3px 7px 1px;
		margin-right: 5px;
	}
	.wrap_ph .information span.sale {
		background-color: #f00;
	}
	.wrap_ph .information span.goodprice {
		background-color: #1e9dd3;
	}
	.wrap_ph .information span.new {
		background-color: #000;
	}
	@media screen and (max-width: 768px) {
		.wrap_ph .loupe {
			right: 10px;
		}
		.wrap_ph .status {
			left: 0;
		}
		.wrap_ph .information {
			top: 15px; 
		}
	}
#photo-navigator {
	display: flex;
	justify-content: left;
	margin-top: 20px;
	width: 100%;
}
#photo-navigator .items {
	display: block;
	width: calc( (100% - 40px) / 5 - 4px);
	height: 20px;
	margin-left: 2px;
	margin-right: 2px;
	border-top: 3px solid #959595;
	cursor: pointer;
	font-size: 20px;
	line-height: 1.0;
}
#photo-navigator .current {
	border-top: 3px solid #85b758;
}

@media screen and (max-width: 768px) {
	.wrap_ph>img {
		width: 100%;
	}
	.wrap_ph .favorite,	.wrap_ph .loupe {
		right: 5px;
	}
	#photo-navigator {
		margin-top: 4.8vw;
		width: 100%;
	}
	#photo-navigator .items {
		width: calc( 20% - 4px);
		height: 4.8vw;
	}
}



div.detail_item {
	text-align: left;
	letter-spacing: normal;
	padding-left:40px;
	}

ul.list-itemtex li{
	text-align: left;
	}

ul.list-itemtex li.brand{
	font-size: 16px;
	font-weight: bold;
	}
ul.list-itemtex li.name,
ul.list-itemtex li.cord {
	font-size: 20px;
	line-height: 28px;
	font-weight: bold;
	}

ul.list-itemtex li.price{
	font-size: 14px;
	font-weight: bold;
	}
	ul.list-itemtex li.price.sale{
		color: #e60012;
		font-weight: bold;
		line-height: 1.5;
		}
		ul.list-itemtex li.price.list-price{
			font-size: 14px;
			text-decoration: line-through;
		}
		ul.list-itemtex li.price:not(.sale) span{
	color:#7e7e7e;
	}
/* === 2020.11 送料無料 ===*/
	ul.list-itemtex li.freeshipping{
		font-size: 12px;
		font-weight: bold;
		color:#7e7e7e;
	}
		ul.list-itemtex li.freeshipping a{
			display: inline-block;
			padding-top: 1px;
			border-bottom: 1px solid #a3a3a3;
			color:#7e7e7e;
		}
		ul.list-itemtex li.freeshipping a::after {
			content:'？';
			display: inline-block;
			width: 14px;
			height: 14px;
			margin-left: 5px;
			padding-top: 2px;
			text-align: center;
			font-size: 10px;
			font-weight: bold;
			line-height: 1.0;
			background-color: #7e7e7e;
			color: #fff;
			border-radius: 10px;
		}
/* === 2020.11 送料無料 ===*/

.wrap-variation{
	text-align: left;
	margin-top: 34px;
	}
.wrap-variation .color_selected {
	border: 1px solid #85b758;
}
.wrap-variation strong{
	font-size: 12px;
	font-weight: bold;
	}
.wrap-variation ul{
	text-align: left;
    letter-spacing: -0.4em;
	}
.wrap-variation ul li{
	display: inline-block;
	margin-right:5px;
	margin-bottom:5px;
	letter-spacing: normal;
	width: 90px;
	height: 90px;
	}
.wrap-variation ul li a img{
	width:100%;
	}

.modal-cart .headding, .modal-cart p{
	display: none;
}

ul.list-sizechoice{
	display: block;
	margin-top: 40px;
	text-align: left;
	background-color: #fff;
	}
ul.list-sizechoice li {
	text-align: left;
	border-bottom:1px solid #999999;
	margin-bottom:5px;
	padding-bottom: 5px;
	position: relative;
	}
ul.list-sizechoice li strong,
ul.list-sizechoice li span,
ul.list-sizechoice li a{
	display: inline-block;
	}
ul.list-sizechoice li strong{
	width:124px;
	font-size: 16px;
	}
ul.list-sizechoice li span{
	font-size: 11px;
	color: #999999;
	}
ul.list-sizechoice li a{
	width:155px;
	font-size: 12px;
	background: #000;
	color:#fff;
	text-align: center;
	border-radius: 12.5px;
	position: absolute;
	right:0;
	}
ul.list-sizechoice li a.soldout{
	background: none;
	color: #999999;
	}
ul.list-sizechoice li a.restock{
	background-color: #a3a3a3;
	color: #ffffff;
}
ul.list-sizechoice li a.coming{
	background: none;
	color: #999999;
}
ul.list-sizechoice li a:hover{
	opacity: 0.5;
}
@media screen and (max-width: 768px) {
	ul.list-sizechoice li a:hover{
		opacity: 1;
	}
}

.attention-order {
	padding: 24px 0 0;
}

.attention-order h2,
.attention-order p {
	text-align: left;
	font-size: 12px;
}
.attention-order h2 {
	font-weight: bold;
	line-height: 2.0;
	margin-top: 12px;
}

ul.attention{
	margin-top:65px;
	}
ul.attention li{
	display: inline-block;
	letter-spacing: normal;
	margin-right:50px;
	font-size:12px;
	font-weight: bold;
	}
ul.attention li:last-child{
	margin-right:0;
	}
ul.attention li a{
	border-bottom:1px solid #a3a3a3;
	padding-bottom: 5px;
	}

.wrap-copy{
	background: #ecebeb;
	margin-top:80px;
	}
.wrap-copy .innerWrap{
	padding: 40px 0;
	font-size:14px;
	line-height:32px;
	letter-spacing: normal;
	}


.wrap-spec{
	margin-top:24px;
	}
	.wrap-spec .innerWrap {
		padding-left: 0;
	}
.wrap-spec ul.spec-toggle{
	background: #eeeef0;
	max-width:365px;
	position: relative;
	height:34px;
	}
.wrap-spec ul.spec-toggle li{
	width:49%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 12px;
	line-height: 32px;
	position: relative;
	}
.wrap-spec ul.spec-toggle li a{
	display: block;
	}

.wrap-spec ul.spec-toggle.about:before,
.wrap-spec ul.spec-toggle.readme:before{
	content: " ";
    background: #fff;
    position: absolute;
    width: calc(50% - 2px);
    height: 30px;
    top: 2px;
	}
.wrap-spec ul.spec-toggle.about:before{
	left: 2px;
	transition: 0.5s;
	}
.wrap-spec ul.spec-toggle.readme:before{
	left: calc(50% - 1px);
	transition: 0.5s;
	}


.wrap-spec dl.spec-about,
.wrap-spec .spec-readme{
	margin-top:30px;
	/*min-height:250px;*/
	}
.wrap-spec dl.spec-about dt,
.wrap-spec dl.spec-about dd{
	letter-spacing: normal;
	display: inline-block;
	text-align: left;
	font-size: 12px;
	line-height:30px;
	}
.wrap-spec dl.spec-about dt{
	width:100px;
	}
.wrap-spec dl.spec-about dd{
	width:calc(100% - 100px);
	}

.wrap-spec .spec-readme {
	letter-spacing: normal;
	display: inline-block;
	text-align: left;
	font-size: 12px;
	max-width:50%;
	display: none;
	}




.wrap-related,
.wrap-recently,
.wrap-relatedstory{
	margin-top:80px;
	}
.wrap-related h2,
.wrap-recently h2,
.wrap-relatedstory h2{
    letter-spacing: normal;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid #000;
    display: inline-block;
    margin-left: -40px;
    padding-left: 40px;
	padding-bottom: 2px;
	}
.wrap-related h2 span,
.wrap-recently h2 span,
.wrap-relatedstory h2 span{
	position: absolute;
	font-size:12px;
	top:35px;
	left:40px;
	}


ul.list-items{
	display: flex;
	flex-flow: row wrap;
	justify-content: left;
	margin-top:60px;
	}
ul.list-items > li{
	display: inline-block;
	width:calc((92vw - 82px) / 4);
	margin-right:15px;
	margin-left: 15px;
	margin-bottom: 2.7vw;
	vertical-align: top;
	letter-spacing: normal;
	position: relative;
	}
	@media screen and (max-width: 768px) {
		ul.list-items > li{
			margin-bottom: 9.66vw;
		}
	}

ul.list-items > li a{
	display: block;
	}

/* ul.list-items > li:nth-child(4n){
	margin-right:0;
	} */
ul.list-items > li .ph{
	display: block;
	/* margin-bottom:10px; */
	position: relative;
	height: calc(( 100vw - 120px ) / 3);
	}

	#reco1 ul.list-items > li .ph{
	height: calc(( 92vw - 120px ) / 4);
}

	.wrap-related ul.list-items > li .ph,
	.wrap-recently ul.list-items > li .ph {
		height: calc(( 92vw - 82px ) / 4);
	}
	ul.list-items > li .ph img{
		width: 100%;
		height: 100%;
	}
	ul.list-items > li .ph.ph-story img{
	position: absolute;
	width: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	}


ul.list-items > li .ph ul.icons{
	position: absolute;
	margin: 0 6px;
	top: 0;
	text-align: left;
	width: calc(100% - 16px);
	letter-spacing: -0.4em;
	}
ul.list-items > li .ph ul.icons li{
	display: inline-block;
	margin-right:4px;
	text-align: center;
	width:auto;
	height:16px;
	line-height:16px;
	letter-spacing: normal;
	color:#fff;
	font-size:10px;
	padding:0 5px;
	font-weight: bold;
	}
ul.list-items > li .ph ul.icons li:nth-child(4n){
	margin-right:0;
	}


li.icon-new{ background: #000; }
li.icon-sale, li.icon-off { background: red; }
li.icon-goodprice { background: #1e9dd3; }

ul.list-items > li p{
	text-align: left;
	font-weight: bold;
	line-height: 1.2;
/*	padding-right: 5px;*/

}

ul.list-items > li p.gender{
	font-size:11px;
	margin-bottom:3px;
	}
ul.list-items > li p.brand{
	font-size:10px;
	margin-bottom: 3px;
	}
ul.list-items > li p.name{
	display: -webkit-box;
	display: box;
	-webkit-line-clamp: 2;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	overflow: hidden;
	font-size:14px;
	color: #666;
	line-height: 1.33;
	margin-bottom: 6px;
	font-weight: 700;
	max-height: 36px;
}
	ul.list-items > li p.price{
	font-size:11px;
	}
ul.list-items > li p.gender span {
	padding-left: 10px;
}
	/* ul.list-items > li.icon-sale .ph ul.icons li.icon-sale p.price,
ul.list-items > li.icon-off .ph ul.icons li.icon-off p.price{
	text-decoration: line-through;
	} */

ul.list-items > li p.price span{
	font-weight: normal;
	font-size:10px;
}

ul.list-items > li p.price.sale {
	color: #e60012;
}
ul.list-items > li p.price.list-price {
	/* font-size: 10.5px; */
	text-decoration: line-through;
}

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

	ul.list-items > li p.gender{
		font-size:2.90vw;
		}
	ul.list-items > li p.brand{
		font-size:2.66vw;
		}
	ul.list-items > li p.name{
		max-height: initial;
		font-size:3.38vw;
	}
		ul.list-items > li p.price{
		font-size:2.66vw;
		}
		ul.list-items > li p.price.list-price {
			/* font-size: 2.41vw; */
			font-size:2.66vw;
		}
			ul.list-items > li p.gender span {
		padding-left: 2.66vw;
	}
}

ul.list-story{
	margin-top:60px;
	}
ul.list-story > li{
	display: inline-block;
	width:calc((100% - 40px) / 3);
	margin-right:20px;
	vertical-align: top;
	letter-spacing: -0.4em;
	text-align: left;
	}
ul.list-story > li:nth-child(3n){
	margin-right:0;
	}
ul.list-story > li a{
	display: block;
	border-bottom:1px solid #ccc;
	padding-bottom:20px;
	margin-bottom:20px;
	}
ul.list-story > li a:hover{
	border-bottom:1px solid #85b758;
	}

ul.list-story > li .ph,
ul.list-story > li .tex{
	vertical-align: middle;
	}
ul.list-story > li .ph{
	display: inline-block;
	width:70px;
	margin-right:15px;
	}
ul.list-story > li .ph img{
	width:100%;
	border: 1px solid #fff;
	}

ul.list-story > li .tex{
	display: inline-block;
	width:calc(100% - 70px - 15px);
	letter-spacing: normal;
	}
ul.list-story > li .tex p{
	text-align: left;
	font-size: 12px;
	font-weight: bold;
	}

ul.list-story > li .tex p.kind-story{
	font-size:10px;
	}




/*
============================================================= 一覧表示
*/

.contentBody.mode-list{
	padding-top: 130px;
	margin-top:0;
	}
.contentBody.mode-list h2{
	font-size:100px;
	letter-spacing: normal;
	position: absolute;
    right: -5%;
	bottom:0;
    transform: rotate(270deg);
    transform-origin: 50% 50%;
    font-weight: bold;
	}

.wrap-search-swith{
	width: 100%;
	height: 77px;
	margin-top:20px;
	border-top:1px solid #e5e5e5;
	border-bottom:1px solid #e5e5e5;
	background: #f7f7f7;
	}
.wrap-search-swith ul{
	display: flex;
	box-sizing: border-box;
	width:100%;
	letter-spacing:-0.4em;
	padding-top:17px;
	/* margin-bottom: -1px; */
	}
.wrap-search-swith ul li{
	display: list-item;
	min-width: 200px;
	height: 60px;
	padding:22px 20px 18px;
	letter-spacing: normal;
	line-height: 1.0;
	}
	.wrap-search-swith ul li:nth-child(2) {
		padding: 20px 20px ;
	}
	.wrap-search-swith ul li img {
		display: inline-block;
		width: auto;
		height: 17px;
	}
	.wrap-search-swith ul li:nth-child(2) img {
		height: 16px;
	}
	@media screen and ( max-width: 768px ) {
		.wrap-search-swith{
			height: 83px;
			}
			.wrap-search-swith ul{
				padding-top: 22px;
			}
		.wrap-search-swith ul li {
			height: 60px;
			min-width: 44.5vw;
			padding:13px 20px 18px;
		}
		.wrap-search-swith ul li:nth-child(2) {
			padding: 16px 20px;
		}
		.wrap-search-swith ul li img {
			height: 17px;
		}
	}

	.wrap-search-swith ul li.link-abc {
		cursor: pointer;
	}
	.wrap-search-swith ul li.link-abc:hover {
		opacity: 0.6;
	}
.wrap-search-swith ul li span{
	display: inline-block;
	margin-left:10px;
	padding-top: 3px;
	font-size: 12px;
	font-weight: normal;
	font-family: -apple-system, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
	letter-spacing: normal;
}
.wrap-search-swith ul li span::before {
	content:"(";
	padding-right: .2em;
}
.wrap-search-swith ul li span::after {
	content:")";
	padding-left: .2em;
}

.wrap-search-swith ul li:nth-child(2){
	background:#fff;
	border-top:1px solid #d2d2d2;
	border-left:1px solid #d2d2d2;
	border-right:1px solid #d2d2d2;
	margin-bottom:-1px;
	margin-right:10px;
	border-radius:10px 10px 0 0;
	}
	@media screen and ( max-width: 768px ) {
		.wrap-search-swith ul li:nth-child(2){
			border-radius:1.5vw 1.5vw 0 0;
		}
	}
.wrap-search-result{
	margin-top:40px;
	}

.wrap-search-result ul.count-result li{
	text-align: left;
	letter-spacing: normal;
	border-left:1px solid #85b758;
	padding-left:10px;
	padding-top: 10px;
	margin-bottom:30px;
	}
.wrap-search-result ul.count-result li strong{
	font-size:50px;
	}
.wrap-search-result ul.count-result li span{
	font-size:12px;
	display: inline-block;
	font-weight: bold;
	margin-left: 10px;
	}
.wrap-search-result ul.count-result li img{
	display: block;
	height: 22px;
	}

.serp-message {
	text-align: left;
	margin: 40px 0;
	letter-spacing: normal;
}
.serp-message p {
	text-align: left;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5;
}

.wrap-search-result ul.count-result li:nth-child(2){
	opacity:0.2;
	border-left:1px solid #000;
	}


.wrap-search-result ul.list-tag li{
	text-align: center;
	letter-spacing: normal;
	display: inline-block;
	font-size: 12px;
	line-height:20px;
	margin-right: 5px;
    margin-bottom: 5px;
	}
.wrap-search-result ul.list-tag li span{
    display: block;
    border: 1px solid #ccc;
    color: #000;
    border-radius: 11px;
    padding: 0 10px;
    height: 22px;
	}
.wrap-search-result ul.list-tag li span::after{
	content: "\0d7";
	display: inline-block;
	margin-left:5px;
	font-size:14px;
	}

.wrap-search-result ul.list-button{
	margin-top:40px;
	}
.wrap-search-result ul.list-button li{
	text-align: center;
	letter-spacing: normal;
	display: inline-block;
	font-size: 12px;
	line-height:20px;
	margin-right:10px;
	width:190px;
	cursor: pointer;
	}
.wrap-search-result ul.list-button li:nth-child(1) {
	background: #000;
	color:#fff;
	line-height:30px;
	}
	.wrap-search-result ul.list-button li:nth-child(1):hover {
		background: rgba(0,0,0,0.8);
	}
.wrap-search-result ul.list-button li:nth-child(2){
	text-align: left;
	font-size:10px;
	margin-left:20px;
	color: #999;
	}
	.wrap-search-result ul.list-button li:nth-child(2):hover {
		color: #666;
	}
.wrap-sort{
	position: relative;
	text-align: left;
	}
.wrap-sort select{
	box-sizing: border-box;;
	margin-top:20px;
	outline:none;
	text-indent: 0.01px;
	text-overflow: '';
	background: none transparent;
	vertical-align: middle;
	font-size: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	padding: 0 10px;
	border:1px solid #ddd;
	background-color: #fff;
	color: #000;
	width:130px;
	border-radius: 0;
	height: 25px;
	line-height: 1.0;
}
	.wrap-sort::after {
		position: absolute;
		content: "";
		width:15px;
		height: 10px;
		top: 28px;
		left: 110px;
		background: url(../gs-images/common/selector.svg) no-repeat 50% 50%;
		background-size: auto 8px;
	}
.wrap-sort select option {
	display: block;
	width: 130px;
	background-color: #fff;
	}


ul.select-mode{
	margin-top:40px;
	border-top:1px solid #ccc;
	display: inline-block;
	letter-spacing: -0.4em;
    width: 50%;
	}
ul.select-mode li{
	text-align: center;
	letter-spacing: normal;
	display: inline-block;
	font-size: 12px;
	line-height:20px;
	width:50%;
	padding:5px 0;
	letter-spacing: normal;
	}
ul.select-mode li a{
	border-bottom:1px solid #fff;
	display: block;
	}


.wrap-search-list ul.list-items{
	margin-top:60px;
	}
.wrap-search-list ul.list-items > li,
.wrap-search-list ul.list-items > li:nth-child(4n){
	display: block;
	width:calc((100vw - 120px) / 3);
	height:calc((100vw - 120px) / 3 + 16vw);
	overflow: hidden;
	margin-right:7px;
	margin-left: 7px;
	letter-spacing: -0.4em;
	text-align: left;
	position: relative;
	transition: 0.5s;
	}
.wrap-search-list ul.list-items > li:nth-child(3n){
	margin-right:0;
	}
.wrap-search-list ul.list-items > li .detail,ul.list-items > li .detail{
	bottom:10px;
	left:0;
	letter-spacing: normal;
	padding: 10px;
	background-color:rgba(255,255,255,0.4);
	}
.wrap-search-list ul.list-items > li .ph.ph-story{
	width: calc( ( ( 100vw - 80px ) / 3) * 0.63 );
	height: calc( ( 100vw - 80px ) / 3  );
	margin:0 auto;
	overflow: hidden;
	}
	@media screen and (max-width: 768px ) {
		.wrap-search-list ul.list-items > li,
		.wrap-search-list ul.list-items > li:nth-child(4n){
			height:calc(100vw - 40px + 25vw ) ;
		}

		.wrap-search-list ul.list-items > li .ph.ph-story{
			height: calc( 100vw - 40px );
			width: calc( ( 100vw - 40px ) * 0.63);
			}
		
	}
.wrap-search-list ul.list-items > li .tex{
	letter-spacing:normal;
	/* position: absolute;
	bottom: 7.2%; */
	/* right:0;
	width:70%;
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#bfffffff,EndColorStr=#bfffffff);
	background-color: rgba(255, 255, 255, 0.5); */
	padding:10px;
	text-align: left;
	}
	@media screen and (max-width: 768px ) {
		.wrap-search-list ul.list-items > li .tex{
			bottom: 7.5%;
		}
	}
.wrap-search-list ul.list-items > li .tex p.kind-story{
	text-align: left;
	font-family: Arial, Helvetica, 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size:11px;
	margin-bottom:10px;
	}
.wrap-search-list ul.list-items > li .tex p.title-story{
	display: -webkit-box;
	display: box;
	-webkit-line-clamp: 2;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	overflow: hidden;
	text-align: left;
	font-size:14px;
	font-weight: 700;
	line-height: 1.33;
	color: #666;
	max-height: 36px;
	}
	.wrap-search-list ul.list-items > li .tex p.title-story span {
		display: block;
		margin-bottom: 11px;
	}
	.wrap-search-list ul.list-items > li .tex time {
		display: inline-block;
		text-align: left;
		font-size: 0.7vw;
		width: auto;
		margin-right: auto;
		margin-left: 0;
	}

@media screen and (max-width: 768px) {
	.wrap-search-list ul.list-items > li .tex p.kind-story{
		font-size:2.66vw;
		}
	.wrap-search-list ul.list-items > li .tex p.title-story{
		max-height: initial;
		font-size:2.9vw;
		}
		.wrap-search-list ul.list-items > li .tex time {
			font-size: 2.3vw;
			display: none;
		}
	
}
.wrap-search-list.column6 ul.list-items > li,
.wrap-search-list.column6 ul.list-items > li:nth-child(3n){
	display: inline-block;
	width:calc((100% - 60px) / 6);
	height:auto;
	margin-left:4px;
	margin-right:5px;
	vertical-align: top;
	letter-spacing: -0.4em;
	text-align: left;
	position: relative;
	transition: 0.5s;
	margin-bottom:20px;

	}
/* .wrap-search-list.column6 ul.list-items > li:nth-child(6n){
	margin-right:0;
	} */
.wrap-search-list.column6 ul.list-items > li .ph{
	margin-bottom:5px;
	height: calc(( 92vw - 42px ) / 6);
	}

.wrap-search-list.column6 ul.list-items > li .detail{
	position: relative;
	bottom:auto;
	left:auto;
	text-align: left;
	margin-right: auto;
	margin-left: 0;
	}
.wrap-search-list.column6  ul.list-items > li .tex{
	width: 100%;
    bottom: -50%;
    top: unset;
	}

.wrap-search-list.column6 ul.list-items > li .tex p.kind-story{
	font-size:14px;
	margin-bottom:5px;
	}
.wrap-search-list.column6 ul.list-items > li .tex p.title-story{
	font-size:10px;
	}
.wrap-search-list.column6 ul.list-items > li .tex p.title-story br{
	display: none;
	}

	.wrap-search-list.column6 ul.list-items > li.story {
		display: none;
	}
	


.loading-spinner {
	width: 100%;
	text-align: center;
}
.loading-spinner img {
	display: block;
	width: 3.5vw;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.loading-spinner img {
		width: 7.2vw;
	}
}
/* photoviewer for smartphone */
.sp-photos {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background:rgb(0,0,0,0.6);
	z-index: 30;
	transition: all .3s linear;
}
.bg-photos {
	position: absolute;
	top:0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 30;
}

#viewer {
	position: absolute;
	top:0;
	left: 0;
	margin-top: 0;
	z-index: 32;
	transition: all .15s linear;
	opacity:0;
}
#viewer.visible {
	margin-top: calc( 50vh - 48vw);
	opacity: 1.0;
	transition: all .15s linear;
}
#viewer div {
	width: 100vw;
	height: 100vw;
	background: center / contain no-repeat;
	overflow: auto;
}
#viewer div img {
	position: relative;
	display: block;
	max-width: 100%;
	transition: all .3s linear;
}
#viewer div.zoom img {
	max-width: 200vw;
	width: 200vw;
	height: auto;
}
#viewer-status {
	box-sizing: border-box;
	position: absolute;
	z-index: 31;
	top: 0;
	left: 0;
	width: 100vw;
	height: 10vh;
	color: #fff;
	font-size: 3.4vw;
	text-align: left;
	background-color: rgba(0,0,0,0.2);
	padding:2.8vw;
	letter-spacing: normal;
}
/* PAGER */
.list-pager {
	width: 100%;
	padding-bottom: 10px;
	text-align: center;
}
.list-pager ul {
	display: flex;
	flex-flow: row;
	justify-content: center;
}
.list-pager li,.list-pager li a,.list-pager span {
	display: block;
	box-sizing: border-box;
	width: 43px;
	height: 43px;
	font-size: 14px;
	line-height: 1.0;
	text-align: center;
	letter-spacing: normal;
	font-weight: bold;
	color: #000;
}
.list-pager li a,.list-pager li span {
	padding-top: 14px;
}
.list-pager img {
	display: block;
	height: 12px;
	width: auto;
	margin: 0 auto;
}
.list-pager .current span{
	border:1px solid #000;
}
.list-pager .top img,.list-pager .previous img {
	transform: rotate(180deg);
}


.contentBody.feature {
	padding-top: 150px;
	letter-spacing: normal;
}
@media screen and (max-width: 768px) {
	.contentBody.feature {
		padding-top: 30vw;
	}	
}