@charset "utf-8";

/*==================================================================
基本設定
===================================================================*/
.spNone {
	display: block;
}

.pcNone {
	display: none;
}

@media (max-width: 480px) {
	footer .foot-link.spNone {
		display: none;
	}

	.pcNone {
		display: flex;
		flex-direction: column;

		>a:first-child {
			margin-bottom: 3rem;
		}
	}
}


.wf-notosansjapanese {
	font-family: "Noto Sans JP";
}

html {
	font-size: 62.5%;
}

body {
	width: 100%;
	background: #fff;
	color: #000;
	letter-spacing: 0.1rem;
	font-family: "Noto Sans JP", sans-serif;
}

a,
a img {
	outline: none;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	color: #000;
}

a:hover,
a img:hover {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
	color: #000;
	outline: none;
	text-decoration: none;
}

p {
	line-height: 1.8;
	font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}
}

#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 998;
}

#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 240px;
	height: 240px;
	margin-top: -120px;
	margin-left: -120px;
	text-align: center;
	z-index: 999;
}

/* Component
----------------------------------------------------------------- */
.c-box--1 {
	border: 2px solid #ddd;
	padding: 1rem 1.5rem;
}

dt.c-list--1__item {
	border-bottom: 3px solid #ddd;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

dt.c-list--1__item::before {
	content: "■";
	color: #2e4fb5;
	padding-right: 0.5rem;
}

/*==================================================================
header
===================================================================*/

header {
	position: relative;
	z-index: 1;
}

/* logo */
.head {
	background-color: #2e4fb5;
	width: 100%;
}

.logo-area {
	max-width: 1000px;
	margin: 0 auto;
	padding: 1rem 0 1.5rem;
}

#top-head .logo {
	width: 375px;
	text-align: left;
	margin: 0;
	padding: 0;
	line-height: 1;
}

/* nav */
#top-head .inner {
	width: 100%;
	margin: 0 auto;
}

#top-head .inner:after {
	content: "";
	clear: both;
	display: block;
}

#global-nav {
	width: auto;
	background-color: #fff;
	box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.1);
}

#global-nav>ul {
	display: flex;
	justify-content: center;
	max-width: 1000px;
	width: 100%;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

@media screen and (max-width: 768px) {
	#global-nav>ul {
		flex-direction: column;
	}
}

#global-nav>ul::after {
	content: "";
	display: block;
	clear: both;
}

#global-nav>ul>li {
	width: 16.66%;
	float: left;
	position: relative;
	border-right: 1px solid #bbb;
	padding: 0;
	margin: 0;
}

#global-nav>ul>li:first-child {
	border-left: 1px solid #bbb;
}

#global-nav>ul>li>a {
	display: block;
	font-size: 1.6rem;
	padding: 1.5rem 0 3rem;
	text-align: center;
	outline: none;
	text-decoration: none;
}

#global-nav>ul>li>a:hover {
	outline: none;
	text-decoration: none;
}

#global-nav .sub-menu {
	position: absolute;
	top: 80%;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 2;
	padding: 0.5rem 2rem;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

#global-nav>ul>li:hover .sub-menu {
	top: 100%;
	visibility: visible;
	opacity: 1;
}

.sub-menu li {
	width: 100%;
	margin: 0.8rem 0;
	list-style-type: none;
	padding: 0;
	text-align: left;
}

.sub-menu li a {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
}

.nav-blue {
	border-bottom: 2px solid #2e4fb5;
	padding-bottom: 1rem;
}

.nav-sky {
	border-bottom: 2px solid #0dadea;
	padding-bottom: 1rem;
}

.nav-orange {
	border-bottom: 2px solid #f68a43;
	padding-bottom: 1rem;
}

.nav-green {
	border-bottom: 2px solid #43b77c;
	padding-bottom: 1rem;
}

.sub-blue li a:before {
	content: "\f105";
	font-family: FontAwesome;
	padding-right: 0.3rem;
	color: #2e4fb5;
}

.sub-sky li a:before {
	content: "\f105";
	font-family: FontAwesome;
	padding-right: 0.3rem;
	color: #0dadea;
}

.sub-orange li a:before {
	content: "\f105";
	font-family: FontAwesome;
	padding-right: 0.3rem;
	color: #f68a43;
}

.sub-green li a:before {
	content: "\f105";
	font-family: FontAwesome;
	padding-right: 0.3rem;
	color: #43b77c;
}

/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 10px;
	height: 80px;
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	-moz-transition: top 0.65s ease-in;
}

/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}

#nav-toggle div {
	position: relative;
}

#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	left: 0;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
	top: 0;
}

#nav-toggle span:nth-child(2) {
	top: 11px;
}

#nav-toggle span:nth-child(3) {
	top: 22px;
}

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

	#top-head,
	#top-head .inner {
		width: 100%;
		padding: 0;
	}

	#top-head {
		top: 0;
		margin-top: 0;
	}

	/* Fixed reset */
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}

	#mobile-head {
		background: #2e4fb5;
		width: 100%;
		height: 54px;
		z-index: 10;
		position: relative;
	}

	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left: 10px;
		top: 16px;
		width: 280px;
	}

	#top-head.fixed .logo img,
	#top-head .logo img {
		width: 100%;
		height: auto;
	}

	#nav-toggle {
		display: block;
	}

	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}

	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}

	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}

	.open #global-nav {
		/* #global-nav top + #mobile-head height */
		-moz-transform: translateY(556px);
		-webkit-transform: translateY(556px);
		transform: translateY(556px);
	}

	#global-nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -502px;
		background: #fff;
		width: 100%;
		text-align: center;
		padding: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
		z-index: 1;
	}

	#global-nav ul {
		max-width: 100%;
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		padding: 0;
		margin: 0;
		border-left: none;
	}

	#global-nav ul li {
		float: none;
		position: static;
		width: auto;
		border-right: none;
	}

	#top-head #global-nav>ul>li>a,
	#top-head.fixed #global-nav>ul>li>a {
		width: 100%;
		display: block;
		font-size: 1.6rem;
		padding: 0;
		text-align: left;
		background: #fff;
		outline: none;
		text-decoration: none;
	}

	#global-nav .sub-menu {
		position: static;
		top: 80%;
		left: 0;
		width: 100%;
		background-color: rgba(255, 255, 255, 0.9);
		z-index: 2;
		padding: 0;
		opacity: 1;
		visibility: visible;
		transition: 0.3s;
		display: none;
	}

	.open #global-nav .sub-menu {
		display: block;
	}

	#global-nav>ul>li:hover .sub-menu {
		display: block;
	}

	.sub-menu li {
		width: 100%;
		margin: 0.8rem 0;
		list-style-type: none;
		padding: 0;
		text-align: left;
		top: 100%;
		visibility: visible;
		opacity: 1;
	}

	.sub-menu li a {
		display: block;
		margin: 0;
		padding: 0 1.5rem;
		font-size: 1.4rem;
	}

	.nav-blue {
		width: 100%;
		display: block;
		border-bottom: 2px solid #2e4fb5;
		background-color: #d5dcf0;
		padding-bottom: 0.5rem;
		padding-left: 1.5rem;
		padding-top: 0.5rem;
	}

	.nav-sky {
		width: 100%;
		display: block;
		border-bottom: 2px solid #0dadea;
		background-color: #d5dcf0;
		padding-bottom: 0.5rem;
		padding-left: 1.5rem;
		padding-top: 0.5rem;
	}

	.nav-orange {
		width: 100%;
		display: block;
		border-bottom: 2px solid #f68a43;
		background-color: #fde8d9;
		padding-bottom: 0.5rem;
		padding-left: 1.5rem;
		padding-top: 0.5rem;
	}

	.nav-green {
		width: 100%;
		display: block;
		border-bottom: 2px solid #43b77c;
		background-color: #d9f1e5;
		padding-bottom: 0.5rem;
		padding-left: 1.5rem;
		padding-top: 0.5rem;
	}

	.sub-blue li a:before {
		content: "\f105";
		font-family: FontAwesome;
		padding-right: 0.3rem;
		color: #2e4fb5;
	}

	.sub-sky li a:before {
		content: "\f105";
		font-family: FontAwesome;
		padding-right: 0.3rem;
		color: #0dadea;
	}

	.sub-orange li a:before {
		content: "\f105";
		font-family: FontAwesome;
		padding-right: 0.3rem;
		color: #f68a43;
	}

	.sub-green li a:before {
		content: "\f105";
		font-family: FontAwesome;
		padding-right: 0.3rem;
		color: #43b77c;
	}
}

/*==================================================================
mv
===================================================================*/
#mv {
	margin: 0 0 5rem;
	padding: 0;
}

.slide {
	width: 100%;
	height: 0;
	padding-top: 36%;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
	background-image: url(/wp-content/themes/omsv/img/slide01.jpg);
}

.slide {
	background-position: center top\9;
	background-repeat: repeat-x\9;
}

*+html .slide {
	background-position: center top;
	background-repeat: repeat-x;
}

@media screen and (max-width: 768px) {
	#mv {
		width: 100%;
		margin: 0 0 3rem;
	}

	.slide {
		width: 100%;
		height: 300px;
		padding-top: 0%;
		background-size: cover;
		background-position: center center;
		position: relative;
	}
}

/*==================================================================
コンテンツ基本設定
===================================================================*/

@media (min-width: 1200px) {
	.container {
		max-width: 1000px;
	}
}

/* ぱんくず */
.bread {
	background-color: #f3f3f3;
	padding: 1.5rem 0;
	font-size: 1.3rem;
}

.bread>.row>span {
	padding-right: 0.5rem;
}

/* 下層 メインタイトル */
.main-ttl-area {
	padding: 5rem 0;
}

.main-ttl h2 {
	font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
	font-size: 4rem;
	text-align: center;
	border-bottom: 4px solid #2e4fb5;
	display: inline-block;
	margin: 0 auto 4rem;
	padding-bottom: 2rem;
}

.main-ttl h2 span {
	font-size: 1.4rem;
	margin: 0.5rem 0 0;
	display: block;
}

/* 求人案内/個人情報の取り扱いに関する基本方針 メインタイトル */
#recruit .main-ttl h2,
#privacy .main-ttl h2 {
	border-bottom: 4px solid #0dadea;
}

/* ビル案内 メインタイトル */
#building .main-ttl h2,
#availability .main-ttl h2 {
	border-bottom: 4px solid #43b77c;
}

/* 広告案内 メインタイトル */
#advertisement .main-ttl h2,
#station .main-ttl h2,
#train .main-ttl h2,
#download .main-ttl h2 {
	border-bottom: 4px solid #f68a43;
}

/* 下層 小タイトル */
.sub-ttl {
	text-align: center;
	font-size: 2.4rem;
	padding: 0 0 1.2rem;
	margin: 0 0 3rem;
	border-bottom: 3px solid #2e4fb5;
}

/* ビル案内 小タイトル */
#building .sub-ttl,
#availability .sub-ttl {
	border-bottom: 3px solid #43b77c;
}

/* 広告案内 小タイトル */
#advertisement .sub-ttl,
#station .sub-ttl,
#train .sub-ttl {
	border-bottom: 3px solid #f68a43;
}

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

	/* ぱんくず */
	.bread {
		background-color: #f3f3f3;
		padding: 1.2rem 1.2rem;
		font-size: 1.2rem;
	}

	/* 下層 メインタイトル */
	.main-ttl h2 {
		font-family: "Roboto Condensed", sans-serif;
		font-size: 3.2rem;
		text-align: center;
		border-bottom: 4px solid #2e4fb5;
		display: inline-block;
		margin: 0 auto 3rem;
		padding-bottom: 1.5rem;
	}

	.main-ttl h2 span {
		font-size: 1.2rem;
		margin: 0.5rem 0 0;
		display: block;
	}

	/* 下層 小タイトル */
	.sub-ttl {
		text-align: center;
		font-size: 2.2rem;
		padding: 0 0 1.2rem;
		margin: 0 0 3rem;
	}
}

/* 会社概要－概要 */
#company .main-img {
	background: url(img/company_main.jpg) no-repeat center center;
	background-size: cover;
	height: 320px;
}

/* 会社概要－企業理念 */
#philosophy .main-img {
	background: url(img/philosophy_main.jpg) no-repeat center center;
	background-size: cover;
	height: 320px;
}

/* モノレール概要 */
#monorail .main-img {
	background: url(img/monorail_main.jpg) no-repeat center center;
	background-size: cover;
	height: 320px;
}

/* 広告案内 */
#advertisement .main-img {
	background: url(img/advertisement_main.jpg) no-repeat center center;
	background-size: cover;
	background-position: 0 73%;
	height: 320px;
}

@media (max-width: 767px) {
	#advertisement .main-img {
		background-size: contain;
	}
}

/* ビル案内 */
#building .main-img {
	background: url(img/building_main.jpg) no-repeat center center;
	background-size: cover;
	height: 320px;
}

/* ビル案内－空室情報 */
#availability .main-img {
	background: url(img/availability_main.jpg) no-repeat center center;
	background-size: cover;
	height: 320px;
}

/* 求人案内 */
#recruit .main-img {
	background: url(img/recruit_main.jpg) no-repeat center center;
	background-size: cover;
	height: 320px;
}

@media screen and (max-width: 768px) {
	#recruit .main-img {
		background: url(img/recruit_main.jpg) no-repeat center center;
		background-size: contain;
		height: 220px;
	}
}

.gmap {
	margin-bottom: 3rem;
}

/*
.gmap {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
overflow: hidden;
}

.gmap iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
*/

/* ボタン */
.btn-wrap,
.btn-outside {
	text-align: center;
	margin: 0 auto;
	max-width: 36rem;
}

.btn-wrap a,
.btn-outside a {
	text-align: center;
	padding: 1.2rem 0;
	font-size: 1.6rem;
	color: #fff;
	display: block;
	background-color: #2e4fb5;
	position: relative;
}

.btn-wrap a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #fff;
	position: absolute;
	right: 1.2rem;
}

.btn-outside a:after {
	content: "\f14c";
	font-family: FontAwesome;
	color: #fff;
	position: absolute;
	right: 1.2rem;
}

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

	.btn-wrap,
	.btn-outside {
		text-align: center;
		margin: 0 auto;
		max-width: 100%;
	}

	.btn-wrap a,
	.btn-outside a {
		text-align: center;
		padding: 1.2rem 0;
		font-size: 1.6rem;
		color: #fff;
		display: block;
		background-color: #2e4fb5;
		position: relative;
	}
}

/*==================================================================
TOP
===================================================================*/

/* TOP ニュース */
.news-list {
	margin-bottom: 4rem;
}

.news-list dl {
	width: 100%;
}

.news-list dl dt {
	width: 20%;
	font-size: 1.6rem;
	display: inline-block;
	vertical-align: top;
	font-weight: normal;
}

.news-list dl span {
	color: #ffffff;
	display: inline-block;
	font-size: 1.4rem;
	text-align: center;
	border-radius: 0.3rem;
	padding: 0 1rem;
	vertical-align: top;
	margin-left: 0.5rem;
}

.news-list dl dd {
	width: 70%;
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1.6;
	vertical-align: top;
}

.news-advertisement {
	background-color: #f68a43;
}

.news-availability {
	background-color: #43b77c;
}

.news-info {
	background-color: #1e5bc6;
}

.news-recruit {
	background-color: #0dadea;
}

@media screen and (max-width: 991px) {
	.news-list dl {
		width: 100%;
	}

	.news-list dl dt {
		width: 27%;
		font-size: 1.6rem;
		display: inline-block;
		vertical-align: top;
		font-weight: normal;
	}

	.news-list dl span {
		color: #fff;
		display: inline-block;
		font-size: 1.4rem;
		text-align: center;
		border-radius: 0.3rem;
		padding: 0 1rem;
		vertical-align: top;
		margin-left: 0.5rem;
	}

	.news-list dl dd {
		width: 73%;
		display: inline-block;
		font-size: 1.6rem;
		line-height: 1.6;
		vertical-align: top;
	}
}

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

	/* TOP ニュース */
	.news-list {
		margin-bottom: 3rem;
	}

	.news-list dl {
		width: 100%;
		margin-bottom: 2rem;
	}

	.news-list dl dt {
		width: 100%;
		font-size: 1.4rem;
		display: block;
		vertical-align: top;
		font-weight: normal;
	}

	.news-list dl span {
		color: #ffffff;
		display: inline-block;
		font-size: 1.2rem;
		text-align: center;
		border-radius: 0.3rem;
		padding: 0 1rem;
		vertical-align: top;
		margin-left: 0.5rem;
	}

	.news-list dl dd {
		width: 100%;
		display: block;
		font-size: 1.4rem;
		line-height: 1.6;
		vertical-align: top;
	}
}

/* TOP メニュー一覧 */
#top-menu {
	margin-top: 3rem;
}

#top-menu dl {
	padding-top: 3rem;
}

#top-menu dl dt {
	overflow: hidden;
}

#top-menu dl dt img {
	display: block;
}

#top-menu dl dt img:hover {
	transform: scale(1.1);
}

#top-menu dl dd {
	margin-top: 1.5rem;
}

#top-menu dl dd h3 {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 3.2rem;
	font-weight: normal;
	text-align: left;
	margin: 1.5rem 0 0;
	padding: 0;
}

#top-menu dl dd p {
	font-size: 1.4rem;
	margin: 0;
	padding: 0;
}

#top-menu .col-sm-6 dl dt .hide-sp {
	display: none;
}

#top-menu .col-sm-6 dl dt .hide-pc {
	display: block;
}

/* TOP メニュー下のバナーボタン */
#top-menu-bnrbtn {
	background-color: #edf2fc;
	padding: 45px 0 0;
	max-width: 970px;
	margin: 40px auto;
}

#top-menu-bnrbtn .bnrbtn-210712 ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0;
	max-width: 740px;
	margin: 0 auto;
}

#top-menu-bnrbtn .bnrbtn-210712 ul li {
	margin: 40px;
	margin-top: 0;
	margin-left: 0;
}

#top-menu-bnrbtn .bnrbtn-210712 ul .hide-sp {
	display: none;
}

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

	/* TOP メニュー一覧 */
	#top-menu {
		margin-top: 3rem;
	}

	#top-menu dl {
		padding-top: 2rem;
	}

	#top-menu dl dd {
		margin-top: 0.5rem;
	}

	#top-menu dl dd h3 {
		font-family: "Roboto Condensed", sans-serif;
		font-size: 2.8rem;
		font-weight: normal;
		text-align: left;
		margin: 1rem 0 0;
		padding: 0;
	}

	#top-menu dl dd p {
		font-size: 1.4rem;
		margin: 0;
		padding: 0;
	}
}

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

	/* TOP メニュー下のバナーボタン */
	#top-menu-bnrbtn {
		background-color: #fff;
		padding: 32px 0 0;
		margin: 40px auto;
	}

	#top-menu-bnrbtn .bnrbtn-210712 ul {
		flex-direction: column;
	}

	#top-menu-bnrbtn .bnrbtn-210712 ul li img {
		max-width: 100%;
	}

	#top-menu-bnrbtn .bnrbtn-210712 ul li {
		margin-bottom: 20px;
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	#top-menu .col-sm-6 dl dt .hide-sp {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	#top-menu .col-sm-6 dl dt .hide-pc {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	#top-menu-bnrbtn .bnrbtn-210712 ul .hide-sp {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	#top-menu-bnrbtn .bnrbtn-210712 ul .hide-pc {
		display: none;
	}
}

/*==================================================================
ニュース詳細
===================================================================*/
.news-detail {
	padding: 2rem 0;
}

.news-detail h2 {
	font-size: 2.2rem;
	border-bottom: 3px solid #2e4fb5;
	padding-bottom: 1rem;
	margin: 0 0 2rem;
}

.news-detail p.time-ct {
	font-size: 1.4rem;
	display: inline-block;
	vertical-align: top;
	font-weight: normal;
}

.news-detail p.time-ct span {
	color: #fff;
	display: inline-block;
	font-size: 1.2rem;
	text-align: center;
	border-radius: 0.3rem;
	padding: 0 1rem;
	vertical-align: top;
	margin-left: 0.5rem;
}

@media screen and (max-width: 768px) {
	.news-detail h2 {
		font-size: 1.8rem;
		border-bottom: 3px solid #2e4fb5;
		padding-bottom: 1rem;
		margin: 0 0 2rem;
	}

	.news-detail p.time-ct {
		font-size: 1.4rem;
		display: inline-block;
		vertical-align: top;
		font-weight: normal;
	}

	.news-detail p.time-ct span {
		color: #fff;
		display: inline-block;
		font-size: 1.2rem;
		text-align: center;
		border-radius: 0.3rem;
		padding: 0 1rem;
		vertical-align: top;
		margin-left: 0.5rem;
	}
}

.news-nav {
	margin-top: 4rem;
	border-top: 3px solid #ddd;
	border-bottom: 3px solid #ddd;
	padding: 2rem 0;
}

.news-nav ul {
	margin: 0;
	padding: 0;
	display: table;
	width: 100%;
}

.news-nav ul li {
	list-style-type: none;
	font-size: 1.6rem;
}

.news-nav ul li.prev {
	width: 30%;
	display: table-cell;
	text-align: left;
}

.news-nav ul li.prev a:before {
	content: "\f137";
	font-family: FontAwesome;
	color: #2e4fb5;
	margin-right: 0.5rem;
}

.news-nav ul li.back {
	display: table-cell;
	text-align: center;
}

.news-nav ul li.next {
	width: 30%;
	display: table-cell;
	text-align: right;
}

.news-nav ul li.next a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #2e4fb5;
	margin-left: 0.5rem;
}

@media screen and (max-width: 768px) {
	.news-nav {
		margin-top: 4rem;
		border-top: 3px solid #ddd;
		border-bottom: 3px solid #ddd;
		padding: 2rem 0;
	}

	.news-nav ul {
		margin: 0;
		padding: 0;
		display: table;
		width: 100%;
		padding: 0 0;
	}

	.news-nav ul li {
		list-style-type: none;
		font-size: 1.4rem;
	}

	.news-nav ul li.prev {
		width: 30%;
		display: table-cell;
		text-align: left;
	}

	.news-nav ul li.prev a:before {
		content: "\f137";
		font-family: FontAwesome;
		color: #2e4fb5;
		margin-right: 0.5rem;
	}

	.news-nav ul li.back {
		display: table-cell;
		text-align: center;
	}

	.news-nav ul li.next {
		width: 30%;
		display: table-cell;
		text-align: right;
	}

	.news-nav ul li.next a:after {
		content: "\f138";
		font-family: FontAwesome;
		color: #2e4fb5;
		margin-left: 0.5rem;
	}
}

/*==================================================================
会社概要
===================================================================*/
#company .sec01 {
	margin-bottom: 5rem;
}

.main-txt {
	text-align: center;
}

.main-txt p {
	display: inline-block;
	margin-bottom: 5rem;
}

#company .sec02 {
	margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
	#company .sec01 p {
		margin-bottom: 3rem;
	}

	#company .sec02 p {
		margin-top: 3rem;
	}
}

#company .sec03 {
	margin-bottom: 6rem;
}

.p-company-business-list {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-company-business-list__item {
	list-style: none;
}

.p-company-business-list--1 {
	margin: 0;
	margin-bottom: 3rem;
}

.p-company-business-list--1__item {
	width: calc((100% / 5) - ((1rem * 4) / 5));
}

.p-company-business-list--2__item {
	width: 31.5%;
	width: calc((100% / 3) - ((2.5rem * 2) / 3));
}

.p-company-chart .u-dis--sp {
	display: none;
}

.p-company-chart__img {
	text-align: center;
}

.p-company-chart__img img {
	max-width: 100%;
}

.p-company-history td:first-child {
	width: 12em;
}

.p-company-history td .u-dis--sp {
	display: none;
}

@media screen and (max-width: 992px) {
	.p-company-business-list--2__item {
		width: calc((100% / 2) - ((1rem * 1) / 2));
	}
}

@media screen and (max-width: 768px) {
	.p-company-business-list--1__item {
		width: calc((100% / 2) - ((1rem * 1) / 2));
	}

	.p-company-business-list--1__item:not(:last-child) {
		margin-bottom: 1rem;
	}

	.p-company-business-list--2__item {
		width: 100%;
	}

	.p-company-business-list--2__item:nth-child(5) {
		order: 6;
	}

	.p-company-business-list--2__item:nth-child(6) {
		order: 7;
	}

	.p-company-business-list--2__item:nth-child(7) {
		order: 5;
	}

	.p-company-business-list--2__item:nth-child(8) {
		order: 8;
	}

	.p-company-business-list--2__item:nth-child(9) {
		order: 9;
	}

	.p-company-business-list--2__item:nth-child(10) {
		order: 10;
	}

	.p-company-chart .u-dis--pc {
		display: none;
	}

	.p-company-chart .u-dis--sp {
		display: block;
	}

	.p-company-history tr {
		display: flex;
		flex-wrap: wrap;
	}

	.p-company-history td {
		display: block;
	}

	.p-company-history td:nth-child(-n + 2) {
		border-top: none;
	}

	.p-company-history td:nth-child(2) {
		width: auto;
	}

	.p-company-history td:last-child {
		width: 100%;
		border-top: none;
		padding-top: 0;
	}

	.p-company-history tr:not(:last-child) td:last-child {
		border-bottom: 1px solid #ddd;
	}

	.p-company-history td .u-dis--sp {
		display: inline-block;
	}
}

#company .access h4 {
	background-color: #8295d3;
	color: #fff;
	text-align: center;
	padding: 1rem 0;
	margin: 0 0 2rem;
}

#company .access p {
	margin-top: 2rem;
}

#company .access dl {
	margin-bottom: 2rem;
}

#company .access dl dt {
	color: #2e4fb5;
	border-bottom: 3px solid #ddd;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}

/*==================================================================
企業理念
===================================================================*/
#philosophy .sec01 dl {
	width: 100%;
	margin: 0;
	border-bottom: 2px solid #ddd;
	padding: 3rem 0;
}

#philosophy .sec01>div>dl:first-child {
	border-top: 2px solid #ddd;
}

#philosophy .sec01 dt {
	width: 6%;
	font-size: 6rem;
	display: inline-block;
	font-weight: normal;
	color: #2e4fb5;
	vertical-align: middle;
	margin-right: 1.5%;
}

#philosophy .sec01 dd {
	width: 91.5%;
	font-size: 1.7rem;
	line-height: 1.8;
	display: inline-block;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	#philosophy .sec01 dl {
		width: 100%;
		margin: 0;
		border-bottom: 2px solid #ddd;
		padding: 1.5rem 0 3rem;
	}

	#philosophy .sec01 dt {
		width: 100%;
		font-size: 4.2rem;
		display: block;
		font-weight: normal;
		color: #2e4fb5;
		vertical-align: middle;
		text-align: center;
		margin: 0 0 1rem;
		padding: 0 0;
	}

	#philosophy .sec01 dt img {
		width: 5rem;
		height: auto;
	}

	#philosophy .sec01 dd {
		width: 100%;
		font-size: 1.6rem;
		line-height: 1.8;
		display: block;
		vertical-align: middle;
	}
}

/*==================================================================
モノレール概要
===================================================================*/
#monorail .sec01 p {
	margin-bottom: 5rem;
}

#monorail .root {
	margin-bottom: 4rem;
}

#monorail .pic div {
	padding: 0;
}

/*==================================================================
広告案内
===================================================================*/
#advertisement .sec01 {
	margin-bottom: 3rem;
}

#advertisement .sec02 p {
	margin-top: 2rem;
}

#advertisement .sec02 h3 {
	border-bottom: 3px solid #2e4fb5;
	font-size: 2.2rem;
	padding-bottom: 1.2rem;
	margin: 1.5rem 0;
}

#advertisement .sec02 .pic {
	overflow: hidden;
}

#advertisement .sec02 .pic img {
	display: block;
}

#advertisement .sec02 .pic_hover img:hover {
	transform: scale(1.1);
}

#advertisement .sec02 .btn-wrap_3 {
	margin-top: 3rem;
	margin-bottom: 5rem;
}

#advertisement .sec02 .btn-wrap_3 a {
	text-align: center;
	padding: 1.2rem 0;
	font-size: 1.6rem;
	color: #2e4fb5;
	border: solid 3px #2e4fb5;
	display: block;
	position: relative;
	line-height: 1.42857143;
}

#advertisement .sec02 .btn-wrap_3 a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #2e4fb5;
	position: absolute;
	right: 1.2rem;
}

#advertisement .sec02 .btn-wrap_3 {
	margin-top: 3rem;
	margin-bottom: 5rem;
}

#advertisement .sec01 .new_wrap {
	display: flex;
	margin-bottom: 32px;
}

#advertisement .sec01 .new_wrap_inner {
	flex-direction: column;
	box-sizing: border-box;
	width: 537px;
}

#advertisement .sec01 .new_wrap_inner img {
	max-width: 100%;
}

#advertisement .sec01 .media_p {
	margin-left: 45px;
}

/* ボタン */
#advertisement .sec01 .btn-wrap_2 {
	text-align: center;
	margin: left;
	max-width: 36rem;
	margin-top: 40px;
}

#advertisement .sec01 .btn-wrap_2 .hide-sp {
	display: none;
}

#advertisement .sec01 .btn-wrap_2 .hide-pc {
	display: block;
}

#advertisement .sec01 a {
	text-align: center;
	padding: 1rem 0;
	font-size: 1.6rem;
	display: block;
	color: #000;
	border: 3px solid #f68a43;
	position: relative;
	background-color: #fff;
}

#advertisement .sec01 .btn-wrap_2 a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #f68a43;
	position: absolute;
	right: 1.2rem;
}

@media screen and (max-width: 768px) {
	#advertisement .sec01 .new_wrap_inner {
		width: auto;
		text-align: center;
	}

	#advertisement .sec01 .new_wrap_inner img {
		max-width: 320px;
		width: 100%;
	}

	#advertisement .sec02 p {
		margin-top: 2rem;
		margin-bottom: 3rem;
	}

	#advertisement .sec02 .btn-wrap {
		margin-top: 0;
	}

	#advertisement .sec01 .new_wrap {
		flex-direction: column;
		margin-bottom: 0;
	}

	#advertisement .sec01 .media_p {
		margin-top: 2rem;
		margin-bottom: 3rem;
		margin-left: 0;
	}

	#advertisement .sec01 {
		margin-bottom: 0;
	}

	.btn-wrap,
	.btn-outside {
		text-align: center;
		margin: 0 auto;
		max-width: 100%;
		flex-direction: column;
	}

	/* ボタン */
	#advertisement .sec01 .btn-wrap_2 {
		max-width: none;
	}

	#advertisement .sec01 .btn-wrap_2 a {
		text-align: center;
		padding: 0.8rem 0;
		font-size: 1.6rem;
		display: block;
		color: #000;
		border: 3px solid #f68a43;
		position: relative;
		background-color: #fff;
	}
}

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

	.btn-wrap,
	.btn-outside {
		text-align: center;
		margin: 0 auto;
		max-width: 100%;
	}

	.btn-wrap a,
	.btn-outside a {
		text-align: center;
		padding: 1.2rem 0;
		font-size: 1.6rem;
		color: #fff;
		display: block;
		background-color: #2e4fb5;
		position: relative;
	}
}

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

	.btn-wrap_3,
	.btn-outside {
		text-align: center;
		margin: 0 auto;
		max-width: 100%;
	}

	.btn-wrap_3 a,
	.btn-outside a {
		text-align: center;
		padding: 1.1rem 0;
		font-size: 1.6rem;
		color: #2e4fb5;
		display: block;
		border: solid 1px #2e4fb5;
		background-color: #fff;
		position: relative;
	}
}

@media (min-width: 768px) {
	.sec01 .new_wrap img {
		max-width: 1000px;
	}
}

@media screen and (max-width: 768px) {
	#advertisement .sec01 .new_wrap_inner {
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	#advertisement .sec01 .new_wrap_inner .btn-wrap_2 .hide-sp {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	#advertisement .sec01 .new_wrap_inner .btn-wrap_2 .hide-pc {
		display: none;
	}
}

/*==================================================================
販売状況一覧
===================================================================*/
.p-status-wrap {
	max-width: 800px;
	margin: auto;
}

.status .c-list--1 {
	margin-bottom: 5rem;
}

.status dt.c-list--1__item {
	margin-bottom: 2rem;
}

/*==================================================================
駅舎広告
===================================================================*/
#station .main-ttl-area p {
	text-align: center;
}

#station .btn-wrap {
	margin-top: 3rem;
}

#station .root-map {
	border: 3px solid #ddd;
	background: #fff;
	padding: 3rem 2rem;
	margin-top: -2rem;
}

area {
	border: none;
	outline: none;
}

#station .root-map-area .map-txt {
	margin-top: 2rem;
	background: #2e4fb5;
	padding: 1rem;
	text-align: center;
	color: #fff;
}

#station .station-nav ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

#station .station-nav ul li {
	list-style-type: none;
	border: 2px solid #ddd;
	margin-top: 1rem;
}

#station .station-nav ul li {
	list-style-type: none;
}

#station .station-nav ul li a {
	padding: 1rem;
	display: block;
}

#station .station-nav ul li a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #2e4fb5;
	position: absolute;
	right: 2.5rem;
}

#station .station-nav ul li.a_sta a:before {
	content: "A";
	font-family: "Noto Sans JP";
	color: #fff;
	background: #ff5aa5;
	text-align: center;
	padding: 0 0.8rem;
	margin-right: 0.8rem;
}

#station .station-nav ul li.b_sta a:before {
	content: "B";
	font-family: "Noto Sans JP";
	color: #fff;
	background: #4ea8f2;
	text-align: center;
	padding: 0 0.8rem;
	margin-right: 0.8rem;
}

#station .station-nav ul li.s_sta a:before {
	content: "S";
	font-family: "Noto Sans JP";
	color: #fff;
	background: #ba9a6a;
	text-align: center;
	padding: 0 0.8rem;
	margin-right: 0.8rem;
}

#station .main-ttl span.a_sta {
	color: #fff;
	background: #ff5aa5;
	padding: 0.2rem 0;
	font-size: 2rem;
	width: 50px;
	display: inline-block;
	margin: 0.5rem 0 0;
}

#station .main-ttl span.b_sta {
	color: #fff;
	background: #4ea8f2;
	padding: 0.2rem 0;
	font-size: 2rem;
	width: 50px;
	display: inline-block;
	margin: 0.5rem 0 0;
}

#station .main-ttl span.s_sta {
	color: #fff;
	background: #ba9a6a;
	padding: 0.2rem 0;
	font-size: 2rem;
	width: 50px;
	display: inline-block;
	margin: 0.5rem 0 0;
}

#station .station-map-wrap {
	border: 3px solid #ddd;
	background: #fff;
	padding: 2rem 2rem 2rem 3rem;
	margin-top: -3rem;
}

#station .station-map {
	/* width: 65%;
  float: left; */
}

#station .station-map-menu {
	/* width: 30%;
  float: right; */
}

#station .station-map-menu h3 {
	font-size: 1.4rem;
	margin: 0;
	padding: 1.5rem;
	background-color: #eee;
}

#station .station-map-menu__list {
	/* margin: 0; */
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	display: none;
}

#station .station-map-menu__list__item {
	list-style-type: none;
	margin-top: 0.5rem;
}

#station .station-map-menu__list__item a {
	display: block;
	border: 3px solid #bbb;
	padding: 1rem;
	position: relative;
}

#station .station-map-menu__list__item a::after {
	content: "\f138";
	font-family: FontAwesome;
	color: #bbb;
	position: absolute;
	right: 1rem;
}

#station .station-map-menu__list__item--price a {
	border-color: #f68a43;
}

#station .station-map-menu__list__item--price a::after {
	color: #f68a43;
}

#station .station-map-menu__list__item--poster a {
	border-color: #009634;
}

#station .station-map-menu__list__item--poster a::after {
	color: #009634;
}

#station .station-map-menu__list__item--densyo a {
	border-color: #fa7baf;
}

#station .station-map-menu__list__item--densyo a::after {
	color: #fa7baf;
}

#station .station-map-menu__list__item--flag a {
	border-color: #033494;
}

#station .station-map-menu__list__item--flag a::after {
	color: #033494;
}

#station .station-map-menu__list__item--es a {
	border-color: #732904;
}

#station .station-map-menu__list__item--es a::after {
	color: #732904;
}

#station .station-map-menu__list__item--rack a {
	border-color: #efbf00;
}

#station .station-map-menu__list__item--rack a::after {
	color: #efbf00;
}

#station .station-map-menu__list__item--home-door a {
	border-color: #ce0a0a;
}

#station .station-map-menu__list__item--home-door a::after {
	color: #ce0a0a;
}

@media screen and (max-width: 768px) {
	#station .station-map-wrap {
		padding: 3rem 2rem 3rem 2rem;
	}

	#station .station-map {
		width: 100%;
		float: none;
	}

	#station .station-map-menu {
		width: 100%;
		float: none;
		margin-top: 3rem;
	}

	#station .station-map-menu__list__item {
		font-size: 1.4rem;
	}
}

@media print {
	.station-nav {
		display: none;
	}
}

#station .rosen-area {
	margin-top: 3rem;
}

#station .rosen-area p.caution {
	font-size: 1.4rem;
}

#station .rosen-area table {
	width: 100%;
	border-left: 3px solid #ddd;
	border-bottom: 3px solid #ddd;
	margin-top: 2rem;
}

#station .rosen-area table tr th,
#station .rosen-area table tr td {
	text-align: center;
	vertical-align: middle;
	padding: 0.5rem;
	border-top: 3px solid #ddd;
	border-right: 3px solid #ddd;
}

#station .station-map-nav {
	margin-top: 4rem;
	border-top: 3px solid #ddd;
	border-bottom: 3px solid #ddd;
	padding: 2rem 0;
}

#station .station-map-nav ul {
	margin: 0;
	padding: 0;
	display: table;
	width: 100%;
}

#station .station-map-nav ul li {
	list-style-type: none;
	font-size: 1.6rem;
}

#station .station-map-nav ul li.prev {
	width: 30%;
	display: table-cell;
	text-align: left;
}

#station .station-map-nav ul li.prev a:before {
	content: "\f137";
	font-family: FontAwesome;
	color: #2e4fb5;
	margin-right: 0.5rem;
}

#station .station-map-nav ul li.back {
	display: table-cell;
	text-align: center;
}

#station .station-map-nav ul li.next {
	width: 30%;
	display: table-cell;
	text-align: right;
}

#station .station-map-nav ul li.next a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #2e4fb5;
	margin-left: 0.5rem;
}

@media screen and (max-width: 768px) {
	#station .station-map-nav {
		margin-top: 4rem;
		border-top: 3px solid #ddd;
		border-bottom: 3px solid #ddd;
		padding: 2rem 0;
	}

	#station .station-map-nav ul {
		margin: 0;
		padding: 0;
		display: table;
		width: 100%;
		padding: 0 1.5rem;
	}

	#station .station-map-nav ul li {
		list-style-type: none;
		font-size: 1.4rem;
	}

	#station .station-map-nav ul li.prev {
		width: 30%;
		display: table-cell;
		text-align: left;
	}

	#station .station-map-nav ul li.prev a:before {
		content: "\f137";
		font-family: FontAwesome;
		color: #2e4fb5;
		margin-right: 0.5rem;
	}

	#station .station-map-nav ul li.back {
		display: table-cell;
		text-align: center;
	}

	#station .station-map-nav ul li.next {
		width: 30%;
		display: table-cell;
		text-align: right;
	}

	#station .station-map-nav ul li.next a:after {
		content: "\f138";
		font-family: FontAwesome;
		color: #2e4fb5;
		margin-left: 0.5rem;
	}
}

/*==================================================================
車両広告
===================================================================*/
#train .main-ttl-area p {
	text-align: center;
}

#train .btn-wrap {
	margin-top: 3rem;
}

#train .train-box {
	border: 3px solid #ddd;
	padding: 3rem;
	margin-bottom: 3rem;
}

#train .train-box h3 {
	font-size: 2rem;
	color: #fff;
	background: #f68a43;
	padding: 0.8rem 1rem;
	margin: 0;
}

#train ul.train-list {
	margin: 0;
	padding: 0;
}

#train ul.train-list li {
	list-style-type: none;
	margin-top: 3rem;
}

#train ul.train-list li h4:before {
	content: "■";
	color: #f68a43;
	padding-right: 0.5rem;
}

#train ul.train-list li .btn-wrap {
	margin-top: 2rem;
}

/* ボタン */
#train ul.train-list li .btn-wrap a {
	text-align: center;
	padding: 1rem 0;
	font-size: 1.6rem;
	display: block;
	color: #000;
	border: 3px solid #f68a43;
	position: relative;
	background-color: #fff;
}

#train ul.train-list li .btn-wrap a:after {
	content: "\f138";
	font-family: FontAwesome;
	color: #f68a43;
	position: absolute;
	right: 1.2rem;
}

@media screen and (max-width: 768px) {
	#train .train-box {
		border: 3px solid #ddd;
		padding: 2rem;
		margin-bottom: 3rem;
	}

	/* ボタン */
	#train ul.train-list li .btn-wrap a {
		text-align: center;
		padding: 0.8rem 0;
		font-size: 1.6rem;
		display: block;
		color: #000;
		border: 3px solid #f68a43;
		position: relative;
		background-color: #fff;
	}
}

/*==================================================================
ビル案内
===================================================================*/
#building .sec01 {
	margin-bottom: 6rem;
}

#building .sec01 .btn-wrap {
	margin-top: 3rem;
}

/*
#building .sec02 .gmap {
position: relative;
width: 100%;
height: 0;
padding-bottom: 45%;
overflow: hidden;
margin-top: 3rem;
}
*/

@media screen and (max-width: 768px) {
	/*  #building .sec02 .gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-top: 3rem;
}*/
}

/*==================================================================
空室情報
===================================================================*/
#availability .floor-box {
	margin-bottom: 2rem;
}

#availability .btn-outside {
	margin-top: 3rem;
}

#availability .floor-ttl-purple {
	text-align: center;
	font-size: 2.2rem;
	color: #fff;
	padding: 1rem;
	background-color: #c3b8e4;
	margin-bottom: 3rem;
}

#availability .floor-ttl-green {
	text-align: center;
	font-size: 2.2rem;
	color: #fff;
	padding: 1rem;
	background-color: #cce4b2;
	margin-bottom: 3rem;
}

#availability .floor-ttl-orange {
	text-align: center;
	font-size: 2.2rem;
	color: #fff;
	padding: 1rem;
	background-color: #f1bd9e;
	margin-bottom: 0;
}

#availability .outline {
	margin-top: 6rem;
}

#availability .outline .btn-wrap {
	margin-top: 2.5rem;
}

#availability .floor-img {
	margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
	#availability .floor-box {
		margin-bottom: 3rem;
	}

	#availability .floor-ttl-purple {
		text-align: center;
		font-size: 2rem;
		color: #fff;
		padding: 1rem;
		background-color: #c3b8e4;
		margin-bottom: 2rem;
	}

	#availability .floor-ttl-green {
		text-align: center;
		font-size: 2rem;
		color: #fff;
		padding: 1rem;
		background-color: #cce4b2;
		margin-bottom: 2rem;
	}

	#availability .floor-ttl-orange {
		text-align: center;
		font-size: 2rem;
		color: #fff;
		padding: 1rem;
		background-color: #f1bd9e;
		margin-bottom: 0;
	}

	.floor-img {
		margin-bottom: 2rem;
	}
}

.tablepress tfoot th,
.tablepress thead th {
	text-align: center;
	font-size: 1.4rem;
	vertical-align: middle;
	border-right: 2px solid #fff;
}

.tablepress tfoot th:last-child,
.tablepress thead th:last-child {
	border-right: none;
}

.tablepress tfoot th em,
.tablepress thead th em {
	text-align: center;
	font-size: 2rem;
	vertical-align: middle;
	line-height: 1;
	font-style: normal;
}

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

	.tablepress tfoot th,
	.tablepress thead th {
		text-align: center;
		font-size: 1rem;
		vertical-align: middle;
		border-right: 2px solid #fff;
	}
}

/* 3F〜7F */
.tablepress.floor-3-7 tfoot th,
.tablepress.floor-3-7 thead th {
	background-color: #c3b8e4;
}

.tablepress.floor-3-7 td {
	text-align: center;
	font-size: 1.6rem;
	vertical-align: middle;
	background-color: #fafafa;
	border-top: none;
	border-bottom: 2px solid #ddd;
	border-right: 2px solid #ddd;
}

.tablepress.floor-3-7 td:last-child {
	border-right: none !important;
}

.tablepress.floor-3-7 td.column-1 {
	text-align: center;
	font-size: 2rem !important;
	background-color: #fff;
	color: #594494;
	vertical-align: middle;
	border-top: none;
	border-bottom: 2px solid #ddd;
}

.tablepress.floor-3-7 td.vacancy {
	background-color: #e3def1 !important;
}

/* 1F〜2F */
.tablepress.floor-1-2 tfoot th,
.tablepress.floor-1-2 thead th {
	background-color: #cce4b2;
}

.tablepress.floor-1-2 td {
	text-align: center;
	font-size: 1.6rem;
	vertical-align: middle;
	background-color: #fafafa;
	border-top: none;
	border-bottom: 2px solid #ddd;
	border-right: 2px solid #ddd;
}

.tablepress.floor-1-2 td:last-child {
	border-right: none !important;
}

.tablepress.floor-1-2 td.column-1 {
	text-align: center;
	font-size: 2rem !important;
	background-color: #fff;
	color: #6d983d;
	vertical-align: middle;
	border-top: none;
	border-bottom: 2px solid #ddd;
}

.tablepress.floor-1-2 td.vacancy {
	background-color: #efffdd !important;
}

/* 駐車場 */
.tablepress.parking tfoot th,
.tablepress.parking thead th {
	background-color: #cce4b2;
}

.tablepress.parking tbody tr:first-child td {
	text-align: center;
	font-size: 1.6rem;
	vertical-align: middle;
	background-color: #fafafa;
	border-top: none !important;
	border-right: none !important;
	border-bottom: none !important;
	border-left: none !important;
}

.tablepress.parking tbody tr:first-child td.vacancy {
	background-color: #fdece2 !important;
}

.floor-contact {
	border: 3px solid #43b77c;
	padding: 0 0 2rem;
	text-align: center;
}

.floor-contact h4 {
	font-size: 2rem;
	background: #43b77c;
	color: #fff;
	padding: 1rem;
	margin: 0;
}

.floor-contact p.tel {
	font-size: 1.6rem;
	margin-top: 2rem;
}

.floor-contact p.tel em {
	font-style: normal;
	font-weight: bold;
}

.floor-contact p.link {
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.floor-contact h4 {
		font-size: 1.8rem;
		background: #43b77c;
		color: #fff;
		padding: 1rem;
		margin: 0;
	}

	.floor-contact p.tel {
		font-size: 1.4rem;
		margin-top: 2rem;
	}

	.floor-contact p.link {
		font-size: 1.4rem;
	}
}

/*==================================================================
求人案内
===================================================================*/
#recruit .recruit-table-area {
	margin-bottom: 6rem;
}

.p-recruit-list1 {
	padding: 0;
	list-style: none;
}

.p-recruit-list1__item {
	border: 2px solid #ddd;
}

.p-recruit-list1__item:not(:first-child) {
	margin-top: 15px;
}

.p-recruit-list1__link {
	display: block;
}

.p-recruit-list2 {
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.p-recruit-list2__item {
	padding: 1rem 1.5rem;
}

dt.p-recruit-list2__item {
	width: 200px;
}

dd.p-recruit-list2__item {
	width: calc(100% - 200px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.p-recruit-list2__detail {
	margin: 0;
	flex: 1;
}

.p-recruit-list2__more {
	margin-left: 1rem;
	position: relative;
	background-color: #2e4fb5;
	color: #fff;
	padding: 0.5rem 2rem 0.7rem;
	width: 150px;
	text-align: center;
}

.p-recruit-list2__more::after {
	margin-left: 0.5rem;
	content: "\f14c";
	font-family: FontAwesome;
}

#recruit .recruit-no {
	background-color: #eee;
	padding: 2rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.p-recruit-list2 {
		flex-direction: column;
		align-items: flex-start;
	}

	.p-recruit-list2__item {
		padding: 1.5rem;
	}

	dt.p-recruit-list2__item,
	dd.p-recruit-list2__item {
		width: 100%;
	}

	dd.p-recruit-list2__item {
		font-size: 16px;
	}

	dd.p-recruit-list2__item {
		flex-direction: column;
		align-items: flex-start;
		border-top: 1px solid #ddd;
	}

	.p-recruit-list2__detail {
		width: 100%;
		flex: 0 1 auto;
	}

	.p-recruit-list2__more {
		margin: 1.5rem auto 0;
		width: 100%;
		max-width: 300px;
		padding: 1rem;
		font-size: 16px;
	}
}

/*==================================================================
資料ダウンロード
===================================================================*/
#download .main-ttl-area p {
	text-align: center;
}

#download .pdf-box h3,
#download .pdf-box-s h3 {
	font-size: 2rem;
	border-bottom: 3px solid #ddd;
	padding: 0 0 1rem;
	margin: 0 0 2rem;
}

#download .pdf-box h3:before,
#download .pdf-box-s h3:before {
	content: "■";
	color: #f68a43;
	padding-right: 0.5rem;
}

.pdf-list {
	margin: 0;
	padding: 0;
}

.pdf-list li {
	display: inline-block;
	width: 16%;
	padding: 1rem;
	list-style-type: none;
	margin-bottom: 2rem;
	vertical-align: top;
}

.pdf-list li h4 {
	font-size: 1.4rem;
	margin-top: 1rem;
	text-align: center;
}

.pdf-list li h4 span {
	display: block;
	font-size: 1.2rem;
	text-align: center;
	margin-top: 0.5rem;
}

.pdf-box-s {
	display: inline-block;
	width: 30%;
	margin-right: 1%;
}

.pdf-box-s .pdf-list li {
	display: inline-block;
	width: 50%;
	padding: 1rem;
	list-style-type: none;
	margin-bottom: 2rem;
	vertical-align: top;
}

.pdf-box-s:last-child {
	width: calc((100% - 60%) - 3%);
	margin-right: 0;
}

.pdf-box-s:last-child .pdf-list li {
	width: 74%;
}

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

	.pdf-box,
	.pdf-box-s {
		margin-bottom: 1rem;
	}

	#download .pdf-box h3,
	#download .pdf-box-s h3 {
		font-size: 1.8rem;
		border-bottom: 3px solid #ddd;
		padding: 0 0 1rem;
		margin: 0 0 1rem;
	}

	.pdf-list li {
		display: inline-block;
		width: 49.3%;
		padding: 1rem;
		list-style-type: none;
		margin-bottom: 1rem;
		vertical-align: top;
	}

	.pdf-box-s {
		display: block;
		width: 100%;
		margin-right: 0;
	}

	.pdf-box-s .pdf-list li {
		display: inline-block;
		width: 49.3%;
		padding: 1rem;
		list-style-type: none;
		margin-bottom: 2rem;
		vertical-align: top;
	}

	.pdf-box-s:last-child,
	.pdf-box-s:last-child .pdf-list li {
		width: 100%;
	}
}

/*==================================================================
個人情報の取り扱いに関する基本方針
===================================================================*/
#privacy .main-ttl-area {
	padding-bottom: 0;
}

#privacy .sec02 h3 {
	margin-top: 3rem;
	font-size: 18px;
}

#privacy .c-box--1 {
	margin-top: 1.5rem;
}

#privacy .c-box--1 h4 {
	margin-top: 0;
	font-size: 16px;
	line-height: 1.4;
}

#privacy .c-box--1 p {
	margin-bottom: 0;
}

/*==================================================================
footer
===================================================================*/
footer .pagetop {
	position: relative;
	padding: 5rem 0 6rem;
}

footer .pagetop-btn {
	position: absolute;
	right: 0;
	background-color: #2e4fb5;
	text-align: center;
	width: 46px;
	height: 46px;
}

@media screen and (max-width: 768px) {
	footer .pagetop-btn {
		position: absolute;
		right: 15px;
		background-color: #2e4fb5;
		text-align: center;
		width: 46px;
		height: 46px;
	}
}

footer .pagetop-btn a {
	color: #fff;
}

footer .pagetop-btn a i {
	font-size: 5rem;
	line-height: 40px;
}

footer .foot-area {
	background: #2e4fb5;
	padding: 6rem 0;
}

footer .foot-logo {
	width: 33%;
	float: left;
}

footer .osaka-mono {
	border: 1px solid #fff;
	padding: 1rem;
	margin-top: 2rem;
	text-align: center;
	color: #fff;
}

footer .osaka-mono div {
	width: 46%;
	margin: 0 auto;
}

footer .osaka-mono p {
	font-size: 1.2rem;
	margin: 0.5rem 0 0;
	padding: 0;
}

footer .foot-nav {
	width: 60%;
	float: right;
}

footer .foot-link {
	display: inline-block;
	width: 32%;
	vertical-align: top;
}

footer .foot-link--2 a {
	margin-bottom: 0.8rem;
	display: inline-block;
}

footer .link-list {
	margin-bottom: 3rem;
}

footer .link-list a,
footer .link-list a:hover {
	color: #fff;
	font-size: 1.4rem;
}

footer .link-list>a:before {
	content: "\f105";
	font-family: FontAwesome;
	color: #fff;
	padding-right: 0.3rem;
}

footer .link-list ul {
	font-size: 1.2rem;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

footer .link-list ul li {
	margin-top: 0.8rem;
}

footer .link-list ul li:before {
	content: "-";
	color: #fff;
	padding-right: 0.3rem;
}

footer .copy-area {
	width: 100%;
	background: #fff;
	border-bottom: 6px solid #ee336a;
	padding: 1.5rem 0;
}

footer .copy p {
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.2;
	margin: 0;
}

@media screen and (max-width: 768px) {
	footer .foot-area {
		background: #2e4fb5;
		padding: 3rem 0;
	}

	footer .foot-logo {
		width: 100%;
		float: none;
	}

	footer .foot-logo .logo {
		width: 50%;
		display: inline-block;
	}

	footer .osaka-mono {
		border: 1px solid #fff;
		padding: 1rem;
		margin-top: 0;
		text-align: center;
		color: #fff;
		width: 46%;
		display: inline-block;
		margin-left: 2%;
	}

	footer .osaka-mono div {
		width: 46%;
		margin: 0 auto;
	}

	footer .osaka-mono p {
		font-size: 1.2rem;
		margin: 0.5rem 0 0;
		padding: 0;
	}

	footer .foot-nav {
		width: 100%;
		float: none;
		margin-top: 4rem;
	}

	footer .link-list ul li {
		margin-top: 1rem;
	}

	footer .copy-area {
		width: 100%;
		background: #fff;
		border-bottom: 6px solid #ee336a;
		padding: 1rem 0;
	}

	footer .copy p {
		text-align: center;
		font-size: 1.2rem;
		line-height: 1.2;
		margin: 0;
	}
}

@media screen and (max-width: 480px) {
	footer .foot-logo .logo {
		width: 100%;
		display: block;
	}

	footer .osaka-mono {
		border: 1px solid #fff;
		padding: 1rem;
		margin-top: 2rem;
		text-align: center;
		color: #fff;
		width: 100%;
		display: block;
		margin-left: 0%;
	}

	footer .osaka-mono div {
		width: 46%;
		margin: 0 auto;
	}

	footer .foot-link {
		display: inline-block;
		width: 48%;
		vertical-align: top;
	}
}

form.post-password-form {
	max-width: 1000px;
	margin: 5rem auto 0;
	padding: 0 15px;
}

/*==================================================================
footer SNS logo
===================================================================*/
footer .foot-logo .sns-contain {
	margin: 28px auto 0;
}

footer .foot-logo .sns-logo {
	list-style: none;
	display: flex;
	justify-content: left;
	align-items: center;
	padding: 0;
	margin: 0;
}

footer .foot-logo .sns-logo li {
	margin-right: 30px;
}

footer .foot-logo .sns-logo li:last-child {
	margin-right: 0;
}

footer .foot-logo .sns-logo li img {
	width: 34px;
}

@media screen and (max-width: 768px) {
	footer .foot-logo .sns-logo {
		justify-content: center;
	}
}