/*
Theme Name: miyagisendai-office
*/

@charset "utf-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);


/* commmon
---------------------------------------------------------------------------*/
html,body{
	margin-top: 0;
	font-family: "Noto Sans Japanese",sans-serif;
	line-height: 1.6em;
	letter-spacing: 0.8px;
	background-color: white;
	color: #333;
}
#top {
	margin: 0px;
	padding: 0px;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
	margin:0;
	padding:0;
}
img {
	border: none;
	vertical-align: bottom;
}
.left{
	float:left;
	margin-right:5px;
}
.right{
	float:right;
}
.clear{
	clear:both;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
i{
	margin-right: 0.4em;
}
h2 {
	font-size: 1.6em;
	padding: 1rem 0 3rem 0;
	position: relative;
	width: 100%;
	text-align: center;
	color: #2EADB6;
}
h2::after{
	content: "";
	width: 3rem;
	border-bottom: 1px solid #2EADB6;
	display: block;
	margin: 0 auto;
	margin-top: 2.5rem;
}
h3{
	font-size: 100%;
}
h4{
	margin-bottom: 1rem;
	font-size: 125%;
	font-weight: bold;
	border-bottom: 2px dotted #2EADB6;
	padding-bottom: 1rem;
	color: #2EADB6;
}
dl p + h4{
	margin-top: 2rem;
}
h5{
	background-color: #eee;
	padding: 0.5rem;
	font-size: 100%;
	margin-bottom: 1rem;
}
dl p + h5{
	margin-top: 2rem;
}
sup{
	font-size:0.6rem;
}
.center{
	text-align: center;
}
.only-sp{
	display: none !important;
}
.only-pc{
	display: block !important;
}


/* link
---------------------------------------------------------------------------*/



/*container
---------------------------------------------------------------------------*/
#container {
}



/* header
---------------------------------------------------------------------------*/
header {
	height: 100px;
	width:100%;
	position: fixed; 
	top: 0px;
	left: 0px;
	z-index: 10;
	background-color: white;
	background: rgba(255,255,255,0.9);
	border-bottom: 2px solid #2EADB6;
	transition: .3s;
}
#header {
	width: 100%;
	max-width: 1100px;
	position: relative;
	margin:0 auto;
  -moz-transition: height 0.3s;
  -o-transition: height 0.3s;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
	top: 10px;
}
@media only screen and (max-width:767px){
	#header {
		top: 5px;
	}
}


#header #logo {
	float: left;
	margin-top: 12px;
}
#header #logo h1 img{
	width: 90px;
}
#header #information {
	float: right;
	font-size: 12px;
	margin: 10px 0;
	background: #2EADB6;
	color: white;
	border-radius: 5px;
	padding: 0 20px;
	text-align: center;
}
#header #information span{
	color: #2EADB6;
	background: white;
	padding: 0 5px;
	margin-right: 5px;
	border-radius: 5px;
	margin-left: 10px;
}
#header #information a{
	color: white;
	margin-left: 10px;
}


/* navi
---------------------------------------------------------------------------*/
#header nav {
	float: right;
	width: 85%;
}
#header nav p{
	margin-bottom: 4px;
}
#header nav p a{
}
#header nav p i{
	margin-right: 10px;
}
#header nav ul#index{
	text-align: right;
	width: 100%;
}
#header nav ul#index li{
	font-size: 12px;
	display:inline-block; 
	text-align: center;
	letter-spacing: 0.6px;
	box-sizing: border-box;
	margin-left: 28px;
}
#header nav ul#index li:first-child{
	margin-left: 0;
}
#header nav li a{
	display:block;
	color: #333;
	text-decoration: none;
}
#header nav li.stay a{
	color: #2EADB6;
}
#header nav li a:hover{
}
#header nav li a span{
	font-size: 50%;
	display: block;
	line-height: 1.2;
	color: #2EADB6;
	padding-bottom: 5px;
}
#header nav li a i{
	color: #2EADB6;
	font-size:80%;
}

@media only screen and (max-width:767px){

	#header nav ul#index li{
		text-align: left;
	}
	#header nav ul#index li ul{
		position: relative;
		width: 100%;
		padding-top: 0;
		display: block !important;
	}
}


/*  sp-menu
---------------------------------------------------------------------------*/
.menu-sp-btn {
	display: none;
	position: absolute;
	z-index: 9999;
	top: 20px;
	right: 20px;
	width: 25px;
	height: 20px;
}
.menu-sp-btn span {
	background-color: #2EADB6;
	display: block;
	height: 3px;
	border-radius: 3px;
	width: 100%;
	margin-bottom: 6px;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, opacity 0.1s ease-in-out 0.1s, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
	-webkit-transform: translateZ(0);
					transform: translateZ(0);
}
.menu-sp-btn span:last-child {
	margin-bottom: 0;
}
.menu-sp-btn.is-clicked span:first-child {
	-webkit-transform: translateY(9px) rotateZ(-135deg);
			-ms-transform: translateY(9px) rotate(-135deg);
					transform: translateY(9px) rotateZ(-135deg);
}
.menu-sp-btn.is-clicked span:nth-child(2) {
	opacity: 0;
}
.menu-sp-btn.is-clicked span:last-child {
	-webkit-transform: translateY(-9px) rotateZ(135deg);
			-ms-transform: translateY(-9px) rotate(135deg);
					transform: translateY(-9px) rotateZ(135deg);
}



main{
	position: relative;
	top: 100px;
}
main #contents.subpage .inner-block{
	padding: 3rem 6rem;
	border: 1px solid #ccc;
	background: white;
	font-size: 0.9rem;
}
@media only screen and (max-width: 767px){
	main #contents.subpage .inner-block{
		padding: 3rem 1rem;
	}
}



/* toppage
---------------------------------------------------------------------------*/
#slider{
	margin-bottom: 60px;
}
#slider .slick-box{
	opacity: 0;
	transition: opacity .3s linear;
}
#slider .slick-box.slick-initialized{
	opacity: 1;
}


/*main
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
	width: 100%;
	font-size: 0.95rem;
	position: relative;
	z-index: 0;
}
#main:before{
	content: "";
	position: absolute;
	width: 100%;
	background-size: contain;
	height: 50%;
	top: 350px;
	left: 0;
	z-index: -1;
	background-color: #F5FEFF;
	-webkit-transform: skewY(-10deg);
	transform: skewY(-10deg);
}


/* section
---------------------------------------------------------------------------*/
section{
	width:100%;
}
section .section-inner{
	width: 100%;
	max-width: 1100px;
	margin:0 auto;
}


.more{
	width: 100%;
	text-align: center;
	padding-bottom: 5rem;
}
.more a {
	border: 2px solid #2EADB6;
	color: #2EADB6;
	text-decoration: none;
	padding: 5px 20px;
	transition : 1s;
}
.more a:hover{
	color: white;
	background-color: #2EADB6;
	transition : 1s;
}




/* topnews
---------------------------------------------------------------------------*/
#topnews{
	margin-bottom: 40px;
}
#topnews p {
	width: 100%;
	border: 2px solid #2EADB6;
	padding: 20px;
	text-align: center;
	font-size: 0.8rem;
	box-sizing: border-box;
}
#pageindex{
	margin-bottom: 80px;
}
#pageindex ul{
	display: flex;
	justify-content: center;
}
#pageindex ul li{
	float: left;
	text-align: center;
	box-sizing: border-box;
	border-right: 1px solid;
	width: 100%;
}
#pageindex ul li:first-child{
	border-left: 1px solid;
}
#pageindex ul li img{
	width: 30px;
}
#pageindex ul li a{
	text-decoration: none;
	font-size: 70%;
	color: black;
	display: block;
}

@media only screen and (max-width:767px){

	#pageindex ul{
		flex-wrap:wrap;
	}
	#pageindex ul li{
		width: calc(100% / 3);
		border-bottom: 1px solid;
	}
	#pageindex ul li:nth-child(1){
		border-left: 0;
	}
	#pageindex ul li:nth-child(3n){
		border-right: 0;
	}
	#pageindex ul li:nth-child(n+4){
		border-bottom: 0;
	}
	#pageindex ul li a{
		font-size: 60%;
		padding: 10px 0;
	}
}


/* shopindex トップページ
---------------------------------------------------------------------------*/
#shopindex .shop-index {
	margin-bottom: 80px;
}
#shopindex .shop-index ul li{
	float: left;
	width: 16%;
	text-align: center;
	box-sizing: border-box;
	margin: 0.2%;
	margin-bottom: 20px;
	padding: 8px 4px;
}
#shopindex .shop-index ul li a{
	font-size: 0.8rem;
	text-decoration: none;
	color: #333;
}
#shopindex .shop-index ul li:hover {
	-webkit-box-shadow: 0px 0px 0px 4px #2eadb6 inset;
	box-shadow: 0px 0px 0px 4px #2eadb6 inset;
	transition: .3s;
}
#shopindex .shop-index ul li .logo img{
	max-height: 80px;
}
.shopnews-index .thumbnail img{
	width: 100%;
}
@media only screen and (max-width: 767px){
	#shopindex .shop-index ul li{
		width: 25%;
		margin: 0;
		min-height: 90px;
	}
	#shopindex .shop-index ul li img{
		width: 100%;
	}
}



/* shopnews
---------------------------------------------------------------------------*/
#shopnews{
}

.shopnews-index ul{
	float: left;
	width: 100%;
}
.shopnews-index ul li{
	width: 31.3%;
	height: auto;
	float: left;
	display: inline-block;
	text-align:left;
	margin: 1%;
	margin-bottom: 3rem;
	font-size: 0.8rem;
	position: relative;
}
.shopnews-index ul li:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.shopnews-index ul li.new:after{
	position: absolute;
	content: 'new';
	top: -5px;
	left: -5px;
	background: red;
	color: #fff;
	padding: 0 10px;
	font-size: 10px;
	font-style: italic;
}
.shopnews-index ul li div{
	margin: 0.1rem 0;
}
.shopnews-index ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	width: 100%;
	height: 100%;
	position: absolute;
	border: 1px solid #ccc;
	box-sizing: border-box;
	padding: 10px;
	background: white;
	top: 0;
}
.shopnews-index ul li a img{
	width: 100%;
}
.shopnews-index ul li a:hover{
    -webkit-box-shadow: 0px 0px 0px 4px #2eadb6 inset;
    box-shadow: 0px 0px 0px 4px #2eadb6 inset;
    transition: .3s;
}
.shopnews-index ul li a .thumbnail{
	height: 100%;
	width: 100%;
	margin-bottom: 0;
	overflow: hidden;
	text-align: center;
}
.shopnews-index ul li a .data{
	position: absolute;
	bottom: 8px;
	width: -webkit-fill-available;
	box-sizing: border-box;
	background: white;
	opacity: 0.9;
	margin: 0 10px;
	left: 0;
	font-size: 0.7rem;
}
.shopnews-index ul li a .title{
	padding: 5px 0;
	font-weight: bold;
	margin-bottom: 0.5rem;
	line-height: 1.2rem;
	border-bottom: 1px solid #ccc;
}
.shopnews-index ul li .tag{
	font-size: 0.7rem;
}
.shopnews-index ul li a .summary{
	font-size: 0.65rem;
	line-height: initial;
}
.shopnews-index ul li a .update{
	font-size: 0.65rem;
	line-height: initial;
	margin-top: 10px;
}
.shopselect select{
    font-size: 0.8rem;
}




/* aernews
---------------------------------------------------------------------------*/
#aernews ul{
	width: 100%;
	float: left;
}
#aernews ul li{
	float: left;
	width: 40%;
	margin-bottom: 3rem;
}
#aernews ul li a{
	text-decoration: none;
	color: #333;
}
#aernews ul li img{
	width: 100%;
}
#aernews ul li .title{
	border-top: 1px solid #ccc;
	padding-top: 10px;
	margin-top: 10px;
	text-align: center;
	font-size: 0.65rem;
	line-height: initial;
}
#aernews ul li:nth-child(odd){
	margin: 0 5%;
	margin-bottom: 3rem;
}
#aernews ul li:nth-child(even){
	margin-right: 5%;
	margin-left: 0;
	margin-bottom: 3rem;
}




/* information
---------------------------------------------------------------------------*/
#information table{
	width: 100%;
}
#information table th{
	text-align: center;
	font-size: 0.8rem;
	padding: 5px 10px;
}
#information table td{
	margin-left: 280px;
	font-size: 0.9rem;
	padding: 5px 10px;
}
#information table tr:nth-child(odd) th,
#information table tr:nth-child(odd) td{
	background: #f5f5f5;
}
#information ul{
	margin-top: 80px;
	width: 100%;
	text-align: center;
}
#information ul li{
	display: inline-block;
	margin: 0 30px;
}



/* shopindex
---------------------------------------------------------------------------*/
#shopindex .shopselect ul{
	width: 100%;
	text-align: center;
	background: #2EADB6;
	margin-bottom: 80px;
	box-sizing: border-box;
	padding: 15px 0;
}
#shopindex .shopselect ul li{
	display: inline;
	position: relative;
	font-size: 0.7rem;
	color: white;
}
#shopindex .shopselect ul li a{
	font-size: 0.7rem;
	color: white;
	padding: 0 15px;
	display: inline-block;
	text-decoration: none;
}
#shopindex .shopselect ul li span{
	padding: 15px;
}
#shopindex .shopselect ul li a:hover:after{
	content: "";
	position: absolute;
	right: 0;
	bottom: -36px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #2EADB6 transparent transparent transparent;
	border-width: 5px;
}
#shopindex .shopselect.only-sp{
	background: #2EADB6;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 40px;
	font-size: 70%;
	color: white;
}
#shopindex .shopindex ul{
	width: 100%;
	float: left;
}
#shopindex .shopindex ul li{
	width: 24%;
	float: left;
	background: white;
	box-sizing: border-box;
	border: 1px solid #ccc;
	min-height: 240px;
	margin: 0.5%;
}
#shopindex .shopindex ul li:hover{
	-webkit-box-shadow: 0px 0px 0px 4px #2EADB6 inset;
	box-shadow: 0px 0px 0px 4px #2EADB6 inset;
	transition: .3s;
}
#shopindex .shopindex ul li a{
	padding: 30px 0px;
	text-align: center;
	text-decoration: none;
	font-size: 0.8rem;
	color: #333;
	display: block;
	line-height: 1rem;
}
#shopindex .shopindex ul li .logo img{
	max-height: 80px;
}
#shopindex .shopindex ul li a .shopname{
	margin: 10px 0 40px 0;
	font-size: 110%;
}
#shopindex .shopindex ul li a .category{
	font-size: 90%;
}
#shopindex .shopindex ul li a .floor{
	font-size: 90%;
}
@media only screen and (max-width: 767px){
	#shopindex .shopindex ul li{
		width: 48%;
		margin: 1%;
	}
	#shopindex .shopindex ul li a .shopname{
		font-size: 0.75rem;
	}
}



/* shopinfo
---------------------------------------------------------------------------*/
#shopinfo{
	margin-top: 30px;
}
#shopinfo .box{
	float: left;
	width: 100%;
	margin-bottom: 3rem;
}
#shopinfo .box .photo{
	float: left;
	width: 30%;
	text-align: center;
	margin-right: 10%;
    background-color: white;
    border: 1px solid;
    padding: 20px;
	box-sizing: border-box;
}
#shopinfo .box .photo img{
	max-width: 100%;
}
#shopinfo .box .data{
	float: left;
	width: 60%;
}
#shopinfo .shop-data p.shopcategory{
	font-size: 0.7rem;
	margin-bottom: 2rem;
}
#shopinfo .shop-data p.shopcategory span.floor{
	background-color: #2EADB6;
	margin-right: 10px;
	padding: 2px 15px;
	color: white;
}
#shopinfo .shop-data p.shopname{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 2rem;
}
#shopinfo .social{
	margin-top: 1rem;
}
#shopinfo .social .phone{
	color: #2EADB6;
}
#shopinfo .social .phone a{
	text-decoration: none;
	color: #2EADB6;
	font-size: 0.8rem;
}
#shopinfo .social ul{
	float: left;
}
#shopinfo .social ul li{
	float: left;
	margin-right: 1rem;
}
#shopinfo .social ul li a{
	font-size: 0.8rem;
    text-decoration: none;
	color: #2EADB6;
}
#shopinfo .social {
	font-size: 0.8rem;
}
#shopinfo .shop-data .box{
	margin-top: 3rem;
}
#shopinfo .shop-data .box{
	border-bottom: 1px solid #2EADB6;
	padding-bottom: 3rem;
}
#shopinfo .shop-information .box,
#shopinfo .shop-news .box{
	border-bottom: 1px solid;
	padding-bottom: 3rem;
}
#shopinfo .shop-information .box:last-child{
	border-bottom: 1px solid #2EADB6;
}
#shopinfo .box p.title{
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 2rem;
}
#shopinfo .box p.title span.new{
	color: white;
	background-color: red;
	font-size: 0.7rem;
	padding: 0px 10px;
	margin-right: 10px;
	
}
#shopinfo .box .text{
	margin-bottom: 2rem;
	font-size: 0.8rem;
}
#shopinfo .box p.update{
	font-size: 0.7rem;
	text-align: right;
}
#shopinfo h2{
	margin-top: 0;
}
#shopinfo .shop-news .box:last-child{
	margin-bottom: 0;
}

@media only screen and (max-width: 767px){
	#shopinfo .shop-data .box{
		margin-top: 0;
		padding-bottom: 3rem;
	}
	#shopinfo .box .photo,
	#shopinfo .box .data{
		float: none;
		width: 100%;
		margin-right: 0;
	}
	#shopinfo .box .photo{
		margin-bottom: 2rem;
	}
	#shopinfo .box p.shopname,
	#shopinfo .box p.title{
		font-size: 1rem;
	}
}





/* floorguide
---------------------------------------------------------------------------*/
#floorguide .floor_box{
	margin-bottom: 50px;
}
#floorguide .guide_box{
	box-sizing: border-box;
	padding: 10px;
	background: #2EADB6;
	margin-bottom: 30px;
	color: white;
}
#floorguide .guide_box h3{
	font-size: 1.3rem;
	font-weight: normal;
	text-align: center;
}
#floorguide .guide_box h3 span{
	font-size: 0.8rem;
	margin-left: 2px;
}
#floorguide .shop_box{
	margin-bottom: 10px;
	width: 100%;
}
#floorguide ul.shop_box{
	float: left;
}
#floorguide ul.shop_box li{
	float: left;
	width: 32%;
	margin-right: 2%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	background: white;
	margin-bottom: 2%;
}
#floorguide ul.shop_box li a{
	display: flex;
	padding: 10px;
	align-items: center;
	text-decoration: none;
}
#floorguide ul.shop_box li a .shopname{
	color: #333;
	font-size: 100%;
}
#floorguide ul.shop_box li a .shopcategory{
	font-size: 0.7rem;
	color: #333;
}
#floorguide ul.shop_box li a .phone{
	color: #333;
	font-size: 0.7rem;
}
#floorguide ul.shop_box li a .logo{
	width: 120px;
	padding: 20px;
	box-sizing: border-box;
}
#floorguide ul.shop_box li a .logo img{
	width: 100%;
	max-height: 64px;
}
#floorguide ul.shop_box li a .data{
	flex: 1;
}
#floorguide ul.shop_box li:nth-child(3n){
	margin-right: 0;
}
#floorguide ul.shop_box li:hover{
	-webkit-box-shadow: 0px 0px 0px 4px #2EADB6 inset;
	box-shadow: 0px 0px 0px 4px #2EADB6 inset;
	transition: .3s;
}
#floorguide ul.shop_box.floor3 li,
#floorguide ul.shop_box.floor4 li,
#floorguide ul.shop_box.floor31 li{
	width: 100%;
	margin-right: 0;
}
@media only screen and (max-width: 767px){
	#floorguide ul.shop_box li{
		width: 100%;
		margin-right: 0;
	}
}



/* access
---------------------------------------------------------------------------*/
#access table{
	width: 100%;
	margin-top: 50px;
	background-color: white;
}
#access table th{
	text-align: center;
	font-size: 0.7rem;
	padding: 10px;
	background: #f5f5f5;
	border-bottom: 1px solid #ffffff;
}
#access table td{
	font-size: 0.8rem;
	padding: 10px;
	border-bottom: 1px solid #f5f5f5;
}
#access ul.information{
	width: 100%;
	text-align: center;
}
#access ul.information li{
	float: left;
}
#access ul.information li:first-child{
	width: 30%;
	text-align: left;
}
#access ul.information li:first-child img{
	border: 10px solid white;
	box-sizing: border-box;
	width: 80%;
}
#access ul.information li:last-child{
	width: 70%;
	text-align: left;
}
#access ul.information li:last-child div{
	padding: 2px 0;
	font-size: 1rem;
	font-weight: bold;
}
#access ul.information dl{
	font-size: 0.9rem;
}
#access ul.information dl dt{
	border-bottom: 1px solid #ccc;
	margin-top: 20px;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
#access ul.information dl dd{
	font-size: 0.8rem;
}
#access ul.information.parking-service span{
	font-size: 1.1rem;
	font-weight: bold;
}
#access ul.information.parking dl span{
	display: inline-block;
	font-size: 0.7rem;
	margin-left: 1rem;
}
#access ul.information li div.box{
	width: 80%;
	background: white;
	padding: 70px 0;
	font-weight: bold;
	border: 2px solid #2EADB6;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.8rem;
	box-sizing: border-box;
}
#access ul.information li div.box span{
	font-size: 0.8rem;
}
#access ul.information.parking-service li:last-child div span{
	font-size: 1.2rem;
	font-weight:bold;
}
#access .notice{
	width: 100%;
	margin-top: 50px;
	font-size: 0.8rem;
	border: 1px solid #ccc;
	padding: 30px;
	box-sizing: border-box;
	background-color: white;
}
#access .notice .title{
	font-weight: bold;
	border-bottom: 2px dotted #ccc;
	font-size: 0.9rem;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
#access .notice .small{
	margin-top: 10px;
	font-size: 90%;
}
#access .notice .b1f{
	margin-top: 1rem;
}
#access ul.information.bicycle li:last-child{
	width: 100%;
}
#access a.tel{
	color: #333;
	text-decoration: none;
}



/* termsofuse
---------------------------------------------------------------------------*/
#termsofuse h3{
	text-align: center;
	margin-bottom: 3rem;
}
#termsofuse .inner-block dl{
	margin-top: 2rem;
}
#termsofuse .inner-block dl dt{
	font-weight: bold;
	margin-bottom: 0.6rem;
}
#termsofuse .inner-block dl dd{
	margin-bottom: 1.2rem;
}






/* leasing
---------------------------------------------------------------------------*/
#leasing h3{
	text-align: center;
	margin-bottom: 3rem;
}
#leasing .photos{
	float: left;
	margin: 2rem 0;
}
#leasing .photos li{
	float: left;
	margin-right: 2%;
	width: 32%;
	overflow: hidden;
}
#leasing .photos li:last-child{
	margin-right: 0;
}
#leasing .photos li img{
	height: 190px;
}
#leasing .company{
	margin-top: 60px;
}
#leasing .company table{
	margin-top: 20px;
}
#leasing .company table th{
	font-weight: bold;
	width: 150px;
	text-align: left;
}
#leasing .company table td{
}
#leasing p.btn{
	margin: 2rem 0;
	text-align: center;
}
#leasing p.btn a{
	color: white;
	background-color: #00B050;
	padding: 0.5rem 2rem;
	border-radius: 5px;
	text-decoration: none;
}
@media only screen and (max-width: 767px){
	#leasing .photos li img{
		height: 100px;
	}
	#leasing .company table th,
	#leasing .company table td{
		float: left;
		width: 100%;
	}
}





/* visit
---------------------------------------------------------------------------*/
#visit h3{
	text-align: center;
}
#visit .hour1, #visit .hour2{
	width: 900px;
	margin: 30px auto 60px auto;
	padding: 20px 90px;
	border: 3px solid #2EADB6;
	box-sizing: border-box;
}
#visit .hour1 dt{
	float: left;
	background: #2EADB6;
	color: white;
	width: 80px;
	text-align: center;
	margin-right: 2rem;
	font-size: 0.9rem;
}
#visit .hour1 dd{
	margin: 20px 0;
	font-size: 1.4rem;
}
#visit .hour1 dd span{
	font-size: 0.9rem;
	margin-left: 20px;
}
#visit .hour2 dl{
	clear: both;
	margin-bottom: 20px;
}
#visit .hour2 dt{
	float: left;
}
#visit .hour2 dd{
	float: left;
}
#visit .hour2 dt span{
	background: #2EADB6;
	color: white;
	width: 80px;
	text-align: center;
	display: inline-block;
	margin-right: 20px;
	font-size: 0.8rem;
}
#visit .hour2 .shopname{
	display: inline-block;
	width: 200px;
	font-size: 0.8rem;
}
@media only screen and (max-width: 767px){
	#visit .hour1, #visit .hour2{
		width: 100%;
		padding: 10px;
	}
	#visit .hour1 dt{
		float: none;
		width: 100%;
	}
	#visit .hour1 dd{
		font-size: 1.2rem;
		text-align: center;
	}
	#visit .hour1 dd span{
		display: inline-block;
		margin-left: 0;
	}
	#visit .hour2 .shopname{
		width: auto;
	}
	#visit .hour2 dl{
		margin-top: 20px;
	}
	#visit .hour2 dd{
		display: inline-block;
		width: 100%;
		padding-left: 100px;
		border-bottom: 1px dotted;
		padding-bottom: 1rem;
		margin: 0;
		box-sizing: border-box;
		font-size: 80%;
	}
	#visit .hour2 dl:last-child dd{
		border-bottom: 0;
	}
	#visit .hour2 dt span{
		position: relative;
		top: 12px;
	}

}



/* policy
---------------------------------------------------------------------------*/
#policy h3{
	text-align: center;
	margin-bottom: 3rem;
}
#policy .inner-block ol{
	margin-top: 2rem;
}
#policy .inner-block ol li{
	margin-left: 1.2rem;
	padding-left: 0.8rem;
	margin-bottom: 0.8rem;
}
#policy .inner-block .sign{
	margin-top: 2rem;
	text-align: right;
}





/* aernews
---------------------------------------------------------------------------*/
#aernews-index .news-box{
	margin-left: 2px;
	border: 1px solid #ccc;
	padding: 40px;
	box-sizing: border-box;
	margin-bottom: 50px;
	text-align: center;
	background: white;
}
#aernews-index .news-box h3{
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #2EADB6;
	padding-bottom: 1rem;
}
#aernews-index .news-box .news-box-contents{
	margin: 0 10%;
}
#aernews-index .news-box .image{
	margin-bottom: 30px;
}
#aernews-index .news-box .image img{
	width: 100%;
}
#aernews-index .news-box .data{
	font-size: 0.8rem;
	text-align: left;
}
#aernews-index .news-box .data .update_date{
	text-align: right;
	font-size: 0.7rem;
}
#aernews-index .news-box h3 span.new{
	color: white;
	background-color: red;
	font-size: 0.7rem;
	padding: 0px 10px;
	margin-right: 10px;
}
@media only screen and (max-width:767px){
	#aernews-index .news-box .data{
		margin-left: 0;
		width: 100%;
	}
	#aernews-index .news-box .image img{
		width: 100%;
	}
	#aernews-index .news-box{
		padding: 20px;
	}
	#aernews-index .news-box h3{
		font-size: 1rem;
		text-align: left;
	}
	#aernews-index .news-box .news-box-contents{
		margin: 0;
	}
}





/* recruit
---------------------------------------------------------------------------*/
#recruit h3{
	text-align: center;
	margin-bottom: 3rem;
}
#recruit .inner-block{
	margin-bottom: 50px;
}
#recruit .inner-block:last-child{
	margin-bottom: 0;
}
#recruit .job .title{
	border-bottom: 1px solid black;
	padding: 1rem 0;
	margin-bottom: 1rem;
}
#recruit .job .title i{
	margin-right: 5px;
}
#recruit .job table{
	width: 100%;
	border-spacing: 0;
}
#recruit .job table th{
	color: white;
	font-weight: normal;
	text-align: left;
	padding: 0 10px;
	box-sizing: border-box;
	width: 120px;
	background: #2EADB6;
	border-bottom: 1px solid white;
}
#recruit .job table td{
	box-sizing: border-box;
	padding: 1rem;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}
#recruit .job table tr:nth-child(1) td{
	border-top: 1px solid #ccc;
}
@media only screen and (max-width: 767px){
	#recruit .job table th,
	#recruit .job table td{
		float: left;
		width: 100%;
		border: 0;
	}
	#recruit .job table tr:nth-child(1) td{
		border: 0;
	}
	#recruit .job table td{
		padding: 0 10px;
		margin: 0.5rem 0;
	}
	main #contents.subpage #recruit .inner-block{
		padding: 1rem;
	}
}






/* subpage
---------------------------------------------------------------------------*/
.subpage h2{
	margin-top: 60px;
}
.subpage #main:after{
	height: 70%;
}


/* footer
---------------------------------------------------------------------------*/
footer {
	width:100%;
	clear: both;
	text-align: left;
	line-height:1.5em;
	font-size:0.85em;
	margin-top: 200px;
	position: relative;
	z-index: 1;
}
#footer-banner{
	padding: 30px 0;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
	background: #2EADB6;
}
#footer-banner ul{
	display: flex;
	align-items: center;
	justify-content: center;
}
#footer-banner ul li{
	margin: 0 20px;
}
#footer-inner {
	width: 100%;
	max-width: 1100px;
	margin:0 auto;
}
#footer-box {
	width: 100%;
	float: left;
	padding: 3rem 0;
}
#footer-logo{
	box-sizing: border-box;
	clear:both;
	font-size: 0.7rem;
	line-height: 1.5em;
	padding: 0 3rem;
	text-align: center;
	margin-top: 20px;
}
#footer-logo img{
	width: 80px;
	margin-bottom: 10px;
}
footer #sitemap {
	box-sizing: border-box;
}
footer #sitemap a{
	color: #333;
}
footer #sitemap ul{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
footer #sitemap ul li{
	float: left;
	margin-bottom: 0.5rem;
	margin-right: 2rem;
	font-size: 0.7rem;
}
footer #sitemap i{
	color: #2EADB6;
}
footer .copy {
	clear:both;
	width:100%;
	text-align: center;
	display:block;
	font-size: 0.6rem;
	padding:0.5rem 0;
	background-color: black;
	color: white;
}



/* topback
---------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 0px;
	right: 50px;
	margin:0;
	z-index:100;
	display:none;
}
#page-top a {
	text-decoration: none;
	color: #2EADB6;
	text-align: center;
	display: block;
	margin:0;
	font-size: 250%;
}
#page-top a:hover {
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}


/* navi
---------------------------------------------------------------------------*/
@media print, screen  and (min-width: 768px){
	nav ul#index{
		display:block !important;
	}
	a#menu{display:none;}
}



/*===============================================
 狭いブラウザとタブレット向け
===============================================*/
@media (max-width: 1000px) and (min-width: 768px) {

	html, body{
		min-width: 100%;
	}
	#header,
	section .section-inner,
	#footer-inner{
		width: 96%;
	}
	#header #information{
		font-size: 8px;
		width: 80%;
		line-height: 1rem;
		padding: 0 5px;
	}
	#header nav ul#index li{
		margin-left: 5px;
		font-size: 11px;
	}
	#visit .hour1, #visit .hour2{
		width: 100%;
	}
	footer #sitemap ul li{
		margin-right: 0.5rem;
	}
	#floorguide ul.shop_box li a .shopname{
		font-size: 0.8rem;
	}
	#floorguide ul.shop_box li a .logo{
		width: 100px;
	}
}




/*===============================================
 スマホ：画面の横幅が767pxまで
===============================================*/
@media only screen and (max-width:767px){

	
	/*common 
	---------------------------------------------------------------------------*/
	html,body{ 
		width:100%; 
		min-width: 300px;
	}
	body{ 
		width:100%; 
		overflow-x:hidden;
	}
	h2 {
		font-size: 1.3em;
	}
	.only-sp{
		display: block !important;;
	}
	.only-pc{
		display: none !important;;
	}
	#main{
		width:100%;
		float:none;
		clear:both;
		padding-bottom: 0;
	}
	#container{
		width:100%;
		float:none;
		clear:both;
		top: 70px;
	}
	#contents{
		float:none;
		clear:both;
		margin:0px;
	}
	

	
	/* header
	---------------------------------------------------------------------------*/
	header{
		height: 70px;
	}
	#header{
		width:100%;
		padding-bottom:0px;
		z-index:0;
		clear:both;
		margin:0;
	}
	#header #logo h1{
		top: 15px;
	}
	#header nav{
		width: 100%;
		top: 15px;
	}
	#header nav ul#index{
		position: relative;
		top: 2px;
	}
	#header nav ul#index li{
		display:block;
		margin-left: 0;
		font-weight: normal;
		padding: 0;
		width: 100%;
	}
	#header nav ul#index li:first-child{
		border: none;
	}
	#header #logo{
		margin-left: 20px;
		top: 10px;
	}
	#header #logo h1 img {
		width: 60px;
	}


	/* navigation
	---------------------------------------------------------------------------*/
	nav.sp-menu{
		position: absolute;
		width: 100%;
		top: 72px;
		left: 100%;
		z-index: 1;
		padding: 0;
		background-color: white;
		-webkit-box-shadow: 0 5px 5px rgb(0 0 0 / 15%);
		box-shadow: 0 5px 5px rgb(0 0 0 / 15%);
		-webkit-backface-visibility: hidden;
		-webkit-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		/*background-color: #00326F;*/
		/*background-color: rgba( 0, 0, 0, 0.7 );*/
	}
	nav.sp-menu.is-displayed {
		left: 0;
		-webkit-backface-visibility: hidden;
		-webkit-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
	}

	nav.sp-menu ul.icon-index{
		float: left;
		margin: 10px;
	}
	nav.sp-menu ul.icon-index li{
		width: 32%;
		float: left;
		text-align: center;
		margin-right: 1%;
	}
	nav.sp-menu ul.icon-index li:nth-child(3n){
		margin-right: 0
	}
	nav.sp-menu ul.icon-index li img{
		width: 24px;
	}
	nav.sp-menu ul.icon-index li a{
		color: #333;
		display:block;
		padding: 8px 0;
		text-decoration: none;
		font-size: 0.6rem;
	}
	nav.sp-menu .information{
		border-top: 1px solid #ccc;
		font-size: 0.7rem;
		margin-bottom: 1rem;
		box-sizing: border-box;
		border-bottom: 1px solid #ccc;
		padding-bottom: 1rem;
		text-align: center;
	}
	nav.sp-menu .information .title{
		text-align: center;
		display: inline-block;
		background: #2EADB6;
		color: white;
		padding: 0 30px;
		margin: 1rem 0;
	}
	nav.sp-menu .information .floor{
		float: left;
		margin-left: 30px;
		text-align: left;
		box-sizing: border-box;
	}
	nav.sp-menu .information span{
		border: 1px solid #2EADB6;
		width: 60px;
		display: inline-block;
		margin-bottom: 10px;
		text-align: center;
		margin-right: 5px;
	}
	nav.sp-menu .page-index{
		float: left;
		border-bottom: 1px solid #ccc;
		padding-bottom: 1rem;
	}
	nav.sp-menu .page-index li{
		float: left;
		width: 50%;
	}
	nav.sp-menu .page-index li a{
		color: #333;
		display:block;
		padding: 2px 0 2px 30px;
		text-decoration: none;
		font-size: 0.7rem;
		box-sizing: border-box;
	}


	
	/* main
	---------------------------------------------------------------------------*/
	main{
		top: 70px;
	}

	/* slider
	---------------------------------------------------------------------------*/
	#slider{
		top: 70px;
	}
	.slick-box img{
		width: 320px;
	}


	/* information
	---------------------------------------------------------------------------*/
	#information table th,
	#information table td{
		font-size: 0.7rem;
		text-align: left;
	}

	/* subpage
	---------------------------------------------------------------------------*/
	.subpage h2 {
		margin-top: 30px;
	}

	/* shopindex
	---------------------------------------------------------------------------*/
	.shopindex ul li{
		width: 49%;
		box-sizing: border-box;
		border: 1px solid #ccc;
		min-height: 230px;
		margin: 0.5%
	}
	.shopindex ul li a .category{
		font-size: 70%;
	}
	.shopindex ul li a .shopname{
		margin-bottom: 20px;
		font-size: 100%;
	}


	/* access
	---------------------------------------------------------------------------*/
	#access ul.information li:first-child{
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}
	#access ul.information li:last-child{
		width: 100%;
		text-align: center;
	}
	#access #access-table th, #access #access-table td{
		float: left;
		width: 100%;
		box-sizing: border-box;
	}

	/* section
	---------------------------------------------------------------------------*/
	section{
		width: 100%;
		margin-top: 1rem;
		margin-bottom: 1rem;
		padding: 0;
	}
	section .section-inner{
		width: 90%;
		padding: 0;
	}
	#access ul.information li div.box{
		width: 100%;
		padding: 30px 0;
	}


	/* topback
	---------------------------------------------------------------------------*/
	#page-top {
		position: fixed;
		bottom:0;
		right: 10px;
		margin:0;
		z-index:100;
	}
	#page-top a {
		text-decoration: none;
		text-align: center;
		display: block;
		margin:0;
	}
	#page-top img {
		width: 40px;
	}



	/*footer
	---------------------------------------------------------------------------*/
	footer{
		width:100%; 
		font-size:80%;
		display:inline-block;
		clear:both;
		margin-top:140px;
	}

	#footer-banner ul{
		flex-wrap: wrap;
	}
	#footer-banner ul li{
		padding: 0;
		box-sizing: border-box;
		margin: 0 10px;
	}
	#footer-banner ul li img{
		width: 100%;
	}

	#footer-inner{
		width: 100%;
	}
	footer #sitemap{
		float: none;
		width: 100%;
		padding-left: 0;
	}
	footer #sitemap ul{
		width: 50%;
	    float: left;
	}
	footer #sitemap ul li{
		width: 100%;
		padding-left: 20px;
		box-sizing: border-box;
	}



	.shopnews-index ul li{
		width: 100%;
		margin-right: 0;
	}
	#aernews ul li{
		width: 100%;
	}

	/*各ページ調整用
	---------------------------------------------------------------------------*/
	/* 下層ページ共通 */
	.subpage .pagename h2{
		padding: 2rem 0;
	}
	h2::after{
		margin-top: 2rem;
	}

}



/*印刷調整
---------------------------------------------------------------------------*/
@media print {
	header{
		position: absolute;
	}
	#slider{
		background: url(images/icatch01.jpg) no-repeat center center;
		height: 400px;
	}
	.slick-box{
		display:none;
	}
	#page-top{
		display:none;
	}
}

/* ホバーアニメーション（下線） */
/* https://www.nxworld.net/css-hover-underline-animation-examples-and-sass-mixin.html*/

.underline a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.underline a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #2EADB6;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.underline a:hover::after {
  transform: scale(1, 1);
}

