@charset "utf-8";

/* common */
*{
	padding:0;
	margin:0;
	font-family: "Zen Old Mincho", serif;
	font-size: 16px;
}
img,
video{
	width:100%;
	vertical-align: bottom;
}
canvas{
	width: auto;
	height: auto;
	vertical-align:bottom;
}
ul,li{
	list-style-type: none;
}
a{
	text-decoration: none;
	color:#231815;
}
.sp{
	display: none;
}
.relative{
	position: relative;
}
.absolute{
	position: absolute;
	top: 0;
	left: 0;
}
.under1800,
.under1600,
.under1400,
.under1200,
.under1024,
.under768,
.under500,
.under450{
	display: none;
}
.fadein{
	opacity: 0;
	transform: translate(0,0);
	transition: all 1s;
}
.fadein-bottom{
	transform: translate(0,30px);
}
.scrollin{
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}
@media (max-width:1800px){            
	.under1800{
		display: block;
	}
}
@media (max-width:1600px){            
	.under1600{
		display: block;
	}
}
@media (max-width:1400px){
	.under1400{
		display: block;
	}
}
@media (max-width:1200px){
	.under1200{
		display: block;
	}
}
@media (max-width:1024px){
	*{
		font-size:14px;
	}
	.under1024{
		display: block;
	}
}
@media (max-width:768px){
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	*{
		font-size:12px;
	}
	.under768{
		display: block;
	}
}
@media (max-width:500px){
	.under500{
		display: block;
	}
}
@media (max-width:450px){
	.under450{
		display: block;
	}
}

/* header */
header{
	width:100%;
	position: fixed;
	background-color: #fff;
	z-index: 997;
}
.headerInner{
	width:98%;
	padding:10px 0;
	margin:0 auto;
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.headerInner h1{
	width:450px;
}
.headerInner h1 a{
	transition: 0.5s all;
}
.headerInner h1 a:hover,
.headerInner h1 a:active{
	opacity:0.5;
	transition: 0.5s all;
}
.headerInner .pcBtn{
	display:flex;
}
.headerInner .pcBtn ul li a{
	font-size: 1em;
	transition: 0.5s all;
}
.headerInner .pcBtn ul li a:hover{
	opacity:0.5;
	transition: 0.5s all;
}
.headerInner .pcBtn ul:first-of-type{
	margin-right:10px;            
}
.headerInner .pcBtn ul:first-of-type li a{
	font-size: 0.8em;
	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{
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.headerInner .pcBtn ul:last-of-type li:first-of-type,
.headerInner .pcBtn ul:last-of-type li:nth-of-type(2){
	margin-right:0.5em;
}
.headerInner .pcBtn ul:last-of-type li a{
	letter-spacing: 0.1em;
	color:#fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 1.5em;
}
.headerInner .pcBtn ul:last-of-type li:first-of-type a,
.headerInner .pcBtn ul:last-of-type li:nth-of-type(2) a {
	background-color: #0078ad;
}
.headerInner .pcBtn ul:last-of-type li:last-of-type a{
	background-color: #b5a784;
}
.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;
	}
}
.menuTrigger{
	display: none;
}
.noevent{
	pointer-events: none;
	opacity:0.5;
}
@media (max-width:1200px){
	.headerInner{
		height: 50px;
	}
	.headerInner h1{
		width:300px;
	}
	.headerInner .pcBtn ul li a{
		font-size: 0.9em;
	}
}
@media (max-width:1024px){
	.headerInner .pcBtn ul:first-of-type,
	.headerInner .pcBtn ul:last-of-type{
		display:none;
	}
	.menuTrigger{
		background-color: #0078ad;
		padding:10px 15px;
		position: fixed;
		top:0;
		right:0;
		z-index: 999;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width:50px;
		height: 50px;
		text-align: center;
		cursor:pointer;
	}
	.menuTrigger span{
		font-family: "Marcellus", serif;
		font-size: 12px;
		letter-spacing: 0.1em;
		color:#fff;
	}
	.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;
		margin-bottom: 5px;
	}
	.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);
	}
}
@media (max-width:400px){
	.headerInner h1{
		width:250px;
	}
}

/* globalNav */
nav{
	width:100%;
	background-color: #77b9d6;
}
.navInner ul{
	width:1635px;
	margin:0 auto;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}
.navInner ul li a{
	display: flex;
	height:60px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color:#fff;
	border-bottom: 3px solid #fff;
	font-family: "Marcellus", serif;
	font-size:0.9em;
	letter-spacing: 0.1em;
	transition:.5s all;
	padding:0 40px;
	box-sizing:border-box;
}
.navInner ul li a span{
	font-family: "Marcellus", serif;
	font-size:0.5em;
	background-color: #eb6679;
	display:block;
	padding:0.25em 1.5em;
	margin-bottom: 2.5px;
}
.navInner ul li a:hover,
.navInner ul li a:active{
	color: #00437c;
	border-bottom: 3px solid #00437c;
	transition:.5s all;
}
.navInner>.under1024,
.navInner>.sp,
.nav_outerWrap{
	display: none;
}
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
	-moz-animation:blink 1.5s ease-in-out infinite alternate;
	animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@-moz-keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@media (max-width:1700px){
	.navInner ul{
		width:98%;
	}
}
@media (max-width:1500px){
	.navInner ul li a{
		padding:0 30px;
	}
}
@media (max-width:1200px){
	.navInner ul li a{
		padding:0 20px;
	}
}
@media (max-width:1024px){
	nav{
		position: fixed;
		top:0;
		bottom:0;
		right:0;
		z-index: 998;
		width:500px;
		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 li{
		width:48%;
	}
	.navInner ul:first-of-type{
		margin-bottom: 30px;
	}
	.navInner>.under1024{
		display: flex;
		justify-content: space-between;
	}
	.navInner>ul.decoBtn{
		margin-bottom: 30px;
	}
	.navInner>.under1024>li{
		width: 48%;
		position: relative;
	}
	.navInner>.under1024>li>a{
		text-align: center;
		border-bottom: none;
		transition:.5s all;
	}
	.navInner>.under1024>li>a:hover,
	.navInner>.under1024>li>a:active{
		color: #00437c;
		border-bottom: none;
		transition:.5s all;
	}
	.navInner>ul.under1024>li.deco>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;
	}
	.navInner>ul.specialBtn>li:first-of-type>a,
	.navInner>ul.specialBtn>li:nth-of-type(2)>a {
		background-color: #0078ad;
		margin-bottom: 10px;
	}
	.navInner>ul.specialBtn>li:last-of-type>a{
		background-color: #b5a784;
	}
	.navInner>ul.specialBtn>li>a:hover,
	.navInner>ul.specialBtn>li>a:active{
		color:#fff;
		opacity: 0.5;
	}
	.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);
	}
}
@media (max-width:768px){
	nav{
		width:80%;
	}
	.navInner>.under1024{
		margin-bottom:30px;
	}
	.navInner>.sp{
		display: flex;
		justify-content: space-between;
	}
	.navInner>ul.sp>li:first-of-type>a{
		background-color: #0078ad;
		background-image: none;
		border-bottom: none;
	}
	.navInner>ul.sp>li:last-of-type>a{
		text-align: center;
		background-color: #b5a784;
		background-image: none;
		border-bottom: none;
	}
}
@media (max-width:500px){
	nav{
		width:100%;
	}
}

/* pageNotice */
.pageNotice{
	background-color: #fff;
	padding: 50px 0;
}
.pageNotice_wrap{
	width:1320px;
	margin: 0 auto;
}
.pageNotice_wrap p{
	text-align: center;
	font-size: 0.75em;
}
@media (max-width:1400px){
	.pageNotice_wrap {
		width: 90%;
	}
}
@media (max-width:768px){
	.pageNotice_wrap p{
		text-align: left;
		font-size: 0.75em;
	}
}

/* limitedNotice */
.limitedNotice{
	background-color: #437ea9;
	color:#fff;
	padding-top:50px;
	padding-bottom:30px;
	text-align: center;
}
.limitedNotice_wrap{
	width:90%;
	margin: 0 auto;
}
.limitedNotice_wrap>h3{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25em;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-align: center;
	padding-bottom: 10px;
	display: inline-block;
	border-bottom: 1px solid #fff;            
}
.limitedNotice_wrap>p{
	text-align: center;
	padding:20px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1em;
	font-weight: 300;
}
@media (max-width:768px){
	.limitedNotice_wrap>p{
		text-align: left;
	}
}

/* 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;
}
.sellerWrap>p>a{
	transition: 0.5s all;
}
.sellerWrap>p>a:hover,
.sellerWrap>p>a:active{
	opacity:0.5;
	transition: 0.5s all;
}
.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: 5;
	}
	.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{
		background-color: #103252;
	}
	.footerNav_sp>ul>li:nth-of-type(2)>a{
		background-color: #b5a784;
	}
	.footerNav_sp>ul>li:nth-of-type(3)>a{
		background-color: #0078ae;
	}
	.footerNav_sp>ul>li:last-of-type>a{
		background-color: #77b9d6;
	}
	.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;
	}
}