@charset "UTF-8";

.mtsnb{
	top: auto !important;
	bottom: 0 !important;
}

/*----------------------------bloglay-----------------------------------*/
.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright {
	float: right;
	margin: 0 0 5px 10px;
}
.alignleft {
	float: left;
	margin: 0 10px 5px 0;
}
.article_content:after{
	content: "";
	clear: both;
	display: block;
}
@media screen and (max-width: 500px){
	.aligncenter,
  .alignright,
  .alignleft{
    display: block;
    margin: 0 auto 10px;
    float: none;
	}
}

/*----------------------------base-----------------------------------*/

#load{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
	
}
#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);
}

/*---------*/

.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);
}
}

/*---------*/

img{
	width: auto;
	height: auto;
	max-width: 100%;
}

.ls0{
	letter-spacing: 0 !important;
}

ul.type{
	display: block;
	margin-bottom: 15px;
}
ul.type li{
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
	background: #999;
	border-radius: 5px;
	padding: 3px 8px;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.4;
}
@media screen and (max-width: 500px){
	ul.type{
		display: none;
	}
}


/*----------------------------header-----------------------------------*/

header{
	position: fixed;
	top: 0;
	left: 0;
	min-width: 320px;
	z-index: 40;
	text-transform: uppercase;
	/*position: relative;*/
}
header>div{
	display: table;
	table-layout: fixed;
	width: 100%;
	padding-top: 50px;
	text-align: center;
	background: #F5F1F1;
	transition: 0.2s ease-in-out;
}
header.hpos2>div{
	background: rgba(255,255,255,0.9);
}
header h1{
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	width: 200px;
	padding: 10px 20px;
}
header h1 img{
	display: block;
}
header h5{
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	width: 150px;
	padding: 10px 20px;
}
header h5 img{
	display: block;
}
#navbg{
	display: none;
}
#menu{
	display: none;
}

header nav{
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	opacity: 1 !important;
}
header nav ul:nth-of-type(1){
	display: table;
	float: right;
	margin-right: 2%;
}
header nav ul:nth-of-type(1) li{
	display: table-cell;
}
header nav ul:nth-of-type(1) li>a{
	display: block;
	font-size: 1.5rem;
	letter-spacing: 1px;
	font-weight: bold;
	padding: 20px 40px 20px 25px;
	position: relative;
	transition: 0.2s ease-in-out;
}
header nav ul:nth-of-type(1) li a i{
	display: block;
	font-style: normal;
	font-size: 1.2rem;
	font-weight: normal;
	color: rgba(0,0,0,0.6);
	transition: 0.2s ease-in-out;
}
header nav ul:nth-of-type(1) li a:after{
	content: "";
	display: block;
	height: 1px;
	width: 0px;
	background: #a4070a;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	transition: 0.1s ease-in-out;
}
header nav ul:nth-of-type(1) li a:hover:after,
header nav ul:nth-of-type(1) li.current>a:after{
	width: 12px;
}
header nav ul:nth-of-type(1) li.current>a,
header nav ul:nth-of-type(1) li.current>a i{
	color: #a4070a;
}

header nav ul:nth-of-type(2){
	display: block;
	width: 100%;
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
	box-sizing: border-box;
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.09);
}
header nav ul:nth-of-type(2) li{
	display: inline-block;
	font-size: 1.25rem;
	font-weight: bold;
	vertical-align: middle;
	padding-right: 30px;
}
header nav ul:nth-of-type(2) li:not(.sns) a{
	position: relative;
}
header nav ul:nth-of-type(2) li:not(.sns) a:after{
	content: "";
	display: block;
	height: 1px;
	width: 0px;
	background: #a4070a;
	position: absolute;
	top: calc(50% - 1px);
	left: -17px;
	transition: 0.1s ease-in-out;
}
header nav ul:nth-of-type(2) li:not(.sns) a:hover:after{
	width: 10px;
}
header nav ul:nth-of-type(2) li.sns{
	padding-right: 10px;
}
header nav ul:nth-of-type(2) li.sns a{
	display: block;
	background: #000;
	border-radius: 100%;
	padding: 6px;
	overflow: hidden;
	width: 15px;
	height: 15px;
	transition: 0.2s ease-in-out;
}
header nav ul:nth-of-type(2) li.sns a:hover{
	background: #a4070a;
}
header nav ul:nth-of-type(2) li.sns a img{
	height: 15px;
	width: 15px;
}

/*------*/

@media screen and (max-width: 1100px){
	header h1{
		width: 170px;
	}
	header h5{
		width: 130px;
	}
	header nav ul:nth-of-type(1) li>a{
		padding-right: 20px;
	}
	header nav ul:nth-of-type(1) li a i{
		font-size: 1rem;
	}
}
@media screen and (max-width: 950px){
	header{
		display: block;
		padding: 0 !important;
		top: 0 !important;
	}
	header>div{
		padding: 0;
		height: 70px;
	}
	header h1{
		width: 130px;
		position: absolute;
		padding: 0;
		top: 15px;
		left: 15px;
		z-index: 20;
	}
	header h5{
		width: 130px;
		position: absolute;
		padding: 0;
		top: 20px;
		left: 165px;
		z-index: 20;
	}
	#navbg{
		content: "";
		position: absolute;
		top: 0;
		left: 100vw;
		display: block;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.7);
		opacity: 0;
	}
	#menu{
		display: block;
		width: 50px;
		position: absolute;
		top: 10px;
		right: 5px;
	}
	#menu a{
		display: block;
		text-indent: -10000px;
		outline:none;
		line-height:1px;
		font-size:1px;
		width: 30px;
		height: 17px;
		padding: 18px 10px;
	}
	#menu a:before{
		content: "";
		display: block;
		width: 30px;
		height: 3px;
		background: #a4070a;
		position: absolute;
		top: 25px;
		left: 10px;
		transition: 0.3s ease-in-out;
	}
	#menu a:after{
		content: "";
		display: block;
		width: 30px;
		height: 3px;
		background: #a4070a;
		position: absolute;
		top: 32px;
		left: 10px;
		transition: 0.3s ease-in-out;
	}
	#menu a i{
		display: block;
		width: 30px;
		height: 3px;
		background: #a4070a;
		position: absolute;
		top: 18px;
		left: 10px;
		transition: 0.3s ease-in-out;
	}
	#menu.open a:before{
		opacity: 0;
		left: 12px;
	}
	#menu.open a:after{
		top: 25px;
		left: 12px;
		-webkit-transform: rotate(-225deg);
		transform: rotate(-225deg);
	}
	#menu.open a i{
		top: 25px;
		left: 12px;
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
	}
	header nav{
		display: block;
		background: rgba(255,255,255,0.9);
		position: absolute;
		top: 0;
		left: 120vw;
		height: 100vh;
		box-sizing: border-box;
		border-right: 1px solid #fff;
		width: calc(100% - 60px);
		opacity: 0;
		overflow: hidden;
	}
	header nav ul:nth-of-type(1){
		display: block;
		float: none;
		margin-top: 75px;
		padding-bottom: 10px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	header nav ul:nth-of-type(1) li,
	header nav ul:nth-of-type(1)>li:nth-of-type(1){
		display: block;
	}
	header nav ul:nth-of-type(1) li a{
		font-size: 1.4rem;
		line-height: 1.4;
		padding: 5px 0 5px 25px;
	}
	header nav ul:nth-of-type(1) li a:after{
		top: calc(50% - 8px);
	}
	header nav ul:nth-of-type(2){
		position: static;
		box-sizing: border-box;
		padding: 0 !important;
		border: none;
		text-align: center;
	}
	header nav ul:nth-of-type(2) li{
		display: block;
		font-size: 1.2rem;
		font-weight: bold;
		padding: 0;
	}
	header nav ul:nth-of-type(2) li:not(.sns){
		border-top: 1px solid rgba(255,255,255,0.7);
		border-bottom: 1px solid rgba(0,0,0,0.1);
		text-align: left;
	}
	header nav ul:nth-of-type(2) li:not(.sns) a{
		position: relative;
		display: block;
		padding: 8px 20px;
	}
	header nav ul:nth-of-type(2) li:not(.sns) a:after{
		content: "";
		display: block;
		height: 1px;
		width: 0px;
		background: #a4070a;
		position: absolute;
		top: calc(50% - 1px);
		left: 0;
		transition: 0.1s ease-in-out;
	}
	header nav ul:nth-of-type(2) li:not(.sns) a:hover:after{
		width: 10px;
	}
	header nav ul:nth-of-type(2) li.sns{
		padding: 0;
		display: inline-block;
		margin: 15px 10px 10px;
	}
	header nav ul:nth-of-type(2) li.sns a{
		margin: 0 auto;
	}
	header nav ul:nth-of-type(2) li:nth-of-type(3){
		box-shadow: 0 1px 0 rgba(255,255,255,0.7);
	}
	.parentnav>a:before{
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		transform: rotate(45deg);
		border-top: 1px solid #a4070a;
		border-right: 1px solid #a4070a;
		position: absolute;
		top: 19px;
		right: 15px;
	}
}

.childnav{
	position: absolute;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.5);
	overflow: hidden;
	box-sizing: border-box;
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: 0.4s cubic-bezier(.65,.01,.43,1.01);
}
.childnav.on{
	height: 100vh;
	opacity: 1;
}
.childnav>p{
	display: block;
	width: 100%;
	max-width: 1500px;
	clear: both;
	float: right;
	text-align: center;
	padding-left: 30px;
	box-sizing: border-box;
}
.childnav>div{
	background: rgba(255,255,255,0.9);
	overflow: hidden;
}
.childnav>div>div{
	display: table;
	table-layout: fixed;
	width: 100%;
	max-width: 1500px;
	float: right;
}
.childnav dl{
	padding: 30px 10px 20px;
	display: table-cell;
	font-size: 1.3rem;
}
.childnav dl dt{
	display: block;
	text-align: center;
	font-weight: bold;
	padding-bottom: 10px;
}
.childnav dl dd{
	display: block;
}
.childnav dl a{
	display: block;
	padding: 4px 0;
}
.childnav dl dt a:before{
	content: "";
	display: block;
	width: 100%;
	height: 80px;
	margin-bottom: 5px;
}
.childnav dl dt a:after{
	display: none !important;
}
.childnav dl:nth-of-type(1) dt a:before{
	background: url(../images/bn1.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.childnav dl:nth-of-type(2) dt a:before{
	background: url(../images/bn2.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.childnav dl:nth-of-type(3) dt a:before{
	background: url(../images/bn3.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.childnav dl:nth-of-type(4) dt a:before{
	background: url(../images/bn4.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.childnav dl a:hover{
	opacity: 0.8;
}
.childnav dl dd a{
	padding: 7px 5px 7px 25px;
	line-height: 1.4;
	letter-spacing: 0;
	position: relative;
}
.childnav dl dd a:hover{
	background: rgba(255,255,255,0.4);
}
.childnav dl dd a:after{
	top: 16px;
	left: 5px;
}
.childnav>div>div.inner{
	display: table;
	table-layout: fixed;
	width: auto;
	float: right;
	min-width: 400px;
}
header nav ul:nth-of-type(1) li:nth-of-type(3) .childnav>div>div.inner{
	margin-right: 400px;
}
@media screen and (max-width: 1100px){
	header nav ul:nth-of-type(1) li:nth-of-type(3) .childnav>div>div.inner{
		margin-right: 35vw;
	}
}
.childnav .inner p{
	padding: 30px 10px 20px;
	display: table-cell;
	font-size: 1.3rem;
}
.childnav .inner p a{
	display: block;
	padding: 7px 5px 7px 25px;
	line-height: 1.4;
	letter-spacing: 0;
	position: relative;
	margin-bottom: 10px;
}
.childnav .inner p a:hover{
	background: rgba(255,255,255,0.4);
}
.childnav .inner p a:after{
	top: 16px;
	left: 5px;
}
.childnav .more{
	clear: both;
	width: 100%;
	max-width: 1500px;
	float: right;
	text-align: right;
	padding: 20px 0;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.childnav .more a{
	padding: 5px 22px !important;
	margin: 0 15px;
}
.childnav .back{
	display: none;
}
#shade{
	width: 100vw;
	background: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: none;
	opacity: 0;
}

@media screen and (max-width: 850px){
	nav ul{
		transition: 0.4s ease-in-out;
	}
	nav ul.on2{
		margin-left: -100vw;
	}

	.childnav{
		opacity: 0;
		top: 0;
		left: 100vw;
		height: calc(100vh - 80px);
		margin-top: 80px;
		padding-left: 30px;
		z-index: 5;
		overflow: auto;
		background: none;
	}
	.childnav>div{
		background: none;
	}
	.childnav.on2{
		height: calc(100vh - 80px);
		opacity: 1;
		left: 0;
	}
	.childnav .back{
		display: block;
		width: 30px;
		position: absolute;
		top: 0;
		left: 0;
		background: #a4070a;
		cursor: pointer;
	}
	.childnav .back span{
		display: block;
		height: 15px;
		width: 15px;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		transform: rotate(-45deg);
		position: absolute;
		left: 10px;
	}
	.childnav>div{
		display: block;
		float: none;
	}
	.childnav dl{
		padding: 0 10px 20px;
		display: block;
		width: auto;
	}
	.childnav dl a{
		font-size: 1.2rem;
	}
	.childnav dl dt{
		padding-bottom: 0;
	}
	.childnav dl dd{
	}
	.childnav dl dt a:before{
		height: 50px;
	}
	.childnav dl dt a{
		padding-top: 0;
	}
	.childnav dl dd a{
		padding: 4px 5px 4px 25px;
		line-height: 1.4;
		letter-spacing: 0;
		position: relative;
	}
	.childnav dl dd a:hover{
		background: rgba(0,0,0,0.1);
	}
	.childnav dl dd a:after{
		top: 13px !important;
	}
	.childnav>div>div.inner{
		display: block;
		float: none;
		min-width: 0;
	}
	.childnav .inner p{
		padding: 5px 10px 5px;
		display: block;
		width: auto;
	}
	.childnav .inner p a{
		font-size: 1.4rem;
		margin-bottom: 0;
		padding: 5px 0 5px 25px;
		line-height: 1.4;
		letter-spacing: 0;
		position: relative;
	}
	.childnav .inner p a:hover{
		background: rgba(0,0,0,0.1);
	}
	.childnav .inner p a:after{
		top: 13px !important;
	}
	.childnav .more{
		padding: 20px 22px !important;
		margin-bottom: 0;
	}
	.childnav .more a{
		margin: 0;
	}
	.childnav .more a:nth-child(n+2){
		display: none;
	}
	.childnav>p{
		display: block;
		width: 100%;
		max-width: 1200px;
		clear: both;
		float: right;
		text-align: center;
		padding-left: 30px;
		box-sizing: border-box;
	}
	#shade{
		opacity: 0 !important;
	}
}

/*----------------------------content--------------------------------*/

hr{
	background: rgba(0,0,0,0.09);
	display: block;
	height: 1px;
	width: 100%;
	border: none;
	margin: 0;
	padding: 0;
}

.blank{
	padding-right: 18px;
	position: relative;
}
.blank:after{
	content: "";
	display: block;
	width: 6px;
	height: 4px;
	border: 1px solid rgba(130,130,130,0.7);
	position: absolute;
	top: calc(50% - 4px);
	right: 0;
}
.blank:before{
	content: "";
	display: block;
	width: 6px;
	height: 4px;
	border: 1px solid rgba(150,150,150,0.7);
	position: absolute;
	top: calc(50% - 2px);
	right: 3px;
}

.w{
	margin: 0 auto;
	text-align: left;
	width: 100%;
	max-width: 1200px;
}
.t{
	display: table;
	table-layout: fixed;
}
.t>*{
	display: table-cell;
	vertical-align: top;
}

section{
	box-sizing: border-box;
	padding: 0 8px;
	min-width: 320px;
}

h2{
	font-family: "微软雅黑", Garamond , "Times New Roman" , "微软雅黑","游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: normal;
	font-size: 3.4rem;
	letter-spacing: 5px;
	line-height: 1.7;
	position: relative;
	padding-top: 20px;
	margin-bottom: 30px;
}
h2:before{
	content: "";
	display: block;
	width: 90px;
	height: 3px;
	background: #a4070a;
	position: absolute;
	top: 0;
	left: calc(50% - 45px);
}
h2 i{
	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;
	font-style: normal;
	display: block;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 1rem;
}

h3{
	font-family: "微软雅黑", Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: normal;
	font-size: 2.4rem;
	letter-spacing: 5px;
	line-height: 1.5;
	position: relative;
	margin-bottom: 10px;
	padding-left: 42px;
}
h3:before{
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background: #a4070a;
	position: absolute;
	top: 1.8rem;
	left: 0;
}
h3 i{
	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;
	font-style: normal;
	display: block;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 1rem;
}

h4{
	font-weight: normal;
	font-size: 2.2rem;
	letter-spacing: 3px;
	line-height: 1.7;
	position: relative;
	margin-bottom: 10px;
}

@media screen and (max-width: 600px){
	h2,
	h3,
	h4,
	h5{
		letter-spacing: 1px;
	}
}

.more a,
a .more .btn{
	display: inline-block;
	padding: 2px 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;
}

/*----------------------------mv--------------------------------*/

#mv{
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 50px;
	padding-top: 139px;
	box-sizing: border-box;
}
#mv:before{
	/*
	content: "";
	display: block;
	height: 139px;
	*/
}
#mv:before{
	content: "";
	display: block;
	width: 5vw;
	min-width: 100px;
	height: 3px;
	background: #a4070a;
	position: absolute;
	bottom: calc(90px + 10vh);
	left: 10vw;
	z-index: 30;
}
#mv.nobefore:before{
	display: none;
}
#mv.fullhight:before{
	bottom: calc(90px + 10vh);
	left: 10vw;
	z-index: 30;
}
#mv:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 650px;
	background: #f5f1f1;
	z-index: -1;
}
#slide{
	display: block;
	width: 100%;
	height: 500px;
	position: relative;
	margin-left: 20%;
}
#slide li{
	display: block;
	width: 100%;
	height: 450px;
	position: absolute;
	top: 0;
	left: 0;
	max-height: 450px;
}
#slide li:nth-child(n + 2){
	display: none;
}
#slide li i{
	position: absolute;
	top: 50%;
	left: 10vw;
}
#slide li span{
	display: block;
	width: 80%;
	height: 55vw;
	max-height: 450px;
	background-position: 0 50%;
	background-repeat: no-repeat;
	background-size: cover !important;
	position: absolute;
	top: 0;
	left: 20%;
	overflow: hidden;
}
#slide li span img{
	position: absolute;
	top: 50%;
	left: -10vw;
}
#slide li img{
	max-width: 80vw;
	max-height: calc(100vh - 250px);
}

#pointer{
	display: inline-block;
	position: absolute;
	bottom: 55px;
	right: 20px;
	z-index: 20;
}
#pointer li{
	display: inline-block;
	padding: 9px 0;
	height: 2px;
	width: 48px;
	margin-left: 12px;
	cursor: pointer;
}
#pointer li span{
	display: block;
	height: 2px;
	width: 48px;
	background: rgba(175,175,175,0.4);
}
#pointer li span i{
	display: block;
	height: 2px;
	width: 48px;
	background: #a4070a;
	opacity: 0;
}
#pointer li:first-child span i{
	opacity: 1;
}

#num{
	display: inline-block;
	position: absolute;
	bottom: -10px;
	right: 20px;
	z-index: 20;
	font-family: "微软雅黑", Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-style: italic;
	font-size: 2rem;
	font-weight: normal;
}
#num span:first-child{
	font-size: 3.6rem;
}

#arrow1{
	height: 50px;
	width: 50px;
	position: absolute;
	bottom: 15px;
	left: calc(50% - 20px);
}
#arrow1 a{
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}
#arrow1 a img{
	width: auto;
	height: 100%;
}

@media screen and (max-width: 950px){
	#mv{
		padding-top: 80px;
	}
	#mv:before{
		/*
		height: 80px;
		*/
	}
	#mv:before{
		bottom: 20vw;
	}
	#slide{
		height: 60vw;
	}
	#slide li{
		height: 55vw;
	}
	#slide span{
		height: 55vw;
	}
	#pointer{
		bottom: 5vw;
		right: 10px;
	}
	#pointer li{
		width: 15px;
		margin-left: 5px;
	}
	#pointer li span{
		width: 20px;
	}
	#pointer li span i{
		width: 20px;
	}
	#num{
		display: none;
	}
}

#mv.fullhight{
	height: 100vh;
}
#mv.fullhight:after{
	height: 100%;
}
.fullhight #slide{
	height: calc(100vh - 230px);
}
.fullhight #slide li{
	height: 100%;
	max-height: none;
}
.fullhight #slide li span{
	max-height: calc(100vh - 230px);
}
.fullhight #num{
	bottom: 10px;
}
.fullhight #pointer{
	bottom: 90px;
}
@media screen and (max-width: 850px){
	/*
	.fullhight #slide{
		height: calc(100vh - 160px);
	}
	*/
	.fullhight #pointer{
		bottom: 80px;
	}
	.fullhight #pointer li{
		width: 20px;
	}
	.fullhight #num{
		display: block;
		font-size: 2rem;
	}
	.fullhight #num span:first-child{
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 136vh){
	#mv.fullhight{
		height: auto;
	}
	#mv.fullhight:before{
		bottom: 100px !important;
	}
	#mv.fullhight:after{
		height: 100%;
	}
	.fullhight #slide{
		height: 60vw;
	}
	.fullhight #slide li{
		height: 55vw;
	}
	.fullhight #slide li span{
		max-height: none;
	}
	.fullhight #slide li img{
		max-width: 80vw;
		max-height: 20vw;
	}
	.fullhight #num{
		bottom: -15px;
		font-size: 1.6rem;
	}
	.fullhight #num span:nth-of-type(1){
		font-size: 3rem;
	}
	.fullhight #pointer{
		bottom: 5.5vw;
	}
}
@media screen and (max-width: 520px){
	.fullhight #num{
		display: none;
	}
}

/*----------------------------user--------------------------------*/

#user{
	clear: both;
	padding: 20px 0 50px;
}
#user ul{
	display: block;
	max-width: 1700px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
#user li{
	display: block;
	padding: 0 10px;
	float: left;
	width: 33.3%;
	box-sizing: border-box;
}
#user li a{
	display: block;
	padding-top: 130px;
	text-align: center;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}
#user li:nth-of-type(1) a{
	background: url(../images/user1.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#user li:nth-of-type(2) a{
	background: url(../images/user2.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#user li:nth-of-type(3) a{
	background: url(../images/user3.jpg) 50% 50% no-repeat;
	background-size: cover;
}
#user li a:after{
	display: block;
	content: "";
	width: 120%;
	height: 190px;
	position: absolute;
	top: -30px;
	left: -10%;
}
#user li:nth-of-type(1) a:after{
	background: url(../images/user1.png) 50% 50% no-repeat;
	background-size: contain;
}
#user li:nth-of-type(2) a:after{
	background: url(../images/user2.png) 50% 50% no-repeat;
	background-size: contain;
}
#user li:nth-of-type(3) a:after{
	background: url(../images/user3.png) 50% 50% no-repeat;
	background-size: contain;
}
#user li a:hover{
	opacity: 0.7;
}
#user li a span{
	display: block;
	background: #fff;
	border-bottom: 1px solid #ccc;
	font-family: "微软雅黑" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	padding: 15px 0;
	letter-spacing: 1px;
	font-size: 1.9rem;
}
#user li a span i{
	font-size: 1rem;
	display: block;
	font-style: normal;
	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;
}
@media screen and (max-width: 700px){
	#user li{
		padding: 0 5px;
	}
	#user li span{
		letter-spacing: 0 !important;
	}
	#user li span i{
		letter-spacing: 2px !important;
	}
}
@media screen and (max-width: 600px){
	#user li{
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}
	#user li span{
		letter-spacing: 2px !important;
		padding: 10px 0 !important;
	}
}

.sidebanner{
	margin-top: 20px;
	border: 1px solid #ddd;
}

/*----------------------------showroom--------------------------------*/

#showroom{
	background: url(../images/showroom_1.jpg) 0 0 no-repeat;
	padding: 80px 0 0 0 !important;
	margin-bottom: 40px;
	box-sizing: border-box;
	min-width: 320px;
}
#showroom .bg{
	background: url(../images/showroom_2.jpg) 50% 50% no-repeat;
	background-size: cover;
	color: #fff;
	max-width: 100%;
}
#showroom .w{
	margin: 0;
	padding: 80px;
	box-sizing: border-box;
}
#showroom h2:before{
	left: 0;
}

@media screen and (max-width: 850px){
	h2{
		font-size: 2.4rem;
		line-height: 1.4;
	}
}
@media screen and (max-width: 800px){
	#showroom{
		padding: 70px 0 0 0 !important;
		background-size: auto 90%;
	}
	#showroom .bg{
		margin-left: 7vw !important;
		width: calc(100% - 7vw) !important;
	}
	#showroom .w{
		padding: 40px 6vw;
	}
	#showroom h2:before{
		left: 0;
	}
}

/*----------------------------fbn--------------------------------*/

#fbn>div{
	padding: 50px 0;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
#fbn .prev{
	display: block;
	width: 40px;
	height: 50px;
	background: url(../images/arrow3.png) 50% 50% no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 30px);
	left: 0;
	cursor: pointer;
}
#fbn .next{
	display: block;
	width: 40px;
	height: 50px;
	background: url(../images/arrow2.png) 50% 50% no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 30px);
	right: 0;
	cursor: pointer;
}
#fbn>div>div{
	width: calc(100% - 80px);
	max-width: 1120px;
	margin: 0 auto;
	overflow: hidden;
}
#fbn>div ul{
	display: table;
	table-layout: fixed;
}
#fbn>div li{
	display: table-cell;
	text-align: center;
}
#fbn>div li a{
	display: block;
	padding: 0 1vw;
}
#fbn>div li a p:nth-of-type(2){
	font-size: 1.3rem;
	text-align: left;
}
#fbn>div li a div{
	background: #000;
	display: inline-block;
	margin-bottom: 8px;
	position: relative;
	overflow: hidden;
}
#fbn>div li a img{
	display: block;
	transition: 0.2s ease-in-out;
}
#fbn>div li a:hover img{
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

@media screen and (max-width: 850px){
	#fbn>div{
		padding: 30px 0;
	}
	#fbn>div li a{
		padding: 0 1vw;
	}
	#fbn>div li a div{
		margin-bottom: 0;
	}
	#fbn .prev,
	#fbn .next{
		display: none;
	}
	#fbn>div>div{
		width: 100%;
	}
}
@media screen and (max-width: 600px){
	#fbn>div li a p{
		font-size: 1.2rem;
		line-height: 1.5;
	}
	#fbn>div li a p:last-child{
		display: none;
	}
}


/*----------------------------footer--------------------------------*/

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;
}
#footer nav{
	text-align: center;
	padding: 20px 0;
	border-bottom: 1px solid #10100f;
	box-shadow: 0 1px 0 #3b3938;
	margin-bottom: 30px;
}
#footer nav ul{
	display: block;
	margin: 0 auto;
}
#footer nav ul li{
	display: inline-block;
}
#footer nav ul li a{
	color: #fff;
	padding: 10px;
	display: block;
}
#footer .w{
	text-align: center;
}
#footer .logo{
	margin-bottom: 20px;
}
#footer .logo img{
	width: 188px;
}
#footer .msg{
	display: inline-block;
	text-align: center;
	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 nav{
		padding: 0;
		border-bottom: 1px solid #3b3938;
		box-shadow: none;
	}
	#footer nav ul{
		overflow: hidden;
	}
	#footer nav ul li{
		display: block;
		width: 50%;
		float: left;
		border-bottom: 1px solid #10100f;
		box-shadow: 0 1px 0 #3b3938;
		box-sizing: border-box;
	}
	#footer nav ul li:nth-of-type(odd){
		border-right: 1px solid #3b3938;
	}
	#footer nav ul li:nth-of-type(even){
		border-left: 1px solid #10100f;
	}
	#footer nav ul li a{
		color: #fff;
		padding: 10px;
		display: block;
	}
	#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;
	}
}

/*----------------------------bloglayout--------------------------------*/

.blog-archive-lay article{
	margin-bottom: 30px;
	padding-bottom: 30px;
	overflow: hidden;
	border-bottom: 1px solid rgba(0,0,0,0.09);
}
.blog-archive-lay article a{
	transition: 0.3s ease-in-out;
	color: #333 !important;
}
.blog-archive-lay article a>div{
	float: left;
	width: 200px;
}
.blog-archive-lay article a>div:nth-of-type(2){
	float: right;
	width: calc(100% - 230px);
}
.blog-archive-lay article a:hover{
	/*opacity: 0.7;*/
}
.blog-archive-lay time{
	font-size: 1.3rem;
}
.blog-archive-lay h4{
	font-weight: normal;
	font-size: 2.0rem;
	letter-spacing: 2px;
	line-height: 1.7;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.blog-archive-lay h4:before{
	content: "";
	display: block;
	width: 90px;
	height: 1px;
	background: #a4070a;
	position: absolute;
	bottom: 0;
	left: 0;
}

.blog-single-lay article{
	overflow: hidden;
	margin-bottom: 30px;
}
.blog-single-lay time{
	font-size: 1.3rem;
}
.blog-single-lay h4{
	font-weight: normal;
	font-size: 2.0rem;
	letter-spacing: 2px;
	line-height: 1.7;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.blog-single-lay h4:before{
	content: "";
	display: block;
	width: 90px;
	height: 1px;
	background: #a4070a;
	position: absolute;
	bottom: 0;
	left: 0;
}
.blog-single-lay .entrybody{
	padding: 15px 0 60px;
}
.blog-single-lay .entrybody img{ margin-bottom:10px;
}
.blog-single-lay .entrysns{
	position: relative;
}
.blog-single-lay .entrysns ul{
	display: table;
	table-layout: fixed;
	position: absolute;
	top: 13px;
	left: 0;
}
.blog-single-lay .entrysns li{
	display: table-cell;
	padding: 0 2px;
}
.blog-single-lay .entrysns li img{
	display: block;
	width: 20px;
}
.blog-single-lay .entrysns li a:hover img{
	opacity: 0.7;
}
.blog-single-lay .entryfooter{
	font-size: 1.25rem;
	text-align: right;
	border-top: 1px solid rgba(0,0,0,0.09);
	border-bottom: 1px solid rgba(0,0,0,0.09);
	padding: 10px 0 8px 120px;
}
.blog-single-lay .entryfooter>*{
	display: inline-block;
	margin-left: 2px;
	padding: 2px 5px;
	line-height: 1.3;
	margin-bottom: 2px;
}
.blog-single-lay .entryfooter time,
.blog-single-lay .entryfooter p{
	border-right: 1px solid #ddd;
	padding-right: 10px;
	margin-right: 8px;
}
.blog-single-lay .entryfooter span{
	border: 1px solid #eee;
}

.pager{
	padding-top: 20px;
	clear: both;
	overflow: hidden;
	margin-bottom: 60px;
}
.pager ul{
	display: table;
	margin: 0 auto;
}
.pager ul li{
	display: table-cell;
	vertical-align: middle;
	padding: 0 2px;
	line-height: 1.3;
}
.pager ul li a{
	display: block;
	padding: 10px;
	vertical-align: middle;
	border: 1px solid #ccc;
}
.pager ul li.current a{
	background: #111;
	color: #fff;
}
.pager2{
	padding-top: 20px;
	clear: both;
	overflow: hidden;
	margin-bottom: 60px;
}
.pager2 ul{
	display: block;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
}
.pager2 ul li{
	display: block;
	min-height: 1px;
	float: left;
	line-height: 1.3;
	text-align: center;
	width: calc((100% - 100px)/2);
}
.pager2 .back{
	width: 100px;
}
.pager2 .next{
	text-align: left;
}
.pager2 .prev{
	text-align: right;
}
.pager2 ul li a{
	display: inline-block;
	display: block;
	padding: 10px 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

@media screen and (max-width: 850px){
	.blog-single-lay .entrysns ul{
		top: 10px;
		left: auto;
		right: 0;
	}
	.blog-single-lay .entryfooter{
		padding-left: 0;
		padding-top: 36px
	}
}
@media screen and (max-width: 770px){
	.blog-archive-lay article a>div{
		width: 150px;
	}
	.blog-archive-lay article a>div:nth-of-type(2){
		width: calc(100% - 180px);
	}
	.blog-archive-lay p{
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}
@media screen and (max-width: 600px){
	.blog-archive-lay article a>div{
		width: 100px;
	}
	.blog-archive-lay article a>div:nth-of-type(2){
		width: calc(100% - 120px);
	}
	.blog-archive-lay h4{
		font-size: 1.8rem;
		letter-spacing: 1px;
		line-height: 1.5;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
}

/*----------------------------form--------------------------------*/

form input,
form textarea{
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	padding: 15px;
	font-size: 13px;
	border: 1px solid rgba(0,0,0,0.09);
	color: #666;
	letter-spacing: 1px;
	font-family: "微软雅黑", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS P Gothic", Verdana,Arial, Helvetica, sans-serif;
	-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;
	-webkit-appearance: none;
}
form input:focus,
form textarea:focus{
	background: #fff;
	border: 1px solid #ddd;
}
form .submit input{
	display:inline-block;
	width: auto;
	cursor: pointer;
	background: #cc0c06;
	color: #fff;
	letter-spacing: 3px;
	padding: 10px;
	font-size: 1rem;
	min-width: 240px;
	font-family: "微软雅黑", Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
form .submit input:hover{
	background: #e50700;
}
form .submit input:active{
	background: #b60600;
}
form select{
	background: #fff;
	padding: 0 5px;
	border: 1px solid #ccc;
	letter-spacing: 1px;
	font-family: "微软雅黑", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS P Gothic", Verdana,Arial, Helvetica, sans-serif;
}
form select option{
	padding: 5px;
	border: none;
}
form input[type=radio],
form input[type=checkbox]{
	display: none;
	margin: 0;
}
form input[type=radio] + span,
form input[type=checkbox] + span{
	position: relative;
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	padding: 0 0 0 25px;
	font-family: "微软雅黑", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS P Gothic", Verdana,Arial, Helvetica, sans-serif;
}
form input[type=radio] + span::before,
form input[type=checkbox] + span::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 21px;
	height: 21px;
	margin-top: -11px;
	background: #FFF;
	border: 1px solid rgba(0,0,0,0.09);
}
form input[type=radio]:checked + span::after,
form input[type=checkbox]:checked + span::after{
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	left: 5px;
	width: 11px;
	height: 11px;
	margin-top: -6px;
	background: #A60E11;
}
form input[type=file]{
	border: none;
}

.wpcf7{
	text-align: left;
}
.wpcf7 dl{
	display: table;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.wpcf7 dt{
	display: table-cell;
	vertical-align: middle;
	width: 150px;
	text-align: left;
	padding-right: 20px;
}
.wpcf7 dd{
	display: table-cell;
	vertical-align: middle;
}
.wpcf7 dd span{
	margin: 5px 0;
}
.wpcf7 .submit{
	text-align: center;
	padding: 20px;
}
.wpcf7 .wpcf7-submit{
	width: 200px;
	display: inline-block;
	padding: 10px 22px;
	background: #a4070a;
	color: #fff !important;
	text-transform: uppercase;
	letter-spacing: 10px;
	position: relative;
	transition: 0.2s ease-in-out;
	cursor: pointer;
	font-size: 1.4rem !important;
	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;
}
.wpcf7 .wpcf7-submit:hover{
	background: #222;
}
.wpcf7 .ajax-loader{
	display: inline-block;
	margin: 0 auto;
}
.wpcf7 .age{
	width: 90px;
	display: inline-block;
}
.wpcf7 form div.visible-only-if-sent{
	display: none;
    font-family: "微软雅黑", 'Yeseva One', Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: normal;
	font-size: 7rem;
	letter-spacing: -1px;
	line-height: 1.2;
	text-align: center;
}
.wpcf7 form.sent div.visible-only-if-sent{
	display: block;
}
.wpcf7-mail-sent-ok{
	border: none !important;
	text-align: center;
	margin-top: 0;
}
form input[name=your-zip1],
form input[name=your-zip2]{
	width: 100px;
	display: inline-block;
	margin: 0 5px 5px 5px
}
@media screen and (max-width: 630px){
	.wpcf7 dl{
		display: block;
	}
	.wpcf7 dt{
		display: block;
		text-align: left;
		padding-right: 0;
	}
	.wpcf7 dd{
		display: block;
	}
}

/*----------------------------link etc--------------------------------*/

a{
	outline: 0;
}

a:link, a:visited{
	text-decoration: none;
	color: #333;
}
#L a:link, #L a:visited{
	/*color: #AB0002;*/
	
}

a:hover{
	color: #333;
}

.red{
	color: #A4070A;
}

.spnone,
.spnone2{
	display: block;
}
.pcnone,
.pcnone2{
	display: none;
}
@media screen and (max-width: 880px){
	.spnone{
		display: none;
	}
	.pcnone{
		display: block;
	}
}
@media screen and (max-width: 600px){
	.spnone2{
		display: none;
	}
	.pcnone2{
		display: block;
	}
}

/*----------------------------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);
	}
}


