@charset "utf-8";

/* all */
*{
	padding:0;
	margin:0;
	font-family: "Zen Old Mincho", serif;
	font-size: 16px;
}
img,
video{
	width:100%;
	vertical-align: bottom;
}
ul,li{
	list-style-type: none;
}
a{
	text-decoration: none;
	color:#231815;
}
.sp{
	display: none;
}
html.loading {
	display: none;
}
.leaflet-pane{
	z-index: 2;
}
.leaflet-top,
.leaflet-control{
	z-index: 3;
}
.scroll_fadeIn{
	opacity: 0;
	transition: opacity 2s ease-out;
}
.scroll_fadeIn.show{
	opacity: 1;
}
@media (max-width:1024px){
	*{
		font-size:14px;
	}
}
@media (max-width:768px){
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	*{
		font-size:12px;
	}
} 

/* header */
header{
	width:100%;
	position: fixed;
	top: 0;            
	z-index: 997;
	background-color: #141d33;           
}
header>span{
	display: block;
	width: 100%;
	height: 30px;
}
header>span>img{
	object-fit: cover;
	height: 100%;
	object-position: left bottom;
}
.headerInner{
	width:95%;
	height: 60px;
	margin:0 auto;
	padding: 10px 0;
	display:flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.headerInner>h1{
	max-width:280px;
	width: 60%;
}
.headerInner>h1>a{
	display: block;
	transition: 0.5s all;
}
.headerInner>h1>a:hover,
.headerInner>h1>a:active{
	opacity:0.5;
	transition: 0.5s all;
}
.headerInner>.pcBtn{
	display:flex;
	align-items: center;
}
.headerInner>.pcBtn>ul>li>a{
	transition: 0.5s all;
}
.headerInner>.pcBtn>ul>li>a:hover,
.headerInner>.pcBtn>ul>li>a:active{
	opacity:0.5;
	transition: 0.5s all;
}
.headerInner>.pcBtn>ul:first-of-type{
	margin-right: 20px;
}
.headerInner>.pcBtn>ul:first-of-type>li>a{
	font-size: 0.8em;
	letter-spacing: 0.1em;
	color: #fff;
	position:relative;
	display:inline-block;
	padding-left:1.5em;            
}
.headerInner>.pcBtn>ul:first-of-type>li>a:before{
	content:'';
	width:8px;
	height:8px;
	border:0;
	border-top:1px solid #bfad68;
	border-right:1px solid #bfad68;
	transform:rotate(45deg);
	position:absolute;
	top: 0;
	bottom: 0;
	left: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{
	height: 100%;
}
.headerInner>.pcBtn>ul:last-of-type>li:first-child{
	margin-right: 10px;
}
.headerInner>.pcBtn>ul:last-of-type>li>a{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8em;
	letter-spacing: 0.1em;
	/*color: #231815;*/
	color: #fff;
	padding: 1em 1.5em;
}
.headerInner>.pcBtn>ul:last-of-type>li:first-child>a{
	background-color: #78734b;
}
.headerInner .pcBtn ul:last-of-type li:last-of-type a{
	background-color: #616d91;
}
.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;
	}
}
.noevent{
	pointer-events: none;
	opacity:0.5;
}
.under1024{
	display: none;
}
@media (max-width:1024px){
	.over1024{
		display: none;
	}
	header{
		border-bottom: 1px solid #2f3b5a;
	}
	.headerInner.under1024{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.menuTrigger{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0,-50%);
		width: 50px;
		z-index: 999;
	}            
	.menuTrigger>ul{
		margin-bottom: 7px;
	}
	.menuTrigger>ul>li{
		width: 100%;
		height: 1px;
		background-color: #bfad68;
		transition: 0.5s all;
	}
	.menuTrigger>ul>li:nth-child(2){
		margin-top: 7px;
	}
	.menuTrigger>ul>li:nth-child(3){
		margin-top: 7px;
	}
	.menuTrigger.active>ul>li:nth-child(1){
		transform: translateY(8px) rotate(-30deg);
	}
	.menuTrigger.active>ul>li:nth-child(2){
		opacity: 0;
	}
	.menuTrigger.active>ul>li:nth-child(3){
		transform: translateY(-7px) rotate(30deg);
	}
	.menuTrigger>p{
		font-family: "Jost", sans-serif;
		font-size: 0.9em;
		font-weight: 300;
		letter-spacing: 0.1em;
		text-align: center;
		color: #fff;
	}
}

/* nav */
nav{
	width:100%;
	background-image: url(../images250808/common/navBg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-top: 1px solid #2f3b5a;
}
.navInner>ul{
	max-width:1320px;
	width: 80%;
	height:60px;
	margin:0 auto;
	display:flex;
	justify-content: center;
}
.navInner>ul>li{
	height: 100%;
}
.navInner>ul>li>a{
	font-family: "Jost", sans-serif;
	font-size: 0.9em;
	font-weight: 300;
	letter-spacing: 0.1em;
	text-align: center;
	color:#fff;
	height: 100%;
	padding: 0 50px;
	box-sizing: border-box;
	display: flex;            
	justify-content: center;
	align-items: center;            
	transition: 0.5s all;
}
.navInner>ul>li>a:hover,
.navInner>ul>li>a:active{
	opacity: 0.5;
	transition: 0.5s all;
}
.nav_outerWrap{
	display: none;
	opacity: 0;
	transition: 0.5s all;
}
@media (max-width:1700px){
	.navInner>ul{
		width: 90%;
	}
}
@media (max-width:1500px){
	.navInner>ul>li>a{
		padding: 0 40px;
	}
}
@media (max-width:1320px){
	.navInner>ul{
		width: 95%;
	}
	.navInner>ul>li>a{
		padding: 0 30px;
	}
}
@media (max-width:1024px){
	nav{
		position: fixed;
		top:0;
		bottom:0;
		right:0;
		max-width:600px;
		width: 90%;
		height: 100vh;
		transform: translateX(100%);
		transition: all 0.8s;
		z-index: 998;
		background-image: url(../images250808/common/spnavBg.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	nav.active{
		transform: translateX(0%);
		transition: all 0.8s;
	}
	.navInner.under1024{
		display: block;
		width: 100%;
	}
	.navInner.under1024>ul{
		width: 80%;
		height: auto;
		flex-direction: column;
	}
	.navInner.under1024>ul:first-of-type{
		margin-bottom: 30px;
	}
	.navInner.under1024>ul>li{
		width: 100%;
		margin-bottom: 10px;
	}
	.navInner.under1024>ul>li:last-of-type{
		margin-bottom: 0px;
	}
	.navInner.under1024>ul>li>a{
		display: inline-block;
		position: relative;
		font-size: 1.15em;
		padding: 0 0.5em;
	}
	.navInner.under1024>ul:last-of-type>li>a{
		color: #cfc18e;
	}
	.navInner.under1024>ul>li>a:after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 2px;
		background-color: #cfc18e;
		transition: width 0.8s ease-in-out;
	}
	.navInner.under1024>ul>li>a:hover::after{
		width: 100%;
	}
	.nav_outerWrap.active{
		display:block;
		opacity: 1;
		transition: 0.5s all;
		width:100vw;
		height:100vh;
		position: fixed;
		top:0;
		left:0;
		z-index: 995;
		background-color: rgba(177,177,177,0.8);
	}
}

/* navHeight */
.navHeight{
	width: 100%;
	height: 171px;
}
@media (max-width:1024px){
	.navHeight{
		height: 111px;
	}
}

/* noticeWrap */
.noticeWrap{
	background-image: url(../images250808/top/bg02.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	padding: 80px 0 0 0;
}
.noticeWrap.specialNone{
	padding: 0 0 0 0;
}
.pageNotice{
	padding: 80px 0;
	border-top: 2px solid #2f3b5a;
	position: relative;
}
.pageNotice:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(23, 28, 53, 0.5);
}
.pageNotice_inner{
	max-width: 1100px;
	width: 80%;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}
.pageNotice_inner>.limitedBox{
	position: relative;
	margin-bottom: 30px;
}
.pageNotice_inner>.limitedBox>h3{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1em;
	font-weight: 500;
	border-bottom: 1px solid #fff;
	display: inline-block;
	padding: 0 0 10px 0;
	margin-bottom: 20px;
}
.pageNotice_inner>.limitedBox>p{
	font-size: 0.8em;
	line-height: 1.8;
}
.pageNotice_inner>.pageBox{
	position: relative;
}
.pageNotice_inner>.pageBox>p{
	font-size: 0.75em;
	line-height: 1.8;
}
@media (max-width:1200px){
	.pageNotice_inner>.limitedBox>h3{
		font-size: 0.9em;
	}
	.pageNotice_inner>.limitedBox>p{
		font-size: 0.75em;
	}
	.pageNotice_inner>.pageBox>p{
		font-size: 0.7em;
	}
}
@media (max-width:1024px){
	.pageNotice{
		padding: 50px 0;
	}
}
@media (max-width:768px){                    
	.pageNotice_inner{
		width: 90%;
	}
	.pageNotice_inner>.limitedBox>p,
	.pageNotice_inner>.pageBox>p{
		text-align: left;
	}
	.pageNotice_inner>.limitedBox>p>.under1024,
	.pageNotice_inner>.pageBox>p>.under1024{
		display: none;
	}
	.over768{
		display: none;
	}
}

/* footer */
.footerWrap{
	padding-top:80px;
}
.inquiryBox{
	max-width: 600px;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 50px;
	border-bottom: 2px solid #231815;
}
.inquiryBox>h3{
	display: flex;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1em;
	font-weight: 400;
	margin-bottom: 10px;
}
.inquiryBox>h3>span{
	flex: 1;
	border-bottom: 2px solid #231815;
}
.inquiryBox>h3>span:first-child{
	margin-right: 1em;
	box-sizing: border-box;
}
.inquiryBox>h3>span:last-child{
	margin-left: 1em;
	box-sizing: border-box;
}
.inquiryContents_row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.inquiryContents_row p{
	width: 70%;
}
.inquiryContents_row p a{
	transition: 0.5s all;
}
.inquiryContents_row p a:hover,
.inquiryContents_row p a:active{
	opacity: 0.7;
	transition: 0.5s all;
}
.inquiryContents_row ul li{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
}
.sellerInfo_row{
	max-width: 1100px;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
}
.sellerInfo_Box:first-of-type{
	width: 38%;
}
.sellerInfo_Box>h2{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9em;
	font-weight: 400;
	margin-bottom: 5px;
}
.sellerInfo_Box>p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.7em;
	font-weight: 400;
}
.sellerInfo_Box:first-of-type>p>a{
	transition: 0.5s all;
}
.sellerInfo_Box:first-of-type>p>a:hover,
.sellerInfo_Box:first-of-type>p>a:active{
	opacity: 0.7;
	transition: 0.5s all;
}
.smallWrap{
	text-align: center;
	margin-bottom:10px;
}
.smallWrap>small{
	font-family: "Jost", sans-serif;
	font-size: 0.6em;
	letter-spacing: 0.1em;
}
@media (max-width:1200px){
	.inquiryBox{
		max-width: 500px;
		width: 80%;
	}
	.inquiryBox>h3{
		font-size: 0.9em;
	}
	.inquiryContents_row ul li{
		font-size: 0.7em;
	}
	.sellerInfo_Box>h2{
		font-size: 0.8em;
	}
	.sellerInfo_Box>p{
		font-size: 0.6em;
	}
	.smallWrap>small{
		font-size: 0.5em;
	}
}
@media (max-width:1024px){
	.inquiryBox{
		max-width: 550px;
		width: 80%;
	}
	.sellerInfo_row{
		max-width: 500px;
		width: 75%;
		flex-wrap: wrap;
	}
	.sellerInfo_Box{
		margin-bottom: 20px;
	}
	.sellerInfo_Box:first-of-type{
		width: 100%;
	}
	.sellerInfo_Box:last-of-type{
		margin-bottom: 0px;
	}
}
@media (max-width:768px){
	.footerWrap{
		padding-top:50px;
		margin-bottom: 100px;
	}
	.sellerInfo_row{
		margin-bottom: 30px;
	}
	.inquiryBox{
		width: 90%;
	}
	.footerNav_sp{
		width:100%;
		position:fixed;
		left:0;
		bottom:0;
		z-index: 990;
	}
	.footerNav_sp ul{                
		display:flex;
		justify-content: space-between;
	}
	.footerNav_sp ul li{
		width:25vw;
		text-align: center;
	}
	.footerNav_sp ul li a{
		font-family: "Noto Sans JP", sans-serif;
		font-size: 0.9em;
		font-weight: 400;
		color:#fff;                
		display: block;
		width: 100%;
		height:100%;
		padding:5px 0;
		transition:0.5s all;
	}
	.footerNav_sp>ul>li:first-of-type>a,
	.footerNav_sp>ul>li:last-of-type>a{
		background-color: #0d102c;                
	}
	.footerNav_sp>ul>li:nth-of-type(2)>a{
		background-color: #78734b;
	}
	.footerNav_sp>ul>li:nth-of-type(3)>a{
		background-color: #616d91;
	}
	.footerNav_sp ul li a:hover,
	.footerNav_sp ul li a:active{
		opacity:0.5;
		transition:0.5s all;
	}
	.icon{
		display:inline-block;
		width:30px;
		height:30px;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.accessIcon{
		background-image: url(../images250808/common/accessIcon.svg);
	}
	.requestIcon{
		background-image: url(../images250808/common/requestIcon.svg);
	}
	.limitedIcon{
		background-image: url(../images250808/common/limitedIcon.svg);
	}
	.telIcon{
		background-image: url(../images250808/common/telIcon.svg);
	}
}
@media (max-width:414px){
	.inquiryContents_row{
		flex-wrap: wrap;
	}
	.inquiryContents_row p{
		width: 80%;
		margin: 0 auto;
		margin-bottom: 5px;
	}
	.inquiryContents_row ul{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.inquiryContents_row ul li:first-child{
		margin-right: 1em;
	}
	.footerNav_sp ul li a{
		font-size: 0.8em;
	}
}