@charset "UTF-8";

/*
 * サイト全体に
 * 共通するレイアウト
 * を記載
 */


/* ==========================================================
[ Layout CSS - Contents ]

base setting
container
header
wrapper
keyvisual
section_main
pnav
bg
section_low
graph_list
rank_list
box_mystyle
why_list
point_list
pagetop
bottom_links
footer

========================================================== */



/* ---------------------------------------------
*   base setting
--------------------------------------------- */
body {
	line-height: 1.5;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 16px;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}


/*  link
--------------------------------------------- */
a {
	color: inherit;
	text-decoration: none;
}


/*  img
--------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}


/*  clearfix
--------------------------------------------- */
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}


/*  responsive
--------------------------------------------- */

/* -- general -- */
.pc_only {
	display: initial;
}
.sp_only {
	display: none;
}
@media screen and (max-width: 640px) {
	.pc_only {
		display: none;
	}
	.sp_only {
		display: initial;
	}
}


/*  other
--------------------------------------------- */

/* -- hover_opacity -- */
.hover {
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.hover:hover {
	opacity: .7;
}



/* ---------------------------------------------
*   container
--------------------------------------------- */
.container {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 1220px;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
}
.container:after {
	content: "";
	clear: both;
	display: block;
}
@media screen and (max-width: 640px) {
	.container {
		padding-right: 6.25%;
		padding-left: 6.25%;
	}
}



/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 1200px;
	height: 60px;
	padding: 19px 30px 0;
	margin: 0 auto;
}
@media screen and (max-width: 640px) {
	.header {
		padding: 19px 15px 10px;
	}
}


/*  header_logo
--------------------------------------------- */
.header_logo {
	display: block;
	width: 100px;
	height: 20px;
	line-height: 20px;
}
@media screen and (max-width: 640px) {
	.header_logo {
		width: 79px;
		height: 14px;
		line-height: 14px;
	}
}




/* ---------------------------------------------
*   wrapper
--------------------------------------------- */



/* ---------------------------------------------
*   keyvisual
--------------------------------------------- */
.keyvisual {
	max-width: 1200px;
	text-align: center;
	margin: 0 auto 90px;
}
.keyvisual .title_keyvisual img {
	width: 100%;
	max-width: initial;
}
@media screen and (max-width: 640px) {
	.keyvisual {
		margin-bottom: 20px;
	}
	.keyvisual .title_keyvisual img {
		max-width: 100%;
	}
}



/* ---------------------------------------------
*   section_main
--------------------------------------------- */


/* main_header
--------------------------------------------- */
.main_header {
	position: relative;
	text-align: center;
	margin-bottom: 90px;
}
.main_header:before {
	content: "";
	position: absolute;
	top: 84px;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
}
@media screen and (max-width: 640px) {
	.main_header {
		margin-bottom: 40px;
	}
	.main_header:before {
		top: 59px;
		height: 2px;
		background-color: #000;
	}
}

/* -- itme_title -- */
.main_header .item_title {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 14px 0 48px;
	background-color: #fff;
	margin-bottom: 15px;
	width: 112px;
}
@media screen and (max-width: 640px) {
	.main_header .item_title {
		width: 72.5px;
		padding: 0 5px 0 16px;
		margin-bottom: 10px;
	}
}

/* -- title_caption -- */
.main_header .title_caption {
	font-size: 2em;
}
@media screen and (max-width: 640px) {
	.main_header .title_caption {
		font-size: 1em;
	}
}


/* main_body
--------------------------------------------- */
.main_body {}

/* -- graph_box -- */
.main_body .graph_box {
	margin-bottom: 110px;
}
@media screen and (max-width: 640px) {
	.main_body .graph_box {
		margin-bottom: 50px;
	}
}

/* graph_box_text */
.main_body .graph_box .graph_box_text {
	float: left;
	width: 58.03333%;
}
@media screen and (max-width: 640px) {
	.main_body .graph_box .graph_box_text {
		float: none;
		width: 100%;
	}
}

/* item_text */
.main_body .graph_box .graph_box_text .item_text {
	font-size: 1.5em;
}
@media screen and (max-width: 640px) {
	.main_body .graph_box .graph_box_text .item_text {
		font-size: 1em;
	}
}

/* item_image */
.main_body .graph_box .graph_box_text .item_image {
	width: 62.7%;
	margin: 40px auto 0;
}
@media screen and (max-width: 640px) {
	.main_body .graph_box .graph_box_text .item_image {
		width: 76%;
		margin: 15px auto 45px;
	}
}

/* graph_box_image */
.main_body .graph_box .graph_box_image {
	float: right;
	width: 41.66666%;
}
@media screen and (max-width: 640px) {
	.main_body .graph_box .graph_box_image {
		float: none;
		width: 100%;
	}
}



/* ---------------------------------------------
*   pnav
--------------------------------------------- */
.pnav {
	margin-bottom: 60px;
}
.pnav.lower {
	margin-bottom: 150px;
}
.pnav .item_anchor {
	float: left;
	width: 30%;
	margin-left: 5%;
}
.pnav .item_anchor:first-child {
	margin-left: 0;
}
.pnav.lower .item_anchor:first-child {
	margin-left: 16.9%;
}
@media (max-width: 738px) and (orientation: landscape) {
	.pnav.upper {
		margin-bottom: 30px;
	}
	.pnav.lower {
		margin-bottom: 75px;
	}
	.pnav .item_anchor {
		margin-left: 3%;
	}
	.pnav .item_anchor:first-child {
		margin-left: 1.9%;
	}
	.pnav.lower .item_anchor:first-child {
		margin-left: 18.7%;
	}
}
@media screen and (max-width: 640px) {
	.pnav {
		margin-bottom: 25px;
	}
	.pnav.lower {
		margin-bottom: 60px;
	}
	.pnav .item_anchor {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.pnav .item_anchor:first-child {
		margin-left: 0;
	}
	.pnav.lower .item_anchor:first-child {
		margin-left: 0;
	}
}


/* item_image
--------------------------------------------- */
.pnav .item_image {
	display: table;
	width: 100%;
	margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
	.pnav .item_image {
		margin-bottom: 20px;
	}
}

/* -- item_image_inner -- */
.pnav .item_image .item_image_inner {
	display: table-cell;
	vertical-align: middle;
}
.pnav .item_image .item_image_inner img {
	width: 100%;
}



/* ---------------------------------------------
*   bg
--------------------------------------------- */
.bg_gr1 {
	background-color: #f5f5f5;
}
.bg_gr2 {
	background-color: #e7f2e9;
}
.bg_pk {
	background-color: #f9eff7;
}



/* ---------------------------------------------
*   section_low
--------------------------------------------- */
.section_low {
	padding-top: 150px;
	padding-bottom: 160px;
}
.section_low.skin_first {
	padding-bottom: 0;
}
.section_low.skin_second {
	padding-top: 110px;
}
.section_low.skin_place {
	padding-top: 110px;
}
.section_low.skin_third {
	padding-top: 110px;
	padding-bottom: 80px;
}

@media (max-width: 738px) and (orientation: landscape) {
	.section_low {
		padding-top: 75px;
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 640px) {
	.section_low {
		padding-top: 50px;
		padding-bottom: 75px;
	}
	.section_low.skin_second {
		padding-top: 50px;
	}
	.section_low.skin_third {
		padding-top: 50px;
	}
	.section_low.skin_place {
		padding-bottom: 50px;
		padding-top: 50px;
	}
}


/* low_header
--------------------------------------------- */
.low_header {
	text-align: center;
}

/* -- item_title -- */
.low_header .item_title {
	display: inline-block;
}

/* text_image */
.low_header .item_title .text_image {
	margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
	.low_header .item_title .text_image {
		margin-bottom: 10px;
	}
	.low_header .item_title .text_image img[alt="Point"] {
		width: 67px;
	}
	.low_header .item_title .text_image img[alt="Quality"] {
		width: 102px;
	}
	.low_header .item_title .text_image img[alt="Surprise"] {
		width: 111px;
	}
	.low_header .item_title .text_image img[alt="Place"] {
		width: 71px;
	}
	.low_header .item_title .text_image img[alt="Music Genre"] {
		width: 166px;
	}
}

/* item_text */
.low_header .item_title .item_text {
	display: inline-block;
	font-size: 2em;
	padding: 0 8px 20px;
	border-bottom: 3px solid #000;
	line-height: 1.3;
}
.low_header .item_title .item_text small {
	font-size: .4375em;
}
@media screen and (max-width: 640px) {
	.low_header .item_title .item_text {
		font-size: 1em;
		padding: 0 10px 10px;
		border-width: 2px;
	}
}


/* low_body
--------------------------------------------- */
.low_body .item_main_image {
	margin-top: 15px;
}
@media screen and (max-width: 640px) {
	.low_body .item_main_image {
		margin-top: 30px;
	}
}
.low_body .btn_link {
	margin-top: 35px;
	text-align: center;
}
.low_body .btn_link a {
	display: inline-block;
	width: 360px;
}
@media screen and (max-width: 640px) {
	.low_body .btn_link {
		margin-top: 50px;
	}
	.low_body .btn_link a {
		width: 100%;
		max-width: 360px;
	}
}



/* ---------------------------------------------
*   graph_list
--------------------------------------------- */
.graph_list {
	padding-top: 50px;
}
@media screen and (max-width: 640px) {
	.graph_list {
		padding-top: 35px;
	}
}


/* item_list
--------------------------------------------- */
.graph_list .item_list {
	position: relative;
	margin-top: 20px;
}
.graph_list .item_list:first-child {
	margin-top: 0;
}
.graph_list .item_list:after {
	content: "";
	display: block;
	clear: both;
}
@media screen and (max-width: 640px) {
	.graph_list .item_list {
		margin-top: 15px;
	}
}

/* -- item_image -- */
.graph_list .item_list .item_image {
	position: relative;
	width: 10.666667%;
	z-index: 1;
	float: left;
}
.graph_list .item_list .item_image:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	display: block;
	width: 50%;
	height: 100%;
}
@media screen and (max-width: 640px) {
	.graph_list .item_list .item_image {
		width: 86px;
	}
}

/* skin */
.graph_list.item_gr .item_list .item_image:before {
	background-color: #f9eff7;
}

/* -- item_bar -- */
.graph_list .item_list .item_bar {
	position: absolute;
	display: block;
	top: 26.3%;
	height: 0;
	padding-top: 5%;
}
.graph_list.item_gr .item_01 .item_bar {
	width: 100%;
}
.graph_list.item_gr .item_02 .item_bar {
	width: 82.25%;
}
.graph_list.item_gr .item_03 .item_bar {
	width: 75.25%;
}
.graph_list.item_gr .item_04 .item_bar {
	width: 69.25%;
}
.graph_list.item_gr .item_05 .item_bar {
	width: 54.75%;
}
.graph_list.item_gr .item_06 .item_bar {
	width: 53%;
}
.graph_list.item_gr .item_07 .item_bar {
	width: 36%;
}

@media screen and (max-width: 640px) {
	.graph_list .item_list .item_bar {
		top: 22.5px;
		height: 0;
		padding-top: 40px;
	}
	.graph_list.item_gr .item_01 .item_bar {
		width: 100%;
	}
	.graph_list.item_gr .item_02 .item_bar {
		width: 83.92857142857143%;
	}
	.graph_list.item_gr .item_03 .item_bar {
		width: 76.32142857142857%;
	}
	.graph_list.item_gr .item_04 .item_bar {
		width: 70.571429%;
	}
	.graph_list.item_gr .item_05 .item_bar {
		width: 63.571429%;
	}
	.graph_list.item_gr .item_06 .item_bar {
		width: 62.142857%;
	}
	.graph_list.item_gr .item_07 .item_bar {
		width: 48.142857%;
	}
}


/* skin */
.graph_list.item_gr .item_list .item_bar {
	background-color: #e6d7ec;
}

/* -- item_text -- */
.graph_list .item_list .item_text {
	position: absolute;
	left: 11.2%;
	width: 82.5%;
	display: block;
	vertical-align: bottom;
	font-size: 1.25em;
	line-height: 20px;
}
.graph_list .item_list .item_text img {
	margin-right: 16px;
	vertical-align: baseline;
}
@media screen and (max-width: 640px) {
	.graph_list .item_list .item_text {
		left: 85px;
		width: auto;
		font-size: .8125em;
		line-height: 20px;
	}
}

/* skin */
.graph_list.item_gr .item_list .item_text {
	top: 82%;
}
@media screen and (max-width: 640px) {
	.graph_list.item_gr .item_list .item_text {
		top: 70px;
	}
	.graph_list.item_gr .item_list .item_text img {
		width: 52.5px;
		margin-right: 8px;
	}
}



/* ---------------------------------------------
*   rank_list
--------------------------------------------- */
.rank_list {
	padding-top: 110px;
	letter-spacing: -.4em;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.rank_list {
		padding-top: 0;
		margin-top: 50px;
	}
}


/* item_list
--------------------------------------------- */
.rank_list .item_list {
	display: inline-block;
	width: 31.6666666%;
	vertical-align: top;
	letter-spacing: normal;
	margin-left: 2.5%;
}
.rank_list .item_list.item_01,
.rank_list .item_list.item_04 {
	margin-left: 0;
}
.rank_list .item_list.item_04,
.rank_list .item_list.item_05,
.rank_list .item_list.item_06 {
	margin-top: 50px;
}
@media screen and (max-width: 640px) {
	.rank_list .item_list {
		width: 46%;
		margin-left: 0;
	}
	.rank_list .item_list.item_02,
	.rank_list .item_list.item_04,
	.rank_list .item_list.item_06 {
		margin-left: 7.142857142%;
	}
	.rank_list .item_list.item_03,
	.rank_list .item_list.item_04,
	.rank_list .item_list.item_05,
	.rank_list .item_list.item_06 {
		margin-top: 25px;
	}
}

/* -- item_image -- */
.rank_list .item_list .item_image {
	margin-bottom: 20px;
}
.rank_list .item_list .item_image img {
	width: 100%;
}
@media screen and (max-width: 640px) {
	.rank_list .item_list .item_image {
		margin-bottom: 10px;
	}
}

/* -- text_rank -- */
.rank_list .item_list .text_rank {
	display: block;
	margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
	.rank_list .item_list .text_rank {
		margin-bottom: 10px;
	}
	.rank_list .item_list .text_rank img {
		width: 25px;
	}
}

/* -- item_text -- */
.rank_list .item_list .item_text {
	font-size: 1.25em;
}
@media screen and (max-width: 640px) {
	.rank_list .item_list .item_text {
		font-size: .75em;
	}
}


/* ---------------------------------------------
*   box_spotify
--------------------------------------------- */
.box_spotify {
	display: block;
	margin-top: 105px;
	padding-bottom: 115px;
	zoom: 1;
}
@media screen and (max-width: 640px) {
	.box_spotify {
		margin-top: 50px;
		padding-bottom: 60px;
	}
}

/* box_spotify_left
--------------------------------------------- */
.box_spotify_left {
	position: relative;
	float: left;
	width: 50%;
}
.box_spotify_left img {
	width: 100%;
}
@media screen and (max-width: 640px) {
	.box_spotify_left {
		float: none;
		width: 100%;
	}
}

/* -- item_btn -- */
.box_spotify_left .item_btn {
	position: absolute;
	top: 54%;
	left: 50%;
	display: block;
	width: 56%;
	margin-left: -28%;
}

/* box_spotify_right
--------------------------------------------- */
.box_spotify_right {
	float: right;
	width: 50%;
}
.box_spotify_right img {
	width: 100%;
}
@media screen and (max-width: 640px) {
	.box_spotify_right {
		float: none;
		width: 100%;
	}
}


/* ---------------------------------------------
*   box_mystyle
--------------------------------------------- */
.box_mystyle {
	position: relative;
	margin-top: 110px;
}
@media screen and (max-width: 640px) {
	.box_mystyle {
		margin-top: 50px;
	}
}

/* item_column
--------------------------------------------- */
.box_mystyle .item_column {
	background-color: #fff;
	margin-top: 50px;
}
.box_mystyle .item_column:first-child {
	margin-top: 0;
}
@media screen and (max-width: 640px) {
	.box_mystyle .item_column {
		margin-top: 25px;
	}
}

/* box_mystyle_inner
--------------------------------------------- */
.box_mystyle_inner {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: table;
	width: 100%;
	padding: 40px 40px 0;
}
@media screen and (max-width: 640px) {
	.box_mystyle_inner {
		display: block;
		padding: 7.14285714285714%;
	}
}

.item_column.item_02 .box_mystyle_inner {
	direction: rtl;
}
.item_column.item_02 .box_mystyle_inner .item_contents.skin_reverse {
	direction: ltr;
}

/* text_image */
.item_column .text_image {
	position: relative;
}

/* btn_link */
.item_column.item_03 .btn_link {
	width: 86%;
	margin: 0 auto;
	padding-bottom: 40px;
}

/* item_link_box */
.item_column .item_link_box {
	display: block;
	position: absolute;
}
.item_column.item_01 .item_link_box {
	left: 9.6%;
	top: 49%;
	width: 25.9%;
}
.item_column.item_02 .item_link_box {
	left: 9%;
	top: 60%;
	width: 27%;
}
@media screen and (max-width: 640px) {
	.item_column.item_01 .item_link_box {
		left: 12.6%;
		top: 29%;
		width: 43.9%;
	}
	.item_column.item_02 .item_link_box {
		left: 15%;
		top: 39.5%;
		width: 38.5%;
	}
}

/* item_btn_clip */
.item_column .item_btn_clip {
	position: absolute;
	bottom: 8.4%;
	left: 0;
	margin-left: 39px;
	width: 32.2%;
}
.item_column .item_btn_clip a {
	display: block;
}
.item_column.item_01 .item_btn_clip {
	margin-left: 0;
}
@media screen and (max-width: 640px) {
	.item_column .item_btn_clip {
		position: static;
		margin-left: 0;
		width: 100%;
		margin-bottom: 8%;
	}
}


/* item_contents
--------------------------------------------- */
.box_mystyle .item_contents {
	position: relative;
	display: table-cell;
	width: 50%;
	vertical-align: top;
}
@media screen and (max-width: 640px) {
	.box_mystyle .item_contents {
		display: block;
		width: 100%;
	}
}

/* -- contents_header -- */
.contents_header {
	margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
	.contents_header {
		margin-bottom: 15px;
	}
}

/* -- contents_header(skin) -- */
.item_column.item_02 .contents_header {
	margin-left: 39px;
}
@media screen and (max-width: 640px) {
	.item_column.item_02 .contents_header {
		margin-left: 0;
	}
}

/* item_title */
.contents_header .item_title {
	padding: 2px 0 1px 18px;
	border-left: 2px solid;
}
.contents_header .item_title .text_mystyle {
	display: block;
	width: 144px;
	margin-bottom: 10px;
}
.contents_header .item_title .item_text {
	display: block;
	font-size: 1.25em;
	line-height: 1;
}
@media screen and (max-width: 640px) {
	.contents_header .item_title {
		padding: 2px 0 1px 10px;
	}
	.contents_header .item_title .text_mystyle {
		width: 86px;
		margin-bottom: 7px;
	}
	.contents_header .item_title .item_text {
		font-size: 1em;
	}
}

/* item_title - skin */
.contents_header .item_title.skin_gr {
	border-color: #00969B;
}

/* -- text_image -- */
.box_mystyle .item_contents .text_image {
	width: 99.85%;
	margin-bottom: 30px;
}
.bg_pk .box_mystyle .item_contents .text_image {
	width: 94.64285714285714%;
}
@media screen and (max-width: 640px) {
	.box_mystyle .item_contents .text_image,
	.bg_pk .box_mystyle .item_contents .text_image {
		width: 100%;
		margin-bottom: 20px;
	}
	.item_column.item_02 .text_image {
		margin-top: 20px;
	}
}

/* -- text_image (skin) -- */
.item_column.item_02 .text_image {
	margin-left: 30px;
	margin-right: 0;
}
@media screen and (max-width: 640px) {
	.item_column.item_02 .text_image {
		margin-left: 0;
	}
}

/* -- item_photo -- */
.box_mystyle .item_contents .item_photo {
	margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
	.box_mystyle .item_contents .item_photo {
		margin-bottom: 0;
	}
}


/* item_tri
--------------------------------------------- */
.box_mystyle_inner .item_tri {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
}


/* image_pj
--------------------------------------------- */
.box_mystyle .image_pj {
	position: absolute;
	left: 50%;
	bottom: 0;
	display: block;
	width: 10.8%;
	margin-left: -6.25%;
}
@media screen and (max-width: 640px) {
	.box_mystyle .image_pj {
		width: 23.21428571428571%;
		margin-left: -11.60714285714286%;
	}
}



/* ---------------------------------------------
*   pagetop
--------------------------------------------- */
.pagetop {
	position: fixed;
	right: 20px;
	bottom: 50px;
	width: 40px;
	height: 32px;
	opacity: .5;
	cursor: pointer;
	-webkit-transition: top .3s;
	transition: top .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-ms-filter: "alpha(opacity=50)";
}



/* ---------------------------------------------
*   bottom_links
--------------------------------------------- */
.bottom_links {
	margin-bottom: 160px;
}
@media screen and (max-width: 640px) {
	.bottom_links {
		margin-bottom: 80px;
	}
}

/* s5-button
--------------------------------------------- */
.s5-button {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	font-size: .875rem;
	color: #fff;
	padding: 8px 40px 8px 18px;
	border: none;
	border-radius: 1px;
	background-color: #5787f4;
	cursor: pointer;
	-webkit-transition: background .2s;
	transition: background .2s;
}
.s5-button:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	border-width: 4px 0 4px 4px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	margin: 0 .6em .05em 0;
	vertical-align: middle;
}
.s5-button .icon_blank {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 15px;
	line-height: 1;
	margin-top: -5px;
}
.s5-button .icon_blank img {
	vertical-align: top;
}



/* lsuxsp-product-bnr
--------------------------------------------- */
.lsuxsp-product-bnr {
	display: block;
}
.lsuxsp-product {
	display: table;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 0 0 0 4.583334%;
	background-color: #f1f5f6;
	margin-top: 2.3334%;
}
.lsuxsp-product_black {
	padding: 0 0 0 0;
	background-color: #555;
}
.lsuxsp-product_black.first-child {
	background-color: #70808c;
}
.lsuxsp-product_black.first-child {
	margin-top: 9.3334%;
}
.lsuxsp-product__txtbox {
	display: table-cell;
	color: #555;
	padding: 30px 0;
	vertical-align: middle;
}
.lsuxsp-product_black .lsuxsp-product__txtbox {
	position: relative;
	color: #fff;
	padding: 30px;
}
.lsuxsp-product__txtbox h3 {
	line-height: 1.4;
	font-size: 93.8%;
	font-weight: 400;
	margin: 0;
}
.lsuxsp-product__txtbox p {
	line-height: 1.4;
	font-size: 118.8%;
	margin: 20px 0 0;
}
.lsuxsp-product__txtbox strong {
	display: block;
	line-height: 1.2;
	font-size: 156.3%;
	font-weight: 400;
}
.lsuxsp-product__txtbox .s5-button {
	margin-top: 20px;
}
.lsuxsp-product_black .lsuxsp-product__txtbox .s5-button {
	position: absolute;
	right: 30px;
	bottom: 30px;
	background-color: #30373f;
}

.lsuxsp-product__img {
	display: none;
}
.lsuxsp-product__imgbox {
	display: table-cell;
	line-height: 0;
	vertical-align: middle;
}

@media (max-width: 860px) {
	.lsuxsp-product__txtbox h3 {
		font-size: 69.8%;
	}
	.lsuxsp-product.lsuxsp-product_black.first-child {
		margin-top: 14.696552%;
	}
	.lsuxsp-product.lsuxsp-product_black {
		display: block;
		padding: 3.8965517%;
		margin-top: 3.8965517%;
	}
	.lsuxsp-product_black .lsuxsp-product__txtbox {
		display: block;
		padding: 30px 0 0 0;
		margin: 0 auto;
	}
	.lsuxsp-product_black .lsuxsp-product__txtbox .s5-button {
		position: relative;
		right: auto;
		bottom: auto;
		display: block;
		width: 100%;
		margin: 15px auto 0;
		text-align: center;
	}
	.lsuxsp-product_black .lsuxsp-product__imgbox {
		display: block;
		text-align: center;
	}
}
@media (max-width: 640px) {
	.lsuxsp-product {
		display: block;
		padding: 6.8965517%;
		margin-top: 60px;
	}
	.lsuxsp-product__txtbox {
		display: block;
		padding: 0;
		margin: 0 auto;
	}
	.lsuxsp-product__img {
		display: block;
		width: 100% !important;
		padding: 0 !important;
		margin-top: 15px;
		text-align: center;
	}
	.lsuxsp-product__txtbox .s5-button {
		display: block;
		width: 100%;
		margin: 15px auto 0;
		text-align: center;
	}
	.lsuxsp-product__imgbox {
		display: none;
	}
}

.new {
	margin-top: 2.3334%;
}
.button-wrap {
	position: absolute;
	bottom: 30px;
	right: 30px;
}
.lsuxsp-product_black .lsuxsp-product__txtbox .button-wrap .s5-button {
  position: relative;
  bottom: 0;
  right: 0;
  font-size: 115%;
}

.button-wrap .s5-button.store {
  background: #5787f4;
}
.button-wrap .s5-button.purchase {
  background: #f5683a;
}

@media (max-width: 960px) {
	.new .lsuxsp-product__txtbox {
		vertical-align: top;
	}
	.lsuxsp-product_black .lsuxsp-product__txtbox .button-wrap .s5-button {
	  font-size: 80%;
	}
}
@media (max-width: 860px) {
	.button-wrap {
		position: relative;
		bottom: 0;
		right: 0;
	}
	.lsuxsp-product_black .lsuxsp-product__txtbox .button-wrap .s5-button {
	  font-size: 100%;
	}
}

/* -- lsuxsp-product__imgbox--P1 -- */
.lsuxsp-product__imgbox--P1 {
	/*width: 507px;*/
	width: 44.2794759%;
}
.lsuxsp-product__imgbox--P1 img {
	width: 81.8540433%;
	max-width: 415px;
	height: auto;
}
.lsuxsp-product_black .lsuxsp-product__imgbox--P1 img {
	width: auto;
	max-width: none;
	height: auto;
}
@media (max-width: 860px) {
	.lsuxsp-product_black .lsuxsp-product__imgbox--P1 {
		width: 100%;
	}
}
@media (max-width: 640px) {
	.lsuxsp-product_black .lsuxsp-product__imgbox--P1 img {
		width: 100%;
	}
}

/* -- lsuxsp-product__imgbox--S1 -- */
.lsuxsp-product__imgbox--S1 {
	width: 42.7947598%;
	padding: 15px 0;
	text-align: center;
}
.lsuxsp-product__imgbox--S1 img {
	width: 15.510204%;
	max-width: 76px;
	height: auto;
}
.lsuxsp-product_black .lsuxsp-product__imgbox--S1 {
	/*width: 507px;*/
	width: 44.2794759%;
	padding: 0;
	text-align: inherit;
}
.lsuxsp-product_black .lsuxsp-product__imgbox--S1 img {
	width: 81.8540433%;
	max-width: 415px;
	height: auto;
}
.lsuxsp-product_black .lsuxsp-product__imgbox--S1 img {
	width: auto;
	max-width: none;
	height: auto;
}
@media (max-width: 860px) {
	.lsuxsp-product_black .lsuxsp-product__imgbox--S1 {
		width: 100%;
		text-align: center;
	}
}
@media (max-width: 640px) {
	.lsuxsp-product_black .lsuxsp-product__imgbox--S1 img {
		width: 100%;
	}
}



/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
	font-family: "メイリオ", "Meiryo";
	font-size: .8rem;
	font-weight: bold;
	color: #fff;
	padding: 1.1% 0;
	background: #000;
	text-align: center;
}
