html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	visibility: hidden;
}

html.wf-active, html.loading-delay {
	visibility: visible;
}

body {
	font-family: 'Noto Sans JP', Osaka, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #222;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	line-height: normal;
	position: relative;
}

img {
	vertical-align: top;
}

.img100 {
	width: 100%;
	height: auto;
}

*:focus {
	outline: none;
}

.nospi,
.nosp {
	display: none;
}

.nopci {
	display: inline;
}
.nopc {
	display: block;
}

a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	cursor: pointer;
	text-decoration: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


input::placeholder,
textarea::placeholder {
	color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #999;
}

main {
	padding-top: 48px;
	padding-bottom: 20%;
}



/* header */

header {
	width: 100%;
	margin: 0 auto;
	height: 48px;
	box-sizing: border-box;
	position: fixed;
	z-index: 999;
	background: #fff;
}

h1.logo {
	width: 240px;
	margin: 13px 0 0 6px;
}
h1.logo img {
	width: 100%;
	height: auto;
}

.global_navi {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 48px;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 0 0;
	background: #fff;
}

.global_navi li {
	line-height: 1;
	font-size: 1.5rem;
	margin: 0 20px;
}

.global_navi li a {
	display: block;
	color: #222;
	border-bottom: solid 1px #dddddd;
	text-align: center;
	padding: 16px 0;
}


#hbg {
	width: 48px;
	height: 48px;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
}

#hbg span {
	display: block;
	width: 20px;
	height: 2px;
	background: #222;
	position: absolute;
	top: calc(50% - 1px);
	left: 14px;
	transition: .1s;
}

#hbg span:before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #222;
	position: absolute;
	top: -8px;
	left: 0;
	transition: .3s;
}

#hbg span:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #222;
	position: absolute;
	top: 8px;
	left: 0;
	transition: .3s;
}

#hbg.close span {
	background: #fff;
}
#hbg.close span:before {
	transform: rotate(45deg);
	top: 0;
}
#hbg.close span:after {
	transform: rotate(-45deg);
	top: 0;
}



/* maiimage */

.mainimage {
	width: 100%;
}



/* menu */

.menu {
	display: flex;
	margin-bottom: 10px;
}

.menu > li {
	width: 20%;
}
.menu > li img {
	width: 100%;
	height: auto;
}



.contents {
	width: 90%;
	margin: 0 auto;
}

.block {
	padding-top: 63px;
	margin-top: -45px;
}

.totop {
	width: 90%;
	margin: 20px auto;
	text-align: right;
}
.totop img {
	width: 150px;
	height: auto;
}


.category_title {
	margin-bottom: 30px;;
}




.section_area > div {
	text-align: justify;
}

.section_area > div p {
	font-size: 1.45rem;
	line-height: 1.5;
	margin-top: 6px;
	text-align: justify;
}
.section_area > div figure {
	margin-top: 30px;
}



.floor_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -5%;
}

.floor_list > li {
	width: 47.5%;
	background: #ffc9dd;
	padding: 0px;
	box-sizing: border-box;
	margin-top: 5%;
	position: relative;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.floor_list > li p {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: 10px;
	text-align: justify;
}

.floor_list > li > div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.6);
	display: flex;
	align-items: center;
}

.floor_list > li > div span {
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	font-weight: bold;
	background: #999999;
	border: solid 1px #222;
	padding: 10px 0;
}


.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	z-index: -1;
	display: flex;
	align-items: center;
	opacity: 0;
	transition: .4s;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.modal.modal_view {
	z-index: 9999;
	opacity: 1;
	cursor: pointer;
}

.modal_close {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/close.svg) center center no-repeat;
	background-size: 15px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	z-index: 999999;
}


.floor-slide {
	position: relative;
	display: none;
}

.floor-slide,
.swiper-container,
.swiper-slide {
	width: 100%;
}

.swiper-slide {
	text-align: center;
}

.swiper-slide img {
	max-width: 100%;
	max-height: 95vh;
}

.gallery-prev,
.gallery-next {
	display: block;
	width: 40px;
	height: 40px;
	z-index: 999;
}

.gallery-prev {
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	background: rgba(255,255,255,0.25) url(../img/left_arrow.svg) center center no-repeat;
	background-size: 8.5px 17px;
}
.gallery-next {
	position: absolute;
	top: calc(50% - 20px);
	right: 0;
	background: rgba(255,255,255,0.25) url(../img/right_arrow.svg) center center no-repeat;
	background-size: 8.5px 17px;
}



.naisou_fv p {
	margin-top: 1em;
	font-size: 1.45rem;
	line-height: 1.5;
	text-align: justify;
}

.facility_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.facility_list li {
	width: 47.5%;
	margin-top: 5%;
}

.facility_copy {
	font-size: 1.5rem;
	margin-top: 4px;
}
.facility_text {
	font-size: 1.35rem;
	margin-top: 4px;
}


.area_fv p {
	margin-top: 1em;
	font-size: 1.45rem;
	line-height: 1.5;
	text-align: justify;
}

.area_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.area_list li {
	width: 47.5%;
	margin-top: 5%;
}

.area_copy {
	font-size: 1.5rem;
	margin-top: 4px;
}
.area_text {
	font-size: 1.35rem;
	margin-top: 4px;
}


.area_text_list {
	list-style-type: disc;
	margin: 20px 0 0 1.4em;
}

.area_text_list li {
	font-size: 1.45rem;
}


.gmap iframe {
	width: 100%;
	height: 240px;
	vertical-align: bottom;
}


.carnavi {
	text-align: right;
	font-size: 1.35rem;
	margin-top: 4px;
}

.bgaiyou {
	font-size: 1.45rem;
	margin-top: 15px;
}



.banner {
	width: 90%;
	margin: 30px auto 0;
}
.banner li {
	margin-top: 12px;
}



footer {
	display: flex;
	bottom: 0;
	left: 0;
	position: fixed;
}

footer a {
	display: block;
	width: 50%;
}