@charset "UTF-8";
@import url(cmn.css);

/*----------------------------delay-----------------------------------*/

.delay{
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px);
	transition: 0.8s ease-in-out;
}
.delayActive{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition: 0.8s ease-in-out;
}

/*----------------------------base-----------------------------------*/

*{
	word-break: normal;
}

a{
	color: #111;
	text-decoration: none;
}

#load{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 2000;
}
#load div:nth-of-type(1),
#load div:nth-of-type(2){
	height: 50%;
	width: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
}
#load div:nth-of-type(1){
	top: 0;
}
#load div:nth-of-type(2){
	top: 50%;
}
#load .loader {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 2px solid #a4070a;
	border-radius: 50%;
	animation: spin 0.75s infinite linear;
	position: absolute;
	top: calc(50% - 65px);
	left: calc(50% - 25px);
	display: block;
}
#load .loader::before,
#load .loader::after {
	left: -2px;
	top: -2px;
	display: none;
	position: absolute;
	content: '';
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
}
#load .loader-5,
#load .loader-5::before {
	display: inline-block;
	border-color: transparent;
	border-top-color: #a4070a;
}
#load .loader-5::before {
	animation: spin 1.5s infinite ease;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
#load img{
	display: block;
	z-index: 100;
	width: 100px;
	position: absolute;
	top: calc(50% + 10px);
	left: calc(50% - 50px);
}
.pc_only{
	display:block!important;
}
@media screen and (max-width: 800px){
.pc_only{
	display:none!important;
}
}
/*---------*/

.loader2 {
  position: relative;
  display: inline-block;
  margin: 0 ;
  width: 40px;
  height: 40px;
  border: 2px solid #a4070a;
  border-radius: 50%;
  animation: spin 0.75s infinite linear;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}
.loader2::before,
.loader2::after {
  left: -2px;
  top: -2px;
  display: none;
  position: absolute;
  content: '';
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
}
.loader2,
.loader2::before {
  display: inline-block;
  border-color: transparent;
  border-top-color: #a4070a;
}
.loader2::before {
  animation: spin 1.5s infinite ease;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
}
}

/*---------*/

.more a,
a .more .btn{
	display: inline-block;
	text-decoration: none;
	padding: 5px 22px;
	background: #a4070a;
	color: #fff !important;
	text-transform: uppercase;
	font-size: 1.2rem;
	letter-spacing: 1px;
	position: relative;
	transition: 0.2s ease-in-out;
	font-family: "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
.more a:after,
a .more .btn:after{
	display: none !important;
}
.more a:before,
a .more .btn:before{
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	background: #f5f1f1;
	position: absolute;
	top: calc(50% - 0.5px);
	right: -12px;
	transition: 0.1s ease-in-out;
}
.more a:hover,
a:hover .more .btn{
	background: #222;
}
.more a:hover:before,
a:hover .more .btn:before{
	right: 22px;
	width: calc(100% - 44px);
	background: #a4070a;
}

.btn{
	text-align: right;
}
.btn a{
	text-align: right;
	text-decoration: none;
	font-family: 'Muli', "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: 700;
	color: #a4070a;
	display: inline-block;
	padding-right: 30px;
	position: relative;
	transition: 0.2s ease-in-out;
	text-transform: lowercase;
}
.btn a:after{
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background: #a4070a;
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	transition: 0.2s ease-in-out;
}
.btn a:hover{
	padding-right: 20px;
	padding-left: 10px;
}
.btn a:hover:after{
	width: 10px;
}

body{
	background: url(../images/gradiente/bg.gif) 50% 0 repeat-y;
	color: #111;
}
.w{
	margin: 0 auto;
}
img{
	width: auto;
	height: auto;
	max-width: 100%;
}

h2{
	font-family: 'Muli', sans-serif;
	font-weight: 800;
	font-size: 6rem;
}
h3{
	font-size: 2rem;
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
	padding-top: 20px;
	clear: both;
}
h3:after{
	content: "";
	display: block;
	width: 50px;
	height: 4px;
	background: #a4070a;
	position: absolute;
	bottom: 0;
	left: 0;
}
h3 span{
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.6;
	display: block;
}

main{
	min-width: 320px;
}
@media screen and (max-width: 700px){
	h2{
		font-size: 4rem;
	}
}

/*-------------*/

header{
	height: 52vw;
	background: url(../images/gradiente/mv.jpg) calc(100% -  40px) 40px no-repeat;
	background-size: 70% auto;
	position: relative;
	margin-bottom: 80px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
body>h1{
	display: block;
	position: absolute;
	width: 200px;
	top: 40px;
	left: 40px;
	z-index: 20;
}
body>h1 img{
	display: block;
}
header div{
	margin-left: 40px;
	max-width: 70%;
}
@media screen and (min-width: 1900px){
	header{
		height: 988px;
		background-size: auto calc(100% - 80px);
	}
}
@media screen and (max-width: 1200px){
	header{
		height: 60vw;
		background: url(../images/gradiente/mv.jpg) calc(100% -  40px) 40px no-repeat;
		background-size: 80% auto;
	}
	header div{
		padding-top: 7vw;
	}
}
@media screen and (max-width: 1100px){
	body>h1{
		width: 170px;
	}
}
@media screen and (max-width: 950px){
	body>h1{
		width: 120px;
	}
	header{
		margin-bottom: 5vw;
	}
}
@media screen and (max-width: 700px){
	body>h1{
		left: 20px;
	}
	header{
		height: 106vw;
		background: url(../images/gradiente/mv2.jpg) calc(100% -  10px) 20px no-repeat;
		background-size: 65% auto;
	}
	header div{
		margin-left: 20px;
	}
}

/*----------------*/

#concept{
	padding: 0 40px 20px;
	position: relative;
}
#concept:before{
	content: "";
	display: block;
	background: #a4070a;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50%;
	width: calc((50vw - 600px) + 1200px);
	z-index: -1;
}
#concept .w{
	max-width: 1600px;
}
#concept .f{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 60px;
}
#concept .f>div{
	width: 50%;
}
#concept .f>div:nth-of-type(2){
	width: 47%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
#concept .f>div:nth-of-type(2)>div{
	width: 100%;
	align-self: center;
}
#concept .f>div:nth-of-type(2)>div:nth-of-type(1){
	padding-bottom: 20px;
}
#concept .f>div:nth-of-type(2)>div:nth-of-type(2){
	align-self: end;
	color: #fff;
	max-width: 520px;
	margin-left: 0;
	background: #a4070a;
	padding: 20px;
}
#concept .f>div:nth-of-type(2)>div:nth-of-type(2) div{
	margin-bottom: 20px;
}

#concept .i{
	text-align: right;
}
#concept .btn a{
	color: #fff;
}
#concept .btn a:after{
	background: #fff;
}
@media screen and (max-width: 1200px){
	#concept:before{
		width: 100%;
	}
}
@media screen and (max-width: 950px){
	#concept .f{
		margin-bottom: 5vw;
	}
}
@media screen and (max-width: 700px){
	#concept{
		padding: 0 10px 20px;
		margin-bottom: 5vw;
	}
}
@media screen and (max-width: 600px){
	#concept{
		padding: 0 0 5vw;
		margin-bottom: 0;
	}
	#concept .f{
		display: block;
		margin-bottom: 0;
	}
	#concept .f>div{
		width: auto !important;
	}
	#concept .f>div img{
		max-width: 60%;
		display: block;
		margin: 0 auto;
	}
	#concept:before{
		display: none;
	}
	#concept .f>div:nth-of-type(2)>div{
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	#concept .f>div:nth-of-type(2)>div:nth-of-type(2){
		overflow: hidden;
		background: #a4070a;
		max-width: none;
		padding-top: 20px;
	}
	#concept .f>div:nth-of-type(2)>div:nth-of-type(2)>*{
		float: right;
		width: 67%;
	}
	#concept .f>div:nth-of-type(2)>div:nth-of-type(2)>.btn{
		margin-bottom: 0;
	}
	#concept .f>div:nth-of-type(2)>div:nth-of-type(2) div:nth-of-type(1){
		float: left;
		width: 30%;
	}
	#concept .i{
		text-align: center;
		background: #a4070a;
		max-width: none;
		width: 100%;
		padding: 20px;
		box-sizing: border-box;
	}
	#concept .i img{
		display: block;
		margin: 0 auto;
		max-width: 70%;
	}
}

/*----------------*/

.videobn{
	padding: 40px 40px;
	border-bottom: 1px solid #f0f0f0;
	text-align: center;
}
.videobn a{
	background: #000;
	display: block;
	max-width: 650px;
	width: 80%;
	margin: 0 auto;
	padding: 0 5px;
	box-sizing: border-box;
}
.videobn a:hover img{
	opacity: 0.8;
}
@media screen and (max-width: 700px){
	.videobn{
		padding: 0 20px 5vw;
	}
}
@media screen and (max-width: 480px){
	.videobn a{
		width: 100%;
	}
}

.dlt_shade.video .dlt_popimgwrap{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 5;
}
.dlt_shade.video .dlt_popimgwrap .dlt_popimg{
	position: static;
}
.dlt_shade.video i{
	display: block;
	width: 60vw;
	padding-top: 56.25%;
	position: relative;
	box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}
.dlt_shade.video i iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left:  0;
}
.dlt_shade.video .dlt_close{
	top: calc(50% - 16.875vw - 17px);
	left: calc(50% + 30vw - 17px);
}
@media screen and (max-width: 500px){
	.dlt_shade.video i{
		display: block;
		width: 85vw;
	}
	.dlt_shade.video .dlt_close{
		top: calc(50% - 23.9vw - 17px);
		left: calc(50% + 42.5vw - 17px);
	}
}
.dlt_shade.video.hide{
	display: none;
	opacity: 0;
}

/*----------------*/
#gradiente{
	padding: 60px 40px 60px;
}
#gradiente .w{
	max-width: 1200px;
}

#gradiente h2 span{
	font-size: 1.2rem;
    display: block;
    letter-spacing: 3px;
    font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS P Gothic", Verdana,Arial, Helvetica, sans-serif;
	margin-top: -15px;
}

.feature{
	overflow: hidden;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 8px 40px;
}

.feature dl{
	display: block;
	float: left;
	width: calc((100% - 45px)/2);
	margin-left: 45px;
	margin-bottom: 50px;
}
.feature dl:nth-of-type(2n+1){
	clear: left;
	margin-left: 0;
}
.feature dt{
	display: block;
	margin-bottom: 15px;
}
.feature dt img{
	width: 100%;
}
.feature dl dd{
	display: block;
}
.feature dl dd h4{
	font-family: Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-size: 2.2rem;
	letter-spacing: 0;
	margin-bottom: 20px;
	line-height: 1.5;
	position: relative;
}
.feature dl dd h4:after{
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background: #a4070a;
	position: absolute;
	bottom: -10px;
	left: 0;
}
@media screen and (max-width: 1330px){
	.feature h2{
		font-size: 2.8rem;
		letter-spacing: 2px;
	}
}

@media screen and (max-width: 800px){
	.feature h2{
		font-size: 2.4rem;
		letter-spacing: 0;
	}
	.feature dl{
		width: calc((100% - 20px)/2);
		margin-left: 20px;
	}
}
@media screen and (max-width: 700px){
	#gradiente{
		padding: 5vw 10px 5vw;
	}
	#gradiente h2 span{
	margin-top: -10px;
}
}
@media screen and (max-width: 600px){
	.feature dl{
		display: block;
		float: none;
		width: auto;
		max-width: 374px;
		margin: 0 auto 40px !important;
	}
	.feature dl:last-of-type{
		margin: 0 auto !important;
	}
	.feature dl dt{
		text-align: center;
	}
	
}
@media screen and (max-width: 570px){
	#gradiente h2{
		line-height: 1.2em;
	}
	#gradiente h2 span{
	margin-top: -3px;
	}
}
/*----------------*/

#lineup{
	padding: 60px 40px 60px;
	border-top: 1px solid #f0f0f0;
}
#lineup .w{
	max-width: 1200px;
}
#lineup .w>div{
	overflow: hidden;
}
#lineup .delay>dl{
	display: block;
	width: 17.6%;
	margin-bottom: 20px;
	margin-left: 3%;
	float: left;
	font-size: 1.3rem;
	line-height: 1.2;
	letter-spacing: 0;
}
#lineup .delay>dl:nth-of-type(5n+1){
	margin-left: 0;
	clear: left;
}
#lineup .delay>dl>dt,
#lineup .delay>dl>dd{
	display: block;
	max-width: 213px;
	margin: 0 auto;
}
#lineup .delay>dl>dt{
	margin-bottom: 10px;
}
#lineup .delay>dl dl{
	display: table;
	margin-bottom: 5px;
}
#lineup .delay>dl dl dt,
#lineup .delay>dl dl dd{
	display: table-cell;
}
#lineup .delay>dl dl dt{
	width: 45px;
}
#lineup .delay>dl dl dt:after{
	content: " : ";
}
@media screen and (max-width: 900px){
	#lineup .delay>dl{
		width: 22.75%;
	}
	#lineup .delay>dl:nth-of-type(5n+1){
		margin-left: 3%;
		clear: none;
	}
	#lineup .delay>dl:nth-of-type(4n+1){
		margin-left: 0;
		clear: left;
	}
}
@media screen and (max-width: 700px){
	#lineup{
		padding: 5vw 10px 5vw;
	}
	#lineup .delay>dl{
		width: 31.3%;
	}
	#lineup .delay>dl:nth-of-type(5n+1),
	#lineup .delay>dl:nth-of-type(4n+1){
		margin-left: 3%;
		clear: none;
	}
	#lineup .delay>dl:nth-of-type(3n+1){
		margin-left: 0;
		clear: left;
	}
}
@media screen and (max-width: 570px){
	#lineup{
		padding: 5vw 10px 5vw;
	}
	#lineup .delay>dl{
		width: 48.5%;
	}
	#lineup .delay>dl:nth-of-type(5n+1),
	#lineup .delay>dl:nth-of-type(4n+1),
	#lineup .delay>dl:nth-of-type(3n+1){
		margin-left: 3%;
		clear: none;
	}
	#lineup .delay>dl:nth-of-type(2n+1){
		margin-left: 0;
		clear: left;
	}
}

/*lineup 在庫品*/
#lineup article{
	overflow: hidden;
	margin-bottom: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid #d4d4d4;
	clear: both;
}

#lineup article:first-of-type{
	margin-top: 80px;
}
#lineup article:last-of-type{
	margin-bottom: 40px;
}
#lineup .R,
#lineup .L{
	width: 52%;
	box-sizing:  border-box;
	margin-bottom: 20px;
}
#lineup .L{
	width: 43%;
	max-width: 505px;
}
#lineup article h3{
	line-height: 1.3;
	margin-bottom: 20px;
}
#lineup article h3:after {
	top: calc(50% + 30px);
}
#lineup article h3 span{
	display: block;
	color: #a4070a;
	font-size: 1.4rem;
	letter-spacing: 2px;
	padding-top: 5px;
	padding-bottom: 20px;
}
#lineup .R p{
	margin-bottom: 15px;
}
#lineup .L{
	position: relative;
	overflow: hidden;
}

#lineup .lineup_mv ul{
	display: table;
	table-layout: fixed;
	position: relative;
}
#lineup .lineup_mv li{
	display: table-cell;
}
#lineup .lineup_mv img{
	width: 100%;
	height: auto;
}
.infotable{
	clear: both;
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
	border-top: 1px solid #e1e1e1;
	border-left: 1px solid #e1e1e1;
}
.infotable tr:nth-of-type(1){
	background: #f5f1f1;
}
.infotable tr:nth-of-type(2) {
    background: #fff;
}
.infotable td{
	padding: 10px 5px;
	border-bottom: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	vertical-align: middle;
	line-height: 1.4;
}
.infotable td:nth-of-type(1){
	word-break: keep-all;
}

@media screen and (max-width: 600px){
	#lineup article{
	margin-bottom: 50px;
	padding-bottom: 50px;	
}
	#lineup article:first-of-type {
    margin-top: 40px;
}
	
	
	#lineup .R,
	#lineup .L{
		width: auto;
		float: none;
		margin: 0 auto 20px;
	}
	#lineup .R p{
		margin-bottom: 10px;
	}
	.infotable,
	.infotable thead,
	.infotable tbody,
	.infotable tr,
	.infotable th,
	.infotable td,
	.infotable tfoot{
		display: block;
		border: none;
		padding: 0;
		overflow: hidden;
		box-sizing: border-box;
	}
	.infotable tr:nth-of-type(1){
		display: none;
	}
	.infotable tr{
		border: 1px solid #f5f1f1;
		cursor: pointer;
		background: #f5f1f1;
		text-align: left;
		position: relative;
		margin-bottom: 1px;
	}
	.infotable td:nth-of-type(-n+2){
		display: inline-block;
		padding: 10px 0;
	}
	
	.infotable td:nth-of-type(1){
		padding-left: 10px;
	}
	
	.infotable td:nth-of-type(2){
		padding-right: 30px;
	}
	.infotable td:nth-of-type(n+3){
		text-align: center;
		background: #fff;
		width: calc(100% + 20px) !important;
		padding: 10px;
		border-bottom: 1px dotted #f5f1f1;
	}
	.infotable td:last-child{
		border-bottom: none;
	}
	.infotable tr:nth-of-type(2) {
    background: #f5f1f1;
	}
	#lineup article h3{
	padding: 0;
	}
	#lineup article h3:after {
    top: calc(50% + 23px);
	}
}

/*lineup アイコン*/
#description,#description2{
	background: #f5f1f1;
    padding: 70px 60px;	
}
dl.type{
	margin-bottom: 30px;
	border: 1px solid rgba(0,0,0,0.1);
    padding: 30px 20px;
	background: #f7eded;
}

.type dt{
    background: #a40704;
	border-radius: 5px;
	padding: 5px 8px;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.4;
	display: inline-block;
}
.type dd{
	margin-top: 5px;
	color: #333;
}
ul.type{
	display: inline-block;
	margin-bottom: 15px;
}
ul.type li{
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
	background: #a40704;
	border-radius: 5px;
	padding: 5px 8px;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.4;
}
@media screen and (max-width: 500px){
#description,#description2 {
    padding: 35px 30px;
	}
}

.caution{
	font-size: 1.25rem;
	margin-top: 40px;
}


/*単板取り寄せ品*/
#lineup_order{
	padding: 0 40px 60px;
	border-top: 1px solid #f0f0f0;
}
#lineup_order .w{
	max-width: 1200px;
}
#lineup_order .w>div{
	overflow: hidden;
}
#lineup_order .delay>dl{
	display: block;
	width: 17.6%;
	margin-bottom: 20px;
	margin-left: 3%;
	float: left;
	font-size: 1.3rem;
	line-height: 1.2;
	letter-spacing: 0;
}
#lineup_order .delay>dl:nth-of-type(5n+1){
	margin-left: 0;
	clear: left;
}
#lineup_order .delay>dl>dt,
#lineup_order .delay>dl>dd{
	display: block;
	max-width: 213px;
	margin: 0 auto;
}
#lineup_order .delay>dl>dt{
	margin-bottom: 10px;
}
#lineup_order .delay>dl dl{
	display: table;
	margin-bottom: 5px;
}
#lineup_order .delay>dl dl dt,
#lineup_order .delay>dl dl dd{
	display: table-cell;
}
#lineup_order .delay>dl dl dt{
	width: 45px;
}
#lineup_order .delay>dl dl dt:after{
	content: " : ";
}
@media screen and (max-width: 900px){
	#lineup_order .delay>dl{
		width: 22.75%;
	}
	#lineup_order .delay>dl:nth-of-type(5n+1){
		margin-left: 3%;
		clear: none;
	}
	#lineup_order .delay>dl:nth-of-type(4n+1){
		margin-left: 0;
		clear: left;
	}
}
@media screen and (max-width: 700px){
	#lineup_order{
		padding: 5vw 10px 5vw;
	}
	#lineup_order .delay>dl{
		width: 31.3%;
	}
	#lineup_order .delay>dl:nth-of-type(5n+1),
	#lineup_order .delay>dl:nth-of-type(4n+1){
		margin-left: 3%;
		clear: none;
	}
	#lineup_order .delay>dl:nth-of-type(3n+1){
		margin-left: 0;
		clear: left;
	}
}
@media screen and (max-width: 570px){
	#lineup_order{
		padding: 5vw 10px 5vw;
	}
	#lineup_order .delay>dl{
		width: 48.5%;
	}
	#lineup_order .delay>dl:nth-of-type(5n+1),
	#lineup_order .delay>dl:nth-of-type(4n+1),
	#lineup_order .delay>dl:nth-of-type(3n+1){
		margin-left: 3%;
		clear: none;
	}
	#lineup_order .delay>dl:nth-of-type(2n+1){
		margin-left: 0;
		clear: left;
	}
}

#info_online{
	padding: 60px 40px 60px;
	margin-bottom: 80px;
	color: #fff;
	position: relative;
}
#info_online:after{
	content: "";
	display: block;
	width: calc((50vw - 800px) + 1600px);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	background: #a4070a;
}
#info_online .w{
	max-width: 950px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#info_online .w p,
#info_online .w div{
	width: 48%;
}
@media screen and (max-width: 1600px){
	#info_online{
		background: #a4070a;
	}
	#info_online:after{
		display: none;
	}
}
@media screen and (max-width: 700px){
	#info_online{
	margin-bottom: 40px;
}
	#info_online{
		padding: 5vw 10px;
	}
	#info_online .w{
		display: block;
	}
	#info_online .w p,
	#info_online .w div{
		width: auto;
	}
	#info_online .w p{
		margin-bottom: 20px;
	}
	#info_online .w div img{
		display: block;
		max-width: 70%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 500px){
	#info_online .w div img{
		max-width: 100%;
	}
}
/*----------------*/

#info{
	padding: 60px 40px 60px;
	margin-bottom: 80px;
	color: #fff;
	position: relative;
	margin-top: 60px;
}
#info:after{
	content: "";
	display: block;
	width: calc((50vw - 800px) + 1600px);
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #a4070a;
}
#info .w{
	max-width: 950px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#info .w p,
#info .w div{
	width: 48%;
}
@media screen and (max-width: 1600px){
	#info{
		background: #a4070a;
	}
	#info:after{
		display: none;
	}
}
@media screen and (max-width: 700px){
	#info{
		padding: 5vw 10px;
		margin-bottom: 0px;
		margin-top: 0px;
	}
	#info .w{
		display: block;
	}
	#info .w p,
	#info .w div{
		width: auto;
	}
	#info .w p{
		margin-bottom: 20px;
	}
	#info .w div img{
		display: block;
		max-width: 70%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 500px){
	#info .w div img{
		max-width: 100%;
	}
}



/*----------------*/
#color {
	padding: 0px 40px;
	border-top: 1px solid #f0f0f0;
}
#color .w{
	max-width: 1200px;
}
#color1 {
	padding: 0 40px;
}

#color1 .w{
	max-width: 1200px;
}

article{
	overflow: hidden;
	margin-bottom: 80px;
}

#color1 article:first-of-type{
	margin-bottom: 60px;
}
#color1 article:last-of-type{
	margin-bottom: 100px;
}

#color1 .colorimage{
	display: flex;
	justify-content: center;
	align-items: center;
}

.colorL{
	width: 48%;
	margin-right: 4%;
}
.colorR{
	width: 48%;
}
#color1 figcaption{
	padding-top: 8px;
	padding-left: 5px;
	font-size: 1.25rem;
	
}

#color1 img{
	width: 100%;
	height: auto;
}

#color1 h3 {
 padding-top: 0px;
}

@media screen and (max-width: 700px){
	#color {
    padding: 5vw 10px 5vw;
	}
	#color1 {
		padding: 0 10px;
	}
}
@media screen and (max-width: 600px){
	#color1 .colorimage{
	display: block;
	}
	#color1 article:first-of-type {
    margin-top: 30px;
    margin-bottom: 40px;
	}
	#color1 article:last-of-type {
    margin-bottom: 40px;
	}
	.colorL {
    width: 100%;
	}
	.colorR {
    width: 100%;
	}
	#color1 .colorimage:nth-of-type(2) {
		flex-direction: column-reverse;
		display: flex;
		
	}
}
/*----------------*/

#showroom{
	padding: 40px 40px;
	position: relative;
	clear: both;
}
#showroom:after{
	content: "";
	display: block;
	width: 800px;
	height: 100%;
	background: #f5f1f1;
	position: absolute;
	top: 0;
	left: calc(50% - 400px);
	z-index: -1;
}
#showroom .w{
	max-width: 1200px;
}
#showroom h2{
	text-align: right;
	margin-bottom: 40px;
}
.headshowroom{
	margin-bottom: 80px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.headshowroom:nth-of-type(2n){
	flex-direction: row-reverse;
}
.headshowroom>div:nth-of-type(1){
	width: 65%;
}
.headshowroom>div:nth-of-type(2){
	width: 32%;
}
.headshowroom h3 i{
	font-style: normal;
	display: block;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 10px;
	font-weight: normal;
	color: #a4070a;
	letter-spacing: 0;
	font-family: Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-size: 2rem;
	margin-bottom: 5px;
}
.headshowroom .lineupMVwrap{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.headshowroom .lineupMVwrap p{
	display: block;
	background: rgba(0,0,0,0.6);
	color: rgba(255,255,255,0.8);
	letter-spacing: 0;
	line-height: 1.3;
	font-size: 1.2rem;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-bottom: 0;
	padding: 5px;
	opacity: 0;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.headshowroom .lineupMVwrap:hover p{
	opacity: 1;
}
.headshowroom .lineupMV:not(.noslide){
	cursor: pointer;
}
.headshowroom .lineupMV:after{
	content: "";
	display: block;
	width: 10%;
	height: 1px;
	background: #a4070a;
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 15%;
	transition: 0.4s ease-in-out;
}
.headshowroom .lineupMV:hover:after{
	opacity: 1;
	right: 5%;
}
.headshowroom .lineupMV:before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	border-top: 1px solid #a4070a;
	border-right: 1px solid #a4070a;
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 15%;
	margin-top: -5px;
	transition: 0.4s ease-in-out;
	z-index: 1;
}
.headshowroom .lineupMV:hover:before{
	opacity: 1;
	right: 5%;
}
.headshowroom .lineupMV.noslide:after,
.headshowroom .lineupMV.noslide:before{
	display: none;
}
.headshowroom .lineupMV ul{
	display: table;
	table-layout: fixed;
	position: relative;
}
.headshowroom .lineupMV li{
	display: table-cell;
}
.headshowroom .lineupMV img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 980px){
	#showroom:after{
		width: 80%;
		left: 10%;
	}
}
@media screen and (max-width: 700px){
	#showroom{
		padding: 5vw 10px;
	}
	.headshowroom .lineupMVwrap p{
		display: none;
	}
	.headshowroom{
		display: block;
		margin-bottom: 10vw;
	}
	.headshowroom>div:nth-of-type(1),
	.headshowroom>div:nth-of-type(2){
		width: auto;
	}
}

/*----------------------------footer--------------------------------*/

footer a{
	color: #999;
}
.t{
	display: table;
	table-layout: fixed;
}
.t>*{
	display: table-cell;
	vertical-align: top;
}

footer{
	box-sizing: border-box;
	min-width: 320px;
}

#ftel{
	padding: 30px 0;
	background: #f5f1f1;
}
#ftel .t{
	margin: 0 auto;
	width: calc(100% - 60px);
	width: 100%;
}
#ftel .t>*{
	vertical-align: middle;
	padding: 0 0 0 15px;
}
#ftel .t>*:nth-of-type(1){
	text-align: right;
	padding: 0 15px 0 0;
}
#ftel .t a{
	font-size: 1.6rem;
	max-width: 250px;
	width: 90%;
	box-sizing: border-box;
	padding: 7px 20px;
	text-align: center;
	letter-spacing: 3px;
}
@media screen and (max-width: 450px){
	#ftel .t a{
		letter-spacing: 0;
	}
	#ftel .t>*{
		padding: 0 0 0 10px;
	}
	#ftel .t>*:nth-of-type(1){
		padding: 0 10px 0 0;
	}
}

#footer{
	background: #262524;
	color: #999;
	font-size: 1.3rem;
	padding-top: 30px;
}
#footer .w{
	text-align: center;
}
#footer .logo{
	margin-bottom: 20px;
}
#footer .logo img{
	width: 188px;
}
#footer .msg{
	display: inline-block;
	text-align: left;
	padding: 0 10px;
	margin: 0 auto 20px;
}
#footer .msg dl{
	display: table;
	table-layout: fixed;
	width: auto;
}
#footer .msg dl>*{
	display: table-cell;
	vertical-align: top;
}
#footer .msg dt{
	width: 130px;
}
#footer .msg dd br{
	display: none;
}
#footer .sns{
	margin: 0 auto 20px;
}
#footer .sns>*{
	vertical-align: middle;
	padding: 0 3px;
}
#footer .sns>span:nth-of-type(1){
	padding-left: 20px;
}
#footer .sns a{
	overflow: hidden;
	background: #000;
	border-radius: 100%;
	display: block;
	width: 15px;
	height: 15px;
	padding: 10px;
	transition: 0.2s ease-in-out;
}
#footer .sns a:hover{
	background: #a4070a;
}
#cp{
	background: #10100f;
	border-top: 1px solid #262524;
	box-shadow: 0 -1px 0 #10100f;
	text-align: center;
	padding: 20px 0;
	font-size: 1.25rem;
}

#arrow4{
	width: 60px;
	height: 60px;
	border: 1px solid rgba(160,160,160,0.3);
	position: fixed;
	bottom: 83px;
	right: 20px;
	display: none;
	opacity: 0;
	z-index: 25;
}
#arrow4 a{
	display: block;
	height: 100%;
	width: 100%;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	transition: 0.2s ease-in-out;
}
#arrow4 a img{
	display: block;
	width: auto;
	height: 100%;
	margin: 0 auto;
}
#arrow4 a:hover{
	background: rgba(0,0,0,0.6);
}

@media screen and (max-width: 580px){
	#footer .msg{
		display: inline-block;
		text-align: center;
		padding: 0 10px;
		margin: 0 auto 10px;
	}
	#footer .msg dl{
		display: block;
	}
	#footer .msg dl>*{
		display: block;
	}
	#footer .msg dt{
		width: auto;
		font-weight: bold;
	}
	#footer .msg dd br{
		display: block;
	}
}
@media screen and (max-width: 550px){
	#footer .sns{
		display: block;
	}
	#footer .sns>*{
		display: block;
		padding: 3px 0 !important;
	}
	#footer .sns span:nth-of-type(2),
	#footer .sns span:nth-of-type(3){
		display: inline-block;
		margin: 0 10px;
	}
	#arrow4{
		display: none !important;
	}
}

/*----------------------------dlt_shade popup--------------------------------*/

.dlt_shade{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1000;
	background: rgba(0,0,0,0.6);
	overflow: hidden;
}
.dlt_popimgwrap{
	height: 100%;
	width: 100%;
}
.dlt_shade .dlt_popimg{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
}
.dlt_shade .dlt_popimg img{
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
	max-height: 80vh;
	max-width: 80vw;
	background: #fff;
}
.dlt_poptxt{
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 300px;
	color: rgba(255,255,255,0.8);
	z-index: 1000;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.dlt_poptxt p{
	letter-spacing: 0.5px;
	font-size: 11.5px;
	margin: 0 !important;
	padding: 0 0 10px !important;
	line-height: 150% !important;
}
.dlt_shade span{
	position: absolute;
	z-index: 1000;
}
.dlt_shade span.dlt_close{
	display: table;
	height: 34px;
	width: 34px;
	top: 50%;
	left: 50%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 0 2px rgba(0,0,0,0.6);
}
.dlt_shade span.dlt_close a{
	line-height: 0;
	display: table-cell;
	vertical-align: middle;
	background: #a4070a;
	color: #fff;
	text-decoration: none !important;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
	font-size: 20px;
	text-align: center;
}
.dlt_shade span.dlt_close a:hover{
	text-shadow: -1px 1px 0 rgba(0,0,0,0.3);
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
}

.dlt_shade span.dlt_bprev,
.dlt_shade span.dlt_bnext{
	display: block;
	height: 90px;
	width: 90px;
	top: 50%;
	margin: -25px 0 0 0 !important;
	text-indent: -10000px;
	outline:none;
	line-height:1px;
	font-size:1px;
	background: rgba(0,0,0,0.3);
}
.dlt_shade span.dlt_bprev{
	left: 0 !important;
}
.dlt_shade span.dlt_bnext{
	left: auto !important;
	right: 0 !important;
}
.dlt_shade span.dlt_bprev a,
.dlt_shade span.dlt_bnext a{
	display: block;
	height: 100%;
	width: 100%;
	position: relative;
}
.dlt_shade span.dlt_bprev a:after,
.dlt_shade span.dlt_bnext a:after{
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 40px;
	height: 40px;
	margin-top: -22px;
	border-top: 5px solid #a4070a;
	border-right: 5px solid #a4070a;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.dlt_shade span.dlt_bprev a:after{
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	margin-left: 30px;
}
.dlt_shade span.dlt_bnext a:after{
	margin-left: 10px;
}
.dlt_shade span.dlt_bprev a:hover:after,
.dlt_shade span.dlt_bnext a:hover:after{
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

.dlt_imgloader{
	position: absolute !important;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 2px solid #a4070a;
	border-radius: 50%;
	animation: spin 0.75s infinite linear;
}
.dlt_imgloader::before,
.dlt_imgloader::after {
	left: -2px;
	top: -2px;
	display: none;
	position: absolute;
	content: '';
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
}

.dlt_imgloader,
.dlt_imgloader::before {
	display: inline-block;
	border-color: transparent;
	border-top-color: #a4070a;
}
.dlt_imgloader::before {
	animation: spin 1.5s infinite ease;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
