@charset "utf-8";

/* common */
*{
	padding:0;
	margin:0;
	font-family: "Zen Old Mincho", serif;
	font-size: 16px;
}
img{
	width:100%;
	vertical-align: bottom;
}
ul,li{
	list-style-type: none;
}
a{
	text-decoration: none;
	color:#231815;
}
.sp{
	display: none;
}
@media (max-width:1024px){
	*{
		font-size:14px;
	}
}
@media (max-width:768px){
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	*{
		font-size:12px;
	}
}

/* header */
.navHeight{
	display: block;
	width:100%;
	height:140px;
}
@media (max-width:1200px){
	.navHeight{
		height:60px;
	}
}

/* header */
header{
	width:100%;
	position: fixed;
	background-color: #fff;
	z-index: 997;
}
.headerInner{
	width:98%;
	padding:10.5px 0;
	margin:0 auto;
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.headerInner h1{
	width:450px;
}
.headerInner h1 a:hover,
.headerInner h1 a:active{
	opacity:0.5;
}
.headerInner .pcBtn{
	display:flex;
}
.headerInner .pcBtn ul li a:hover{
	opacity:0.5;
}
.headerInner .pcBtn ul:first-of-type{
	margin-right:10px;            
}
.headerInner .pcBtn ul:first-of-type li a{
	font-size: 14px;
	position:relative;
	display:inline-block;
	padding-left:14px;            
}
.headerInner .pcBtn ul:first-of-type li a:before{
	content:'';
	width:6px;
	height:6px;
	border:0;
	border-top:1px solid #231815;
	border-right:1px solid #231815;
	transform:rotate(45deg);
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto;
}
.headerInner .pcBtn ul:last-of-type{
	width: 370px;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.headerInner .pcBtn ul:last-of-type li{
	width:180px;
	height:100%;
}
.headerInner .pcBtn ul:last-of-type li a{
	display: flex;
	height:100%;
}
.headerInner .pcBtn ul:last-of-type li:first-of-type a{
	background-color: #883355;
}
.headerInner .pcBtn ul:last-of-type li:last-of-type a{
	background-color: #066c95;
}
.reflection{
	display:inline-block;
	position:relative;
	overflow:hidden;
}
.reflection:after{
	content:"";
	height:100%;
	width:25px;
	position: absolute;
	top:-180px;
	left:0;
	background-color: #fff;
	opacity:0;
	transform: rotate(45deg);
	animation:reflection 3s ease-in-out infinite;
}
@keyframes reflection{
	0%{
		transform:scale(0) rotate(45deg);
		opacity:0;
	}
	80%{
		transform:scale(0) rotate(45deg);
		opacity:0.5;
	}
	81%{
		transform:scale(4) rotate(45deg);
		opacity:1;
	}
	100%{
		transform:scale(50) rotate(45deg);
		opacity:0;
	}
}
.blinking {
	animation: 1s ease-in-out 0s infinite alternate none running blink;
}
@keyframes blink{
	from{
		opacity:1;
	}
	to{
		opacity:0;
	}
}
.menuTrigger{
	display: none;
}
.noevent{
	pointer-events: none;
	opacity:0.5;
}
@media (max-width:1200px){
	.headerInner h1{
		width:350px;
	}
}
@media (max-width:1024px){
	header{
		height:60px;
	}
	.headerInner h1{
		width:300px;
	}	
	.headerInner .pcBtn ul:first-of-type{
		display:none;
	}
	.headerInner .pcBtn ul:last-of-type{
		display: none;
	}
	.menuTrigger{
		background-color: #000;
		padding:0 10px;
		position: fixed;
		top:0;
		right:0;
		z-index: 999;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width:50px;
		height: 60px;
		cursor:pointer;
	}
	.menuTrigger span{
		font-size: 12px;
		color:#fff;
		text-align: center;
	}
	.menuTrigger>.border{
		width:100%;
		height:2px;
		background-color: #fff;
		transition: all 0.5s;
	}
	.menuTrigger>.border:nth-of-type(1){
		margin-top: 4px;
	}
	.menuTrigger>.border:nth-of-type(2){
		margin-top: 7px;
	}
	.menuTrigger>.border:nth-of-type(3){
		margin-top: 7px;
	}
	.menuTrigger.active>.border:nth-of-type(1){
		transform: translateY(7px) rotate(-30deg);
	}
	.menuTrigger.active>.border:nth-of-type(2){
		opacity:0;
	}
	.menuTrigger.active>.border:nth-of-type(3){
		transform: translateY(-10px) rotate(30deg);
	}
	nav{
		z-index: 998;
	}
}
@media (max-width:768px){
	.headerInner>.pcBtn>ul.pc{
		display:none;
	}
}
@media (max-width:400px){
	.headerInner h1{
		width:250px;
	}
}

/* globalNav */
nav{
	width:100%;
	background-color: #03030b;
}
.navInner ul{
	width:1635px;
	margin:0 auto;
	display:flex;
	justify-content: space-between;
}
.navInner ul li{
	width:170px;
	height:60px;
}
.navInner ul li a{
	display: flex;
	height:60px;
	justify-content: center;
	align-items: center;
	color:#fff;
}
.navInner ul li a{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0 -50px;
	transition:.5s;
}
.navInner ul li a{
	position: relative;
}
.navInner ul li a span{
	font-size:0.75em;
	color:#fff;
	background-color:#c30d23;
	padding:0.1em 1em;
	margin-right:0.5em;
	position:absolute;
	top:-10px;
	left:50%;
	transform:translate(-50%,0);
}
.navInner ul li a:hover,
.navInner ul li a:active{
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition:.5s;
}
.navInner ul li:first-of-type a{
	background-image: url(../images/top/btn01.svg);
}
.navInner ul li:nth-of-type(2) a{
	background-image: url(../images/top/btn02.svg);
}
.navInner ul li:nth-of-type(3) a{
	background-image: url(../images/top/btn03.svg);
}
.navInner ul li:nth-of-type(4) a{
	background-image: url(../images/top/btn04.svg);
}
.navInner ul li:nth-of-type(5) a{
	background-image: url(../images/top/btn05.svg);
}
.navInner ul li:nth-of-type(6) a{
	background-image: url(../images/top/btn06.svg);
}
.navInner ul li:nth-of-type(7) a{
	background-image: url(../images/top/btn07.svg);
}
.navInner ul li:nth-of-type(8) a{
	background-image: url(../images/top/btn08.svg);
}
.navInner ul li:last-of-type a{
	background-image: url(../images/top/btn09.svg);
}
.navInner>.under1024,
.navInner>.sp,
.nav_outerWrap{
	display: none;
}
@media (max-width:1700px){
	.navInner ul{
		width:98%;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.navInner ul li{
		width: 10.40%;
	}
}
@media (max-width:1024px){
	nav{
		position: fixed;
		top:0;
		bottom:0;
		right:0;
		width:50%;
		transform: translateX(100%);
		transition: all 0.5s;
	}
	nav.active{
		transform: translateX(0%);
		transition: all 0.5s;
	}
	.navInner{
		width:100%;
		height:100%;
		display:flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.navInner ul{
		width:90%;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.navInner ul:first-of-type{
		margin-bottom: 30px;
	}
	.navInner ul li{
		width: 48%;
	}
	.navInner ul li a{
		background-position: 0 55px;
		transition:.5s;
	}
	.navInner ul li a span{
		top:50%;
		left:0;
		transform:translate(0,-50%);
	}
	.navInner ul li a:hover,
	.navInner ul li a:active{
		background-repeat: no-repeat;
		background-position: 0 55px;
		opacity:0.5;
		transition:.5s;
	}
	.navInner>.under1024{
		display: flex;
		justify-content: space-between;
	}
	.navInner>.under1024>li{
		width: 48%;
		position: relative;
	}
	.navInner>.under1024>li:first-of-type>a,
	.navInner>.under1024>li:last-of-type>a{
		background-image: none;
	}
	.navInner>ul:nth-of-type(2){
		margin-bottom: 30px;
	}
	.navInner>ul:nth-of-type(2)>li>a:before{
		content:'';
		width:6px;
		height:6px;
		border:0;
		border-top:1px solid #fff;
		border-right:1px solid #fff;
		transform:rotate(45deg);
		position:absolute;
		top:0;
		left:0;
		bottom:0;
		margin:auto;
	}
	.nav_outerWrap.active{
		display:block;
		width:100vw;
		height:100vh;
		position: fixed;
		top:0;
		left:0;
		z-index: 996;
		background-color: rgba(177,177,177,0.8);
	}
	.navInner>.under1024:last-of-type{
		display: flex;
		justify-content: space-between;
	}
	.navInner>ul:last-of-type>li{
		margin-bottom: 10px;
	}
	.navInner>ul:last-of-type>li:last-of-type{
		margin-bottom: 0px;
	}
	.navInner>ul:last-of-type>li:first-of-type>a{
		background-color: #883355;
		background-image: none;
	}
	.navInner>ul:last-of-type>li:last-of-type>a{
		background-color: #066c95;
		background-image: none;
	}
}
@media (max-width:1000px){
	nav{
		width:500px;
	}
}
@media (max-width:500px){
	nav{
		width:100%;
	}
}

/* notice */
.noticeWrap{
	background-color: #03030b;
	color:#fff;
	padding-top:50px;
	padding-bottom:30px;
}
.limited_noticeInner{
	text-align:center;
	border-bottom: none;
	margin-bottom:50px;
}
.limited_noticeInner>h3 {
	display:inline-block;
	font-family: "Shippori Mincho", serif;
	font-size: 2em;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.requestBtn_row{
	width:700px;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.requestBtn_row p.reflection{
	width:330px;
}
.requestBtn_row p a{
	transition:0.5s all;
}
.requestBtn_row p a:hover,
.requestBtn_row p a:active{
	opacity:0.5;
	transition:0.5s all;
}
.requestBtn_row p:first-of-type a{
	display: block;
	background-image: url(../images/top/btnBg_notice.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.requestBtn_row p:last-of-type a{
	display: block;
	background-image: url(../images/top/btnBg_notice02.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.noticeInner>p{
	font-size: 0.75em;
	text-align: center;
}
.under1400{
	display:none;
}
@media (max-width:1400px){
	.under1400{
		display:block;
	}
}
@media (max-width:1200px){
	.requestBtn_row{
		width:60%;
	}
	.requestBtn_row p.reflection{
		width:48%;
	}
}
@media (max-width:768px){
	.noticeInner{
		width:90%;
		margin:0 auto;
	}
	.noticeInner>p{
		text-align: left;
	}
	.noticeInner>p>.under1400{
		display:none;
	}
	.requestBtn_row{
		width:320px;
		flex-direction:column;
	}
	.requestBtn_row p.reflection{
		width:100%;
	}
	.requestBtn_row p:first-of-type{
		margin-bottom:10px;
	}
}
@media (max-width:400px){
	.requestBtn_row{
		width:80%;
	}
}

/* footer */
.footerWrap{
	padding-top:50px;
}
.sellerWrap{
	width:400px;
	margin:0 auto;
	margin-bottom: 30px;
}
.sellerWrap>h2{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25em;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-align: center;
	margin-bottom: 10px;
}
.sellerInfomation_wrap{
	width:1260px;
	margin:0 auto;
	margin-bottom: 50px;
}
.sellerInfomation_row{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.sellerInfomation_inner:first-of-type{
	width:25%;
}
.sellerInfomation_inner:nth-of-type(2){
	width:35%;
}
.sellerInfomation_inner:last-of-type{
	width:38%;
}
.sellerInfomation_inner:first-of-type>h3,
.sellerInfomation_inner:nth-of-type(2)>h3{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1em;
	font-weight: 500;
}
.sellerInfomation_inner:first-of-type>p,
.sellerInfomation_inner:nth-of-type(2)>p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.8em;
	font-weight: 300;
}
.sellerInfomation_inner:last-of-type>h3{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25em;
	letter-spacing: 0.25em;
	font-weight: 400;
	padding-bottom: 3px;
	border-bottom: 1px solid #000;
	margin-bottom: 5px;
}
.sellerInfomation_inner:last-of-type>p>a{
	transition:0.5s;
}
.sellerInfomation_inner:last-of-type>p>a:hover,
.sellerInfomation_inner:last-of-type>p>a:active{
	opacity:0.5;
	transition:0.5s;
}
.smallWrap{
	text-align: center;
	margin-bottom:10px;
}
.smallWrap>small{
	font-family: "Tenor Sans", sans-serif;
	font-size: 0.75em;
	letter-spacing: 0.1em;
}
.under450{
	display: none;
}
@media (max-width:1400px){
	.sellerInfomation_wrap{
		width:940px;
	}
	.sellerInfomation_inner:nth-of-type(2){
		width:30%;
	}
}
@media (max-width:1024px){
	.sellerInfomation_wrap{
		width:500px;
	}
	.sellerInfomation_row{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.sellerInfomation_inner:first-of-type{
		width:48%;
		margin-bottom:30px;
	}
	.sellerInfomation_inner:nth-of-type(2){
		width:48%;
		margin-bottom:30px;
	}
	.sellerInfomation_inner:last-of-type{
		width:90%;
	}
}
@media (max-width:768px){
	.footerWrap{
		margin-bottom: 110px;
	}
	.sellerInfomation_wrap{
		width:400px;
	}
	.sellerInfomation_row{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.sellerInfomation_inner:first-of-type{
		width:100%;
		margin-bottom:30px;
	}
	.sellerInfomation_inner:nth-of-type(2){
		width:100%;
		margin-bottom:30px;
	}
	.sellerInfomation_inner:last-of-type{
		width:100%;
	}
	.sellerInfomation_inner h3,
	.sellerInfomation_inner p{
		text-align: center;
	}
	.sellerInfomation_inner:first-of-type>h3,
	.sellerInfomation_inner:nth-of-type(2)>h3{
		font-size: 1.15em;
		margin-bottom: 5px;
	}
	.sellerInfomation_inner:first-of-type>p,
	.sellerInfomation_inner:nth-of-type(2)>p{
		font-size: 1em;
	}
	.sellerInfomation_inner:last-of-type>h3{
		text-align: left;
	}
	.footerNav_sp{
		width:100%;
		position:fixed;
		left:0;
		bottom:0;
		z-index:7;
	}
	.footerNav_sp ul{                
		display:flex;
		justify-content: space-between;
	}
	.footerNav_sp ul li{
		width:24.8vw;
		text-align: center;
	}
	.footerNav_sp ul li a{
		color:#fff;
		display: block;
		width: 100%;
		height:100%;
		padding:5px 0;
		transition:0.5s;
	}
	.footerNav_sp>ul>li:first-of-type>a,
	.footerNav_sp>ul>li:nth-of-type(2)>a{
		background-color: #113253;
	}
	.footerNav_sp>ul>li:nth-of-type(3)>a{
		background-color: #a19baa;
	}
	.footerNav_sp>ul>li:last-of-type>a{
		background-color: #5e5d77;
	}
	.footerNav_sp ul li a:hover,
	.footerNav_sp ul li a:active{
		opacity:0.5;
		transition:0.5s;
	}
	.icon{
		display:inline-block;
		width:50px;
		height:50px;
	}
	.accessIcon{
		background-image: url(../images/top/accessIcon.svg);
		background-size: cover;
		background-repeat: no-repeat;
	}
	.limitedIcon{
		background-image: url(../images/top/limitedIcon.svg);
		background-size: cover;
		background-repeat: no-repeat;
	}
	.requestIcon{
		background-image: url(../images/top/requestIcon.svg);
		background-size: cover;
		background-repeat: no-repeat;
	}
	.telIcon{
		background-image: url(../images/top/telIcon.svg);
		background-size: cover;
		background-repeat: no-repeat;
	}
}
@media (max-width:500px){
	.icon{
		width:40px;
		height:40px;
	}
}
@media (max-width:450px){
	.sellerWrap,
	.sellerInfomation_wrap{
		width: 80%;
	}
	.under450{
		display: block;
	}
}
@media (max-width:400px){
	.footerWrap{
		margin-bottom: 90px;
	}
	.icon{
		width:30px;
		height:30px;
	}
}
@media (max-width:350px){
	.footerWrap{
		margin-bottom: 70px;
	}
	.icon{
		width:20px;
		height:20px;
	}
}