@charset "UTF-8";

/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer{
	display: block;
}
ul li{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
input[type=radio]{
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}
input[type=checkbox]{
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}
html{
	font-size: 62.5%;
}
body{
	font-family: "a-otf-ryumin-pr6n", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	color: #333;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}
a {
	color: #006d9e;
	-webkit-tap-highlight-color: rgba(238, 223, 227, 0.2);
}
sup,
sub{
	font-size: xx-small;
}

/*--------------------------------
common
--------------------------------*/
.text-center {
	text-align: center;
}
.is-light{
	color: #fff;
}
.text-right {
	text-align: right;
}

.small-text {
	font-size: 75%;
}
.large-text{
	font-size: 150%;
}
.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.has-max {
	height: auto;
	max-width: 100%;
}

.flex-wrapper {
	display: flex;
}

.grid-wrapper {
	display: grid;
}
.attention-text{
	color: #837C59;
}
.strong-text{
	color: #79516e;
}
.img-wrapper{
	position: relative;
}
.img-wrapper .caption{
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}
.en-font{
	font-family: 'Cormorant Garamond', serif;
}
.times{
	font-family: "times-new-roman", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.caslon{
	font-family: "big-caslon-fb", serif;
	font-weight: 400;
	font-style: normal;
}
.vertical-text{
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}
.inline-block{
	display: inline-block;
}
@media screen and (max-width: 767px){
	.sp-none{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.pc-none{
		display: none;
	}
}
@keyframes slideUpFade{
	0% {
		opacity: 0;
		transform: translate(0, 20px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
@keyframes blink{
	0%,40%,60%,100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

a.none{
    pointer-events: none;
    opacity: .4;
}
/*--------------------------------
componet
--------------------------------*/
.inner{
	margin: 0 auto;
	padding: 0 16px;
	max-width: 1200px;
}
.inner-wide{
	margin: 0 auto;
	padding: 0 16px;
	max-width: 1680px;
}
.primary-heading{
	margin-bottom: .8em;
	font-size: 4.6rem;
	line-height: 1.3;
}
.secondary-heading{
	margin-bottom: .8em;
	font-size: 3rem;
	line-height: 1.3;
}
.tertiary-heading{
	margin-bottom: .8em;
	font-size: 2rem;
	line-height: 1.4;
}
.primary-lead{
	font-size: clamp(1.75rem, 0.764rem + 2.05vw, 4rem);
	line-height: 1.7;
}
.page-title-wrap{
	padding: 80px 0 24px;
	text-align: center;
}
.page-title{
	font-family: 'Cormorant Garamond', serif;
	font-size: 4rem;
	line-height: 1.2;
	letter-spacing: .02em;
	text-indent: .02em;
}
.page-title-lead{
	font-size: 1.4rem;
	line-height: 1.4;
}
.page-title-wrap .secondary-heading{
	margin-top: 2em;
}
@media screen and (max-width: 767px){
	.primary-heading{
		font-size: 2.4rem;
	}
	.secondary-heading{
		font-size: 2rem;
	}
	.tertiary-heading{
		font-size: 1.6rem;
	}
	.primary-lead{
		font-size: 1.8rem;
	}
	.page-title{
		font-size: 3rem;
	}
}
.note{
	margin: 1em 0;
	font-size: 1.6rem;
	line-height: 1.6;
}
.primary-note{
	margin: .8em 0;
	font-size: 2rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px){
	.note{
		font-size: 1.4rem;
	}
	.primary-note{
		font-size: 1.4rem;
	}
}
.caption{
	margin: 8px 0;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.4;
}
.btn{
	padding: 8px 16px;
	display: inline-block;
	position: relative;
	background: #333;
	color: #fff;
	font-size: 1.6rem;
	transition: all .3s ease-out;
}
.btn:hover{
	opacity: .8;
}
.general-btn{
	margin: 8px 4px;
	padding: 0 16px;
	width: 100%;
	max-width: 330px;
	height: 60px;
	font-size: 2.8rem;
	line-height: 60px;
	box-shadow: 0 1px 14px rgba(0,0,0,.3);
}
.ghost-btn{
	margin: 8px 4px;
	padding: 16px 32px;
	width: 100%;
	max-width: 300px;
	position: relative;
	background: transparent;
	font-size: 2.4rem;
	color: #fff;
	text-align: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
	transition: color .4s ease-in;
}
.ghost-btn span{
	position: relative;
	z-index: 1;
}
.ghost-btn::before,
.ghost-btn:after{
	width: 100%;
	height: 0;
	display: block;
	position: absolute;
	left: 0;
	z-index: 0;
	background: #fff;
	content: "";
	transition: height .2s ease-out;
}
.ghost-btn.is-dark::before,
.ghost-btn.is-dark:after{
	background: #333;
}
.ghost-btn::before{
	top: 0;
}
.ghost-btn:after{
	bottom: 0;
}
.ghost-btn:hover{
	color: #333;
	border-color: #fff;
	opacity: 1;
}
.ghost-btn.is-dark:hover{
	color: #fff;
	border-color: #333;
}
.ghost-btn:hover::before,
.ghost-btn:hover::after{
	height: 50%;
}
@media screen and (max-width: 767px){
	.caption{
		font-size: 1rem;
	}
	.general-btn{
		height: 54px;
		font-size: 2.2rem;
		line-height: 54px;
	}
}
.request-btn{
	background: #b5a370;
	box-shadow: inset 0 0 0 2px #c5b769;
}
.reserve-btn{
	background: #8D2041;
}
.light-bg{
	background-color: #eaeded;
}
.gray-bg{
	background-color: #eee;
}
.light-gray-bg{
	background-color: #fbfbfb;
}
.gold-bg{
	background: rgb(201,190,153);
	background: linear-gradient(120deg, rgb(160, 149, 110) 0%, rgba(201,190,153,1) 69%, rgba(217,212,191,1) 100%);
}
.general-box{
	margin: 16px 0;
	padding: 48px 72px;
	background: #fff;
	box-shadow: 1px 1px 4px rgba(0,0,0,.2);
}
@media screen and (max-width: 767px){
	.general-box{
		padding: 16px;
	}
}
.video-wrapper{
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}
@media screen and (max-width: 767px){
	.video-wrapper{
		padding-top: 100%;
	}
}


/*--------------------------------
layout
--------------------------------*/
.main-container{
	overflow: hidden;
	transition: all .3s ease-in-out;
}
.is-sticky{
	/*margin-top: 100px;*/
}
.general-section .inner{
	padding: 80px 16px;
}
.general-section .inner-wide{
	padding: 80px 5%;
}
.general-section .inner-full{
	padding: 80px 0;
}
@media screen and (max-width: 1029px){
	.is-sticky{
		/*margin-top: 50px;*/
	}
}
@media screen and (max-width: 767px){
	.general-section .inner{
		padding: 40px 16px;
	}
	.general-section .inner-wide{
		padding: 40px 16px;
	}
	.general-section .inner-full{
		padding: 40px 0;
	}
}
.general-section .inner + .inner{
	padding-top: 0;
}
.general-parts .inner{
	padding: 32px 16px;
}
.general-area{
	margin-bottom: 64px;
}
@media screen and (max-width: 767px){
	.general-area{
		margin-bottom: 32px;
	}
}
.btn-space{
	margin-top: 40px;
	text-align: center;
}
.col-2,
.col-3{
	margin: 0 -24px;
	flex-wrap: wrap;
}
.col-2 > .flex-item{
	margin: 0 24px 16px;
	width: calc(50% - 48px);
}
.col-3 > .flex-item{
	margin: 0 24px 16px;
	width: calc(100% / 3 - 48px);
}
@media screen and (max-width: 767px){
	.col-2 > .flex-item,
	.col-3 > .flex-item{
		width: calc(100% - 48px);
	}
}
.section-parts{
	margin-bottom: 64px;
}
.component-parts{
	margin-bottom: 16px;
}

/*--------------------------------
header
--------------------------------*/
.new::before {
    content: "new";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%,0);
    font-size: 1.1rem;
    background: #8D2041;
    color: #fff;
    padding: 2px 8px;
    animation: blink 3s linear infinite;
    z-index: 2;
}
.navigation-bar{
	height: 100px;
	/* display: flex; */
	/* justify-content: space-between; */
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	background: #fff;
	transform: translateY(-100px);
	transition: all .3s ease-in-out;
    z-index: 100;
}
.is-header-visible{
	transform: translateY(0);
}
.header-logo{
	padding-left: 16px;
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 10px;
	left: 0;

}
@media screen and (max-width: 1029px){
	.navigation-bar{
		height: 60px;
        z-index: 111;    
	}
	.navigation-bar.is-menu-open{
		transform: translateY(0);     
	}
	.header-logo{
		height: 41px;
		top: 9;
        z-index: 112;
	}
    .hamburger{
        z-index: 113;
    }
}
.header-logo .logo{
	width: 230px;
}
@media screen and (max-width: 1029px){
	.global-nav{
		padding-bottom: 60px;
        padding-top: 70px;
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0px;
		right: 0;
		bottom: 0;
		z-index: 4;
		background: #fff;
		visibility: hidden;
		overflow: auto;
		transform: translateX(100%);
		transition: all .3s ease-in-out;
	}
	.is-menu-open .global-nav{
		visibility: visible;
		transform: translateX(0);
	}
	.header-logo .logo{
		width: 156px;
	}
}
.global-nav-inner{
	margin: 0 16px;
	padding: 60px 0 0;
	position: relative;
}
.global-nav-main{
	display: flex;
	justify-content: center;
}
.global-nav-upper{
	display: flex;
	flex-direction: row-reverse;
	position: absolute;
	top: 10px;
	right: 0;
}
@media screen and (max-width: 1029px){
	.global-nav-inner{
		padding: 0;
	}
	.global-nav-main{
		display: block;
	}
	.global-nav-upper{
		display: block;
		position: relative;
	}
	.new::before {
		top: auto;
		left: 24px;
	}
}
.nav-list{
	margin: 0 8px;
}
.gnav-link{
	padding: 8px 12px;
	display: inline-block;
	position: relative;
	color: #333;
}
.active {
	color: #002c69;
}
.jp{
	margin-top: 4px;
	padding: 2px 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	background: #eee;
	color: #333;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	transition: all .3s ease-out;
	opacity: 0;
}
@media screen and (max-width: 1029px){
	.nav-list{
		margin: 0;
	}
	.gnav-link{
		padding: 12px 0;
		width: 100%;
		text-align: center;
	}
	.jp{
		padding: 12px 8px;
		width: 100%;
		text-align: center;
	}
}
.gnav-link:hover .jp{
	margin-top: 0;
	opacity: 1;
}
.nav-cta-group,
.nav-sub-group{
	display: flex;
	align-items: center;
}
@media screen and (max-width: 1029px){
	.nav-cta-group,
	.nav-sub-group{
		display: block;
	}
	.cta-btn{
		padding: 16px 0;
		width: 100%;
		text-align: center;
	}
}
.nav-sub-link{
	font-weight: 300;
	font-size: 1.2rem;
	color: #333;
	transition: color .3s ease-out;
}
.nav-sub-link:hover{
	color: #8D2041;
}
.nav-cta-group .nav-list{
	margin: 0 0 0 4px;
}
@media screen and (max-width: 1029px){
	.nav-sub-link{
		padding: 12px 0;
		display: block;
		font-size: 1.4rem;
		text-align: center;
	}
	.nav-cta-group .nav-list{
		margin: 0 0 8px;
	}
}
.hamburger{
	margin-top: 5px;
	width: 40px;
	height: 40px;
	display: none;
	position: absolute;
	right: 0;
	top: 0;
}
.hamburger .btn-label {
	font-size: 1rem;
	line-height: 1;
	position: absolute;
	bottom: -5px;
}
.hamburger i,
.hamburger::before,
.hamburger::after{
	width: 30px;
	height: 2px;
	position: absolute;
	left: 0;
	right: 4px;
	display: block;
	background: #333;
	content: "";
}
.hamburger i{
	margin: -1px auto 0;
	top: 50%;
	transition: all .2s ease-in-out;
}
.hamburger::before{
	margin: 0 auto;
	top: 10px;
	transition: all .2s ease-in-out;
}
.hamburger::after{
	margin: 0 auto;
	width: 30px;
	bottom: 10px;
	transition: all .2s ease-in-out;
}
.is-menu-open .hamburger i{
	transform: rotate(45deg);
}
.is-menu-open .hamburger::before{
	margin-top: -1px;
	top: 50%;
	transform: rotate(-45deg);
}
.is-menu-open .hamburger::after{
	opacity: 0;
}
@media screen and (max-width: 1029px){
	.hamburger{
		display: flex;
    justify-content: center;
	}
}

/*--------------------------------
footer
--------------------------------*/
.footer-btn-space{
	padding: 0 16px 32px;
}
.banner-space{
	margin: 0 -16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.banner-space-wide{
	max-width: 900px;
    margin: 60px auto;
    width: 90%;
}
.banner-item-wide{
	margin-bottom: 20px;
}
.banner-item-wide:last-child{
	margin-bottom: 0;
}
.banner-item{
	margin: 16px;
	max-width: 350px;
}
.banner-item-large{
	margin: 16px;
	width: calc(50% - 32px);
	max-width: 490px;
}
@media screen and (max-width: 767px){
	.banner-space-wide{
        margin: 30px auto;
	}
	.banner-item-wide{
		margin-bottom: 15px;
	}
	.banner-item-wide:last-child{
		margin-bottom: 0;
	}
	.banner-item-large{
		width: calc(100% - 32px);
	}
}
.caption-area{
	padding: 16px 0 32px;
	border-top: 1px solid #ddd;
}
.banner-area{
	border-top: 1px solid #ddd;
}
.footer-wrapper{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans CJK JP", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
	font-weight: 300;
	border-top: 1px solid #ddd;
	background: #fff;
}
.footer-wrapper .flex-wrapper{
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-tel-container{
	margin-top: -1px;
	padding: 50px 0;
	background: #b5a370;
}
.footer-inner-tel{
	margin-bottom: 16px;
	text-align: center;
	max-width: 460px;
	margin: 0 auto
}
@media screen and (max-width: 767px){
	.footer-tel-container{
		padding: 36px 0 30px;
	}
	.footer-inner-tel{
    width: 90%;
	}
}
.footer-inner-tel a{
    display: block;
    
}
.footer-inner-logo{
	padding: 50px 0 30px;
	margin: 0 -16px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.footer-logo{
	margin: 0 16px;
	font-size: 1rem;
}
.footer-logo:first-child{
	padding-top: 6px;
}
@media screen and (min-width: 1251px){
	.footer-inner-logo{
		margin: 0 auto;
		width: 700px;
	}
	.footer-logo{
		margin: 0;
		width: calc(100% / 2);
	}
	.footer-logo:nth-of-type(1),.footer-logo:nth-of-type(2){
		margin-bottom: 16px;
	}
	.footer-logo:nth-of-type(1) .logo-label{
		margin-bottom: 16px;
	}
}
.footer-logo02{
	font-size: 1rem;
	margin:0 10px 0 -5px;
}

@media screen and (max-width: 767px){
	.footer-inner-logo{
		padding: 36px 0 20px;
		flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
	}
	.footer-logo{
		margin-top: 16px;
	}
	.footer-logo02{
		margin-top: 16px;
		width: 30%;
	}	
	.footer-logo:first-child{
		margin: 0 auto;
		max-width: 200px;
	}
	.footer-logo:last-child{
		margin: 16px auto 0;
    max-width: 246px;
	}
}
.footer-wrapper .holiday{
	margin: 20px auto;
	width: min(100% - 32px,1100px);
	max-width: 800px;
	border: 1px solid #333;
	text-align: center;
	padding: 30px 10px;
	font-family: a-otf-ryumin-pr6n, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.footer-wrapper .holiday-head{
	font-size: 2.2rem;
}
.footer-wrapper .holiday-note{
	font-size: 1.6rem;
}
.logo-label{
	margin-bottom: 4px;
	white-space: nowrap;
}
.footer-copyright{
	margin-top: 40px;
	text-align: center;
	font-size: 1.2rem;
}
@media screen and (max-width: 767px){
	.footer-copyright{
		margin-top: 20px;
	}
}
.info-text{
	margin-top: 16px;
	display: block;
	font-family: a-otf-ryumin-pr6n,"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height: 1.6;
	color: #ff6464;
}
.fix-btn ul li {
	flex: 1;
}
.entry-section{
	padding: 60px 16px;
	background: #f1f4e8;
}
.entry-section .secondary-heading{
	margin-bottom: 1.4em;
}
.entry-section-btn{
	padding: .8em 0;
	display: block;
	max-width: 400px;
	width: calc(100% - 32px);
	font-size: 2.4rem;
	line-height: 1;
	color: #fff;
	background: #a69568;
	position: relative;
	transition: opacity .4s;
}
.entry-section-btn:hover{
	opacity: .7;
}
.entry-section-btn::after{
	content: '';
	display: block;
	position: absolute;
	margin-top: -9.5px;
	right: 16px;
	top: 50%;
	width: 18px;
	height: 18px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.entry-section-reserve-btn{
	background: #8D2041;
}
.link-btn-area{
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	margin: 0 auto;
	gap: 40px;
}
.bnr-list{
	width: min(calc(100% - 32px),1100px);
	margin: 40px auto 20px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px 30px;
}
@media screen and (max-width: 767px){
	.bnr-list{
		display: block;
	}
}
.interior-bnr{
	max-width: 600px;
}
.interior-bnr img{
	margin: 0 auto 20px;
}
.interior-bnr-item{
	width: min(calc(100% -  32px),1114px);
	margin: 50px auto;
}
@media screen and (max-width: 767px){
	.entry-section{
		padding: 32px 16px;
		background: #f1f4e8;
	}
	.entry-section .secondary-heading{
		margin-bottom: .4em;
	}
	.entry-section-btn{
		margin-top: 15px;
		font-size: 1.8rem;
	}
	.entry-section-btn::after{
		margin-top: -7.5px;
		width: 14px;
		height: 14px;
	}
	.link-btn-area{
		gap: 0;
	}
	.interior-bnr-item{
		margin: 25px auto;
	}
}
.banner-area-footer{
	padding: 40px 0;
	border-top: 1px solid #ddd;
	overflow: hidden;
}
.banner-container{
	margin: 0 -12px;
}
.banner-container .slick-dots{
	bottom: -32px;
}
.banner-container .slick-dots li{
	width: auto;
	height: auto;
}
.banner-container .slick-dots li button{
	background: #ddd;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}
.banner-container .slick-dots li.slick-active button{
	background: #333;
}
.banner-container .slick-dots li button:before{
	content: none;
}
.banner-container .slick-prev,
.banner-container .slick-next{
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	width: 40px;
	height: 40px;
	top: 50%;
}
.banner-container .slick-prev{
	left: -10px;
}
.banner-container .slick-next{
	right: -10px;
}
.banner-container .slick-prev:before,.banner-container .slick-next:before{
	color: #fff;
	line-height: .4;
	font-size: 26px;
}
.banner-slide{
	margin: 0 12px;
}
@media screen and (max-width: 1250px){
	.banner-container{
		margin: 0 ;
	}
}
@media screen and (max-width: 767px){
	.banner-area-footer{
		padding: 32px 0;
	}
	.banner-container{
		margin: 0 ;
	}
	.banner-container .slick-prev,
	.banner-container .slick-next{
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.8);
		width: 36px;
		height: 36px;
		top: 50%;
	}
	.banner-container .slick-prev{
		left: -14px;
	}
	.banner-container .slick-next{
		right: -14px;
	}
	.banner-container .slick-prev:before,.banner-container .slick-next:before{
		font-size: 22px;
	}
}

/*--------------------------------
home
--------------------------------*/
#splash {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: #fff;
	text-align: center;
	color: #fff;
}
#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #000;
}


.mv{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mv-video{
  position: relative;
  width: 100%;
}
.mv-video iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  pointer-events: none;
}
/* SP動画非表示 */
.mv-video-pc{
  aspect-ratio: 16 / 9;
}
.mv-video-sp{
  aspect-ratio: 4 / 5;
  display: none;
}

/* SP */
@media screen and (max-width:767px){
  .mv-video-pc{
    display: none;
  }
  .mv-video-sp{
    display: block;
  }
}


.badge-section{
	background: url(../images/home/bg-obi.webp) no-repeat center;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	.badge-section{
		background: url(../images/home/bg-obi-sp.webp) no-repeat center;
		background-size: cover;
	}
}
.badge-img{
	margin: 0 auto;
	width: 80%;
	max-width: 450px;
	padding: 0;
}
@media screen and (max-width: 767px){
	.badge-img{
		max-width: none;
		padding: 2px 0;
	}
}
.obi-section{
	background: url(../images/home/obi-section-bg.webp) no-repeat center;
	background-size: cover;
}
.obi-section .obi-wrap{
	margin: 0 auto;
	padding: 28px 0 20px;
	max-width: 960px;
}
@media screen and (max-width: 767px){
	.obi-section{
		background: url(../images/home/obi-section-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.obi-section .obi-wrap{
		padding: 20px 0 14px;
		max-width: 82%;
	}
}
.label-section{
	position: relative;
}
.label-item{
	padding: 32px 64px;
}
@media screen and (max-width: 767px){
	.label-item{
		padding: 24px 24px;
	}
}
.label-item img{
	position: relative;
	z-index: 1;
}
.label-item.blu{
	background: linear-gradient(90deg, #001636, #0d3269);
}
.label-item.grn{
	background: linear-gradient(90deg, #08331d, #057059);
}
@media screen and (max-width: 767px){
	.label-item.grn img{
		width: 90%;
	}
}
.label-item.lblu{
	background: linear-gradient(90deg, #0080cb, #005698);
}
.label-item.gry{
	background: #EEECEB;
	text-align: center;
}
.label-line{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .5;
}
.label-line img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home .mv .caption{
	font-family: serif;
}

.line {
    stroke-width: 4px;
    stroke-dasharray: 700px;
    stroke-dashoffset: 700px;
    animation: draw 3s ease-out 1s 1 forwards;
    transform-origin: right top;
}
.line2{
    stroke-width: 4px;
    stroke-dasharray: 700px;
    stroke-dashoffset: 700px;
    animation: draw2 2s linear 1s 1 forwards;
    transform-origin: right top;
}
@keyframes draw {
    0% {
        stroke-dashoffset: 700px;
    }
    100% {
        stroke-dashoffset: 0px;
    }
}
@keyframes draw2 {
    0% {
        stroke-dashoffset: 700px;
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
        stroke-dashoffset: 0px;
    }
}
.property-name{
	margin-bottom: .4em;
	font-size: 7.2rem;
	letter-spacing: .1em;
	text-indent: .1em;
}
.loading{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: #000;
}
.loading::after{
	margin: -3.5vw -3.5vw;
	width: 7vw;
	height: 7vw;
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: url(../images/common/loading.png) no-repeat center;
	background-size: contain;
	animation: loading 1s infinite linear;
}
@keyframes loading{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(-360deg);
	}
}
@media screen and (max-width: 767px){
	.property-name{
		font-size: 2.9rem;
	}
}
@media screen and (max-width: 360px){
	.property-name{
		font-size: 2.5rem;
	}
}
.home .kodo h1{
    color: #837C59;
    font-size: 6rem;
}
.home .kodo h2{
    font-size: 5rem;
}
.home .kodo h3{
    font-size: 4rem;
    color: #837C59;
}
.home .reserve-link{
    display: block;
    max-width: 400px;
    margin: 0 auto 20px;
    background-color: #8D2041;
    color: #fff;
    font-size: 2.4rem;
    text-align: center;
    padding: 12px;
    position: relative;
}
.home .reserve-link a{
    color: #fff;
}
.home .reserve-link::after{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -5px;
}
@media screen and (max-width: 767px){
	.home .reserve-link{
		max-width: 240px;
		margin-bottom: 10px;
		font-size: 4vw;
	}
}
.attention-block .attention {
	width: 540px;
	padding: 20px;
	margin: 30px auto 40px;
	font-size: 20px;
	border: solid 1px #fff;
    background-color: #a7d4e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #333;
	text-align: center;
	line-height: 1.6;
}
footer .attention-block .attention {
	border: solid 1px #a00909;
	font-family: a-otf-ryumin-pr6n, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.lp-footer-wrapper .attention-block {
	width: 100%;
}
.attention-block .attention strong {
	font-size: 16px;
	font-weight: 600;
}
@media screen and (max-width: 767px){
	.attention-block .attention {
		width: 88.663%;
        padding: 3.255%;
        margin: 6.510% auto 6.510%;
        font-size: 14px;
        box-sizing: border-box;
	}
	.attention-block .attention strong {
		font-size: 2.865vw;
	}
}
.price-pc{
	display: block;
	margin: 24px auto 0;
	width: min(calc(100% - 82px), 600px);
}
.merit-logo{
	padding: 40px 0 0;
	background: rgb(210 217 228 / 80%);
}
.merit-logo .caption{
	font-family: a-otf-ryumin-pr6n, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.merit-logo-head{
	display: block;
	width: min(calc(100% - 32px),914px);
	margin: 0 auto 40px;
}
.kodo-obi{
	width: min(calc(100% - 32px), 600px);
	margin: 0 auto 20px;
}
@media screen and (max-width: 767px){
    .home .kodo h1{
        font-size: 7vw;
    }
    .home .kodo h2{
        font-size: 5vw;
    }
    .home .kodo h3{
        font-size: 5vw;
    }
	.home .mv .caption{
		text-align: right;
    margin: 4px 0;
    z-index: 10;
	}
	.merit{
		order: 1;
	}
}
.top-merit-section{
	padding: 40px 0 60px;
	background: url(../images/home/top-merit-bg.jpg) no-repeat center center;
	background-size: cover;
}
.top-merit-section .secondary-heading{
	margin-bottom: 1.4em;
	color: #163C76;
}
@media screen and (max-width: 767px){
	.top-merit-section .secondary-heading{
		font-size: 1.8rem;
	}
	.top-merit-section{
		padding: 40px 0 40px;
	}
}
.top-merit-container{
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
	width: 100%;
    margin-inline: auto;
}
.top-merit-container .slick-dots li button{
	background: #b2b2b2;
}
.top-merit-container .slick-dots li button::before{
	content: none;
}
.top-merit-container .slick-dots li.slick-active button{
	background: #4d4d4d;
}
.top-merit-container .top-merit-slide{
	margin: 0 16px;
}
.top-merit-container .top-merit-slide .note{
	margin: .5em 0 1em;
}
.top-merit-container .top-merit-slide .caption{
	font-family: a-otf-ryumin-pr6n,"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	margin: 2px 0;
}
.top-merit-thumb-slide{
	cursor: pointer;
    width: 16px !important;
	aspect-ratio: 1 / 1;
	background: #B2B2B2;
}
.top-merit-thumb-slide.slick-current{
	background: #4D4D4D;
}
.top-merit-thumb{
	margin-top: 32px;
}
@media screen and (max-width: 767px){
	.top-merit-container{
		width: 98%;
		margin-bottom: 60px !important;
	}
	.slick-dots li {
    width: 12px;
    height: 12px;
	}
	.slick-dots li button{
    width: 12px;
    height: 12px;
	}
	.top-merit-container .top-merit-slide{
		margin: 0 8px;
		max-width: 45%;
	}
	.top-merit-container .top-merit-slide .note{
		font-size: 1.3rem;
	}
	.top-merit-thumb{
		margin-top: 20px;
	}
}
.top-merit-thumb .slick-track{
	display: flex;
	gap: 8px;
	justify-content: center;
	transform: translate3d(0, 0, 0)!important;
}
.value-bnr{
	margin: 60px auto 60px;
	display: block;
	max-width: 932px;
	width: calc(100% - 32px);
	transition: opacity .4s;
	z-index: 2;
	order: 7;
	cursor: pointer;
	position: relative;
}

.value-bnr.is-new::before{
	content: "NEW";
	padding: 3px 0.5em;
	font-size: 2rem;
	background: #900;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
}

.value-bnr.link-off{
	cursor: default;
}
@media screen and (max-width: 767px){
	.value-bnr{
		margin: 40px auto;
	}
	.value-bnr.is-new::before{
		font-size: 1.6rem;
	}
}
.value-bnr:hover{
	opacity: .8;
}
.value-bnr.link-off:hover{
	opacity: 1;
}
.plan .value-bnr{
	margin: 0 auto 60px;
}
@media screen and (max-width: 767px){
	.plan .value-bnr{
		margin-bottom: 40px;
	}
}
.legend-section{
	background: url(../images/home/sumi-1.png) no-repeat right top, url(../images/home/sumi-2.png) no-repeat left bottom, #eee;
	background-size: 42.8% auto, 27.5% auto;
}
.legend-text{
	margin-top: 10%;
	min-height: 700px;
	justify-content: center;
	flex-wrap: wrap;
}
.legend-text .secondary-heading{
	margin-left: 1em;
	line-height: 2.3;
}
.legend-text .note{
	margin: 0;
	line-height: 2.3;
}
@media screen and (max-width: 767px){
	.legend-section{
		background: #eee;
	}
	.legend-section .inner{
		padding-left: 0;
		padding-right: 0;
	}
	.legend-text{
		flex-direction: column;
		align-items: center;
	}
	.legend-text .secondary-heading{
		margin: 0;
		width: 100%;
		display: flex;
		align-items: center;
		padding-bottom: 35vw;
		background: url(../images/home/sumi-1.png) no-repeat right bottom -40px;
		background-size: 100% auto;
		line-height: 2.3;
	}
	.legend-text .note{
		line-height: 1.8;
	}
	.sumi-moji{
		margin: 32px 0;
		padding: 0 5% 0 75%;
		width: 100%;
		background: url(../images/home/sumi-2.png) no-repeat left bottom 24px;
		background-size: 65% auto;
	}
}
@media screen and (min-width: 768px){
	.sumi-moji{
		margin-left: 80px;
		align-self: flex-end;
		order: 3;
	}
	.legend-text .secondary-heading{
		order: 2;
	}
}
.main-copy{
	margin-bottom: .8em;
	font-size: 7.2rem;
	line-height: 1.3;
}
.view-section{
	padding-bottom: 52.7vw;
	background: url(../images/home/view.jpg) no-repeat center bottom #5694c7;
	background-size: 100% auto;
	color: #fff;
}
@media screen and (max-width: 767px){
	.main-copy{
		font-size: 2.6rem;
	}
	.view-section{
		padding-bottom: 85.2vw;
		background-image: url(../images/home/view-sp.jpg);
		background-size: 100% auto;
	}
}
.texture-bg{
	background: url(../images/home/sumi-4.png) no-repeat right 50%, url(../images/home/texture.jpg) no-repeat center top;
	background-size: 640px auto, cover;
}
.texture-bg2{
	background: url(../images/access/texture.jpg) no-repeat center center;
	background-size: cover;
}
.contents-nav-list{
	margin-bottom: 64px;
	flex-wrap: wrap;
	align-items: center;
}
.contents-nav-list:last-child{
	margin-bottom: 0;
}
.contents-nav-summary{
	padding: 5% 5% 0;
	width: 100%;
}
.summary-title{
	justify-content: flex-start;
	align-items: flex-start;
}
.summary-heading{
	font-size: 6rem;
}
.summary-lead{
	margin: 8px 0 0 32px;
	font-size: 2rem;
	transform-origin: left top;
	transform: rotate(90deg);
}
@media screen and (max-width: 767px){
	.texture-bg{
		background-size: 320px auto, cover;
	}
	.texture-bg .inner-wide{
		padding-left: 0;
		padding-right: 0;
	}
	.contents-nav-list{
		padding: 0 16px;
	}
	.contents-nav-summary{
		display: flex;
		flex-wrap: wrap;
	}
	.summary-title{
		width: 25%;
	}
	.contents-nav-summary .note{
		width: 75%;
	}
	.summary-heading{
		font-size: 4rem;
	}
	.summary-lead{
		margin: 8px 0 0 16px;
		font-size: 1.2rem;
	}
	.contents-nav-summary .btn-space{
		margin-top: 16px;
		width: 100%;
	}
	.contents-nav-list:nth-child(1){
		background: url(../images/home/sumi-3.png) no-repeat center 65%;
		background-size: 500px auto;
	}
	.contents-nav-list:nth-child(2){
		background: url(../images/home/sumi-5.png) no-repeat -45% 80%;
		background-size: 500px auto;
	}
}
@media screen and (min-width: 768px){
	.contents-nav-thumb{
		width: 60%;
	}
	.contents-nav-summary{
		padding-top: 0;
		width: 40%;
	}
	.contents-nav-list:nth-child(2n) .contents-nav-thumb{
		order: 1;
	}
	.contents-nav-list:nth-child(1){
		background: url(../images/home/sumi-3.png) no-repeat 85% top;
		background-size: 640px auto;
	}
	.contents-nav-list:nth-child(2){
		background: url(../images/home/sumi-5.png) no-repeat 2% top;
		background-size: 640px auto;
	}
}
.main-kodo .merit-sp{
	display: block;
	margin: 0 auto 30px;
	width: min(calc(100% - 32px),320px);
}
.main-kodo .price-sp{
	display: block;
	margin: 0 auto 30px;
	width: min(calc(100% - 32px),320px);
}
.main-kodo .reserve-btn{
	display: block;
	margin: 30px auto 0;
	text-align: center;
	width: min(calc(100% - 32px),420px);
	font-size: 2.4rem;
	padding: 20px 16px;
	background: #8D2041;
}
.mv-badge{
	position: fixed;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	opacity: 1;
	transition: .2s ease;
}
.mv-badge.is-none{
	opacity: 0;
}
.kood-text{
	margin: 10px 0 40px;
	font-size: 4.5rem;
	color: #eeebdd;
	text-align: center;
	line-height: 1.5;
}
.kood-text sub{
	vertical-align: baseline;
	font-size: 50%;
}
@media screen and (max-width: 767px){
	.mv-badge{
		position: absolute;
	}
	.main-kodo .reserve-btn{
		width: min(calc(100% - 32px),320px);
		font-size: 2rem;
		padding: 16px 16px;
	}
	.kood-text{
		margin: 0;
		font-size: 2.6rem;
		line-height: 1.2;
		padding-top: 16px;
	}
}

.link-wrapper{
	padding: 50px 16px;
	background: url(../images/home/link-bnr-bg.jpg);
	background-size: contain;
  }
  .link-img{
	display: block;
	width: min(calc(100% - 32px),430px);
	margin-inline: auto;
	padding-bottom: 10px;
  }
  @media screen and (max-width: 767px){
	.link-wrapper{
		padding: 40px 16px;
		background-size: cover;
	  }
	.link-img{
	  width: min(calc(100% - 32px),280px);
	  padding: 0;
	}
  }


.float-banner {
	position: fixed;
	left: 0;
	bottom: 0;
	max-width: 480px;
	width: 100%;
	/* opacity: 0;
	transition: opacity .4s ease; */
	z-index: 4;
}
.float-close {
	width: 7%;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 6;
	cursor: pointer;
}
/* .is-visible {
	opacity: 1;
	display: block;
} */
@media screen and (max-width: 767px){
	.float-banner {
		bottom: 60px;
	}
}

/*--------------------------------
access
--------------------------------*/
.main-font{
	font-family: "century-gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.access .main{
	margin-top: 100px;
	background: #e8e8e8;
}
.access .main .inner{
	max-width: 960px;
	width: calc(100% - 32px);
	margin: 0 auto;
	padding: 80px 0;
}
.access .main .caption{
	font-family: inherit;
}
.access .navigation-bar{
	transform: translateY(0);
}
.page-heaing{
	position: relative;
	font-size: 4.6rem;
	padding-bottom: 25px;
	margin-bottom: 35px;
	color: #666;
	line-height: 1.2;
}
.page-heaing::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 50px;
	height: 3px;
	background: #5a86a6;
}
.access-copy{
	font-size: 3.5rem;
	line-height: 1.5;
}
.access-heading{
	margin-bottom: 20px;
	font-size: 2.8rem;
	line-height: 1.5;
}
.access-heading-en{
	display: block;
	font-size: 2rem;
	color: #004822;
	margin-bottom: 15px;
	letter-spacing: .2em;
}
.access-station{
	margin-top: 30px;
}
.access .caption-out{
	 position: static;
}
.access-area{
	background: #fff;
}
.access-list{
	position: relative;
	z-index: 2;
	padding-top: 20px;
	gap: 50px 20px;
}
.access-list + .access-heading{
	margin-top: 40px;
}
.access-item{
	width: calc(50% - 10px);
}
.access .flex-wrapper{
	flex-wrap: wrap;
}
.access-map{
	max-width: 382px;
	width: 100%;
	margin: 0 auto;
}
.access-detail{
	max-width: 450px;
	width: 100%;
	margin-left: auto;
}
.access-time-list{
	gap: 10px 0;
	max-width: 720px;
	width: 100%;
}
.access-time{
	text-align: left;
	font-size: 2rem;
	margin-bottom: 10px;
}
.access-time-item{
	width: 50%;
}
.access-time-item{
	text-align: left;
}
.access-line{
	font-size: 2rem;
}
.access-main-time{
	font-size: 3.5rem;
}
.access-main-time .large-text{
	font-size: 5.5rem;
}
.access-sub-time{
	margin: 10px 0;
	font-size: 1.2rem;
}
.access-caption{
	font-size: 1.5rem;
}
.access-bus{
	position: relative;
	background: #f2f1f1;
}
.access-bus-copy{
	font-size: 2.4rem;
}
.access-bus-note{
	margin: 20px 0 30px;
	font-size: 1.8rem;
	line-height: 1.5;
}
.access-bus-heding{
	font-size: 2rem;
	padding: 8px 0;
}
.access-bus-time{
	font-size: 3.3rem;
}
.access-bus-time .large-text{
	font-size: 5.2rem;
}
.access-bus-time sub{
	font-size: 1.2rem;
}
.access-bus-sub{
	margin-top: 5px;
	display: block;
	text-align: right;
}
.access-bus-list{
	justify-content: space-between;
	margin-bottom: 30px;
}
.access-bus-box{
	background: #8f8f8f;
	padding: 8px 20px;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
}
.access-bus-table{
	margin-top: 30px;
	align-items: flex-start;
	justify-content: space-between;
}
.access-bus-img{
	max-width: 340px;
	width: 100%;
}
.access-table-img{
	width: calc(100% - 375px);
}
.access-bus-table + .access-bus-table{
	margin-top: 70px;
	padding-top: 30px;
	background-image : linear-gradient(to right, #000 8px, transparent 8px);
	background-size: 10px 1px;
	background-repeat: repeat-x; 
	background-position: left top;
}
.caption-wrapper{
	max-width: 1200px;
	width: calc(100% - 32px);
	padding: 80px 0;
	margin: 0 auto;
	font-family: serif;
}
.caption-wrapper .caption{
	font-family: serif;
}
.entry{
	padding: 50px 0;
	background: #f1f4e8;
}
.entry .flex-wrapper{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	text-align: center;
}
.entry-heading{
	font-size: 4rem;
}
.entry-note{
	font-size: 1.8rem;
	line-height: 1.5;
}
.entry-btn{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 400px;
	width: 100%;
	height: 62px;
	margin: 0 auto;
	background: #a69568;
	border: 1px solid #a69568;
	color: #fff;
	font-size: 2.4rem;
	transition: .2s ease;
}
.entry-btn::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translate(0,-50%) rotate(45deg);
	width: 15px;
	height: 15px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: .2s ease;
}
.entry-btn:hover{
	background: #fff;
	color: #a69568;
}
.entry-btn:hover::before{
	border-top: 2px solid #a69568;
	border-right: 2px solid #a69568;
}

.external-bnr {
    display: block;
    margin: 32px auto 0;
    max-width: 670px;
    width: 100%;
    transition: opacity .7s;
}
#main.home .anim{
	opacity: 0;
	transition: opacity .4s;
}
#main.home .anim.is-active{
	opacity: 1;
}
.access-mv .line-ani02{
	opacity: 1;
	inset: 40% 0 auto;
}
.line-wrapper.access-border-line{
	inset: -190px 0 auto;
	z-index: 1;
}
.access-bus::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 90%;
	height: 100%;
	background: linear-gradient(90deg,#e0e9ef,#e0e9ef00);
	z-index: 2;
}
.access-bus .inner{
	position: relative;
	z-index: 3;
}
.access-grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
.access-grid.wide-item{
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.access-sub-heading{
	padding: 15px 0;
	background: linear-gradient(90deg,#e7bf76 0%,#c24b6c 50%,#5e5492 100%);
	color: #fff;
	font-size: 2rem;
	margin-bottom: 20px;
}
.access-img05-item{
	margin-bottom: 26px;
}
.access-grid-wrapper{
	background: #004da0;
	color: #fff;
}
.access-grid-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: flex-start;
}
.access-grid-list + .access-grid-list{
	margin-top: 30px
}
.access-grid-list:nth-of-type(even){
	flex-direction: row-reverse;
	align-items: flex-end;
}
.access-grid-img{
	width: calc(60% - 30px);
}
.access-grid-list .text-wrapper{
	width: 40%;
	display: grid;
	gap: 10px;
}
.access-grid-hedaing{
	line-height: 1.5;
	font-size: 2.4rem;
}
.access-grid-note{
	line-height: 1.5;
	font-size: 1.8rem;
}
@media screen and (max-width: 1200px){
	.line-wrapper.access-border-line{
		inset: -90px 0 auto;
		z-index: 1;
	}
}
@media screen and (max-width: 767px){
	.access .main{
		margin-top: 50px;
	}
	.access .main .inner{
		padding: 40px 0;
	}
	.page-heaing{
		font-size: 2rem;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.page-heaing::before{
		width: 25px;
	}
	.access-copy{
		font-size: 1.7rem;
	}
	.access-mv{
		margin-top: -25px;
	}
	.access-heading-en{
		font-size: 1.3rem;
		margin-bottom: 10px;
	}
	.access-heading{
		font-size: 1.5rem;
	}
	.access .note{
		font-size: 1.2rem;
	}
	.access-station {
		margin-top: 15px;
	}
	.access-list{
		padding-top: 0;
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		gap:20px;
	}
	.access-map,
	.access-detail,
	.access-list .text-wrapper{
		max-width: 100%;
		width: calc(100% - 32px);
		margin: 0 auto;
	}
	.access-map-item,
	.access-detail-item{
		width: 100%;
	}
	.access-map-item{
		order: 1;
	}
	.access-time{
		font-size: 1.3rem;
	}
	.access-line{
		font-size: 1.2rem;
	}
	.access-main-time{
		font-size: 1.6rem;
	}
	.access-main-time .large-text{
		font-size: 2.7rem;
	}
	.access-caption{
		font-size: 1rem;
	}
	.access-sub-time{
		margin: 5px 0;
		font-size: 1rem;
		text-align: right;
	}
	.access-time-item{
		width: auto;
	}
	.access-time-list {
		justify-content: space-between;
	}
	.access-bus-copy{
		font-size: 1.5rem;
	}
	.access-bus-note{
		font-size: 1.2rem;
		margin: 12px 0;
	}
	.access-bus-heding{
		font-size: 1.4rem;
		padding: 0;
	}
	.access-bus-box{
		font-size: 1.7rem;
		padding: 8px 10px;
	}
	.access-bus-time{
		display: inline-block;
		font-size: 2rem;
	}
	.access-bus-time .large-text{
		font-size: 3.7rem;
	}
	.access-bus-time sub{
		display: block;
		font-size: 1rem;
		text-align: right;
	}
	.access-bus-box + .access-bus-time{
		background-image: linear-gradient(to right, #000 8px, transparent 8px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
	margin-bottom: 10px;
	padding-bottom: 10px;
	}
	.access-bus-box + .access-bus-time .access-bus-sub{
		display: inline;
	}
	.access-bus-list .text-item{
		display: flex;
		flex-direction: column;
	}
	.access-table-img,
	.access-bus-img{
		max-width: 100%;
		width: 100%;
	}
	.access-bus-table{
		gap: 13px;
	}
	.access-bus-img{
		max-width: 80%;
		margin: 0 auto;
	}
	.access-bus-table .access-bus-img{
		order: -1;
	}
	.access-bus-table .access-airplane{
		order: 1;
	}
	.caption-wrapper{
		padding: 40px 0;
	}
	.entry{
		padding: 0;
	}
	.entry-heading{
		font-size: 2.1rem;
	}
	.entry-note{
		font-size: 1.2rem;
	}
	.entry-btn{
		font-size: 1.6rem;
		width: 80%;
		height: 40px;
	}
	.entry-btn::before{
		width: 10px;
		height: 10px;
	}
	.line-wrapper.access-border-line{
		inset: -20px 0 auto 32%;
		z-index: 1;
	}
	.access-bus{
		padding-top: 10px;
	}
	.access-sub-heading{
		padding: 7px 0;
		font-size: 1.4rem;
	}
	.access-grid-list .text-wrapper,
	.access-grid-img{
		width: 100%;
	}
	.access-grid-hedaing{
		font-size: 1.5rem;
	}
	.access-grid-note{
		font-size: 1.2rem;
	}
	.access-grid-list{
		gap: 15px;
	}
}
/*--------------------------------
concept
--------------------------------*/
.text-left{
	text-align: left;
}
.concept-mv {
	overflow: hidden;
}
.concept .main .caption{
	font-family: serif;
}
.concept .main .inner{
	padding: 80px 0;
	width: calc(100% - 36px);
}
.concept .main .flex-wrapper{
	flex-wrap: wrap;
}
.concept-mv .line-ani01{
	inset: 32% 0 auto;
}
.concept-mv .line-ani02{
	inset: 0 0 auto;
}
.concept-mv .line-ani03{
	inset: auto 0 -9%;
}
.concept-mv .line-ani04{
	inset: auto 0 -9%;
}
.concept-mv .line-ani05{
	inset: 40% 0 auto;
	opacity: .3;
}
.concept-mv-text{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 92%;
}
.concept-future-img{
	 position: relative;
}
.concept-future-line.line-wrapper{
	z-index: -1;
    width: 78%;
    inset: auto 0 11%;
}
.concept-future-line.line-wrapper path{
	stroke-width: 1px;
	stroke-dashoffset: 3000px;
	stroke-dasharray: 3000px;
}
.concept-future-item{
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
}
.concept-landplan{
	position: relative;
}
.concept-landplan .line-ani02{
	inset: auto 0 26%;
	opacity: 1;
}
.concept-landplan-heaidng{
	font-size: 4.2rem;
	color: #004d59;
	padding-bottom: 25px;
	margin-bottom: 10px;
	border-bottom: 1px solid #333;
}
.concept-landplan-note{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #004d59;
	gap: 10px;
}
.concept-landplan-note .small-text{
	font-size: 2.2rem;
	padding-right: 5px;
}
.concept-landplan-note .concept-landplan-box{
	padding: 10px;
	font-size: 1.2rem;
	border: 1px solid #004d59;
}
.concept-landplan-note .large-text{
	font-size: 8rem;
}
.concept-landplan-note .large-text sub{
	font-size: 4.8rem;
	vertical-align: baseline;
}
.concept-landpla-text{
	max-width: 990px;
	width: 100%;
	margin: 40px auto 0;
}
.concept-landplan-cap{
	border: 1px solid #333;
	margin: 40px auto;
	padding: 20px 20px 10px;
}
.concept-landplan-cap dl{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 1.4rem;
    line-height: 1.6;
	text-align: left;
	border-bottom: 1px solid #666;
	margin-bottom: 10px;
}
.concept-landplan-cap dl:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
.concept-landplan-cap dl dt{
	font-weight: bold;
	width: 23%;
}
.concept-landplan-cap dl dd{
	margin-bottom: 10px;
}
.concept-landplan-list{
	width: 100vw;
	margin: 160px calc(50% - 50vw) -50px;
	justify-content: center;
}
.concept-landplan-item{
	width: calc(100%/3);
	background: #f0efe2;
}
.concept-landplan-en{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	font-size: 7rem;
	padding: 5px 15px 10px;
	/* width: 90px;
	height: 90px; */
	border: 1px solid #fff;
	color: #fff;
	z-index: 1;
}
.red-item .concept-landplan-en{
	background: #ad1731B3;
}
.yellow-item .concept-landplan-en{
	background: #bb7a1cB3;
}
.blue-item .concept-landplan-en{
	background: #1689b7B3;
}
.green-item .concept-landplan-en{
	background: #32813bB3;
}
.pink-item .concept-landplan-en{
	background: #e72e56B3;
}
.purple-item .concept-landplan-en{
	background: #655887B3;
}
.concept-landplan-item .text-wrapper{
	padding: 30px 0;
}
.concept-landplan-name{
	position: relative;
	font-size: 2.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.concept-landplan-name::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 60px;
	height: 3px;
}
.red-item .concept-landplan-name::before{
	background: #ad1731;
}
.yellow-item .concept-landplan-name::before{
	background: #bb7a1c;
}
.blue-item .concept-landplan-name::before{
	background: #1689b7;
}
.green-item .concept-landplan-name::before{
	background: #32813b;
}
.pink-item .concept-landplan-name::before{
	background: #e72e56;
}
.purple-item .concept-landplan-name::before{
	background: #655887;
}
.concept-landplan-name span{
	font-size: 2.2rem;
	color: #fff;
	display: inline-block;
	padding: 0px 4px 2px;
	margin-left: -34px;
}
.red-item .concept-landplan-name span{
	background: #ad1731;
}
.yellow-item .concept-landplan-name span{
	background: #bb7a1c;
}
.blue-item .concept-landplan-name span{
	background: #1689b7;
}
.green-item .concept-landplan-name span{
	background: #32813b;
}
.pink-item .concept-landplan-name span{
	background: #e72e56;
}
.purple-item .concept-landplan-name span{
	background: #655887;
}
.concept-landplan-lead{
	font-size: 2rem;
	line-height: 1.5;
}
.concept-landplan-ntoe{
	max-width: 408px;
	width: calc(100% - 12px);
	margin: 15px auto 0;
	font-size: 1.6rem;
	text-align: left;
	line-height: 1.5;
}
.concept-city{
	padding: 220px 0 12%;
	background: #e0e9ef;
	position: relative;
}
.concept-city::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5%;
	background: #e0e9ef;
	background: linear-gradient(90deg,#e0e9ef,#e0e9ef00);
	z-index: 3;
}
.concept-city::after{
	content: "";
	position: absolute;
	bottom: -10%;
	left: 0;
	width: 100%;
	height: 10%;
	background: #e0e9ef;
	background: linear-gradient(90deg,#fff,#ffffff00);
	z-index: 3;
}
.concept-city .line-ani02{
	opacity: 1;
	inset: -3.8% 0 auto;
}
.concept-city .line-wrapper path{
	stroke-width: 2px;
}
.concept-city .concept-border-line{
	opacity: 1;
	inset: auto 0 -10%;
	z-index: 1;
}
.city-logo{
	max-width: 540px;
	width: 100%;
	margin: 0 auto;
	padding-top: 30px;
}
.concept-city-wrapper{
	position: relative;
	z-index: 1;
	margin-top: 80px;
	padding-bottom: 80px;
	background: #fff;
}
.concept-city-head{
	padding: 15px 0;
	margin-bottom: 30px;
	font-size: 3.2rem;
	color: #fff;
	background: linear-gradient(90deg,#e7bf76 0%,#c24b6c 50%,#5e5492 100%);
}
.concept-city-note{
	text-align: left;
	font-size: 2rem;
	line-height: 1.5;
	max-width: 1080px;
	width: calc(100% - 32px);
	margin: 0 auto;
}
.concept-city-list{
	max-width: 1080px;
	width: calc(100% - 32px);
	margin: 40px auto 0;
	display: flex;
	flex-direction: column;
	gap: 55px;
}
.concept-city-item{
	position: relative;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0 20px;
}
.concept-city-item:last-child .concept-city-text{
	transform: translateY(50px);
}
.concept-city-item:nth-of-type(even) .text-wrapper.flex-item{
	order: 1;
}
.concept-city-item::before{
	content: "";
	position: absolute;
	top: 205px;
	left: 50%;
	transform: translate(-50%,0);
	max-width: 380px;
	width: 100%;
	max-height: 380px;
	height: 100%;
	background: #91c5eb;
	opacity: .5;
}
.concept-city-lead{
	width: 100%;
	background: #004385;
	font-size: 2.4rem;
	color: #fff;
	padding: 15px 0;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}
.concept-city-item .text-wrapper.flex-item{
	width: calc(45% - 20px);
	position: relative;
	text-align: left;
	z-index: 2;
}
.concept-city-item .img-wrapper.flex-item{
	width: 50%;
	position: relative;
	z-index: 2;
}
.concept-city-circle{
	margin: 50px 20% 50px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #004d59;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	color: #fff;
	font-size: 2.5rem;
	line-height: 1.2;
	text-align: center;
}
.concept-city-item:nth-of-type(even) .concept-city-circle{
	margin: 50px auto 50px 20%;
}
.bornelund-img{
	max-width: 80px;
	position: absolute;
	top: 0;
	left: -100px;
}
.concept-city-text{
	 font-size: 1.8rem;
	 line-height: 1.5;
}
.concept-device{
	max-width: 1030px;
	padding: 0 100px;
	width: 100%;
	order: 2;
	margin: 180px auto 0;
}
.concept-line-item{
	max-width: 730px;
	width: 100%;
	margin: 40px auto 0;
}
.concept-line-text{
	font-size: 2.8rem;
	line-height: 1.5;
	color: #5386b9;
	margin-top: 30px;
}
.concept-community{
	position: relative;
	z-index: 4;
}
.concept-community-item{
	width: calc(100%/3);
	background: #1b4484;
}
.concept-community-number{
	position: absolute;
	font-size: 10rem;
	color: #fff;
	font-family: sans-serif;
}
.concept-community-item .text-wrapper{
	padding: 30px 0;
	text-align: center;
	color: #fff;
}
.concept-community-heading{
	position: relative;
	font-size: 2.8rem;
	margin-bottom: 15px;
    padding-bottom: 15px;
}
.concept-community-heading::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 60px;
    height: 3px;
	background: #fff;
}
.concept-community-note{
	max-width: 400px;
	width: calc(100% - 12px);
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
}
.concept-residence{
	position: relative;
	padding: 300px 0 0;
	background: url(../images/concept/concept-bg.jpg) no-repeat top center;
	background-size: cover;
}
.concept-residence .line-ani02{
	opacity: 1;
	transform: scaleX(-1);
	inset: -9% 0 auto;
}
.concept-residence-copy{
	max-width: 700px;
	width: 60%;
	margin: 100px auto;
}
.concept-residence-note{
	font-size: 3rem;
	line-height: 2;
}
.concept-residence-img{
	 width: 100vw;
	 margin: 130px calc(50% - 50vw) -112px;
}

.is-dark.is-shadow{
	text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}
.is-shadow{
	text-shadow: 0 0 6px #000000cb,0 0 6px #000000cb,0 0 6px #000000cb;
}
.concept .main {
    margin-top: 100px;
}
.concept .navigation-bar {
    transform: translateY(0);
}
.concept .outline-table{
	margin: 100px auto 240px;
	max-width: 1000px;
}
.concept .outline-table td{
	text-align: left;
}
.mv-bg-text{
	position: absolute;
	inset: 0;
	z-index: 10;
}

@media screen and (max-width: 1200px){
	.concept-city::before{
		height: 3%;
	}
	.concept-city .line-ani02{
		inset: -0.8% 0 auto;
	}
	.concept-landplan .line-ani02 {
		inset: auto 0 26%;
	}
	.concept .outline-table{
		margin-bottom: 400px;
	}
}

@media screen and (max-width: 767px){
	.concept .main .inner{
		padding: 40px 0;
	}
	.concept-future {
		overflow: hidden;
	}
	.concept-future .note{
		font-size: 1.2rem;
	}
	.concept-future-img{
		width: 120vw;
		margin: 0 calc(50% - 60vw);
	}
	.concept-landplan{
		margin-top: -40px;
	}
	.concept-landplan-heaidng{
		font-size: 2rem;
		padding-bottom: 15px;
		margin-bottom: 10px;
	}
	.concept-landplan-note{
		flex-wrap: wrap;
	}
	.concept-landplan-note .small-text{
		font-size: 1.3rem;
		padding: 0;
		display: block;
		width: 100%;
	}
	.concept-landplan-note .large-text{
		font-size: 6rem;
	}
	.concept-landplan-note .large-text sub{
		font-size: 3.5rem;
	}
	.concept-landplan-note .concept-landplan-box{
		font-size: 1rem;
		padding: 5px;
	}
	.concept-landplan-map{
		width: 100vw;
		margin: 0 calc(50% - 50vw) ;
	}
	.concept-landplan-cap{
		margin: 20px auto;
		padding: 12px;
	}
	.concept-landplan-cap dl{
		display: block;
		font-size: 1.2rem;
	}
	.concept-landplan-cap dl dt{
		width: 100%;
	}
	.concept-landplan-cap dl dd{
		font-size: 80%;
	}
	.concept-landplan-list{
		margin: 85px calc(50% - 50vw) -25px;
	}
	.concept-landplan .line-ani02{
		inset: auto 0 53%;
	}
	.concept-landplan-item{
		width: 100%;
		display: flex;
	}
	.concept-landplan-item:nth-of-type(odd){
		flex-direction: row-reverse;
	}
	.concept-landplan-item .img-wrapper{
		width: 50%;
	}
	.concept-landplan-item .text-wrapper{
		width: 50%;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.concept-landplan-en{
		font-size: 2.5rem;
		padding: 2.5px 7.5px 5px;
	}
	.concept-landplan-name{
		font-size: 1.6rem;
		margin-bottom: 7.5px;
		padding-bottom: 7.5px;
		gap: 5px;
	}
	.concept-landplan-name::before{
		width: 30px;
		height: 1.5px;
	}
	.concept-landplan-name span{
		font-size: 1.3rem;
		padding: 3px 4px 4px;
		margin-left: -26px;
	}
	.concept-landplan-lead{
		font-size: 1.2rem;
	}
	.concept-landplan-ntoe{
		font-size: 1rem;
		margin-top: 7.5px;
		width: 80%;
	}
	.concept-city{
		padding: 20px 0 0;
	}
	.concept-city .note{
		font-size: 1.2rem;
	}
	.city-logo{
		padding-top: 10px;
		max-width: 270px;
	}
	.concept-city .line-ani02{
		inset: -1.8% 0 auto;
	}
	.concept-city-wrapper{
		margin-top: 40px;
		padding-bottom: 40px;
	}
	.concept-city-head{
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
	.concept-city-list{
		margin-top: 20px;
		gap: 25px;
	}
	.concept-city-note{
		font-size: 1.2rem;
	}
	.concept-city-lead{
		font-size: 1.2rem;
		margin-bottom: 20px;
	}
	.concept-city-item .text-wrapper.flex-item{
		margin-top: 20px;
		width: 80%;
		order: 1;
	}
	.concept-city-item:nth-of-type(even) .text-wrapper.flex-item{
		margin-left: auto;
	}
	.concept-city-item .img-wrapper.flex-item{
		/* width: 80%; */
		width: calc(100% - 90px);
		margin-left: auto;
	}
	.concept-city-item:nth-of-type(even) .img-wrapper.flex-item{
		margin: 0 auto 0 0;
	}
	.concept-city-text{
		font-size: 1.1rem;
	}
	.bornelund-img{
		inset: 100% 0 auto auto;
		width: 40px;
	}
	.concept-city-item::before{
		max-width: 190px;
		max-height: 190px;
		inset: 170px 0 auto 50%;
	}
	.concept-city-item:last-child::before{
		inset: 100px 0 auto 50%;
	}
	.concept-city-item:last-child .concept-city-text{
		transform: translateY(0);
	}
	.concept-city-circle{
		position: absolute;
		inset: -110px 0 auto;
		margin: 0;
		width: 70px;
		height: 70px;
		font-size: 1rem;
	}
	.concept-city-item:nth-of-type(even) .concept-city-circle{
		margin: 0;
		inset: -110px 0 auto auto;
	}
	.concept-device{
		margin: 20px auto 0;
		padding: 0;
		padding-bottom: 10px;
	}
	.concept-line-text{
		font-size: 1.6rem;
	}
	.concept-city::before{
		height: 40px;
	}
	.concept-city .concept-border-line {
		inset: auto 0 -5.5%;
	}
	.concept-community-item{
		width: 100%;
		display: flex;
	}
	.concept-community-item:nth-of-type(odd){
		flex-direction: row-reverse;
	}
	.concept-community-item .img-wrapper{
		width: 50%;
	}
	.concept-community-item .text-wrapper{
		width: 50%;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.concept-community-heading{
		font-size: 1.6rem;
		margin-bottom: 7.5px;
		padding-bottom: 10.5px;
	}
	.concept-community-heading::before{
		width: 30px;
		height: 1.5px;
	}
	.concept-community-note{
		margin-top: 0;
		width: 90%;
		font-size: 1.1rem;
	}
	.concept-residence{
		padding: 30px 0 0;
	}
	.concept-residence-copy{
		max-width: 250px;
		margin: 20px auto;
	}
	.concept-residence .line-ani02{
		inset: -4% 0 auto;
	}
	.concept-residence-note{
		font-size: 1.4rem;
	}
	.concept-residence-img{
		margin: 30px calc(50% - 50vw) -68px;
	}
	.concept .main {
		margin-top: 50px;
	}
	.concept-mv .line-ani02{
		top: 5%;
	}
}
@media screen and (max-width: 767px){
	.concept .outline-table {
		margin-top: 40px;
    margin-bottom: 0;
	}
	.concept-landplan .line-ani02 {
		inset: auto 0 52%;
	}
	.concept-mv .line-ani04 {
		inset: auto 0 -11%;
	}
	.concept-mv .line-ani05{
		top: 50%;
	}
	.concept-mv .line-ani01{
		top: 45%;
	}
	.concept-mv+.caption{
		padding: 0 8px;
	}
}
@media screen and (max-width: 500px){
	.concept-landplan .line-ani02 {
		inset: auto 0 40%;
	}
}
/*--------------------------------
top
--------------------------------*/
.top-movie-cs{
	max-width: 960px;
	margin: 0 auto 50px;
	position: relative;
}
.top-movie-cs::before{
	content: '- COMING SOON -';
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
	font-family: "century-gothic", sans-serif;
	font-weight: 300;
	color: #fff;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
@media screen and (max-width: 767px){
	.top-movie-cs::before{
		font-size: 2.6rem;
	}
}
.res-wrap{
	width: min(calc(100% - 32px),780px);
	margin: 80px auto 40px;
}
.res-wrap table,
.res-wrap td,
.res-wrap th {
  background-color: #fff;
  color: #231815;
  border: 1px solid #666666;
  border-collapse: collapse;
  text-align: center;
  font-size: 2rem;
}
.res-wrap table {
	width: 100%;
	margin: 0 auto;
}
.res-wrap td,
.res-wrap th {
  padding: 10px 3px;
  width: 30px;
  height: 25px;
}
.res-wrap .time td {
	background-color: #cacbc1;
}
  
.res-wrap tr td {
	width: 180px;
}
.res-wrap tr td:first-child {
	background-color: #858868;
	color: #fff;
	width: 200px;
}
.res-wrap .caption{
	font-family: serif;
}
.res-wrap .reserve-btn{
	display: block;
	margin: 30px auto 0;
	text-align: center;
	width: min(100%,420px);
	font-size: 2.4rem;
	padding: 20px 16px;
	background: #8D2041;
}
.sold-labels{
	height: calc(100% - 41px);
	position: absolute;
	top: 40px;
	left: 27.1%;
	right: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.sold-label{
	height: 100%;
	width: 100%;
	background: linear-gradient(0deg,#650f08, #a62121);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.6rem;
	line-height: 1;
	letter-spacing: .15em;
	padding: 8px;
	position: relative;
	overflow: hidden;
}
.sold-label::before{
	content: '';
	display: block;
	background-color: rgba(255, 255, 255, 0.7);
	width: 20px;
	height: 100%;
	animation: shine02 4s ease-in-out infinite;
	position: absolute;
	top: -180px;
	left: 0;
	opacity: 0;
	transform: rotate(45deg);
}
@keyframes shine02 {
	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(200) rotate(45deg);
		opacity: 0;
	}
} 
.sold-label span{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #afb192;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px){
	.sold-labels{
		height: calc(100% - 33px);
		top: 32.5px;
		left: 26%;
	}
	.sold-label{
    font-size: 2.8rem;
    letter-spacing: .15em;
    padding: 4px;
	}
}
.add-table{
	margin-top: 40px;
	border: 1px solid #C60000;
	position: relative;
}
.add-label{
	position: absolute;
	top: 0;
	left: -165px;
	height: 100%;
}
.add-label-inner{
	background: #C60000;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.3;
	padding: .4em 1em;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.add-label-inner::after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 0 20px 20px;
	border-color: transparent transparent transparent #C60000;
	right: 0;
	margin-top: -20px;
	position: absolute;
	top: 50%;
	right: -20px;
}
@media screen and (max-width: 1100px){
	.add-table{
		margin-top: 80px;
	}
	.add-label{
		top: -59px;
		position: absolute;
		left: 0;
		right: 0;
	}
	.add-label br{
		display: none;
	}
	.add-label-inner{
		color: #fff;
		font-size: 1.4rem;
		padding: .8em 1em;
		height: auto;
		justify-content: center;
		position: relative;
	}
	.add-label-inner::after{
		border-width: 16px 16px 0 16px;
		border-color: #C60000 transparent transparent transparent;
		right: 0;
		margin-top: 0;
		position: absolute;
		top: auto;
		bottom: -15px;
		right: 50%;
		margin-right: -16px;
	}
}
@media screen and (max-width: 767px){
	.res-wrap{
		margin-top: 10%;
	}
	.res-wrap table,
	.res-wrap td,
	.res-wrap th{
		font-size: 1.2rem;
	}
	.res-wrap .reserve-btn{
		margin-top: 20px;
	}
}
@media screen and (max-width: 767px){
	#main.home .area6 .items .item .tl.rt-b {
		text-align: left;
		top: 5vw;
		left: 5vw;
	}
	#main.home .area7 .items .item .tl.rt-plan {
		text-align: right;
		width: 100%;
		left: 0;
		top: 30vw;
		/* bottom: 10vw; */
		padding-right: 2.5vw;
	}
	#main.home .area8 .items .item .tl.lt-brand {
		text-align: left;
		top: 58%;
		left: 5vw;
		bottom: auto;
	}
}
@media screen and (max-width: 1440px){
	#main.home .items .item p.link a {
		max-width: 350px;
	}
	#main.home .area8 .items .item .tl.rt {
		top: 55%;
	}
}
@media screen and (max-width: 1280px){
	#main.home .items .item p.link a {
		max-width: 280px;
	}
}
@media screen and (max-width: 1024px){
	#main.home .items .item p.link a {
		max-width: 220px;
	}
}
@media screen and (max-width: 820px){
	#main.home .items .item p.link a {
		max-width: 220px;
	}
	#main.home .area5 .items .item {
		padding-top: 10vw;
	}
	#main.home .area5 .items .item .tl {
		top: 55%;
	}
	#main.home .area6 .items .item {
		padding-top: 3vw;
	}
	#main.home .area6 .items .item .tl {
		top: 53%;
	}
	#main.home .area7 .items .item {
		margin-top: 15vw;
	}
}
@media screen and (min-width: 802px){
	#main.home .area6 .items .item .tl.sdw-b h3, 
	#main.home .area6 .items .item .tl.sdw-b em,
	#main.home .area6 .items .item .tl.sdw-b p,
	#main.home .area8 .items .item .tl.sdw-b h3, 
	#main.home .area8 .items .item .tl.sdw-b em,
	#main.home .area8 .items .item .tl.sdw-b p  {
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.7), 0 0 5px rgba(255, 255, 255, 0.7);
	}
	#main.home .area6 .items .item figure .is-shadow {
		color: #fff;
		text-shadow: 0 0 6px #000000cb, 0 0 6px #000000cb, 0 0 6px #000000cb;
	}
}
/*--------------------------------
plan
--------------------------------*/
.plan .main{
	margin-top: 100px;
	background: #e8e8e8;
}
.plan .main .inner {
	max-width: 960px;
	width: calc(100% - 32px);
	margin: 0 auto;
	padding: 80px 0;
}
.plan-caption{
	font-size: small;
}
@media screen and (max-width: 767px){
	.plan .main{
		margin-top: 50px;
	}
	.plan .main .inner{
		padding: 40px 0;
	}
	.plan-caption{
		font-size: x-small;
	}
}

/*--------------------------------
outline
--------------------------------*/
/*.header-margin {
    margin-top: 122px;
}*/
.outline-table-wrap{
	margin: 0 auto;
	max-width: 1000px;
}
.outline-table{
	margin-bottom: 40px;
	width: 100%;
	line-height: 1.6;
}
.outline-table caption{
	margin-bottom: 15px;
	padding-bottom: 10px;
	font-size: 2.3rem;
	font-weight: 400;
	border-bottom: 3px double #bbb;
	letter-spacing: 4px;
}
.outline-table th,
.outline-table td{
	padding: 10px 0;
	border-bottom: 1px solid #777;
	word-break: break-word;
}
.outline-table th{
	width: 280px;
	font-weight: 400;
	text-align: left;
}
.is-table-top-border{
	border-top: 1px solid #777;
}
.label-wrapper{
	margin-top: -20px;
	margin-bottom: 80px;
	align-items: flex-start;
}
.label-box{
	margin: 8px 16px 8px 0;
	padding: 8px 0;
	width: 100px;
	font-size: 1.6rem;
	border: 1px solid;
	text-align: center;
}
.label-note{
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.6;
}
.layout-caption{
	margin: -30px 0 0 32px;
	display: flex;
	align-items: center;
}
.layout-caption img{
	width: 19px;
	height: 19px;
	margin-right: 5px;
}
@media screen and (max-width: 767px){
	.outline-table caption{
		padding-bottom: 4px;
		font-size: 1.6rem;
	}
	.outline-table th,
	.outline-table td{
		width: 100%;
		display: block;
	}
	.outline-table th{
		padding: 0 0 4px;
		font-size: 1.3rem;
		font-weight: 600;
	}
	.outline-table td{
		padding: 8px 0 16px;
		font-size: 1.2rem;
		border-bottom: none;
	}
	.is-table-top-border{
		border-top: none;
	}
	.label-wrapper{
		margin-bottom: 52px;
		display: block;
	}
	.label-note{
		font-size: 1.2rem;
	}
	.layout-caption{
		margin: -30px 0 0 20px;
	}
	/*.header-margin.is-sticky {
		margin-top: 50px;
	}*/
}
.map-wrapper{
	margin: 20px auto 0;
	max-width: 800px;
}
.map-wrapper + .primary-lead{
	margin-top: 80px;
}
.map_btns_btn {
	margin: 40px auto 0;
	display: block;
	width: calc(50% - 15px);
	background: #000;
	color: #fff;
	height: 3em;
	text-align: center;
	border: 1px solid #000;
	font-weight: 400;
	font-size: 14px;
	line-height: 3;
	font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN W3', 'Noto Serif JP', serif;
	transition: 0.5s;
}
/*.map .navigation-bar {
	transform: translateY(0);
}*/
@media screen and (max-width: 767px){
	.map-wrapper + .primary-lead{
		margin-top: 30px;
	}
	.map-wrapper{
		margin-top: 10px;
	}
}
@media print { 
	.map header,.map footer{
		display: none;
	}
	.map .entry-section{
		display: none;
	}
	.map .banner-area{
		display: none;
	}
	.map_btns_btn{
		display: none;
	}
	.map .page-title-wrap{
		display: none;
	}
	.map .header-margin {
    margin-top: 0;
	}
	.map .caption-wrapper {
    padding:0;
	}
	.map-wrapper + .primary-lead{
		margin-top: 10px;
	}
}

/*--------------------------------
design
--------------------------------*/
.design #main .area2.area2-item{
	padding: 1% 0 6%;
	background: none;
}
@media screen and (max-width: 801px){
	.design #main .area2.area2-item{
		padding: 0 0 10%;
		background: none;
	}
}

/*--------------------------------
voice
--------------------------------*/
.voice #main .panel .grid .txt-box .txt3a {
	line-height: 1.4;
	font-feature-settings: normal;
}
.voice #main .other-tab-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 20px;
	cursor: pointer;
	max-width: 350px;
	width: 90%;
	margin: 50px auto;
  }
  @media screen and (max-width: 801px) {
	.voice #main .other-tab-area {
	  margin: 7.5% auto 5% auto;
	  row-gap: 2.5vw;
	}
  }
  @media screen and (max-width: 390px) {
	.voice #main .other-tab-area {
		max-width: 288px;
	}
  }
  .voice #main .other-tab-area .other-tab {
	position: relative;
	display: flex;
	width: 22%;
	height: 80px;
	transition: 0.3s;
	background-color: #B2B2B2;
	mix-blend-mode: multiply;
	z-index: 2;
	color: #fff;
	font-size: 6rem;
	align-items: center;
	justify-content: center;
	font-family: "century-gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  @media screen and (max-width: 390px) {
	.voice #main .other-tab-area .other-tab {
		width: 18%;
		font-size: 3.4rem;
		height: 50px;
	}
  }
  .voice #main .other-tab-area .other-tab:hover {
	background-color: #666666;
  }
  .voice #main .other-tab-area .other-tab.active {
	background-color: #666666;
	opacity: 1 !important;
  }
  .voice #main .other-panel {
	display: none;
	color: #000;
  }
  .voice #main .other-panel.active {
	display: block;
  }

/*--------------------------------
option
--------------------------------*/
.option-mv{
	position: relative;
}
.option-mv-text{
	position: absolute;
	inset: 0;
}
.option-bg{
	background: url(../images/option/option-bg.jpg) no-repeat center center;
	background-size: cover;
}
.option-logo{
	width: min(100%,288px);
	margin: 0 auto;
}
.option-heaidng{
	margin-top: 43px;
	font-size: 4.4rem;
	line-height: 1.5;
}
.option-heaidng span{
	font-size: 2.4rem;
}
.option-caption{
	margin-top: 30px;
	font-size: 1.8rem;
	line-height: 1.5;
}
.option-note{
	display: block;
	width: min(100%,720px);
	margin: 50px auto 0;
	font-size: 2rem;
	background: #000;
	padding: 10px 16px;
	color: #fff;
}
.option-more-list{
	margin: 50px auto 0;
	width: min(100%,720px);
	display: grid;
	gap: 50px;
}
.coming-soon{
	position: relative;
	pointer-events: none;
}
.coming-soon::before{
	content: "coming soon";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #0000006a;
	color: #fff;
	font-size: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.option .main{
	margin-top: 100px;
}
.option .navigation-bar {
    transform: translateY(0);
}
@media screen and (max-width: 767px){
	.option-logo{
		width: min(50%,288px);
	}
	.option-heaidng{
		margin-top: 22px;
		font-size: 3.6rem;
	}
	.option-heaidng span{
		font-size: 2rem;
		display: block;
	}
	.option-caption{
		margin-top: 15px;
		font-size: 1.4rem;
	}
	.option-note{
		margin: 25px auto 0;
		font-size: 1.4rem;
	}
	.option-more-list{
		margin-top: 25px;
		gap: 25px;
	}
	.coming-soon::before{
		font-size: 2.4rem;
	}
	.option .main {
		margin-top: 50px;
	}
	
}